From 44b5f6035fba993494e4bc62600426a783b6d39e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damiano=20Franz=C3=B2?= Date: Mon, 18 Aug 2025 15:59:00 +0200 Subject: [PATCH 1/2] adding notebook --- PINMachZenhder.ipynb | 60153 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60153 insertions(+) create mode 100644 PINMachZenhder.ipynb diff --git a/PINMachZenhder.ipynb b/PINMachZenhder.ipynb new file mode 100644 index 00000000..0572c364 --- /dev/null +++ b/PINMachZenhder.ipynb @@ -0,0 +1,60153 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "1d45055c-523f-46ab-8a09-b3f5e4796b1b", + "metadata": {}, + "source": [ + "# Introduction\n", + "\n", + "A Mach-Zehnder modulator is an optical device used to control the intensity of a light beam. It works by splitting a laser beam into two paths and then recombining them. By changing the properties of one or both paths, we can control whether the waves interfere constructively (bright output) or destructively (dark output), effectively turning the light on and off at very high speeds. This makes them ideal for encoding data onto light signals for fiber-optic communication. The \"PIN\" part refers to the P-type, Intrinsic, N-type semiconductor structure that is used to control the light paths. By applying a voltage across this PIN junction, we can change the refractive index of the material, which in turn changes the speed of light in that path, thus controlling the interference.\n", + "\n", + "The operation of the PIN diode generates heat, especially at high modulation speeds and power levels. This heat can significantly affect the performance of the modulator in several ways:\n", + "- Refractive Index Change: The refractive index of silicon is sensitive to temperature. The heat generated can change the refractive index of the waveguides, leading to a drift in the operating point of the modulator and affecting its performance.\n", + "- Carrier Mobility: The mobility of charge carriers (electrons and holes) in the semiconductor is also temperature-dependent. This affects the speed and efficiency of the modulator.\n", + "- Reliability: Excessive heat can lead to device degradation and failure over time.\n", + "By including the thermal aspect in our simulation, we can accurately predict the modulator's performance under realistic operating conditions, optimize its design for thermal stability, and ensure its long-term reliability. This multiphysics approach, combining both charge transport and heat transfer, provides a more complete and accurate picture of the device's behavior.\n", + "\n", + "This notebook demonstrates how to use Tidy3D's advanced multiphysics capabilities to perform a comprehensive simulation of a PIN Mach-Zehnder modulator, including both charge and heat transport. This notebook will guide you through setting up the geometry, defining the materials and their physical models, running the simulation, and analyzing the results. This specific version of the notebook uses the effective Density of States (DOS) model with temperature dependence." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "550ea3ba-0d98-41d0-8a80-2724c51bdb67", + "metadata": {}, + "outputs": [], + "source": [ + "import tidy3d as td\n", + "import numpy as np\n", + "import matplotlib.pyplot as plt\n", + "# TODO remove\n", + "from tidy3d_backend.run_heat import run_heat_sim\n", + "import tidy3d_backend\n", + "import pandas as pd\n", + "\n", + "import scipy as sp\n", + "import h5py\n", + "import subprocess" + ] + }, + { + "cell_type": "markdown", + "id": "b6104a8c-6ecb-46f7-aa67-4ba111ba01ab", + "metadata": {}, + "source": [ + "Here, we define the geometric parameters for the different components of the Mach-Zehnder modulator. This includes the pad, rib, silicon-on-insulator (SOI) box, cathode, and anode. The dimensions and centers of these components are defined in micrometers." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "9e6b4fd6-39c7-4287-bc83-a9dc64f472dd", + "metadata": {}, + "outputs": [], + "source": [ + "z_size = 4 # µm\n", + "\n", + "# pad size\n", + "pad_center = (0, -0.045, 0)\n", + "x_pad_w = 5\n", + "y_pad_h = 0.09\n", + "pad_size = (x_pad_w, y_pad_h, z_size)\n", + "\n", + "# rib size\n", + "rib_center = (0, 0.11, 0)\n", + "x_rib_w = 0.5\n", + "y_rib_h = 0.22\n", + "rib_size = (x_rib_w, y_rib_h, z_size)\n", + "\n", + "# enclosing box + sox\n", + "soxbox_center = (0, -0.545, 0)\n", + "y_soxbox_h = 3.09\n", + "x_box_w = 5\n", + "soxbox_size = (x_box_w, y_soxbox_h, z_size)\n", + "\n", + "# cathode\n", + "cathode_center = (-2.25, 0.25, 0)\n", + "y_cathode_h = 0.5\n", + "x_cathode_w = 0.5\n", + "cathode_size = (x_cathode_w, y_cathode_h, z_size)\n", + "\n", + "# anode\n", + "anode_center = (2.25, 0.25, 0)\n", + "y_cathode_h = 0.5\n", + "x_anode_w = 0.5\n", + "anode_size = (x_anode_w, y_cathode_h, z_size)" + ] + }, + { + "cell_type": "markdown", + "id": "1a47366c-eb62-49a3-876e-af943905d864", + "metadata": {}, + "source": [ + "# Doping and Materials\n", + "This section defines the doping profiles and the physical properties of the materials used in the simulation.\n", + "\n", + "Doping Profiles\n", + "- `Constant Doping`: A constant acceptor doping concentration is defined for the p-type epitaxial (pepi) layer.\n", + "- `Gaussian Doping`: Gaussian doping profiles are used for the n+, p+, n-well, and p-well regions. These profiles are defined with specific centers, sizes, concentrations, reference concentrations, and junction widths. The source parameter in `GaussianDoping` specifies the direction from which the doping is introduced." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "07325445-0b1b-4d9e-85c3-8f37629cc25c", + "metadata": {}, + "outputs": [], + "source": [ + "# pepi\n", + "conc_cst = 1e15\n", + "acceptor_cst_doping = td.ConstantDoping(center=(0, -1, 0), size=(5.4, 4, 4), concentration=conc_cst)\n", + "\n", + "junction_width_01 = 1e-1\n", + "junction_width_02 = 2e-1\n", + "\n", + "# nplus\n", + "conc_nplus = 2e18\n", + "refconc_nplus = 1e8\n", + "donor_nplus_center = (-1.5, 0, 0)\n", + "donor_nplus_size = (2., 2, z_size)\n", + "donor_nplus_doping = td.GaussianDoping(center=donor_nplus_center, size=donor_nplus_size,\n", + " concentration=conc_nplus, ref_con=refconc_nplus, width=junction_width_01, source=\"ymax\")\n", + "\n", + "# pplus\n", + "conc_pplus = 2e18\n", + "refconc_pplus = 1e8\n", + "acceptor_pplus_center = (1.5, 0, 0)\n", + "acceptor_pplus_size = (2., 2, z_size)\n", + "acceptor_pplus_doping = td.GaussianDoping(center=acceptor_pplus_center, size=acceptor_pplus_size,\n", + " concentration=conc_pplus, ref_con=refconc_pplus, width=junction_width_01, source=\"ymax\")\n", + "\n", + "# nwell\n", + "conc_nwell = 1e20\n", + "refconc_nplus = 1e8\n", + "donor_nwell_center = (-1.8, -0.49995, 0)\n", + "donor_nwell_size = (1.4, 1.0001, z_size)\n", + "donor_nwell_doping = td.GaussianDoping(center=donor_nwell_center, size=donor_nwell_size,\n", + " concentration=conc_nwell, ref_con=refconc_nplus, width=junction_width_02, source=\"ymax\")\n", + "\n", + "# pwell\n", + "conc_pwell = 1e20\n", + "refconc_pwell = 1e8\n", + "acceptor_pwell_center = (1.8, -0.5, 0)\n", + "acceptor_pwell_size = (1.4, 1.0001, z_size)\n", + "acceptor_pwell_doping = td.GaussianDoping(center=acceptor_pwell_center, size=acceptor_pwell_size,\n", + " concentration=conc_pwell, ref_con=refconc_pwell, width=junction_width_02, source=\"ymax\")" + ] + }, + { + "cell_type": "markdown", + "id": "c8bc6ac5-95f8-4b0b-83e1-0ed4aced0424", + "metadata": {}, + "source": [ + "## Mobility models Models\n", + "To accurately model the semiconductor behavior, we use several advanced physical models:\n", + "\n", + "- **Caughey-Thomas Mobility**: This model is used to describe the carrier mobility as a function of doping concentration and temperature for both electrons (mobility_n) and holes (mobility_p).\n", + "- **Fossum Carrier Lifetime**: The FossumCarrierLifetime model is used to define the carrier lifetime for electrons (fossum_n) and holes (fossum_p) which is dependent on the doping concentration.\n", + "- **Slotboom Bandgap Narrowing**: This model accounts for the reduction in the bandgap energy at high doping concentrations.\n", + "- **Isotropic Effective Density of States (DOS)**: A novel feature, `IsotropicEffectiveDOS`, is used to model the effective density of states for the conduction band (`N_c`) and valence band (`N_v`) based on the effective mass of the carriers. This is an alternative to using a constant value.\n", + "- **Varshni Energy Bandgap**: The VarshniEnergyBandGap model is used to describe the temperature dependence of the bandgap energy (Eg)." + ] + }, + { + "cell_type": "markdown", + "id": "107f5726-c11e-47ef-a978-5e64c9302d64", + "metadata": {}, + "source": [ + "### Media\n", + "\n", + "We define `MultiPhysicsMedium` objects to combine both the electrical (charge) and thermal (heat) properties of the materials.\n", + "\n", + "- **Si_doping**: A `MultiPhysicsMedium` representing the doped silicon, incorporating the charge properties defined in `si_charge` and the thermal properties (conductivity and capacity) of silicon.\n", + "- **SiO2**: Represents the **silicon dioxide** with its insulator and thermal properties.\n", + "- **Al**: Represents the **aluminum** contacts with their conductor and thermal properties.\n", + "- **air** and contact media: These are defined as `FluidMedium` for the thermal simulations." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "b3b246c7-50fd-47cd-871b-ea1939f0d47d", + "metadata": {}, + "outputs": [], + "source": [ + "mobility_n=td.CaugheyThomasMobility(\n", + " mu_min=52.2,\n", + " mu=1471.0,\n", + " ref_N=9.68e16,\n", + " exp_N=0.68,\n", + " exp_1=-0.57,\n", + " exp_2=-2.33,\n", + " exp_3=2.4,\n", + " exp_4=-0.146,\n", + ")\n", + "mobility_p=td.CaugheyThomasMobility(\n", + " mu_min=44.9,\n", + " mu=470.5,\n", + " ref_N=2.23e17,\n", + " exp_N=0.719,\n", + " exp_1=-0.57,\n", + " exp_2=-2.23,\n", + " exp_3=2.4,\n", + " exp_4=-0.146,\n", + ")\n", + "\n", + "alpha = 1\n", + "beta = 0\n", + "gamma = 1\n", + "sigma = 1\n", + "tau_n = 1e-7\n", + "tau_p = 2e-7\n", + "fossum_n = td.FossumCarrierLifetime(N0=7.1e15, A=alpha, B=beta, C=gamma, tau_300=tau_n, alpha=sigma, alpha_T=0)\n", + "fossum_p = td.FossumCarrierLifetime(N0=7.1e15, A=alpha, B=beta, C=gamma, tau_300=tau_p, alpha=sigma, alpha_T=0)\n", + "\n", + "ni = 1 #Useless in this formulation\n", + "narrowing = td.SlotboomBandGapNarrowing(c2=0.5, n2=1e17, v1=0.0045*2, min_N=ni)\n", + "\n", + "# Temperature dependent Eff. DOS\n", + "N_c_isotropic = td.IsotropicEffectiveDOS(m_eff=0.8)\n", + "N_v_isotropic = td.IsotropicEffectiveDOS(m_eff=1.3)\n", + "Eg_Varshni = td.VarshniEnergyBandGap(eg_0=1.16, alpha=7.02e-4, beta=1108)\n", + "\n", + "# Temperature independent\n", + "N_c_cst = td.ConstantEffectiveDOS(N=N_c_isotropic.calc_eff_dos(T=300))\n", + "N_v_cst = td.ConstantEffectiveDOS(N=N_v_isotropic.calc_eff_dos(T=300))\n", + "Eg_cst = td.ConstantEnergyBandGap(eg=1.12)\n", + "\n", + "si_charge = td.SemiconductorMedium(\n", + " permittivity=11.7,\n", + " N_c=N_c_isotropic,\n", + " N_v=N_v_isotropic,\n", + " E_g = Eg_Varshni,\n", + " N_d = [donor_nplus_doping, donor_nwell_doping],\n", + " N_a = [acceptor_cst_doping, acceptor_pplus_doping, acceptor_pwell_doping],\n", + " mobility_n=mobility_n,\n", + " mobility_p=mobility_p,\n", + " R=[\n", + " td.ShockleyReedHallRecombination(tau_n=fossum_n, tau_p=fossum_p),\n", + " td.RadiativeRecombination(r_const=1.6e-14),\n", + " td.AugerRecombination(c_n=2.8e-31, c_p=9.9e-32),\n", + " ],\n", + " delta_E_g=narrowing\n", + ")\n", + "\n", + "## -- MATERIALS\n", + "si_capacity = 711\n", + "sio2_capacity = 709\n", + "al_capacity = 902\n", + "\n", + "si_conductivity = 148 * 1e-6 # W/(µm*K)\n", + "sio2_conductivity = 1.38 * 1e-6 # W/(µm*K)\n", + "al_conductivity = 236 * 1e-6 # W/(µm*K)\n", + "\n", + "Si_doping = td.MultiPhysicsMedium(\n", + " charge=si_charge,\n", + " heat=td.SolidMedium(conductivity=si_conductivity, capacity=si_capacity),\n", + " name=\"Si_doping\",\n", + ")\n", + "\n", + "# define semiconductor materials\n", + "SiO2 = td.MultiPhysicsMedium(\n", + " charge=td.ChargeInsulatorMedium(permittivity=3.9),\n", + " heat=td.SolidMedium(conductivity=sio2_conductivity * 1, capacity=sio2_capacity),\n", + " name=\"SiO2\",\n", + ")\n", + "\n", + "# define semiconductor materials\n", + "Al = td.MultiPhysicsMedium(\n", + " charge=td.ChargeConductorMedium(conductivity=3.5e7 * 1e-6),\n", + " heat=td.SolidMedium(conductivity=al_conductivity, capacity=al_capacity),\n", + " name=\"Al\",\n", + ")\n", + "\n", + "air = td.MultiPhysicsMedium(\n", + " heat=td.FluidMedium(),\n", + " name=\"air\"\n", + ")\n", + "\n", + "contact_medium_left = td.Medium(\n", + " heat_spec=td.FluidMedium(),\n", + " name=\"contact_medium_left\"\n", + ")\n", + "\n", + "contact_medium_right = td.Medium(\n", + " heat_spec=td.FluidMedium(),\n", + " name=\"contact_medium_right\"\n", + ")\n", + "\n", + "contact_medium_bottom = td.Medium(\n", + " heat_spec=td.FluidMedium(),\n", + " name=\"contact_medium_bottom\"\n", + ")\n", + "\n", + "contact_medium_top = td.Medium(\n", + " heat_spec=td.FluidMedium(),\n", + " name=\"contact_medium_top\"\n", + ")" + ] + }, + { + "cell_type": "markdown", + "id": "8ecc95c6-0995-4ba6-a573-a165be32649d", + "metadata": {}, + "source": [ + "## Geometries and Scene\n", + "The geometries defined earlier are used to create Structure objects. Each structure is assigned a medium that defines its physical properties. The collection of all these structures is then used to create a Scene which represents the complete simulation domain. The scene is plotted to visualize the geometry and the doping profile. The first plot shows the different materials in the scene, and the second plot shows the doping concentration across the device." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "808b1a2a-23e6-4bb0-8e4d-9ca7a921f8e7", + "metadata": {}, + "outputs": [], + "source": [ + "## -- GEOMETRIES\n", + "pad_structure = td.Structure(\n", + " geometry=td.Box(center=pad_center, size=pad_size),\n", + " medium=Si_doping,\n", + " name=\"pad\",\n", + ")\n", + "rib_structure = td.Structure(\n", + " geometry=td.Box(center=rib_center, size=rib_size),\n", + " medium=Si_doping,\n", + " name=\"rib\",\n", + ")\n", + "\n", + "soxbox_structure = td.Structure(\n", + " geometry=td.Box(center=soxbox_center, size=soxbox_size),\n", + " medium=SiO2,\n", + " name=\"soxbox\",\n", + ")\n", + "\n", + "cathode_structure = td.Structure(\n", + " geometry=td.Box(center=cathode_center, size=cathode_size),\n", + " medium=Al,\n", + " name=\"cathode\",\n", + ")\n", + "\n", + "anode_structure = td.Structure(\n", + " geometry=td.Box(center=anode_center, size=anode_size),\n", + " medium=Al,\n", + " name=\"anode\",\n", + ")\n", + "\n", + "cb_thick = 0.5\n", + "contact_bottom = td.Structure(\n", + " geometry=td.Box(center=(0, -2 -y_pad_h - cb_thick/2, 0), size=(x_pad_w, cb_thick, 4)),\n", + " medium=contact_medium_bottom,\n", + " name=\"contact_bottom\",\n", + ")\n", + "\n", + "def createStructure(pad, rib):\n", + " structures = [\n", + " contact_bottom,\n", + " soxbox_structure,\n", + " cathode_structure,\n", + " anode_structure,\n", + " pad,\n", + " rib]\n", + " return structures\n", + " \n", + "structures = createStructure(pad_structure, rib_structure)" + ] + }, + { + "cell_type": "markdown", + "id": "0fcf81f6-a394-4337-9770-51e9b68da05d", + "metadata": {}, + "source": [ + "Create a temperature independent density of state model by using`updated_copy` on existing classes" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "84803c45-8533-4b1c-9af5-ad8880fff33b", + "metadata": {}, + "outputs": [], + "source": [ + "# Temperature independent DOS\n", + "si_charge_cst = si_charge.updated_copy(N_c=N_c_cst, N_v=N_v_cst, E_g=Eg_cst)\n", + "Si_doping_cst = Si_doping.updated_copy(charge=si_charge_cst)\n", + "pad_structure_cst = pad_structure.updated_copy(medium=Si_doping_cst)\n", + "rib_structure_cst = rib_structure.updated_copy(medium=Si_doping_cst)\n", + "structures_cst = createStructure(pad_structure_cst, rib_structure_cst)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "bec6d909-74c5-4887-86a5-af11b0bd0ced", + "metadata": {}, + "outputs": [], + "source": [ + "# create scene\n", + "scene = td.Scene(\n", + " structures=structures,\n", + " medium=air\n", + ")\n", + "# create scene\n", + "scene_cst = td.Scene(\n", + " structures=structures_cst,\n", + " medium=air\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "5b5f1cc7-5d04-4030-ac8b-4b2b37cc61dd", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABOEAAAG3CAYAAADyykGmAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8fJSN1AAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOydeXwU9f3/nzO7m81BEhJyJxDClYQbkRvFg69Y8aBqPb61oFWpWq2WtrZUBUG/orVerQceVahXEX8WWlFEOUS5L4VAEgKEBHJx5L53dz6/P5ZdsslmswFCZsjn+XjMg09mZ2Y/r3nNzM77w+fzeStCCIFEIpFIJBKJRCKRSCQSiUQi6TDUzq6ARCKRSCQSiUQikUgkEolEcqEjG+EkEolEIpFIJBKJRCKRSCSSDkY2wkkkEolEIpFIJBKJRCKRSCQdjGyEk0gkEolEIpFIJBKJRCKRSDoY2QgnkUgkEolEIpFIJBKJRCKRdDCyEU4ikUgkEolEIpFIJBKJRCLpYGQjnEQikUgkEolEIpFIJBKJRNLByEY4iUQikUgkEolEIpFIJBKJpIORjXASiUQikUgkEolEIpFIJBJJByMb4SQSyXln3bp1KIrCunXrOrsqknPMJ598QmRkJNXV1ef9u/ft24fZbCYjI+O8f7dEIpFIJBKJRCKRtIVshJNIJB3G66+/zqJFizq7GmfERx99xMsvv9zZ1QBA0zT+8pe/kJKSQmBgIEOHDuXjjz/2e//y8nJmzpxJdHQ0ISEhXH755ezcudPrtv/5z3+46KKLCAwMpFevXsydOxe73e7X9zgcDubOnctDDz1Et27d/K7fuWLgwIFMnTqVOXPmnPfvlkgkEolEIpFIJJK2UIQQorMrIZFILkwGDx5MVFRUix5vmqbR2NhIQEAAqqrP/wu49tprycjI4PDhw51dFWbPns2zzz7Lvffey6hRo1i+fDkrVqzg448/5rbbbvO5r6ZpXHLJJfz444/84Q9/ICoqitdff50jR46wY8cO+vfv7972yy+/ZOrUqVx22WXcfvvt7Nmzh9dee42ZM2fyxhtvtFnPZcuWceONN3LkyBESExPPWveZ8OWXX3LNNddw4MAB+vbt2yl1kEgkEolEIpFIJBJvyEY4iaSDqampISQkpLOr0Sm01ghnBPTSCFdQUEBKSgozZ87k1VdfBUAIwaRJk8jNzeXw4cOYTKZW9//kk0+49dZbWbp0KTfffDMAx48fZ8CAAfzkJz/ho48+cm87aNAgLBYL27dvx2w2A/D444/zzDPPsG/fPtLS0nzW9YYbbqC0tJTvvvvubGWfMTabjdjYWB588EHmz5/fafWQSCQSiUQikUgkkuboswuKRKJTCgoKuPvuu0lISMBqtZKSksL9999PY2MjAIsWLUJRFL799lseeOABYmJiSEpKcu//+uuvM2jQIKxWKwkJCfz617+mvLzc4ztycnK46aabiIuLIzAwkKSkJG677TYqKirc23z99ddMnDiR7t27061bN1JTU/nzn//cZv392a+hoYG5c+fSr18/rFYrPXv25NFHH6WhoaHF8T744ANGjx5NcHAwERERXHrppaxatQqA3r17s3fvXr799lsURUFRFC677DKg9Tnhli5dysiRIwkKCiIqKoo77riDgoICj23uvPNOunXrRkFBAdOmTaNbt25ER0fz+9//HofD0eY5WL58OVOnTnV72LdvX5566imPfS+77DJWrFhBXl6eu+69e/du9Zh33nmne7vmy5NPPtlmndqqr81m44EHHnCvUxSF+++/n6NHj7Jp0yaf+3/66afExsZy4403utdFR0dzyy23sHz5crev+/btY9++fcycOdPdAAfwwAMPIITg008/9fk99fX1rFy5ksmTJ3usP3z4MIqieB2W3Pz8PPnkkyiKwv79+7njjjsIDw8nOjqaJ554AiEER44c4YYbbiAsLIy4uDheeOGFFse0WCxcdtllLF++3Gd9JRKJRCKRSCQSieR8Y257E4lEAlBYWMjo0aPd82ulpaVRUFDAp59+Sm1tLQEBAe5tH3jgAaKjo5kzZw41NTWAs4Fh3rx5TJ48mfvvv5/s7GzeeOMNtm3bxoYNG7BYLDQ2NjJlyhQaGhp46KGHiIuLo6CggM8//5zy8nLCw8PZu3cv1157LUOHDmX+/PlYrVYOHDjAhg0bfNbfn/00TeP666/n+++/Z+bMmaSnp7Nnzx5eeukl9u/fz7Jly9zbzps3jyeffJLx48czf/58AgIC2LJlC2vWrOGqq67i5Zdfds8N9thjjwEQGxvbav0WLVrEXXfdxahRo1iwYAElJSW88sorbNiwgV27dtG9e3f3tg6HgylTpjBmzBj++te/8s033/DCCy/Qt29f7r//fp/nYdGiRXTr1o1Zs2bRrVs31qxZw5w5c6isrOT5558H4LHHHqOiooKjR4/y0ksvAfic4+xXv/pVi8anlStX8uGHHxITE+Ned+LECZ91cxEaGorVagVg165dhISEkJ6e7rHN6NGj3Z9PnDix1WPt2rWLiy66qMWw39GjR/PWW2+xf/9+hgwZwq5duwC4+OKLPbZLSEggKSnJ/Xlr7Nixg8bGRi666CK/NPri1ltvJT09nWeffZYVK1bw9NNPExkZyZtvvskVV1zBc889x4cffsjvf/97Ro0axaWXXuqx/8iRI1m+fDmVlZWEhYWddX0kEolEIpFIJBKJ5JwgJBKJX0yfPl2oqiq2bdvW4jNN04QQQrz33nsCEBMnThR2u939+bFjx0RAQIC46qqrhMPhcK9/9dVXBSDeffddIYQQu3btEoBYunRpq/V46aWXBCCOHz/ervr7s9/7778vVFUV3333ncf6hQsXCkBs2LBBCCFETk6OUFVV/PSnP/XQI8TpcyGEEIMGDRKTJk1q8T1r164VgFi7dq0QQojGxkYRExMjBg8eLOrq6tzbff755wIQc+bMca+bMWOGAMT8+fM9jjlixAgxcuRI3ydBCFFbW9ti3a9+9SsRHBws6uvr3eumTp0qkpOT2zyeN3JyckR4eLj4n//5H4/rAPBree+99zzq0adPnxbfUVNTIwDxpz/9yWddQkJCxC9/+csW61esWCEAsXLlSiGEEM8//7wARH5+fottR40aJcaOHevze9555x0BiD179nisz83NbaHJBSDmzp3r/nvu3LkCEDNnznSvs9vtIikpSSiKIp599ln3+rKyMhEUFCRmzJjR4rgfffSRAMSWLVt81lkikUgkEolEIpFIzidyOKpE4geaprFs2TKuu+66Fj2FwDmsrin33nuvxzxd33zzDY2NjTzyyCMePZLuvfdewsLCWLFiBQDh4eEAfPXVV9TW1nqti6tH2PLly9E0zW8N/uy3dOlS0tPTSUtL48SJE+7liiuuAGDt2rWAcwJ+TdOYM2dOix5Wzc+FP2zfvp1jx47xwAMPEBgY6F4/depU0tLS3OenKffdd5/H35dccgmHDh1q87uCgoLc5aqqKk6cOMEll1xCbW0tWVlZ7a57c2pqavjpT39KREQEH3/8scd18PXXX/u1TJkyxb1PXV2du1dcU1znqa6uzmd9/N3f9W9r27b1PSdPngQgIiLC53b+cM8997jLJpOJiy++GCEEd999t3t99+7dSU1N9eq5qw7+9jyUSCQSiUQikUgkkvOBHI4qkfjB8ePHqaysZPDgwX5tn5KS4vF3Xl4eAKmpqR7rAwIC6NOnj/vzlJQUZs2axYsvvsiHH37IJZdcwvXXX++eHwucQ/Xeeecd7rnnHv70pz9x5ZVXcuONN3LzzTf7zDTqz345OTlkZmYSHR3t9RjHjh0D4ODBg6iqysCBA/06H23R2vkBSEtL4/vvv/dYFxgY2KKOERERlJWVtflde/fu5fHHH2fNmjVUVlZ6fNZ03r0z5d577+XgwYNs3LiRHj16eHzWfMiqPwQFBXmdj6++vt79+bnY3/Vva9u29T0uxDnI9dOrVy+Pv8PDwwkMDCQqKqrFelfjn7c6nEmDsEQikUgkEolEIpF0FLIRTiLpAPxtsPDGCy+8wJ133sny5ctZtWoVv/nNb1iwYAGbN28mKSmJoKAg1q9fz9q1a1mxYgUrV65kyZIlXHHFFaxatarVTJn+7KdpGkOGDOHFF1/0eoyePXuesa5zia9soL4oLy9n0qRJhIWFMX/+fPr27UtgYCA7d+7kj3/8Y7t6FnrjlVde4eOPP+aDDz5g+PDhLT4vLi726zjh4eHuayg+Pp61a9cihPBoVCoqKgKcc7b5Ij4+3r1tU5rvHx8f717f3OeioiL3HHSt4WpwLCsr80hG0hq+Guu8+dua596O42qMbd5oJ5FIJBKJRCKRSCSdiRyOKpH4QXR0NGFhYWRkZJzR/snJyQBkZ2d7rG9sbCQ3N9f9uYshQ4bw+OOPs379er777jsKCgpYuHCh+3NVVbnyyit58cUX2bdvH//3f//HmjVr3MNFW6Ot/fr27UtpaSlXXnklkydPbrG4eqr17dsXTdPYt2+fz+/ztydSa+fHta75+TlT1q1bx8mTJ1m0aBEPP/ww1157LZMnT/Y6hLK9vai+++47fv/73/PII4/w85//3Os28fHxfi1Llixx7zN8+HBqa2vJzMz0ONaWLVvcn/ti+PDh7Ny5s0UD45YtWwgODmbAgAEex9m+fbvHdoWFhRw9erTN70lLSwMgNzfX6+dVVVUef5eUlPg83tmQm5uLqqpubRKJRCKRSCQSiUSiB2QjnETiB6qqMm3aNP773/+2aKSAtofgTZ48mYCAAP72t795bPuPf/yDiooKpk6dCkBlZSV2u91j3yFDhqCqqnuYYGlpaYvjuxpIvA0ldOHPfrfccgsFBQW8/fbbLbatq6tzZ3qdNm0aqqoyf/78Fo07TfWFhIRQXl7eap1cXHzxxcTExLBw4UIPDV9++SWZmZnu83O2uHpTNa1jY2Mjr7/+eottQ0JC/B6eWlRUxC233MLEiRPdGVa9cSZzwt1www1YLBaPOgohWLhwIYmJiYwfP96jHllZWdhsNve6m2++mZKSEj777DP3uhMnTrB06VKuu+469xxwgwYNIi0tjbfeeguHw+He9o033kBRFG6++Waf52DkyJEEBAR4vT+AFg3E//73v91azjU7duxg0KBB7iHcEolEIpFIJBKJRKIH5HBUicRPnnnmGVatWsWkSZOYOXMm6enpFBUVsXTpUr7//nt34gNvREdHM3v2bObNm8fVV1/N9ddfT3Z2Nq+//jqjRo3ijjvuAGDNmjU8+OCD/OxnP2PAgAHY7Xbef/99TCYTN910EwDz589n/fr1TJ06leTkZI4dO8brr79OUlISEydObLUO/uz3i1/8gk8++YT77ruPtWvXMmHCBBwOB1lZWXzyySd89dVXXHzxxfTr14/HHnuMp556iksuuYQbb7wRq9XKtm3bSEhIYMGCBYCzYeaNN97g6aefpl+/fsTExLiTPDTFYrHw3HPPcddddzFp0iRuv/12SkpKeOWVV+jduze//e1vz9Q2D8aPH09ERAQzZszgN7/5DYqi8P7773ttCBo5ciRLlixh1qxZjBo1im7dunHdddd5Pe5vfvMbjh8/zqOPPsq//vUvj8+GDh3K0KFDgTObEy4pKYlHHnmE559/HpvNxqhRo1i2bBnfffcdH374occwzdmzZ7N48WJyc3Pp3bs34GyEGzt2LHfddRf79u0jKiqK119/HYfDwbx58zy+6/nnn+f666/nqquu4rbbbiMjI4NXX32Ve+65h/T0dJ/1DAwM5KqrruKbb75h/vz5LT5fuXIlP//5z7n00kvZv38/b731FsHBwaxatYpRo0Zx7bXXtvvceMNms/Htt9/ywAMPnJPjSSQSiUQikUgkEsk5o1NyskokBiUvL09Mnz5dREdHC6vVKvr06SN+/etfi4aGBiGEEO+9954AxLZt27zu/+qrr4q0tDRhsVhEbGysuP/++0VZWZn780OH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4eHh7N27l2uvvZahQ4cyf/58rFYrBw4cYMOGDT7r789+mqZx/fXX8/333zNz5kzS09PZs2cPL730Evv37/foCDBv3jyefPJJxo8fz/z58wkICGDLli2sWbOGq666ipdfftk9N9hjjz0GQGxsbKv1W7RoEXfddRejRo1iwYIFlJSU8Morr7BhwwZ27dpF9+7d3ds6HA6mTJnCmDFj+Otf/8o333zDCy+8QN++fbn//vt9nodFixbRrVs3Zs2aRbdu3VizZg1z5syhsrKS559/HoDHHnuMiooKjh49yksvvQTgc46zX/3qVy0an1auXMmHH37oEVedOHHCZ91chIaGYrVaAdi1axchISGkp6d7bDN69Gj35xMnTmz1WLt27eKiiy5qMex39OjRvPXWW+zfv58hQ4awa9cuAC6++GKP7RISEkhKSnJ/3ho7duygsbGRiy66yC+Nvrj11ltJT0/n2WefZcWKFTz99NNERkby5ptvcsUVV/Dcc8/x4Ycf8vvf/55Ro0Zx6aWXeuw/cuRIli9fTmVlJWFhYWddH4lEch7orLSs/gCIf//73z63efTRR8WgQYM81t16661iypQp7r9Hjx4tfv3rX7v/djgcIiEhQSxYsOCc1lcikUgkEolEIjE606dPF6qqim3btrX4TNM0IYQQ7733ngDExIkThd1ud39+7NgxERAQIK666irhcDjc61999VUBiHfffVcIIcSuXbsEIJYuXdpqPV566SUBiOPHj7er/v7s9/777wtVVcV3333nsX7hwoUCEBs2bBBCCJGTkyNUVRU//elPPfQIcfpcCCHEoEGDxKRJk1p8z9q1awUg1q5dK4QQorGxUcTExIjBgweLuro693aff/65AMScOXPc62bMmCEAMX/+fI9jjhgxQowcOdL3SRBC1NbWtlj3q1/9SgQHB4v6+nr3uqlTp4rk5OQ2j+eNnJwcER4eLv7nf/7H4zoA/Free+89j3r06dOnxXfU1NQIQPzpT3/yWZeQkBDxy1/+ssX6FStWCECsXLlSCCHE888/LwCRn5/fYttRo0aJsWPH+vyed955RwBiz549Hutzc3NbaHIBiLlz57r/njt3rgDEzJkz3evsdrtISkoSiqKIZ5991r2+rKxMBAUFiRkzZrQ47kcffSQAsWXLFp91lkgk+kF3PeHay6ZNm1r8b8yUKVN45JFH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4MYbb8SJEydw5MgRqNVqv+uaTCbEx8fj0KFDuPnmm4X7b7vtNsyaNQvvvvuucN+yZcsQFxeHzZs3AwDGjx+Pm2++GZ9//jkA10zYycnJWLduHf7rv/4LAFBYWIjc3Fw0NTV5jQF6ww034J577rkm49ARQshwQGPCEUIIIYQQQojIvP3223A4HNi+fTu2bNkSsAMOAPr7+wEAUVFRl/Va119/vbCclJQEAJgxY8aA+1pbW72202g06Ovru6zXJISQkYg64QghhBBCCCFEZM6ePYvGxkbwPI/z588HXTcxMREcx6GzszPk8zqdzgH3KZVKYZnjuID38TzvtV1HRwdGjx4d8jUJIYS4UCccIYQQQgghhIiIzWbDL37xCzz44IN47bXX8Otf/3rAWWieVCoVpk6divLy8gGPtbS0eP197ty5q/IeLRYLzp49i9mzZ1+V5yOEkJGAOuEIIYQQQgghRET++Mc/wmw247333sPatWuRkZGBX/3qV0G3Wbx4MX788ccB93/99dfYsWMHzp49i9dffx3l5eWoqalBQ0PDFb3HwsJCqNVq5ObmXtHzEELISEKdcIQQQgghhBAiEgcOHMC7776Lzz//HDqdDjKZDJ9//jl++OEHfPTRRwG3e/zxx5GXlwez2ex1/913340333wTU6dOxaFDh/Dhhx+iuLhYmIjhcv3973/Hww8/jOjo6Ct6HkIIGUlodlRCCCGEEEIIGQYeeOAB3HDDDfjDH/4AwP/sqFdDW1sbMjMzcfToUUyYMOGqPjchhAxndCYcIYQQQgghhAwDb731FmJjYyP+OufPn8eHH35IHXCEEDJIdCYcIYQQQgghhAxDkToTjhBCyOWhM+EIIcPeJ598gjvvvDPir7Nz507MmjULPM9H/LUIIYQQQkJxjy9HCCFEHKgTjhAyrFksFqxbtw7r16+P+GvdddddUCqV2LJlS8RfixBCCCGEEEKItFAnHCFkWPvHP/4BnU6HBQsWXJPX++Uvf4n33nvvmrwWIYQQQgghhBDpoE44QogkXLhwAQaDAX/605+E+/Lz86FSqbB3796A223btg0///nPve677bbb8Mwzz3jdt2zZMvzyl78U/h4/fjz++7//G48++ihiY2ORnp6Ob775BhcuXMA999yD2NhYXH/99Th69KjX8/z85z/H0aNHcfbs2csPSwghhBBCCCFk2KFOOEKIJIwePRqffvopXnnlFRw9ehTd3d145JFHsGbNGixcuDDgdj/++CNuvPHGy3rNd955BwsWLEBpaSnuvvtuPPLII3j00Ufxi1/8AseOHcN1112HRx99FJ7z26SlpSEpKQk//PDDZb0mIYQQQgghhJDhiTrhCCGSsWTJEjzxxBN4+OGH8dvf/hYxMTHYsGFDwPVNJhPMZjNSUlIu+/WefPJJTJ48GS+//DK6urowd+5cPPDAA8jIyMDatWtRUVGBlpYWr+1SUlJQU1NzWa9JCCGEEEIIIWR4ok44QoikvP3223A4HNi+fTu2bNkCtVodcN3+/n4AQFRU1GW91vXXXy8sJyUlAQBmzJgx4L7W1lav7TQaDfr6+i7rNQkhhBBCCCGEDE/UCUcIkZSzZ8+isbERPM/j/PnzQddNTEwEx3Ho7OwM+bxOp3PAfUqlUljmOC7gfTzPe23X0dGB0aNHh3xNQgghhBBCCCEjB3XCEUIkw2az4Re/+AUefPBBvPbaa/j1r3894Cw0TyqVClOnTkV5efmAx3wvIT137txVeY8WiwVnz57F7Nmzr8rzEUIIIYQQQggZHqgTjhAiGX/84x9hNpvx3nvvYe3atcjIyMCvfvWroNssXrwYP/7444D7v/76a+zYsQNnz57F66+/jvLyctTU1KChoeGK3mNhYSHUajVyc3Ov6HkIIYQQQgghhAwv1AlHCJGEAwcO4N1338Xnn38OnU4HmUyGzz//HD/88AM++uijgNs9/vjjyMvLg9ls9rr/7rvvxptvvompU6fi0KFD+PDDD1FcXIzPP//8it7n3//+dzz88MOIjo6+ouchhBBCCCGEEDK8cIwxNtRvghBCIumBBx7ADTfcgD/84Q8AgNtuuw2zZs3Cu+++e1Vfp62tDZmZmTh69CgmTJhwVZ+bEEIIIYQQQoi00ZlwhJBh76233kJsbGzEX+f8+fP48MMPqQOOEEIIIYQQQsgAdCYcIWTEidSZcIQQQgghhBBCSCDUCUcIIYQQQgghhBBCSITR5aiEEEIIIYQQQgghhEQYdcIRQgghhBBCCCGEEBJh1AlHCCGEEEIIIYQQQkiEUSccIYQQQgghhBBCCCERRp1whBBCCCGEEEIIIYREGHXCEUIIIYQQQgghhBASYdQJRwghhBBCCCGEEEJIhFEnHCGEEEIIIYQQQgghEfb/A+0Zwhz3wfkeAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "_, ax = plt.subplots(1, 2, figsize=(14, 5))\n", + "\n", + "fig1 = scene.plot(z=0, ax=ax[0])\n", + "fig2 = scene.plot_structures_property(z=0, property=\"doping\", ax=ax[1])\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "id": "4ff2ebd9-8945-4441-b26e-4b248a37cb35", + "metadata": {}, + "source": [ + "## Doping Profile Visualization\n", + "These plots provide a more detailed view of the doping concentration in the device. The four plots show the doping concentration with different color limits to highlight the p-type and n-type doping regions and their magnitudes." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "a8a035e7-98d2-4f2a-8a54-b1cbe7666bdd", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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CYB08OBBn/d76623PO+XkpIiff7zn5fa29t91rn77ruluLi4cX7y9OyhKC8vl9avXy/pdDopOztbeuSRR6SPPvpo3PYMDw9L//7v/y4lJSVJAKT8/PyA77l161YJgN+H9xTyE0UQBOnHP/6xlJ+fL0VHR0tLly6V/vjHP45b7+6775YASM3NzT7PDw4OSl/84helefPmSbGxsdLWrVsDttG///3v0qpVq6SYmBgpNzdX+sEPfiA5nU5F2/m3v/1NYhhGam1t9TzX3NwsAZB+/OMfS9u2bZNiYmKkhQsXSu+88470ve99T4qNjZWefPJJSZJGY9jX1zfOy1/Mt27dKi1dutTnuX/+858SAKmpqUnRNlPIAoD097//3fP/999/XwIgxcXF+Tw0Go102223jXv9gQMHpNjYWOmNN97weT4qKkr685//7PPciy++KKWnp0+LB4Uy16D1E62f/EHrJze0fqJMJ5Otne6++27plltuGfd8bW2tlJWVJf30pz+Vzpw5I+3evVtavny59IUvfGEabShjYSRpGn4XS6FQKBQiEAQBpaWluO222/D0008DAC5duoSFCxfitddewz333DPt23DrrbeCYRjP5RqU2YUcW3mWrrfeeguf//znUVtbO+7m0/Hx8T73MTl8+DB27NiBX/ziF3jggQd81p0/fz4efvhhPPTQQ57nnnjiCbz77rs4c+bMtPlQKBQKhULrJ8p0MpnaCQDuuecemEymcTOs/sd//Afsdjvefvttz3OffPIJrrrqKnR2dvrMVkyZPujlqBQKhTKH4TgOTz31FB588EF85zvfQXx8fEQ/v76+Hu+//z5Onz4d0c+lzByrV6+GIAjo7e3FVVddFXC9Q4cO4cYbb8Szzz477gAc4L6vyf79+30Owu3duxcbNmyYjs2mUCgUCsUDrZ8okURp7RQKq9UKjcb3EJC/+0dSphd6EI5CoVDmOLfffjtuv/32GfnskpKScTfmppDP8PAwzp8/7/l/c3MzTp8+jZSUFBQWFuLzn/88du7cieeeew6rV69GX18f9u/fjxUrVmDHjh04ePAgbrzxRnzzm9/Ev/3bv3nu8xYdHe2ZnOGb3/wmtm7diueeew47duzAX/7yFxw/fhyvvvrqjDhTKBQKZW5B6yfKVDLZ2gkA6urq4HQ6MTg4CIvF4jlIK09Mc9NNN+H+++/H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aah+mr1Q/UQQxJlAB+EIgvDj+eefx9atW8/1ZpwRr7zyCn7729+e680AADAMg1/+8pdYsGABEhIScN555+Gf//yn6PVtNhvuvvtuZGZmIikpCZdddhkOHz4cctl//etfuOCCC5CQkIDCwkI8+uij8Hg8oj7H6/Xi0UcfxTe+8Q0kJyeL3r7pYunSpdiyZQseeeSRuH82QRAEQUwXVD9ND1Q/iYPqJ4KQLwqWZdlzvREEQUiH5cuXIyMjI+gXW4Zh4HK5oNVqoVRK8/j91Vdfjbq6Opw6depcbwoefvhh/OIXv8Bdd92FtWvX4t1338X777+Pf/7zn7jpppsirsswDC6++GJ8+umn+N73voeMjAw8//zz6OjowKFDh7BkyRJ+2f/85z/YsmULLr30Utx88804duwYnnvuOdx999144YUXom7nO++8g89//vPo6OhAfn7+WXufCf/5z39w1VVX4fjx41i0aNE52QaCIAiCOBuofpoeqH4SD9VPBCFTWIIgghgdHT3Xm3DOWLZsGbtx48ZzvRlnxJYtW9iioqJzvRlsZ2cnq9Fo2Pvuu49/jWEY9uKLL2YLCgpYj8cTcf3XXnuNBcC+8cYb/Gv9/f1sSkoKe/PNN/stu3TpUvb8889n3W43/9qPfvQjVqFQsI2NjVG39ZprrmEvuugisWozgsvlYlNTU9mf/OQn53Q7CIIgiLOD6qeN53ozzgiqn3xQ/UQQRDyQ5s8xBDGNdHV14c4770ReXh50Oh0WLFiAe+65By6XCwCwdetWKBQKfPTRR7j33nuRlZWFgoICfv3nn38ey5Ytg06nQ15eHu677z7YbDa/z2hpacH111+PnJwcJCQkoKCgADfddBPsdju/zIcffoiLLroIKSkpSE5ORklJCX74wx9G3X4x6zmdTjz66KNYvHgxdDod5s2bh+9///twOp1B7/ePf/wDZWVlSExMRGpqKi655BLs2LEDADB//nzU19fjo48+gkKhgEKhwKWXXgog/D1N3njjDaxevRp6vR4ZGRn40pe+hK6uLr9lbr/9diQnJ6OrqwvXXXcdkpOTkZmZie9+97vwer1R98G7776LLVu28DFctGgRfvrTn/qte+mll+L9999HW1sbv+3z588P+5633347v1zg47HHHou6TdG21+1249577+VfUygUuOeee9DZ2YmqqqqI67/55pvIzs7G5z//ef61zMxM3HDDDXj33Xf5uDY0NKChoQF333031Go1v+y9994LlmXx5ptvRvycyclJbN++HZs2bfJ7/dSpU1AoFCEvqwncP4899hgUCgWam5vxpS99CSaTCZmZmfjJT34ClmXR0dGBa6+9FkajETk5OfjVr34V9J4ajQaXXnop3n333YjbSxAEQcQPqp/8ofppapuofqL6iSCIM0cdfRGCkC/d3d0oKyvj7w9hNpvR1dWFN998E+Pj49Bqtfyy9957LzIzM/HII49gbGwMgC9BPv7449i0aRPuueceNDU14YUXXsCBAwdQUVEBjUYDl8uFzZs3w+l04hvf+AZycnLQ1dWF9957DzabDSaTCfX19bj66qtx3nnn4YknnoBOp8Px48dRUVERcfvFrMcwDK655hp88sknuPvuu1FaWopjx47hN7/5DZqbm/HOO+/wyz7++ON47LHHsGHDBjzxxBPQarWorq7G7t27ccUVV+C3v/0tf2+LH/3oRwCA7OzssNu3detW3HHHHVi7di2eeuop9PX14Xe/+x0qKipQW1uLlJQUflmv14vNmzejvLwc//M//4OdO3fiV7/6FRYtWoR77rkn4n7YunUrkpOT8eCDDyI5ORm7d+/GI488gpGRETzzzDMAgB/96Eew2+3o7OzEb37zGwCIeI+Or33ta0HF0/bt2/Hyyy8jKyuLf21wcDDitnEYDAbodDoAQG1tLZKSklBaWuq3TFlZGf/3iy66KOx71dbW4oILLgi6bKWsrAx/+tOf0NzcjBUrVqC2thYAsGbNGr/l8vLyUFBQwP89HIcOHYLL5cIFF1wgyjESN954I0pLS/GLX/wC77//Pn72s58hLS0Nf/zjH/GZz3wGTz/9NF5++WV897vfxdq1a3HJJZf4rb969Wq8++67GBkZgdFoPOvtIQiCIM4cqp+ofgoH1U9UPxEEcZac2xPxCGJmufXWW1mlUskeOHAg6G8Mw7Asy7IvvfQSC4C96KKL/E5z7+/vZ7VaLXvFFVewXq+Xf/3ZZ59lAbB//etfWZZl2dra2qBT3wP5zW9+wwJgBwYGYtp+Mev9/e9/Z5VKJfvxxx/7vf7iiy+yANiKigqWZVm2paWFVSqV7Oc+9zk/H5ad2hcsG/5yij179rAA2D179rAs6zsFPisri12+fDk7MTHBL/fee++xANhHHnmE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0kt48sknRb1Pbm4uXnzxRaxZswZOpxN//vOfcemll6K6uhoXXHDBTCoQxKyH6ieqn6h+Cg/VT8S54Ezqp9dffx0HDhzAH//4R/613t5eZGdn+y2XnZ1N99SNJ/GahpUgzhVtbW3srbfeymZmZrI6nY5duHAhe99997FOp5NlWZZ96aWXWADsgQMHQq7/7LPPsmazmdVoNGx2djZ7zz33sFarlf/7yZMn2a985SvsokWL2ISEBDYtLY297LLL2J07d/LL7Nq1i7322mvZvLw8VqvVsnl5eezNN9/MNjc3R9x2seu5XC726aefZpctW8bqdDo2NTWVXb16Nfv444+zdrvdb9m//vWv7KpVq/jlNm7cyH744Yf833t7e9ktW7awBoOBBcBu3LiRZVmW3bNnDwuA3bNnj9/7vfbaa/z7paWlsbfccgvb2dnpt8xtt93GJiUlBflx07NHo6Kigl23bh2r1+vZvLw89vvf/z77wQcfBG3P6Ogo+//9f/8fm5KSwgJgi4qKwr7nxo0bWQAhH8Ip5M8Ur9fLPvnkk2xRURGr1WrZZcuWsf/4xz+ClrvttttYAGxra6vf68PDw+ydd97Jpqens4mJiezGjRvDttG3336bXblyJavT6diCggL2xz/+MetyuURt51tvvcUqFAq2vb2df621tZUFwD755JPspk2bWJ1Oxy5YsIB988032R/+8IdsYmIi+/jjj7MsOxXDgYGBIK9QMd+4cSO7bNkyv9f+85//sADYlpYWUdtMyAsA7Ntvv83//7333mMBsElJSX4PtVrN3nDDDUHr33bbbey1114r6rMuueQS9ktf+tI0bTlBzG2ofqL6KRRUP/mg+omYac62ftq9ezebmJjI/u1vf/N7XaPRsK+88orfa8899xyblZU1Ix5EMAqWnYHzYgmCIAhZ4PV6sXTpUtxwww346U9/CgA4deoUFixYgJdeegm33377jG/DddddB4VCwV+uQcwuuNhyM5y+9tpruOWWW1BfXx908+nk5OSge8DdfvvtsNlsomYI+973vodPPvmELqkgCIIgZhSqn4iZ5mzqp48++ghbtmzBr3/9a9x9991+yxYWFuLBBx/EAw88wL/26KOP4p133sGnn346Yz7EFHQ5KkEQxBxGpVLhiSeewD333IOHHnoIycnJcf38xsZGvPfeezhy5EhcP5c4d6xa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b94s/Z6TkyMCAwPFq6++KsrLy0VWVpbTr8mOiooSX375pTh16pS46667xvTXZA82PtnHI0ev14vi4mJRXFwsAIjXXntNFBcXS98OuHnzZrFmzRqpfU1NjQgNDRV//vOfRXl5uXj77beFXC4X+/btk9q4s38Zax577DERGRkpDh06ZLef7urqktpwXBN5D+sn72L95B2sn7yH9ZN3sH6isYKTcH7E+lXvzn4OHjwotZs8ebLIysqyW/ett94SycnJQqFQiAULFoj8/Hy7v3d3d4vf/e53Ijo6WoSGhoq7777brlgaiz788EOnfW3btzfffLO4//777db773//K1JSUoRCoRCzZs0S33zzjd3fzWazeO6550RsbKxQKpViyZIlQq1WeyGR7xpofLKPR87Bgwedjmlr/95///3i5ptvdlgnPT1dKBQKcc0114gPP/zQ4X4H27+MNa7207Z9x3FN5D2sn7yL9ZP3sH7yDtZP3sH6icYKmRBCjPzn64iIiIiIiIiIiMiK14QjIiIiIiIiIiLyME7CEREREREREREReRgn4YiIiIiIiIiIiDyMk3BEREREREREREQexkk4IiIiIiIiIiIiD+MkHBERERERERERkYdxEo6IiIiIiIiIiMjDOAlHRERERERERETkYZyEIyKf9O9//xu33nqrxx9n3759SE9Ph9ls9vhjEREREXkS6yciIt/GSTgi8jk9PT147rnnkJWV5fHH+sUvfoGgoCDs2LHD449FRERE5Cmsn4iIfB8n4YjI53z++eeIiIjA4sWLvfJ4DzzwAN58802vPBYRERGRJ7B+IiLyfZyEIyKPaWlpgUqlwt/+9jdpWW5uLhQKBbKzs12ut3PnTtxxxx12y2655RZs2LDBbtny5cvxwAMPSL9PmTIFL7zwAtauXYuwsDBMnjwZX331FVpaWnDXXXchLCwMc+fORVFRkd393HHHHSgqKkJ1dfXwwxIRERGNANZPRESjFyfhiMhjJk6ciA8++ABbt25FUVER9Ho91qxZg/Xr12PJkiUu1zt27BhuuOGGYT3m66+/jsWLF6O4uBi333471qxZg7Vr1+K+++7DiRMnMG3aNKxduxZCCGmd5ORkxMbG4ujRo8N6TCIiIqKRwvqJiGj04iQcEXnUbbfdhoceegj33nsvHn30UYwbNw7btm1z2V6r1UKn0yE+Pn7Yj/fII49gxowZ2LJlC9rb2zF//nzcc889SElJwaZNm1BeXo7m5ma79eLj41FbWzusxyQiIiIaSayfiIhGJ07CEZHHvfrqqzAajdi1axd27NgBpVLpsm13dzcAIDg4eFiPNXfuXOl2bGwsAGDOnDkOyy5evGi3XkhICLq6uob1mEREREQjjfUTEdHow0k4IvK46upqNDY2wmw249y5cwO2jYmJgUwmg0ajGfR+TSaTw7KgoCDptkwmc7nMbDbbrdfW1oaJEycO+phERERE3sD6iYho9OEkHBF5lMFgwH333YdVq1bhr3/9K3772986vItqS6FQYObMmSgrK3P4W/9TIGpqakbkOfb09KC6uhrXXXfdiNwfERER0ZVg/URENDpxEo6IPOqZZ56BTqfDm2++iU2bNiElJQW/+c1vBlxn2bJlOHbsmMPyL7/8Ert370Z1dTVefPFFlJWVoba2FufPn7+i55ifnw+lUonMzMwruh8iIiKikcD6iYhodOIkHBF5zKFDh/DGG2/g448/RkREBAICAvDxxx/j6NGjePfdd12ut27dOuzduxc6nc5u+e23346XX34ZM2fOxJEjR/DOO++gsLAQH3/88RU9z08//RT33nsvQkNDr+h+iIiIiK4U6yciotFLJmy/Z5qIyEfcc889uP766/H0008DAG655Rakp6fjjTfeGNHHaW1tRWpqKoqKijB16tQRvW8iIiIib2L9RETk2/hJOCLySa+88grCwsI8/jjnzp3DO++8wwKSiIiI/B7rJyIi38ZPwhGRX/DUO7lEREREoxXrJyIi38JJOCIiIiIiIiIiIg/j6ahEREREREREREQexkk4IiIiIiIiIiIiD+MkHBERERERERERkYdxEo6IiIiIiIiIiMjDOAlHRERERERERETkYZyEIyIiIiIiIiIi8jBOwhEREREREREREXkYJ+GIiIiIiIiIiIg87P8BKzAW7Gun8BUAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "_, ax = plt.subplots(2,2, figsize=(14, 10))\n", + "fig1 = scene.plot_structures_property(z=0, property=\"doping\", ax=ax[0][0],limits=[-1e20, 1e20])\n", + "fig2 = scene.plot_structures_property(z=0, property=\"doping\", ax=ax[0][1],limits=[-1e18, 1e18])\n", + "fig3 = scene.plot_structures_property(z=0, property=\"doping\", ax=ax[1][0],limits=[0, 1e15])\n", + "fig4 = scene.plot_structures_property(z=0, property=\"doping\", ax=ax[1][1],limits=[-1e20, 0])" + ] + }, + { + "cell_type": "markdown", + "id": "fd0f4941-ab26-4fa0-9c91-45909bff1b19", + "metadata": {}, + "source": [ + "## Boundary Conditions\n", + "This section sets up the boundary conditions for the simulation.\n", + "- Charge Boundary Conditions: `HeatChargeBoundarySpec` is used to define the electrical boundary conditions. DC voltage sources are applied to the cathode and anode. The anode voltage is swept through a list of values from 0.5 to 1.2 Volt.\n", + "- Thermal Boundary Conditions: `HeatBoundarySpec` is used to define the thermal boundary conditions. Temperature boundary conditions are set at the interfaces between different structures. Temperature at electrodes is artifically increased up to 50 degress to showcase different simulation results between isothermal and non-isothermal analysis." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "aff6d1ab-966f-43d9-9439-06e0f1bb3cbd", + "metadata": {}, + "outputs": [], + "source": [ + "# cathode\n", + "voltages_cathode = [0]\n", + "bc_p = td.HeatChargeBoundarySpec(\n", + " condition=td.VoltageBC(source=td.DCVoltageSource(voltage=voltages_cathode)),\n", + " placement=td.StructureStructureInterface(structures=[\"cathode\", \"pad\"])\n", + ")\n", + "\n", + "voltages_anode = [0] +[0.5 + round((1/20)*x,5) for x in range(17)]\n", + "# anode\n", + "bc_n = td.HeatChargeBoundarySpec(\n", + " condition=td.VoltageBC(source=td.DCVoltageSource(voltage=voltages_anode)),\n", + " placement=td.StructureStructureInterface(structures=[\"anode\", \"pad\"])\n", + ")\n", + "charge_bcs = [bc_n, bc_p]\n", + "\n", + "# Ambient temperature for the heat sink model\n", + "temperature = 300\n", + "temperature_electrodes = 350\n", + "\n", + "# cathode\n", + "bc3 = td.HeatBoundarySpec(\n", + " condition=td.TemperatureBC(temperature=temperature_electrodes),\n", + " placement=td.StructureStructureInterface(structures=[\"cathode\", \"pad\"]),\n", + ")\n", + "# anode\n", + "bc4 = td.HeatBoundarySpec(\n", + " condition=td.TemperatureBC(temperature=temperature_electrodes),\n", + " placement=td.StructureStructureInterface(structures=[\"anode\", \"pad\"]),\n", + ")\n", + "\n", + "bc3a = td.HeatBoundarySpec(\n", + " condition=td.TemperatureBC(temperature=temperature_electrodes),\n", + " placement=td.StructureStructureInterface(structures=[\"cathode\", \"soxbox\"]),\n", + ")\n", + "# anode\n", + "bc4a = td.HeatBoundarySpec(\n", + " condition=td.TemperatureBC(temperature=temperature_electrodes),\n", + " placement=td.StructureStructureInterface(structures=[\"anode\", \"soxbox\"]),\n", + ")\n", + "# box\n", + "bc5 = td.HeatBoundarySpec(\n", + " condition=td.TemperatureBC(temperature=temperature),\n", + " placement=td.StructureStructureInterface(structures=[\"soxbox\", \"contact_bottom\"])\n", + ")\n", + "thermal_bcs = [bc3, bc4, bc3a, bc4a, bc5]" + ] + }, + { + "cell_type": "markdown", + "id": "65bd88f8-95e7-433d-bb11-de480a6c955b", + "metadata": {}, + "source": [ + "## Monitors\n", + "Monitors are used to record the simulation results at different points in the simulation domain.\n", + "\n", + "- `SteadyFreeCarrierMonitor`: Records the steady-state free carrier concentration.\n", + "- `SteadyPotentialMonitor`: Records the steady-state electric potential.\n", + "- `SteadyCapacitanceMonitor`: Records the capacitance of the device.\n", + "- `TemperatureMonitor`: Records the temperature distribution." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "ef5b3741-f3eb-4a4b-a136-6dd0629389ed", + "metadata": {}, + "outputs": [], + "source": [ + "# monitors\n", + "charge_global_mnt = td.SteadyFreeCarrierMonitor(\n", + " center=(0, 0, 0), size=(td.inf, td.inf, td.inf), name=\"charge_global_mnt\", unstructured=True\n", + ")\n", + "\n", + "potential_global_mnt = td.SteadyPotentialMonitor(\n", + " center=(0, 0, 0), size=(td.inf, td.inf, td.inf), name=\"potential_global_mnt\", unstructured=True\n", + ")\n", + "\n", + "capacitance_global_mnt = td.SteadyCapacitanceMonitor(\n", + " center=(0, 0, 0), size=(td.inf, td.inf, td.inf), name=\"capacitance_global_mnt\", unstructured=True\n", + ")\n", + "\n", + "temp_mnt = td.TemperatureMonitor(\n", + " center=(0, 0, 0), size=(td.inf, td.inf, td.inf), name=\"temp_mnt\", unstructured=True\n", + ")\n", + "\n", + "monitors = [charge_global_mnt, potential_global_mnt, capacitance_global_mnt, temp_mnt]\n", + "monitors_iso = [charge_global_mnt, potential_global_mnt, capacitance_global_mnt]" + ] + }, + { + "cell_type": "markdown", + "id": "9ea4647a-2e28-45a9-b2df-4df3444125ec", + "metadata": {}, + "source": [ + "## Simulation Setup\n", + "- Charge Tolerance: `ChargeToleranceSpec` sets the convergence criteria for the charge solver.\n", + "- Analysis Type: `SteadyChargeDCAnalysis` specifies a steady-state direct current (DC) analysis. The fermi_dirac=True argument indicates that Fermi-Dirac statistics should be used, which is more accurate for heavily doped semiconductors.\n", + "- Grid Specification: `DistanceUnstructuredGrid` is used to create a non-uniform mesh for the simulation. The mesh is refined in specific regions of interest using GridRefinementRegion to improve accuracy where needed, such as near the junctions." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "422a1ff6-f855-4f83-9ede-2161c629d4d7", + "metadata": {}, + "outputs": [], + "source": [ + "charge_tolerance = td.ChargeToleranceSpec(rel_tol=1e-4, abs_tol=1e16, max_iters=400, ramp_up_iters=5)\n", + "analysis_type_iso = td.IsothermalSteadyChargeDCAnalysis(tolerance_settings=charge_tolerance,\n", + " convergence_dv=0.1,\n", + " fermi_dirac=False,\n", + " temperature=300)\n", + "analysis_type = td.SteadyChargeDCAnalysis(tolerance_settings=charge_tolerance,convergence_dv=0.1,fermi_dirac=False)" + ] + }, + { + "cell_type": "markdown", + "id": "ad6a4d73-d4ff-42b1-92c4-70277fb8a139", + "metadata": {}, + "source": [ + "Here we can **manually** define the regions that require a finer mesh. This is particularly useful for resolving small features or areas where fields are expected to vary rapidly, without the computational cost of making the entire grid uniformly fine. In particular, an higher refinement is applied\n", + "- In the region where the doping concentration changes rapidly.\n", + "- In the proximity of corners (between the pad and the rib) to address singular fields.\n", + "\n", + "Below it is shown an example on how the local refined mesh might look like. Automatic refinement will be featured in future versions of Tidy3D.\n", + "\n", + "![Local_refinement](img/local_refinement.png \"Local refinement visualization\")" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "0dd7233b-6b79-4175-ac5e-80532e315eb4", + "metadata": {}, + "outputs": [], + "source": [ + "dl = 0.025\n", + "dl_ref = dl / 6\n", + "box_width = 0.12\n", + "\n", + "# Interface between nwell and the rightmost side (not doped)\n", + "ref1 = td.GridRefinementRegion(\n", + " center=(-2.35, -0.045, 0),\n", + " size=(box_width, 0.1, 0),\n", + " dl_internal=dl_ref,\n", + " transition_thickness=dl * 20,\n", + ")\n", + "\n", + "# Interface between pwell and the rightmost side (not doped)\n", + "ref2 = td.GridRefinementRegion(\n", + " center=(2.35, -0.045, 0),\n", + " size=(box_width, 0.1, 0),\n", + " dl_internal=dl_ref,\n", + " transition_thickness=dl * 20,\n", + ")\n", + "\n", + "# refinement around the corner (left)\n", + "ref3 = td.GridRefinementRegion(\n", + " center=(-0.25, -0.045, 0),\n", + " size=(box_width, 0.1, 0),\n", + " dl_internal=dl_ref,\n", + " transition_thickness=dl * 20,\n", + ")\n", + "\n", + "# refinement around the corner (right)\n", + "ref4 = td.GridRefinementRegion(\n", + " center=(0.25, -0.045, 0),\n", + " size=(box_width, 0.1, 0),\n", + " dl_internal=dl_ref,\n", + " transition_thickness=dl * 20,\n", + ")\n", + "\n", + "# Interface between pepi and nplus\n", + "ref5 = td.GridRefinementRegion(\n", + " center=(-1.25, -0.045, 0),\n", + " size=(box_width, 0.1, 0),\n", + " dl_internal=dl_ref,\n", + " transition_thickness=dl * 20,\n", + ")\n", + "\n", + "# Interface between pepi and pplus\n", + "ref6 = td.GridRefinementRegion(\n", + " center=(1.25, -0.045, 0),\n", + " size=(box_width, 0.1, 0),\n", + " dl_internal=dl_ref,\n", + " transition_thickness=dl * 20,\n", + ")\n", + "\n", + "# Build a grid specification with all these custom refinements\n", + "grid_spec = td.DistanceUnstructuredGrid(\n", + " relative_min_dl=0, \n", + " dl_interface=dl, \n", + " dl_bulk=20*dl, \n", + " distance_interface=2*dl, \n", + " distance_bulk=6*dl, \n", + " sampling=1000, \n", + " non_refined_structures=[\"soxbox\"], \n", + " uniform_grid_mediums=[\"Si_doping\"],\n", + " mesh_refinements=[ref1, ref2, ref3, ref4, ref5, ref6]\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "1bd8666d-aaf6-4657-9eeb-754f85515316", + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "sim_center = (0, -0.545, 0)\n", + "sim_size = (4.8, 3.5, 0)\n", + "\n", + "def createSim(structures, bcs, analysis_t):\n", + " sim = td.HeatChargeSimulation(\n", + " medium=air,\n", + " structures=structures,\n", + " size=sim_size,\n", + " center=sim_center,\n", + " boundary_spec=bcs,\n", + " analysis_spec=analysis_t,\n", + " monitors=monitors,\n", + " grid_spec=grid_spec\n", + " )\n", + " return sim\n", + "\n", + "sim = createSim(structures, charge_bcs + thermal_bcs, analysis_type)\n", + "sim_cst = createSim(structures_cst, charge_bcs + thermal_bcs, analysis_type)\n", + "sim_iso = createSim(structures_cst, charge_bcs, analysis_type_iso)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "eeeb6492-5132-4dbf-bea9-7f25431e57be", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA94AAAE7CAYAAAAre1kzAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8fJSN1AAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOydd5wURfr/351mdllycAERUEygIhkBPaKgIkEM6BcPRMVTT09FD8UAgnciesYT5XfeGU9PDCd6BlCJKohERUFAwURactgw06F+f8xO78zuzO6EXXZ6qffrNdA709NTn+fprqequ+opRQghkEgkEolEIpFIJBKJRFIlqNVdAIlEIpFIJBKJRCKRSGoysuMtkUgkEolEIpFIJBJJFSI73hKJRCKRSCQSiUQikVQhsuMtkUgkEolEIpFIJBJJFSI73hKJRCKRSCQSiUQikVQhsuMtkUgkEolEIpFIJBJJFSI73hKJRCKRSCQSiUQikVQhsuMtkUgkEolEIpFIJBJJFSI73hKJRCKRSCQSiUQikVQhsuMtkZRi4cKFKIrCwoULq7sokkrmjTfeoGHDhhw+fPiI//a6devQdZ1vv/32iP+2RCKRSCpGxv+ai4z/kkxAdrwlRy3PPPMML774YnUXIyVee+01nnjiieouBgCO4/Dwww9z/PHHk5WVRfv27fnPf/6T8Pf379/PddddR5MmTcjJyaFv376sWrUq5r7vvfcenTp1Iisri5YtWzJ58mQsy0rod2zbZvLkydx8883Url074fJVFu3atWPw4MFMmjTpiP+2RCKRSEqQ8b9ykPE/MWT8l7gIieQo5bTTThO9e/cu875t26KwsFDYtn3kC5UggwcPFq1ataruYgghhLjrrrsEIMaNGyf+8Y9/iMGDBwtA/Oc//6nwu7Zti549e4qcnBxx//33i6efflq0a9dO1KlTR2zcuDFq3w8//FAoiiL69u0r/vGPf4ibb75ZqKoqrr/++oTK+c477whFUcRvv/2Wks7K4MMPPxSA+OGHH6qtDBKJRHK0I+N/5SDjf+LI+C8RQgjZ8T7KOXz4cHUXodqIF3i9QKYE3t9++00YhiH++Mc/uu85jiPOOecc0aJFC2FZVrnfnzVrlgDEm2++6b6Xl5cn6tevL6644oqofdu1ayfOPPNMYZqm+94999wjFEUR69evr7CsQ4cOFWeffXai0qqEYDAoGjRoIO67775qLYdEIpHI+N+7uouREjL+h5DxX+JFZMe7BvHbb7+Jq6++WjRr1kz4fD7RunVrcf3114tAICCEEOKFF14QgFi4cKG44YYbRJMmTUT9+vXd78+YMUO0a9dO+Hw+0axZM3HjjTeKffv2Rf3Gxo0bxYgRI0Rubq7w+/3i2GOPFSNHjhT79+939/n4449Fr169RL169UROTo44+eSTxcSJEyssfyLfKyoqEpMmTRJt2rQRPp9PtGjRQvz5z38WRUVFZY73yiuviK5du4rs7GxRv359cc4554i5c+cKIYRo1aqVAKJe4SC8YMECAYgFCxZEHe+NN94QnTp1EllZWaJRo0Zi1KhRZe6ejhkzRuTk5IjffvtNDBs2TOTk5IjGjRuL22+/vcIgJIQQs2fPFhdccIHrwxNOOEFMnTo16ru9e/cuU/bygvCYMWPK7B9+TZ48ucIylceMGTMEIL777ruo91977TUBiM8++6zc71966aUiNze3zNOF6667TtSqVcv163fffScAMWPGjKj9tm7dKgDxwAMPlPs7hYWFwufzifvvvz/q/S1btghAvPDCC2W+U9o+kydPFoDYsGGDGDVqlKhbt65o3LixuPfee4XjOOKXX34RQ4cOFXXq1BG5ubnib3/7W8yyXHTRRaJ9+/blllcikUiSQcb/aGT8LymTjP8y/ksyB70yh61Lqo9t27bRrVs3d77MqaeeytatW3nrrbcoKCjA5/O5+9544400adKESZMmkZ+fD8D999/PlClTGDBgADfccAMbNmzg2WefZfny5XzxxRcYhkEwGGTQoEEEAgFuvvlmmjZtytatW3n//ffZv38/9erV47vvvuPCCy+kffv2TJ06Fb/fzw8//MAXX3xRbvkT+Z7jOAwdOpTPP/+c6667jrZt27J27Voef/xxNm7cyOzZs919p0yZwv3330/Pnj2ZOnUqPp+PZcuWMX/+fAYOHMgTTzzhzvW55557AMjNzY1bvhdffJGxY8fStWtXpk2bxs6dO3nyySf54osvWL16NfXr13f3tW2bQYMG0b17d/72t7/x6aef8uijj9KmTRtuuOGGcu3w4osvUrt2bcaPH0/t2rWZP38+kyZN4uDBgzzyyCMA3HPPPRw4cIDffvuNxx9/HKDcOUt/+MMfGDBgQNR7c+bM4dVXX+WYY45x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9MS2pwdaR67+EKhs0Xqiic+97MpB1BFf7kz94cU95YtA63DJ1h/x8T+fOqJuMrgc6NKlC8uWLaNz584ArFmzhq5du2KaJuvWraNHjx5UVlbyyy+/0LNnT8rLy9m4cSO77rqr9/mtW7d657vzzju56667kn7XggULGDhwINXV1bRu3Zq33nqLvn37AnD22WfTvXt3OnfuzPz587nllltYtGgRb775pi8dPXr0aLBNkiz++iHjoeapWLp0KXvttVdOKdYfeughHnzwwYTlRObPn5+wnMigQYM45ZRTuOqqqwC48cYbOfHEE+nevTtr1qzhzjvvZN68eSxcuJAOHToAcPnllzNx4kReeuklSktLufrqqwGYMWOG77LJrOYSiaQl0BhZTf/y//6KmcVQM8MwuPSSi+VQ8wZ49913ATj55JN5+eWXKSsr896zbZvJkyfz8ccfs2jRou1WJhn/a4lvgAMZr99btwFuWk7G6xDHN8ANXc1q/V6pQ+qQOlqeDlMUEzlqek7x///99W9Eo9GMn3iHw2EuvuhCdCPk+4l3NBpl5cqVbN68mTfeeIO//vWvfPrpp17nO54pU6YwaNAgfvrpJ3bbbbe0er799tuEv03TZO7cuTz++OPcf//9nHrqqf4MU4eMn3in4ttvv2W//fbL6Rw333wzlZWVXHrppZSXl3PYYYcxadKkhDU8lyxZwq+//ur9vWrVKs466yx+++03OnTowGGHHcaXX37pBV2AJ554AlVVOe2004hEIgwdOjSjYXHbExuNxQyhNx/XDGFpmUg7xJB2kDZwCZIdmss6noXIySefDMRGB5x33nkJ7xmGQY8ePXjssce2a5lk/K+l7pOkTBrjNhqLlSHsZnyMGY1kvQ5x/Pq/kaiNUvOULZNliHLRAbVP9qqjVsY6vLpO/ZiwQWB1uGTrj/g6P1zTWg+ijngy9UfduBdUHXXJVEey+J8XHWE1bpB+diiKkhDL4zvRybbrjpBr06aN77ZAKBSiV69eQGyE06xZs3jyySd54YUX6h3rTm/y2/Hed9996+078MAD6dy5M4888sj263jfcMMN9fatX7+ed955h+HDhye8//jjj2d0bkVRuOeee7jnnntSHrN8+fKEv1999dW05y0qKuLZZ5/l2Wefzag8TYNKFWXEEs4XduM6v0g7xJB2kDZwCY4d5FDz/OE4sQZS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ahRr1qxJ+9lnn32WHj16UFRUxIABA/j6668T3q+urubKK6+kffv2tG7dmtNOO43169fnS0rOvPnmmxx77LG0b98eRVGYN2+er89NmDCBPn36UFRURL9+/Zg4cWLC+0II7rjjDnbeeWeKi4sZPHgwixcvzoOC3Enn07o0J+0An332GSeeeCKdO3dGURTefvvttJ+ZNm0a+++/P+FwmF69evHSSy/VOyZTuzY1Y8aM4aCDDqJNmzbstNNOnHzyySxatCjt55rb70Eiac7I+F+LjP8y/oNsA4CM/y0eIckr5eXlYvDgweK1114TP/74o5g5c6Y4+OCDxQEHHNDg51599VURCoXEiy++KL7//ntxySWXiLZt24r169d7x1x22WWia9euYvLkyWL27NnikEMOEYceemi+JWXNP/7xD3H33XeL//f//p8AxNy5c9N+5osvvhCapomHH35YLFy4UNx2223CMAyxYMEC75gHH3xQlJWVibffflt8++234qSTThI9e/YUVVVVeVSTOX58Gk9z0u4yceJE8X//93/izTffFIB46623Gjx+6dKloqSkRNxwww1i4cKF4umnnxaapolJkyZ5x2Rq10Jg6NCh4u9//7v47rvvxLx588SwYcNEt27dxNatW1N+pjn+HiSS5oyM/7XI+C/jvxCyDSCEjP8tHdnxbgK+/vprAYgVK1akPObggw8WV155pfe3bduic+fOYsyYMUKIWEA3DENMmDDBO+aHH34QgJg5c2b+Ct8ILFu2zHfg/cMf/iCGDx+esG/AgAHij3/8oxBCCMdxRKdOncQjjzzivV9eXi7C4bD497//3ajlzpV0Pq1Lc9KeDD9B9+abbxZ77bVXwr4zzjhDDB061Ps7U7sWIhs2bBCA+PTTT1Me09x/DxJJS0DGfxn/hZDxXwjZBnCR8b9lIYeaNwGbN29GURTatm2b9P1oNMo333zD4MGDvX2qqjJ48GBmzpwJwDfffINpmgnH9OnTh27dunnHNAdmzpyZoBFg6NChnsZly5axbt26hGPKysoYMGBAQdnBj0/r0ly050I6G2Rj10Jk8+bNALRr1y7lMfL3IJEEHxn//dNc6jwZ/7OnJbQBZPxvWciO93amurqaW265hbPOOovS0tKkx/z666/Ytk3Hjh0T9nfs2JF169YBsG7dOkKhUL3gHX9Mc2DdunVp7eDu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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "_, ax = plt.subplots(1, 2, figsize=(10, 4))\n", + "fig1 = sim.plot_property(z=0, property=\"heat_conductivity\", ax=ax[0])\n", + "fig2 = sim.plot_property(z=0, property=\"electric_conductivity\", ax=ax[1])\n", + "plt.tight_layout()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "fc882d41-2048-473b-9109-d8ef0e2594a2", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m815\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mSetting up heat-charge simulation.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m841\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin meshing heat-charge simulation.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m853\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin adding structures to mesh.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m862\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m871\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m880\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m889\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m897\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m907\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m915\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m924\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m932\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m940\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m947\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m957\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m964\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m974\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd adding structures to mesh.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m981\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m991\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m999\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m008\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m017\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m026\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m035\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m044\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m053\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m062\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m071\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m080\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m089\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin adding monitors.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m096\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd adding monitors.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m105\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin combining added structures.\u001b[0m \n", + "Debug : BOOL (2,1) other \n", + "Debug : BOOL (3,1) replaced by 1\n", + "Debug : BOOL (3,2) other\n", + "Debug : BOOL (3,3) replaced by 1\n", + "Debug : BOOL (3,4) replaced by 1\n", + "Debug : BOOL (3,5) replaced by 1\n", + "Debug : BOOL (3,6) other\n", + "Debug : BOOL (2,38) other\n", + "Debug : BOOL (2,39) other\n", + "Debug : BOOL (2,40) other\n", + "Debug : BOOL (2,41) other\n", + "Debug : BOOL (2,42) other\n", + "Debug : BOOL (2,43) other\n", + "Debug : BOOL (2,44) other\n", + "Debug : BOOL (2,45) other\n", + "Debug : BOOL (2,46) other\n", + "Debug : BOOL (2,47) other\n", + "Debug : BOOL (2,48) other\n", + "Debug : BOOL (2,49) other\n", + "Debug : BOOL in (2,1) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (3,1) -> out (3,1)\n", + "Debug : BOOL in (3,2) -> out (3,6) (3,5) (3,3) (3,7) (3,8) (3,4) (3,9)\n", + "Debug : BOOL in (3,3) -> out (3,3)\n", + "Debug : BOOL in (3,4) -> out (3,4)\n", + "Debug : BOOL in (3,5) -> out (3,5)\n", + "Debug : BOOL in (3,6) -> out (3,9) (3,8)\n", + "Debug : BOOL in (2,38) -> out (2,13) (2,48) (2,49)\n", + "Debug : BOOL in (2,39) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,40) -> out (2,8) (2,51) (2,54)\n", + "Debug : BOOL in (2,41) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,42) -> out (2,11) (2,60) (2,37) (2,43)\n", + "Debug : BOOL in (2,43) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,44) -> out (2,10) (2,63) (2,44) (2,38)\n", + "Debug : BOOL in (2,45) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,46) -> out (2,12) (2,53) (2,36)\n", + "Debug : BOOL in (2,47) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,48) -> out (2,9) (2,58) (2,39)\n", + "Debug : BOOL in (2,49) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m194\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd adding structures to mesh.\u001b[0m \n", + "Debug : Syncing OCC_Internals with GModel\n", + "Debug : Sync is removing 377 model entities\n", + "Debug : Destroying 0 entities in model\n", + "Debug : OCCRTree found 3 matches at (-2.5,-2.09,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (-2.5,-2.09,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (-2.5,-2.09,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (-2.5,-2.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (-2.5,-2.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (-2.5,-2.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-2.09,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-2.09,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-2.09,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-2.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-2.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-2.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-2.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-2.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-2.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-2.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-2.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-2.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.5,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.5,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.5,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.5,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.5,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.5,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,-2.295,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,-2.295,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,-2.295,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,-2.295,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,-2.295,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,-2.295,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,1.205,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,1.205,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,1.205,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,1.205,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,1.205,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,1.205,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-2.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-2.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-2.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.75,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.75,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.75,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.75,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.75,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.75,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,-2.295,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,-2.295,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,-2.295,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-2.1925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-2.1925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-2.1925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-2.1925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-2.1925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-2.1925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.2525,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.2525,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.2525,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.2525,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.2525,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.2525,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,1.1025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,1.1025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,1.1025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,1.205,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,1.205,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,1.205,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,1.1025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,1.1025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,1.1025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.28,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.28,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.28,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.28,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.28,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.28,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.47,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.47,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.47,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.28,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.28,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.28,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.28,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.28,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.28,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.045,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.045,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.045,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.25,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.25,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.25,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.25,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.25,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.25,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 7 - new wire\n", + "Debug : Curve 8 (7 --> 8) ori 1\n", + "Debug : Curve 42 (8 --> 34) ori 1\n", + "Debug : Curve 41 (33 --> 34) ori -1\n", + "Debug : Curve 40 (11 --> 33) ori -1\n", + "Debug : Curve 14 (13 --> 11) ori -1\n", + "Debug : Curve 39 (32 --> 13) ori -1\n", + "Debug : Curve 38 (31 --> 32) ori -1\n", + "Debug : Curve 37 (14 --> 31) ori -1\n", + "Debug : Curve 16 (15 --> 14) ori -1\n", + "Debug : Curve 36 (30 --> 15) ori -1\n", + "Debug : Curve 35 (29 --> 30) ori -1\n", + "Debug : Curve 34 (16 --> 29) ori -1\n", + "Debug : Curve 18 (17 --> 16) ori -1\n", + "Debug : Curve 33 (28 --> 17) ori -1\n", + "Debug : Curve 32 (27 --> 28) ori -1\n", + "Debug : Curve 31 (18 --> 27) ori -1\n", + "Debug : Curve 20 (19 --> 18) ori -1\n", + "Debug : Curve 30 (26 --> 19) ori -1\n", + "Debug : Curve 29 (25 --> 26) ori -1\n", + "Debug : Curve 28 (20 --> 25) ori -1\n", + "Debug : Curve 22 (21 --> 20) ori -1\n", + "Debug : Curve 27 (24 --> 21) ori -1\n", + "Debug : Curve 26 (23 --> 24) ori -1\n", + "Debug : Curve 25 (23 --> 7) ori 1\n", + "Debug : OCC surface 7 with 24 parameter bounds (-2.4,2.4)(-1.545,0.455)\n", + "Debug : OCCRTree found 1 matches at (0,-1.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-1.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-1.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 8 - new wire\n", + "Debug : Curve 43 (22 --> 23) ori 1\n", + "Debug : Curve 26 (23 --> 24) ori 1\n", + "Debug : Curve 27 (24 --> 21) ori 1\n", + "Debug : Curve 23 (22 --> 21) ori -1\n", + "Debug : OCC surface 8 with 4 parameter bounds (-2.4,-2.29)(0.45,0.455)\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 9 - new wire\n", + "Debug : Curve 21 (20 --> 19) ori -1\n", + "Debug : Curve 28 (20 --> 25) ori 1\n", + "Debug : Curve 29 (25 --> 26) ori 1\n", + "Debug : Curve 30 (26 --> 19) ori 1\n", + "Debug : OCC surface 9 with 4 parameter bounds (-1.31,-1.19)(0.45,0.455)\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 10 - new wire\n", + "Debug : Curve 19 (18 --> 17) ori -1\n", + "Debug : Curve 31 (18 --> 27) ori 1\n", + "Debug : Curve 32 (27 --> 28) ori 1\n", + "Debug : Curve 33 (28 --> 17) ori 1\n", + "Debug : OCC surface 10 with 4 parameter bounds (-0.31,-0.19)(0.45,0.455)\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 11 - new wire\n", + "Debug : Curve 36 (30 --> 15) ori 1\n", + "Debug : Curve 17 (16 --> 15) ori -1\n", + "Debug : Curve 34 (16 --> 29) ori 1\n", + "Debug : Curve 35 (29 --> 30) ori 1\n", + "Debug : OCC surface 11 with 4 parameter bounds (0.19,0.31)(0.45,0.455)\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 12 - new wire\n", + "Debug : Curve 39 (32 --> 13) ori 1\n", + "Debug : Curve 15 (14 --> 13) ori -1\n", + "Debug : Curve 37 (14 --> 31) ori 1\n", + "Debug : Curve 38 (31 --> 32) ori 1\n", + "Debug : OCC surface 12 with 4 parameter bounds (1.19,1.31)(0.45,0.455)\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 13 - new wire\n", + "Debug : Curve 41 (33 --> 34) ori 1\n", + "Debug : Curve 44 (34 --> 12) ori 1\n", + "Debug : Curve 13 (11 --> 12) ori -1\n", + "Debug : Curve 40 (11 --> 33) ori 1\n", + "Debug : OCC surface 13 with 4 parameter bounds (2.29,2.4)(0.45,0.455)\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 35 - new wire\n", + "Debug : Curve 93 (70 --> 72) ori 1\n", + "Debug : Curve 118 (72 --> 51) ori 1\n", + "Debug : Curve 62 (50 --> 51) ori -1\n", + "Debug : Curve 117 (50 --> 55) ori 1\n", + "Debug : Curve 68 (55 --> 54) ori 1\n", + "Debug : Curve 70 (56 --> 54) ori -1\n", + "Debug : Curve 74 (56 --> 60) ori 1\n", + "Debug : Curve 116 (84 --> 60) ori -1\n", + "Debug : Curve 115 (83 --> 84) ori -1\n", + "Debug : Curve 114 (59 --> 83) ori -1\n", + "Debug : Curve 72 (59 --> 57) ori 1\n", + "Debug : Curve 113 (82 --> 57) ori -1\n", + "Debug : Curve 112 (62 --> 82) ori -1\n", + "Debug : Curve 77 (62 --> 61) ori 1\n", + "Debug : Curve 80 (61 --> 63) ori 1\n", + "Debug : Curve 82 (65 --> 63) ori -1\n", + "Debug : Curve 111 (81 --> 65) ori -1\n", + "Debug : Curve 110 (69 --> 81) ori -1\n", + "Debug : Curve 86 (69 --> 68) ori 1\n", + "Debug : Curve 109 (80 --> 68) ori -1\n", + "Debug : Curve 108 (79 --> 80) ori -1\n", + "Debug : Curve 107 (66 --> 79) ori -1\n", + "Debug : Curve 84 (66 --> 67) ori 1\n", + "Debug : Curve 90 (67 --> 70) ori 1\n", + "Debug : OCC surface 35 with 24 parameter bounds (-2.4,2.4)(0.545,1.545)\n", + "Debug : OCCRTree found 1 matches at (0,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 36 - new wire\n", + "Debug : Curve 85 (68 --> 66) ori 1\n", + "Debug : Curve 107 (66 --> 79) ori 1\n", + "Debug : Curve 108 (79 --> 80) ori 1\n", + "Debug : Curve 109 (80 --> 68) ori 1\n", + "Debug : OCC surface 36 with 4 parameter bounds (1.19,1.31)(0.545,0.55)\n", + "Debug : OCCRTree found 1 matches at (-1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 37 - new wire\n", + "Debug : Curve 87 (64 --> 69) ori 1\n", + "Debug : Curve 110 (69 --> 81) ori 1\n", + "Debug : Curve 111 (81 --> 65) ori 1\n", + "Debug : Curve 83 (64 --> 65) ori -1\n", + "Debug : OCC surface 37 with 4 parameter bounds (0.25,0.31)(0.545,0.55)\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 38 - new wire\n", + "Debug : Curve 113 (82 --> 57) ori 1\n", + "Debug : Curve 71 (57 --> 58) ori 1\n", + "Debug : Curve 78 (58 --> 62) ori 1\n", + "Debug : Curve 112 (62 --> 82) ori 1\n", + "Debug : OCC surface 38 with 4 parameter bounds (-0.31,-0.25)(0.545,0.55)\n", + "Debug : OCCRTree found 1 matches at (0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 39 - new wire\n", + "Debug : Curve 116 (84 --> 60) ori 1\n", + "Debug : Curve 73 (60 --> 59) ori 1\n", + "Debug : Curve 114 (59 --> 83) ori 1\n", + "Debug : Curve 115 (83 --> 84) ori 1\n", + "Debug : OCC surface 39 with 4 parameter bounds (-1.31,-1.19)(0.545,0.55)\n", + "Debug : OCCRTree found 1 matches at (1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 42 - new wire\n", + "Debug : Curve 121 (86 --> 85) ori 1\n", + "Debug : Curve 126 (88 --> 85) ori -1\n", + "Debug : Curve 125 (65 --> 88) ori -1\n", + "Debug : Curve 82 (65 --> 63) ori 1\n", + "Debug : Curve 80 (61 --> 63) ori -1\n", + "Debug : Curve 77 (62 --> 61) ori -1\n", + "Debug : Curve 124 (87 --> 62) ori -1\n", + "Debug : Curve 123 (86 --> 87) ori -1\n", + "Debug : OCC surface 42 with 8 parameter bounds (-0.25,0.25)(0.545,0.765)\n", + "Debug : OCCRTree found 1 matches at (0,0.11,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.11,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.11,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 43 - new wire\n", + "Debug : Curve 120 (85 --> 64) ori 1\n", + "Debug : Curve 83 (64 --> 65) ori 1\n", + "Debug : Curve 125 (65 --> 88) ori 1\n", + "Debug : Curve 126 (88 --> 85) ori 1\n", + "Debug : OCC surface 43 with 4 parameter bounds (0.19,0.25)(0.545,0.55)\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 44 - new wire\n", + "Debug : Curve 122 (58 --> 86) ori 1\n", + "Debug : Curve 123 (86 --> 87) ori 1\n", + "Debug : Curve 124 (87 --> 62) ori 1\n", + "Debug : Curve 78 (58 --> 62) ori -1\n", + "Debug : OCC surface 44 with 4 parameter bounds (-0.25,-0.19)(0.545,0.55)\n", + "Debug : OCCRTree found 1 matches at (0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 47 - new wire\n", + "Debug : Curve 128 (89 --> 90) ori 1\n", + "Debug : Curve 130 (90 --> 8) ori 1\n", + "Debug : Curve 8 (7 --> 8) ori -1\n", + "Debug : Curve 129 (7 --> 89) ori 1\n", + "Debug : OCC surface 47 with 4 parameter bounds (-2.4,2.4)(-1.75,-1.545)\n", + "Debug : OCCRTree found 1 matches at (0,-2.1925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-2.1925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-2.1925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 48 - new wire\n", + "Debug : Curve 13 (11 --> 12) ori 1\n", + "Debug : Curve 133 (12 --> 92) ori 1\n", + "Debug : Curve 132 (91 --> 92) ori -1\n", + "Debug : Curve 131 (91 --> 11) ori 1\n", + "Debug : OCC surface 48 with 4 parameter bounds (2.29,2.4)(0.455,0.545)\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 49 - new wire\n", + "Debug : Curve 132 (91 --> 92) ori 1\n", + "Debug : Curve 136 (92 --> 94) ori 1\n", + "Debug : Curve 135 (94 --> 93) ori 1\n", + "Debug : Curve 134 (93 --> 91) ori 1\n", + "Debug : OCC surface 49 with 4 parameter bounds (2.29,2.4)(0.545,0.55)\n", + "Debug : OCCRTree found 1 matches at (-2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 50 - new wire\n", + "Debug : Curve 14 (13 --> 11) ori 1\n", + "Debug : Curve 131 (91 --> 11) ori -1\n", + "Debug : Curve 138 (67 --> 91) ori -1\n", + "Debug : Curve 84 (66 --> 67) ori -1\n", + "Debug : Curve 137 (13 --> 66) ori -1\n", + "Debug : OCC surface 50 with 5 parameter bounds (1.31,2.29)(0.455,0.545)\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 51 - new wire\n", + "Debug : Curve 139 (95 --> 22) ori 1\n", + "Debug : Curve 23 (22 --> 21) ori 1\n", + "Debug : Curve 141 (21 --> 96) ori 1\n", + "Debug : Curve 140 (95 --> 96) ori -1\n", + "Debug : OCC surface 51 with 4 parameter bounds (-2.4,-2.29)(0.455,0.545)\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 52 - new wire\n", + "Debug : Curve 135 (94 --> 93) ori -1\n", + "Debug : Curve 142 (94 --> 72) ori 1\n", + "Debug : Curve 93 (70 --> 72) ori -1\n", + "Debug : Curve 90 (67 --> 70) ori -1\n", + "Debug : Curve 138 (67 --> 91) ori 1\n", + "Debug : Curve 134 (93 --> 91) ori -1\n", + "Debug : OCC surface 52 with 6 parameter bounds (2,2.4)(0.545,1.045)\n", + "Debug : OCCRTree found 1 matches at (-2.2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 53 - new wire\n", + "Debug : Curve 15 (14 --> 13) ori 1\n", + "Debug : Curve 137 (13 --> 66) ori 1\n", + "Debug : Curve 85 (68 --> 66) ori -1\n", + "Debug : Curve 143 (68 --> 14) ori 1\n", + "Debug : OCC surface 53 with 4 parameter bounds (1.19,1.31)(0.455,0.545)\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 54 - new wire\n", + "Debug : Curve 144 (97 --> 95) ori 1\n", + "Debug : Curve 140 (95 --> 96) ori 1\n", + "Debug : Curve 146 (96 --> 98) ori 1\n", + "Debug : Curve 145 (98 --> 97) ori 1\n", + "Debug : OCC surface 54 with 4 parameter bounds (-2.4,-2.29)(0.545,0.55)\n", + "Debug : OCCRTree found 1 matches at (2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 55 - new wire\n", + "Debug : Curve 141 (21 --> 96) ori -1\n", + "Debug : Curve 22 (21 --> 20) ori 1\n", + "Debug : Curve 148 (60 --> 20) ori -1\n", + "Debug : Curve 74 (56 --> 60) ori -1\n", + "Debug : Curve 147 (96 --> 56) ori -1\n", + "Debug : OCC surface 55 with 5 parameter bounds (-2.29,-1.31)(0.455,0.545)\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 56 - new wire\n", + "Debug : Curve 16 (15 --> 14) ori 1\n", + "Debug : Curve 143 (68 --> 14) ori -1\n", + "Debug : Curve 86 (69 --> 68) ori -1\n", + "Debug : Curve 149 (15 --> 69) ori -1\n", + "Debug : OCC surface 56 with 4 parameter bounds (0.31,1.19)(0.455,0.545)\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 57 - new wire\n", + "Debug : Curve 150 (55 --> 97) ori 1\n", + "Debug : Curve 145 (98 --> 97) ori -1\n", + "Debug : Curve 146 (96 --> 98) ori -1\n", + "Debug : Curve 147 (96 --> 56) ori 1\n", + "Debug : Curve 70 (56 --> 54) ori 1\n", + "Debug : Curve 68 (55 --> 54) ori -1\n", + "Debug : OCC surface 57 with 6 parameter bounds (-2.4,-2)(0.545,1.045)\n", + "Debug : OCCRTree found 1 matches at (2.2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 58 - new wire\n", + "Debug : Curve 148 (60 --> 20) ori 1\n", + "Debug : Curve 21 (20 --> 19) ori 1\n", + "Debug : Curve 151 (19 --> 59) ori 1\n", + "Debug : Curve 73 (60 --> 59) ori -1\n", + "Debug : OCC surface 58 with 4 parameter bounds (-1.31,-1.19)(0.455,0.545)\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 59 - new wire\n", + "Debug : Curve 62 (50 --> 51) ori 1\n", + "Debug : Curve 154 (51 --> 100) ori 1\n", + "Debug : Curve 153 (100 --> 99) ori 1\n", + "Debug : Curve 152 (99 --> 50) ori 1\n", + "Debug : OCC surface 59 with 4 parameter bounds (-2.4,2.4)(1.545,1.75)\n", + "Debug : OCCRTree found 1 matches at (0,1.1025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,1.1025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,1.1025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 60 - new wire\n", + "Debug : Curve 17 (16 --> 15) ori 1\n", + "Debug : Curve 149 (15 --> 69) ori 1\n", + "Debug : Curve 87 (64 --> 69) ori -1\n", + "Debug : Curve 120 (85 --> 64) ori -1\n", + "Debug : Curve 155 (85 --> 16) ori 1\n", + "Debug : OCC surface 60 with 5 parameter bounds (0.19,0.31)(0.455,0.545)\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 61 - new wire\n", + "Debug : Curve 151 (19 --> 59) ori -1\n", + "Debug : Curve 20 (19 --> 18) ori 1\n", + "Debug : Curve 156 (57 --> 18) ori -1\n", + "Debug : Curve 72 (59 --> 57) ori -1\n", + "Debug : OCC surface 61 with 4 parameter bounds (-1.19,-0.31)(0.455,0.545)\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 62 - new wire\n", + "Debug : Curve 18 (17 --> 16) ori 1\n", + "Debug : Curve 155 (85 --> 16) ori -1\n", + "Debug : Curve 121 (86 --> 85) ori -1\n", + "Debug : Curve 157 (17 --> 86) ori -1\n", + "Debug : OCC surface 62 with 4 parameter bounds (-0.19,0.19)(0.455,0.545)\n", + "Debug : OCCRTree found 1 matches at (0,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 63 - new wire\n", + "Debug : Curve 156 (57 --> 18) ori 1\n", + "Debug : Curve 19 (18 --> 17) ori 1\n", + "Debug : Curve 157 (17 --> 86) ori 1\n", + "Debug : Curve 122 (58 --> 86) ori -1\n", + "Debug : Curve 71 (57 --> 58) ori -1\n", + "Debug : OCC surface 63 with 5 parameter bounds (-0.31,-0.19)(0.455,0.545)\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : GModel imported:\n", + "Debug : 81 points\n", + "Debug : 110 curves\n", + "Debug : 32 surfaces\n", + "Debug : 0 volumes\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m212\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin constructing surface dictionary.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m226\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd constructing surface dictionary.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m236\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin create volume zones.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m247\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd create volume zones.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m257\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin create surface zones.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m273\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mContinue create surface zones.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m300\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd create surface zones.\u001b[0m \n", + "Debug : Decoded option name 'Mesh' . 'MeshSizeExtendFromBoundary' (index 0)\n", + "Debug : Decoded option name 'Mesh' . 'MeshSizeFromPoints' (index 0)\n", + "Debug : Decoded option name 'Mesh' . 'MeshSizeFromCurvature' (index 0)\n", + "Debug : Destroying 28 entities in model\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m324\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin meshing.\u001b[0m \n", + "Debug : Decoded option name 'Mesh' . 'Algorithm' (index 0)\n", + "Debug : Decoded option name 'Mesh' . 'Algorithm3D' (index 0)\n", + "Debug : Decoded option name 'General' . 'NumThreads' (index 0)\n", + "Info : Meshing 1D...\n", + "Info : [ 0%] Meshing curve 8 (Line)\n", + "Debug : Meshing curve 8 (Line): 9 interior vertices\n", + "Info : [ 10%] Meshing curve 13 (Line)\n", + "Debug : Meshing curve 13 (Line): 26 interior vertices\n", + "Info : [ 10%] Meshing curve 14 (Line)\n", + "Debug : Meshing curve 14 (Line): 44 interior vertices\n", + "Info : [ 10%] Meshing curve 15 (Line)\n", + "Debug : Meshing curve 15 (Line): 28 interior vertices\n", + "Info : [ 10%] Meshing curve 16 (Line)\n", + "Debug : Meshing curve 16 (Line): 40 interior vertices\n", + "Info : [ 10%] Meshing curve 17 (Line)\n", + "Debug : Meshing curve 17 (Line): 28 interior vertices\n", + "Info : [ 10%] Meshing curve 18 (Line)\n", + "Debug : Meshing curve 18 (Line): 20 interior vertices\n", + "Info : [ 10%] Meshing curve 19 (Line)\n", + "Debug : Meshing curve 19 (Line): 28 interior vertices\n", + "Info : [ 10%] Meshing curve 20 (Line)\n", + "Debug : Meshing curve 20 (Line): 40 interior vertices\n", + "Info : [ 10%] Meshing curve 21 (Line)\n", + "Debug : Meshing curve 21 (Line): 28 interior vertices\n", + "Info : [ 20%] Meshing curve 22 (Line)\n", + "Debug : Meshing curve 22 (Line): 44 interior vertices\n", + "Info : [ 20%] Meshing curve 23 (Line)\n", + "Debug : Meshing curve 23 (Line): 26 interior vertices\n", + "Info : [ 20%] Meshing curve 25 (Line)\n", + "Debug : Meshing curve 25 (Line): 15 interior vertices\n", + "Info : [ 20%] Meshing curve 26 (Line)\n", + "Debug : Meshing curve 26 (Line): 26 interior vertices\n", + "Info : [ 20%] Meshing curve 27 (Line)\n", + "Debug : Meshing curve 27 (Line): 1 interior vertices\n", + "Info : [ 20%] Meshing curve 28 (Line)\n", + "Debug : Meshing curve 28 (Line): 1 interior vertices\n", + "Info : [ 20%] Meshing curve 29 (Line)\n", + "Debug : Meshing curve 29 (Line): 28 interior vertices\n", + "Info : [ 20%] Meshing curve 30 (Line)\n", + "Debug : Meshing curve 30 (Line): 1 interior vertices\n", + "Info : [ 20%] Meshing curve 31 (Line)\n", + "Debug : Meshing curve 31 (Line): 1 interior vertices\n", + "Info : [ 20%] Meshing curve 32 (Line)\n", + "Debug : Meshing curve 32 (Line): 28 interior vertices\n", + "Info : [ 30%] Meshing curve 33 (Line)\n", + "Debug : Meshing curve 33 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 34 (Line)\n", + "Debug : Meshing curve 34 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 35 (Line)\n", + "Debug : Meshing curve 35 (Line): 28 interior vertices\n", + "Info : [ 30%] Meshing curve 36 (Line)\n", + "Debug : Meshing curve 36 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 37 (Line)\n", + "Debug : Meshing curve 37 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 38 (Line)\n", + "Debug : Meshing curve 38 (Line): 28 interior vertices\n", + "Info : [ 30%] Meshing curve 39 (Line)\n", + "Debug : Meshing curve 39 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 40 (Line)\n", + "Debug : Meshing curve 40 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 41 (Line)\n", + "Debug : Meshing curve 41 (Line): 26 interior vertices\n", + "Info : [ 40%] Meshing curve 42 (Line)\n", + "Debug : Meshing curve 42 (Line): 15 interior vertices\n", + "Info : [ 40%] Meshing curve 43 (Line)\n", + "Debug : Meshing curve 43 (Line): 1 interior vertices\n", + "Info : [ 40%] Meshing curve 44 (Line)\n", + "Debug : Meshing curve 44 (Line): 1 interior vertices\n", + "Info : [ 40%] Meshing curve 62 (Line)\n", + "Debug : Meshing curve 62 (Line): 9 interior vertices\n", + "Info : [ 40%] Meshing curve 68 (Line)\n", + "Debug : Meshing curve 68 (Line): 0 interior vertices\n", + "Info : [ 40%] Meshing curve 70 (Line)\n", + "Debug : Meshing curve 70 (Line): 4 interior vertices\n", + "Info : [ 40%] Meshing curve 71 (Line)\n", + "Debug : Meshing curve 71 (Line): 14 interior vertices\n", + "Info : [ 40%] Meshing curve 72 (Line)\n", + "Debug : Meshing curve 72 (Line): 40 interior vertices\n", + "Info : [ 40%] Meshing curve 73 (Line)\n", + "Debug : Meshing curve 73 (Line): 28 interior vertices\n", + "Info : [ 40%] Meshing curve 74 (Line)\n", + "Debug : Meshing curve 74 (Line): 30 interior vertices\n", + "Info : [ 50%] Meshing curve 77 (Line)\n", + "Debug : Meshing curve 77 (Line): 11 interior vertices\n", + "Info : [ 50%] Meshing curve 78 (Line)\n", + "Debug : Meshing curve 78 (Line): 1 interior vertices\n", + "Info : [ 50%] Meshing curve 80 (Line)\n", + "Debug : Meshing curve 80 (Line): 19 interior vertices\n", + "Info : [ 50%] Meshing curve 82 (Line)\n", + "Debug : Meshing curve 82 (Line): 11 interior vertices\n", + "Info : [ 50%] Meshing curve 83 (Line)\n", + "Debug : Meshing curve 83 (Line): 1 interior vertices\n", + "Info : [ 50%] Meshing curve 84 (Line)\n", + "Debug : Meshing curve 84 (Line): 30 interior vertices\n", + "Info : [ 50%] Meshing curve 85 (Line)\n", + "Debug : Meshing curve 85 (Line): 28 interior vertices\n", + "Info : [ 50%] Meshing curve 86 (Line)\n", + "Debug : Meshing curve 86 (Line): 40 interior vertices\n", + "Info : [ 50%] Meshing curve 87 (Line)\n", + "Debug : Meshing curve 87 (Line): 14 interior vertices\n", + "Info : [ 60%] Meshing curve 90 (Line)\n", + "Debug : Meshing curve 90 (Line): 4 interior vertices\n", + "Info : [ 60%] Meshing curve 93 (Line)\n", + "Debug : Meshing curve 93 (Line): 0 interior vertices\n", + "Info : [ 60%] Meshing curve 107 (Line)\n", + "Debug : Meshing curve 107 (Line): 1 interior vertices\n", + "Info : [ 60%] Meshing curve 108 (Line)\n", + "Debug : Meshing curve 108 (Line): 28 interior vertices\n", + "Info : [ 60%] Meshing curve 109 (Line)\n", + "Debug : Meshing curve 109 (Line): 1 interior vertices\n", + "Info : [ 60%] Meshing curve 110 (Line)\n", + "Debug : Meshing curve 110 (Line): 1 interior vertices\n", + "Info : [ 60%] Meshing curve 111 (Line)\n", + "Debug : Meshing curve 111 (Line): 14 interior vertices\n", + "Info : [ 60%] Meshing curve 112 (Line)\n", + "Debug : Meshing curve 112 (Line): 14 interior vertices\n", + "Info : [ 60%] Meshing curve 113 (Line)\n", + "Debug : Meshing curve 113 (Line): 1 interior vertices\n", + "Info : [ 60%] Meshing curve 114 (Line)\n", + "Debug : Meshing curve 114 (Line): 1 interior vertices\n", + "Info : [ 70%] Meshing curve 115 (Line)\n", + "Debug : Meshing curve 115 (Line): 28 interior vertices\n", + "Info : [ 70%] Meshing curve 116 (Line)\n", + "Debug : Meshing curve 116 (Line): 1 interior vertices\n", + "Info : [ 70%] Meshing curve 117 (Line)\n", + "Debug : Meshing curve 117 (Line): 0 interior vertices\n", + "Info : [ 70%] Meshing curve 118 (Line)\n", + "Debug : Meshing curve 118 (Line): 0 interior vertices\n", + "Info : [ 70%] Meshing curve 120 (Line)\n", + "Debug : Meshing curve 120 (Line): 14 interior vertices\n", + "Info : [ 70%] Meshing curve 121 (Line)\n", + "Debug : Meshing curve 121 (Line): 20 interior vertices\n", + "Info : [ 70%] Meshing curve 122 (Line)\n", + "Debug : Meshing curve 122 (Line): 14 interior vertices\n", + "Info : [ 70%] Meshing curve 123 (Line)\n", + "Debug : Meshing curve 123 (Line): 1 interior vertices\n", + "Info : [ 70%] Meshing curve 124 (Line)\n", + "Debug : Meshing curve 124 (Line): 14 interior vertices\n", + "Info : [ 70%] Meshing curve 125 (Line)\n", + "Debug : Meshing curve 125 (Line): 14 interior vertices\n", + "Info : [ 80%] Meshing curve 126 (Line)\n", + "Debug : Meshing curve 126 (Line): 1 interior vertices\n", + "Info : [ 80%] Meshing curve 131 (Line)\n", + "Debug : Meshing curve 131 (Line): 21 interior vertices\n", + "Info : [ 80%] Meshing curve 132 (Line)\n", + "Debug : Meshing curve 132 (Line): 26 interior vertices\n", + "Info : [ 80%] Meshing curve 133 (Line)\n", + "Debug : Meshing curve 133 (Line): 21 interior vertices\n", + "Info : [ 80%] Meshing curve 137 (Line)\n", + "Debug : Meshing curve 137 (Line): 21 interior vertices\n", + "Info : [ 80%] Meshing curve 138 (Line)\n", + "Debug : Meshing curve 138 (Line): 14 interior vertices\n", + "Info : [ 80%] Meshing curve 139 (Line)\n", + "Debug : Meshing curve 139 (Line): 21 interior vertices\n", + "Info : [ 80%] Meshing curve 140 (Line)\n", + "Debug : Meshing curve 140 (Line): 26 interior vertices\n", + "Info : [ 80%] Meshing curve 141 (Line)\n", + "Debug : Meshing curve 141 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 143 (Line)\n", + "Debug : Meshing curve 143 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 147 (Line)\n", + "Debug : Meshing curve 147 (Line): 14 interior vertices\n", + "Info : [ 90%] Meshing curve 148 (Line)\n", + "Debug : Meshing curve 148 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 149 (Line)\n", + "Debug : Meshing curve 149 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 151 (Line)\n", + "Debug : Meshing curve 151 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 155 (Line)\n", + "Debug : Meshing curve 155 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 156 (Line)\n", + "Debug : Meshing curve 156 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 157 (Line)\n", + "Debug : Meshing curve 157 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 158 (Line)\n", + "Debug : Meshing curve 158 (Line): 2 interior vertices\n", + "Info : [ 90%] Meshing curve 159 (Line)\n", + "Debug : Meshing curve 159 (Line): 0 interior vertices\n", + "Info : [100%] Meshing curve 160 (Line)\n", + "Debug : Meshing curve 160 (Line): 0 interior vertices\n", + "Info : [100%] Meshing curve 161 (Line)\n", + "Debug : Meshing curve 161 (Line): 9 interior vertices\n", + "Info : [100%] Meshing curve 162 (Line)\n", + "Debug : Meshing curve 162 (Line): 2 interior vertices\n", + "Info : [100%] Meshing curve 163 (Line)\n", + "Debug : Meshing curve 163 (Line): 9 interior vertices\n", + "Info : [100%] Meshing curve 164 (Line)\n", + "Debug : Meshing curve 164 (Line): 0 interior vertices\n", + "Info : [100%] Meshing curve 165 (Line)\n", + "Debug : Meshing curve 165 (Line): 0 interior vertices\n", + "Info : [100%] Meshing curve 171 (Line)\n", + "Debug : Meshing curve 171 (Line): 0 interior vertices\n", + "Info : [100%] Meshing curve 178 (Line)\n", + "Debug : Meshing curve 178 (Line): 0 interior vertices\n", + "Info : [100%] Meshing curve 179 (Line)\n", + "Debug : Meshing curve 179 (Line): 0 interior vertices\n", + "Info : Done meshing 1D (Wall 0.0617277s, CPU 0.064583s)\n", + "Info : Meshing 2D...\n", + "Info : [ 0%] Meshing surface 7 (Plane, Delaunay)\n", + "Debug : Recovering 24 model edges\n", + "Debug : Recovering 425 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 7\n", + "Debug : Computing mesh size field at mesh nodes 425\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 425 points created -- Worst tri radius is 47.689\n", + "Debug : Point -2.28753 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.28753 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.31247 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.31247 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.312471 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.312471 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.18753 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.18753 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.187542 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.187542 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 2011 triangles generated, 794 internal nodes\n", + "Info : [ 10%] Meshing surface 8 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 58 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 8\n", + "Debug : Computing mesh size field at mesh nodes 58\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 58 points created -- Worst tri radius is 0.792\n", + "Debug : Point -2.39796 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.39796 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.29204 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.29204 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 110 triangles generated, 27 internal nodes\n", + "Info : [ 10%] Meshing surface 9 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 9\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point -1.19207 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30793 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30793 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19207 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30718 0.4525 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19282 0.4525 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 20%] Meshing surface 10 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 10\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point -0.307931 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.192069 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.192069 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.307931 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.192824 0.4525 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.307176 0.4525 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 20%] Meshing surface 11 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 11\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point 0.307931 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.192069 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.307931 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.192069 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.192824 0.4525 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.307176 0.4525 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 20%] Meshing surface 12 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 12\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point 1.30793 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19207 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19207 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30793 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19282 0.4525 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30718 0.4525 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 30%] Meshing surface 13 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 58 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 13\n", + "Debug : Computing mesh size field at mesh nodes 58\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 58 points created -- Worst tri radius is 0.792\n", + "Debug : Point 2.39796 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.39796 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.29204 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.29204 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 110 triangles generated, 27 internal nodes\n", + "Info : [ 30%] Meshing surface 35 (Plane, Delaunay)\n", + "Debug : Recovering 24 model edges\n", + "Debug : Recovering 312 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 35\n", + "Debug : Computing mesh size field at mesh nodes 312\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 312 points created -- Worst tri radius is 28.183\n", + "Debug : Point 0.278471 0.753119 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.278471 0.753119 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.92425 0.599632 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.92425 0.599632 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.974031 0.599626 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.974031 0.599626 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.0236 0.600088 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.0236 0.600088 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.79154 0.598819 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.74272 0.599332 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.79154 0.598819 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.74272 0.599332 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.90192 0.601289 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.90192 0.601289 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.312471 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.312471 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.18753 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.18753 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.31243 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.31243 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.268545 0.773526 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.268545 0.773526 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.60759 0.590312 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.60759 0.590312 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.97768 0.604631 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.97768 0.604631 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1284 triangles generated, 487 internal nodes\n", + "Info : [ 40%] Meshing surface 36 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 36\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point 1.19207 0.54875 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19207 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30793 0.54875 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30793 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19282 0.5475 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30718 0.5475 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 40%] Meshing surface 37 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 34 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 37\n", + "Debug : Computing mesh size field at mesh nodes 34\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 34 points created -- Worst tri radius is 0.800\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 62 triangles generated, 15 internal nodes\n", + "Info : [ 40%] Meshing surface 38 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 34 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 38\n", + "Debug : Computing mesh size field at mesh nodes 34\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 34 points created -- Worst tri radius is 0.800\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 62 triangles generated, 15 internal nodes\n", + "Info : [ 50%] Meshing surface 39 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 39\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point -1.30793 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19207 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30793 0.54875 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19207 0.54875 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19282 0.5475 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30718 0.5475 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 50%] Meshing surface 42 (Plane, Delaunay)\n", + "Debug : Recovering 8 model edges\n", + "Debug : Recovering 99 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 42\n", + "Debug : Computing mesh size field at mesh nodes 99\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 99 points created -- Worst tri radius is 9.102\n", + "Debug : Point 0.187542 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.187542 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 617 triangles generated, 260 internal nodes\n", + "Info : [ 60%] Meshing surface 43 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 34 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 43\n", + "Debug : Computing mesh size field at mesh nodes 34\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 34 points created -- Worst tri radius is 0.800\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 62 triangles generated, 15 internal nodes\n", + "Info : [ 60%] Meshing surface 44 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 34 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 44\n", + "Debug : Computing mesh size field at mesh nodes 34\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 34 points created -- Worst tri radius is 0.800\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 62 triangles generated, 15 internal nodes\n", + "Info : [ 60%] Meshing surface 48 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 98 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 48\n", + "Debug : Computing mesh size field at mesh nodes 98\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 98 points created -- Worst tri radius is 11.057\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1502 triangles generated, 703 internal nodes\n", + "Info : [ 70%] Meshing surface 50 (Plane, Delaunay)\n", + "Debug : Recovering 5 model edges\n", + "Debug : Recovering 135 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 50\n", + "Debug : Computing mesh size field at mesh nodes 135\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 135 points created -- Worst tri radius is 5.960\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 539 triangles generated, 203 internal nodes\n", + "Info : [ 70%] Meshing surface 51 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 98 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 51\n", + "Debug : Computing mesh size field at mesh nodes 98\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 98 points created -- Worst tri radius is 11.057\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1516 triangles generated, 710 internal nodes\n", + "Info : [ 70%] Meshing surface 53 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 102 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 53\n", + "Debug : Computing mesh size field at mesh nodes 102\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 102 points created -- Worst tri radius is 10.917\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1620 triangles generated, 760 internal nodes\n", + "Info : [ 80%] Meshing surface 55 (Plane, Delaunay)\n", + "Debug : Recovering 5 model edges\n", + "Debug : Recovering 135 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 55\n", + "Debug : Computing mesh size field at mesh nodes 135\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 135 points created -- Worst tri radius is 5.960\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 539 triangles generated, 203 internal nodes\n", + "Info : [ 80%] Meshing surface 56 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 126 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 56\n", + "Debug : Computing mesh size field at mesh nodes 126\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 126 points created -- Worst tri radius is 5.990\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 486 triangles generated, 181 internal nodes\n", + "Info : [ 90%] Meshing surface 58 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 102 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 58\n", + "Debug : Computing mesh size field at mesh nodes 102\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 102 points created -- Worst tri radius is 10.917\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1612 triangles generated, 756 internal nodes\n", + "Info : [ 90%] Meshing surface 60 (Plane, Delaunay)\n", + "Debug : Recovering 5 model edges\n", + "Debug : Recovering 103 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 60\n", + "Debug : Computing mesh size field at mesh nodes 103\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 103 points created -- Worst tri radius is 11.128\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1627 triangles generated, 763 internal nodes\n", + "Info : [ 90%] Meshing surface 61 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 126 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 61\n", + "Debug : Computing mesh size field at mesh nodes 126\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 126 points created -- Worst tri radius is 5.990\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 494 triangles generated, 185 internal nodes\n", + "Info : [100%] Meshing surface 62 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 86 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 62\n", + "Debug : Computing mesh size field at mesh nodes 86\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 86 points created -- Worst tri radius is 6.043\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 326 triangles generated, 121 internal nodes\n", + "Info : [100%] Meshing surface 63 (Plane, Delaunay)\n", + "Debug : Recovering 5 model edges\n", + "Debug : Recovering 103 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 63\n", + "Debug : Computing mesh size field at mesh nodes 103\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 103 points created -- Worst tri radius is 11.128\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1613 triangles generated, 756 internal nodes\n", + "Info : Done meshing 2D (Wall 0.152024s, CPU 0.158448s)\n", + "Info : 8604 nodes 18480 elements\n", + "Debug : Minimum mesh quality (ICN) = 0.348727\n", + "Debug : Renumbering for potentially partial mesh save\n", + "Info : Removing duplicate mesh elements...\n", + "Info : Done removing duplicate mesh elements\n", + "Info : Removing duplicate mesh nodes...\n", + "Info : Found 0 duplicate nodes \n", + "Info : No duplicate nodes found\n", + "Debug : Renumbering for potentially partial mesh save\n", + "Debug : Decoded option name 'Mesh' . 'MshFileVersion' (index 0)\n", + "Info : Writing './output/gmsh.msh'...\n", + "Info : Done writing './output/gmsh.msh'\n", + "Info : Writing './output/gmsh.vtk'...\n", + "Info : Done writing './output/gmsh.vtk'\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m614\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd meshing.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m624\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd meshing heat-charge simulation.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m633\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mMesh heat-charge simulation time (s): 0.8077\u001b[0m \n", + "Resetting DEVSIM\n", + "Physical group name bc_0 has 0 Tetrahedra.\n", + "Physical group name bc_0 has 0 Triangles.\n", + "Physical group name bc_0 has 70 Lines.\n", + "Physical group name bc_0 has 72 Points.\n", + "Physical group name bc_1 has 0 Tetrahedra.\n", + "Physical group name bc_1 has 0 Triangles.\n", + "Physical group name bc_1 has 643 Lines.\n", + "Physical group name bc_1 has 645 Points.\n", + "Physical group name bc_2 has 0 Tetrahedra.\n", + "Physical group name bc_2 has 0 Triangles.\n", + "Physical group name bc_2 has 42 Lines.\n", + "Physical group name bc_2 has 43 Points.\n", + "Physical group name bc_3 has 0 Tetrahedra.\n", + "Physical group name bc_3 has 0 Triangles.\n", + "Physical group name bc_3 has 42 Lines.\n", + "Physical group name bc_3 has 43 Points.\n", + "Physical group name bc_4 has 0 Tetrahedra.\n", + "Physical group name bc_4 has 0 Triangles.\n", + "Physical group name bc_4 has 44 Lines.\n", + "Physical group name bc_4 has 46 Points.\n", + "Physical group name zone_1 has 0 Tetrahedra.\n", + "Physical group name zone_1 has 4323 Triangles.\n", + "Physical group name zone_1 has 6841 Lines.\n", + "Physical group name zone_1 has 2520 Points.\n", + "Physical group name zone_3 has 0 Tetrahedra.\n", + "Physical group name zone_3 has 12615 Triangles.\n", + "Physical group name zone_3 has 19308 Lines.\n", + "Physical group name zone_3 has 6694 Points.\n", + "Device device has 8569 coordinates with max index 8569\n", + "Region zone_1 has 2520 nodes.\n", + "Region zone_3 has 6694 nodes.\n", + "Contact zone_1_bc_0 in region zone_1 with 72 nodes\n", + "Warning, contact \"zone_1_bc_0\" shares a node with contact \"zone_3_bc_2\"\n", + "Contact zone_3_bc_2 in region zone_3 with 43 nodes\n", + "Warning, contact \"zone_1_bc_0\" shares a node with contact \"zone_3_bc_3\"\n", + "Contact zone_3_bc_3 in region zone_3 with 43 nodes\n", + "Warning, contact \"zone_1_bc_0\" shares a node with contact \"zone_3_bc_4\" (repeated 1 times)\n", + "Warning, contact \"zone_3_bc_2\" shares a node with contact \"zone_3_bc_4\"\n", + "Warning, contact \"zone_3_bc_3\" shares a node with contact \"zone_3_bc_4\"\n", + "Contact zone_3_bc_4 in region zone_3 with 46 nodes\n", + "Warning, contact \"zone_3_bc_2\" shares a node with interface \"zone_1_bc_1\"\n", + "Warning, contact \"zone_3_bc_3\" shares a node with interface \"zone_1_bc_1\"\n", + "Warning, contact \"zone_3_bc_4\" shares a node with interface \"zone_1_bc_1\" (repeated 1 times)\n", + "Adding interface zone_1_bc_1 with 645, 645 nodes\n", + "Warning: Replacing equation with equation of the same name.\n", + "Region: zone_1, Equation: PotentialEquation, Variable: Potential\n", + "Replacing Node Model Holes in region zone_1 of material Si\n", + "Replacing Node Model Electrons in region zone_1 of material Si\n", + "Warning: Replacing equation with equation of the same name.\n", + "Region: zone_3, Equation: PotentialEquation, Variable: Potential\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:28\u001b[0m.\u001b[1;36m236\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 0.01\u001b[0m \n", + "Replacing Node Model NetDoping in region zone_1 of material Si\n", + "Replacing Node Model n_i in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_1 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_1 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_1 of material Si\n", + "Replacing Node Model n_i:T in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_1 of material Si\n", + "Replacing Node Model NetDoping in region zone_3 of material Si\n", + "Replacing Node Model n_i in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_3 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_3 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_3 of material Si\n", + "Replacing Node Model n_i:T in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Electrons@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Holes@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:T@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Electrons@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Holes@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:T@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.79782e+07\tAbsError: 2.04000e+18\n", + " Region: \"zone_1\"\tRelError: 1.00000e+00\tAbsError: 3.94714e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00000e+00\tAbsError: 3.94714e-01\n", + " Region: \"zone_3\"\tRelError: 1.79782e+07\tAbsError: 2.04000e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.98918e+06\tAbsError: 1.01999e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.98900e+06\tAbsError: 1.02001e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00000e+00\tAbsError: 3.96698e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.02134e+03\tAbsError: 5.28988e+17\n", + " Region: \"zone_1\"\tRelError: 8.09397e-01\tAbsError: 8.82032e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.09397e-01\tAbsError: 8.82032e-02\n", + " Region: \"zone_3\"\tRelError: 2.02053e+03\tAbsError: 5.28988e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.63152e+02\tAbsError: 2.39643e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.15671e+03\tAbsError: 2.89345e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 6.68292e-01\tAbsError: 8.50469e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 5.29619e+04\tAbsError: 5.40829e+17\n", + " Region: \"zone_1\"\tRelError: 3.49575e+00\tAbsError: 8.50914e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.49575e+00\tAbsError: 8.50914e-02\n", + " Region: \"zone_3\"\tRelError: 5.29584e+04\tAbsError: 5.40829e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84891e+03\tAbsError: 1.73566e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.11077e+04\tAbsError: 3.67263e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86071e+00\tAbsError: 8.36026e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.56340e+02\tAbsError: 1.60913e+17\n", + " Region: \"zone_1\"\tRelError: 7.02286e+01\tAbsError: 8.33246e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.02286e+01\tAbsError: 8.33246e-02\n", + " Region: \"zone_3\"\tRelError: 4.86111e+02\tAbsError: 1.60913e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.58439e+02\tAbsError: 4.77489e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.24056e+02\tAbsError: 1.13164e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03617e+02\tAbsError: 8.33199e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.59462e+03\tAbsError: 1.22966e+16\n", + " Region: \"zone_1\"\tRelError: 6.99663e+02\tAbsError: 8.14001e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.99663e+02\tAbsError: 8.14001e-02\n", + " Region: \"zone_3\"\tRelError: 5.89495e+03\tAbsError: 1.22966e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.96162e+02\tAbsError: 4.98403e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.42866e+02\tAbsError: 7.31259e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.55593e+03\tAbsError: 8.14001e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.75617e+03\tAbsError: 3.95067e+15\n", + " Region: \"zone_1\"\tRelError: 2.56000e+02\tAbsError: 7.80984e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.56000e+02\tAbsError: 7.80984e-02\n", + " Region: \"zone_3\"\tRelError: 3.50017e+03\tAbsError: 3.95067e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.11350e+01\tAbsError: 2.15897e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.36945e+03\tAbsError: 1.79170e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95825e+01\tAbsError: 7.80984e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 8.71973e+03\tAbsError: 3.68802e+15\n", + " Region: \"zone_1\"\tRelError: 1.83283e+03\tAbsError: 7.35600e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83283e+03\tAbsError: 7.35600e-02\n", + " Region: \"zone_3\"\tRelError: 6.88690e+03\tAbsError: 3.68802e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.44856e+01\tAbsError: 2.01861e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.68953e+03\tAbsError: 1.66941e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.17288e+03\tAbsError: 7.35600e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.17699e+04\tAbsError: 3.55641e+15\n", + " Region: \"zone_1\"\tRelError: 1.61805e+00\tAbsError: 6.82367e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61805e+00\tAbsError: 6.82367e-02\n", + " Region: \"zone_3\"\tRelError: 1.17683e+04\tAbsError: 3.55641e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02915e+03\tAbsError: 1.96286e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.07375e+04\tAbsError: 1.59355e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69644e+00\tAbsError: 6.82367e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.90710e+03\tAbsError: 3.56322e+15\n", + " Region: \"zone_1\"\tRelError: 5.40021e-01\tAbsError: 6.20658e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.40021e-01\tAbsError: 6.20658e-02\n", + " Region: \"zone_3\"\tRelError: 3.90656e+03\tAbsError: 3.56322e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.97521e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.89701e+03\tAbsError: 1.58800e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.52609e-01\tAbsError: 6.20658e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.59564e+03\tAbsError: 3.90856e+15\n", + " Region: \"zone_1\"\tRelError: 3.02279e-01\tAbsError: 5.41457e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.02279e-01\tAbsError: 5.41457e-02\n", + " Region: \"zone_3\"\tRelError: 4.59534e+03\tAbsError: 3.90856e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.15072e+02\tAbsError: 2.13486e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.77996e+03\tAbsError: 1.77370e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.09991e-01\tAbsError: 5.41457e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.89532e+03\tAbsError: 5.45590e+15\n", + " Region: \"zone_1\"\tRelError: 1.32864e-01\tAbsError: 4.41646e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32864e-01\tAbsError: 4.41646e-02\n", + " Region: \"zone_3\"\tRelError: 2.89519e+03\tAbsError: 5.45590e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.95366e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.88608e+03\tAbsError: 2.50224e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12497e-01\tAbsError: 4.40685e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.80503e+03\tAbsError: 9.25911e+15\n", + " Region: \"zone_1\"\tRelError: 8.45871e-02\tAbsError: 3.26030e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.45871e-02\tAbsError: 3.26030e-02\n", + " Region: \"zone_3\"\tRelError: 1.80495e+03\tAbsError: 9.25911e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.62604e+03\tAbsError: 4.94846e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.78832e+02\tAbsError: 4.31065e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.47515e-02\tAbsError: 2.89742e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.02488e+03\tAbsError: 1.35461e+16\n", + " Region: \"zone_1\"\tRelError: 6.19799e-02\tAbsError: 2.54954e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.19799e-02\tAbsError: 2.54954e-02\n", + " Region: \"zone_3\"\tRelError: 1.02482e+03\tAbsError: 1.35461e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.85774e+02\tAbsError: 7.51298e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.39007e+02\tAbsError: 6.03314e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.01021e-02\tAbsError: 2.12584e-02\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.63746e+03\tAbsError: 6.22853e+15\n", + " Region: \"zone_1\"\tRelError: 3.24151e-02\tAbsError: 1.77252e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.24151e-02\tAbsError: 1.77252e-02\n", + " Region: \"zone_3\"\tRelError: 1.63743e+03\tAbsError: 6.22853e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.57093e+03\tAbsError: 3.54700e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.64599e+01\tAbsError: 2.68153e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.68353e-02\tAbsError: 2.00855e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 4.66473e+04\tAbsError: 1.65128e+15\n", + " Region: \"zone_1\"\tRelError: 3.72589e-02\tAbsError: 1.93441e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.72589e-02\tAbsError: 1.93441e-02\n", + " Region: \"zone_3\"\tRelError: 4.66473e+04\tAbsError: 1.65128e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.35588e+04\tAbsError: 1.14975e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.08852e+03\tAbsError: 5.01532e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.08564e-02\tAbsError: 2.10000e-02\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 2.75087e+04\tAbsError: 1.29732e+14\n", + " Region: \"zone_1\"\tRelError: 1.63751e-03\tAbsError: 8.62426e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63751e-03\tAbsError: 8.62426e-04\n", + " Region: \"zone_3\"\tRelError: 2.75087e+04\tAbsError: 1.29732e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.46168e+03\tAbsError: 8.16018e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.40470e+04\tAbsError: 4.81304e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.98561e-03\tAbsError: 1.03284e-03\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 5.46518e+03\tAbsError: 1.25626e+12\n", + " Region: \"zone_1\"\tRelError: 1.47051e-05\tAbsError: 7.97633e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47051e-05\tAbsError: 7.97633e-06\n", + " Region: \"zone_3\"\tRelError: 5.46518e+03\tAbsError: 1.25626e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38697e+03\tAbsError: 7.51084e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.07821e+03\tAbsError: 5.05179e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75881e-05\tAbsError: 9.27716e-06\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 2.77216e-01\tAbsError: 1.06695e+08\n", + " Region: \"zone_1\"\tRelError: 3.00061e-09\tAbsError: 1.68638e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.00061e-09\tAbsError: 1.68638e-09\n", + " Region: \"zone_3\"\tRelError: 2.77216e-01\tAbsError: 1.06695e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46960e-01\tAbsError: 6.29583e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.02562e-02\tAbsError: 4.37368e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 3.30209e-09\tAbsError: 1.76457e-09\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 6.10978e-09\tAbsError: 3.33176e+02\n", + " Region: \"zone_1\"\tRelError: 7.09002e-16\tAbsError: 3.97988e-16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.09002e-16\tAbsError: 3.97988e-16\n", + " Region: \"zone_3\"\tRelError: 6.10977e-09\tAbsError: 3.33176e+02\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.93846e-09\tAbsError: 1.72168e+02\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.71311e-10\tAbsError: 1.61008e+02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.75573e-16\tAbsError: 4.23801e-16\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:32\u001b[0m.\u001b[1;36m827\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 0.03162277660168379\u001b[0m \n", + "Replacing Node Model NetDoping in region zone_1 of material Si\n", + "Replacing Node Model n_i in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_1 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_1 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_1 of material Si\n", + "Replacing Node Model n_i:T in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_1 of material Si\n", + "Replacing Node Model NetDoping in region zone_3 of material Si\n", + "Replacing Node Model n_i in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_3 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_3 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_3 of material Si\n", + "Replacing Node Model n_i:T in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Electrons@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Holes@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:T@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Electrons@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Holes@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:T@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.18667e+04\tAbsError: 4.42639e+18\n", + " Region: \"zone_1\"\tRelError: 4.54590e-01\tAbsError: 3.65435e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54590e-01\tAbsError: 3.65435e-02\n", + " Region: \"zone_3\"\tRelError: 6.18663e+04\tAbsError: 4.42639e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.16910e+04\tAbsError: 2.21325e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.01748e+04\tAbsError: 2.21314e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 4.55812e-01\tAbsError: 3.74548e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.75398e+00\tAbsError: 3.67168e+16\n", + " Region: \"zone_1\"\tRelError: 1.54414e-01\tAbsError: 1.18873e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54414e-01\tAbsError: 1.18873e-02\n", + " Region: \"zone_3\"\tRelError: 2.59956e+00\tAbsError: 3.67168e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.44312e+00\tAbsError: 1.84482e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.00167e+00\tAbsError: 1.82685e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54775e-01\tAbsError: 1.19406e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.21359e+00\tAbsError: 2.73096e+15\n", + " Region: \"zone_1\"\tRelError: 2.12576e-03\tAbsError: 2.90809e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12576e-03\tAbsError: 2.90809e-04\n", + " Region: \"zone_3\"\tRelError: 1.21147e+00\tAbsError: 2.73096e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.69344e-01\tAbsError: 1.45487e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.39562e-01\tAbsError: 1.27610e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.55964e-03\tAbsError: 3.14523e-04\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.75330e-03\tAbsError: 2.19594e+12\n", + " Region: \"zone_1\"\tRelError: 1.15504e-06\tAbsError: 1.24812e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15504e-06\tAbsError: 1.24812e-07\n", + " Region: \"zone_3\"\tRelError: 6.75214e-03\tAbsError: 2.19594e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.50950e-03\tAbsError: 1.03504e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.24140e-03\tAbsError: 1.16090e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24282e-06\tAbsError: 1.46046e-07\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.09534e-08\tAbsError: 1.52655e+06\n", + " Region: \"zone_1\"\tRelError: 7.26821e-13\tAbsError: 7.85393e-14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.26821e-13\tAbsError: 7.85393e-14\n", + " Region: \"zone_3\"\tRelError: 2.09527e-08\tAbsError: 1.52655e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98949e-09\tAbsError: 6.59404e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09623e-08\tAbsError: 8.67143e+05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.44838e-13\tAbsError: 9.68488e-14\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:34\u001b[0m.\u001b[1;36m479\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 0.1\u001b[0m \n", + "Replacing Node Model NetDoping in region zone_1 of material Si\n", + "Replacing Node Model n_i in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_1 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_1 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_1 of material Si\n", + "Replacing Node Model n_i:T in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_1 of material Si\n", + "Replacing Node Model NetDoping in region zone_3 of material Si\n", + "Replacing Node Model n_i in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_3 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_3 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_3 of material Si\n", + "Replacing Node Model n_i:T in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Electrons@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Holes@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:T@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Electrons@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Holes@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:T@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.39694e+03\tAbsError: 1.39693e+19\n", + " Region: \"zone_1\"\tRelError: 1.06972e+00\tAbsError: 3.13057e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06972e+00\tAbsError: 3.13057e-02\n", + " Region: \"zone_3\"\tRelError: 2.39587e+03\tAbsError: 1.39693e+19\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.53044e+02\tAbsError: 6.98446e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.64175e+03\tAbsError: 6.98488e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07292e+00\tAbsError: 3.13057e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.01295e+00\tAbsError: 5.30343e+16\n", + " Region: \"zone_1\"\tRelError: 4.68874e-01\tAbsError: 9.69744e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.68874e-01\tAbsError: 9.69744e-03\n", + " Region: \"zone_3\"\tRelError: 2.54407e+00\tAbsError: 5.30343e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07579e+00\tAbsError: 2.59554e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.98430e-01\tAbsError: 2.70789e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.69858e-01\tAbsError: 9.86343e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 6.06000e-01\tAbsError: 4.02078e+15\n", + " Region: \"zone_1\"\tRelError: 1.21931e-03\tAbsError: 2.40897e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21931e-03\tAbsError: 2.40897e-04\n", + " Region: \"zone_3\"\tRelError: 6.04781e-01\tAbsError: 4.02078e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.12380e-01\tAbsError: 2.14256e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.91182e-01\tAbsError: 1.87822e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21931e-03\tAbsError: 2.54339e-04\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.84065e-03\tAbsError: 2.23230e+12\n", + " Region: \"zone_1\"\tRelError: 4.74964e-07\tAbsError: 9.96724e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 4.74964e-07\tAbsError: 9.96724e-08\n", + " Region: \"zone_3\"\tRelError: 1.84017e-03\tAbsError: 2.23230e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.44793e-04\tAbsError: 1.36966e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09483e-03\tAbsError: 8.62644e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.43349e-07\tAbsError: 1.12867e-07\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.11523e-09\tAbsError: 4.82934e+05\n", + " Region: \"zone_1\"\tRelError: 2.15869e-13\tAbsError: 4.52167e-14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.15869e-13\tAbsError: 4.52167e-14\n", + " Region: \"zone_3\"\tRelError: 1.11501e-09\tAbsError: 4.82934e+05\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83261e-10\tAbsError: 3.45065e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.31495e-10\tAbsError: 1.37869e+05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54655e-13\tAbsError: 5.34272e-14\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:36\u001b[0m.\u001b[1;36m088\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 0.31622776601683794\u001b[0m \n", + "Replacing Node Model NetDoping in region zone_1 of material Si\n", + "Replacing Node Model n_i in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_1 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_1 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_1 of material Si\n", + "Replacing Node Model n_i:T in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_1 of material Si\n", + "Replacing Node Model NetDoping in region zone_3 of material Si\n", + "Replacing Node Model n_i in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_3 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_3 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_3 of material Si\n", + "Replacing Node Model n_i:T in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Electrons@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Holes@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:T@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Electrons@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Holes@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:T@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.95472e+03\tAbsError: 4.41411e+19\n", + " Region: \"zone_1\"\tRelError: 3.81043e+02\tAbsError: 2.85345e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.81043e+02\tAbsError: 2.85345e-02\n", + " Region: \"zone_3\"\tRelError: 6.57367e+03\tAbsError: 4.41411e+19\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14821e+03\tAbsError: 2.20694e+19\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.40994e+03\tAbsError: 2.20718e+19\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01552e+03\tAbsError: 2.85345e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.80786e+03\tAbsError: 6.59033e+16\n", + " Region: \"zone_1\"\tRelError: 2.19832e+02\tAbsError: 1.26527e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19832e+02\tAbsError: 1.26527e-02\n", + " Region: \"zone_3\"\tRelError: 2.58803e+03\tAbsError: 6.59033e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.51340e+00\tAbsError: 3.52905e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.98731e-01\tAbsError: 3.06128e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58452e+03\tAbsError: 1.34324e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.63105e-01\tAbsError: 8.92986e+14\n", + " Region: \"zone_1\"\tRelError: 2.25408e-01\tAbsError: 6.58954e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25408e-01\tAbsError: 6.58954e-04\n", + " Region: \"zone_3\"\tRelError: 7.37696e-01\tAbsError: 8.92986e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.80759e-01\tAbsError: 8.00842e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.45120e-01\tAbsError: 9.21447e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18173e-02\tAbsError: 7.04254e-04\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 8.06680e-03\tAbsError: 2.77776e+12\n", + " Region: \"zone_1\"\tRelError: 6.08613e-04\tAbsError: 1.98093e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.08613e-04\tAbsError: 1.98093e-06\n", + " Region: \"zone_3\"\tRelError: 7.45819e-03\tAbsError: 2.77776e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.65188e-03\tAbsError: 2.73367e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.79286e-03\tAbsError: 4.40855e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34515e-05\tAbsError: 2.15181e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.07461e-07\tAbsError: 2.67458e+07\n", + " Region: \"zone_1\"\tRelError: 6.49905e-09\tAbsError: 2.34425e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.49905e-09\tAbsError: 2.34425e-11\n", + " Region: \"zone_3\"\tRelError: 1.00962e-07\tAbsError: 2.67458e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94056e-08\tAbsError: 2.64009e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.13963e-08\tAbsError: 3.44866e+05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59744e-10\tAbsError: 2.55539e-11\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:37\u001b[0m.\u001b[1;36m675\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 1.0\u001b[0m \n", + "Replacing Node Model NetDoping in region zone_1 of material Si\n", + "Replacing Node Model n_i in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_1 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_1 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_1 of material Si\n", + "Replacing Node Model n_i:T in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_1 of material Si\n", + "Replacing Node Model NetDoping in region zone_3 of material Si\n", + "Replacing Node Model n_i in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_3 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_3 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_3 of material Si\n", + "Replacing Node Model n_i:T in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Electrons@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Holes@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:T@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Electrons@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Holes@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:T@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.33861e+04\tAbsError: 1.39514e+20\n", + " Region: \"zone_1\"\tRelError: 2.79494e+02\tAbsError: 4.20836e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.79494e+02\tAbsError: 4.20836e-02\n", + " Region: \"zone_3\"\tRelError: 1.31066e+04\tAbsError: 1.39514e+20\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.86187e+03\tAbsError: 6.97553e+19\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.24838e+02\tAbsError: 6.97585e+19\n", + " Equation: \"PotentialEquation\"\tRelError: 9.61994e+03\tAbsError: 4.30246e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.25022e+02\tAbsError: 5.51056e+16\n", + " Region: \"zone_1\"\tRelError: 3.98460e+01\tAbsError: 3.11827e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.98460e+01\tAbsError: 3.11827e-02\n", + " Region: \"zone_3\"\tRelError: 2.85176e+02\tAbsError: 5.51056e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.99835e+01\tAbsError: 2.78545e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.26461e+00\tAbsError: 2.72511e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.33928e+02\tAbsError: 3.22725e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.58594e+00\tAbsError: 1.77512e+15\n", + " Region: \"zone_1\"\tRelError: 5.05411e-02\tAbsError: 2.57431e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.05411e-02\tAbsError: 2.57431e-02\n", + " Region: \"zone_3\"\tRelError: 1.53540e+00\tAbsError: 1.77512e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.84777e-01\tAbsError: 8.67365e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.04763e-01\tAbsError: 9.07757e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.58597e-02\tAbsError: 2.58832e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 8.67888e+00\tAbsError: 5.91098e+13\n", + " Region: \"zone_1\"\tRelError: 1.67922e-02\tAbsError: 8.54135e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67922e-02\tAbsError: 8.54135e-03\n", + " Region: \"zone_3\"\tRelError: 8.66209e+00\tAbsError: 5.91098e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.42042e+00\tAbsError: 2.76016e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.26176e-01\tAbsError: 3.15082e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54893e-02\tAbsError: 9.88817e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.81690e-01\tAbsError: 5.88696e+12\n", + " Region: \"zone_1\"\tRelError: 1.48229e-03\tAbsError: 5.31753e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48229e-03\tAbsError: 5.31753e-05\n", + " Region: \"zone_3\"\tRelError: 7.80207e-01\tAbsError: 5.88696e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.04708e-01\tAbsError: 2.85353e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.54154e-02\tAbsError: 3.03343e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.43580e-05\tAbsError: 5.79660e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.81047e-04\tAbsError: 4.19141e+08\n", + " Region: \"zone_1\"\tRelError: 2.16246e-08\tAbsError: 1.50485e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16246e-08\tAbsError: 1.50485e-09\n", + " Region: \"zone_3\"\tRelError: 4.81025e-04\tAbsError: 4.19141e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39973e-04\tAbsError: 4.84100e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.10496e-05\tAbsError: 3.70731e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.37568e-09\tAbsError: 1.64465e-09\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.08814e-11\tAbsError: 3.17736e+04\n", + " Region: \"zone_1\"\tRelError: 1.06569e-14\tAbsError: 2.06294e-16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06569e-14\tAbsError: 2.06294e-16\n", + " Region: \"zone_3\"\tRelError: 2.08708e-11\tAbsError: 3.17736e+04\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.06175e-11\tAbsError: 1.55596e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.34811e-13\tAbsError: 1.62139e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84794e-14\tAbsError: 2.16987e-16\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m466\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m485\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBuilt-in potential: % (np.float64(-1.0659654762908737),)\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m485\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mnot all arguments converted during string formatting\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m575\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.65 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m576\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.6 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m577\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.55 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m577\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.7 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m578\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.5 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m598\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.1\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m599\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: 0.1\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m599\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: 0.1\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m599\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: 0.1\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m599\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "number of equations 22602\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "number of equations 22602\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.73717e+01\tAbsError: 8.69288e+15\n", + " Region: \"zone_1\"\tRelError: 2.57083e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57083e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.66335e+00\tAbsError: 8.69288e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.93654e-01\tAbsError: 4.53799e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.93414e-01\tAbsError: 4.15490e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.62866e-02\tAbsError: 4.09542e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.73717e+01\tAbsError: 8.69288e+15\n", + " Region: \"zone_1\"\tRelError: 2.57083e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57083e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.66335e+00\tAbsError: 8.69288e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.93654e-01\tAbsError: 4.53799e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.93414e-01\tAbsError: 4.15490e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.62866e-02\tAbsError: 4.09542e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.73717e+01\tAbsError: 8.69288e+15\n", + " Region: \"zone_1\"\tRelError: 2.57083e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57083e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.66335e+00\tAbsError: 8.69288e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.93654e-01\tAbsError: 4.53799e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.93414e-01\tAbsError: 4.15490e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.62866e-02\tAbsError: 4.09542e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.73717e+01\tAbsError: 8.69288e+15\n", + " Region: \"zone_1\"\tRelError: 2.57083e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57083e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.66335e+00\tAbsError: 8.69288e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.93654e-01\tAbsError: 4.53799e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.93414e-01\tAbsError: 4.15490e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.62866e-02\tAbsError: 4.09542e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.73717e+01\tAbsError: 8.69288e+15\n", + " Region: \"zone_1\"\tRelError: 2.57083e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57083e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.66335e+00\tAbsError: 8.69288e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.93654e-01\tAbsError: 4.53799e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.93414e-01\tAbsError: 4.15490e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.62866e-02\tAbsError: 4.09542e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.74300e+00\tAbsError: 2.93645e+14\n", + " Region: \"zone_1\"\tRelError: 2.20462e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20462e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.52254e+00\tAbsError: 2.93645e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90423e-01\tAbsError: 1.21723e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.85863e-01\tAbsError: 1.71921e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62516e-02\tAbsError: 3.07632e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.74300e+00\tAbsError: 2.93645e+14\n", + " Region: \"zone_1\"\tRelError: 2.20462e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20462e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.52254e+00\tAbsError: 2.93645e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90423e-01\tAbsError: 1.21723e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.85863e-01\tAbsError: 1.71921e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62516e-02\tAbsError: 3.07632e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.74300e+00\tAbsError: 2.93645e+14\n", + " Region: \"zone_1\"\tRelError: 2.20462e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20462e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.52254e+00\tAbsError: 2.93645e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90423e-01\tAbsError: 1.21723e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.85863e-01\tAbsError: 1.71921e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62516e-02\tAbsError: 3.07632e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.74300e+00\tAbsError: 2.93645e+14\n", + " Region: \"zone_1\"\tRelError: 2.20462e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20462e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.52254e+00\tAbsError: 2.93645e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90423e-01\tAbsError: 1.21723e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.85863e-01\tAbsError: 1.71921e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62516e-02\tAbsError: 3.07632e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.74300e+00\tAbsError: 2.93645e+14\n", + " Region: \"zone_1\"\tRelError: 2.20462e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20462e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.52254e+00\tAbsError: 2.93645e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90423e-01\tAbsError: 1.21723e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.85863e-01\tAbsError: 1.71921e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62516e-02\tAbsError: 3.07632e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.07714e+00\tAbsError: 4.48799e+13\n", + " Region: \"zone_1\"\tRelError: 4.05238e-02\tAbsError: 2.58454e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.05238e-02\tAbsError: 2.58454e-02\n", + " Region: \"zone_3\"\tRelError: 1.03661e+00\tAbsError: 4.48799e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14392e-01\tAbsError: 2.36249e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.86252e-01\tAbsError: 2.12550e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59693e-02\tAbsError: 2.57490e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.07714e+00\tAbsError: 4.48799e+13\n", + " Region: \"zone_1\"\tRelError: 4.05238e-02\tAbsError: 2.58454e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.05238e-02\tAbsError: 2.58454e-02\n", + " Region: \"zone_3\"\tRelError: 1.03661e+00\tAbsError: 4.48799e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14392e-01\tAbsError: 2.36249e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.86252e-01\tAbsError: 2.12550e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59693e-02\tAbsError: 2.57490e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.07714e+00\tAbsError: 4.48799e+13\n", + " Region: \"zone_1\"\tRelError: 4.05238e-02\tAbsError: 2.58454e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.05238e-02\tAbsError: 2.58454e-02\n", + " Region: \"zone_3\"\tRelError: 1.03661e+00\tAbsError: 4.48799e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14392e-01\tAbsError: 2.36249e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.86252e-01\tAbsError: 2.12550e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59693e-02\tAbsError: 2.57490e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.07714e+00\tAbsError: 4.48799e+13\n", + " Region: \"zone_1\"\tRelError: 4.05238e-02\tAbsError: 2.58454e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.05238e-02\tAbsError: 2.58454e-02\n", + " Region: \"zone_3\"\tRelError: 1.03661e+00\tAbsError: 4.48799e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14392e-01\tAbsError: 2.36249e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.86252e-01\tAbsError: 2.12550e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59693e-02\tAbsError: 2.57490e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.07714e+00\tAbsError: 4.48799e+13\n", + " Region: \"zone_1\"\tRelError: 4.05238e-02\tAbsError: 2.58454e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.05238e-02\tAbsError: 2.58454e-02\n", + " Region: \"zone_3\"\tRelError: 1.03661e+00\tAbsError: 4.48799e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14392e-01\tAbsError: 2.36249e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.86252e-01\tAbsError: 2.12550e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59693e-02\tAbsError: 2.57490e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.81042e-01\tAbsError: 7.01282e+12\n", + " Region: \"zone_1\"\tRelError: 1.15331e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15331e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.69508e-01\tAbsError: 7.01282e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87363e-01\tAbsError: 9.92393e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.03912e-02\tAbsError: 6.02043e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17537e-02\tAbsError: 9.16534e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.81042e-01\tAbsError: 7.01282e+12\n", + " Region: \"zone_1\"\tRelError: 1.15331e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15331e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.69508e-01\tAbsError: 7.01282e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87363e-01\tAbsError: 9.92393e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.03912e-02\tAbsError: 6.02043e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17537e-02\tAbsError: 9.16534e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.81042e-01\tAbsError: 7.01282e+12\n", + " Region: \"zone_1\"\tRelError: 1.15331e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15331e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.69508e-01\tAbsError: 7.01282e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87363e-01\tAbsError: 9.92393e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.03912e-02\tAbsError: 6.02043e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17537e-02\tAbsError: 9.16534e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.81042e-01\tAbsError: 7.01282e+12\n", + " Region: \"zone_1\"\tRelError: 1.15331e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15331e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.69508e-01\tAbsError: 7.01282e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87363e-01\tAbsError: 9.92393e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.03912e-02\tAbsError: 6.02043e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17537e-02\tAbsError: 9.16534e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.81042e-01\tAbsError: 7.01282e+12\n", + " Region: \"zone_1\"\tRelError: 1.15331e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15331e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.69508e-01\tAbsError: 7.01282e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87363e-01\tAbsError: 9.92393e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.03912e-02\tAbsError: 6.02043e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17537e-02\tAbsError: 9.16534e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.40625e-02\tAbsError: 6.64799e+12\n", + " Region: \"zone_1\"\tRelError: 2.74618e-03\tAbsError: 3.10429e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74618e-03\tAbsError: 3.10429e-05\n", + " Region: \"zone_3\"\tRelError: 9.13164e-02\tAbsError: 6.64799e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.88453e-02\tAbsError: 1.24813e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.42442e-03\tAbsError: 5.39986e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.66460e-05\tAbsError: 3.16854e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.40625e-02\tAbsError: 6.64799e+12\n", + " Region: \"zone_1\"\tRelError: 2.74618e-03\tAbsError: 3.10429e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74618e-03\tAbsError: 3.10429e-05\n", + " Region: \"zone_3\"\tRelError: 9.13164e-02\tAbsError: 6.64799e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.88453e-02\tAbsError: 1.24813e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.42442e-03\tAbsError: 5.39986e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.66460e-05\tAbsError: 3.16854e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.40625e-02\tAbsError: 6.64799e+12\n", + " Region: \"zone_1\"\tRelError: 2.74618e-03\tAbsError: 3.10429e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74618e-03\tAbsError: 3.10429e-05\n", + " Region: \"zone_3\"\tRelError: 9.13164e-02\tAbsError: 6.64799e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.88453e-02\tAbsError: 1.24813e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.42442e-03\tAbsError: 5.39986e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.66460e-05\tAbsError: 3.16854e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.40625e-02\tAbsError: 6.64799e+12\n", + " Region: \"zone_1\"\tRelError: 2.74618e-03\tAbsError: 3.10429e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74618e-03\tAbsError: 3.10429e-05\n", + " Region: \"zone_3\"\tRelError: 9.13164e-02\tAbsError: 6.64799e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.88453e-02\tAbsError: 1.24813e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.42442e-03\tAbsError: 5.39986e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.66460e-05\tAbsError: 3.16854e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.40625e-02\tAbsError: 6.64799e+12\n", + " Region: \"zone_1\"\tRelError: 2.74618e-03\tAbsError: 3.10429e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74618e-03\tAbsError: 3.10429e-05\n", + " Region: \"zone_3\"\tRelError: 9.13164e-02\tAbsError: 6.64799e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.88453e-02\tAbsError: 1.24813e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.42442e-03\tAbsError: 5.39986e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.66460e-05\tAbsError: 3.16854e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.20145e-05\tAbsError: 8.69361e+08\n", + " Region: \"zone_1\"\tRelError: 2.45098e-07\tAbsError: 3.49761e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.45098e-07\tAbsError: 3.49761e-09\n", + " Region: \"zone_3\"\tRelError: 6.17694e-05\tAbsError: 8.69361e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.00240e-05\tAbsError: 1.13923e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.74001e-06\tAbsError: 7.55438e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 5.37090e-09\tAbsError: 3.64623e-09\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:42\u001b[0m.\u001b[1;36m724\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.22\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.20145e-05\tAbsError: 8.69361e+08\n", + " Region: \"zone_1\"\tRelError: 2.45098e-07\tAbsError: 3.49761e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.45098e-07\tAbsError: 3.49761e-09\n", + " Region: \"zone_3\"\tRelError: 6.17694e-05\tAbsError: 8.69361e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.00240e-05\tAbsError: 1.13923e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.74001e-06\tAbsError: 7.55438e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 5.37090e-09\tAbsError: 3.64623e-09\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.20145e-05\tAbsError: 8.69361e+08\n", + " Region: \"zone_1\"\tRelError: 2.45098e-07\tAbsError: 3.49761e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.45098e-07\tAbsError: 3.49761e-09\n", + " Region: \"zone_3\"\tRelError: 6.17694e-05\tAbsError: 8.69361e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.00240e-05\tAbsError: 1.13923e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.74001e-06\tAbsError: 7.55438e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 5.37090e-09\tAbsError: 3.64623e-09\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:42\u001b[0m.\u001b[1;36m871\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:42\u001b[0m.\u001b[1;36m871\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.21250000000000002\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:42\u001b[0m.\u001b[1;36m875\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.225\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.20145e-05\tAbsError: 8.69361e+08\n", + " Region: \"zone_1\"\tRelError: 2.45098e-07\tAbsError: 3.49761e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.45098e-07\tAbsError: 3.49761e-09\n", + " Region: \"zone_3\"\tRelError: 6.17694e-05\tAbsError: 8.69361e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.00240e-05\tAbsError: 1.13923e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.74001e-06\tAbsError: 7.55438e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 5.37090e-09\tAbsError: 3.64623e-09\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.20145e-05\tAbsError: 8.69361e+08\n", + " Region: \"zone_1\"\tRelError: 2.45098e-07\tAbsError: 3.49761e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.45098e-07\tAbsError: 3.49761e-09\n", + " Region: \"zone_3\"\tRelError: 6.17694e-05\tAbsError: 8.69361e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.00240e-05\tAbsError: 1.13923e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.74001e-06\tAbsError: 7.55438e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 5.37090e-09\tAbsError: 3.64623e-09\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:42\u001b[0m.\u001b[1;36m991\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:42\u001b[0m.\u001b[1;36m991\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.21000000000000002\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:43\u001b[0m.\u001b[1;36m002\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: 0.2\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.43252e+01\tAbsError: 1.03421e+16\n", + " Region: \"zone_1\"\tRelError: 2.25819e+01\tAbsError: 4.47728e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25819e+01\tAbsError: 4.47728e-02\n", + " Region: \"zone_3\"\tRelError: 1.74335e+00\tAbsError: 1.03421e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.22691e-01\tAbsError: 5.59498e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.22662e-01\tAbsError: 4.74717e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.79926e-02\tAbsError: 4.47728e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.99855e+02\tAbsError: 1.07731e+16\n", + " Region: \"zone_1\"\tRelError: 3.98095e+02\tAbsError: 4.56455e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.98095e+02\tAbsError: 4.56455e-02\n", + " Region: \"zone_3\"\tRelError: 1.75960e+00\tAbsError: 1.07731e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.28567e-01\tAbsError: 5.82810e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.28539e-01\tAbsError: 4.94497e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02494e-01\tAbsError: 4.56455e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.05002e+01\tAbsError: 9.69576e+15\n", + " Region: \"zone_1\"\tRelError: 8.77946e+00\tAbsError: 4.34059e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.77946e+00\tAbsError: 4.34059e-02\n", + " Region: \"zone_3\"\tRelError: 1.72076e+00\tAbsError: 9.69576e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.13079e-01\tAbsError: 5.24529e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.13050e-01\tAbsError: 4.45048e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.46281e-02\tAbsError: 4.34059e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 9.99488e+00\tAbsError: 9.48030e+15\n", + " Region: \"zone_1\"\tRelError: 8.28205e+00\tAbsError: 4.29338e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.28205e+00\tAbsError: 4.29338e-02\n", + " Region: \"zone_3\"\tRelError: 1.71283e+00\tAbsError: 9.48030e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09640e-01\tAbsError: 5.12873e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.09610e-01\tAbsError: 4.35158e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.35761e-02\tAbsError: 4.29338e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.60543e+00\tAbsError: 4.89557e+14\n", + " Region: \"zone_1\"\tRelError: 9.64208e-01\tAbsError: 3.52793e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.64208e-01\tAbsError: 3.52793e-02\n", + " Region: \"zone_3\"\tRelError: 1.64122e+00\tAbsError: 4.89557e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.40829e-01\tAbsError: 2.23317e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.35914e-01\tAbsError: 2.66240e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.44805e-02\tAbsError: 3.52793e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.21485e+01\tAbsError: 8.61846e+15\n", + " Region: \"zone_1\"\tRelError: 3.04717e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.04717e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.67686e+00\tAbsError: 8.61846e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94516e-01\tAbsError: 4.66248e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94484e-01\tAbsError: 3.95598e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.78603e-02\tAbsError: 4.09542e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.78928e+00\tAbsError: 5.28938e+14\n", + " Region: \"zone_1\"\tRelError: 1.12561e+00\tAbsError: 3.63154e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12561e+00\tAbsError: 3.63154e-02\n", + " Region: \"zone_3\"\tRelError: 1.66367e+00\tAbsError: 5.28938e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.50678e-01\tAbsError: 2.41685e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.46054e-01\tAbsError: 2.87253e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.69416e-02\tAbsError: 3.63154e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.84157e+00\tAbsError: 4.32896e+14\n", + " Region: \"zone_1\"\tRelError: 2.36912e-01\tAbsError: 3.36589e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36912e-01\tAbsError: 3.36589e-02\n", + " Region: \"zone_3\"\tRelError: 1.60466e+00\tAbsError: 4.32896e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.24168e-01\tAbsError: 1.96905e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.19345e-01\tAbsError: 2.35991e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.11504e-02\tAbsError: 3.36589e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.85366e+00\tAbsError: 4.14640e+14\n", + " Region: \"zone_1\"\tRelError: 2.61180e-01\tAbsError: 3.31000e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.61180e-01\tAbsError: 3.31000e-02\n", + " Region: \"zone_3\"\tRelError: 1.59248e+00\tAbsError: 4.14640e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.17871e-01\tAbsError: 1.88389e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.13734e-01\tAbsError: 2.26251e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.08768e-02\tAbsError: 3.31000e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.43347e+00\tAbsError: 7.21532e+13\n", + " Region: \"zone_1\"\tRelError: 1.81992e-01\tAbsError: 2.58895e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81992e-01\tAbsError: 2.58895e-02\n", + " Region: \"zone_3\"\tRelError: 1.25148e+00\tAbsError: 7.21532e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.01180e-01\tAbsError: 4.01174e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.02411e-01\tAbsError: 3.20358e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.78909e-02\tAbsError: 2.58895e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.07800e+00\tAbsError: 3.45404e+14\n", + " Region: \"zone_1\"\tRelError: 5.44178e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.44178e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.53382e+00\tAbsError: 3.45404e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90662e-01\tAbsError: 1.56300e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.87478e-01\tAbsError: 1.89103e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.56802e-02\tAbsError: 3.07632e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.45137e+00\tAbsError: 8.09526e+13\n", + " Region: \"zone_1\"\tRelError: 1.57705e-01\tAbsError: 2.56964e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57705e-01\tAbsError: 2.56964e-02\n", + " Region: \"zone_3\"\tRelError: 1.29366e+00\tAbsError: 8.09526e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.19167e-01\tAbsError: 4.49957e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.25437e-01\tAbsError: 3.59570e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.90582e-02\tAbsError: 2.58393e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.22755e+00\tAbsError: 6.01612e+13\n", + " Region: \"zone_1\"\tRelError: 4.61375e-02\tAbsError: 2.58854e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.61375e-02\tAbsError: 2.58854e-02\n", + " Region: \"zone_3\"\tRelError: 1.18141e+00\tAbsError: 6.01612e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.71455e-01\tAbsError: 3.35148e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.63762e-01\tAbsError: 2.66464e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.61967e-02\tAbsError: 2.58870e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.20078e+00\tAbsError: 5.64838e+13\n", + " Region: \"zone_1\"\tRelError: 4.55160e-02\tAbsError: 2.58865e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.55160e-02\tAbsError: 2.58865e-02\n", + " Region: \"zone_3\"\tRelError: 1.15526e+00\tAbsError: 5.64838e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.61025e-01\tAbsError: 3.15083e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.48693e-01\tAbsError: 2.49756e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.55410e-02\tAbsError: 2.58905e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.89326e-01\tAbsError: 4.13996e+12\n", + " Region: \"zone_1\"\tRelError: 2.41774e-02\tAbsError: 1.57805e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41774e-02\tAbsError: 1.57805e-02\n", + " Region: \"zone_3\"\tRelError: 5.65148e-01\tAbsError: 4.13996e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.73951e-01\tAbsError: 2.57829e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.66640e-01\tAbsError: 1.56166e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.45580e-02\tAbsError: 1.57805e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.11313e+00\tAbsError: 4.26791e+13\n", + " Region: \"zone_1\"\tRelError: 7.05940e-02\tAbsError: 2.58377e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.05940e-02\tAbsError: 2.58377e-02\n", + " Region: \"zone_3\"\tRelError: 1.04254e+00\tAbsError: 4.26791e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14646e-01\tAbsError: 2.38411e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.85599e-01\tAbsError: 1.88379e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22941e-02\tAbsError: 2.58015e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.96834e-01\tAbsError: 3.38950e+12\n", + " Region: \"zone_1\"\tRelError: 1.98031e-02\tAbsError: 1.31065e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.98031e-02\tAbsError: 1.31065e-02\n", + " Region: \"zone_3\"\tRelError: 4.77031e-01\tAbsError: 3.38950e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.31319e-01\tAbsError: 2.13807e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.25594e-01\tAbsError: 1.25143e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01182e-02\tAbsError: 1.31065e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.67195e-01\tAbsError: 2.99700e+12\n", + " Region: \"zone_1\"\tRelError: 1.84458e-02\tAbsError: 1.22654e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84458e-02\tAbsError: 1.22654e-02\n", + " Region: \"zone_3\"\tRelError: 4.48750e-01\tAbsError: 2.99700e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.16869e-01\tAbsError: 1.89558e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13140e-01\tAbsError: 1.10142e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87406e-02\tAbsError: 1.22654e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.52999e-01\tAbsError: 4.87650e+12\n", + " Region: \"zone_1\"\tRelError: 2.73515e-02\tAbsError: 1.76835e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73515e-02\tAbsError: 1.76835e-02\n", + " Region: \"zone_3\"\tRelError: 6.25648e-01\tAbsError: 4.87650e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.01915e-01\tAbsError: 3.02544e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.95961e-01\tAbsError: 1.85106e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.77724e-02\tAbsError: 1.76835e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.59775e-01\tAbsError: 2.80288e+11\n", + " Region: \"zone_1\"\tRelError: 1.96302e-04\tAbsError: 1.31500e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96302e-04\tAbsError: 1.31500e-06\n", + " Region: \"zone_3\"\tRelError: 1.59578e-01\tAbsError: 2.80288e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.59143e-01\tAbsError: 4.20993e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.33221e-04\tAbsError: 2.38189e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.47952e-06\tAbsError: 1.35652e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.83480e-01\tAbsError: 2.88954e+12\n", + " Region: \"zone_1\"\tRelError: 1.35212e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35212e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.69958e-01\tAbsError: 2.88954e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88338e-01\tAbsError: 2.12977e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.78790e-02\tAbsError: 2.67656e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37417e-02\tAbsError: 9.16534e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.27801e-01\tAbsError: 4.34192e+11\n", + " Region: \"zone_1\"\tRelError: 2.46783e-04\tAbsError: 4.60435e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.46783e-04\tAbsError: 4.60435e-06\n", + " Region: \"zone_3\"\tRelError: 1.27554e-01\tAbsError: 4.34192e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27237e-01\tAbsError: 2.24685e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.08059e-04\tAbsError: 2.09506e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.98221e-06\tAbsError: 4.88811e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.18420e-01\tAbsError: 2.77452e+11\n", + " Region: \"zone_1\"\tRelError: 1.60281e-04\tAbsError: 2.62019e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60281e-04\tAbsError: 2.62019e-06\n", + " Region: \"zone_3\"\tRelError: 1.18259e-01\tAbsError: 2.77452e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18060e-01\tAbsError: 1.27601e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.94154e-04\tAbsError: 1.49851e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.08922e-06\tAbsError: 2.78229e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.84172e-01\tAbsError: 1.90697e+11\n", + " Region: \"zone_1\"\tRelError: 6.30141e-05\tAbsError: 1.39710e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.30141e-05\tAbsError: 1.39710e-06\n", + " Region: \"zone_3\"\tRelError: 1.84109e-01\tAbsError: 1.90697e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.83263e-01\tAbsError: 3.06155e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.42765e-04\tAbsError: 1.60082e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64032e-06\tAbsError: 1.43554e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.92675e-06\tAbsError: 1.03497e+06\n", + " Region: \"zone_1\"\tRelError: 7.52446e-10\tAbsError: 5.33045e-12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.52446e-10\tAbsError: 5.33045e-12\n", + " Region: \"zone_3\"\tRelError: 5.92599e-06\tAbsError: 1.03497e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.92250e-06\tAbsError: 2.38573e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.48197e-09\tAbsError: 7.96401e+05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02976e-11\tAbsError: 5.60919e-12\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.38444e-02\tAbsError: 3.70458e+12\n", + " Region: \"zone_1\"\tRelError: 3.59871e-03\tAbsError: 2.71390e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59871e-03\tAbsError: 2.71390e-05\n", + " Region: \"zone_3\"\tRelError: 9.02457e-02\tAbsError: 3.70458e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.84320e-02\tAbsError: 1.19345e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.76575e-03\tAbsError: 2.51114e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.79561e-05\tAbsError: 2.71828e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:44\u001b[0m.\u001b[1;36m997\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:44\u001b[0m.\u001b[1;36m997\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.33999999999999997\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.29843e-05\tAbsError: 5.43351e+06\n", + " Region: \"zone_1\"\tRelError: 1.09761e-09\tAbsError: 3.62523e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09761e-09\tAbsError: 3.62523e-11\n", + " Region: \"zone_3\"\tRelError: 1.29832e-05\tAbsError: 5.43351e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.29355e-05\tAbsError: 5.10581e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.76677e-08\tAbsError: 4.92293e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.63478e-11\tAbsError: 3.77119e-11\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:45\u001b[0m.\u001b[1;36m089\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:45\u001b[0m.\u001b[1;36m089\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.32500000000000007\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.49173e-06\tAbsError: 2.80652e+06\n", + " Region: \"zone_1\"\tRelError: 5.46308e-10\tAbsError: 1.14586e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.46308e-10\tAbsError: 1.14586e-11\n", + " Region: \"zone_3\"\tRelError: 6.49119e-06\tAbsError: 2.80652e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.47826e-06\tAbsError: 4.87875e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29012e-08\tAbsError: 2.31865e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30092e-11\tAbsError: 1.26062e-11\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.87003e-06\tAbsError: 3.02548e+06\n", + " Region: \"zone_1\"\tRelError: 1.49583e-09\tAbsError: 1.05811e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49583e-09\tAbsError: 1.05811e-11\n", + " Region: \"zone_3\"\tRelError: 4.86853e-06\tAbsError: 3.02548e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.85850e-06\tAbsError: 6.55593e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.00060e-08\tAbsError: 2.36989e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.59711e-11\tAbsError: 1.24054e-11\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:45\u001b[0m.\u001b[1;36m223\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:45\u001b[0m.\u001b[1;36m223\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.32000000000000006\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.96038e-05\tAbsError: 5.27330e+08\n", + " Region: \"zone_1\"\tRelError: 3.38320e-07\tAbsError: 2.80513e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.38320e-07\tAbsError: 2.80513e-09\n", + " Region: \"zone_3\"\tRelError: 4.92654e-05\tAbsError: 5.27330e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.82203e-05\tAbsError: 1.20057e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04006e-06\tAbsError: 4.07273e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 5.04648e-09\tAbsError: 2.84942e-09\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:45\u001b[0m.\u001b[1;36m267\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.35\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:45\u001b[0m.\u001b[1;36m310\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: \u001b[0m \n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:45\u001b[0m.\u001b[1;36m310\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.47853e+01\tAbsError: 1.02519e+16\n", + " Region: \"zone_1\"\tRelError: 1.30252e+01\tAbsError: 4.47728e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30252e+01\tAbsError: 4.47728e-02\n", + " Region: \"zone_3\"\tRelError: 1.76018e+00\tAbsError: 1.02519e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.22739e-01\tAbsError: 5.83243e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.22729e-01\tAbsError: 4.41946e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14714e-01\tAbsError: 4.47728e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.89525e+01\tAbsError: 9.61793e+15\n", + " Region: \"zone_1\"\tRelError: 1.72162e+01\tAbsError: 4.34059e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72162e+01\tAbsError: 4.34059e-02\n", + " Region: \"zone_3\"\tRelError: 1.73629e+00\tAbsError: 9.61793e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.13130e-01\tAbsError: 5.45653e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.13119e-01\tAbsError: 4.16140e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10045e-01\tAbsError: 4.34059e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.10506e+01\tAbsError: 9.40634e+15\n", + " Region: \"zone_1\"\tRelError: 9.32438e+00\tAbsError: 4.29338e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.32438e+00\tAbsError: 4.29338e-02\n", + " Region: \"zone_3\"\tRelError: 1.72626e+00\tAbsError: 9.40634e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09691e-01\tAbsError: 5.33144e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.09680e-01\tAbsError: 4.07489e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06894e-01\tAbsError: 4.29338e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.20730e+00\tAbsError: 4.79565e+14\n", + " Region: \"zone_1\"\tRelError: 5.48136e-01\tAbsError: 3.52793e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.48136e-01\tAbsError: 3.52793e-02\n", + " Region: \"zone_3\"\tRelError: 1.65917e+00\tAbsError: 4.79565e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.41117e-01\tAbsError: 2.59100e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.36240e-01\tAbsError: 2.20465e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.18119e-02\tAbsError: 3.52793e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.62677e+00\tAbsError: 8.55868e+15\n", + " Region: \"zone_1\"\tRelError: 3.93566e+00\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.93566e+00\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.69111e+00\tAbsError: 8.55868e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94568e-01\tAbsError: 4.83229e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94557e-01\tAbsError: 3.72639e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01989e-01\tAbsError: 4.09542e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.85666e+01\tAbsError: 1.06738e+16\n", + " Region: \"zone_1\"\tRelError: 2.67884e+01\tAbsError: 4.56455e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67884e+01\tAbsError: 4.56455e-02\n", + " Region: \"zone_3\"\tRelError: 1.77824e+00\tAbsError: 1.06738e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.28615e-01\tAbsError: 6.08350e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.28605e-01\tAbsError: 4.59032e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21017e-01\tAbsError: 4.56455e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.51523e+00\tAbsError: 4.22739e+14\n", + " Region: \"zone_1\"\tRelError: 2.89450e+00\tAbsError: 3.36589e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.89450e+00\tAbsError: 3.36589e-02\n", + " Region: \"zone_3\"\tRelError: 1.62073e+00\tAbsError: 4.22739e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.23769e-01\tAbsError: 2.24190e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.20407e-01\tAbsError: 1.98549e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.65581e-02\tAbsError: 3.36589e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.26294e+00\tAbsError: 4.04710e+14\n", + " Region: \"zone_1\"\tRelError: 6.55990e-01\tAbsError: 3.31000e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.55990e-01\tAbsError: 3.31000e-02\n", + " Region: \"zone_3\"\tRelError: 1.60695e+00\tAbsError: 4.04710e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.17961e-01\tAbsError: 2.13363e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.14153e-01\tAbsError: 1.91347e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.48377e-02\tAbsError: 3.31000e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.33125e+00\tAbsError: 4.12213e+13\n", + " Region: \"zone_1\"\tRelError: 6.47491e-02\tAbsError: 2.57580e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.47491e-02\tAbsError: 2.57580e-02\n", + " Region: \"zone_3\"\tRelError: 1.26650e+00\tAbsError: 4.12213e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.01161e-01\tAbsError: 2.62343e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.03820e-01\tAbsError: 1.49870e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.15242e-02\tAbsError: 2.57829e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.64610e+00\tAbsError: 3.68437e+13\n", + " Region: \"zone_1\"\tRelError: 4.53119e-01\tAbsError: 2.58087e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.53119e-01\tAbsError: 2.58087e-02\n", + " Region: \"zone_3\"\tRelError: 1.19298e+00\tAbsError: 3.68437e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.71779e-01\tAbsError: 2.36334e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.63005e-01\tAbsError: 1.32103e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.81958e-02\tAbsError: 2.58820e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.68467e+00\tAbsError: 3.35446e+14\n", + " Region: \"zone_1\"\tRelError: 1.36557e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36557e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.54812e+00\tAbsError: 3.35446e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90679e-01\tAbsError: 1.72457e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.87899e-01\tAbsError: 1.62989e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.95382e-02\tAbsError: 3.07632e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 6.89383e+00\tAbsError: 5.18509e+14\n", + " Region: \"zone_1\"\tRelError: 5.21126e+00\tAbsError: 3.63154e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.21126e+00\tAbsError: 3.63154e-02\n", + " Region: \"zone_3\"\tRelError: 1.68257e+00\tAbsError: 5.18509e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.50957e-01\tAbsError: 2.83335e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.46413e-01\tAbsError: 2.35173e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.51973e-02\tAbsError: 3.63154e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.24212e+00\tAbsError: 3.49826e+13\n", + " Region: \"zone_1\"\tRelError: 7.44892e-02\tAbsError: 2.58685e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.44892e-02\tAbsError: 2.58685e-02\n", + " Region: \"zone_3\"\tRelError: 1.16763e+00\tAbsError: 3.49826e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.61171e-01\tAbsError: 2.23843e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.49557e-01\tAbsError: 1.25983e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.68989e-02\tAbsError: 2.58685e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.01287e-01\tAbsError: 4.15111e+12\n", + " Region: \"zone_1\"\tRelError: 3.07780e-02\tAbsError: 1.57805e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.07780e-02\tAbsError: 1.57805e-02\n", + " Region: \"zone_3\"\tRelError: 5.70509e-01\tAbsError: 4.15111e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.73696e-01\tAbsError: 2.44163e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.65705e-01\tAbsError: 1.70948e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.11079e-02\tAbsError: 1.57805e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.10405e+00\tAbsError: 2.84626e+13\n", + " Region: \"zone_1\"\tRelError: 5.09442e-02\tAbsError: 2.58970e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.09442e-02\tAbsError: 2.58970e-02\n", + " Region: \"zone_3\"\tRelError: 1.05311e+00\tAbsError: 2.84626e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14915e-01\tAbsError: 1.81960e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.86897e-01\tAbsError: 1.02666e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.12979e-02\tAbsError: 2.58565e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.68433e+00\tAbsError: 4.64869e+13\n", + " Region: \"zone_1\"\tRelError: 3.73668e-01\tAbsError: 2.58485e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.73668e-01\tAbsError: 2.58485e-02\n", + " Region: \"zone_3\"\tRelError: 1.31067e+00\tAbsError: 4.64869e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.19200e-01\tAbsError: 3.02498e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.27007e-01\tAbsError: 1.62371e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.44592e-02\tAbsError: 2.58694e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.05251e-01\tAbsError: 2.85806e+12\n", + " Region: \"zone_1\"\tRelError: 2.46961e-02\tAbsError: 1.31065e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.46961e-02\tAbsError: 1.31065e-02\n", + " Region: \"zone_3\"\tRelError: 4.80555e-01\tAbsError: 2.85806e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.31249e-01\tAbsError: 1.68183e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24321e-01\tAbsError: 1.17623e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49853e-02\tAbsError: 1.31065e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.59361e-01\tAbsError: 2.03855e+11\n", + " Region: \"zone_1\"\tRelError: 1.21525e-04\tAbsError: 1.10173e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21525e-04\tAbsError: 1.10173e-06\n", + " Region: \"zone_3\"\tRelError: 1.59240e-01\tAbsError: 2.03855e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.58701e-01\tAbsError: 6.56291e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.35370e-04\tAbsError: 1.38226e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.20073e-06\tAbsError: 1.24268e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.74278e-01\tAbsError: 2.59384e+12\n", + " Region: \"zone_1\"\tRelError: 2.28487e-02\tAbsError: 1.22654e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.28487e-02\tAbsError: 1.22654e-02\n", + " Region: \"zone_3\"\tRelError: 4.51429e-01\tAbsError: 2.59384e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.16516e-01\tAbsError: 1.52691e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11789e-01\tAbsError: 1.06693e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31245e-02\tAbsError: 1.22654e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.87738e-01\tAbsError: 1.50257e+12\n", + " Region: \"zone_1\"\tRelError: 1.63299e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63299e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.71408e-01\tAbsError: 1.50257e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88723e-01\tAbsError: 2.92089e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.61472e-02\tAbsError: 1.21048e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65380e-02\tAbsError: 9.16534e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.67356e-01\tAbsError: 4.97105e+12\n", + " Region: \"zone_1\"\tRelError: 3.52993e-02\tAbsError: 1.76835e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52993e-02\tAbsError: 1.76835e-02\n", + " Region: \"zone_3\"\tRelError: 6.32056e-01\tAbsError: 4.97105e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.01229e-01\tAbsError: 2.83328e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.95149e-01\tAbsError: 2.13777e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.56785e-02\tAbsError: 1.76835e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.18030e-06\tAbsError: 1.23059e+06\n", + " Region: \"zone_1\"\tRelError: 2.53347e-11\tAbsError: 5.61891e-12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.53347e-11\tAbsError: 5.61891e-12\n", + " Region: \"zone_3\"\tRelError: 2.18028e-06\tAbsError: 1.23059e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16612e-06\tAbsError: 1.68178e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.41360e-08\tAbsError: 1.06241e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46617e-11\tAbsError: 6.26882e-12\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.19005e-01\tAbsError: 5.46470e+11\n", + " Region: \"zone_1\"\tRelError: 5.19598e-04\tAbsError: 3.00981e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.19598e-04\tAbsError: 3.00981e-06\n", + " Region: \"zone_3\"\tRelError: 1.18486e-01\tAbsError: 5.46470e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18069e-01\tAbsError: 1.59389e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.09405e-04\tAbsError: 3.87081e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.48302e-06\tAbsError: 3.25953e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:47\u001b[0m.\u001b[1;36m224\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:47\u001b[0m.\u001b[1;36m224\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.45999999999999996\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.32086e-01\tAbsError: 3.58732e+11\n", + " Region: \"zone_1\"\tRelError: 3.52069e-03\tAbsError: 3.46952e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52069e-03\tAbsError: 3.46952e-06\n", + " Region: \"zone_3\"\tRelError: 1.28565e-01\tAbsError: 3.58732e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28060e-01\tAbsError: 1.88253e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.95953e-04\tAbsError: 1.70479e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.82064e-06\tAbsError: 3.74489e-06\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.96849e-02\tAbsError: 2.07362e+12\n", + " Region: \"zone_1\"\tRelError: 7.02885e-04\tAbsError: 1.90198e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.02885e-04\tAbsError: 1.90198e-05\n", + " Region: \"zone_3\"\tRelError: 8.89820e-02\tAbsError: 2.07362e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.78375e-02\tAbsError: 8.90891e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10276e-03\tAbsError: 1.18273e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.17313e-05\tAbsError: 1.96984e-05\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.85665e-01\tAbsError: 3.55505e+11\n", + " Region: \"zone_1\"\tRelError: 1.22203e-03\tAbsError: 2.29161e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22203e-03\tAbsError: 2.29161e-06\n", + " Region: \"zone_3\"\tRelError: 1.84443e-01\tAbsError: 3.55505e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.83320e-01\tAbsError: 1.35128e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11619e-03\tAbsError: 2.20377e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.84121e-06\tAbsError: 2.55517e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.40982e-05\tAbsError: 1.92019e+08\n", + " Region: \"zone_1\"\tRelError: 4.03285e-08\tAbsError: 1.17477e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.03285e-08\tAbsError: 1.17477e-09\n", + " Region: \"zone_3\"\tRelError: 3.40579e-05\tAbsError: 1.92019e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.36060e-05\tAbsError: 5.55444e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.49187e-07\tAbsError: 1.36475e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67835e-09\tAbsError: 1.26430e-09\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.06553e-05\tAbsError: 3.01286e+06\n", + " Region: \"zone_1\"\tRelError: 1.31838e-08\tAbsError: 2.69287e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31838e-08\tAbsError: 2.69287e-11\n", + " Region: \"zone_3\"\tRelError: 1.06421e-05\tAbsError: 3.01286e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05960e-05\tAbsError: 5.16247e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.60244e-08\tAbsError: 2.49661e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.27167e-11\tAbsError: 2.84312e-11\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:47\u001b[0m.\u001b[1;36m647\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: 0.4\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:47\u001b[0m.\u001b[1;36m649\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: 0.4375\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Iteration: 5\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 8.63620e-06\tAbsError: 2.22522e+06\n", + " Region: \"zone_1\"\tRelError: 2.53869e-09\tAbsError: 2.37681e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.53869e-09\tAbsError: 2.37681e-11\n", + " Region: \"zone_3\"\tRelError: 8.63366e-06\tAbsError: 2.22522e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.60416e-06\tAbsError: 5.72923e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.94484e-08\tAbsError: 1.65229e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.35026e-11\tAbsError: 2.45711e-11\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 5\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 5.34503e-06\tAbsError: 4.05779e+06\n", + " Region: \"zone_1\"\tRelError: 3.22995e-10\tAbsError: 2.21843e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.22995e-10\tAbsError: 2.21843e-11\n", + " Region: \"zone_3\"\tRelError: 5.34471e-06\tAbsError: 4.05779e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.27797e-06\tAbsError: 6.65666e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.66791e-08\tAbsError: 3.39213e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.85320e-11\tAbsError: 2.41530e-11\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:47\u001b[0m.\u001b[1;36m741\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:47\u001b[0m.\u001b[1;36m741\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.43000000000000005\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:47\u001b[0m.\u001b[1;36m776\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.475\u001b[0m \n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.64361e+01\tAbsError: 1.00688e+16\n", + " Region: \"zone_1\"\tRelError: 1.46549e+01\tAbsError: 4.47728e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46549e+01\tAbsError: 4.47728e-02\n", + " Region: \"zone_3\"\tRelError: 1.78122e+00\tAbsError: 1.00688e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.22740e-01\tAbsError: 5.91653e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.22726e-01\tAbsError: 4.15223e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35753e-01\tAbsError: 4.47728e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.36121e+00\tAbsError: 9.46924e+15\n", + " Region: \"zone_1\"\tRelError: 3.60591e+00\tAbsError: 4.34059e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.60591e+00\tAbsError: 4.34059e-02\n", + " Region: \"zone_3\"\tRelError: 1.75530e+00\tAbsError: 9.46924e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.13131e-01\tAbsError: 5.54964e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.13117e-01\tAbsError: 3.91961e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29049e-01\tAbsError: 4.34059e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.56244e+00\tAbsError: 8.45570e+15\n", + " Region: \"zone_1\"\tRelError: 3.85573e+00\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85573e+00\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.70670e+00\tAbsError: 8.45570e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94571e-01\tAbsError: 4.92914e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94557e-01\tAbsError: 3.52655e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17574e-01\tAbsError: 4.09542e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.57466e+00\tAbsError: 9.26788e+15\n", + " Region: \"zone_1\"\tRelError: 2.82864e+00\tAbsError: 4.29338e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.82864e+00\tAbsError: 4.29338e-02\n", + " Region: \"zone_3\"\tRelError: 1.74602e+00\tAbsError: 9.26788e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09693e-01\tAbsError: 5.42632e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.09679e-01\tAbsError: 3.84156e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26649e-01\tAbsError: 4.29338e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.02844e+01\tAbsError: 1.04643e+16\n", + " Region: \"zone_1\"\tRelError: 1.84861e+01\tAbsError: 4.56455e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84861e+01\tAbsError: 4.56455e-02\n", + " Region: \"zone_3\"\tRelError: 1.79828e+00\tAbsError: 1.04643e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.28615e-01\tAbsError: 6.15809e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.28601e-01\tAbsError: 4.30618e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41062e-01\tAbsError: 4.56455e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.89083e+00\tAbsError: 4.70583e+14\n", + " Region: \"zone_1\"\tRelError: 2.07990e-01\tAbsError: 3.52793e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07990e-01\tAbsError: 3.52793e-02\n", + " Region: \"zone_3\"\tRelError: 1.68284e+00\tAbsError: 4.70583e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.41003e-01\tAbsError: 3.14025e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.36896e-01\tAbsError: 1.56557e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04944e-01\tAbsError: 3.52793e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.75354e+00\tAbsError: 4.15023e+14\n", + " Region: \"zone_1\"\tRelError: 1.11621e-01\tAbsError: 3.36589e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11621e-01\tAbsError: 3.36589e-02\n", + " Region: \"zone_3\"\tRelError: 1.64192e+00\tAbsError: 4.15023e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.24008e-01\tAbsError: 2.68102e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.20579e-01\tAbsError: 1.46921e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.73304e-02\tAbsError: 3.36589e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.67739e+00\tAbsError: 3.26551e+14\n", + " Region: \"zone_1\"\tRelError: 1.13651e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13651e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.56374e+00\tAbsError: 3.26551e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91179e-01\tAbsError: 1.98410e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.87607e-01\tAbsError: 1.28141e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.49517e-02\tAbsError: 3.07632e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.73313e+00\tAbsError: 3.96589e+14\n", + " Region: \"zone_1\"\tRelError: 1.05624e-01\tAbsError: 3.31000e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05624e-01\tAbsError: 3.31000e-02\n", + " Region: \"zone_3\"\tRelError: 1.62751e+00\tAbsError: 3.96589e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.17540e-01\tAbsError: 2.53211e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.15147e-01\tAbsError: 1.43378e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.48212e-02\tAbsError: 3.31000e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.03555e+00\tAbsError: 5.15225e+14\n", + " Region: \"zone_1\"\tRelError: 3.28232e-01\tAbsError: 3.63154e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.28232e-01\tAbsError: 3.63154e-02\n", + " Region: \"zone_3\"\tRelError: 1.70731e+00\tAbsError: 5.15225e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.51762e-01\tAbsError: 3.53233e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.46051e-01\tAbsError: 1.61993e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09502e-01\tAbsError: 3.63154e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.37866e+00\tAbsError: 9.07304e+13\n", + " Region: \"zone_1\"\tRelError: 8.45133e-02\tAbsError: 2.58376e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.45133e-02\tAbsError: 2.58376e-02\n", + " Region: \"zone_3\"\tRelError: 1.29414e+00\tAbsError: 9.07304e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.01230e-01\tAbsError: 6.48171e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.08400e-01\tAbsError: 2.59132e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.45133e-02\tAbsError: 2.58376e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.13583e+00\tAbsError: 3.35166e+13\n", + " Region: \"zone_1\"\tRelError: 6.49986e-02\tAbsError: 2.58787e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.49986e-02\tAbsError: 2.58787e-02\n", + " Region: \"zone_3\"\tRelError: 1.07083e+00\tAbsError: 3.35166e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14794e-01\tAbsError: 2.31889e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.90894e-01\tAbsError: 1.03277e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.51440e-02\tAbsError: 2.58923e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.29377e+00\tAbsError: 6.84080e+13\n", + " Region: \"zone_1\"\tRelError: 7.72791e-02\tAbsError: 2.58679e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.72791e-02\tAbsError: 2.58679e-02\n", + " Region: \"zone_3\"\tRelError: 1.21649e+00\tAbsError: 6.84080e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.71768e-01\tAbsError: 5.01523e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.67427e-01\tAbsError: 1.82557e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.72992e-02\tAbsError: 2.58679e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.43276e+00\tAbsError: 1.07866e+14\n", + " Region: \"zone_1\"\tRelError: 8.84483e-02\tAbsError: 2.55894e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.84483e-02\tAbsError: 2.55894e-02\n", + " Region: \"zone_3\"\tRelError: 1.34431e+00\tAbsError: 1.07866e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.19179e-01\tAbsError: 7.49207e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.35012e-01\tAbsError: 3.29455e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.01174e-02\tAbsError: 2.58079e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.27863e-01\tAbsError: 1.70405e+13\n", + " Region: \"zone_1\"\tRelError: 4.19952e-02\tAbsError: 1.57805e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.19952e-02\tAbsError: 1.57805e-02\n", + " Region: \"zone_3\"\tRelError: 5.85867e-01\tAbsError: 1.70405e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.73355e-01\tAbsError: 8.63901e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.70241e-01\tAbsError: 8.40152e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22716e-02\tAbsError: 1.57805e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.26176e+00\tAbsError: 6.17820e+13\n", + " Region: \"zone_1\"\tRelError: 7.36238e-02\tAbsError: 2.56439e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.36238e-02\tAbsError: 2.56439e-02\n", + " Region: \"zone_3\"\tRelError: 1.18814e+00\tAbsError: 6.17820e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.61240e-01\tAbsError: 4.55005e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.51872e-01\tAbsError: 1.62815e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.50269e-02\tAbsError: 2.58894e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.97006e-01\tAbsError: 3.97798e+12\n", + " Region: \"zone_1\"\tRelError: 2.05644e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05644e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.76441e-01\tAbsError: 3.97798e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88505e-01\tAbsError: 1.01871e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.71832e-02\tAbsError: 2.95927e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07533e-02\tAbsError: 9.16534e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.23128e-01\tAbsError: 9.62684e+12\n", + " Region: \"zone_1\"\tRelError: 3.26236e-02\tAbsError: 1.31065e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.26236e-02\tAbsError: 1.31065e-02\n", + " Region: \"zone_3\"\tRelError: 4.90504e-01\tAbsError: 9.62684e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.30875e-01\tAbsError: 4.28253e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.26769e-01\tAbsError: 5.34431e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.28603e-02\tAbsError: 1.31065e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.00731e-01\tAbsError: 2.44819e+13\n", + " Region: \"zone_1\"\tRelError: 4.92915e-02\tAbsError: 1.76835e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.92915e-02\tAbsError: 1.76835e-02\n", + " Region: \"zone_3\"\tRelError: 6.51440e-01\tAbsError: 2.44819e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.00079e-01\tAbsError: 1.28123e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.01755e-01\tAbsError: 1.16695e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.96058e-02\tAbsError: 1.76835e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.89862e-01\tAbsError: 7.99664e+12\n", + " Region: \"zone_1\"\tRelError: 2.98842e-02\tAbsError: 1.22654e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.98842e-02\tAbsError: 1.22654e-02\n", + " Region: \"zone_3\"\tRelError: 4.59978e-01\tAbsError: 7.99664e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.16917e-01\tAbsError: 3.30963e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.12949e-01\tAbsError: 4.68701e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.01113e-02\tAbsError: 1.22654e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.61764e-01\tAbsError: 1.88685e+12\n", + " Region: \"zone_1\"\tRelError: 8.28721e-05\tAbsError: 8.34626e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.28721e-05\tAbsError: 8.34626e-06\n", + " Region: \"zone_3\"\tRelError: 1.61681e-01\tAbsError: 1.88685e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.59331e-01\tAbsError: 9.23461e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.31979e-03\tAbsError: 9.63390e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.04564e-05\tAbsError: 8.70001e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.28686e-01\tAbsError: 7.78584e+11\n", + " Region: \"zone_1\"\tRelError: 8.41818e-05\tAbsError: 5.98192e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.41818e-05\tAbsError: 5.98192e-06\n", + " Region: \"zone_3\"\tRelError: 1.28601e-01\tAbsError: 7.78584e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27790e-01\tAbsError: 3.25797e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.90479e-04\tAbsError: 4.52787e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13119e-05\tAbsError: 6.66099e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.75905e-02\tAbsError: 6.14178e+11\n", + " Region: \"zone_1\"\tRelError: 1.87871e-04\tAbsError: 5.35919e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87871e-04\tAbsError: 5.35919e-06\n", + " Region: \"zone_3\"\tRelError: 8.74026e-02\tAbsError: 6.14178e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.70791e-02\tAbsError: 2.57149e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.08574e-04\tAbsError: 3.57029e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49985e-05\tAbsError: 5.65537e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.86955e-01\tAbsError: 3.78131e+12\n", + " Region: \"zone_1\"\tRelError: 1.86505e-04\tAbsError: 1.66794e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86505e-04\tAbsError: 1.66794e-05\n", + " Region: \"zone_3\"\tRelError: 1.86768e-01\tAbsError: 3.78131e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.82184e-01\tAbsError: 1.93089e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.52284e-03\tAbsError: 1.85042e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.18724e-05\tAbsError: 1.90993e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.19535e-01\tAbsError: 7.67511e+11\n", + " Region: \"zone_1\"\tRelError: 1.02132e-04\tAbsError: 6.40339e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02132e-04\tAbsError: 6.40339e-06\n", + " Region: \"zone_3\"\tRelError: 1.19432e-01\tAbsError: 7.67511e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18713e-01\tAbsError: 3.47334e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.98127e-04\tAbsError: 4.20177e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17746e-05\tAbsError: 7.06173e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.50521e-05\tAbsError: 3.76327e+08\n", + " Region: \"zone_1\"\tRelError: 3.48964e-08\tAbsError: 3.16416e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.48964e-08\tAbsError: 3.16416e-09\n", + " Region: \"zone_3\"\tRelError: 3.50172e-05\tAbsError: 3.76327e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.44276e-05\tAbsError: 2.07077e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.78619e-07\tAbsError: 1.69251e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10178e-08\tAbsError: 3.56939e-09\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:49\u001b[0m.\u001b[1;36m790\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.58\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.49501e-05\tAbsError: 5.71953e+07\n", + " Region: \"zone_1\"\tRelError: 5.68261e-09\tAbsError: 4.84224e-10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.68261e-09\tAbsError: 4.84224e-10\n", + " Region: \"zone_3\"\tRelError: 1.49444e-05\tAbsError: 5.71953e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.48629e-05\tAbsError: 3.20709e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.97586e-08\tAbsError: 2.51244e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72322e-09\tAbsError: 5.34422e-10\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.95471e-06\tAbsError: 1.37438e+07\n", + " Region: \"zone_1\"\tRelError: 1.96050e-09\tAbsError: 6.30623e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96050e-09\tAbsError: 6.30623e-11\n", + " Region: \"zone_3\"\tRelError: 9.95275e-06\tAbsError: 1.37438e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.91827e-06\tAbsError: 3.21260e+06\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.43047e-08\tAbsError: 1.05312e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78389e-10\tAbsError: 6.72817e-11\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:49\u001b[0m.\u001b[1;36m913\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: 0.55\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:49\u001b[0m.\u001b[1;36m961\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: 0.5\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 5\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 7.08853e-05\tAbsError: 1.42552e+09\n", + " Region: \"zone_1\"\tRelError: 4.19440e-07\tAbsError: 1.37162e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 4.19440e-07\tAbsError: 1.37162e-08\n", + " Region: \"zone_3\"\tRelError: 7.04658e-05\tAbsError: 1.42552e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.80448e-05\tAbsError: 7.64375e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.36999e-06\tAbsError: 6.61144e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 5.10689e-08\tAbsError: 1.57552e-08\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:50\u001b[0m.\u001b[1;36m078\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.6\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Iteration: 5\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 1.39115e-05\tAbsError: 3.56195e+07\n", + " Region: \"zone_1\"\tRelError: 4.59619e-09\tAbsError: 3.23674e-10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.59619e-09\tAbsError: 3.23674e-10\n", + " Region: \"zone_3\"\tRelError: 1.39069e-05\tAbsError: 3.56195e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38108e-05\tAbsError: 1.93540e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.49639e-08\tAbsError: 1.62655e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15594e-09\tAbsError: 3.70759e-10\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:50\u001b[0m.\u001b[1;36m181\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: 0.54\u001b[0m \n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.63822e+02\tAbsError: 9.99860e+15\n", + " Region: \"zone_1\"\tRelError: 1.62022e+02\tAbsError: 4.47728e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62022e+02\tAbsError: 4.47728e-02\n", + " Region: \"zone_3\"\tRelError: 1.80004e+00\tAbsError: 9.99860e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.22736e-01\tAbsError: 5.99873e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.22714e-01\tAbsError: 3.99987e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54591e-01\tAbsError: 4.47728e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.18638e+01\tAbsError: 9.38144e+15\n", + " Region: \"zone_1\"\tRelError: 3.00933e+01\tAbsError: 4.34059e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.00933e+01\tAbsError: 4.34059e-02\n", + " Region: \"zone_3\"\tRelError: 1.77059e+00\tAbsError: 9.38144e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.13128e-01\tAbsError: 5.61995e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.13108e-01\tAbsError: 3.76149e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44356e-01\tAbsError: 4.34059e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.87556e+01\tAbsError: 8.34767e+15\n", + " Region: \"zone_1\"\tRelError: 6.70313e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.70313e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.72426e+00\tAbsError: 8.34767e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94570e-01\tAbsError: 4.96926e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94551e-01\tAbsError: 3.37841e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35138e-01\tAbsError: 4.09542e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.68568e+01\tAbsError: 1.04087e+16\n", + " Region: \"zone_1\"\tRelError: 1.50335e+01\tAbsError: 4.56455e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50335e+01\tAbsError: 4.56455e-02\n", + " Region: \"zone_3\"\tRelError: 1.82326e+00\tAbsError: 1.04087e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.28610e-01\tAbsError: 6.24214e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.28586e-01\tAbsError: 4.16658e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66069e-01\tAbsError: 4.56455e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.50411e+01\tAbsError: 9.17516e+15\n", + " Region: \"zone_1\"\tRelError: 2.32813e+01\tAbsError: 4.29338e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32813e+01\tAbsError: 4.29338e-02\n", + " Region: \"zone_3\"\tRelError: 1.75981e+00\tAbsError: 9.17516e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09690e-01\tAbsError: 5.49119e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.09670e-01\tAbsError: 3.68397e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40449e-01\tAbsError: 4.29338e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.96710e+00\tAbsError: 7.06642e+14\n", + " Region: \"zone_1\"\tRelError: 2.55041e-01\tAbsError: 3.52793e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.55041e-01\tAbsError: 3.52793e-02\n", + " Region: \"zone_3\"\tRelError: 1.71206e+00\tAbsError: 7.06642e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.41689e-01\tAbsError: 4.35939e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.35147e-01\tAbsError: 2.70703e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35224e-01\tAbsError: 3.52793e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.22954e+00\tAbsError: 5.42067e+14\n", + " Region: \"zone_1\"\tRelError: 5.61058e-01\tAbsError: 3.36589e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.61058e-01\tAbsError: 3.36589e-02\n", + " Region: \"zone_3\"\tRelError: 1.66849e+00\tAbsError: 5.42067e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.24386e-01\tAbsError: 3.71154e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.20213e-01\tAbsError: 1.70913e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23887e-01\tAbsError: 3.36589e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.18244e+00\tAbsError: 3.45808e+14\n", + " Region: \"zone_1\"\tRelError: 5.95786e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95786e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.58666e+00\tAbsError: 3.45808e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91491e-01\tAbsError: 2.56450e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.87672e-01\tAbsError: 8.93573e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07491e-01\tAbsError: 3.07632e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.94995e+00\tAbsError: 8.76084e+14\n", + " Region: \"zone_1\"\tRelError: 2.06767e-01\tAbsError: 3.63154e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06767e-01\tAbsError: 3.63154e-02\n", + " Region: \"zone_3\"\tRelError: 1.74318e+00\tAbsError: 8.76084e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.52450e-01\tAbsError: 4.97626e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.43319e-01\tAbsError: 3.78459e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47410e-01\tAbsError: 3.63154e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.82843e+00\tAbsError: 4.96905e+14\n", + " Region: \"zone_1\"\tRelError: 1.74894e-01\tAbsError: 3.31000e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74894e-01\tAbsError: 3.31000e-02\n", + " Region: \"zone_3\"\tRelError: 1.65354e+00\tAbsError: 4.96905e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.18406e-01\tAbsError: 3.48442e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.14285e-01\tAbsError: 1.48463e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20848e-01\tAbsError: 3.31000e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.65271e+00\tAbsError: 2.27191e+14\n", + " Region: \"zone_1\"\tRelError: 3.95002e-01\tAbsError: 2.57709e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.95002e-01\tAbsError: 2.57709e-02\n", + " Region: \"zone_3\"\tRelError: 1.25770e+00\tAbsError: 2.27191e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.72445e-01\tAbsError: 1.34608e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.75411e-01\tAbsError: 9.25828e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09847e-01\tAbsError: 2.58536e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.10064e+00\tAbsError: 4.54473e+14\n", + " Region: \"zone_1\"\tRelError: 7.63192e-01\tAbsError: 2.58969e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.63192e-01\tAbsError: 2.58969e-02\n", + " Region: \"zone_3\"\tRelError: 1.33745e+00\tAbsError: 4.54473e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.02310e-01\tAbsError: 2.67136e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.12917e-01\tAbsError: 1.87336e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22224e-01\tAbsError: 2.58495e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.19247e+00\tAbsError: 8.54805e+13\n", + " Region: \"zone_1\"\tRelError: 9.12229e-02\tAbsError: 2.58978e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.12229e-02\tAbsError: 2.58978e-02\n", + " Region: \"zone_3\"\tRelError: 1.10125e+00\tAbsError: 8.54805e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14822e-01\tAbsError: 5.48784e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.98551e-01\tAbsError: 3.06021e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.78742e-02\tAbsError: 2.58989e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.74358e+00\tAbsError: 6.95805e+14\n", + " Region: \"zone_1\"\tRelError: 3.59029e-01\tAbsError: 2.58870e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59029e-01\tAbsError: 2.58870e-02\n", + " Region: \"zone_3\"\tRelError: 1.38455e+00\tAbsError: 6.95805e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.20623e-01\tAbsError: 3.94554e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.32523e-01\tAbsError: 3.01251e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31406e-01\tAbsError: 2.58603e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.37737e+00\tAbsError: 1.78105e+14\n", + " Region: \"zone_1\"\tRelError: 1.48634e-01\tAbsError: 2.57619e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48634e-01\tAbsError: 2.57619e-02\n", + " Region: \"zone_3\"\tRelError: 1.22873e+00\tAbsError: 1.78105e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.61703e-01\tAbsError: 1.04558e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.61460e-01\tAbsError: 7.35471e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05569e-01\tAbsError: 2.58968e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.80745e-01\tAbsError: 1.10410e+14\n", + " Region: \"zone_1\"\tRelError: 1.47166e-01\tAbsError: 1.31065e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47166e-01\tAbsError: 1.31065e-02\n", + " Region: \"zone_3\"\tRelError: 5.33579e-01\tAbsError: 1.10410e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.30651e-01\tAbsError: 5.09385e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.57058e-01\tAbsError: 5.94711e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.58703e-02\tAbsError: 1.31065e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 8.32791e-01\tAbsError: 2.51857e+14\n", + " Region: \"zone_1\"\tRelError: 1.94730e-01\tAbsError: 1.57805e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.94730e-01\tAbsError: 1.57805e-02\n", + " Region: \"zone_3\"\tRelError: 6.38061e-01\tAbsError: 2.51857e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.74054e-01\tAbsError: 1.12814e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.03778e-01\tAbsError: 1.39043e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.02300e-02\tAbsError: 1.57805e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.88147e-01\tAbsError: 4.23450e+14\n", + " Region: \"zone_1\"\tRelError: 8.68826e-02\tAbsError: 1.76835e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.68826e-02\tAbsError: 1.76835e-02\n", + " Region: \"zone_3\"\tRelError: 7.01264e-01\tAbsError: 4.23450e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.01742e-01\tAbsError: 1.87764e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.28166e-01\tAbsError: 2.35687e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.13557e-02\tAbsError: 1.76835e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.52183e-01\tAbsError: 2.83225e+13\n", + " Region: \"zone_1\"\tRelError: 5.95279e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95279e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.92655e-01\tAbsError: 2.83225e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.85164e-01\tAbsError: 1.34603e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.99920e-02\tAbsError: 1.48622e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74993e-02\tAbsError: 9.16534e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.72011e-01\tAbsError: 8.49829e+13\n", + " Region: \"zone_1\"\tRelError: 7.44559e-02\tAbsError: 1.22654e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.44559e-02\tAbsError: 1.22654e-02\n", + " Region: \"zone_3\"\tRelError: 4.97555e-01\tAbsError: 8.49829e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.15246e-01\tAbsError: 4.00907e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.40638e-01\tAbsError: 4.48922e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.16711e-02\tAbsError: 1.22654e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.57506e-01\tAbsError: 2.43354e+13\n", + " Region: \"zone_1\"\tRelError: 1.98853e-02\tAbsError: 1.46090e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.98853e-02\tAbsError: 1.46090e-04\n", + " Region: \"zone_3\"\tRelError: 1.37621e-01\tAbsError: 2.43354e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.25248e-01\tAbsError: 1.21923e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.16835e-02\tAbsError: 1.21432e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.88777e-04\tAbsError: 1.56043e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.32076e-01\tAbsError: 6.53765e+13\n", + " Region: \"zone_1\"\tRelError: 4.91696e-02\tAbsError: 3.68622e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.91696e-02\tAbsError: 3.68622e-04\n", + " Region: \"zone_3\"\tRelError: 1.82906e-01\tAbsError: 6.53765e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53357e-01\tAbsError: 3.17111e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.76638e-02\tAbsError: 3.36654e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88533e-03\tAbsError: 3.90599e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.59308e-01\tAbsError: 1.15477e+14\n", + " Region: \"zone_1\"\tRelError: 3.78271e-02\tAbsError: 6.12666e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.78271e-02\tAbsError: 6.12666e-04\n", + " Region: \"zone_3\"\tRelError: 2.21481e-01\tAbsError: 1.15477e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.73784e-01\tAbsError: 5.52720e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.43391e-02\tAbsError: 6.02054e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35832e-03\tAbsError: 6.56549e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.52644e-02\tAbsError: 2.55837e+12\n", + " Region: \"zone_1\"\tRelError: 7.16041e-03\tAbsError: 2.30338e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.16041e-03\tAbsError: 2.30338e-05\n", + " Region: \"zone_3\"\tRelError: 8.81040e-02\tAbsError: 2.55837e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.71797e-02\tAbsError: 1.35830e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.38768e-04\tAbsError: 1.20006e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.54583e-05\tAbsError: 2.40500e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.03413e-04\tAbsError: 7.94574e+10\n", + " Region: \"zone_1\"\tRelError: 6.70321e-05\tAbsError: 5.82251e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 6.70321e-05\tAbsError: 5.82251e-07\n", + " Region: \"zone_3\"\tRelError: 4.36381e-04\tAbsError: 7.94574e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.00904e-04\tAbsError: 5.18181e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.27552e-05\tAbsError: 2.76393e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.72259e-06\tAbsError: 6.15178e-07\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.54505e-03\tAbsError: 5.10916e+11\n", + " Region: \"zone_1\"\tRelError: 4.30658e-04\tAbsError: 3.74485e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.30658e-04\tAbsError: 3.74485e-06\n", + " Region: \"zone_3\"\tRelError: 1.11439e-03\tAbsError: 5.10916e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.36752e-04\tAbsError: 3.20803e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.58614e-04\tAbsError: 1.90113e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90289e-05\tAbsError: 3.92494e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.35620e-01\tAbsError: 1.72712e+13\n", + " Region: \"zone_1\"\tRelError: 9.74579e-03\tAbsError: 1.05058e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.74579e-03\tAbsError: 1.05058e-04\n", + " Region: \"zone_3\"\tRelError: 1.25874e-01\tAbsError: 1.72712e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.17031e-01\tAbsError: 8.70382e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.35880e-03\tAbsError: 8.56740e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.84384e-04\tAbsError: 1.13804e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.58292e-05\tAbsError: 4.59514e+08\n", + " Region: \"zone_1\"\tRelError: 9.81723e-07\tAbsError: 3.18909e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.81723e-07\tAbsError: 3.18909e-09\n", + " Region: \"zone_3\"\tRelError: 3.48474e-05\tAbsError: 4.59514e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.45053e-05\tAbsError: 3.33895e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.30263e-07\tAbsError: 1.25619e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18628e-08\tAbsError: 3.31754e-09\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.52128e-09\tAbsError: 1.00152e+06\n", + " Region: \"zone_1\"\tRelError: 5.76028e-10\tAbsError: 7.90239e-12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.76028e-10\tAbsError: 7.90239e-12\n", + " Region: \"zone_3\"\tRelError: 5.94525e-09\tAbsError: 1.00152e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.51837e-09\tAbsError: 7.00920e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.93070e-10\tAbsError: 3.00596e+05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.38074e-11\tAbsError: 8.27676e-12\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.27011e-03\tAbsError: 1.28677e+12\n", + " Region: \"zone_1\"\tRelError: 5.62187e-04\tAbsError: 1.00891e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.62187e-04\tAbsError: 1.00891e-05\n", + " Region: \"zone_3\"\tRelError: 1.70792e-03\tAbsError: 1.28677e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34924e-03\tAbsError: 7.92563e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.04077e-04\tAbsError: 4.94210e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.46001e-05\tAbsError: 1.06469e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.16833e-07\tAbsError: 3.97603e+07\n", + " Region: \"zone_1\"\tRelError: 2.48086e-08\tAbsError: 2.94098e-10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.48086e-08\tAbsError: 2.94098e-10\n", + " Region: \"zone_3\"\tRelError: 9.20242e-08\tAbsError: 3.97603e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.92851e-08\tAbsError: 2.72716e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13386e-08\tAbsError: 1.24887e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40050e-09\tAbsError: 3.06568e-10\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.15889e-04\tAbsError: 3.71681e+10\n", + " Region: \"zone_1\"\tRelError: 2.41579e-05\tAbsError: 2.90587e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41579e-05\tAbsError: 2.90587e-07\n", + " Region: \"zone_3\"\tRelError: 2.91731e-04\tAbsError: 3.71681e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.74902e-04\tAbsError: 2.46870e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.54957e-05\tAbsError: 1.24811e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33364e-06\tAbsError: 3.11133e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:52\u001b[0m.\u001b[1;36m657\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.7\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.90842e-07\tAbsError: 2.29484e+08\n", + " Region: \"zone_1\"\tRelError: 8.07789e-08\tAbsError: 1.50187e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 8.07789e-08\tAbsError: 1.50187e-09\n", + " Region: \"zone_3\"\tRelError: 3.10063e-07\tAbsError: 2.29484e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52989e-07\tAbsError: 1.55818e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.89546e-08\tAbsError: 7.36663e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 8.11933e-09\tAbsError: 1.58002e-09\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.90380e-09\tAbsError: 2.12026e+05\n", + " Region: \"zone_1\"\tRelError: 1.00300e-10\tAbsError: 1.55136e-12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00300e-10\tAbsError: 1.55136e-12\n", + " Region: \"zone_3\"\tRelError: 1.80350e-09\tAbsError: 2.12026e+05\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.71088e-09\tAbsError: 1.50477e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.62945e-11\tAbsError: 6.15487e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.32889e-12\tAbsError: 1.60667e-12\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:52\u001b[0m.\u001b[1;36m992\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: 0.65\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:53\u001b[0m.\u001b[1;36m186\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.97666e+00\tAbsError: 1.01000e+16\n", + " Region: \"zone_1\"\tRelError: 6.10143e+00\tAbsError: 4.47728e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.10143e+00\tAbsError: 4.47728e-02\n", + " Region: \"zone_3\"\tRelError: 1.87523e+00\tAbsError: 1.01000e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.22692e-01\tAbsError: 5.64880e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.22609e-01\tAbsError: 4.45116e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29929e-01\tAbsError: 4.47728e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:53\u001b[0m.\u001b[1;36m220\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.75 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:53\u001b[0m.\u001b[1;36m249\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.04122e+01\tAbsError: 9.15719e+15\n", + " Region: \"zone_1\"\tRelError: 5.85997e+01\tAbsError: 4.29338e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.85997e+01\tAbsError: 4.29338e-02\n", + " Region: \"zone_3\"\tRelError: 1.81249e+00\tAbsError: 9.15719e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09671e-01\tAbsError: 5.35064e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.09616e-01\tAbsError: 3.80655e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93207e-01\tAbsError: 4.29338e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.14611e+00\tAbsError: 5.45375e+15\n", + " Region: \"zone_1\"\tRelError: 3.96880e-01\tAbsError: 3.52793e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.96880e-01\tAbsError: 3.52793e-02\n", + " Region: \"zone_3\"\tRelError: 1.74923e+00\tAbsError: 5.45375e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.40967e-01\tAbsError: 2.70333e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.16719e-01\tAbsError: 2.75043e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91546e-01\tAbsError: 3.52793e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:53\u001b[0m.\u001b[1;36m537\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:53\u001b[0m.\u001b[1;36m586\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.8 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:53\u001b[0m.\u001b[1;36m624\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.17038e+03\tAbsError: 3.32754e+16\n", + " Region: \"zone_1\"\tRelError: 8.06380e+02\tAbsError: 7.25190e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.06380e+02\tAbsError: 7.25190e-02\n", + " Region: \"zone_3\"\tRelError: 1.36400e+03\tAbsError: 3.32754e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.34381e+02\tAbsError: 1.98676e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.29412e+02\tAbsError: 1.34077e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03625e-01\tAbsError: 7.25190e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:53\u001b[0m.\u001b[1;36m739\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:53\u001b[0m.\u001b[1;36m768\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.85 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:53\u001b[0m.\u001b[1;36m796\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: 0.1\u001b[0m \n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.66737e+00\tAbsError: 2.26108e+15\n", + " Region: \"zone_1\"\tRelError: 9.89112e-01\tAbsError: 3.31000e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.89112e-01\tAbsError: 3.31000e-02\n", + " Region: \"zone_3\"\tRelError: 1.67826e+00\tAbsError: 2.26108e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.18687e-01\tAbsError: 1.24573e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.03123e-01\tAbsError: 1.01535e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56453e-01\tAbsError: 3.31000e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.52675e+00\tAbsError: 5.28945e+15\n", + " Region: \"zone_1\"\tRelError: 1.72040e-01\tAbsError: 2.58808e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72040e-01\tAbsError: 2.58808e-02\n", + " Region: \"zone_3\"\tRelError: 1.35471e+00\tAbsError: 5.28945e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.06193e-01\tAbsError: 2.41324e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.69802e-01\tAbsError: 2.87620e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78720e-01\tAbsError: 2.55235e-02\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.24679e+02\tAbsError: 4.01088e+15\n", + " Region: \"zone_1\"\tRelError: 3.95733e+00\tAbsError: 6.76846e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.95733e+00\tAbsError: 6.76846e-02\n", + " Region: \"zone_3\"\tRelError: 3.20722e+02\tAbsError: 4.01088e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.70129e+01\tAbsError: 2.67793e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.93558e+02\tAbsError: 1.33295e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51138e-01\tAbsError: 6.76846e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.37416e+02\tAbsError: 3.75122e+16\n", + " Region: \"zone_1\"\tRelError: 1.70857e+02\tAbsError: 7.53940e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70857e+02\tAbsError: 7.53940e-02\n", + " Region: \"zone_3\"\tRelError: 6.65589e+01\tAbsError: 3.75122e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05162e+01\tAbsError: 2.17236e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.58128e+01\tAbsError: 1.57886e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29865e-01\tAbsError: 7.53940e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.57562e+00\tAbsError: 1.85067e+15\n", + " Region: \"zone_1\"\tRelError: 3.48899e-01\tAbsError: 2.58724e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.48899e-01\tAbsError: 2.58724e-02\n", + " Region: \"zone_3\"\tRelError: 1.22672e+00\tAbsError: 1.85067e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.65203e-01\tAbsError: 7.94760e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.14656e-01\tAbsError: 1.05591e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46858e-01\tAbsError: 2.56646e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 8.09161e-01\tAbsError: 2.63764e+15\n", + " Region: \"zone_1\"\tRelError: 8.96528e-02\tAbsError: 1.57805e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.96528e-02\tAbsError: 1.57805e-02\n", + " Region: \"zone_3\"\tRelError: 7.19508e-01\tAbsError: 2.63764e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.72631e-01\tAbsError: 1.36770e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.67164e-01\tAbsError: 1.26994e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.97131e-02\tAbsError: 1.57805e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.25791e+02\tAbsError: 4.25995e+16\n", + " Region: \"zone_1\"\tRelError: 4.60002e+01\tAbsError: 7.79815e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.60002e+01\tAbsError: 7.79815e-02\n", + " Region: \"zone_3\"\tRelError: 2.79791e+02\tAbsError: 4.25995e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.31837e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.70530e+02\tAbsError: 1.94157e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.60749e-01\tAbsError: 7.79815e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.71515e+02\tAbsError: 8.34333e+14\n", + " Region: \"zone_1\"\tRelError: 6.48480e-01\tAbsError: 6.21778e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.48480e-01\tAbsError: 6.21778e-02\n", + " Region: \"zone_3\"\tRelError: 2.70867e+02\tAbsError: 8.34333e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.08231e+01\tAbsError: 6.11932e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.49923e+02\tAbsError: 2.22401e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20191e-01\tAbsError: 6.21778e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.15214e-01\tAbsError: 6.36762e+14\n", + " Region: \"zone_1\"\tRelError: 2.12397e-02\tAbsError: 7.08897e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12397e-02\tAbsError: 7.08897e-04\n", + " Region: \"zone_3\"\tRelError: 1.93974e-01\tAbsError: 6.36762e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43220e-01\tAbsError: 3.40835e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.55466e-02\tAbsError: 2.95927e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.20806e-03\tAbsError: 7.36504e-04\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.62870e-01\tAbsError: 8.58491e+14\n", + " Region: \"zone_1\"\tRelError: 9.69362e-02\tAbsError: 1.22653e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.69362e-02\tAbsError: 1.22653e-02\n", + " Region: \"zone_3\"\tRelError: 5.65934e-01\tAbsError: 8.58491e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14889e-01\tAbsError: 4.34973e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96689e-01\tAbsError: 4.23518e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.43556e-02\tAbsError: 1.22654e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.20129e+02\tAbsError: 4.00033e+15\n", + " Region: \"zone_1\"\tRelError: 6.98278e+00\tAbsError: 7.09268e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.98278e+00\tAbsError: 7.09268e-02\n", + " Region: \"zone_3\"\tRelError: 1.13146e+02\tAbsError: 4.00033e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.89107e+01\tAbsError: 2.82869e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.40617e+01\tAbsError: 1.17164e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73521e-01\tAbsError: 7.09268e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 5.64331e+02\tAbsError: 6.50244e+15\n", + " Region: \"zone_1\"\tRelError: 5.93412e+00\tAbsError: 7.38245e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.93412e+00\tAbsError: 7.38245e-02\n", + " Region: \"zone_3\"\tRelError: 5.58397e+02\tAbsError: 6.50244e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33785e+01\tAbsError: 3.20431e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.44821e+02\tAbsError: 3.29813e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97731e-01\tAbsError: 7.38245e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.84400e-01\tAbsError: 1.84489e+14\n", + " Region: \"zone_1\"\tRelError: 5.08949e-02\tAbsError: 4.34577e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.08949e-02\tAbsError: 4.34577e-04\n", + " Region: \"zone_3\"\tRelError: 1.33505e-01\tAbsError: 1.84489e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07596e-01\tAbsError: 1.04840e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.33209e-02\tAbsError: 7.96491e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58735e-03\tAbsError: 4.38742e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.43586e-03\tAbsError: 5.13181e+12\n", + " Region: \"zone_1\"\tRelError: 3.56695e-04\tAbsError: 1.12706e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.56695e-04\tAbsError: 1.12706e-05\n", + " Region: \"zone_3\"\tRelError: 1.07916e-03\tAbsError: 5.13181e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.13872e-04\tAbsError: 3.41370e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.83111e-04\tAbsError: 1.71811e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.21790e-05\tAbsError: 1.15889e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 4.63879e+02\tAbsError: 1.84326e+15\n", + " Region: \"zone_1\"\tRelError: 3.13835e+00\tAbsError: 6.58786e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.13835e+00\tAbsError: 6.58786e-02\n", + " Region: \"zone_3\"\tRelError: 4.60741e+02\tAbsError: 1.84326e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.71445e+00\tAbsError: 9.31874e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.50886e+02\tAbsError: 9.11387e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40118e-01\tAbsError: 6.58786e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.44475e+03\tAbsError: 2.23451e+14\n", + " Region: \"zone_1\"\tRelError: 1.78721e-01\tAbsError: 5.58210e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78721e-01\tAbsError: 5.58210e-02\n", + " Region: \"zone_3\"\tRelError: 1.44457e+03\tAbsError: 2.23451e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10094e+03\tAbsError: 1.56875e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.43535e+02\tAbsError: 6.65760e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.64317e-02\tAbsError: 5.58210e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 4.38653e+02\tAbsError: 5.85580e+15\n", + " Region: \"zone_1\"\tRelError: 8.57649e+00\tAbsError: 6.91598e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.57649e+00\tAbsError: 6.91598e-02\n", + " Region: \"zone_3\"\tRelError: 4.30076e+02\tAbsError: 5.85580e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.62250e+01\tAbsError: 2.43153e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.63689e+02\tAbsError: 3.42426e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62308e-01\tAbsError: 6.91598e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.66432e-04\tAbsError: 7.61489e+11\n", + " Region: \"zone_1\"\tRelError: 4.42890e-04\tAbsError: 3.54702e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.42890e-04\tAbsError: 3.54702e-06\n", + " Region: \"zone_3\"\tRelError: 5.23542e-04\tAbsError: 7.61489e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.54885e-04\tAbsError: 5.60496e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.72654e-05\tAbsError: 2.00993e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13918e-05\tAbsError: 3.60294e-06\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 9.86672e-08\tAbsError: 3.37805e+08\n", + " Region: \"zone_1\"\tRelError: 2.92240e-08\tAbsError: 9.88161e-10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.92240e-08\tAbsError: 9.88161e-10\n", + " Region: \"zone_3\"\tRelError: 6.94432e-08\tAbsError: 3.37805e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.06757e-08\tAbsError: 2.17314e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.15885e-08\tAbsError: 1.20491e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 7.17900e-09\tAbsError: 1.00963e-09\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.15655e+03\tAbsError: 4.54227e+13\n", + " Region: \"zone_1\"\tRelError: 7.59588e-02\tAbsError: 4.83791e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.59588e-02\tAbsError: 4.83791e-02\n", + " Region: \"zone_3\"\tRelError: 3.15648e+03\tAbsError: 4.54227e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.11021e+03\tAbsError: 3.33738e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.61933e+01\tAbsError: 1.20489e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.62264e-02\tAbsError: 4.83791e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.29918e+03\tAbsError: 4.20610e+14\n", + " Region: \"zone_1\"\tRelError: 4.04058e-01\tAbsError: 6.01028e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.04058e-01\tAbsError: 6.01028e-02\n", + " Region: \"zone_3\"\tRelError: 7.29878e+03\tAbsError: 4.20610e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.71144e+02\tAbsError: 2.66090e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.52752e+03\tAbsError: 1.54520e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11913e-01\tAbsError: 6.01028e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.21163e+03\tAbsError: 5.71211e+14\n", + " Region: \"zone_1\"\tRelError: 5.79636e-01\tAbsError: 6.38656e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.79636e-01\tAbsError: 6.38656e-02\n", + " Region: \"zone_3\"\tRelError: 2.21106e+03\tAbsError: 5.71211e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.77921e+02\tAbsError: 3.25592e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.83301e+03\tAbsError: 2.45619e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28645e-01\tAbsError: 6.38656e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.97260e-08\tAbsError: 1.61510e+07\n", + " Region: \"zone_1\"\tRelError: 9.39372e-09\tAbsError: 7.94516e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.39372e-09\tAbsError: 7.94516e-11\n", + " Region: \"zone_3\"\tRelError: 1.03323e-08\tAbsError: 1.61510e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.49613e-09\tAbsError: 1.01388e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34196e-09\tAbsError: 6.01217e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.94202e-10\tAbsError: 8.30962e-11\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.35612e+03\tAbsError: 1.55095e+13\n", + " Region: \"zone_1\"\tRelError: 5.75455e-02\tAbsError: 3.95636e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.75455e-02\tAbsError: 3.95636e-02\n", + " Region: \"zone_3\"\tRelError: 6.35606e+03\tAbsError: 1.55095e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89427e+03\tAbsError: 6.28140e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.46173e+03\tAbsError: 9.22806e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.78836e-02\tAbsError: 3.95636e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.14832e+02\tAbsError: 1.37556e+14\n", + " Region: \"zone_1\"\tRelError: 1.13605e-01\tAbsError: 5.34033e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13605e-01\tAbsError: 5.34033e-02\n", + " Region: \"zone_3\"\tRelError: 7.14718e+02\tAbsError: 1.37556e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.40858e+02\tAbsError: 5.31618e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.73771e+02\tAbsError: 8.43944e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.91929e-02\tAbsError: 5.34033e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.74418e+01\tAbsError: 2.44384e+14\n", + " Region: \"zone_1\"\tRelError: 1.58166e-01\tAbsError: 5.77787e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58166e-01\tAbsError: 5.77787e-02\n", + " Region: \"zone_3\"\tRelError: 7.72836e+01\tAbsError: 2.44384e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.22063e+01\tAbsError: 1.55967e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.49742e+01\tAbsError: 8.84166e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03068e-01\tAbsError: 5.77787e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.16646e+02\tAbsError: 4.64268e+12\n", + " Region: \"zone_1\"\tRelError: 4.14390e-02\tAbsError: 2.91301e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.14390e-02\tAbsError: 2.91301e-02\n", + " Region: \"zone_3\"\tRelError: 1.16605e+02\tAbsError: 4.64268e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.15564e+02\tAbsError: 2.67332e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.98998e-01\tAbsError: 1.96936e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.18180e-02\tAbsError: 2.91301e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:56\u001b[0m.\u001b[1;36m114\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:56\u001b[0m.\u001b[1;36m140\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.9 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:56\u001b[0m.\u001b[1;36m169\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.64511e+03\tAbsError: 6.98723e+13\n", + " Region: \"zone_1\"\tRelError: 8.18118e-02\tAbsError: 5.06818e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.18118e-02\tAbsError: 5.06818e-02\n", + " Region: \"zone_3\"\tRelError: 1.64503e+03\tAbsError: 6.98723e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84310e+02\tAbsError: 1.77441e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.46064e+03\tAbsError: 5.21282e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.20392e-02\tAbsError: 5.06818e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.69280e+03\tAbsError: 8.64639e+13\n", + " Region: \"zone_1\"\tRelError: 7.66306e-02\tAbsError: 4.55241e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.66306e-02\tAbsError: 4.55241e-02\n", + " Region: \"zone_3\"\tRelError: 1.69273e+03\tAbsError: 8.64639e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53627e+02\tAbsError: 4.60213e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.53903e+03\tAbsError: 4.04426e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.98236e-02\tAbsError: 4.55241e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:56\u001b[0m.\u001b[1;36m478\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.11219e+00\tAbsError: 1.21037e+12\n", + " Region: \"zone_1\"\tRelError: 3.15041e-02\tAbsError: 2.47247e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.15041e-02\tAbsError: 2.47247e-02\n", + " Region: \"zone_3\"\tRelError: 1.08069e+00\tAbsError: 1.21037e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99731e-01\tAbsError: 3.71567e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.89803e-02\tAbsError: 8.38801e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.19791e-02\tAbsError: 2.47248e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:56\u001b[0m.\u001b[1;36m504\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.95 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:56\u001b[0m.\u001b[1;36m527\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.13554e+02\tAbsError: 1.05627e+14\n", + " Region: \"zone_1\"\tRelError: 9.04876e-02\tAbsError: 4.22987e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.04876e-02\tAbsError: 4.22987e-02\n", + " Region: \"zone_3\"\tRelError: 2.13463e+02\tAbsError: 1.05627e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84186e+02\tAbsError: 6.63679e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.92139e+01\tAbsError: 3.92586e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.32116e-02\tAbsError: 4.22987e-02\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.20368e+02\tAbsError: 3.16867e+13\n", + " Region: \"zone_1\"\tRelError: 5.14732e-02\tAbsError: 3.61712e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.14732e-02\tAbsError: 3.61712e-02\n", + " Region: \"zone_3\"\tRelError: 6.20316e+02\tAbsError: 3.16867e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.09455e+02\tAbsError: 2.20751e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.08092e+01\tAbsError: 9.61157e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.17894e-02\tAbsError: 3.61713e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.67213e+02\tAbsError: 1.38177e+17\n", + " Region: \"zone_1\"\tRelError: 5.79299e+01\tAbsError: 8.24901e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.79299e+01\tAbsError: 8.24901e-02\n", + " Region: \"zone_3\"\tRelError: 2.09283e+02\tAbsError: 1.38177e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 7.25461e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.99891e+02\tAbsError: 6.56314e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.92743e-01\tAbsError: 8.24902e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.17367e+00\tAbsError: 1.24826e+12\n", + " Region: \"zone_1\"\tRelError: 6.08211e-04\tAbsError: 6.10243e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.08211e-04\tAbsError: 6.10243e-06\n", + " Region: \"zone_3\"\tRelError: 1.17306e+00\tAbsError: 1.24826e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.17019e+00\tAbsError: 3.41542e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.85589e-03\tAbsError: 9.06713e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07451e-05\tAbsError: 6.52377e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.41399e+00\tAbsError: 6.14949e+12\n", + " Region: \"zone_1\"\tRelError: 3.96641e-02\tAbsError: 2.58319e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.96641e-02\tAbsError: 2.58319e-02\n", + " Region: \"zone_3\"\tRelError: 3.37432e+00\tAbsError: 6.14949e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.95682e-01\tAbsError: 2.72768e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.33871e+00\tAbsError: 3.42181e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.99293e-02\tAbsError: 2.58939e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.31055e+02\tAbsError: 2.53177e+13\n", + " Region: \"zone_1\"\tRelError: 4.50617e-02\tAbsError: 3.23490e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.50617e-02\tAbsError: 3.23490e-02\n", + " Region: \"zone_3\"\tRelError: 3.31010e+02\tAbsError: 2.53177e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14071e+02\tAbsError: 1.67282e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.16893e+02\tAbsError: 8.58953e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54021e-02\tAbsError: 3.23491e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.94925e+03\tAbsError: 5.70592e+16\n", + " Region: \"zone_1\"\tRelError: 1.68789e+02\tAbsError: 8.03338e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68789e+02\tAbsError: 8.03338e-02\n", + " Region: \"zone_3\"\tRelError: 2.78046e+03\tAbsError: 5.70592e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.37175e+01\tAbsError: 3.26918e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.76645e+03\tAbsError: 2.43673e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.95175e-01\tAbsError: 8.03338e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.54688e+01\tAbsError: 7.28460e+16\n", + " Region: \"zone_1\"\tRelError: 4.05779e+00\tAbsError: 7.88298e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.05779e+00\tAbsError: 7.88298e-02\n", + " Region: \"zone_3\"\tRelError: 2.14110e+01\tAbsError: 7.28460e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.78884e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.18413e+01\tAbsError: 3.49576e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.69762e-01\tAbsError: 7.88298e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.97212e-04\tAbsError: 5.28965e+06\n", + " Region: \"zone_1\"\tRelError: 2.74725e-09\tAbsError: 3.88867e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74725e-09\tAbsError: 3.88867e-11\n", + " Region: \"zone_3\"\tRelError: 1.97210e-04\tAbsError: 5.28965e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.96560e-04\tAbsError: 1.88403e+06\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.49815e-07\tAbsError: 3.40562e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.55943e-11\tAbsError: 4.14441e-11\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 5.84987e+02\tAbsError: 3.31667e+12\n", + " Region: \"zone_1\"\tRelError: 3.70722e-02\tAbsError: 2.57858e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.70722e-02\tAbsError: 2.57858e-02\n", + " Region: \"zone_3\"\tRelError: 5.84950e+02\tAbsError: 3.31667e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.83958e+02\tAbsError: 1.18352e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.55224e-01\tAbsError: 2.13316e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.72734e-02\tAbsError: 2.57631e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.50753e+02\tAbsError: 8.15936e+11\n", + " Region: \"zone_1\"\tRelError: 2.19781e-02\tAbsError: 1.74093e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19781e-02\tAbsError: 1.74093e-02\n", + " Region: \"zone_3\"\tRelError: 1.50731e+02\tAbsError: 8.15936e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50624e+02\tAbsError: 1.19984e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.39476e-02\tAbsError: 6.95952e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24006e-02\tAbsError: 1.74094e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.07290e+02\tAbsError: 2.40888e+16\n", + " Region: \"zone_1\"\tRelError: 2.14527e+00\tAbsError: 7.64427e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.14527e+00\tAbsError: 7.64427e-02\n", + " Region: \"zone_3\"\tRelError: 2.05145e+02\tAbsError: 2.40888e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.20017e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.95921e+02\tAbsError: 1.20871e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23648e-01\tAbsError: 7.64428e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.21711e-13\tAbsError: 3.14873e+04\n", + " Region: \"zone_1\"\tRelError: 9.14172e-14\tAbsError: 1.14796e-16\n", + " Equation: \"PotentialEquation\"\tRelError: 9.14172e-14\tAbsError: 1.14796e-16\n", + " Region: \"zone_3\"\tRelError: 1.30294e-13\tAbsError: 3.14873e+04\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.60212e-14\tAbsError: 1.58694e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.70418e-15\tAbsError: 1.56178e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.25687e-14\tAbsError: 1.19262e-16\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.92851e+02\tAbsError: 2.89384e+16\n", + " Region: \"zone_1\"\tRelError: 1.14740e+00\tAbsError: 7.47705e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14740e+00\tAbsError: 7.47705e-02\n", + " Region: \"zone_3\"\tRelError: 2.91703e+02\tAbsError: 2.89384e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.26797e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.82502e+02\tAbsError: 1.62587e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01675e-01\tAbsError: 7.47705e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:57\u001b[0m.\u001b[1;36m462\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:57\u001b[0m.\u001b[1;36m462\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.20833333333333334\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 9.81687e-01\tAbsError: 7.37661e+11\n", + " Region: \"zone_1\"\tRelError: 2.81044e-04\tAbsError: 3.08580e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.81044e-04\tAbsError: 3.08580e-06\n", + " Region: \"zone_3\"\tRelError: 9.81406e-01\tAbsError: 7.37661e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.80950e-01\tAbsError: 1.46501e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.51588e-04\tAbsError: 5.91160e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.97537e-06\tAbsError: 3.17226e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.80848e+02\tAbsError: 1.10456e+16\n", + " Region: \"zone_1\"\tRelError: 4.53931e+00\tAbsError: 7.21036e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.53931e+00\tAbsError: 7.21036e-02\n", + " Region: \"zone_3\"\tRelError: 1.76309e+02\tAbsError: 1.10456e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.22278e+01\tAbsError: 2.44374e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.63899e+02\tAbsError: 8.60186e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82421e-01\tAbsError: 7.21036e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 9.32143e+01\tAbsError: 1.23916e+16\n", + " Region: \"zone_1\"\tRelError: 1.85187e+01\tAbsError: 7.02256e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85187e+01\tAbsError: 7.02256e-02\n", + " Region: \"zone_3\"\tRelError: 7.46956e+01\tAbsError: 1.23916e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.25956e+01\tAbsError: 6.77522e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.19341e+01\tAbsError: 5.61636e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65943e-01\tAbsError: 7.02257e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.04040e+00\tAbsError: 2.10389e+12\n", + " Region: \"zone_1\"\tRelError: 1.40276e-02\tAbsError: 1.11974e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40276e-02\tAbsError: 1.11974e-02\n", + " Region: \"zone_3\"\tRelError: 1.02637e+00\tAbsError: 2.10389e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.94847e-01\tAbsError: 2.84106e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.71950e-02\tAbsError: 1.81979e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43257e-02\tAbsError: 1.11975e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 7.70036e-05\tAbsError: 2.07098e+06\n", + " Region: \"zone_1\"\tRelError: 8.41736e-10\tAbsError: 1.25497e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.41736e-10\tAbsError: 1.25497e-11\n", + " Region: \"zone_3\"\tRelError: 7.70028e-05\tAbsError: 2.07098e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69590e-05\tAbsError: 5.09430e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.37439e-08\tAbsError: 1.56155e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01100e-11\tAbsError: 1.29285e-11\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:57\u001b[0m.\u001b[1;36m951\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.2\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 4.45029e-01\tAbsError: 2.51715e+12\n", + " Region: \"zone_1\"\tRelError: 1.62807e-03\tAbsError: 1.83760e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62807e-03\tAbsError: 1.83760e-05\n", + " Region: \"zone_3\"\tRelError: 4.43401e-01\tAbsError: 2.51715e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.41371e-01\tAbsError: 8.04152e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.00240e-03\tAbsError: 1.71300e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83249e-05\tAbsError: 1.84337e-05\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 8.78638e+02\tAbsError: 2.94859e+15\n", + " Region: \"zone_1\"\tRelError: 2.84018e+00\tAbsError: 6.72141e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.84018e+00\tAbsError: 6.72141e-02\n", + " Region: \"zone_3\"\tRelError: 8.75798e+02\tAbsError: 2.94859e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.57596e+02\tAbsError: 1.73463e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.18056e+02\tAbsError: 1.21397e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46332e-01\tAbsError: 6.72141e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.58281e+03\tAbsError: 1.21837e+15\n", + " Region: \"zone_1\"\tRelError: 1.36885e+01\tAbsError: 6.50809e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36885e+01\tAbsError: 6.50809e-02\n", + " Region: \"zone_3\"\tRelError: 1.56912e+03\tAbsError: 1.21837e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.97257e+02\tAbsError: 8.33773e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.27173e+03\tAbsError: 3.84593e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32580e-01\tAbsError: 6.50809e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.10347e+01\tAbsError: 9.33666e+15\n", + " Region: \"zone_1\"\tRelError: 9.32699e+00\tAbsError: 4.26142e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.32699e+00\tAbsError: 4.26142e-02\n", + " Region: \"zone_3\"\tRelError: 1.70771e+00\tAbsError: 9.33666e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.07276e-01\tAbsError: 5.05102e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.07245e-01\tAbsError: 4.28564e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.31893e-02\tAbsError: 4.26142e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.72810e-04\tAbsError: 1.68937e+08\n", + " Region: \"zone_1\"\tRelError: 8.13209e-08\tAbsError: 1.07762e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 8.13209e-08\tAbsError: 1.07762e-09\n", + " Region: \"zone_3\"\tRelError: 1.72728e-04\tAbsError: 1.68937e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.71767e-04\tAbsError: 4.50513e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.59619e-07\tAbsError: 1.23886e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69289e-09\tAbsError: 1.09594e-09\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 8.47095e-13\tAbsError: 3.17846e+04\n", + " Region: \"zone_1\"\tRelError: 1.89137e-13\tAbsError: 1.13043e-16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89137e-13\tAbsError: 1.13043e-16\n", + " Region: \"zone_3\"\tRelError: 6.57957e-13\tAbsError: 3.17846e+04\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.94024e-13\tAbsError: 1.58952e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.50744e-14\tAbsError: 1.58894e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48859e-13\tAbsError: 1.13805e-16\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.82433e+02\tAbsError: 1.43454e+15\n", + " Region: \"zone_1\"\tRelError: 1.48090e+00\tAbsError: 5.91833e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48090e+00\tAbsError: 5.91833e-02\n", + " Region: \"zone_3\"\tRelError: 4.80952e+02\tAbsError: 1.43454e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.57272e+02\tAbsError: 8.66708e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.35743e+01\tAbsError: 5.67830e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05889e-01\tAbsError: 5.91833e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.86518e+00\tAbsError: 4.02662e+14\n", + " Region: \"zone_1\"\tRelError: 2.81960e-01\tAbsError: 3.27220e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.81960e-01\tAbsError: 3.27220e-02\n", + " Region: \"zone_3\"\tRelError: 1.58322e+00\tAbsError: 4.02662e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.13443e-01\tAbsError: 1.82808e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.09901e-01\tAbsError: 2.19855e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.98791e-02\tAbsError: 3.27220e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:58\u001b[0m.\u001b[1;36m489\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:58\u001b[0m.\u001b[1;36m489\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.20714285714285713\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Iteration: 0\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 3.21485e+01\tAbsError: 8.61846e+15\n", + " Region: \"zone_1\"\tRelError: 3.04717e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.04717e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.67686e+00\tAbsError: 8.61846e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94516e-01\tAbsError: 4.66248e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94484e-01\tAbsError: 3.95598e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.78603e-02\tAbsError: 4.09542e-02\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.42447e+03\tAbsError: 3.70580e+14\n", + " Region: \"zone_1\"\tRelError: 4.53729e-01\tAbsError: 6.16382e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.53729e-01\tAbsError: 6.16382e-02\n", + " Region: \"zone_3\"\tRelError: 9.42401e+03\tAbsError: 3.70580e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.61616e+01\tAbsError: 9.68714e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.39773e+03\tAbsError: 2.73708e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17913e-01\tAbsError: 6.16382e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.18212e+00\tAbsError: 5.40940e+13\n", + " Region: \"zone_1\"\tRelError: 4.50065e-02\tAbsError: 2.58606e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.50065e-02\tAbsError: 2.58606e-02\n", + " Region: \"zone_3\"\tRelError: 1.13712e+00\tAbsError: 5.40940e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.53826e-01\tAbsError: 3.02007e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.38163e-01\tAbsError: 2.38932e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.51291e-02\tAbsError: 2.58973e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.07800e+00\tAbsError: 3.45404e+14\n", + " Region: \"zone_1\"\tRelError: 5.44178e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.44178e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.53382e+00\tAbsError: 3.45404e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90662e-01\tAbsError: 1.56300e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.87478e-01\tAbsError: 1.89103e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.56802e-02\tAbsError: 3.07632e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.00096e+02\tAbsError: 3.25866e+14\n", + " Region: \"zone_1\"\tRelError: 2.42568e-01\tAbsError: 5.23282e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42568e-01\tAbsError: 5.23282e-02\n", + " Region: \"zone_3\"\tRelError: 3.99853e+02\tAbsError: 3.25866e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97144e+02\tAbsError: 2.25150e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.02625e+02\tAbsError: 1.00716e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.47475e-02\tAbsError: 5.23282e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.67376e+02\tAbsError: 5.27737e+14\n", + " Region: \"zone_1\"\tRelError: 4.70139e-01\tAbsError: 5.51934e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.70139e-01\tAbsError: 5.51934e-02\n", + " Region: \"zone_3\"\tRelError: 1.66906e+02\tAbsError: 5.27737e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.26954e+02\tAbsError: 3.23447e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.98575e+01\tAbsError: 2.04290e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.42599e-02\tAbsError: 5.51934e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.19813e+01\tAbsError: 9.23407e+15\n", + " Region: \"zone_1\"\tRelError: 1.02779e+01\tAbsError: 4.23835e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02779e+01\tAbsError: 4.23835e-02\n", + " Region: \"zone_3\"\tRelError: 1.70346e+00\tAbsError: 9.23407e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.05551e-01\tAbsError: 4.99552e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.05520e-01\tAbsError: 4.23855e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.23930e-02\tAbsError: 4.23835e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.47964e-01\tAbsError: 2.72816e+12\n", + " Region: \"zone_1\"\tRelError: 1.75691e-02\tAbsError: 1.17190e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75691e-02\tAbsError: 1.17190e-02\n", + " Region: \"zone_3\"\tRelError: 4.30394e-01\tAbsError: 2.72816e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.07313e-01\tAbsError: 1.74663e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.05231e-01\tAbsError: 9.81531e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78508e-02\tAbsError: 1.17190e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.11313e+00\tAbsError: 4.26791e+13\n", + " Region: \"zone_1\"\tRelError: 7.05940e-02\tAbsError: 2.58377e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.05940e-02\tAbsError: 2.58377e-02\n", + " Region: \"zone_3\"\tRelError: 1.04254e+00\tAbsError: 4.26791e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14646e-01\tAbsError: 2.38411e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.85599e-01\tAbsError: 1.88379e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22941e-02\tAbsError: 2.58015e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 9.63412e+03\tAbsError: 7.11539e+13\n", + " Region: \"zone_1\"\tRelError: 6.58173e-02\tAbsError: 4.42512e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.58173e-02\tAbsError: 4.42512e-02\n", + " Region: \"zone_3\"\tRelError: 9.63405e+03\tAbsError: 7.11539e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.27619e+02\tAbsError: 1.01552e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.30637e+03\tAbsError: 6.09987e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.62284e-02\tAbsError: 4.42513e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.45643e+02\tAbsError: 1.41192e+14\n", + " Region: \"zone_1\"\tRelError: 9.40268e-02\tAbsError: 4.76391e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.40268e-02\tAbsError: 4.76391e-02\n", + " Region: \"zone_3\"\tRelError: 6.45549e+02\tAbsError: 1.41192e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.67511e+02\tAbsError: 9.22825e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.77963e+02\tAbsError: 4.89099e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.43903e-02\tAbsError: 4.76391e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.12618e-01\tAbsError: 1.67703e+11\n", + " Region: \"zone_1\"\tRelError: 8.07019e-05\tAbsError: 1.19119e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.07019e-05\tAbsError: 1.19119e-06\n", + " Region: \"zone_3\"\tRelError: 1.12538e-01\tAbsError: 1.67703e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12411e-01\tAbsError: 5.81197e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24559e-04\tAbsError: 1.09583e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31628e-06\tAbsError: 1.26920e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.83480e-01\tAbsError: 2.88954e+12\n", + " Region: \"zone_1\"\tRelError: 1.35212e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35212e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.69958e-01\tAbsError: 2.88954e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88338e-01\tAbsError: 2.12977e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.78790e-02\tAbsError: 2.67656e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37417e-02\tAbsError: 9.16534e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.87614e+00\tAbsError: 3.94195e+14\n", + " Region: \"zone_1\"\tRelError: 2.99922e-01\tAbsError: 3.24492e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.99922e-01\tAbsError: 3.24492e-02\n", + " Region: \"zone_3\"\tRelError: 1.57621e+00\tAbsError: 3.94195e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.10160e-01\tAbsError: 1.78861e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.07263e-01\tAbsError: 2.15334e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.87924e-02\tAbsError: 3.24493e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.16512e+02\tAbsError: 9.24158e+13\n", + " Region: \"zone_1\"\tRelError: 7.94582e-02\tAbsError: 3.46606e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.94582e-02\tAbsError: 3.46606e-02\n", + " Region: \"zone_3\"\tRelError: 2.16432e+02\tAbsError: 9.24158e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04810e+02\tAbsError: 5.48422e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.15737e+01\tAbsError: 3.75736e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.86497e-02\tAbsError: 3.46607e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.75979e-06\tAbsError: 9.15943e+05\n", + " Region: \"zone_1\"\tRelError: 2.41515e-10\tAbsError: 4.07741e-12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41515e-10\tAbsError: 4.07741e-12\n", + " Region: \"zone_3\"\tRelError: 2.75955e-06\tAbsError: 9.15943e+05\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.75771e-06\tAbsError: 1.84364e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.83413e-09\tAbsError: 7.31579e+05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.05841e-12\tAbsError: 4.42587e-12\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.85209e+03\tAbsError: 3.15377e+13\n", + " Region: \"zone_1\"\tRelError: 5.58938e-02\tAbsError: 3.86842e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.58938e-02\tAbsError: 3.86842e-02\n", + " Region: \"zone_3\"\tRelError: 5.85204e+03\tAbsError: 3.15377e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.78253e+03\tAbsError: 8.91278e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.94521e+01\tAbsError: 2.26249e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.62456e-02\tAbsError: 3.86842e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:59\u001b[0m.\u001b[1;36m773\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:59\u001b[0m.\u001b[1;36m773\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.31666666666666665\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.16827e+00\tAbsError: 5.24298e+13\n", + " Region: \"zone_1\"\tRelError: 4.47125e-02\tAbsError: 2.58923e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.47125e-02\tAbsError: 2.58923e-02\n", + " Region: \"zone_3\"\tRelError: 1.12355e+00\tAbsError: 5.24298e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.48461e-01\tAbsError: 2.92951e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.30280e-01\tAbsError: 2.31347e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.48109e-02\tAbsError: 2.58991e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.38444e-02\tAbsError: 3.70458e+12\n", + " Region: \"zone_1\"\tRelError: 3.59871e-03\tAbsError: 2.71390e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59871e-03\tAbsError: 2.71390e-05\n", + " Region: \"zone_3\"\tRelError: 9.02457e-02\tAbsError: 3.70458e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.84320e-02\tAbsError: 1.19345e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.76575e-03\tAbsError: 2.51114e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.79561e-05\tAbsError: 2.71828e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.59514e+02\tAbsError: 2.50534e+13\n", + " Region: \"zone_1\"\tRelError: 4.08268e-02\tAbsError: 2.81019e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.08268e-02\tAbsError: 2.81019e-02\n", + " Region: \"zone_3\"\tRelError: 3.59473e+02\tAbsError: 2.50534e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.58860e+02\tAbsError: 1.45093e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.72615e-01\tAbsError: 1.05441e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.08214e-02\tAbsError: 2.81020e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.01135e+03\tAbsError: 1.36473e+13\n", + " Region: \"zone_1\"\tRelError: 3.79634e-02\tAbsError: 2.58868e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.79634e-02\tAbsError: 2.58868e-02\n", + " Region: \"zone_3\"\tRelError: 1.01132e+03\tAbsError: 1.36473e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00963e+03\tAbsError: 8.33029e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.64673e+00\tAbsError: 5.31702e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.81405e-02\tAbsError: 2.57846e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.96038e-05\tAbsError: 5.27330e+08\n", + " Region: \"zone_1\"\tRelError: 3.38320e-07\tAbsError: 2.80513e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.38320e-07\tAbsError: 2.80513e-09\n", + " Region: \"zone_3\"\tRelError: 4.92654e-05\tAbsError: 5.27330e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.82203e-05\tAbsError: 1.20057e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04006e-06\tAbsError: 4.07273e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 5.04648e-09\tAbsError: 2.84942e-09\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.34212e-01\tAbsError: 2.61245e+12\n", + " Region: \"zone_1\"\tRelError: 1.69568e-02\tAbsError: 1.13359e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69568e-02\tAbsError: 1.13359e-02\n", + " Region: \"zone_3\"\tRelError: 4.17255e-01\tAbsError: 2.61245e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.00635e-01\tAbsError: 1.65011e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.93911e-02\tAbsError: 9.62337e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72292e-02\tAbsError: 1.13359e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.80016e+00\tAbsError: 9.26520e+15\n", + " Region: \"zone_1\"\tRelError: 7.07643e+00\tAbsError: 4.26142e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.07643e+00\tAbsError: 4.26142e-02\n", + " Region: \"zone_3\"\tRelError: 1.72373e+00\tAbsError: 9.26520e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.07327e-01\tAbsError: 5.24812e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.07316e-01\tAbsError: 4.01709e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09088e-01\tAbsError: 4.26142e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:00\u001b[0m.\u001b[1;36m322\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:00\u001b[0m.\u001b[1;36m322\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.07850e+00\tAbsError: 1.70830e+12\n", + " Region: \"zone_1\"\tRelError: 1.83637e-02\tAbsError: 1.47172e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83637e-02\tAbsError: 1.47172e-02\n", + " Region: \"zone_3\"\tRelError: 1.06013e+00\tAbsError: 1.70830e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.97311e-01\tAbsError: 5.14807e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.40601e-02\tAbsError: 1.19349e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87632e-02\tAbsError: 1.47172e-02\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.22208e+00\tAbsError: 2.75802e+12\n", + " Region: \"zone_1\"\tRelError: 2.87771e-02\tAbsError: 2.26488e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.87771e-02\tAbsError: 2.26488e-02\n", + " Region: \"zone_3\"\tRelError: 1.19330e+00\tAbsError: 2.75802e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99833e-01\tAbsError: 1.67616e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.64198e-01\tAbsError: 1.08185e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.92713e-02\tAbsError: 2.26489e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.08767e-01\tAbsError: 9.15820e+10\n", + " Region: \"zone_1\"\tRelError: 3.50074e-06\tAbsError: 2.32618e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 3.50074e-06\tAbsError: 2.32618e-07\n", + " Region: \"zone_3\"\tRelError: 1.08764e-01\tAbsError: 9.15820e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.08683e-01\tAbsError: 2.45142e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.10349e-05\tAbsError: 8.91305e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.11010e-07\tAbsError: 2.47753e-07\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 6.03578e-01\tAbsError: 1.20875e+12\n", + " Region: \"zone_1\"\tRelError: 6.45299e-04\tAbsError: 7.15824e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.45299e-04\tAbsError: 7.15824e-06\n", + " Region: \"zone_3\"\tRelError: 6.02933e-01\tAbsError: 1.20875e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.02052e-01\tAbsError: 3.27309e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.69519e-04\tAbsError: 8.81446e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13066e-05\tAbsError: 7.27175e-06\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 8.97893e-01\tAbsError: 7.55600e+11\n", + " Region: \"zone_1\"\tRelError: 1.29308e-04\tAbsError: 2.23218e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29308e-04\tAbsError: 2.23218e-06\n", + " Region: \"zone_3\"\tRelError: 8.97763e-01\tAbsError: 7.55600e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.96369e-01\tAbsError: 1.03886e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.39021e-03\tAbsError: 6.51714e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.72140e-06\tAbsError: 2.34576e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.02057e+00\tAbsError: 3.92740e+14\n", + " Region: \"zone_1\"\tRelError: 4.23022e-01\tAbsError: 3.27220e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.23022e-01\tAbsError: 3.27220e-02\n", + " Region: \"zone_3\"\tRelError: 1.59755e+00\tAbsError: 3.92740e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.13652e-01\tAbsError: 2.06183e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.10105e-01\tAbsError: 1.86557e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.37891e-02\tAbsError: 3.27220e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.04952e-04\tAbsError: 1.41961e+07\n", + " Region: \"zone_1\"\tRelError: 1.02048e-08\tAbsError: 1.35544e-10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02048e-08\tAbsError: 1.35544e-10\n", + " Region: \"zone_3\"\tRelError: 1.04942e-04\tAbsError: 1.41961e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04766e-04\tAbsError: 6.03537e+06\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.75523e-07\tAbsError: 8.16076e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19763e-10\tAbsError: 1.41360e-10\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.64184e-07\tAbsError: 6.99685e+04\n", + " Region: \"zone_1\"\tRelError: 1.53583e-11\tAbsError: 2.11293e-13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53583e-11\tAbsError: 2.11293e-13\n", + " Region: \"zone_3\"\tRelError: 5.64169e-07\tAbsError: 6.99685e+04\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.64107e-07\tAbsError: 1.79086e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.20585e-11\tAbsError: 5.20599e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.03557e-13\tAbsError: 2.20449e-13\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 6.66959e-05\tAbsError: 3.18899e+06\n", + " Region: \"zone_1\"\tRelError: 7.45090e-10\tAbsError: 1.97675e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.45090e-10\tAbsError: 1.97675e-11\n", + " Region: \"zone_3\"\tRelError: 6.66952e-05\tAbsError: 3.18899e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.66668e-05\tAbsError: 1.78142e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.83350e-08\tAbsError: 3.01085e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.11360e-11\tAbsError: 2.08037e-11\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.62677e+00\tAbsError: 8.55868e+15\n", + " Region: \"zone_1\"\tRelError: 3.93566e+00\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.93566e+00\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.69111e+00\tAbsError: 8.55868e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94568e-01\tAbsError: 4.83229e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94557e-01\tAbsError: 3.72639e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01989e-01\tAbsError: 4.09542e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:01\u001b[0m.\u001b[1;36m044\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.20625\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:01\u001b[0m.\u001b[1;36m044\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:01\u001b[0m.\u001b[1;36m044\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.3142857142857143\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.20591e+00\tAbsError: 3.39308e+13\n", + " Region: \"zone_1\"\tRelError: 5.60532e-02\tAbsError: 2.58742e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.60532e-02\tAbsError: 2.58742e-02\n", + " Region: \"zone_3\"\tRelError: 1.14986e+00\tAbsError: 3.39308e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.53907e-01\tAbsError: 2.17210e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.39740e-01\tAbsError: 1.22098e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.62087e-02\tAbsError: 2.58980e-02\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.88658e-13\tAbsError: 3.08154e+04\n", + " Region: \"zone_1\"\tRelError: 8.30400e-14\tAbsError: 1.14869e-16\n", + " Equation: \"PotentialEquation\"\tRelError: 8.30400e-14\tAbsError: 1.14869e-16\n", + " Region: \"zone_3\"\tRelError: 1.05618e-13\tAbsError: 3.08154e+04\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.97303e-14\tAbsError: 1.58947e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24995e-15\tAbsError: 1.49207e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.46374e-14\tAbsError: 1.12518e-16\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:01\u001b[0m.\u001b[1;36m245\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.2\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.54174e-01\tAbsError: 2.63999e+12\n", + " Region: \"zone_1\"\tRelError: 2.16661e-02\tAbsError: 1.17190e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16661e-02\tAbsError: 1.17190e-02\n", + " Region: \"zone_3\"\tRelError: 4.32508e-01\tAbsError: 2.63999e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.06955e-01\tAbsError: 1.55437e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03619e-01\tAbsError: 1.08561e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19328e-02\tAbsError: 1.17190e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.68467e+00\tAbsError: 3.35446e+14\n", + " Region: \"zone_1\"\tRelError: 1.36557e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36557e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.54812e+00\tAbsError: 3.35446e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90679e-01\tAbsError: 1.72457e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.87899e-01\tAbsError: 1.62989e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.95382e-02\tAbsError: 3.07632e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.28470e+01\tAbsError: 9.15711e+15\n", + " Region: \"zone_1\"\tRelError: 1.11470e+01\tAbsError: 4.22091e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11470e+01\tAbsError: 4.22091e-02\n", + " Region: \"zone_3\"\tRelError: 1.70000e+00\tAbsError: 9.15711e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.04237e-01\tAbsError: 4.95388e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.04206e-01\tAbsError: 4.20323e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.15525e-02\tAbsError: 4.22091e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.73208e+00\tAbsError: 9.16435e+15\n", + " Region: \"zone_1\"\tRelError: 6.01267e+00\tAbsError: 4.23835e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.01267e+00\tAbsError: 4.23835e-02\n", + " Region: \"zone_3\"\tRelError: 1.71942e+00\tAbsError: 9.16435e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.05602e-01\tAbsError: 5.18862e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.05591e-01\tAbsError: 3.97573e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08224e-01\tAbsError: 4.23835e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.12470e-01\tAbsError: 2.41978e+11\n", + " Region: \"zone_1\"\tRelError: 3.41928e-05\tAbsError: 3.25966e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 3.41928e-05\tAbsError: 3.25966e-07\n", + " Region: \"zone_3\"\tRelError: 1.12436e-01\tAbsError: 2.41978e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12179e-01\tAbsError: 1.55249e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.56546e-04\tAbsError: 2.26453e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.79208e-07\tAbsError: 3.44024e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.21485e+01\tAbsError: 8.61846e+15\n", + " Region: \"zone_1\"\tRelError: 3.04717e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.04717e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.67686e+00\tAbsError: 8.61846e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94516e-01\tAbsError: 4.66248e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94484e-01\tAbsError: 3.95598e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.78603e-02\tAbsError: 4.09542e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.10405e+00\tAbsError: 2.84626e+13\n", + " Region: \"zone_1\"\tRelError: 5.09442e-02\tAbsError: 2.58970e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.09442e-02\tAbsError: 2.58970e-02\n", + " Region: \"zone_3\"\tRelError: 1.05311e+00\tAbsError: 2.84626e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14915e-01\tAbsError: 1.81960e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.86897e-01\tAbsError: 1.02666e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.12979e-02\tAbsError: 2.58565e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.88714e+00\tAbsError: 3.87948e+14\n", + " Region: \"zone_1\"\tRelError: 3.15624e-01\tAbsError: 3.22432e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.15624e-01\tAbsError: 3.22432e-02\n", + " Region: \"zone_3\"\tRelError: 1.57151e+00\tAbsError: 3.87948e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.07930e-01\tAbsError: 1.75972e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.04835e-01\tAbsError: 2.11976e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.87474e-02\tAbsError: 3.22432e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.48978e-07\tAbsError: 3.61558e+05\n", + " Region: \"zone_1\"\tRelError: 1.68628e-12\tAbsError: 3.44674e-13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68628e-12\tAbsError: 3.44674e-13\n", + " Region: \"zone_3\"\tRelError: 4.48977e-07\tAbsError: 3.61558e+05\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.48424e-07\tAbsError: 1.54412e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.51743e-10\tAbsError: 3.46117e+05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.60385e-13\tAbsError: 3.52997e-13\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.92499e+00\tAbsError: 3.84281e+14\n", + " Region: \"zone_1\"\tRelError: 3.34214e-01\tAbsError: 3.24492e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.34214e-01\tAbsError: 3.24492e-02\n", + " Region: \"zone_3\"\tRelError: 1.59078e+00\tAbsError: 3.84281e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.10494e-01\tAbsError: 2.01137e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.07227e-01\tAbsError: 1.83145e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.30565e-02\tAbsError: 3.24492e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.07800e+00\tAbsError: 3.45404e+14\n", + " Region: \"zone_1\"\tRelError: 5.44178e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.44178e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.53382e+00\tAbsError: 3.45404e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90662e-01\tAbsError: 1.56300e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.87478e-01\tAbsError: 1.89103e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.56802e-02\tAbsError: 3.07632e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:02\u001b[0m.\u001b[1;36m164\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:02\u001b[0m.\u001b[1;36m164\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.42500000000000004\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.15902e+00\tAbsError: 5.11241e+13\n", + " Region: \"zone_1\"\tRelError: 4.51307e-02\tAbsError: 2.58740e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.51307e-02\tAbsError: 2.58740e-02\n", + " Region: \"zone_3\"\tRelError: 1.11389e+00\tAbsError: 5.11241e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.44316e-01\tAbsError: 2.85584e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.25056e-01\tAbsError: 2.25657e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.45193e-02\tAbsError: 2.58647e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.87738e-01\tAbsError: 1.50257e+12\n", + " Region: \"zone_1\"\tRelError: 1.63299e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63299e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.71408e-01\tAbsError: 1.50257e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88723e-01\tAbsError: 2.92089e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.61472e-02\tAbsError: 1.21048e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65380e-02\tAbsError: 9.16534e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.19211e+00\tAbsError: 3.32532e+13\n", + " Region: \"zone_1\"\tRelError: 5.53890e-02\tAbsError: 2.58920e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.53890e-02\tAbsError: 2.58920e-02\n", + " Region: \"zone_3\"\tRelError: 1.13672e+00\tAbsError: 3.32532e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.48642e-01\tAbsError: 2.13165e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.32451e-01\tAbsError: 1.19367e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.56280e-02\tAbsError: 2.58962e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.23439e-01\tAbsError: 2.48858e+12\n", + " Region: \"zone_1\"\tRelError: 1.65047e-02\tAbsError: 1.10525e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65047e-02\tAbsError: 1.10525e-02\n", + " Region: \"zone_3\"\tRelError: 4.06934e-01\tAbsError: 2.48858e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.94927e-01\tAbsError: 1.39921e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.52365e-02\tAbsError: 1.08937e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67704e-02\tAbsError: 1.10525e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.11313e+00\tAbsError: 4.26791e+13\n", + " Region: \"zone_1\"\tRelError: 7.05940e-02\tAbsError: 2.58377e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.05940e-02\tAbsError: 2.58377e-02\n", + " Region: \"zone_3\"\tRelError: 1.04254e+00\tAbsError: 4.26791e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14646e-01\tAbsError: 2.38411e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.85599e-01\tAbsError: 1.88379e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22941e-02\tAbsError: 2.58015e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.96849e-02\tAbsError: 2.07362e+12\n", + " Region: \"zone_1\"\tRelError: 7.02885e-04\tAbsError: 1.90198e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.02885e-04\tAbsError: 1.90198e-05\n", + " Region: \"zone_3\"\tRelError: 8.89820e-02\tAbsError: 2.07362e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.78375e-02\tAbsError: 8.90891e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10276e-03\tAbsError: 1.18273e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.17313e-05\tAbsError: 1.96984e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.19960e+00\tAbsError: 9.13325e+15\n", + " Region: \"zone_1\"\tRelError: 2.46103e+00\tAbsError: 4.26142e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.46103e+00\tAbsError: 4.26142e-02\n", + " Region: \"zone_3\"\tRelError: 1.73857e+00\tAbsError: 9.13325e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.07329e-01\tAbsError: 5.34387e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.07315e-01\tAbsError: 3.78938e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23925e-01\tAbsError: 4.26142e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.39831e-01\tAbsError: 2.55802e+12\n", + " Region: \"zone_1\"\tRelError: 2.08443e-02\tAbsError: 1.13359e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08443e-02\tAbsError: 1.13359e-02\n", + " Region: \"zone_3\"\tRelError: 4.18986e-01\tAbsError: 2.55802e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.00015e-01\tAbsError: 1.46829e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.78664e-02\tAbsError: 1.08972e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.11047e-02\tAbsError: 1.13359e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.06933e-01\tAbsError: 5.18671e+11\n", + " Region: \"zone_1\"\tRelError: 3.54917e-04\tAbsError: 4.66744e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.54917e-04\tAbsError: 4.66744e-06\n", + " Region: \"zone_3\"\tRelError: 1.06578e-01\tAbsError: 5.18671e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06131e-01\tAbsError: 2.20799e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.37889e-04\tAbsError: 2.97871e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.78698e-06\tAbsError: 4.85813e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.83480e-01\tAbsError: 2.88954e+12\n", + " Region: \"zone_1\"\tRelError: 1.35212e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35212e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.69958e-01\tAbsError: 2.88954e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88338e-01\tAbsError: 2.12977e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.78790e-02\tAbsError: 2.67656e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37417e-02\tAbsError: 9.16534e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.40982e-05\tAbsError: 1.92019e+08\n", + " Region: \"zone_1\"\tRelError: 4.03285e-08\tAbsError: 1.17477e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.03285e-08\tAbsError: 1.17477e-09\n", + " Region: \"zone_3\"\tRelError: 3.40579e-05\tAbsError: 1.92019e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.36060e-05\tAbsError: 5.55442e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.49187e-07\tAbsError: 1.36475e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67835e-09\tAbsError: 1.26430e-09\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.71932e+00\tAbsError: 3.84693e+14\n", + " Region: \"zone_1\"\tRelError: 1.01771e-01\tAbsError: 3.27220e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01771e-01\tAbsError: 3.27220e-02\n", + " Region: \"zone_3\"\tRelError: 1.61755e+00\tAbsError: 3.84693e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.13531e-01\tAbsError: 2.43732e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.10807e-01\tAbsError: 1.40961e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.32090e-02\tAbsError: 3.27220e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:03\u001b[0m.\u001b[1;36m095\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.4\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.08419e-01\tAbsError: 1.78582e+11\n", + " Region: \"zone_1\"\tRelError: 4.38975e-05\tAbsError: 5.32125e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 4.38975e-05\tAbsError: 5.32125e-07\n", + " Region: \"zone_3\"\tRelError: 1.08375e-01\tAbsError: 1.78582e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.08198e-01\tAbsError: 2.44620e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.75328e-04\tAbsError: 1.54120e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21401e-06\tAbsError: 5.53297e-07\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.38444e-02\tAbsError: 3.70458e+12\n", + " Region: \"zone_1\"\tRelError: 3.59871e-03\tAbsError: 2.71390e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59871e-03\tAbsError: 2.71390e-05\n", + " Region: \"zone_3\"\tRelError: 9.02457e-02\tAbsError: 3.70458e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.84320e-02\tAbsError: 1.19345e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.76575e-03\tAbsError: 2.51114e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.79561e-05\tAbsError: 2.71828e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.24334e+00\tAbsError: 5.69750e+13\n", + " Region: \"zone_1\"\tRelError: 7.33683e-02\tAbsError: 2.58826e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.33683e-02\tAbsError: 2.58826e-02\n", + " Region: \"zone_3\"\tRelError: 1.16997e+00\tAbsError: 5.69750e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.53959e-01\tAbsError: 4.18873e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.42390e-01\tAbsError: 1.50877e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.36175e-02\tAbsError: 2.58826e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.11708e-05\tAbsError: 9.26273e+06\n", + " Region: \"zone_1\"\tRelError: 4.48579e-09\tAbsError: 6.49167e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.48579e-09\tAbsError: 6.49167e-11\n", + " Region: \"zone_3\"\tRelError: 1.11663e-05\tAbsError: 9.26273e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.11195e-05\tAbsError: 3.00525e+06\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.66737e-08\tAbsError: 6.25748e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25761e-10\tAbsError: 6.95491e-11\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:03\u001b[0m.\u001b[1;36m456\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.3125\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.56244e+00\tAbsError: 8.45570e+15\n", + " Region: \"zone_1\"\tRelError: 3.85573e+00\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85573e+00\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.70670e+00\tAbsError: 8.45570e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94571e-01\tAbsError: 4.92914e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94557e-01\tAbsError: 3.52655e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17574e-01\tAbsError: 4.09542e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.30803e-06\tAbsError: 1.39215e+05\n", + " Region: \"zone_1\"\tRelError: 4.09874e-11\tAbsError: 4.86456e-13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.09874e-11\tAbsError: 4.86456e-13\n", + " Region: \"zone_3\"\tRelError: 1.30799e-06\tAbsError: 1.39215e+05\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.30706e-06\tAbsError: 2.54601e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.20349e-10\tAbsError: 1.13755e+05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14721e-12\tAbsError: 5.00050e-13\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.96038e-05\tAbsError: 5.27329e+08\n", + " Region: \"zone_1\"\tRelError: 3.38319e-07\tAbsError: 2.80513e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.38319e-07\tAbsError: 2.80513e-09\n", + " Region: \"zone_3\"\tRelError: 4.92654e-05\tAbsError: 5.27329e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.82203e-05\tAbsError: 1.20057e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04006e-06\tAbsError: 4.07273e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 5.04648e-09\tAbsError: 2.84942e-09\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:03\u001b[0m.\u001b[1;36m734\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:03\u001b[0m.\u001b[1;36m734\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.4214285714285714\u001b[0m \n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.67898e-01\tAbsError: 7.04138e+12\n", + " Region: \"zone_1\"\tRelError: 2.81523e-02\tAbsError: 1.17190e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.81523e-02\tAbsError: 1.17190e-02\n", + " Region: \"zone_3\"\tRelError: 4.39746e-01\tAbsError: 7.04138e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.06769e-01\tAbsError: 2.74850e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04598e-01\tAbsError: 4.29289e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83778e-02\tAbsError: 1.17190e-02\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:03\u001b[0m.\u001b[1;36m755\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: \u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:03\u001b[0m.\u001b[1;36m755\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.67739e+00\tAbsError: 3.26551e+14\n", + " Region: \"zone_1\"\tRelError: 1.13651e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13651e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.56374e+00\tAbsError: 3.26551e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91179e-01\tAbsError: 1.98410e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.87607e-01\tAbsError: 1.28141e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.49517e-02\tAbsError: 3.07632e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.10811e+00\tAbsError: 9.08870e+15\n", + " Region: \"zone_1\"\tRelError: 5.39249e+00\tAbsError: 4.22091e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.39249e+00\tAbsError: 4.22091e-02\n", + " Region: \"zone_3\"\tRelError: 1.71562e+00\tAbsError: 9.08870e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.04288e-01\tAbsError: 5.14403e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.04277e-01\tAbsError: 3.94467e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07055e-01\tAbsError: 4.22091e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.13460e-01\tAbsError: 6.89826e+11\n", + " Region: \"zone_1\"\tRelError: 1.18399e-04\tAbsError: 6.54909e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18399e-04\tAbsError: 6.54909e-06\n", + " Region: \"zone_3\"\tRelError: 1.13342e-01\tAbsError: 6.89826e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12681e-01\tAbsError: 3.53309e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.39335e-04\tAbsError: 3.36517e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16295e-05\tAbsError: 7.19104e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.13583e+00\tAbsError: 3.35166e+13\n", + " Region: \"zone_1\"\tRelError: 6.49986e-02\tAbsError: 2.58787e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.49986e-02\tAbsError: 2.58787e-02\n", + " Region: \"zone_3\"\tRelError: 1.07083e+00\tAbsError: 3.35166e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14794e-01\tAbsError: 2.31889e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.90894e-01\tAbsError: 1.03277e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.51440e-02\tAbsError: 2.58923e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.42127e-05\tAbsError: 2.61598e+07\n", + " Region: \"zone_1\"\tRelError: 3.82398e-09\tAbsError: 2.37448e-10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.82398e-09\tAbsError: 2.37448e-10\n", + " Region: \"zone_3\"\tRelError: 1.42089e-05\tAbsError: 2.61598e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.41120e-05\tAbsError: 1.42128e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.60310e-08\tAbsError: 1.19470e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 8.29382e-10\tAbsError: 2.71915e-10\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.87280e+00\tAbsError: 3.78063e+14\n", + " Region: \"zone_1\"\tRelError: 2.87477e-01\tAbsError: 3.22432e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.87477e-01\tAbsError: 3.22432e-02\n", + " Region: \"zone_3\"\tRelError: 1.58533e+00\tAbsError: 3.78063e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.08269e-01\tAbsError: 1.97458e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.04792e-01\tAbsError: 1.80605e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.22654e-02\tAbsError: 3.22432e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.97996e+00\tAbsError: 9.03690e+15\n", + " Region: \"zone_1\"\tRelError: 2.24677e+00\tAbsError: 4.23835e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24677e+00\tAbsError: 4.23835e-02\n", + " Region: \"zone_3\"\tRelError: 1.73319e+00\tAbsError: 9.03690e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.05604e-01\tAbsError: 5.28487e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.05590e-01\tAbsError: 3.75204e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21995e-01\tAbsError: 4.23835e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:04\u001b[0m.\u001b[1;36m472\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:04\u001b[0m.\u001b[1;36m472\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5333333333333333\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.62677e+00\tAbsError: 8.55868e+15\n", + " Region: \"zone_1\"\tRelError: 3.93566e+00\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.93566e+00\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.69111e+00\tAbsError: 8.55868e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94568e-01\tAbsError: 4.83229e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94557e-01\tAbsError: 3.72639e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01989e-01\tAbsError: 4.09542e-02\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.97006e-01\tAbsError: 3.97798e+12\n", + " Region: \"zone_1\"\tRelError: 2.05644e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05644e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.76441e-01\tAbsError: 3.97798e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88505e-01\tAbsError: 1.01871e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.71832e-02\tAbsError: 2.95927e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07533e-02\tAbsError: 9.16534e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.71120e+00\tAbsError: 3.76250e+14\n", + " Region: \"zone_1\"\tRelError: 1.01047e-01\tAbsError: 3.24492e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01047e-01\tAbsError: 3.24492e-02\n", + " Region: \"zone_3\"\tRelError: 1.61015e+00\tAbsError: 3.76250e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.10602e-01\tAbsError: 2.37048e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.07623e-01\tAbsError: 1.39202e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.19253e-02\tAbsError: 3.24493e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.18219e+00\tAbsError: 3.25905e+13\n", + " Region: \"zone_1\"\tRelError: 5.50731e-02\tAbsError: 2.58881e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.50731e-02\tAbsError: 2.58881e-02\n", + " Region: \"zone_3\"\tRelError: 1.12712e+00\tAbsError: 3.25905e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.44603e-01\tAbsError: 2.08693e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.27351e-01\tAbsError: 1.17212e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.51633e-02\tAbsError: 2.58974e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.68467e+00\tAbsError: 3.35446e+14\n", + " Region: \"zone_1\"\tRelError: 1.36557e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36557e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.54812e+00\tAbsError: 3.35446e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90679e-01\tAbsError: 1.72457e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.87899e-01\tAbsError: 1.62989e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.95382e-02\tAbsError: 3.07632e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.75905e-02\tAbsError: 6.14178e+11\n", + " Region: \"zone_1\"\tRelError: 1.87871e-04\tAbsError: 5.35919e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87871e-04\tAbsError: 5.35919e-06\n", + " Region: \"zone_3\"\tRelError: 8.74026e-02\tAbsError: 6.14178e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.70791e-02\tAbsError: 2.57149e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.08574e-04\tAbsError: 3.57029e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49985e-05\tAbsError: 5.65537e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.22827e+00\tAbsError: 5.37376e+13\n", + " Region: \"zone_1\"\tRelError: 7.15835e-02\tAbsError: 2.58629e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.15835e-02\tAbsError: 2.58629e-02\n", + " Region: \"zone_3\"\tRelError: 1.15669e+00\tAbsError: 5.37376e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.48602e-01\tAbsError: 3.94447e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.35622e-01\tAbsError: 1.42929e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.24649e-02\tAbsError: 2.58483e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.29005e-01\tAbsError: 2.53945e+12\n", + " Region: \"zone_1\"\tRelError: 2.02409e-02\tAbsError: 1.10525e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02409e-02\tAbsError: 1.10525e-02\n", + " Region: \"zone_3\"\tRelError: 4.08764e-01\tAbsError: 2.53945e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.94460e-01\tAbsError: 1.43263e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.38075e-02\tAbsError: 1.10682e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04965e-02\tAbsError: 1.10525e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.35717e+02\tAbsError: 9.03749e+15\n", + " Region: \"zone_1\"\tRelError: 1.33965e+02\tAbsError: 4.26142e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33965e+02\tAbsError: 4.26142e-02\n", + " Region: \"zone_3\"\tRelError: 1.75243e+00\tAbsError: 9.03749e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.07326e-01\tAbsError: 5.40486e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.07307e-01\tAbsError: 3.63263e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37792e-01\tAbsError: 4.26142e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.10405e+00\tAbsError: 2.84626e+13\n", + " Region: \"zone_1\"\tRelError: 5.09442e-02\tAbsError: 2.58970e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.09442e-02\tAbsError: 2.58970e-02\n", + " Region: \"zone_3\"\tRelError: 1.05311e+00\tAbsError: 2.84626e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14915e-01\tAbsError: 1.81960e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.86897e-01\tAbsError: 1.02666e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.12979e-02\tAbsError: 2.58565e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.95471e-06\tAbsError: 1.37438e+07\n", + " Region: \"zone_1\"\tRelError: 1.96051e-09\tAbsError: 6.30623e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96051e-09\tAbsError: 6.30623e-11\n", + " Region: \"zone_3\"\tRelError: 9.95275e-06\tAbsError: 1.37438e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.91827e-06\tAbsError: 3.21256e+06\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.43047e-08\tAbsError: 1.05312e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78389e-10\tAbsError: 6.72816e-11\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:05\u001b[0m.\u001b[1;36m405\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.5\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Iteration: 3\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + " Device: \"device\"\tRelError: 4.52390e-01\tAbsError: 6.45583e+12\n", + " Region: \"zone_1\"\tRelError: 2.69601e-02\tAbsError: 1.13359e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.69601e-02\tAbsError: 1.13359e-02\n", + " Region: \"zone_3\"\tRelError: 4.25430e-01\tAbsError: 6.45583e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.99644e-01\tAbsError: 2.39511e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.86014e-02\tAbsError: 4.06072e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.71842e-02\tAbsError: 1.13359e-02\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.05316e-01\tAbsError: 5.79540e+10\n", + " Region: \"zone_1\"\tRelError: 7.85176e-06\tAbsError: 1.71162e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 7.85176e-06\tAbsError: 1.71162e-07\n", + " Region: \"zone_3\"\tRelError: 1.05308e-01\tAbsError: 5.79540e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05226e-01\tAbsError: 5.43885e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.20943e-05\tAbsError: 5.25152e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.65925e-07\tAbsError: 1.77014e-07\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.33167e+00\tAbsError: 4.68608e+14\n", + " Region: \"zone_1\"\tRelError: 6.88547e-01\tAbsError: 3.27220e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.88547e-01\tAbsError: 3.27220e-02\n", + " Region: \"zone_3\"\tRelError: 1.64312e+00\tAbsError: 4.68608e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.14298e-01\tAbsError: 3.32999e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.10136e-01\tAbsError: 1.35609e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18685e-01\tAbsError: 3.27220e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.87738e-01\tAbsError: 1.50257e+12\n", + " Region: \"zone_1\"\tRelError: 1.63299e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63299e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.71408e-01\tAbsError: 1.50257e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88723e-01\tAbsError: 2.92089e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.61472e-02\tAbsError: 1.21048e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65380e-02\tAbsError: 9.16534e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.09153e-01\tAbsError: 6.52102e+11\n", + " Region: \"zone_1\"\tRelError: 1.28718e-04\tAbsError: 6.46805e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28718e-04\tAbsError: 6.46805e-06\n", + " Region: \"zone_3\"\tRelError: 1.09024e-01\tAbsError: 6.52102e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.08417e-01\tAbsError: 3.48257e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.86286e-04\tAbsError: 3.03845e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.10131e-05\tAbsError: 7.10532e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.94336e-07\tAbsError: 3.10240e+04\n", + " Region: \"zone_1\"\tRelError: 2.64468e-12\tAbsError: 8.09012e-14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64468e-12\tAbsError: 8.09012e-14\n", + " Region: \"zone_3\"\tRelError: 5.94333e-07\tAbsError: 3.10240e+04\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94222e-07\tAbsError: 1.55669e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10786e-10\tAbsError: 1.54571e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49149e-13\tAbsError: 8.55910e-14\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:05\u001b[0m.\u001b[1;36m882\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:05\u001b[0m.\u001b[1;36m882\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.41874999999999996\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.87556e+01\tAbsError: 8.34767e+15\n", + " Region: \"zone_1\"\tRelError: 6.70313e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.70313e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.72426e+00\tAbsError: 8.34767e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94570e-01\tAbsError: 4.96926e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94551e-01\tAbsError: 3.37841e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35138e-01\tAbsError: 4.09542e-02\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.83071e+00\tAbsError: 1.53197e+14\n", + " Region: \"zone_1\"\tRelError: 6.21775e-01\tAbsError: 2.56371e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.21775e-01\tAbsError: 2.56371e-02\n", + " Region: \"zone_3\"\tRelError: 1.20894e+00\tAbsError: 1.53197e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.54286e-01\tAbsError: 8.99731e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.51877e-01\tAbsError: 6.32239e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02774e-01\tAbsError: 2.58431e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.45285e-05\tAbsError: 1.94103e+07\n", + " Region: \"zone_1\"\tRelError: 2.89450e-09\tAbsError: 1.67720e-10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.89450e-09\tAbsError: 1.67720e-10\n", + " Region: \"zone_3\"\tRelError: 1.45256e-05\tAbsError: 1.94103e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.44344e-05\tAbsError: 1.03183e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.06255e-08\tAbsError: 9.09197e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.79572e-10\tAbsError: 1.93371e-10\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.96849e-02\tAbsError: 2.07362e+12\n", + " Region: \"zone_1\"\tRelError: 7.02885e-04\tAbsError: 1.90198e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.02885e-04\tAbsError: 1.90198e-05\n", + " Region: \"zone_3\"\tRelError: 8.89820e-02\tAbsError: 2.07362e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.78375e-02\tAbsError: 8.90891e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10276e-03\tAbsError: 1.18273e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.17313e-05\tAbsError: 1.96984e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:06\u001b[0m.\u001b[1;36m182\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:06\u001b[0m.\u001b[1;36m182\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5285714285714286\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.18244e+00\tAbsError: 3.45808e+14\n", + " Region: \"zone_1\"\tRelError: 5.95786e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95786e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.58666e+00\tAbsError: 3.45808e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91491e-01\tAbsError: 2.56450e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.87672e-01\tAbsError: 8.93573e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07491e-01\tAbsError: 3.07632e-02\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.07391e+00\tAbsError: 8.96454e+15\n", + " Region: \"zone_1\"\tRelError: 2.34478e+00\tAbsError: 4.22091e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34478e+00\tAbsError: 4.22091e-02\n", + " Region: \"zone_3\"\tRelError: 1.72912e+00\tAbsError: 8.96454e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.04290e-01\tAbsError: 5.24055e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.04276e-01\tAbsError: 3.72398e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20557e-01\tAbsError: 4.22091e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.40982e-05\tAbsError: 1.92019e+08\n", + " Region: \"zone_1\"\tRelError: 4.03284e-08\tAbsError: 1.17477e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.03284e-08\tAbsError: 1.17477e-09\n", + " Region: \"zone_3\"\tRelError: 3.40579e-05\tAbsError: 1.92019e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.36060e-05\tAbsError: 5.55442e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.49187e-07\tAbsError: 1.36475e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67835e-09\tAbsError: 1.26430e-09\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:06\u001b[0m.\u001b[1;36m509\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.4\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 2\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 1.19247e+00\tAbsError: 8.54805e+13\n", + " Region: \"zone_1\"\tRelError: 9.12229e-02\tAbsError: 2.58978e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.12229e-02\tAbsError: 2.58978e-02\n", + " Region: \"zone_3\"\tRelError: 1.10125e+00\tAbsError: 8.54805e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14822e-01\tAbsError: 5.48784e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.98551e-01\tAbsError: 3.06021e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.78742e-02\tAbsError: 2.58989e-02\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 9.07379e-01\tAbsError: 7.09930e+13\n", + " Region: \"zone_1\"\tRelError: 4.33630e-01\tAbsError: 1.17190e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.33630e-01\tAbsError: 1.17190e-02\n", + " Region: \"zone_3\"\tRelError: 4.73749e-01\tAbsError: 7.09930e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.05206e-01\tAbsError: 3.39039e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29527e-01\tAbsError: 3.70891e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.90150e-02\tAbsError: 1.17190e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.77164e+01\tAbsError: 8.93909e+15\n", + " Region: \"zone_1\"\tRelError: 2.59693e+01\tAbsError: 4.23835e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.59693e+01\tAbsError: 4.23835e-02\n", + " Region: \"zone_3\"\tRelError: 1.74706e+00\tAbsError: 8.93909e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.05602e-01\tAbsError: 5.34299e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.05583e-01\tAbsError: 3.59610e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35874e-01\tAbsError: 4.23835e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.70349e+00\tAbsError: 3.69951e+14\n", + " Region: \"zone_1\"\tRelError: 9.90112e-02\tAbsError: 3.22432e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.90112e-02\tAbsError: 3.22432e-02\n", + " Region: \"zone_3\"\tRelError: 1.60448e+00\tAbsError: 3.69951e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.08368e-01\tAbsError: 2.32085e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.05186e-01\tAbsError: 1.37866e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.09261e-02\tAbsError: 3.22432e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.72006e-01\tAbsError: 1.34673e+13\n", + " Region: \"zone_1\"\tRelError: 5.38023e-02\tAbsError: 8.38576e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.38023e-02\tAbsError: 8.38576e-05\n", + " Region: \"zone_3\"\tRelError: 1.18204e-01\tAbsError: 1.34673e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.11488e-01\tAbsError: 6.83755e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.33436e-03\tAbsError: 6.62974e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.82194e-04\tAbsError: 9.17770e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.52183e-01\tAbsError: 2.83225e+13\n", + " Region: \"zone_1\"\tRelError: 5.95279e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95279e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.92655e-01\tAbsError: 2.83225e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.85164e-01\tAbsError: 1.34603e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.99920e-02\tAbsError: 1.48622e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74993e-02\tAbsError: 9.16534e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.21707e+00\tAbsError: 5.14100e+13\n", + " Region: \"zone_1\"\tRelError: 7.05172e-02\tAbsError: 2.58330e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.05172e-02\tAbsError: 2.58330e-02\n", + " Region: \"zone_3\"\tRelError: 1.14655e+00\tAbsError: 5.14100e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.44586e-01\tAbsError: 3.76870e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.30328e-01\tAbsError: 1.37229e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.16401e-02\tAbsError: 2.58529e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.47389e+00\tAbsError: 4.49152e+14\n", + " Region: \"zone_1\"\tRelError: 8.38694e-01\tAbsError: 3.24492e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.38694e-01\tAbsError: 3.24492e-02\n", + " Region: \"zone_3\"\tRelError: 1.63520e+00\tAbsError: 4.49152e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.11302e-01\tAbsError: 3.21890e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.07074e-01\tAbsError: 1.27262e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16820e-01\tAbsError: 3.24492e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.56244e+00\tAbsError: 8.45570e+15\n", + " Region: \"zone_1\"\tRelError: 3.85573e+00\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85573e+00\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.70670e+00\tAbsError: 8.45570e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94571e-01\tAbsError: 4.92914e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94557e-01\tAbsError: 3.52655e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17574e-01\tAbsError: 4.09542e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.20842e-04\tAbsError: 2.15808e+10\n", + " Region: \"zone_1\"\tRelError: 1.03547e-04\tAbsError: 1.76087e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03547e-04\tAbsError: 1.76087e-07\n", + " Region: \"zone_3\"\tRelError: 2.17295e-04\tAbsError: 2.15808e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07574e-04\tAbsError: 1.44905e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.92433e-06\tAbsError: 7.09027e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 7.96777e-07\tAbsError: 1.90604e-07\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.52644e-02\tAbsError: 2.55837e+12\n", + " Region: \"zone_1\"\tRelError: 7.16041e-03\tAbsError: 2.30338e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.16041e-03\tAbsError: 2.30338e-05\n", + " Region: \"zone_3\"\tRelError: 8.81040e-02\tAbsError: 2.55837e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.71797e-02\tAbsError: 1.35830e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.38768e-04\tAbsError: 1.20006e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.54583e-05\tAbsError: 2.40500e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.47221e+00\tAbsError: 1.38206e+14\n", + " Region: \"zone_1\"\tRelError: 2.77597e-01\tAbsError: 2.57923e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.77597e-01\tAbsError: 2.57923e-02\n", + " Region: \"zone_3\"\tRelError: 1.19461e+00\tAbsError: 1.38206e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.48886e-01\tAbsError: 8.13987e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.44879e-01\tAbsError: 5.68069e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00850e-01\tAbsError: 2.58970e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.67739e+00\tAbsError: 3.26551e+14\n", + " Region: \"zone_1\"\tRelError: 1.13651e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13651e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.56374e+00\tAbsError: 3.26551e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91179e-01\tAbsError: 1.98410e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.87607e-01\tAbsError: 1.28141e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.49517e-02\tAbsError: 3.07632e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 9.98204e-10\tAbsError: 6.88449e+04\n", + " Region: \"zone_1\"\tRelError: 2.51168e-10\tAbsError: 4.66791e-13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51168e-10\tAbsError: 4.66791e-13\n", + " Region: \"zone_3\"\tRelError: 7.47037e-10\tAbsError: 6.88449e+04\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16501e-10\tAbsError: 4.91562e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.84705e-11\tAbsError: 1.96886e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06479e-12\tAbsError: 4.91347e-13\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:07\u001b[0m.\u001b[1;36m651\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:07\u001b[0m.\u001b[1;36m651\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6416666666666667\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Iteration: 3\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 4.40857e-01\tAbsError: 6.00505e+12\n", + " Region: \"zone_1\"\tRelError: 2.60893e-02\tAbsError: 1.10525e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.60893e-02\tAbsError: 1.10525e-02\n", + " Region: \"zone_3\"\tRelError: 4.14768e-01\tAbsError: 6.00505e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.94016e-01\tAbsError: 2.13559e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.44396e-02\tAbsError: 3.86946e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.63124e-02\tAbsError: 1.10525e-02\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.58292e-05\tAbsError: 4.59514e+08\n", + " Region: \"zone_1\"\tRelError: 9.81723e-07\tAbsError: 3.18909e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.81723e-07\tAbsError: 3.18909e-09\n", + " Region: \"zone_3\"\tRelError: 3.48474e-05\tAbsError: 4.59514e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.45053e-05\tAbsError: 3.33895e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.30263e-07\tAbsError: 1.25619e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18628e-08\tAbsError: 3.31754e-09\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.13583e+00\tAbsError: 3.35166e+13\n", + " Region: \"zone_1\"\tRelError: 6.49986e-02\tAbsError: 2.58787e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.49986e-02\tAbsError: 2.58787e-02\n", + " Region: \"zone_3\"\tRelError: 1.07083e+00\tAbsError: 3.35166e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14794e-01\tAbsError: 2.31889e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.90894e-01\tAbsError: 1.03277e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.51440e-02\tAbsError: 2.58923e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:07\u001b[0m.\u001b[1;36m859\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.6\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.79000e-01\tAbsError: 6.23803e+13\n", + " Region: \"zone_1\"\tRelError: 1.22093e-01\tAbsError: 1.13359e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22093e-01\tAbsError: 1.13359e-02\n", + " Region: \"zone_3\"\tRelError: 4.56906e-01\tAbsError: 6.23803e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.98027e-01\tAbsError: 2.99509e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.21690e-01\tAbsError: 3.24293e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.71902e-02\tAbsError: 1.13359e-02\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.06340e-01\tAbsError: 7.39211e+11\n", + " Region: \"zone_1\"\tRelError: 1.63325e-04\tAbsError: 7.71560e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63325e-04\tAbsError: 7.71560e-06\n", + " Region: \"zone_3\"\tRelError: 1.06177e-01\tAbsError: 7.39211e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05521e-01\tAbsError: 4.07148e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.31950e-04\tAbsError: 3.32064e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.43075e-05\tAbsError: 8.33799e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.97006e-01\tAbsError: 3.97798e+12\n", + " Region: \"zone_1\"\tRelError: 2.05644e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05644e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.76441e-01\tAbsError: 3.97798e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88505e-01\tAbsError: 1.01871e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.71832e-02\tAbsError: 2.95927e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07533e-02\tAbsError: 9.16534e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.25793e+02\tAbsError: 9.01354e+15\n", + " Region: \"zone_1\"\tRelError: 4.23991e+02\tAbsError: 4.26142e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.23991e+02\tAbsError: 4.26142e-02\n", + " Region: \"zone_3\"\tRelError: 1.80182e+00\tAbsError: 9.01354e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.07310e-01\tAbsError: 5.29382e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.07259e-01\tAbsError: 3.71973e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87247e-01\tAbsError: 4.26142e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.29396e-01\tAbsError: 1.11086e+13\n", + " Region: \"zone_1\"\tRelError: 1.63271e-02\tAbsError: 7.10138e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63271e-02\tAbsError: 7.10138e-05\n", + " Region: \"zone_3\"\tRelError: 1.13069e-01\tAbsError: 1.11086e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07610e-01\tAbsError: 5.70070e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.13801e-03\tAbsError: 5.40789e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.20942e-04\tAbsError: 7.85800e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.78346e-05\tAbsError: 2.12339e+07\n", + " Region: \"zone_1\"\tRelError: 2.08951e-09\tAbsError: 1.24570e-10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08951e-09\tAbsError: 1.24570e-10\n", + " Region: \"zone_3\"\tRelError: 1.78325e-05\tAbsError: 2.12339e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.77106e-05\tAbsError: 9.80122e+06\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.21506e-07\tAbsError: 1.14326e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 4.37674e-10\tAbsError: 1.47768e-10\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:08\u001b[0m.\u001b[1;36m417\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.525\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.75905e-02\tAbsError: 6.14178e+11\n", + " Region: \"zone_1\"\tRelError: 1.87871e-04\tAbsError: 5.35919e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87871e-04\tAbsError: 5.35919e-06\n", + " Region: \"zone_3\"\tRelError: 8.74026e-02\tAbsError: 6.14178e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.70791e-02\tAbsError: 2.57149e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.08574e-04\tAbsError: 3.57029e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49985e-05\tAbsError: 5.65537e-06\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.45236e+01\tAbsError: 8.31884e+15\n", + " Region: \"zone_1\"\tRelError: 1.27753e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27753e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.74827e+00\tAbsError: 8.31884e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94561e-01\tAbsError: 4.96691e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94525e-01\tAbsError: 3.35193e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59186e-01\tAbsError: 4.09542e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.98520e-04\tAbsError: 1.42293e+10\n", + " Region: \"zone_1\"\tRelError: 2.60200e-05\tAbsError: 1.21066e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.60200e-05\tAbsError: 1.21066e-07\n", + " Region: \"zone_3\"\tRelError: 1.72500e-04\tAbsError: 1.42293e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.66144e-04\tAbsError: 9.64960e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.81290e-06\tAbsError: 4.57971e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.42901e-07\tAbsError: 1.32074e-07\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.09319e+00\tAbsError: 1.95003e+15\n", + " Region: \"zone_1\"\tRelError: 2.42608e+00\tAbsError: 3.27220e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42608e+00\tAbsError: 3.27220e-02\n", + " Region: \"zone_3\"\tRelError: 1.66711e+00\tAbsError: 1.95003e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.14648e-01\tAbsError: 1.08906e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.00229e-01\tAbsError: 8.60967e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52238e-01\tAbsError: 3.27220e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.95471e-06\tAbsError: 1.37438e+07\n", + " Region: \"zone_1\"\tRelError: 1.96050e-09\tAbsError: 6.30624e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96050e-09\tAbsError: 6.30624e-11\n", + " Region: \"zone_3\"\tRelError: 9.95275e-06\tAbsError: 1.37438e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.91827e-06\tAbsError: 3.21255e+06\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.43047e-08\tAbsError: 1.05312e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78389e-10\tAbsError: 6.72817e-11\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.91465e+00\tAbsError: 8.82588e+14\n", + " Region: \"zone_1\"\tRelError: 3.03324e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.03324e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.61133e+00\tAbsError: 8.82588e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91758e-01\tAbsError: 5.05615e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83634e-01\tAbsError: 3.76973e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35939e-01\tAbsError: 3.07632e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.53033e+01\tAbsError: 8.86526e+15\n", + " Region: \"zone_1\"\tRelError: 1.35603e+01\tAbsError: 4.22091e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35603e+01\tAbsError: 4.22091e-02\n", + " Region: \"zone_3\"\tRelError: 1.74298e+00\tAbsError: 8.86526e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.04288e-01\tAbsError: 5.29650e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.04269e-01\tAbsError: 3.56876e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34425e-01\tAbsError: 4.22091e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:08\u001b[0m.\u001b[1;36m931\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.5\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 4.55085e+00\tAbsError: 1.52020e+15\n", + " Region: \"zone_1\"\tRelError: 3.34328e+00\tAbsError: 2.57301e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.34328e+00\tAbsError: 2.57301e-02\n", + " Region: \"zone_3\"\tRelError: 1.20757e+00\tAbsError: 1.52020e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.57600e-01\tAbsError: 6.59311e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.06886e-01\tAbsError: 8.60885e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43086e-01\tAbsError: 2.58820e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.17968e-10\tAbsError: 3.68902e+04\n", + " Region: \"zone_1\"\tRelError: 4.10813e-11\tAbsError: 2.01096e-13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.10813e-11\tAbsError: 2.01096e-13\n", + " Region: \"zone_3\"\tRelError: 3.76886e-10\tAbsError: 3.68902e+04\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.64075e-10\tAbsError: 2.06737e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.19115e-11\tAbsError: 1.62165e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.99293e-13\tAbsError: 2.18109e-13\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.95950e+00\tAbsError: 4.34971e+14\n", + " Region: \"zone_1\"\tRelError: 3.29888e-01\tAbsError: 3.22432e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.29888e-01\tAbsError: 3.22432e-02\n", + " Region: \"zone_3\"\tRelError: 1.62961e+00\tAbsError: 4.34971e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.09020e-01\tAbsError: 3.13542e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.04723e-01\tAbsError: 1.21429e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15866e-01\tAbsError: 3.22432e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.34467e+00\tAbsError: 5.44154e+14\n", + " Region: \"zone_1\"\tRelError: 2.20632e-01\tAbsError: 2.58931e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20632e-01\tAbsError: 2.58931e-02\n", + " Region: \"zone_3\"\tRelError: 1.12404e+00\tAbsError: 5.44154e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.17234e-01\tAbsError: 2.66383e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.89208e-01\tAbsError: 2.77771e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17596e-01\tAbsError: 2.58999e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:09\u001b[0m.\u001b[1;36m267\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:09\u001b[0m.\u001b[1;36m267\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6357142857142857\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 9.15949e-01\tAbsError: 7.10976e+14\n", + " Region: \"zone_1\"\tRelError: 3.77162e-01\tAbsError: 1.17190e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.77162e-01\tAbsError: 1.17190e-02\n", + " Region: \"zone_3\"\tRelError: 5.38787e-01\tAbsError: 7.10976e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.04705e-01\tAbsError: 3.54664e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.83282e-01\tAbsError: 3.56312e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.07995e-02\tAbsError: 1.17190e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.87556e+01\tAbsError: 8.34767e+15\n", + " Region: \"zone_1\"\tRelError: 6.70313e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.70313e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.72426e+00\tAbsError: 8.34767e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94570e-01\tAbsError: 4.96926e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94551e-01\tAbsError: 3.37841e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35138e-01\tAbsError: 4.09542e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.29903e+00\tAbsError: 1.28270e+14\n", + " Region: \"zone_1\"\tRelError: 1.15748e-01\tAbsError: 2.56301e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15748e-01\tAbsError: 2.56301e-02\n", + " Region: \"zone_3\"\tRelError: 1.18328e+00\tAbsError: 1.28270e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.44766e-01\tAbsError: 7.58073e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.39540e-01\tAbsError: 5.24626e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.89722e-02\tAbsError: 2.57921e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.58303e-01\tAbsError: 2.58889e+14\n", + " Region: \"zone_1\"\tRelError: 3.50075e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.50075e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 4.23296e-01\tAbsError: 2.58889e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.70968e-01\tAbsError: 1.16796e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.16540e-01\tAbsError: 1.42093e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.57873e-02\tAbsError: 9.16534e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.67979e+01\tAbsError: 8.91230e+15\n", + " Region: \"zone_1\"\tRelError: 2.50038e+01\tAbsError: 4.23835e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.50038e+01\tAbsError: 4.23835e-02\n", + " Region: \"zone_3\"\tRelError: 1.79419e+00\tAbsError: 8.91230e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.05587e-01\tAbsError: 5.25148e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.05539e-01\tAbsError: 3.66082e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83062e-01\tAbsError: 4.23835e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.18244e+00\tAbsError: 3.45808e+14\n", + " Region: \"zone_1\"\tRelError: 5.95786e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95786e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.58666e+00\tAbsError: 3.45808e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91491e-01\tAbsError: 2.56450e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.87672e-01\tAbsError: 8.93573e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07491e-01\tAbsError: 3.07632e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.12901e-01\tAbsError: 1.51064e+14\n", + " Region: \"zone_1\"\tRelError: 1.87797e-01\tAbsError: 3.92494e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87797e-01\tAbsError: 3.92494e-04\n", + " Region: \"zone_3\"\tRelError: 1.25105e-01\tAbsError: 1.51064e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02833e-01\tAbsError: 8.54481e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.00100e-02\tAbsError: 6.56163e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.26152e-03\tAbsError: 3.94188e-04\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.00758e-01\tAbsError: 5.64850e+13\n", + " Region: \"zone_1\"\tRelError: 5.60005e-02\tAbsError: 1.10525e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.60005e-02\tAbsError: 1.10525e-02\n", + " Region: \"zone_3\"\tRelError: 4.44758e-01\tAbsError: 5.64850e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.92751e-01\tAbsError: 2.72341e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.16145e-01\tAbsError: 2.92508e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.58616e-02\tAbsError: 1.10525e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.06225e-01\tAbsError: 3.99157e+13\n", + " Region: \"zone_1\"\tRelError: 1.41229e-02\tAbsError: 1.62376e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41229e-02\tAbsError: 1.62376e-04\n", + " Region: \"zone_3\"\tRelError: 9.21025e-02\tAbsError: 3.99157e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.51238e-02\tAbsError: 2.25076e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.14819e-03\tAbsError: 1.74081e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.30563e-04\tAbsError: 1.67642e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.19247e+00\tAbsError: 8.54805e+13\n", + " Region: \"zone_1\"\tRelError: 9.12229e-02\tAbsError: 2.58978e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.12229e-02\tAbsError: 2.58978e-02\n", + " Region: \"zone_3\"\tRelError: 1.10125e+00\tAbsError: 8.54805e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14822e-01\tAbsError: 5.48784e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.98551e-01\tAbsError: 3.06021e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.78742e-02\tAbsError: 2.58989e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.16759e-01\tAbsError: 9.63744e+12\n", + " Region: \"zone_1\"\tRelError: 7.49074e-03\tAbsError: 6.25327e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.49074e-03\tAbsError: 6.25327e-05\n", + " Region: \"zone_3\"\tRelError: 1.09268e-01\tAbsError: 9.63744e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04636e-01\tAbsError: 4.92578e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.35150e-03\tAbsError: 4.71165e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.81133e-04\tAbsError: 6.96737e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 9.91832e+00\tAbsError: 1.75141e+15\n", + " Region: \"zone_1\"\tRelError: 8.25926e+00\tAbsError: 3.24492e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.25926e+00\tAbsError: 3.24492e-02\n", + " Region: \"zone_3\"\tRelError: 1.65906e+00\tAbsError: 1.75141e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.11671e-01\tAbsError: 9.86267e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.98064e-01\tAbsError: 7.65145e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49326e-01\tAbsError: 3.24493e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.77778e-04\tAbsError: 4.11734e+10\n", + " Region: \"zone_1\"\tRelError: 2.64497e-05\tAbsError: 2.72288e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64497e-05\tAbsError: 2.72288e-07\n", + " Region: \"zone_3\"\tRelError: 1.51329e-04\tAbsError: 4.11734e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47345e-04\tAbsError: 2.82922e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.54557e-06\tAbsError: 1.28813e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43781e-06\tAbsError: 2.89039e-07\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.90192e-03\tAbsError: 5.23223e+11\n", + " Region: \"zone_1\"\tRelError: 1.45474e-03\tAbsError: 2.69983e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45474e-03\tAbsError: 2.69983e-06\n", + " Region: \"zone_3\"\tRelError: 4.47183e-04\tAbsError: 5.23223e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.96135e-04\tAbsError: 3.92343e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.50366e-05\tAbsError: 1.30880e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60123e-05\tAbsError: 2.77806e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.52183e-01\tAbsError: 2.83225e+13\n", + " Region: \"zone_1\"\tRelError: 5.95279e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95279e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.92655e-01\tAbsError: 2.83225e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.85164e-01\tAbsError: 1.34603e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.99920e-02\tAbsError: 1.48622e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74993e-02\tAbsError: 9.16534e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.53636e-04\tAbsError: 1.02507e+10\n", + " Region: \"zone_1\"\tRelError: 1.02124e-05\tAbsError: 9.04311e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02124e-05\tAbsError: 9.04311e-08\n", + " Region: \"zone_3\"\tRelError: 1.43423e-04\tAbsError: 1.02507e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38889e-04\tAbsError: 7.00540e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.13077e-06\tAbsError: 3.24531e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.03096e-07\tAbsError: 9.92951e-08\n", + "Iteration: 4\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.52644e-02\tAbsError: 2.55837e+12\n", + " Region: \"zone_1\"\tRelError: 7.16041e-03\tAbsError: 2.30338e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.16041e-03\tAbsError: 2.30338e-05\n", + " Region: \"zone_3\"\tRelError: 8.81040e-02\tAbsError: 2.55837e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.71797e-02\tAbsError: 1.35830e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.38768e-04\tAbsError: 1.20006e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.54583e-05\tAbsError: 2.40500e-05\n", + " Device: \"device\"\tRelError: 1.94888e+00\tAbsError: 1.31586e+15\n", + " Region: \"zone_1\"\tRelError: 7.52860e-01\tAbsError: 2.57556e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.52860e-01\tAbsError: 2.57556e-02\n", + " Region: \"zone_3\"\tRelError: 1.19602e+00\tAbsError: 1.31586e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.52100e-01\tAbsError: 5.76348e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.05857e-01\tAbsError: 7.39516e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38064e-01\tAbsError: 2.55829e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.06514e-10\tAbsError: 5.16648e+04\n", + " Region: \"zone_1\"\tRelError: 2.76360e-11\tAbsError: 2.68296e-13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76360e-11\tAbsError: 2.68296e-13\n", + " Region: \"zone_3\"\tRelError: 1.78878e-10\tAbsError: 5.16648e+04\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.71768e-10\tAbsError: 3.00847e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.70903e-12\tAbsError: 2.15800e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40086e-12\tAbsError: 2.79958e-13\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:10\u001b[0m.\u001b[1;36m829\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.7000000000000001\u001b[0m\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Iteration: 6\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 3.03122e-08\tAbsError: 8.48023e+06\n", + " Region: \"zone_1\"\tRelError: 2.36894e-08\tAbsError: 4.35270e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36894e-08\tAbsError: 4.35270e-11\n", + " Region: \"zone_3\"\tRelError: 6.62277e-09\tAbsError: 8.48023e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.47509e-09\tAbsError: 5.20890e+06\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.80542e-10\tAbsError: 3.27133e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67134e-10\tAbsError: 4.62569e-11\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.30961e-10\tAbsError: 3.18796e+04\n", + " Region: \"zone_1\"\tRelError: 1.14293e-11\tAbsError: 1.05399e-13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14293e-11\tAbsError: 1.05399e-13\n", + " Region: \"zone_3\"\tRelError: 2.19532e-10\tAbsError: 3.18796e+04\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13023e-10\tAbsError: 1.58426e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.04015e-12\tAbsError: 1.60370e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.68049e-13\tAbsError: 1.14963e-13\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:11\u001b[0m.\u001b[1;36m016\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: 0.75\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:11\u001b[0m.\u001b[1;36m071\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.63125\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Iteration: 3\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 6.21302e-01\tAbsError: 6.18803e+14\n", + " Region: \"zone_1\"\tRelError: 1.01501e-01\tAbsError: 1.13359e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01501e-01\tAbsError: 1.13359e-02\n", + " Region: \"zone_3\"\tRelError: 5.19801e-01\tAbsError: 6.18803e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.97738e-01\tAbsError: 3.04418e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.73552e-01\tAbsError: 3.14385e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.85106e-02\tAbsError: 1.13359e-02\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.58292e-05\tAbsError: 4.59514e+08\n", + " Region: \"zone_1\"\tRelError: 9.81723e-07\tAbsError: 3.18909e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.81723e-07\tAbsError: 3.18909e-09\n", + " Region: \"zone_3\"\tRelError: 3.48474e-05\tAbsError: 4.59514e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.45053e-05\tAbsError: 3.33895e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.30263e-07\tAbsError: 1.25619e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18628e-08\tAbsError: 3.31754e-09\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:11\u001b[0m.\u001b[1;36m201\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.6\u001b[0m \n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "number of equations 22602\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.22389e+00\tAbsError: 8.51989e+15\n", + " Region: \"zone_1\"\tRelError: 5.41698e+00\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.41698e+00\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.80691e+00\tAbsError: 8.51989e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94484e-01\tAbsError: 4.63675e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94370e-01\tAbsError: 3.88315e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18056e-01\tAbsError: 4.09542e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.06329e-01\tAbsError: 1.29092e+14\n", + " Region: \"zone_1\"\tRelError: 8.73098e-02\tAbsError: 3.61435e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.73098e-02\tAbsError: 3.61435e-04\n", + " Region: \"zone_3\"\tRelError: 1.19019e-01\tAbsError: 1.29092e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.90943e-02\tAbsError: 7.25515e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.78743e-02\tAbsError: 5.65410e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05040e-03\tAbsError: 3.64470e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.36839e+00\tAbsError: 1.17799e+16\n", + " Region: \"zone_1\"\tRelError: 6.49050e+00\tAbsError: 4.26142e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.49050e+00\tAbsError: 4.26142e-02\n", + " Region: \"zone_3\"\tRelError: 1.87789e+00\tAbsError: 1.17799e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.07111e-01\tAbsError: 6.02482e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.06929e-01\tAbsError: 5.75508e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.63853e-01\tAbsError: 4.26142e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.83930e+01\tAbsError: 8.83697e+15\n", + " Region: \"zone_1\"\tRelError: 3.66046e+01\tAbsError: 4.22091e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.66046e+01\tAbsError: 4.22091e-02\n", + " Region: \"zone_3\"\tRelError: 1.78846e+00\tAbsError: 8.83697e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.04274e-01\tAbsError: 5.21875e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.04228e-01\tAbsError: 3.61823e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79960e-01\tAbsError: 4.22091e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.89109e+00\tAbsError: 5.48219e+15\n", + " Region: \"zone_1\"\tRelError: 2.49390e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49390e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.64170e+00\tAbsError: 5.48219e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90716e-01\tAbsError: 2.59543e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.66285e-01\tAbsError: 2.88675e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84697e-01\tAbsError: 3.07632e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.45236e+01\tAbsError: 8.31884e+15\n", + " Region: \"zone_1\"\tRelError: 1.27753e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27753e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.74827e+00\tAbsError: 8.31884e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94561e-01\tAbsError: 4.96691e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94525e-01\tAbsError: 3.35193e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59186e-01\tAbsError: 4.09542e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.00380e-03\tAbsError: 4.00864e+11\n", + " Region: \"zone_1\"\tRelError: 6.01786e-04\tAbsError: 2.19773e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.01786e-04\tAbsError: 2.19773e-06\n", + " Region: \"zone_3\"\tRelError: 4.02017e-04\tAbsError: 4.00864e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61344e-04\tAbsError: 3.02524e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.77744e-05\tAbsError: 9.83399e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28989e-05\tAbsError: 2.28510e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.27347e+00\tAbsError: 1.45254e+16\n", + " Region: \"zone_1\"\tRelError: 5.52729e-01\tAbsError: 3.27220e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.52729e-01\tAbsError: 3.27220e-02\n", + " Region: \"zone_3\"\tRelError: 1.72074e+00\tAbsError: 1.45254e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.12137e-01\tAbsError: 7.08362e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83962e-01\tAbsError: 7.44180e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24645e-01\tAbsError: 3.27220e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.31531e+00\tAbsError: 1.61409e+15\n", + " Region: \"zone_1\"\tRelError: 1.66184e+00\tAbsError: 3.22432e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66184e+00\tAbsError: 3.22432e-02\n", + " Region: \"zone_3\"\tRelError: 1.65347e+00\tAbsError: 1.61409e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.09389e-01\tAbsError: 9.13798e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.96380e-01\tAbsError: 7.00294e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47701e-01\tAbsError: 3.22432e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.28809e+00\tAbsError: 4.35524e+15\n", + " Region: \"zone_1\"\tRelError: 1.47109e-01\tAbsError: 2.58916e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47109e-01\tAbsError: 2.58916e-02\n", + " Region: \"zone_3\"\tRelError: 1.14098e+00\tAbsError: 4.35524e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.22693e-01\tAbsError: 2.04103e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.66769e-01\tAbsError: 2.31421e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51518e-01\tAbsError: 2.53379e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.91465e+00\tAbsError: 8.82588e+14\n", + " Region: \"zone_1\"\tRelError: 3.03324e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.03324e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.61133e+00\tAbsError: 8.82588e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91758e-01\tAbsError: 5.05615e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83634e-01\tAbsError: 3.76973e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35939e-01\tAbsError: 3.07632e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.25937e-08\tAbsError: 5.25364e+06\n", + " Region: \"zone_1\"\tRelError: 7.69679e-09\tAbsError: 2.75782e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.69679e-09\tAbsError: 2.75782e-11\n", + " Region: \"zone_3\"\tRelError: 4.89691e-09\tAbsError: 5.25364e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.09704e-09\tAbsError: 3.18003e+06\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.32194e-10\tAbsError: 2.07360e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67668e-10\tAbsError: 2.96314e-11\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:12\u001b[0m.\u001b[1;36m226\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:12\u001b[0m.\u001b[1;36m226\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7428571428571428\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.46941e+00\tAbsError: 1.18382e+16\n", + " Region: \"zone_1\"\tRelError: 1.96893e-01\tAbsError: 2.58653e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96893e-01\tAbsError: 2.58653e-02\n", + " Region: \"zone_3\"\tRelError: 1.27252e+00\tAbsError: 1.18382e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.59625e-01\tAbsError: 5.91923e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.16005e-01\tAbsError: 5.91901e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96893e-01\tAbsError: 2.54683e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.59444e+00\tAbsError: 1.17799e+15\n", + " Region: \"zone_1\"\tRelError: 4.05057e-01\tAbsError: 2.56335e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.05057e-01\tAbsError: 2.56335e-02\n", + " Region: \"zone_3\"\tRelError: 1.18938e+00\tAbsError: 1.17799e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.47890e-01\tAbsError: 5.20055e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.05564e-01\tAbsError: 6.57931e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35930e-01\tAbsError: 2.56335e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.61364e-01\tAbsError: 1.56107e+15\n", + " Region: \"zone_1\"\tRelError: 1.02187e-01\tAbsError: 9.16531e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02187e-01\tAbsError: 9.16531e-03\n", + " Region: \"zone_3\"\tRelError: 4.59177e-01\tAbsError: 1.56107e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52513e-01\tAbsError: 8.30423e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.62306e-01\tAbsError: 7.30643e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.43577e-02\tAbsError: 9.16534e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.34467e+00\tAbsError: 5.44154e+14\n", + " Region: \"zone_1\"\tRelError: 2.20632e-01\tAbsError: 2.58931e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20632e-01\tAbsError: 2.58931e-02\n", + " Region: \"zone_3\"\tRelError: 1.12404e+00\tAbsError: 5.44154e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.17234e-01\tAbsError: 2.66383e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.89208e-01\tAbsError: 2.77771e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17596e-01\tAbsError: 2.58999e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 8.75005e-01\tAbsError: 5.02949e+15\n", + " Region: \"zone_1\"\tRelError: 3.13766e-01\tAbsError: 1.17190e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.13766e-01\tAbsError: 1.17190e-02\n", + " Region: \"zone_3\"\tRelError: 5.61239e-01\tAbsError: 5.02949e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.93040e-01\tAbsError: 2.67220e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.02032e-01\tAbsError: 2.35729e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.61665e-02\tAbsError: 1.17190e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.50542e-01\tAbsError: 5.55015e+14\n", + " Region: \"zone_1\"\tRelError: 4.54885e-02\tAbsError: 1.10525e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54885e-02\tAbsError: 1.10525e-02\n", + " Region: \"zone_3\"\tRelError: 5.05053e-01\tAbsError: 5.55015e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91973e-01\tAbsError: 2.69181e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.66277e-01\tAbsError: 2.85834e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.68029e-02\tAbsError: 1.10525e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.25460e+01\tAbsError: 1.05704e+16\n", + " Region: \"zone_1\"\tRelError: 1.06788e+01\tAbsError: 4.23835e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06788e+01\tAbsError: 4.23835e-02\n", + " Region: \"zone_3\"\tRelError: 1.86719e+00\tAbsError: 1.05704e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.05413e-01\tAbsError: 5.48694e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.05244e-01\tAbsError: 5.08345e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.56536e-01\tAbsError: 4.23835e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.58303e-01\tAbsError: 2.58889e+14\n", + " Region: \"zone_1\"\tRelError: 3.50075e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.50075e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 4.23296e-01\tAbsError: 2.58889e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.70968e-01\tAbsError: 1.16796e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.16540e-01\tAbsError: 1.42093e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.57873e-02\tAbsError: 9.16534e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.02751e-01\tAbsError: 2.88406e+14\n", + " Region: \"zone_1\"\tRelError: 3.60577e-03\tAbsError: 2.29628e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.60577e-03\tAbsError: 2.29628e-04\n", + " Region: \"zone_3\"\tRelError: 9.91456e-02\tAbsError: 2.88406e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.45252e-02\tAbsError: 1.12757e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29594e-02\tAbsError: 1.75650e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66104e-03\tAbsError: 2.42032e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.51571e-01\tAbsError: 1.03733e+15\n", + " Region: \"zone_1\"\tRelError: 1.05569e-02\tAbsError: 3.64353e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05569e-02\tAbsError: 3.64353e-04\n", + " Region: \"zone_3\"\tRelError: 1.41014e-01\tAbsError: 1.03733e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03208e-01\tAbsError: 5.91205e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.34455e-02\tAbsError: 4.46122e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43599e-02\tAbsError: 3.90053e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.53315e-01\tAbsError: 1.14074e+14\n", + " Region: \"zone_1\"\tRelError: 3.81468e-02\tAbsError: 3.36449e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.81468e-02\tAbsError: 3.36449e-04\n", + " Region: \"zone_3\"\tRelError: 1.15168e-01\tAbsError: 1.14074e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.71088e-02\tAbsError: 6.46008e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.61726e-02\tAbsError: 4.94737e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88681e-03\tAbsError: 3.40626e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.43197e+00\tAbsError: 1.27930e+16\n", + " Region: \"zone_1\"\tRelError: 1.72392e+00\tAbsError: 3.24492e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72392e+00\tAbsError: 3.24492e-02\n", + " Region: \"zone_3\"\tRelError: 1.70805e+00\tAbsError: 1.27930e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.09557e-01\tAbsError: 6.17279e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.80692e-01\tAbsError: 6.62016e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17802e-01\tAbsError: 3.24492e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.06225e-01\tAbsError: 3.99157e+13\n", + " Region: \"zone_1\"\tRelError: 1.41229e-02\tAbsError: 1.62376e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41229e-02\tAbsError: 1.62376e-04\n", + " Region: \"zone_3\"\tRelError: 9.21025e-02\tAbsError: 3.99157e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.51238e-02\tAbsError: 2.25076e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.14819e-03\tAbsError: 1.74081e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.30563e-04\tAbsError: 1.67642e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.04675e-04\tAbsError: 3.04021e+11\n", + " Region: \"zone_1\"\tRelError: 6.05493e-06\tAbsError: 5.20454e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 6.05493e-06\tAbsError: 5.20454e-07\n", + " Region: \"zone_3\"\tRelError: 2.98620e-04\tAbsError: 3.04021e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.67672e-04\tAbsError: 1.93910e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.70905e-05\tAbsError: 1.10111e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85729e-06\tAbsError: 5.51479e-07\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.26215e-04\tAbsError: 3.47082e+12\n", + " Region: \"zone_1\"\tRelError: 1.68789e-05\tAbsError: 1.98685e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68789e-05\tAbsError: 1.98685e-06\n", + " Region: \"zone_3\"\tRelError: 5.09336e-04\tAbsError: 3.47082e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.10584e-04\tAbsError: 2.32737e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.17851e-05\tAbsError: 1.14346e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.69672e-05\tAbsError: 2.13719e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.03561e-04\tAbsError: 3.24187e+11\n", + " Region: \"zone_1\"\tRelError: 2.35722e-04\tAbsError: 1.82349e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.35722e-04\tAbsError: 1.82349e-06\n", + " Region: \"zone_3\"\tRelError: 3.67839e-04\tAbsError: 3.24187e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.34888e-04\tAbsError: 2.42190e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.23647e-05\tAbsError: 8.19967e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05865e-05\tAbsError: 1.90371e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.44621e+00\tAbsError: 1.02247e+16\n", + " Region: \"zone_1\"\tRelError: 1.89936e-01\tAbsError: 2.58588e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89936e-01\tAbsError: 2.58588e-02\n", + " Region: \"zone_3\"\tRelError: 1.25627e+00\tAbsError: 1.02247e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.54587e-01\tAbsError: 5.05790e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.11749e-01\tAbsError: 5.16683e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89936e-01\tAbsError: 2.56589e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.77778e-04\tAbsError: 4.11734e+10\n", + " Region: \"zone_1\"\tRelError: 2.64497e-05\tAbsError: 2.72288e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64497e-05\tAbsError: 2.72288e-07\n", + " Region: \"zone_3\"\tRelError: 1.51329e-04\tAbsError: 4.11734e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47345e-04\tAbsError: 2.82922e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.54557e-06\tAbsError: 1.28813e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43781e-06\tAbsError: 2.89039e-07\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.59425e-10\tAbsError: 1.22832e+06\n", + " Region: \"zone_1\"\tRelError: 9.68754e-11\tAbsError: 2.65442e-12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.68754e-11\tAbsError: 2.65442e-12\n", + " Region: \"zone_3\"\tRelError: 6.62549e-10\tAbsError: 1.22832e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38517e-10\tAbsError: 7.28669e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03770e-10\tAbsError: 4.99652e+05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02616e-11\tAbsError: 2.83300e-12\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:13\u001b[0m.\u001b[1;36m777\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.8\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.03046e-08\tAbsError: 6.74445e+07\n", + " Region: \"zone_1\"\tRelError: 1.11183e-09\tAbsError: 1.07725e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11183e-09\tAbsError: 1.07725e-11\n", + " Region: \"zone_3\"\tRelError: 9.19276e-09\tAbsError: 6.74445e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.60782e-09\tAbsError: 4.48423e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.49946e-10\tAbsError: 2.26022e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 6.34993e-10\tAbsError: 1.07947e-11\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.10130e-09\tAbsError: 3.42919e+06\n", + " Region: \"zone_1\"\tRelError: 2.42570e-09\tAbsError: 1.82661e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42570e-09\tAbsError: 1.82661e-11\n", + " Region: \"zone_3\"\tRelError: 3.67560e-09\tAbsError: 3.42919e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.12934e-09\tAbsError: 2.08088e+06\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.36715e-10\tAbsError: 1.34831e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09546e-10\tAbsError: 1.96712e-11\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.07504e+00\tAbsError: 4.26851e+15\n", + " Region: \"zone_1\"\tRelError: 5.30266e-01\tAbsError: 1.13358e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.30266e-01\tAbsError: 1.13358e-02\n", + " Region: \"zone_3\"\tRelError: 5.44776e-01\tAbsError: 4.26851e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.85152e-01\tAbsError: 2.27652e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96788e-01\tAbsError: 1.99199e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.28352e-02\tAbsError: 1.13359e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:14\u001b[0m.\u001b[1;36m009\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:14\u001b[0m.\u001b[1;36m009\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7374999999999999\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.06529e-10\tAbsError: 4.94075e+04\n", + " Region: \"zone_1\"\tRelError: 2.76502e-11\tAbsError: 2.68329e-13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76502e-11\tAbsError: 2.68329e-13\n", + " Region: \"zone_3\"\tRelError: 1.78878e-10\tAbsError: 4.94075e+04\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.71769e-10\tAbsError: 3.00848e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.70893e-12\tAbsError: 1.93227e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40075e-12\tAbsError: 2.79937e-13\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:14\u001b[0m.\u001b[1;36m140\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.7000000000000001\u001b[0m\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.06248e+01\tAbsError: 3.16044e+16\n", + " Region: \"zone_1\"\tRelError: 1.87257e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87257e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.89912e+00\tAbsError: 3.16044e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.93746e-01\tAbsError: 1.57387e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.93249e-01\tAbsError: 1.58657e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.12130e-01\tAbsError: 4.09543e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.49122e-01\tAbsError: 8.74518e+14\n", + " Region: \"zone_1\"\tRelError: 1.60013e-02\tAbsError: 3.43893e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60013e-02\tAbsError: 3.43893e-04\n", + " Region: \"zone_3\"\tRelError: 1.33121e-01\tAbsError: 8.74518e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01241e-01\tAbsError: 4.86514e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.17497e-02\tAbsError: 3.88004e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01303e-02\tAbsError: 3.66897e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.25674e+01\tAbsError: 9.91926e+15\n", + " Region: \"zone_1\"\tRelError: 2.07081e+01\tAbsError: 4.22091e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07081e+01\tAbsError: 4.22091e-02\n", + " Region: \"zone_3\"\tRelError: 1.85938e+00\tAbsError: 9.91926e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.04116e-01\tAbsError: 5.29079e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.03957e-01\tAbsError: 4.62846e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51307e-01\tAbsError: 4.22091e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:14\u001b[0m.\u001b[1;36m805\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.45748e+00\tAbsError: 3.69441e+16\n", + " Region: \"zone_1\"\tRelError: 4.13331e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.13331e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 2.04415e+00\tAbsError: 3.69441e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.88321e-01\tAbsError: 1.86445e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.52684e-01\tAbsError: 1.82996e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.03145e-01\tAbsError: 3.07632e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.91660e-04\tAbsError: 2.54040e+12\n", + " Region: \"zone_1\"\tRelError: 1.35073e-05\tAbsError: 1.64927e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35073e-05\tAbsError: 1.64927e-06\n", + " Region: \"zone_3\"\tRelError: 4.78152e-04\tAbsError: 2.54040e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.93348e-04\tAbsError: 1.71253e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.78162e-05\tAbsError: 8.27868e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.69884e-05\tAbsError: 1.78053e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.22389e+00\tAbsError: 8.51989e+15\n", + " Region: \"zone_1\"\tRelError: 5.41698e+00\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.41698e+00\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.80691e+00\tAbsError: 8.51989e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94484e-01\tAbsError: 4.63675e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94370e-01\tAbsError: 3.88315e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18056e-01\tAbsError: 4.09542e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:14\u001b[0m.\u001b[1;36m838\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.0 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:14\u001b[0m.\u001b[1;36m874\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 6.07101e+00\tAbsError: 1.14165e+16\n", + " Region: \"zone_1\"\tRelError: 4.37111e+00\tAbsError: 3.22431e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.37111e+00\tAbsError: 3.22431e-02\n", + " Region: \"zone_3\"\tRelError: 1.69990e+00\tAbsError: 1.14165e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.07074e-01\tAbsError: 5.53066e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.79620e-01\tAbsError: 5.88581e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13207e-01\tAbsError: 3.22432e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 4.80876e+00\tAbsError: 2.48392e+16\n", + " Region: \"zone_1\"\tRelError: 2.08564e-01\tAbsError: 2.58396e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08564e-01\tAbsError: 2.58396e-02\n", + " Region: \"zone_3\"\tRelError: 4.60020e+00\tAbsError: 2.48392e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.12756e-01\tAbsError: 1.24031e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.61077e-01\tAbsError: 1.24362e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.62637e+00\tAbsError: 2.33304e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.89109e+00\tAbsError: 5.48219e+15\n", + " Region: \"zone_1\"\tRelError: 2.49390e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49390e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.64170e+00\tAbsError: 5.48219e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90716e-01\tAbsError: 2.59543e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.66285e-01\tAbsError: 2.88675e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84697e-01\tAbsError: 3.07632e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 8.13140e-09\tAbsError: 3.88209e+07\n", + " Region: \"zone_1\"\tRelError: 1.56368e-09\tAbsError: 8.49011e-12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56368e-09\tAbsError: 8.49011e-12\n", + " Region: \"zone_3\"\tRelError: 6.56771e-09\tAbsError: 3.88209e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.49331e-09\tAbsError: 2.53073e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.15049e-10\tAbsError: 1.35136e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59356e-10\tAbsError: 8.61252e-12\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:15\u001b[0m.\u001b[1;36m275\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: 0.85\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.98506e+00\tAbsError: 9.22482e+15\n", + " Region: \"zone_1\"\tRelError: 7.44294e-01\tAbsError: 2.58187e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.44294e-01\tAbsError: 2.58187e-02\n", + " Region: \"zone_3\"\tRelError: 1.24077e+00\tAbsError: 9.22482e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.51188e-01\tAbsError: 4.56555e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.04989e-01\tAbsError: 4.65926e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84591e-01\tAbsError: 2.57518e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.82261e+02\tAbsError: 3.52167e+17\n", + " Region: \"zone_1\"\tRelError: 6.12444e+01\tAbsError: 8.44807e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.12444e+01\tAbsError: 8.44807e-02\n", + " Region: \"zone_3\"\tRelError: 4.21017e+02\tAbsError: 3.52167e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.77839e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.97707e+02\tAbsError: 1.74328e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43100e+01\tAbsError: 8.44807e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.55071e+00\tAbsError: 8.48657e+15\n", + " Region: \"zone_1\"\tRelError: 8.11805e-01\tAbsError: 9.16529e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.11805e-01\tAbsError: 9.16529e-03\n", + " Region: \"zone_3\"\tRelError: 2.73890e+00\tAbsError: 8.48657e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.34197e-01\tAbsError: 4.50158e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.40806e-01\tAbsError: 3.98499e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36390e+00\tAbsError: 9.16533e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.28809e+00\tAbsError: 4.35524e+15\n", + " Region: \"zone_1\"\tRelError: 1.47109e-01\tAbsError: 2.58916e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47109e-01\tAbsError: 2.58916e-02\n", + " Region: \"zone_3\"\tRelError: 1.14098e+00\tAbsError: 4.35524e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.22693e-01\tAbsError: 2.04103e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.66769e-01\tAbsError: 2.31421e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51518e-01\tAbsError: 2.53379e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.75902e+00\tAbsError: 3.77919e+15\n", + " Region: \"zone_1\"\tRelError: 1.22599e+00\tAbsError: 1.10525e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22599e+00\tAbsError: 1.10525e-02\n", + " Region: \"zone_3\"\tRelError: 5.33038e-01\tAbsError: 3.77919e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.79636e-01\tAbsError: 2.01911e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.93051e-01\tAbsError: 1.76009e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.03505e-02\tAbsError: 1.10525e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.03144e+01\tAbsError: 2.22942e+17\n", + " Region: \"zone_1\"\tRelError: 4.58501e+00\tAbsError: 8.10225e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.58501e+00\tAbsError: 8.10225e-02\n", + " Region: \"zone_3\"\tRelError: 2.57294e+01\tAbsError: 2.22942e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.11571e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.31347e+01\tAbsError: 1.11371e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59472e+00\tAbsError: 8.10225e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.42490e+01\tAbsError: 7.52592e+16\n", + " Region: \"zone_1\"\tRelError: 1.08478e+01\tAbsError: 4.23835e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08478e+01\tAbsError: 4.23835e-02\n", + " Region: \"zone_3\"\tRelError: 3.40120e+00\tAbsError: 7.52592e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.03566e-01\tAbsError: 3.76063e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.02485e-01\tAbsError: 3.76529e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79515e+00\tAbsError: 4.23835e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 5.10055e-01\tAbsError: 1.79008e+15\n", + " Region: \"zone_1\"\tRelError: 7.10147e-02\tAbsError: 3.19256e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.10147e-02\tAbsError: 3.19256e-04\n", + " Region: \"zone_3\"\tRelError: 4.39040e-01\tAbsError: 1.79008e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39314e-02\tAbsError: 9.39738e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.81226e-02\tAbsError: 8.50345e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.56986e-01\tAbsError: 3.21663e-04\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.61364e-01\tAbsError: 1.56107e+15\n", + " Region: \"zone_1\"\tRelError: 1.02187e-01\tAbsError: 9.16531e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02187e-01\tAbsError: 9.16531e-03\n", + " Region: \"zone_3\"\tRelError: 4.59177e-01\tAbsError: 1.56107e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52513e-01\tAbsError: 8.30423e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.62306e-01\tAbsError: 7.30643e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.43577e-02\tAbsError: 9.16534e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.61775e-01\tAbsError: 7.66138e+14\n", + " Region: \"zone_1\"\tRelError: 3.36594e-02\tAbsError: 3.29572e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.36594e-02\tAbsError: 3.29572e-04\n", + " Region: \"zone_3\"\tRelError: 1.28116e-01\tAbsError: 7.66138e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.96948e-02\tAbsError: 4.16285e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.05597e-02\tAbsError: 3.49853e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.86134e-03\tAbsError: 3.48882e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.63152e+02\tAbsError: 9.44307e+16\n", + " Region: \"zone_1\"\tRelError: 6.85128e+00\tAbsError: 7.72065e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.85128e+00\tAbsError: 7.72065e-02\n", + " Region: \"zone_3\"\tRelError: 2.56301e+02\tAbsError: 9.44307e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09414e+01\tAbsError: 5.77259e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.45135e+02\tAbsError: 3.67049e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24279e-01\tAbsError: 7.72065e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 6.60752e+00\tAbsError: 8.84428e+16\n", + " Region: \"zone_1\"\tRelError: 3.94093e+00\tAbsError: 3.24492e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.94093e+00\tAbsError: 3.24492e-02\n", + " Region: \"zone_3\"\tRelError: 2.66659e+00\tAbsError: 8.84428e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.02377e-01\tAbsError: 4.49927e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.60258e-01\tAbsError: 4.34502e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20395e+00\tAbsError: 3.24492e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.33163e-03\tAbsError: 7.03544e+12\n", + " Region: \"zone_1\"\tRelError: 6.88994e-05\tAbsError: 8.74550e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 6.88994e-05\tAbsError: 8.74550e-07\n", + " Region: \"zone_3\"\tRelError: 1.26273e-03\tAbsError: 7.03544e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.78279e-04\tAbsError: 4.08452e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.87916e-05\tAbsError: 2.95092e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.95662e-04\tAbsError: 9.67670e-07\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.02751e-01\tAbsError: 2.88406e+14\n", + " Region: \"zone_1\"\tRelError: 3.60577e-03\tAbsError: 2.29628e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.60577e-03\tAbsError: 2.29628e-04\n", + " Region: \"zone_3\"\tRelError: 9.91456e-02\tAbsError: 2.88406e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.45252e-02\tAbsError: 1.12757e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29594e-02\tAbsError: 1.75650e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66104e-03\tAbsError: 2.42032e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.91192e-04\tAbsError: 1.99218e+12\n", + " Region: \"zone_1\"\tRelError: 3.52940e-05\tAbsError: 1.42123e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52940e-05\tAbsError: 1.42123e-06\n", + " Region: \"zone_3\"\tRelError: 4.55898e-04\tAbsError: 1.99218e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.79849e-04\tAbsError: 1.34746e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.47342e-05\tAbsError: 6.44716e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13148e-05\tAbsError: 1.54165e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.45533e+02\tAbsError: 3.05911e+16\n", + " Region: \"zone_1\"\tRelError: 3.90969e+01\tAbsError: 7.29586e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.90969e+01\tAbsError: 7.29586e-02\n", + " Region: \"zone_3\"\tRelError: 7.06436e+02\tAbsError: 3.05911e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.79786e+01\tAbsError: 1.48185e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.88272e+02\tAbsError: 1.57727e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85829e-01\tAbsError: 7.29586e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.09243e+01\tAbsError: 6.47175e+16\n", + " Region: \"zone_1\"\tRelError: 1.64997e+01\tAbsError: 2.57213e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64997e+01\tAbsError: 2.57213e-02\n", + " Region: \"zone_3\"\tRelError: 4.42461e+00\tAbsError: 6.47175e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.25399e-01\tAbsError: 3.23288e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.61564e-01\tAbsError: 3.23887e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.43764e+00\tAbsError: 2.58341e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.48938e-08\tAbsError: 9.78087e+07\n", + " Region: \"zone_1\"\tRelError: 2.39367e-09\tAbsError: 9.98115e-12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39367e-09\tAbsError: 9.98115e-12\n", + " Region: \"zone_3\"\tRelError: 1.25002e-08\tAbsError: 9.78087e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.82653e-09\tAbsError: 5.13414e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.35560e-10\tAbsError: 4.64673e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 9.13807e-09\tAbsError: 1.21236e-11\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.04675e-04\tAbsError: 3.04021e+11\n", + " Region: \"zone_1\"\tRelError: 6.05493e-06\tAbsError: 5.20454e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 6.05493e-06\tAbsError: 5.20454e-07\n", + " Region: \"zone_3\"\tRelError: 2.98620e-04\tAbsError: 3.04021e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.67672e-04\tAbsError: 1.93910e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.70905e-05\tAbsError: 1.10111e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85729e-06\tAbsError: 5.51479e-07\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 8.14411e-09\tAbsError: 2.52751e+07\n", + " Region: \"zone_1\"\tRelError: 3.10247e-09\tAbsError: 7.66784e-12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.10247e-09\tAbsError: 7.66784e-12\n", + " Region: \"zone_3\"\tRelError: 5.04165e-09\tAbsError: 2.52751e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.24046e-09\tAbsError: 1.61978e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.68440e-10\tAbsError: 9.07731e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32744e-10\tAbsError: 7.83237e-12\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:16\u001b[0m.\u001b[1;36m974\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.84375\u001b[0m \n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.52323e+04\tAbsError: 2.58880e+15\n", + " Region: \"zone_1\"\tRelError: 3.55607e+00\tAbsError: 6.81819e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.55607e+00\tAbsError: 6.81819e-02\n", + " Region: \"zone_3\"\tRelError: 3.52288e+04\tAbsError: 2.58880e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.44264e+04\tAbsError: 1.67252e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.02246e+02\tAbsError: 9.16280e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46351e-01\tAbsError: 6.81819e-02\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 3\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 2.12792e+00\tAbsError: 2.83243e+16\n", + " Region: \"zone_1\"\tRelError: 1.14894e+00\tAbsError: 1.13358e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14894e+00\tAbsError: 1.13358e-02\n", + " Region: \"zone_3\"\tRelError: 9.78978e-01\tAbsError: 2.83243e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.37101e-01\tAbsError: 1.51418e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.37082e-01\tAbsError: 1.31825e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.04795e-01\tAbsError: 1.13359e-02\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.59430e-10\tAbsError: 1.22833e+06\n", + " Region: \"zone_1\"\tRelError: 9.68792e-11\tAbsError: 2.65442e-12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.68792e-11\tAbsError: 2.65442e-12\n", + " Region: \"zone_3\"\tRelError: 6.62551e-10\tAbsError: 1.22833e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38518e-10\tAbsError: 7.28675e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03772e-10\tAbsError: 4.99657e+05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02617e-11\tAbsError: 2.83302e-12\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:17\u001b[0m.\u001b[1;36m250\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.8\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.83787e+01\tAbsError: 1.33604e+15\n", + " Region: \"zone_1\"\tRelError: 2.07590e+00\tAbsError: 6.27474e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07590e+00\tAbsError: 6.27474e-02\n", + " Region: \"zone_3\"\tRelError: 5.63028e+01\tAbsError: 1.33604e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.22975e+01\tAbsError: 7.85057e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.38884e+01\tAbsError: 5.50987e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16846e-01\tAbsError: 6.27475e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.10994e-01\tAbsError: 6.33231e+15\n", + " Region: \"zone_1\"\tRelError: 2.03112e-01\tAbsError: 4.63625e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03112e-01\tAbsError: 4.63625e-04\n", + " Region: \"zone_3\"\tRelError: 2.07882e-01\tAbsError: 6.33231e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.54885e-02\tAbsError: 3.31801e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.90225e-02\tAbsError: 3.01430e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23371e-01\tAbsError: 4.85010e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.18672e+01\tAbsError: 6.77330e+16\n", + " Region: \"zone_1\"\tRelError: 2.92339e+01\tAbsError: 4.22091e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.92339e+01\tAbsError: 4.22091e-02\n", + " Region: \"zone_3\"\tRelError: 2.63329e+00\tAbsError: 6.77330e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.02473e-01\tAbsError: 3.37687e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.01495e-01\tAbsError: 3.39643e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02932e+00\tAbsError: 4.22091e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.31378e+02\tAbsError: 7.60663e+14\n", + " Region: \"zone_1\"\tRelError: 7.71613e-01\tAbsError: 5.64827e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.71613e-01\tAbsError: 5.64827e-02\n", + " Region: \"zone_3\"\tRelError: 2.30606e+02\tAbsError: 7.60663e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52408e+02\tAbsError: 5.17768e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.81037e+01\tAbsError: 2.42894e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.43265e-02\tAbsError: 5.64827e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:17\u001b[0m.\u001b[1;36m819\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.06248e+01\tAbsError: 3.16044e+16\n", + " Region: \"zone_1\"\tRelError: 1.87257e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87257e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.89912e+00\tAbsError: 3.16044e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.93746e-01\tAbsError: 1.57387e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.93249e-01\tAbsError: 1.58657e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.12130e-01\tAbsError: 4.09543e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:17\u001b[0m.\u001b[1;36m852\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.05 bias\u001b[0m \n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.61528e-03\tAbsError: 4.57027e+13\n", + " Region: \"zone_1\"\tRelError: 6.59185e-04\tAbsError: 1.10622e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.59185e-04\tAbsError: 1.10622e-06\n", + " Region: \"zone_3\"\tRelError: 9.56097e-04\tAbsError: 4.57027e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.75674e-04\tAbsError: 2.40788e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.45396e-04\tAbsError: 2.16239e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.35027e-04\tAbsError: 1.16216e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:17\u001b[0m.\u001b[1;36m883\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 5.28950e+00\tAbsError: 7.92389e+16\n", + " Region: \"zone_1\"\tRelError: 2.40844e+00\tAbsError: 3.22431e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.40844e+00\tAbsError: 3.22431e-02\n", + " Region: \"zone_3\"\tRelError: 2.88106e+00\tAbsError: 7.92389e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.00584e-01\tAbsError: 4.07058e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.61442e-01\tAbsError: 3.85331e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41903e+00\tAbsError: 3.22432e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.71787e+04\tAbsError: 1.75933e+14\n", + " Region: \"zone_1\"\tRelError: 7.47327e-02\tAbsError: 4.91583e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.47327e-02\tAbsError: 4.91583e-02\n", + " Region: \"zone_3\"\tRelError: 1.71786e+04\tAbsError: 1.75933e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47883e+04\tAbsError: 8.79941e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.39026e+03\tAbsError: 8.79391e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.51412e-02\tAbsError: 4.91584e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.45748e+00\tAbsError: 3.69441e+16\n", + " Region: \"zone_1\"\tRelError: 4.13331e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.13331e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 2.04415e+00\tAbsError: 3.69441e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.88321e-01\tAbsError: 1.86445e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.52684e-01\tAbsError: 1.82996e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.03145e-01\tAbsError: 3.07632e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.14099e-08\tAbsError: 4.54906e+08\n", + " Region: \"zone_1\"\tRelError: 4.36669e-09\tAbsError: 5.33468e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.36669e-09\tAbsError: 5.33468e-11\n", + " Region: \"zone_3\"\tRelError: 7.04323e-09\tAbsError: 4.54906e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.71744e-09\tAbsError: 2.24456e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.78894e-10\tAbsError: 2.30450e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74690e-09\tAbsError: 5.92822e-11\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.20466e+01\tAbsError: 5.52934e+16\n", + " Region: \"zone_1\"\tRelError: 2.16515e+00\tAbsError: 2.58803e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16515e+00\tAbsError: 2.58803e-02\n", + " Region: \"zone_3\"\tRelError: 9.88145e+00\tAbsError: 5.52934e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.25644e-01\tAbsError: 2.74416e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.60760e-01\tAbsError: 2.78518e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 8.89504e+00\tAbsError: 2.54624e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.88372e+02\tAbsError: 9.95901e+17\n", + " Region: \"zone_1\"\tRelError: 9.83806e+01\tAbsError: 8.63290e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.83806e+01\tAbsError: 8.63290e-02\n", + " Region: \"zone_3\"\tRelError: 4.89991e+02\tAbsError: 9.95901e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.64932e+02\tAbsError: 4.41210e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.04095e+01\tAbsError: 5.54690e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.64997e+00\tAbsError: 8.63291e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 8.00464e+02\tAbsError: 1.76846e+14\n", + " Region: \"zone_1\"\tRelError: 1.51285e-01\tAbsError: 4.04895e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51285e-01\tAbsError: 4.04895e-02\n", + " Region: \"zone_3\"\tRelError: 8.00313e+02\tAbsError: 1.76846e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.76154e+02\tAbsError: 1.03150e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.41019e+01\tAbsError: 7.36963e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.75475e-02\tAbsError: 4.04896e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 4.80876e+00\tAbsError: 2.48392e+16\n", + " Region: \"zone_1\"\tRelError: 2.08564e-01\tAbsError: 2.58396e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08564e-01\tAbsError: 2.58396e-02\n", + " Region: \"zone_3\"\tRelError: 4.60020e+00\tAbsError: 2.48392e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.12756e-01\tAbsError: 1.24031e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.61077e-01\tAbsError: 1.24362e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.62637e+00\tAbsError: 2.33304e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.43062e+00\tAbsError: 2.48503e+16\n", + " Region: \"zone_1\"\tRelError: 3.72922e+00\tAbsError: 1.10524e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.72922e+00\tAbsError: 1.10524e-02\n", + " Region: \"zone_3\"\tRelError: 1.70140e+00\tAbsError: 2.48503e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.43322e-01\tAbsError: 1.33123e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.40880e-01\tAbsError: 1.15380e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31720e+00\tAbsError: 1.10525e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.27833e+03\tAbsError: 7.47754e+17\n", + " Region: \"zone_1\"\tRelError: 2.20826e+01\tAbsError: 8.30497e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20826e+01\tAbsError: 8.30497e-02\n", + " Region: \"zone_3\"\tRelError: 1.25625e+03\tAbsError: 7.47754e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.20804e+01\tAbsError: 3.45452e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.21005e+03\tAbsError: 4.02302e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41176e+01\tAbsError: 8.30498e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.98801e+02\tAbsError: 3.29823e+13\n", + " Region: \"zone_1\"\tRelError: 4.03852e-02\tAbsError: 3.02166e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.03852e-02\tAbsError: 3.02166e-02\n", + " Region: \"zone_3\"\tRelError: 2.98761e+02\tAbsError: 3.29823e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88198e+02\tAbsError: 2.12465e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.05220e+01\tAbsError: 1.17358e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.08123e-02\tAbsError: 3.02167e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.55071e+00\tAbsError: 8.48657e+15\n", + " Region: \"zone_1\"\tRelError: 8.11805e-01\tAbsError: 9.16529e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.11805e-01\tAbsError: 9.16529e-03\n", + " Region: \"zone_3\"\tRelError: 2.73890e+00\tAbsError: 8.48657e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.34197e-01\tAbsError: 4.50158e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.40806e-01\tAbsError: 3.98499e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36390e+00\tAbsError: 9.16533e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.49152e+00\tAbsError: 5.38829e+15\n", + " Region: \"zone_1\"\tRelError: 3.18911e+00\tAbsError: 4.54221e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.18911e+00\tAbsError: 4.54221e-04\n", + " Region: \"zone_3\"\tRelError: 3.02408e-01\tAbsError: 5.38829e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.21294e-02\tAbsError: 2.89081e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.87533e-02\tAbsError: 2.49748e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21525e-01\tAbsError: 4.70929e-04\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 4.88396e+00\tAbsError: 4.23056e+12\n", + " Region: \"zone_1\"\tRelError: 3.34297e-02\tAbsError: 2.58995e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.34297e-02\tAbsError: 2.58995e-02\n", + " Region: \"zone_3\"\tRelError: 4.85053e+00\tAbsError: 4.23056e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.29475e+00\tAbsError: 4.51961e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.21955e-01\tAbsError: 3.77860e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.38273e-02\tAbsError: 2.55819e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:19\u001b[0m.\u001b[1;36m285\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.40949e+03\tAbsError: 2.06202e+17\n", + " Region: \"zone_1\"\tRelError: 1.35262e+01\tAbsError: 7.94472e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35262e+01\tAbsError: 7.94472e-02\n", + " Region: \"zone_3\"\tRelError: 1.39597e+03\tAbsError: 2.06202e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.04789e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.38616e+03\tAbsError: 1.01413e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 8.03041e-01\tAbsError: 7.94473e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:19\u001b[0m.\u001b[1;36m314\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.1 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:19\u001b[0m.\u001b[1;36m341\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 5.10055e-01\tAbsError: 1.79008e+15\n", + " Region: \"zone_1\"\tRelError: 7.10147e-02\tAbsError: 3.19256e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.10147e-02\tAbsError: 3.19256e-04\n", + " Region: \"zone_3\"\tRelError: 4.39040e-01\tAbsError: 1.79008e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39314e-02\tAbsError: 9.39738e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.81226e-02\tAbsError: 8.50345e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.56986e-01\tAbsError: 3.21663e-04\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.35643e+00\tAbsError: 1.11855e+14\n", + " Region: \"zone_1\"\tRelError: 1.12239e-02\tAbsError: 8.53138e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12239e-02\tAbsError: 8.53138e-03\n", + " Region: \"zone_3\"\tRelError: 1.34521e+00\tAbsError: 1.11855e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32958e+00\tAbsError: 4.27147e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.01792e-03\tAbsError: 1.07583e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06154e-02\tAbsError: 8.53144e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.62592e-03\tAbsError: 3.88409e+13\n", + " Region: \"zone_1\"\tRelError: 8.48628e-03\tAbsError: 1.12576e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.48628e-03\tAbsError: 1.12576e-06\n", + " Region: \"zone_3\"\tRelError: 1.13964e-03\tAbsError: 3.88409e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.87588e-04\tAbsError: 2.04690e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11011e-04\tAbsError: 1.83719e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.41039e-04\tAbsError: 1.18470e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.95503e+02\tAbsError: 4.24862e+16\n", + " Region: \"zone_1\"\tRelError: 2.94334e+02\tAbsError: 7.54578e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.94334e+02\tAbsError: 7.54578e-02\n", + " Region: \"zone_3\"\tRelError: 1.01169e+02\tAbsError: 4.24862e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38365e+01\tAbsError: 1.85875e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.71030e+01\tAbsError: 2.38987e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29656e-01\tAbsError: 7.54578e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 3.20441e-01\tAbsError: 1.14285e+14\n", + " Region: \"zone_1\"\tRelError: 1.39310e-02\tAbsError: 1.62545e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39310e-02\tAbsError: 1.62545e-04\n", + " Region: \"zone_3\"\tRelError: 3.06510e-01\tAbsError: 1.14285e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.97341e-01\tAbsError: 5.84084e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.93145e-03\tAbsError: 1.08444e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.37145e-04\tAbsError: 1.67877e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.33163e-03\tAbsError: 7.03544e+12\n", + " Region: \"zone_1\"\tRelError: 6.88994e-05\tAbsError: 8.74550e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 6.88994e-05\tAbsError: 8.74550e-07\n", + " Region: \"zone_3\"\tRelError: 1.26273e-03\tAbsError: 7.03544e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.78279e-04\tAbsError: 4.08452e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.87916e-05\tAbsError: 2.95092e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.95662e-04\tAbsError: 9.67670e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.36114e+02\tAbsError: 2.84935e+18\n", + " Region: \"zone_1\"\tRelError: 8.09924e+01\tAbsError: 8.80542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.09924e+01\tAbsError: 8.80542e-02\n", + " Region: \"zone_3\"\tRelError: 7.55122e+02\tAbsError: 2.84935e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.43696e+02\tAbsError: 1.30907e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.47319e+00\tAbsError: 1.54028e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01953e+02\tAbsError: 8.80543e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 8.88631e-08\tAbsError: 3.64677e+08\n", + " Region: \"zone_1\"\tRelError: 7.93721e-08\tAbsError: 3.00603e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.93721e-08\tAbsError: 3.00603e-11\n", + " Region: \"zone_3\"\tRelError: 9.49096e-09\tAbsError: 3.64677e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.13123e-09\tAbsError: 1.87502e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.36663e-10\tAbsError: 1.77175e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 5.72307e-09\tAbsError: 3.29037e-11\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 8.69833e-04\tAbsError: 5.99552e+10\n", + " Region: \"zone_1\"\tRelError: 6.49723e-06\tAbsError: 1.04391e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 6.49723e-06\tAbsError: 1.04391e-07\n", + " Region: \"zone_3\"\tRelError: 8.63335e-04\tAbsError: 5.99552e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.33783e-04\tAbsError: 2.55001e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.93958e-05\tAbsError: 5.74052e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56229e-07\tAbsError: 1.10596e-07\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.94286e+02\tAbsError: 9.83428e+15\n", + " Region: \"zone_1\"\tRelError: 5.09637e+00\tAbsError: 7.09984e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.09637e+00\tAbsError: 7.09984e-02\n", + " Region: \"zone_3\"\tRelError: 4.89190e+02\tAbsError: 9.83428e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34021e+01\tAbsError: 5.67320e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.75629e+02\tAbsError: 4.16108e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58896e-01\tAbsError: 7.09985e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:20\u001b[0m.\u001b[1;36m102\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.95\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 6\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 1.48929e-08\tAbsError: 9.78087e+07\n", + " Region: \"zone_1\"\tRelError: 2.39367e-09\tAbsError: 9.98115e-12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39367e-09\tAbsError: 9.98115e-12\n", + " Region: \"zone_3\"\tRelError: 1.24992e-08\tAbsError: 9.78087e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.82653e-09\tAbsError: 5.13414e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.35561e-10\tAbsError: 4.64672e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 9.13709e-09\tAbsError: 1.21236e-11\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 2.93063e-10\tAbsError: 3.78900e+04\n", + " Region: \"zone_1\"\tRelError: 2.84034e-12\tAbsError: 4.64333e-14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.84034e-12\tAbsError: 4.64333e-14\n", + " Region: \"zone_3\"\tRelError: 2.90222e-10\tAbsError: 3.78900e+04\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.66433e-10\tAbsError: 1.60248e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.37165e-11\tAbsError: 2.18653e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.25207e-14\tAbsError: 4.91959e-14\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:20\u001b[0m.\u001b[1;36m352\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.9\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Iteration: 1\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 2.12599e+03\tAbsError: 2.38404e+18\n", + " Region: \"zone_1\"\tRelError: 3.81488e+02\tAbsError: 8.49344e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.81488e+02\tAbsError: 8.49344e-02\n", + " Region: \"zone_3\"\tRelError: 1.74450e+03\tAbsError: 2.38404e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13077e+01\tAbsError: 1.11961e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.44770e+03\tAbsError: 1.26443e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 2.75501e+02\tAbsError: 8.49344e-02\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:20\u001b[0m.\u001b[1;36m390\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.2\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.12665e+04\tAbsError: 6.12458e+14\n", + " Region: \"zone_1\"\tRelError: 6.44959e-01\tAbsError: 6.59600e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.44959e-01\tAbsError: 6.59600e-02\n", + " Region: \"zone_3\"\tRelError: 5.12658e+04\tAbsError: 6.12458e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.80729e+04\tAbsError: 2.42664e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.31928e+04\tAbsError: 3.69795e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27747e-01\tAbsError: 6.59600e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.78763e+01\tAbsError: 4.03409e+17\n", + " Region: \"zone_1\"\tRelError: 4.29478e+00\tAbsError: 8.15209e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.29478e+00\tAbsError: 8.15209e-02\n", + " Region: \"zone_3\"\tRelError: 2.35815e+01\tAbsError: 4.03409e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06155e+01\tAbsError: 1.97169e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.06241e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 3.96600e+00\tAbsError: 8.15210e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.27822e+01\tAbsError: 4.38306e+17\n", + " Region: \"zone_1\"\tRelError: 2.71885e+01\tAbsError: 4.22090e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.71885e+01\tAbsError: 4.22090e-02\n", + " Region: \"zone_3\"\tRelError: 5.59377e+00\tAbsError: 4.38306e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83490e-01\tAbsError: 2.08688e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.75359e-01\tAbsError: 2.29619e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.03492e+00\tAbsError: 4.22091e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.20842e+03\tAbsError: 4.11496e+14\n", + " Region: \"zone_1\"\tRelError: 3.41372e-01\tAbsError: 6.01966e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.41372e-01\tAbsError: 6.01966e-02\n", + " Region: \"zone_3\"\tRelError: 1.20808e+03\tAbsError: 4.11496e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.72015e+02\tAbsError: 2.66199e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.35961e+02\tAbsError: 1.45297e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03148e-01\tAbsError: 6.01966e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.19725e+01\tAbsError: 1.92958e+17\n", + " Region: \"zone_1\"\tRelError: 2.64183e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64183e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 5.55416e+00\tAbsError: 1.92958e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86635e-01\tAbsError: 9.77277e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83108e-01\tAbsError: 9.52302e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.98441e+00\tAbsError: 4.09542e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.21485e+01\tAbsError: 8.61846e+15\n", + " Region: \"zone_1\"\tRelError: 3.04717e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.04717e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.67686e+00\tAbsError: 8.61846e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94516e-01\tAbsError: 4.66248e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94484e-01\tAbsError: 3.95598e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.78603e-02\tAbsError: 4.09542e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 6.15676e+01\tAbsError: 4.87835e+17\n", + " Region: \"zone_1\"\tRelError: 5.20397e+01\tAbsError: 3.22429e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.20397e+01\tAbsError: 3.22429e-02\n", + " Region: \"zone_3\"\tRelError: 9.52795e+00\tAbsError: 4.87835e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.21731e-01\tAbsError: 2.43628e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.25441e-01\tAbsError: 2.44207e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 8.28077e+00\tAbsError: 3.22432e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 8.30077e+02\tAbsError: 1.03233e+17\n", + " Region: \"zone_1\"\tRelError: 1.14748e+00\tAbsError: 7.77584e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14748e+00\tAbsError: 7.77584e-02\n", + " Region: \"zone_3\"\tRelError: 8.28930e+02\tAbsError: 1.03233e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61472e+02\tAbsError: 6.58302e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.67005e+02\tAbsError: 3.74024e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.53792e-01\tAbsError: 7.77584e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.04768e+03\tAbsError: 1.13224e+14\n", + " Region: \"zone_1\"\tRelError: 8.26456e-02\tAbsError: 5.35128e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.26456e-02\tAbsError: 5.35128e-02\n", + " Region: \"zone_3\"\tRelError: 1.04760e+03\tAbsError: 1.13224e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27525e+02\tAbsError: 4.98494e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.19988e+02\tAbsError: 6.33747e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.29780e-02\tAbsError: 5.35129e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 5.59678e+00\tAbsError: 2.20718e+17\n", + " Region: \"zone_1\"\tRelError: 8.54328e-01\tAbsError: 3.07631e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.54328e-01\tAbsError: 3.07631e-02\n", + " Region: \"zone_3\"\tRelError: 4.74245e+00\tAbsError: 2.20718e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57165e-01\tAbsError: 1.09369e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.88364e-01\tAbsError: 1.11350e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 3.39692e+00\tAbsError: 3.07632e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.07800e+00\tAbsError: 3.45404e+14\n", + " Region: \"zone_1\"\tRelError: 5.44178e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.44178e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.53382e+00\tAbsError: 3.45404e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90662e-01\tAbsError: 1.56300e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.87478e-01\tAbsError: 1.89103e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.56802e-02\tAbsError: 3.07632e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.94701e+03\tAbsError: 3.51605e+16\n", + " Region: \"zone_1\"\tRelError: 2.32944e+01\tAbsError: 7.35755e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32944e+01\tAbsError: 7.35755e-02\n", + " Region: \"zone_3\"\tRelError: 2.92372e+03\tAbsError: 3.51605e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04217e+01\tAbsError: 2.19896e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.91312e+03\tAbsError: 1.31709e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76554e-01\tAbsError: 7.35755e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.23212e+01\tAbsError: 1.83511e+17\n", + " Region: \"zone_1\"\tRelError: 1.26811e+01\tAbsError: 2.58959e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26811e+01\tAbsError: 2.58959e-02\n", + " Region: \"zone_3\"\tRelError: 9.64015e+00\tAbsError: 1.83511e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.40244e-01\tAbsError: 9.20472e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.21277e-01\tAbsError: 9.14639e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 9.07863e+00\tAbsError: 2.58031e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 5.61412e+03\tAbsError: 4.48404e+13\n", + " Region: \"zone_1\"\tRelError: 6.49958e-02\tAbsError: 4.56537e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.49958e-02\tAbsError: 4.56537e-02\n", + " Region: \"zone_3\"\tRelError: 5.61405e+03\tAbsError: 4.48404e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.22859e+03\tAbsError: 1.56495e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.38540e+03\tAbsError: 2.91909e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.52942e-02\tAbsError: 4.56538e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.11313e+00\tAbsError: 4.26791e+13\n", + " Region: \"zone_1\"\tRelError: 7.05940e-02\tAbsError: 2.58377e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.05940e-02\tAbsError: 2.58377e-02\n", + " Region: \"zone_3\"\tRelError: 1.04254e+00\tAbsError: 4.26791e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14646e-01\tAbsError: 2.38411e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.85599e-01\tAbsError: 1.88379e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22941e-02\tAbsError: 2.58015e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.40459e+00\tAbsError: 1.40151e+17\n", + " Region: \"zone_1\"\tRelError: 9.91077e-01\tAbsError: 2.58298e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.91077e-01\tAbsError: 2.58298e-02\n", + " Region: \"zone_3\"\tRelError: 2.41351e+00\tAbsError: 1.40151e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.12962e-01\tAbsError: 7.03247e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.20637e-01\tAbsError: 6.98261e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67991e+00\tAbsError: 2.58976e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.38842e+01\tAbsError: 2.01361e+16\n", + " Region: \"zone_1\"\tRelError: 2.27796e+00\tAbsError: 1.10520e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27796e+00\tAbsError: 1.10520e-02\n", + " Region: \"zone_3\"\tRelError: 6.16063e+01\tAbsError: 2.01361e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78655e-02\tAbsError: 1.01092e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.72051e-02\tAbsError: 1.00269e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.15012e+01\tAbsError: 1.10525e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.69574e+03\tAbsError: 2.98489e+15\n", + " Region: \"zone_1\"\tRelError: 2.69436e+00\tAbsError: 6.88788e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.69436e+00\tAbsError: 6.88788e-02\n", + " Region: \"zone_3\"\tRelError: 1.69305e+03\tAbsError: 2.98489e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.37947e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.68391e+03\tAbsError: 1.60542e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40413e-01\tAbsError: 6.88788e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.87168e+02\tAbsError: 3.87608e+13\n", + " Region: \"zone_1\"\tRelError: 4.83851e-02\tAbsError: 3.63251e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.83851e-02\tAbsError: 3.63251e-02\n", + " Region: \"zone_3\"\tRelError: 2.87120e+02\tAbsError: 3.87608e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95625e+02\tAbsError: 2.20451e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.14461e+01\tAbsError: 1.67157e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.86857e-02\tAbsError: 3.63252e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.83480e-01\tAbsError: 2.88954e+12\n", + " Region: \"zone_1\"\tRelError: 1.35212e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35212e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.69958e-01\tAbsError: 2.88954e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88338e-01\tAbsError: 2.12977e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.78790e-02\tAbsError: 2.67656e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37417e-02\tAbsError: 9.16534e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.15760e+00\tAbsError: 3.46533e+16\n", + " Region: \"zone_1\"\tRelError: 4.44487e-01\tAbsError: 9.16511e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44487e-01\tAbsError: 9.16511e-03\n", + " Region: \"zone_3\"\tRelError: 7.13113e-01\tAbsError: 3.46533e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34412e-01\tAbsError: 1.73980e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.38070e-02\tAbsError: 1.72552e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.24894e-01\tAbsError: 9.16533e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.32137e+02\tAbsError: 2.29730e+15\n", + " Region: \"zone_1\"\tRelError: 2.07460e+00\tAbsError: 6.35445e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07460e+00\tAbsError: 6.35445e-02\n", + " Region: \"zone_3\"\tRelError: 4.30062e+02\tAbsError: 2.29730e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.80679e+02\tAbsError: 1.41594e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.92715e+01\tAbsError: 8.81358e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11655e-01\tAbsError: 6.35446e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.76114e+00\tAbsError: 3.11157e+15\n", + " Region: \"zone_1\"\tRelError: 1.46998e-01\tAbsError: 5.72926e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46998e-01\tAbsError: 5.72926e-05\n", + " Region: \"zone_3\"\tRelError: 1.61414e+00\tAbsError: 3.11157e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.13906e-03\tAbsError: 1.60788e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.01418e-04\tAbsError: 1.50369e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60610e+00\tAbsError: 5.72926e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.80174e+03\tAbsError: 1.56957e+13\n", + " Region: \"zone_1\"\tRelError: 3.66656e-02\tAbsError: 2.57139e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.66656e-02\tAbsError: 2.57139e-02\n", + " Region: \"zone_3\"\tRelError: 3.80170e+03\tAbsError: 1.56957e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.80091e+03\tAbsError: 6.65708e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.49117e-01\tAbsError: 1.50300e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74641e-02\tAbsError: 2.58924e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 5.74119e-02\tAbsError: 3.00253e+15\n", + " Region: \"zone_1\"\tRelError: 1.72667e-02\tAbsError: 6.21206e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72667e-02\tAbsError: 6.21206e-05\n", + " Region: \"zone_3\"\tRelError: 4.01452e-02\tAbsError: 3.00253e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04052e-02\tAbsError: 1.53972e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.58359e-03\tAbsError: 1.46281e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81563e-02\tAbsError: 6.25380e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.38444e-02\tAbsError: 3.70458e+12\n", + " Region: \"zone_1\"\tRelError: 3.59871e-03\tAbsError: 2.71390e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59871e-03\tAbsError: 2.71390e-05\n", + " Region: \"zone_3\"\tRelError: 9.02457e-02\tAbsError: 3.70458e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.84320e-02\tAbsError: 1.19345e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.76575e-03\tAbsError: 2.51114e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.79561e-05\tAbsError: 2.71828e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.61238e+00\tAbsError: 1.11231e+13\n", + " Region: \"zone_1\"\tRelError: 2.12491e-02\tAbsError: 1.77022e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12491e-02\tAbsError: 1.77022e-02\n", + " Region: \"zone_3\"\tRelError: 2.59113e+00\tAbsError: 1.11231e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.56346e+00\tAbsError: 5.43531e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.10503e-03\tAbsError: 1.05796e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.15668e-02\tAbsError: 1.77023e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.33375e+03\tAbsError: 3.70248e+14\n", + " Region: \"zone_1\"\tRelError: 8.99378e-02\tAbsError: 5.74069e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.99378e-02\tAbsError: 5.74069e-02\n", + " Region: \"zone_3\"\tRelError: 4.33366e+03\tAbsError: 3.70248e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01982e+02\tAbsError: 1.56203e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.13159e+03\tAbsError: 2.14045e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.01902e-02\tAbsError: 5.74070e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.77034e-04\tAbsError: 8.73262e+11\n", + " Region: \"zone_1\"\tRelError: 7.70938e-06\tAbsError: 1.62726e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 7.70938e-06\tAbsError: 1.62726e-08\n", + " Region: \"zone_3\"\tRelError: 1.69324e-04\tAbsError: 8.73262e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.91186e-06\tAbsError: 4.56387e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.48171e-07\tAbsError: 4.16875e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67064e-04\tAbsError: 1.62726e-08\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 5.81678e-01\tAbsError: 8.11567e+12\n", + " Region: \"zone_1\"\tRelError: 2.44659e-03\tAbsError: 2.61873e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.44659e-03\tAbsError: 2.61873e-05\n", + " Region: \"zone_3\"\tRelError: 5.79232e-01\tAbsError: 8.11567e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.76787e-01\tAbsError: 1.13091e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.40509e-03\tAbsError: 6.98476e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.99008e-05\tAbsError: 2.64685e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.14148e-05\tAbsError: 7.36262e+11\n", + " Region: \"zone_1\"\tRelError: 4.55231e-07\tAbsError: 9.54534e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.55231e-07\tAbsError: 9.54534e-09\n", + " Region: \"zone_3\"\tRelError: 1.09596e-05\tAbsError: 7.36262e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.23017e-06\tAbsError: 3.79166e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.26674e-07\tAbsError: 3.57096e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00275e-06\tAbsError: 1.00816e-08\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.96038e-05\tAbsError: 5.27329e+08\n", + " Region: \"zone_1\"\tRelError: 3.38320e-07\tAbsError: 2.80513e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.38320e-07\tAbsError: 2.80513e-09\n", + " Region: \"zone_3\"\tRelError: 4.92654e-05\tAbsError: 5.27329e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.82203e-05\tAbsError: 1.20057e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04006e-06\tAbsError: 4.07273e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 5.04648e-09\tAbsError: 2.84942e-09\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:23\u001b[0m.\u001b[1;36m231\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:23\u001b[0m.\u001b[1;36m231\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 4.35849e-04\tAbsError: 3.72621e+08\n", + " Region: \"zone_1\"\tRelError: 9.74733e-08\tAbsError: 1.39396e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.74733e-08\tAbsError: 1.39396e-09\n", + " Region: \"zone_3\"\tRelError: 4.35752e-04\tAbsError: 3.72621e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.34041e-04\tAbsError: 4.56136e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.70891e-06\tAbsError: 3.27007e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16343e-09\tAbsError: 1.45042e-09\n", + "Iteration: 8\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 1.02608e+03\tAbsError: 1.57087e+14\n", + " Region: \"zone_1\"\tRelError: 1.57533e-01\tAbsError: 5.02452e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57533e-01\tAbsError: 5.02452e-02\n", + " Region: \"zone_3\"\tRelError: 1.02593e+03\tAbsError: 1.57087e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24945e+02\tAbsError: 5.51555e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.00908e+02\tAbsError: 1.01931e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.22342e-02\tAbsError: 5.02452e-02\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.46859e-12\tAbsError: 7.81503e+04\n", + " Region: \"zone_1\"\tRelError: 2.38783e-13\tAbsError: 1.16589e-15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38783e-13\tAbsError: 1.16589e-15\n", + " Region: \"zone_3\"\tRelError: 2.22981e-12\tAbsError: 7.81503e+04\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.62269e-13\tAbsError: 3.99082e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.70018e-14\tAbsError: 3.82421e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05054e-12\tAbsError: 1.16589e-15\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 6.63476e-12\tAbsError: 3.12455e+04\n", + " Region: \"zone_1\"\tRelError: 2.28845e-13\tAbsError: 1.11990e-16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.28845e-13\tAbsError: 1.11990e-16\n", + " Region: \"zone_3\"\tRelError: 6.40592e-12\tAbsError: 3.12455e+04\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.32925e-12\tAbsError: 1.56395e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.20403e-14\tAbsError: 1.56060e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.46296e-14\tAbsError: 1.15404e-16\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:23\u001b[0m.\u001b[1;36m696\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:23\u001b[0m.\u001b[1;36m696\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.20555555555555557\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 9\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 3.51162e+02\tAbsError: 1.51715e+14\n", + " Region: \"zone_1\"\tRelError: 1.16438e-01\tAbsError: 4.17804e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16438e-01\tAbsError: 4.17804e-02\n", + " Region: \"zone_3\"\tRelError: 3.51046e+02\tAbsError: 1.51715e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.03907e+02\tAbsError: 8.14342e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.70825e+01\tAbsError: 7.02811e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.60305e-02\tAbsError: 4.17805e-02\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.62677e+00\tAbsError: 8.55868e+15\n", + " Region: \"zone_1\"\tRelError: 3.93566e+00\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.93566e+00\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.69111e+00\tAbsError: 8.55868e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94568e-01\tAbsError: 4.83229e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94557e-01\tAbsError: 3.72639e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01989e-01\tAbsError: 4.09542e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.46957e+02\tAbsError: 7.87014e+13\n", + " Region: \"zone_1\"\tRelError: 4.00573e-02\tAbsError: 3.17370e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.00573e-02\tAbsError: 3.17370e-02\n", + " Region: \"zone_3\"\tRelError: 1.46917e+02\tAbsError: 7.87014e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42905e+02\tAbsError: 5.10431e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.97144e+00\tAbsError: 7.35971e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.02690e-02\tAbsError: 3.17371e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.68467e+00\tAbsError: 3.35446e+14\n", + " Region: \"zone_1\"\tRelError: 1.36557e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36557e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.54812e+00\tAbsError: 3.35446e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90679e-01\tAbsError: 1.72457e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.87899e-01\tAbsError: 1.62989e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.95382e-02\tAbsError: 3.07632e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:24\u001b[0m.\u001b[1;36m280\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:24\u001b[0m.\u001b[1;36m313\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.15 bias\u001b[0m \n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 3.42199e+01\tAbsError: 6.33431e+13\n", + " Region: \"zone_1\"\tRelError: 3.22245e-02\tAbsError: 2.58704e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.22245e-02\tAbsError: 2.58704e-02\n", + " Region: \"zone_3\"\tRelError: 3.41876e+01\tAbsError: 6.33431e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.39955e+01\tAbsError: 1.79340e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.59887e-01\tAbsError: 6.15497e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.22245e-02\tAbsError: 2.46614e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:24\u001b[0m.\u001b[1;36m348\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 0.1\u001b[0m \n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.36416e+01\tAbsError: 9.09726e+15\n", + " Region: \"zone_1\"\tRelError: 1.19443e+01\tAbsError: 4.20726e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19443e+01\tAbsError: 4.20726e-02\n", + " Region: \"zone_3\"\tRelError: 1.69727e+00\tAbsError: 9.09726e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.03202e-01\tAbsError: 4.92151e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.03171e-01\tAbsError: 4.17576e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.08998e-02\tAbsError: 4.20726e-02\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:24\u001b[0m.\u001b[1;36m417\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:24\u001b[0m.\u001b[1;36m449\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.2 bias\u001b[0m \n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:24\u001b[0m.\u001b[1;36m484\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.1\u001b[0m \n", + "number of equations 22602\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.58081e+00\tAbsError: 1.11842e+14\n", + " Region: \"zone_1\"\tRelError: 1.21721e-02\tAbsError: 1.03782e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21721e-02\tAbsError: 1.03782e-02\n", + " Region: \"zone_3\"\tRelError: 1.56863e+00\tAbsError: 1.11842e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.55004e+00\tAbsError: 4.08486e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.14119e-03\tAbsError: 1.07757e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24479e-02\tAbsError: 1.03783e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.10405e+00\tAbsError: 2.84626e+13\n", + " Region: \"zone_1\"\tRelError: 5.09442e-02\tAbsError: 2.58970e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.09442e-02\tAbsError: 2.58970e-02\n", + " Region: \"zone_3\"\tRelError: 1.05311e+00\tAbsError: 2.84626e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14915e-01\tAbsError: 1.81960e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.86897e-01\tAbsError: 1.02666e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.12979e-02\tAbsError: 2.58565e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.89696e+00\tAbsError: 3.83121e+14\n", + " Region: \"zone_1\"\tRelError: 3.29440e-01\tAbsError: 3.20820e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.29440e-01\tAbsError: 3.20820e-02\n", + " Region: \"zone_3\"\tRelError: 1.56752e+00\tAbsError: 3.83121e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.06173e-01\tAbsError: 1.73741e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.02918e-01\tAbsError: 2.09380e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.84246e-02\tAbsError: 3.20820e-02\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.99331e-01\tAbsError: 1.43366e+14\n", + " Region: \"zone_1\"\tRelError: 1.64438e-02\tAbsError: 1.92112e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64438e-02\tAbsError: 1.92112e-04\n", + " Region: \"zone_3\"\tRelError: 1.82888e-01\tAbsError: 1.43366e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.72124e-01\tAbsError: 6.88270e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04833e-02\tAbsError: 1.36484e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80128e-04\tAbsError: 1.98494e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.55178e+02\tAbsError: 4.19296e+18\n", + " Region: \"zone_1\"\tRelError: 9.46717e+01\tAbsError: 8.96715e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.46717e+01\tAbsError: 8.96715e-02\n", + " Region: \"zone_3\"\tRelError: 5.60506e+02\tAbsError: 4.19296e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.71840e+02\tAbsError: 2.09941e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.42818e+02\tAbsError: 2.09356e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45848e+02\tAbsError: 8.96718e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.52899e+03\tAbsError: 5.52426e+18\n", + " Region: \"zone_1\"\tRelError: 1.19471e+02\tAbsError: 9.11937e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19471e+02\tAbsError: 9.11937e-02\n", + " Region: \"zone_3\"\tRelError: 1.40951e+03\tAbsError: 5.52426e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00001e+03\tAbsError: 2.32297e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.07895e+02\tAbsError: 3.20129e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 3.01606e+02\tAbsError: 9.11941e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.87738e-01\tAbsError: 1.50257e+12\n", + " Region: \"zone_1\"\tRelError: 1.63299e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63299e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.71408e-01\tAbsError: 1.50257e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88723e-01\tAbsError: 2.92089e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.61472e-02\tAbsError: 1.21048e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65380e-02\tAbsError: 9.16534e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.15294e+00\tAbsError: 5.01228e+13\n", + " Region: \"zone_1\"\tRelError: 4.66659e-02\tAbsError: 2.58180e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.66659e-02\tAbsError: 2.58180e-02\n", + " Region: \"zone_3\"\tRelError: 1.10628e+00\tAbsError: 5.01228e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.41002e-01\tAbsError: 2.79935e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.21167e-01\tAbsError: 2.21292e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.41094e-02\tAbsError: 2.57601e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 6.38047e-04\tAbsError: 8.40237e+10\n", + " Region: \"zone_1\"\tRelError: 8.71093e-06\tAbsError: 1.41888e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 8.71093e-06\tAbsError: 1.41888e-07\n", + " Region: \"zone_3\"\tRelError: 6.29336e-04\tAbsError: 8.40237e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.88281e-04\tAbsError: 3.39539e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.08430e-05\tAbsError: 8.06283e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12387e-07\tAbsError: 1.50351e-07\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 5.59128e+02\tAbsError: 3.70246e+18\n", + " Region: \"zone_1\"\tRelError: 7.27506e+01\tAbsError: 8.66949e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.27506e+01\tAbsError: 8.66949e-02\n", + " Region: \"zone_3\"\tRelError: 4.86377e+02\tAbsError: 3.70246e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.84555e+01\tAbsError: 1.87060e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.32939e+01\tAbsError: 1.83186e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 3.64628e+02\tAbsError: 8.66950e-02\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 3.36908e-10\tAbsError: 5.80084e+04\n", + " Region: \"zone_1\"\tRelError: 5.10232e-12\tAbsError: 8.55220e-14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.10232e-12\tAbsError: 8.55220e-14\n", + " Region: \"zone_3\"\tRelError: 3.31806e-10\tAbsError: 5.80084e+04\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87749e-10\tAbsError: 1.56061e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.38210e-11\tAbsError: 4.24023e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.35487e-13\tAbsError: 9.08369e-14\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 7.99996e+02\tAbsError: 4.79855e+18\n", + " Region: \"zone_1\"\tRelError: 4.84124e+02\tAbsError: 8.83465e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.84124e+02\tAbsError: 8.83465e-02\n", + " Region: \"zone_3\"\tRelError: 3.15873e+02\tAbsError: 4.79855e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.69613e+01\tAbsError: 2.06031e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.73824e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09911e+02\tAbsError: 8.83466e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.96849e-02\tAbsError: 2.07362e+12\n", + " Region: \"zone_1\"\tRelError: 7.02885e-04\tAbsError: 1.90198e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.02885e-04\tAbsError: 1.90198e-05\n", + " Region: \"zone_3\"\tRelError: 8.89820e-02\tAbsError: 2.07362e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.78375e-02\tAbsError: 8.90891e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10276e-03\tAbsError: 1.18273e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.17313e-05\tAbsError: 1.96984e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:25\u001b[0m.\u001b[1;36m555\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.2\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.15526e-01\tAbsError: 2.42634e+12\n", + " Region: \"zone_1\"\tRelError: 1.61579e-02\tAbsError: 1.08344e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61579e-02\tAbsError: 1.08344e-02\n", + " Region: \"zone_3\"\tRelError: 3.99368e-01\tAbsError: 2.42634e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91128e-01\tAbsError: 1.32019e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.18221e-02\tAbsError: 1.10616e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64183e-02\tAbsError: 1.08344e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.53516e+01\tAbsError: 7.53728e+17\n", + " Region: \"zone_1\"\tRelError: 9.71612e+00\tAbsError: 8.34500e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.71612e+00\tAbsError: 8.34500e-02\n", + " Region: \"zone_3\"\tRelError: 2.56355e+01\tAbsError: 7.53728e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.85616e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.68112e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 7.63549e+00\tAbsError: 8.34501e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.40982e-05\tAbsError: 1.92019e+08\n", + " Region: \"zone_1\"\tRelError: 4.03285e-08\tAbsError: 1.17477e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.03285e-08\tAbsError: 1.17477e-09\n", + " Region: \"zone_3\"\tRelError: 3.40579e-05\tAbsError: 1.92019e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.36060e-05\tAbsError: 5.55442e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.49187e-07\tAbsError: 1.36475e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67835e-09\tAbsError: 1.26430e-09\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 6.11681e+02\tAbsError: 9.73831e+17\n", + " Region: \"zone_1\"\tRelError: 1.66118e+01\tAbsError: 8.52530e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66118e+01\tAbsError: 8.52530e-02\n", + " Region: \"zone_3\"\tRelError: 5.95070e+02\tAbsError: 9.73831e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 4.64637e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.45073e+02\tAbsError: 5.09194e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.40997e+02\tAbsError: 8.52530e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:26\u001b[0m.\u001b[1;36m006\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.4\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.04481e-01\tAbsError: 6.34896e+11\n", + " Region: \"zone_1\"\tRelError: 4.71054e-04\tAbsError: 5.88390e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.71054e-04\tAbsError: 5.88390e-06\n", + " Region: \"zone_3\"\tRelError: 1.04010e-01\tAbsError: 6.34896e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03474e-01\tAbsError: 2.77921e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.25244e-04\tAbsError: 3.56974e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10538e-05\tAbsError: 6.12131e-06\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.57138e+02\tAbsError: 1.91537e+17\n", + " Region: \"zone_1\"\tRelError: 2.14306e+01\tAbsError: 7.98885e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.14306e+01\tAbsError: 7.98885e-02\n", + " Region: \"zone_3\"\tRelError: 4.35707e+02\tAbsError: 1.91537e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.17395e+02\tAbsError: 1.23405e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.17404e+02\tAbsError: 6.81323e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 9.07859e-01\tAbsError: 7.98942e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.21485e+01\tAbsError: 8.61846e+15\n", + " Region: \"zone_1\"\tRelError: 3.04717e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.04717e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.67686e+00\tAbsError: 8.61846e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94516e-01\tAbsError: 4.66248e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94484e-01\tAbsError: 3.95598e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.78603e-02\tAbsError: 4.09542e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.53509e+03\tAbsError: 2.64355e+17\n", + " Region: \"zone_1\"\tRelError: 8.11560e+00\tAbsError: 8.18705e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.11560e+00\tAbsError: 8.18705e-02\n", + " Region: \"zone_3\"\tRelError: 1.52697e+03\tAbsError: 2.64355e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.51231e+03\tAbsError: 1.58326e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.19219e+01\tAbsError: 1.06029e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73627e+00\tAbsError: 8.18706e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.34755e-05\tAbsError: 1.52606e+07\n", + " Region: \"zone_1\"\tRelError: 7.60373e-09\tAbsError: 1.04179e-10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.60373e-09\tAbsError: 1.04179e-10\n", + " Region: \"zone_3\"\tRelError: 1.34679e-05\tAbsError: 1.52606e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33958e-05\tAbsError: 4.82777e+06\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.19416e-08\tAbsError: 1.04328e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01664e-10\tAbsError: 1.11640e-10\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:26\u001b[0m.\u001b[1;36m619\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:26\u001b[0m.\u001b[1;36m619\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.3111111111111111\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.31502e+02\tAbsError: 6.87028e+16\n", + " Region: \"zone_1\"\tRelError: 1.68094e+01\tAbsError: 7.59542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68094e+01\tAbsError: 7.59542e-02\n", + " Region: \"zone_3\"\tRelError: 8.14692e+02\tAbsError: 6.87028e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.83334e+02\tAbsError: 4.38759e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.31160e+02\tAbsError: 2.48269e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.98992e-01\tAbsError: 7.59565e-02\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.07800e+00\tAbsError: 3.45404e+14\n", + " Region: \"zone_1\"\tRelError: 5.44178e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.44178e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.53382e+00\tAbsError: 3.45404e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90662e-01\tAbsError: 1.56300e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.87478e-01\tAbsError: 1.89103e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.56802e-02\tAbsError: 3.07632e-02\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.56244e+00\tAbsError: 8.45570e+15\n", + " Region: \"zone_1\"\tRelError: 3.85573e+00\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85573e+00\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.70670e+00\tAbsError: 8.45570e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94571e-01\tAbsError: 4.92914e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94557e-01\tAbsError: 3.52655e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17574e-01\tAbsError: 4.09542e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.31694e+02\tAbsError: 8.22528e+16\n", + " Region: \"zone_1\"\tRelError: 1.67084e+02\tAbsError: 7.81452e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67084e+02\tAbsError: 7.81452e-02\n", + " Region: \"zone_3\"\tRelError: 6.46099e+01\tAbsError: 8.22528e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.91409e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.53588e+01\tAbsError: 4.31119e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51084e-01\tAbsError: 7.81452e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.51444e+02\tAbsError: 6.18288e+15\n", + " Region: \"zone_1\"\tRelError: 5.96684e+01\tAbsError: 7.15580e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.96684e+01\tAbsError: 7.15580e-02\n", + " Region: \"zone_3\"\tRelError: 4.91775e+02\tAbsError: 6.18288e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.96477e+01\tAbsError: 1.82578e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.51973e+02\tAbsError: 4.35710e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55063e-01\tAbsError: 7.15593e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.67739e+00\tAbsError: 3.26551e+14\n", + " Region: \"zone_1\"\tRelError: 1.13651e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13651e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.56374e+00\tAbsError: 3.26551e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91179e-01\tAbsError: 1.98410e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.87607e-01\tAbsError: 1.28141e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.49517e-02\tAbsError: 3.07632e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.11313e+00\tAbsError: 4.26791e+13\n", + " Region: \"zone_1\"\tRelError: 7.05940e-02\tAbsError: 2.58377e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.05940e-02\tAbsError: 2.58377e-02\n", + " Region: \"zone_3\"\tRelError: 1.04254e+00\tAbsError: 4.26791e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14646e-01\tAbsError: 2.38411e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.85599e-01\tAbsError: 1.88379e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22941e-02\tAbsError: 2.58015e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.59844e+02\tAbsError: 1.24880e+16\n", + " Region: \"zone_1\"\tRelError: 1.03700e+01\tAbsError: 7.40072e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03700e+01\tAbsError: 7.40072e-02\n", + " Region: \"zone_3\"\tRelError: 4.49474e+02\tAbsError: 1.24880e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 4.24800e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.40305e+02\tAbsError: 8.23998e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69842e-01\tAbsError: 7.40073e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.69894e+00\tAbsError: 9.02984e+15\n", + " Region: \"zone_1\"\tRelError: 4.98629e+00\tAbsError: 4.20726e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.98629e+00\tAbsError: 4.20726e-02\n", + " Region: \"zone_3\"\tRelError: 1.71265e+00\tAbsError: 9.02984e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.03254e-01\tAbsError: 5.10935e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.03243e-01\tAbsError: 3.92049e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06149e-01\tAbsError: 4.20726e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.49917e+02\tAbsError: 2.95788e+15\n", + " Region: \"zone_1\"\tRelError: 3.04492e+00\tAbsError: 6.65940e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.04492e+00\tAbsError: 6.65940e-02\n", + " Region: \"zone_3\"\tRelError: 1.46872e+02\tAbsError: 2.95788e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.68810e+01\tAbsError: 1.83594e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.19869e+02\tAbsError: 1.12194e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21422e-01\tAbsError: 6.65969e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.83480e-01\tAbsError: 2.88954e+12\n", + " Region: \"zone_1\"\tRelError: 1.35212e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35212e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.69958e-01\tAbsError: 2.88954e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88338e-01\tAbsError: 2.12977e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.78790e-02\tAbsError: 2.67656e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37417e-02\tAbsError: 9.16534e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.13583e+00\tAbsError: 3.35166e+13\n", + " Region: \"zone_1\"\tRelError: 6.49986e-02\tAbsError: 2.58787e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.49986e-02\tAbsError: 2.58787e-02\n", + " Region: \"zone_3\"\tRelError: 1.07083e+00\tAbsError: 3.35166e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14794e-01\tAbsError: 2.31889e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.90894e-01\tAbsError: 1.03277e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.51440e-02\tAbsError: 2.58923e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.11429e+03\tAbsError: 2.38864e+15\n", + " Region: \"zone_1\"\tRelError: 1.50596e+00\tAbsError: 6.93659e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50596e+00\tAbsError: 6.93659e-02\n", + " Region: \"zone_3\"\tRelError: 2.11278e+03\tAbsError: 2.38864e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.71799e+01\tAbsError: 1.29149e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.07547e+03\tAbsError: 1.09714e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33696e-01\tAbsError: 6.93660e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.83976e+00\tAbsError: 3.73254e+14\n", + " Region: \"zone_1\"\tRelError: 2.58614e-01\tAbsError: 3.20820e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58614e-01\tAbsError: 3.20820e-02\n", + " Region: \"zone_3\"\tRelError: 1.58115e+00\tAbsError: 3.73254e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.06515e-01\tAbsError: 1.94620e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.02868e-01\tAbsError: 1.78634e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.17646e-02\tAbsError: 3.20820e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.83585e+04\tAbsError: 7.32345e+14\n", + " Region: \"zone_1\"\tRelError: 4.44128e-01\tAbsError: 6.09260e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44128e-01\tAbsError: 6.09260e-02\n", + " Region: \"zone_3\"\tRelError: 3.83580e+04\tAbsError: 7.32345e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.30599e+02\tAbsError: 3.72701e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.78273e+04\tAbsError: 3.59644e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.79120e-02\tAbsError: 6.09290e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.38444e-02\tAbsError: 3.70458e+12\n", + " Region: \"zone_1\"\tRelError: 3.59871e-03\tAbsError: 2.71390e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59871e-03\tAbsError: 2.71390e-05\n", + " Region: \"zone_3\"\tRelError: 9.02457e-02\tAbsError: 3.70458e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.84320e-02\tAbsError: 1.19345e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.76575e-03\tAbsError: 2.51114e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.79561e-05\tAbsError: 2.71828e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.97006e-01\tAbsError: 3.97798e+12\n", + " Region: \"zone_1\"\tRelError: 2.05644e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05644e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.76441e-01\tAbsError: 3.97798e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88505e-01\tAbsError: 1.01871e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.71832e-02\tAbsError: 2.95927e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07533e-02\tAbsError: 9.16534e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.25231e+03\tAbsError: 9.03734e+14\n", + " Region: \"zone_1\"\tRelError: 8.82466e-01\tAbsError: 6.41008e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.82466e-01\tAbsError: 6.41008e-02\n", + " Region: \"zone_3\"\tRelError: 2.25143e+03\tAbsError: 9.03734e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.57304e+02\tAbsError: 4.07168e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.69402e+03\tAbsError: 4.96566e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07550e-01\tAbsError: 6.41009e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.17417e+00\tAbsError: 3.20760e+13\n", + " Region: \"zone_1\"\tRelError: 5.46381e-02\tAbsError: 2.58802e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.46381e-02\tAbsError: 2.58802e-02\n", + " Region: \"zone_3\"\tRelError: 1.11953e+00\tAbsError: 3.20760e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.41378e-01\tAbsError: 2.05221e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.23358e-01\tAbsError: 1.15539e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.47948e-02\tAbsError: 2.58959e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.25275e+04\tAbsError: 2.12614e+14\n", + " Region: \"zone_1\"\tRelError: 7.91343e-02\tAbsError: 5.43640e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.91343e-02\tAbsError: 5.43640e-02\n", + " Region: \"zone_3\"\tRelError: 2.25274e+04\tAbsError: 2.12614e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.66145e+03\tAbsError: 2.65979e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.98659e+04\tAbsError: 1.86016e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.93208e-02\tAbsError: 5.43673e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.96038e-05\tAbsError: 5.27330e+08\n", + " Region: \"zone_1\"\tRelError: 3.38320e-07\tAbsError: 2.80513e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.38320e-07\tAbsError: 2.80513e-09\n", + " Region: \"zone_3\"\tRelError: 4.92654e-05\tAbsError: 5.27330e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.82203e-05\tAbsError: 1.20057e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04006e-06\tAbsError: 4.07273e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 5.04648e-09\tAbsError: 2.84942e-09\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.75905e-02\tAbsError: 6.14178e+11\n", + " Region: \"zone_1\"\tRelError: 1.87871e-04\tAbsError: 5.35919e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87871e-04\tAbsError: 5.35919e-06\n", + " Region: \"zone_3\"\tRelError: 8.74026e-02\tAbsError: 6.14178e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.70791e-02\tAbsError: 2.57149e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.08574e-04\tAbsError: 3.57029e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49985e-05\tAbsError: 5.65537e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:28\u001b[0m.\u001b[1;36m462\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:28\u001b[0m.\u001b[1;36m462\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.35767e+03\tAbsError: 4.38346e+14\n", + " Region: \"zone_1\"\tRelError: 1.72519e-01\tAbsError: 5.80509e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72519e-01\tAbsError: 5.80509e-02\n", + " Region: \"zone_3\"\tRelError: 3.35750e+03\tAbsError: 4.38346e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54842e+03\tAbsError: 1.20412e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.80899e+03\tAbsError: 3.17935e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.54433e-02\tAbsError: 5.80510e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.20610e-01\tAbsError: 2.46367e+12\n", + " Region: \"zone_1\"\tRelError: 1.97787e-02\tAbsError: 1.08344e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97787e-02\tAbsError: 1.08344e-02\n", + " Region: \"zone_3\"\tRelError: 4.00831e-01\tAbsError: 2.46367e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.90180e-01\tAbsError: 1.36067e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.06203e-02\tAbsError: 1.10300e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.00308e-02\tAbsError: 1.08344e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.83174e+03\tAbsError: 3.03017e+14\n", + " Region: \"zone_1\"\tRelError: 1.86561e-01\tAbsError: 4.66596e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86561e-01\tAbsError: 4.66596e-02\n", + " Region: \"zone_3\"\tRelError: 2.83156e+03\tAbsError: 3.03017e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.69901e+03\tAbsError: 1.18356e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.32487e+02\tAbsError: 1.84661e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.30157e-02\tAbsError: 4.66636e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.95471e-06\tAbsError: 1.37438e+07\n", + " Region: \"zone_1\"\tRelError: 1.96051e-09\tAbsError: 6.30623e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96051e-09\tAbsError: 6.30623e-11\n", + " Region: \"zone_3\"\tRelError: 9.95275e-06\tAbsError: 1.37438e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.91827e-06\tAbsError: 3.21255e+06\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.43047e-08\tAbsError: 1.05312e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78389e-10\tAbsError: 6.72816e-11\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:28\u001b[0m.\u001b[1;36m940\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.5\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 9.11329e+02\tAbsError: 3.55421e+14\n", + " Region: \"zone_1\"\tRelError: 6.92220e-02\tAbsError: 5.10012e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.92220e-02\tAbsError: 5.10012e-02\n", + " Region: \"zone_3\"\tRelError: 9.11259e+02\tAbsError: 3.55421e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28865e+02\tAbsError: 2.22302e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.82326e+02\tAbsError: 3.33191e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.90503e-02\tAbsError: 5.10013e-02\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.70427e+04\tAbsError: 2.02458e+14\n", + " Region: \"zone_1\"\tRelError: 4.75338e-02\tAbsError: 3.75199e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.75338e-02\tAbsError: 3.75199e-02\n", + " Region: \"zone_3\"\tRelError: 3.70426e+04\tAbsError: 2.02458e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.23519e+02\tAbsError: 1.48588e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.67191e+04\tAbsError: 1.87599e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.78377e-02\tAbsError: 3.75245e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.03169e-01\tAbsError: 1.09582e+11\n", + " Region: \"zone_1\"\tRelError: 5.27309e-05\tAbsError: 7.87175e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 5.27309e-05\tAbsError: 7.87175e-07\n", + " Region: \"zone_3\"\tRelError: 1.03117e-01\tAbsError: 1.09582e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02996e-01\tAbsError: 3.80676e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.19243e-04\tAbsError: 7.15146e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81215e-06\tAbsError: 8.31957e-07\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.62677e+00\tAbsError: 8.55868e+15\n", + " Region: \"zone_1\"\tRelError: 3.93566e+00\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.93566e+00\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.69111e+00\tAbsError: 8.55868e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94568e-01\tAbsError: 4.83229e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94557e-01\tAbsError: 3.72639e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01989e-01\tAbsError: 4.09542e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.99508e+02\tAbsError: 3.56712e+14\n", + " Region: \"zone_1\"\tRelError: 5.37825e-02\tAbsError: 4.26778e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.37825e-02\tAbsError: 4.26778e-02\n", + " Region: \"zone_3\"\tRelError: 3.99454e+02\tAbsError: 3.56712e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.74733e+02\tAbsError: 9.45682e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.46668e+01\tAbsError: 3.47255e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.40853e-02\tAbsError: 4.26779e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 4.97099e+01\tAbsError: 1.83373e+14\n", + " Region: \"zone_1\"\tRelError: 3.58093e-02\tAbsError: 2.67472e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.58093e-02\tAbsError: 2.67472e-02\n", + " Region: \"zone_3\"\tRelError: 4.96741e+01\tAbsError: 1.83373e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.86384e+01\tAbsError: 7.10112e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.99823e-01\tAbsError: 1.76272e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.58093e-02\tAbsError: 2.67523e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.18157e-06\tAbsError: 1.01458e+05\n", + " Region: \"zone_1\"\tRelError: 9.31729e-12\tAbsError: 3.59108e-13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.31729e-12\tAbsError: 3.59108e-13\n", + " Region: \"zone_3\"\tRelError: 2.18156e-06\tAbsError: 1.01458e+05\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17993e-06\tAbsError: 1.94300e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.62794e-09\tAbsError: 8.20285e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.91197e-13\tAbsError: 4.12009e-13\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.68467e+00\tAbsError: 3.35446e+14\n", + " Region: \"zone_1\"\tRelError: 1.36557e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36557e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.54812e+00\tAbsError: 3.35446e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90679e-01\tAbsError: 1.72457e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.87899e-01\tAbsError: 1.62989e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.95382e-02\tAbsError: 3.07632e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:29\u001b[0m.\u001b[1;36m571\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:29\u001b[0m.\u001b[1;36m571\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.41666666666666674\u001b[0m \n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.12568e+01\tAbsError: 3.59469e+14\n", + " Region: \"zone_1\"\tRelError: 3.95899e-02\tAbsError: 3.27971e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.95899e-02\tAbsError: 3.27971e-02\n", + " Region: \"zone_3\"\tRelError: 2.12172e+01\tAbsError: 3.59469e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.09538e+01\tAbsError: 1.57655e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.23758e-01\tAbsError: 3.43704e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.96086e-02\tAbsError: 3.27973e-02\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.07093e+03\tAbsError: 1.48037e+14\n", + " Region: \"zone_1\"\tRelError: 2.37100e-02\tAbsError: 2.00969e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.37100e-02\tAbsError: 2.00969e-02\n", + " Region: \"zone_3\"\tRelError: 2.07090e+03\tAbsError: 1.48037e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07086e+03\tAbsError: 6.00698e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.31635e-02\tAbsError: 1.42030e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38215e-02\tAbsError: 2.01053e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.87556e+01\tAbsError: 8.34767e+15\n", + " Region: \"zone_1\"\tRelError: 6.70313e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.70313e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.72426e+00\tAbsError: 8.34767e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94570e-01\tAbsError: 4.96926e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94551e-01\tAbsError: 3.37841e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35138e-01\tAbsError: 4.09542e-02\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.79606e+02\tAbsError: 3.17335e+14\n", + " Region: \"zone_1\"\tRelError: 3.16890e-02\tAbsError: 2.57088e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.16890e-02\tAbsError: 2.57088e-02\n", + " Region: \"zone_3\"\tRelError: 1.79574e+02\tAbsError: 3.17335e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.79511e+02\tAbsError: 1.15814e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.15584e-02\tAbsError: 3.05753e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.16890e-02\tAbsError: 2.54280e-02\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.01490e+00\tAbsError: 9.76040e+13\n", + " Region: \"zone_1\"\tRelError: 1.13824e-02\tAbsError: 1.29477e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13824e-02\tAbsError: 1.29477e-04\n", + " Region: \"zone_3\"\tRelError: 1.00352e+00\tAbsError: 9.76040e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.95736e-01\tAbsError: 4.79799e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.59601e-03\tAbsError: 9.28060e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89534e-04\tAbsError: 1.32435e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.10405e+00\tAbsError: 2.84626e+13\n", + " Region: \"zone_1\"\tRelError: 5.09442e-02\tAbsError: 2.58970e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.09442e-02\tAbsError: 2.58970e-02\n", + " Region: \"zone_3\"\tRelError: 1.05311e+00\tAbsError: 2.84626e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14915e-01\tAbsError: 1.81960e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.86897e-01\tAbsError: 1.02666e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.12979e-02\tAbsError: 2.58565e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.18244e+00\tAbsError: 3.45808e+14\n", + " Region: \"zone_1\"\tRelError: 5.95786e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95786e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.58666e+00\tAbsError: 3.45808e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91491e-01\tAbsError: 2.56450e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.87672e-01\tAbsError: 8.93573e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07491e-01\tAbsError: 3.07632e-02\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 3.61611e+00\tAbsError: 7.63894e+14\n", + " Region: \"zone_1\"\tRelError: 2.06202e-02\tAbsError: 1.18262e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06202e-02\tAbsError: 1.18262e-02\n", + " Region: \"zone_3\"\tRelError: 3.59549e+00\tAbsError: 7.63894e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.56908e+00\tAbsError: 8.10617e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.26902e-02\tAbsError: 7.55788e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37185e-02\tAbsError: 1.18264e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 2.81250e-03\tAbsError: 3.78042e+10\n", + " Region: \"zone_1\"\tRelError: 1.35215e-06\tAbsError: 3.48965e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35215e-06\tAbsError: 3.48965e-08\n", + " Region: \"zone_3\"\tRelError: 2.81115e-03\tAbsError: 3.78042e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.78840e-03\tAbsError: 4.25724e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.26984e-05\tAbsError: 3.73784e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.25178e-08\tAbsError: 3.71778e-08\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.17123e+00\tAbsError: 8.90820e+15\n", + " Region: \"zone_1\"\tRelError: 2.44528e+00\tAbsError: 4.20726e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.44528e+00\tAbsError: 4.20726e-02\n", + " Region: \"zone_3\"\tRelError: 1.72594e+00\tAbsError: 8.90820e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.03256e-01\tAbsError: 5.20606e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.03242e-01\tAbsError: 3.70214e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19444e-01\tAbsError: 4.20726e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.87738e-01\tAbsError: 1.50257e+12\n", + " Region: \"zone_1\"\tRelError: 1.63299e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63299e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.71408e-01\tAbsError: 1.50257e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88723e-01\tAbsError: 2.92089e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.61472e-02\tAbsError: 1.21048e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65380e-02\tAbsError: 9.16534e-03\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.80607e-01\tAbsError: 9.20974e+14\n", + " Region: \"zone_1\"\tRelError: 4.39208e-02\tAbsError: 5.29899e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.39208e-02\tAbsError: 5.29899e-04\n", + " Region: \"zone_3\"\tRelError: 1.36686e-01\tAbsError: 9.20974e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10840e-01\tAbsError: 1.78896e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.50927e-02\tAbsError: 9.03084e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.53382e-04\tAbsError: 5.45403e-04\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 9.46472e-10\tAbsError: 3.21542e+04\n", + " Region: \"zone_1\"\tRelError: 3.69710e-13\tAbsError: 4.70633e-15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.69710e-13\tAbsError: 4.70633e-15\n", + " Region: \"zone_3\"\tRelError: 9.46103e-10\tAbsError: 3.21542e+04\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.44098e-10\tAbsError: 1.58432e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.90513e-12\tAbsError: 1.63110e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.95121e-14\tAbsError: 5.04159e-15\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.19247e+00\tAbsError: 8.54805e+13\n", + " Region: \"zone_1\"\tRelError: 9.12229e-02\tAbsError: 2.58978e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.12229e-02\tAbsError: 2.58978e-02\n", + " Region: \"zone_3\"\tRelError: 1.10125e+00\tAbsError: 8.54805e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14822e-01\tAbsError: 5.48784e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.98551e-01\tAbsError: 3.06021e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.78742e-02\tAbsError: 2.58989e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:30\u001b[0m.\u001b[1;36m583\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 0.205\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.69773e+00\tAbsError: 3.65074e+14\n", + " Region: \"zone_1\"\tRelError: 9.74499e-02\tAbsError: 3.20820e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.74499e-02\tAbsError: 3.20820e-02\n", + " Region: \"zone_3\"\tRelError: 1.60028e+00\tAbsError: 3.65074e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.06609e-01\tAbsError: 2.28256e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.03263e-01\tAbsError: 1.36818e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.04094e-02\tAbsError: 3.20820e-02\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "Iteration: 15\n", + "number of equations 22602\n", + " Device: \"device\"\tRelError: 1.00868e-03\tAbsError: 6.59671e+11\n", + " Region: \"zone_1\"\tRelError: 1.82829e-06\tAbsError: 3.39387e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82829e-06\tAbsError: 3.39387e-07\n", + " Region: \"zone_3\"\tRelError: 1.00685e-03\tAbsError: 6.59671e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.19086e-04\tAbsError: 4.09834e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.87254e-04\tAbsError: 6.55573e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.11603e-07\tAbsError: 3.69091e-07\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.96849e-02\tAbsError: 2.07362e+12\n", + " Region: \"zone_1\"\tRelError: 7.02885e-04\tAbsError: 1.90198e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.02885e-04\tAbsError: 1.90198e-05\n", + " Region: \"zone_3\"\tRelError: 8.89820e-02\tAbsError: 2.07362e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.78375e-02\tAbsError: 8.90891e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10276e-03\tAbsError: 1.18273e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.17313e-05\tAbsError: 1.96984e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.52183e-01\tAbsError: 2.83225e+13\n", + " Region: \"zone_1\"\tRelError: 5.95279e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95279e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.92655e-01\tAbsError: 2.83225e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.85164e-01\tAbsError: 1.34603e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.99920e-02\tAbsError: 1.48622e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74993e-02\tAbsError: 9.16534e-03\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 3.24333e-09\tAbsError: 5.47448e+05\n", + " Region: \"zone_1\"\tRelError: 4.98786e-11\tAbsError: 5.80319e-13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.98786e-11\tAbsError: 5.80319e-13\n", + " Region: \"zone_3\"\tRelError: 3.19345e-09\tAbsError: 5.47448e+05\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.68401e-09\tAbsError: 2.45391e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.08574e-10\tAbsError: 5.22909e+05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.69485e-13\tAbsError: 6.27282e-13\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.20926e+00\tAbsError: 4.96551e+13\n", + " Region: \"zone_1\"\tRelError: 7.04411e-02\tAbsError: 2.58711e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.04411e-02\tAbsError: 2.58711e-02\n", + " Region: \"zone_3\"\tRelError: 1.13882e+00\tAbsError: 4.96551e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.41311e-01\tAbsError: 3.63622e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.26374e-01\tAbsError: 1.32929e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.11331e-02\tAbsError: 2.59000e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:31\u001b[0m.\u001b[1;36m083\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.21\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.40982e-05\tAbsError: 1.92019e+08\n", + " Region: \"zone_1\"\tRelError: 4.03284e-08\tAbsError: 1.17477e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.03284e-08\tAbsError: 1.17477e-09\n", + " Region: \"zone_3\"\tRelError: 3.40579e-05\tAbsError: 1.92019e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.36060e-05\tAbsError: 5.55442e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.49187e-07\tAbsError: 1.36475e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67835e-09\tAbsError: 1.26430e-09\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.43736e+01\tAbsError: 9.04938e+15\n", + " Region: \"zone_1\"\tRelError: 1.26785e+01\tAbsError: 4.19629e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26785e+01\tAbsError: 4.19629e-02\n", + " Region: \"zone_3\"\tRelError: 1.69508e+00\tAbsError: 9.04938e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.02367e-01\tAbsError: 4.89560e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.02336e-01\tAbsError: 4.15378e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.03781e-02\tAbsError: 4.19629e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:31\u001b[0m.\u001b[1;36m325\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.4\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Iteration: 4\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 9.52644e-02\tAbsError: 2.55837e+12\n", + " Region: \"zone_1\"\tRelError: 7.16041e-03\tAbsError: 2.30338e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.16041e-03\tAbsError: 2.30338e-05\n", + " Region: \"zone_3\"\tRelError: 8.81040e-02\tAbsError: 2.55837e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.71797e-02\tAbsError: 1.35830e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.38768e-04\tAbsError: 1.20006e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.54583e-05\tAbsError: 2.40500e-05\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.31682e-01\tAbsError: 5.72438e+12\n", + " Region: \"zone_1\"\tRelError: 2.54263e-02\tAbsError: 1.08344e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54263e-02\tAbsError: 1.08344e-02\n", + " Region: \"zone_3\"\tRelError: 4.06256e-01\tAbsError: 5.72438e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89676e-01\tAbsError: 1.95965e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.09313e-02\tAbsError: 3.76473e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.56484e-02\tAbsError: 1.08344e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.90572e+00\tAbsError: 3.79278e+14\n", + " Region: \"zone_1\"\tRelError: 3.41688e-01\tAbsError: 3.19525e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.41688e-01\tAbsError: 3.19525e-02\n", + " Region: \"zone_3\"\tRelError: 1.56404e+00\tAbsError: 3.79278e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.04753e-01\tAbsError: 1.71966e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.01366e-01\tAbsError: 2.07313e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.79172e-02\tAbsError: 3.19525e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 9.99488e+00\tAbsError: 9.48030e+15\n", + " Region: \"zone_1\"\tRelError: 8.28205e+00\tAbsError: 4.29338e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.28205e+00\tAbsError: 4.29338e-02\n", + " Region: \"zone_3\"\tRelError: 1.71283e+00\tAbsError: 9.48030e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09640e-01\tAbsError: 5.12873e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.09610e-01\tAbsError: 4.35158e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.35761e-02\tAbsError: 4.29338e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.58292e-05\tAbsError: 4.59514e+08\n", + " Region: \"zone_1\"\tRelError: 9.81723e-07\tAbsError: 3.18909e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.81723e-07\tAbsError: 3.18909e-09\n", + " Region: \"zone_3\"\tRelError: 3.48474e-05\tAbsError: 4.59514e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.45053e-05\tAbsError: 3.33895e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.30263e-07\tAbsError: 1.25619e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18628e-08\tAbsError: 3.31754e-09\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:31\u001b[0m.\u001b[1;36m829\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.6\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.04268e-01\tAbsError: 7.37500e+11\n", + " Region: \"zone_1\"\tRelError: 1.67452e-04\tAbsError: 7.57989e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67452e-04\tAbsError: 7.57989e-06\n", + " Region: \"zone_3\"\tRelError: 1.04100e-01\tAbsError: 7.37500e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03480e-01\tAbsError: 3.96342e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.96689e-04\tAbsError: 3.41157e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.35958e-05\tAbsError: 8.18114e-06\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.56244e+00\tAbsError: 8.45570e+15\n", + " Region: \"zone_1\"\tRelError: 3.85573e+00\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85573e+00\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.70670e+00\tAbsError: 8.45570e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94571e-01\tAbsError: 4.92914e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94557e-01\tAbsError: 3.52655e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17574e-01\tAbsError: 4.09542e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.14844e+00\tAbsError: 4.93491e+13\n", + " Region: \"zone_1\"\tRelError: 4.80488e-02\tAbsError: 2.58683e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.80488e-02\tAbsError: 2.58683e-02\n", + " Region: \"zone_3\"\tRelError: 1.10039e+00\tAbsError: 4.93491e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38510e-01\tAbsError: 2.75600e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.17843e-01\tAbsError: 2.17891e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.40365e-02\tAbsError: 2.58683e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.85366e+00\tAbsError: 4.14640e+14\n", + " Region: \"zone_1\"\tRelError: 2.61180e-01\tAbsError: 3.31000e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.61180e-01\tAbsError: 3.31000e-02\n", + " Region: \"zone_3\"\tRelError: 1.59248e+00\tAbsError: 4.14640e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.17871e-01\tAbsError: 1.88389e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.13734e-01\tAbsError: 2.26251e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.08768e-02\tAbsError: 3.31000e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.71575e-05\tAbsError: 1.92506e+07\n", + " Region: \"zone_1\"\tRelError: 1.81976e-09\tAbsError: 1.03649e-10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81976e-09\tAbsError: 1.03649e-10\n", + " Region: \"zone_3\"\tRelError: 1.71557e-05\tAbsError: 1.92506e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.70431e-05\tAbsError: 8.02160e+06\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.12167e-07\tAbsError: 1.12290e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 3.66593e-10\tAbsError: 1.24918e-10\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:32\u001b[0m.\u001b[1;36m376\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:32\u001b[0m.\u001b[1;36m376\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5222222222222223\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.67739e+00\tAbsError: 3.26551e+14\n", + " Region: \"zone_1\"\tRelError: 1.13651e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13651e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.56374e+00\tAbsError: 3.26551e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91179e-01\tAbsError: 1.98410e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.87607e-01\tAbsError: 1.28141e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.49517e-02\tAbsError: 3.07632e-02\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.45236e+01\tAbsError: 8.31884e+15\n", + " Region: \"zone_1\"\tRelError: 1.27753e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27753e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.74827e+00\tAbsError: 8.31884e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94561e-01\tAbsError: 4.96691e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94525e-01\tAbsError: 3.35193e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59186e-01\tAbsError: 4.09542e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.20078e+00\tAbsError: 5.64838e+13\n", + " Region: \"zone_1\"\tRelError: 4.55160e-02\tAbsError: 2.58865e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.55160e-02\tAbsError: 2.58865e-02\n", + " Region: \"zone_3\"\tRelError: 1.15526e+00\tAbsError: 5.64838e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.61025e-01\tAbsError: 3.15083e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.48693e-01\tAbsError: 2.49756e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.55410e-02\tAbsError: 2.58905e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.10615e-01\tAbsError: 2.38900e+12\n", + " Region: \"zone_1\"\tRelError: 1.58823e-02\tAbsError: 1.06614e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58823e-02\tAbsError: 1.06614e-02\n", + " Region: \"zone_3\"\tRelError: 3.94733e-01\tAbsError: 2.38900e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89596e-01\tAbsError: 9.05884e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.89979e-02\tAbsError: 1.48312e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61387e-02\tAbsError: 1.06615e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.13583e+00\tAbsError: 3.35166e+13\n", + " Region: \"zone_1\"\tRelError: 6.49986e-02\tAbsError: 2.58787e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.49986e-02\tAbsError: 2.58787e-02\n", + " Region: \"zone_3\"\tRelError: 1.07083e+00\tAbsError: 3.35166e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14794e-01\tAbsError: 2.31889e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.90894e-01\tAbsError: 1.03277e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.51440e-02\tAbsError: 2.58923e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.91465e+00\tAbsError: 8.82588e+14\n", + " Region: \"zone_1\"\tRelError: 3.03324e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.03324e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.61133e+00\tAbsError: 8.82588e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91758e-01\tAbsError: 5.05615e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83634e-01\tAbsError: 3.76973e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35939e-01\tAbsError: 3.07632e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.67195e-01\tAbsError: 2.99700e+12\n", + " Region: \"zone_1\"\tRelError: 1.84458e-02\tAbsError: 1.22654e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84458e-02\tAbsError: 1.22654e-02\n", + " Region: \"zone_3\"\tRelError: 4.48750e-01\tAbsError: 2.99700e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.16869e-01\tAbsError: 1.89558e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13140e-01\tAbsError: 1.10142e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87406e-02\tAbsError: 1.22654e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.67018e+01\tAbsError: 8.80781e+15\n", + " Region: \"zone_1\"\tRelError: 1.49620e+01\tAbsError: 4.20726e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49620e+01\tAbsError: 4.20726e-02\n", + " Region: \"zone_3\"\tRelError: 1.73978e+00\tAbsError: 8.80781e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.03254e-01\tAbsError: 5.26028e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.03235e-01\tAbsError: 3.54753e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33293e-01\tAbsError: 4.20726e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.05086e-01\tAbsError: 1.56249e+12\n", + " Region: \"zone_1\"\tRelError: 1.17716e-03\tAbsError: 1.41851e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17716e-03\tAbsError: 1.41851e-05\n", + " Region: \"zone_3\"\tRelError: 1.03909e-01\tAbsError: 1.56249e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02758e-01\tAbsError: 6.64521e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.12394e-03\tAbsError: 8.97971e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64584e-05\tAbsError: 1.46898e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.97006e-01\tAbsError: 3.97798e+12\n", + " Region: \"zone_1\"\tRelError: 2.05644e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05644e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.76441e-01\tAbsError: 3.97798e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88505e-01\tAbsError: 1.01871e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.71832e-02\tAbsError: 2.95927e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07533e-02\tAbsError: 9.16534e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.34467e+00\tAbsError: 5.44154e+14\n", + " Region: \"zone_1\"\tRelError: 2.20632e-01\tAbsError: 2.58931e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20632e-01\tAbsError: 2.58931e-02\n", + " Region: \"zone_3\"\tRelError: 1.12404e+00\tAbsError: 5.44154e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.17234e-01\tAbsError: 2.66383e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.89208e-01\tAbsError: 2.77771e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17596e-01\tAbsError: 2.58999e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.14814e-05\tAbsError: 9.59770e+07\n", + " Region: \"zone_1\"\tRelError: 4.93269e-08\tAbsError: 6.44093e-10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.93269e-08\tAbsError: 6.44093e-10\n", + " Region: \"zone_3\"\tRelError: 3.14321e-05\tAbsError: 9.59770e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.10500e-05\tAbsError: 2.98685e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.80832e-07\tAbsError: 6.61085e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24009e-09\tAbsError: 6.87068e-10\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.18420e-01\tAbsError: 2.77452e+11\n", + " Region: \"zone_1\"\tRelError: 1.60281e-04\tAbsError: 2.62019e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60281e-04\tAbsError: 2.62019e-06\n", + " Region: \"zone_3\"\tRelError: 1.18259e-01\tAbsError: 2.77452e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18060e-01\tAbsError: 1.27601e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.94154e-04\tAbsError: 1.49851e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.08922e-06\tAbsError: 2.78229e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.85210e+00\tAbsError: 4.24275e+14\n", + " Region: \"zone_1\"\tRelError: 2.27335e-01\tAbsError: 3.20820e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27335e-01\tAbsError: 3.20820e-02\n", + " Region: \"zone_3\"\tRelError: 1.62476e+00\tAbsError: 4.24275e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.07224e-01\tAbsError: 3.07050e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.02862e-01\tAbsError: 1.17225e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14677e-01\tAbsError: 3.20820e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:33\u001b[0m.\u001b[1;36m594\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:33\u001b[0m.\u001b[1;36m594\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30999999999999994\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.75905e-02\tAbsError: 6.14178e+11\n", + " Region: \"zone_1\"\tRelError: 1.87871e-04\tAbsError: 5.35919e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87871e-04\tAbsError: 5.35919e-06\n", + " Region: \"zone_3\"\tRelError: 8.74026e-02\tAbsError: 6.14178e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.70791e-02\tAbsError: 2.57149e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.08574e-04\tAbsError: 3.57029e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49985e-05\tAbsError: 5.65537e-06\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.58303e-01\tAbsError: 2.58889e+14\n", + " Region: \"zone_1\"\tRelError: 3.50075e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.50075e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 4.23296e-01\tAbsError: 2.58889e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.70968e-01\tAbsError: 1.16796e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.16540e-01\tAbsError: 1.42093e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.57873e-02\tAbsError: 9.16534e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.49173e-06\tAbsError: 2.80629e+06\n", + " Region: \"zone_1\"\tRelError: 5.46297e-10\tAbsError: 1.14586e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.46297e-10\tAbsError: 1.14586e-11\n", + " Region: \"zone_3\"\tRelError: 6.49119e-06\tAbsError: 2.80629e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.47826e-06\tAbsError: 4.87641e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29012e-08\tAbsError: 2.31865e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30092e-11\tAbsError: 1.26062e-11\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.27177e+00\tAbsError: 1.21181e+14\n", + " Region: \"zone_1\"\tRelError: 9.69734e-02\tAbsError: 2.58832e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.69734e-02\tAbsError: 2.58832e-02\n", + " Region: \"zone_3\"\tRelError: 1.17480e+00\tAbsError: 1.21181e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.41539e-01\tAbsError: 7.18420e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.35304e-01\tAbsError: 4.93394e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.79587e-02\tAbsError: 2.58545e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:34\u001b[0m.\u001b[1;36m004\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:34\u001b[0m.\u001b[1;36m004\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.31999999999999995\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.95471e-06\tAbsError: 1.37437e+07\n", + " Region: \"zone_1\"\tRelError: 1.96051e-09\tAbsError: 6.30624e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96051e-09\tAbsError: 6.30624e-11\n", + " Region: \"zone_3\"\tRelError: 9.95275e-06\tAbsError: 1.37437e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.91827e-06\tAbsError: 3.21250e+06\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.43047e-08\tAbsError: 1.05312e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78389e-10\tAbsError: 6.72816e-11\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:34\u001b[0m.\u001b[1;36m170\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.5\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.06225e-01\tAbsError: 3.99157e+13\n", + " Region: \"zone_1\"\tRelError: 1.41229e-02\tAbsError: 1.62376e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41229e-02\tAbsError: 1.62376e-04\n", + " Region: \"zone_3\"\tRelError: 9.21025e-02\tAbsError: 3.99157e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.51238e-02\tAbsError: 2.25076e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.14819e-03\tAbsError: 1.74081e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.30563e-04\tAbsError: 1.67642e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.40990e+00\tAbsError: 8.98276e+15\n", + " Region: \"zone_1\"\tRelError: 4.69964e+00\tAbsError: 4.19629e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.69964e+00\tAbsError: 4.19629e-02\n", + " Region: \"zone_3\"\tRelError: 1.71025e+00\tAbsError: 8.98276e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.02419e-01\tAbsError: 5.08161e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.02408e-01\tAbsError: 3.90114e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05428e-01\tAbsError: 4.19629e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.72632e-01\tAbsError: 5.23306e+13\n", + " Region: \"zone_1\"\tRelError: 3.75087e-02\tAbsError: 1.08344e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.75087e-02\tAbsError: 1.08344e-02\n", + " Region: \"zone_3\"\tRelError: 4.35123e-01\tAbsError: 5.23306e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88539e-01\tAbsError: 2.52519e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11733e-01\tAbsError: 2.70786e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.48516e-02\tAbsError: 1.08344e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.10506e+01\tAbsError: 9.40634e+15\n", + " Region: \"zone_1\"\tRelError: 9.32438e+00\tAbsError: 4.29338e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.32438e+00\tAbsError: 4.29338e-02\n", + " Region: \"zone_3\"\tRelError: 1.72626e+00\tAbsError: 9.40634e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09691e-01\tAbsError: 5.33144e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.09680e-01\tAbsError: 4.07489e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06894e-01\tAbsError: 4.29338e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.81693e+00\tAbsError: 3.69427e+14\n", + " Region: \"zone_1\"\tRelError: 2.39020e-01\tAbsError: 3.19525e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39020e-01\tAbsError: 3.19525e-02\n", + " Region: \"zone_3\"\tRelError: 1.57791e+00\tAbsError: 3.69427e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.05098e-01\tAbsError: 1.92366e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.01312e-01\tAbsError: 1.77061e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.14993e-02\tAbsError: 3.19525e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.77778e-04\tAbsError: 4.11734e+10\n", + " Region: \"zone_1\"\tRelError: 2.64497e-05\tAbsError: 2.72288e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64497e-05\tAbsError: 2.72288e-07\n", + " Region: \"zone_3\"\tRelError: 1.51329e-04\tAbsError: 4.11734e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47345e-04\tAbsError: 2.82922e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.54557e-06\tAbsError: 1.28813e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43781e-06\tAbsError: 2.89039e-07\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.11582e-01\tAbsError: 8.77074e+12\n", + " Region: \"zone_1\"\tRelError: 5.05586e-03\tAbsError: 5.73412e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.05586e-03\tAbsError: 5.73412e-05\n", + " Region: \"zone_3\"\tRelError: 1.06526e-01\tAbsError: 8.77074e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02463e-01\tAbsError: 4.39984e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.81050e-03\tAbsError: 4.37090e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.53363e-04\tAbsError: 6.35227e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.87556e+01\tAbsError: 8.34767e+15\n", + " Region: \"zone_1\"\tRelError: 6.70313e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.70313e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.72426e+00\tAbsError: 8.34767e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94570e-01\tAbsError: 4.96926e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94551e-01\tAbsError: 3.37841e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35138e-01\tAbsError: 4.09542e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.26294e+00\tAbsError: 4.04710e+14\n", + " Region: \"zone_1\"\tRelError: 6.55990e-01\tAbsError: 3.31000e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.55990e-01\tAbsError: 3.31000e-02\n", + " Region: \"zone_3\"\tRelError: 1.60695e+00\tAbsError: 4.04710e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.17961e-01\tAbsError: 2.13363e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.14153e-01\tAbsError: 1.91347e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.48377e-02\tAbsError: 3.31000e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.16790e+00\tAbsError: 3.16667e+13\n", + " Region: \"zone_1\"\tRelError: 5.44268e-02\tAbsError: 2.58977e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.44268e-02\tAbsError: 2.58977e-02\n", + " Region: \"zone_3\"\tRelError: 1.11347e+00\tAbsError: 3.16667e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38800e-01\tAbsError: 2.02461e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.20184e-01\tAbsError: 1.14205e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.44904e-02\tAbsError: 2.58987e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.06505e-10\tAbsError: 5.44918e+04\n", + " Region: \"zone_1\"\tRelError: 2.76262e-11\tAbsError: 2.68307e-13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76262e-11\tAbsError: 2.68307e-13\n", + " Region: \"zone_3\"\tRelError: 1.78879e-10\tAbsError: 5.44918e+04\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.71769e-10\tAbsError: 3.00849e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.70882e-12\tAbsError: 2.44069e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40078e-12\tAbsError: 2.79942e-13\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:35\u001b[0m.\u001b[1;36m212\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.7000000000000001\u001b[0m\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.29405e-04\tAbsError: 7.84013e+09\n", + " Region: \"zone_1\"\tRelError: 6.03171e-06\tAbsError: 7.09418e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 6.03171e-06\tAbsError: 7.09418e-08\n", + " Region: \"zone_3\"\tRelError: 1.23373e-04\tAbsError: 7.84013e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19968e-04\tAbsError: 5.39909e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.09006e-06\tAbsError: 2.44103e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.14964e-07\tAbsError: 7.84794e-08\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.18244e+00\tAbsError: 3.45808e+14\n", + " Region: \"zone_1\"\tRelError: 5.95786e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95786e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.58666e+00\tAbsError: 3.45808e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91491e-01\tAbsError: 2.56450e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.87672e-01\tAbsError: 8.93573e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07491e-01\tAbsError: 3.07632e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.24212e+00\tAbsError: 3.49826e+13\n", + " Region: \"zone_1\"\tRelError: 7.44892e-02\tAbsError: 2.58685e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.44892e-02\tAbsError: 2.58685e-02\n", + " Region: \"zone_3\"\tRelError: 1.16763e+00\tAbsError: 3.49826e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.61171e-01\tAbsError: 2.23843e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.49557e-01\tAbsError: 1.25983e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.68989e-02\tAbsError: 2.58685e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.16139e-01\tAbsError: 2.41248e+12\n", + " Region: \"zone_1\"\tRelError: 1.94138e-02\tAbsError: 1.06615e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.94138e-02\tAbsError: 1.06615e-02\n", + " Region: \"zone_3\"\tRelError: 3.96725e-01\tAbsError: 2.41248e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89038e-01\tAbsError: 1.30547e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.80237e-02\tAbsError: 1.10701e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96629e-02\tAbsError: 1.06615e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.44758e-10\tAbsError: 3.08183e+04\n", + " Region: \"zone_1\"\tRelError: 5.02762e-12\tAbsError: 6.09584e-14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.02762e-12\tAbsError: 6.09584e-14\n", + " Region: \"zone_3\"\tRelError: 1.39731e-10\tAbsError: 3.08183e+04\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36093e-10\tAbsError: 1.55261e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.36741e-12\tAbsError: 1.52922e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.69928e-13\tAbsError: 6.69430e-14\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.19247e+00\tAbsError: 8.54805e+13\n", + " Region: \"zone_1\"\tRelError: 9.12229e-02\tAbsError: 2.58978e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.12229e-02\tAbsError: 2.58978e-02\n", + " Region: \"zone_3\"\tRelError: 1.10125e+00\tAbsError: 8.54805e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14822e-01\tAbsError: 5.48784e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.98551e-01\tAbsError: 3.06021e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.78742e-02\tAbsError: 2.58989e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:35\u001b[0m.\u001b[1;36m811\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:35\u001b[0m.\u001b[1;36m811\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6277777777777779\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.22389e+00\tAbsError: 8.51989e+15\n", + " Region: \"zone_1\"\tRelError: 5.41698e+00\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.41698e+00\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.80691e+00\tAbsError: 8.51989e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94484e-01\tAbsError: 4.63675e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94370e-01\tAbsError: 3.88315e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18056e-01\tAbsError: 4.09542e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.74278e-01\tAbsError: 2.59384e+12\n", + " Region: \"zone_1\"\tRelError: 2.28487e-02\tAbsError: 1.22654e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.28487e-02\tAbsError: 1.22654e-02\n", + " Region: \"zone_3\"\tRelError: 4.51429e-01\tAbsError: 2.59384e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.16516e-01\tAbsError: 1.52691e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11789e-01\tAbsError: 1.06693e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31245e-02\tAbsError: 1.22654e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.01451e-01\tAbsError: 1.52289e+11\n", + " Region: \"zone_1\"\tRelError: 8.04598e-05\tAbsError: 1.28794e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.04598e-05\tAbsError: 1.28794e-06\n", + " Region: \"zone_3\"\tRelError: 1.01371e-01\tAbsError: 1.52289e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01221e-01\tAbsError: 6.25880e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.46825e-04\tAbsError: 8.97009e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96577e-06\tAbsError: 1.36312e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.52183e-01\tAbsError: 2.83225e+13\n", + " Region: \"zone_1\"\tRelError: 5.95279e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95279e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 3.92655e-01\tAbsError: 2.83225e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.85164e-01\tAbsError: 1.34603e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.99920e-02\tAbsError: 1.48622e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74993e-02\tAbsError: 9.16534e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.89109e+00\tAbsError: 5.48219e+15\n", + " Region: \"zone_1\"\tRelError: 2.49390e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49390e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.64170e+00\tAbsError: 5.48219e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90716e-01\tAbsError: 2.59543e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.66285e-01\tAbsError: 2.88675e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84697e-01\tAbsError: 3.07632e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.19005e-01\tAbsError: 5.46470e+11\n", + " Region: \"zone_1\"\tRelError: 5.19598e-04\tAbsError: 3.00981e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.19598e-04\tAbsError: 3.00981e-06\n", + " Region: \"zone_3\"\tRelError: 1.18486e-01\tAbsError: 5.46470e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18069e-01\tAbsError: 1.59389e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.09405e-04\tAbsError: 3.87081e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.48302e-06\tAbsError: 3.25953e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.30106e-06\tAbsError: 3.61693e+05\n", + " Region: \"zone_1\"\tRelError: 1.77604e-11\tAbsError: 1.24341e-12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77604e-11\tAbsError: 1.24341e-12\n", + " Region: \"zone_3\"\tRelError: 3.30104e-06\tAbsError: 3.61693e+05\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.29735e-06\tAbsError: 3.78118e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.68160e-09\tAbsError: 3.23881e+05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.70978e-12\tAbsError: 1.30380e-12\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.24195e+02\tAbsError: 8.77870e+15\n", + " Region: \"zone_1\"\tRelError: 4.22411e+02\tAbsError: 4.20726e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22411e+02\tAbsError: 4.20726e-02\n", + " Region: \"zone_3\"\tRelError: 1.78400e+00\tAbsError: 8.77870e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.03241e-01\tAbsError: 5.19271e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.03196e-01\tAbsError: 3.58599e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77564e-01\tAbsError: 4.20726e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:36\u001b[0m.\u001b[1;36m577\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:36\u001b[0m.\u001b[1;36m577\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.4149999999999999\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Iteration: 4\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 9.52644e-02\tAbsError: 2.55837e+12\n", + " Region: \"zone_1\"\tRelError: 7.16041e-03\tAbsError: 2.30338e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.16041e-03\tAbsError: 2.30338e-05\n", + " Region: \"zone_3\"\tRelError: 8.81040e-02\tAbsError: 2.55837e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.71797e-02\tAbsError: 1.35830e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.38768e-04\tAbsError: 1.20006e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.54583e-05\tAbsError: 2.40500e-05\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.28809e+00\tAbsError: 4.35524e+15\n", + " Region: \"zone_1\"\tRelError: 1.47109e-01\tAbsError: 2.58916e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47109e-01\tAbsError: 2.58916e-02\n", + " Region: \"zone_3\"\tRelError: 1.14098e+00\tAbsError: 4.35524e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.22693e-01\tAbsError: 2.04103e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.66769e-01\tAbsError: 2.31421e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51518e-01\tAbsError: 2.53379e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.63620e-06\tAbsError: 2.24160e+06\n", + " Region: \"zone_1\"\tRelError: 2.53878e-09\tAbsError: 2.37681e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.53878e-09\tAbsError: 2.37681e-11\n", + " Region: \"zone_3\"\tRelError: 8.63366e-06\tAbsError: 2.24160e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.60416e-06\tAbsError: 5.89307e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.94484e-08\tAbsError: 1.65229e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.35025e-11\tAbsError: 2.45711e-11\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:36\u001b[0m.\u001b[1;36m928\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:36\u001b[0m.\u001b[1;36m928\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.42999999999999994\u001b[0m \n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.61293e+00\tAbsError: 1.51368e+15\n", + " Region: \"zone_1\"\tRelError: 9.64682e-01\tAbsError: 3.20820e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.64682e-01\tAbsError: 3.20820e-02\n", + " Region: \"zone_3\"\tRelError: 1.64825e+00\tAbsError: 1.51368e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.07584e-01\tAbsError: 8.60067e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.95031e-01\tAbsError: 6.53616e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45637e-01\tAbsError: 3.20820e-02\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.58292e-05\tAbsError: 4.59514e+08\n", + " Region: \"zone_1\"\tRelError: 9.81723e-07\tAbsError: 3.18909e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.81723e-07\tAbsError: 3.18909e-09\n", + " Region: \"zone_3\"\tRelError: 3.48474e-05\tAbsError: 4.59514e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.45053e-05\tAbsError: 3.33895e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.30263e-07\tAbsError: 1.25619e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18628e-08\tAbsError: 3.31754e-09\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:37\u001b[0m.\u001b[1;36m097\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.6\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.25664e+00\tAbsError: 8.86308e+15\n", + " Region: \"zone_1\"\tRelError: 2.53325e+00\tAbsError: 4.19629e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.53325e+00\tAbsError: 4.19629e-02\n", + " Region: \"zone_3\"\tRelError: 1.72338e+00\tAbsError: 8.86308e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.02421e-01\tAbsError: 5.17844e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.02407e-01\tAbsError: 3.68465e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18556e-01\tAbsError: 4.19629e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.61364e-01\tAbsError: 1.56107e+15\n", + " Region: \"zone_1\"\tRelError: 1.02187e-01\tAbsError: 9.16531e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02187e-01\tAbsError: 9.16531e-03\n", + " Region: \"zone_3\"\tRelError: 4.59177e-01\tAbsError: 1.56107e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52513e-01\tAbsError: 8.30423e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.62306e-01\tAbsError: 7.30643e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.43577e-02\tAbsError: 9.16534e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.63185e+00\tAbsError: 1.07904e+15\n", + " Region: \"zone_1\"\tRelError: 4.48144e-01\tAbsError: 2.58591e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.48144e-01\tAbsError: 2.58591e-02\n", + " Region: \"zone_3\"\tRelError: 1.18371e+00\tAbsError: 1.07904e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.44602e-01\tAbsError: 4.79426e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.04977e-01\tAbsError: 5.99614e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34128e-01\tAbsError: 2.56444e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.57466e+00\tAbsError: 9.26788e+15\n", + " Region: \"zone_1\"\tRelError: 2.82864e+00\tAbsError: 4.29338e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.82864e+00\tAbsError: 4.29338e-02\n", + " Region: \"zone_3\"\tRelError: 1.74602e+00\tAbsError: 9.26788e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09693e-01\tAbsError: 5.42632e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.09679e-01\tAbsError: 3.84156e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26649e-01\tAbsError: 4.29338e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.69296e+00\tAbsError: 3.61186e+14\n", + " Region: \"zone_1\"\tRelError: 9.62143e-02\tAbsError: 3.19525e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.62143e-02\tAbsError: 3.19525e-02\n", + " Region: \"zone_3\"\tRelError: 1.59674e+00\tAbsError: 3.61186e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.05187e-01\tAbsError: 2.25213e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.01705e-01\tAbsError: 1.35974e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.98519e-02\tAbsError: 3.19525e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.02751e-01\tAbsError: 2.88406e+14\n", + " Region: \"zone_1\"\tRelError: 3.60577e-03\tAbsError: 2.29628e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.60577e-03\tAbsError: 2.29628e-04\n", + " Region: \"zone_3\"\tRelError: 9.91456e-02\tAbsError: 2.88406e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.45252e-02\tAbsError: 1.12757e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29594e-02\tAbsError: 1.75650e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66104e-03\tAbsError: 2.42032e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.45236e+01\tAbsError: 8.31884e+15\n", + " Region: \"zone_1\"\tRelError: 1.27753e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27753e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.74827e+00\tAbsError: 8.31884e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94561e-01\tAbsError: 4.96691e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94525e-01\tAbsError: 3.35193e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59186e-01\tAbsError: 4.09542e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.37855e-01\tAbsError: 5.10221e+14\n", + " Region: \"zone_1\"\tRelError: 4.41958e-02\tAbsError: 1.08344e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.41958e-02\tAbsError: 1.08344e-02\n", + " Region: \"zone_3\"\tRelError: 4.93659e-01\tAbsError: 5.10221e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87521e-01\tAbsError: 2.44419e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.60651e-01\tAbsError: 2.65802e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54875e-02\tAbsError: 1.08344e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.73313e+00\tAbsError: 3.96589e+14\n", + " Region: \"zone_1\"\tRelError: 1.05624e-01\tAbsError: 3.31000e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05624e-01\tAbsError: 3.31000e-02\n", + " Region: \"zone_3\"\tRelError: 1.62751e+00\tAbsError: 3.96589e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.17540e-01\tAbsError: 2.53211e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.15147e-01\tAbsError: 1.43378e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.48212e-02\tAbsError: 3.31000e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.20232e+00\tAbsError: 4.82858e+13\n", + " Region: \"zone_1\"\tRelError: 7.00808e-02\tAbsError: 2.58538e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.00808e-02\tAbsError: 2.58538e-02\n", + " Region: \"zone_3\"\tRelError: 1.13224e+00\tAbsError: 4.82858e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38719e-01\tAbsError: 3.53290e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.23098e-01\tAbsError: 1.29568e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.04208e-02\tAbsError: 2.58937e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.04675e-04\tAbsError: 3.04021e+11\n", + " Region: \"zone_1\"\tRelError: 6.05493e-06\tAbsError: 5.20454e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 6.05493e-06\tAbsError: 5.20454e-07\n", + " Region: \"zone_3\"\tRelError: 2.98620e-04\tAbsError: 3.04021e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.67672e-04\tAbsError: 1.93910e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.70905e-05\tAbsError: 1.10111e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85729e-06\tAbsError: 5.51479e-07\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.91465e+00\tAbsError: 8.82588e+14\n", + " Region: \"zone_1\"\tRelError: 3.03324e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.03324e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.61133e+00\tAbsError: 8.82588e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91758e-01\tAbsError: 5.05615e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83634e-01\tAbsError: 3.76973e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35939e-01\tAbsError: 3.07632e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.46514e-01\tAbsError: 1.03219e+14\n", + " Region: \"zone_1\"\tRelError: 3.43169e-02\tAbsError: 3.16852e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.43169e-02\tAbsError: 3.16852e-04\n", + " Region: \"zone_3\"\tRelError: 1.12197e-01\tAbsError: 1.03219e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.55228e-02\tAbsError: 5.87205e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.49125e-02\tAbsError: 4.44984e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76215e-03\tAbsError: 3.21983e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.26176e+00\tAbsError: 6.17820e+13\n", + " Region: \"zone_1\"\tRelError: 7.36238e-02\tAbsError: 2.56439e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.36238e-02\tAbsError: 2.56439e-02\n", + " Region: \"zone_3\"\tRelError: 1.18814e+00\tAbsError: 6.17820e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.61240e-01\tAbsError: 4.55005e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.51872e-01\tAbsError: 1.62815e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.50269e-02\tAbsError: 2.58894e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.27072e-01\tAbsError: 5.50903e+12\n", + " Region: \"zone_1\"\tRelError: 2.49046e-02\tAbsError: 1.06615e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49046e-02\tAbsError: 1.06615e-02\n", + " Region: \"zone_3\"\tRelError: 4.02167e-01\tAbsError: 5.50903e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88687e-01\tAbsError: 1.84640e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.83541e-02\tAbsError: 3.66263e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51259e-02\tAbsError: 1.06615e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.59434e-10\tAbsError: 1.22832e+06\n", + " Region: \"zone_1\"\tRelError: 9.68844e-11\tAbsError: 2.65442e-12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.68844e-11\tAbsError: 2.65442e-12\n", + " Region: \"zone_3\"\tRelError: 6.62549e-10\tAbsError: 1.22832e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38517e-10\tAbsError: 7.28670e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03771e-10\tAbsError: 4.99651e+05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02616e-11\tAbsError: 2.83300e-12\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.35346e-04\tAbsError: 2.72676e+11\n", + " Region: \"zone_1\"\tRelError: 1.93851e-04\tAbsError: 1.56442e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93851e-04\tAbsError: 1.56442e-06\n", + " Region: \"zone_3\"\tRelError: 3.41495e-04\tAbsError: 2.72676e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.13735e-04\tAbsError: 2.02047e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.87537e-05\tAbsError: 7.06297e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.00571e-06\tAbsError: 1.63938e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.34467e+00\tAbsError: 5.44154e+14\n", + " Region: \"zone_1\"\tRelError: 2.20632e-01\tAbsError: 2.58931e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20632e-01\tAbsError: 2.58931e-02\n", + " Region: \"zone_3\"\tRelError: 1.12404e+00\tAbsError: 5.44154e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.17234e-01\tAbsError: 2.66383e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.89208e-01\tAbsError: 2.77771e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17596e-01\tAbsError: 2.58999e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:38\u001b[0m.\u001b[1;36m705\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.8\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.89862e-01\tAbsError: 7.99664e+12\n", + " Region: \"zone_1\"\tRelError: 2.98842e-02\tAbsError: 1.22654e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.98842e-02\tAbsError: 1.22654e-02\n", + " Region: \"zone_3\"\tRelError: 4.59978e-01\tAbsError: 7.99664e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.16917e-01\tAbsError: 3.30963e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.12949e-01\tAbsError: 4.68701e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.01113e-02\tAbsError: 1.22654e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.02165e-01\tAbsError: 9.37234e+11\n", + " Region: \"zone_1\"\tRelError: 1.61822e-04\tAbsError: 7.03019e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61822e-04\tAbsError: 7.03019e-06\n", + " Region: \"zone_3\"\tRelError: 1.02004e-01\tAbsError: 9.37234e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01441e-01\tAbsError: 3.65419e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.41199e-04\tAbsError: 5.71815e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16745e-05\tAbsError: 7.56571e-06\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.57251e-09\tAbsError: 2.43009e+06\n", + " Region: \"zone_1\"\tRelError: 1.66994e-09\tAbsError: 1.30733e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66994e-09\tAbsError: 1.30733e-11\n", + " Region: \"zone_3\"\tRelError: 2.90256e-09\tAbsError: 2.43009e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.50630e-09\tAbsError: 1.47608e+06\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.18993e-10\tAbsError: 9.54012e+05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.72705e-11\tAbsError: 1.40492e-11\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.58303e-01\tAbsError: 2.58889e+14\n", + " Region: \"zone_1\"\tRelError: 3.50075e-02\tAbsError: 9.16532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.50075e-02\tAbsError: 9.16532e-03\n", + " Region: \"zone_3\"\tRelError: 4.23296e-01\tAbsError: 2.58889e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.70968e-01\tAbsError: 1.16796e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.16540e-01\tAbsError: 1.42093e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.57873e-02\tAbsError: 9.16534e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:39\u001b[0m.\u001b[1;36m168\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:39\u001b[0m.\u001b[1;36m168\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7333333333333334\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.19535e-01\tAbsError: 7.67511e+11\n", + " Region: \"zone_1\"\tRelError: 1.02132e-04\tAbsError: 6.40339e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02132e-04\tAbsError: 6.40339e-06\n", + " Region: \"zone_3\"\tRelError: 1.19432e-01\tAbsError: 7.67511e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18713e-01\tAbsError: 3.47334e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.98127e-04\tAbsError: 4.20177e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17746e-05\tAbsError: 7.06173e-06\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.06248e+01\tAbsError: 3.16044e+16\n", + " Region: \"zone_1\"\tRelError: 1.87257e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87257e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.89912e+00\tAbsError: 3.16044e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.93746e-01\tAbsError: 1.57387e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.93249e-01\tAbsError: 1.58657e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.12130e-01\tAbsError: 4.09543e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.56445e-05\tAbsError: 1.51528e+07\n", + " Region: \"zone_1\"\tRelError: 1.06669e-09\tAbsError: 8.91987e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06669e-09\tAbsError: 8.91987e-11\n", + " Region: \"zone_3\"\tRelError: 1.56435e-05\tAbsError: 1.51528e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.55486e-05\tAbsError: 6.58261e+06\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.46298e-08\tAbsError: 8.57017e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39891e-10\tAbsError: 8.97859e-11\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:39\u001b[0m.\u001b[1;36m454\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:39\u001b[0m.\u001b[1;36m454\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5199999999999999\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.06225e-01\tAbsError: 3.99157e+13\n", + " Region: \"zone_1\"\tRelError: 1.41229e-02\tAbsError: 1.62376e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41229e-02\tAbsError: 1.62376e-04\n", + " Region: \"zone_3\"\tRelError: 9.21025e-02\tAbsError: 3.99157e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.51238e-02\tAbsError: 2.25076e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.14819e-03\tAbsError: 1.74081e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.30563e-04\tAbsError: 1.67642e-04\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.39115e-05\tAbsError: 3.56195e+07\n", + " Region: \"zone_1\"\tRelError: 4.59619e-09\tAbsError: 3.23674e-10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.59619e-09\tAbsError: 3.23674e-10\n", + " Region: \"zone_3\"\tRelError: 1.39069e-05\tAbsError: 3.56195e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38108e-05\tAbsError: 1.93540e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.49639e-08\tAbsError: 1.62655e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15594e-09\tAbsError: 3.70759e-10\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.45748e+00\tAbsError: 3.69441e+16\n", + " Region: \"zone_1\"\tRelError: 4.13331e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.13331e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 2.04415e+00\tAbsError: 3.69441e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.88321e-01\tAbsError: 1.86445e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.52684e-01\tAbsError: 1.82996e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.03145e-01\tAbsError: 3.07632e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:39\u001b[0m.\u001b[1;36m779\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.5399999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.85767e+01\tAbsError: 9.53342e+15\n", + " Region: \"zone_1\"\tRelError: 7.67234e+01\tAbsError: 4.20726e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.67234e+01\tAbsError: 4.20726e-02\n", + " Region: \"zone_3\"\tRelError: 1.85327e+00\tAbsError: 9.53342e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.03095e-01\tAbsError: 5.14999e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.02942e-01\tAbsError: 4.38343e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.47235e-01\tAbsError: 4.20726e-02\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.77778e-04\tAbsError: 4.11734e+10\n", + " Region: \"zone_1\"\tRelError: 2.64497e-05\tAbsError: 2.72288e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64497e-05\tAbsError: 2.72288e-07\n", + " Region: \"zone_3\"\tRelError: 1.51329e-04\tAbsError: 4.11734e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47345e-04\tAbsError: 2.82922e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.54557e-06\tAbsError: 1.28813e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43781e-06\tAbsError: 2.89039e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.35778e+01\tAbsError: 8.76184e+15\n", + " Region: \"zone_1\"\tRelError: 2.18316e+01\tAbsError: 4.19629e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18316e+01\tAbsError: 4.19629e-02\n", + " Region: \"zone_3\"\tRelError: 1.74625e+00\tAbsError: 8.76184e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.02419e-01\tAbsError: 5.23127e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.02400e-01\tAbsError: 3.53057e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41432e-01\tAbsError: 4.19629e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 4.80876e+00\tAbsError: 2.48392e+16\n", + " Region: \"zone_1\"\tRelError: 2.08564e-01\tAbsError: 2.58396e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08564e-01\tAbsError: 2.58396e-02\n", + " Region: \"zone_3\"\tRelError: 4.60020e+00\tAbsError: 2.48392e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.12756e-01\tAbsError: 1.24031e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.61077e-01\tAbsError: 1.24362e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.62637e+00\tAbsError: 2.33304e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 5.04143e+00\tAbsError: 1.05556e+16\n", + " Region: \"zone_1\"\tRelError: 3.34872e+00\tAbsError: 3.20820e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.34872e+00\tAbsError: 3.20820e-02\n", + " Region: \"zone_3\"\tRelError: 1.69271e+00\tAbsError: 1.05556e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.05643e-01\tAbsError: 5.09390e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.77441e-01\tAbsError: 5.46173e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09625e-01\tAbsError: 3.20820e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.06530e-10\tAbsError: 5.12697e+04\n", + " Region: \"zone_1\"\tRelError: 2.76520e-11\tAbsError: 2.68299e-13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76520e-11\tAbsError: 2.68299e-13\n", + " Region: \"zone_3\"\tRelError: 1.78878e-10\tAbsError: 5.12697e+04\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.71768e-10\tAbsError: 3.00847e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.70892e-12\tAbsError: 2.11850e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40088e-12\tAbsError: 2.79933e-13\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:40\u001b[0m.\u001b[1;36m423\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.7000000000000001\u001b[0m\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.50411e+01\tAbsError: 9.17516e+15\n", + " Region: \"zone_1\"\tRelError: 2.32813e+01\tAbsError: 4.29338e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32813e+01\tAbsError: 4.29338e-02\n", + " Region: \"zone_3\"\tRelError: 1.75981e+00\tAbsError: 9.17516e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09690e-01\tAbsError: 5.49119e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.09670e-01\tAbsError: 3.68397e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40449e-01\tAbsError: 4.29338e-02\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.80496e+00\tAbsError: 4.20326e+14\n", + " Region: \"zone_1\"\tRelError: 1.83409e-01\tAbsError: 3.19525e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83409e-01\tAbsError: 3.19525e-02\n", + " Region: \"zone_3\"\tRelError: 1.62155e+00\tAbsError: 4.20326e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.05409e-01\tAbsError: 3.06370e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.01733e-01\tAbsError: 1.13956e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14413e-01\tAbsError: 3.19525e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.55071e+00\tAbsError: 8.48657e+15\n", + " Region: \"zone_1\"\tRelError: 8.11805e-01\tAbsError: 9.16529e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.11805e-01\tAbsError: 9.16529e-03\n", + " Region: \"zone_3\"\tRelError: 2.73890e+00\tAbsError: 8.48657e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.34197e-01\tAbsError: 4.50158e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.40806e-01\tAbsError: 3.98499e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36390e+00\tAbsError: 9.16533e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.41161e+00\tAbsError: 8.47971e+15\n", + " Region: \"zone_1\"\tRelError: 1.80410e-01\tAbsError: 2.58842e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80410e-01\tAbsError: 2.58842e-02\n", + " Region: \"zone_3\"\tRelError: 1.23120e+00\tAbsError: 8.47971e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.48016e-01\tAbsError: 4.18892e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.02777e-01\tAbsError: 4.29078e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80410e-01\tAbsError: 2.57972e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.82843e+00\tAbsError: 4.96905e+14\n", + " Region: \"zone_1\"\tRelError: 1.74894e-01\tAbsError: 3.31000e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74894e-01\tAbsError: 3.31000e-02\n", + " Region: \"zone_3\"\tRelError: 1.65354e+00\tAbsError: 4.96905e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.18406e-01\tAbsError: 3.48442e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.14285e-01\tAbsError: 1.48463e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20848e-01\tAbsError: 3.31000e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.26282e+00\tAbsError: 1.16685e+14\n", + " Region: \"zone_1\"\tRelError: 9.53101e-02\tAbsError: 2.58525e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.53101e-02\tAbsError: 2.58525e-02\n", + " Region: \"zone_3\"\tRelError: 1.16751e+00\tAbsError: 1.16685e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.39099e-01\tAbsError: 6.97086e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.31203e-01\tAbsError: 4.69768e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.72093e-02\tAbsError: 2.58966e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 5.10055e-01\tAbsError: 1.79008e+15\n", + " Region: \"zone_1\"\tRelError: 7.10147e-02\tAbsError: 3.19256e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.10147e-02\tAbsError: 3.19256e-04\n", + " Region: \"zone_3\"\tRelError: 4.39040e-01\tAbsError: 1.79008e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39314e-02\tAbsError: 9.39738e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.81226e-02\tAbsError: 8.50345e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.56986e-01\tAbsError: 3.21663e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.22389e+00\tAbsError: 8.51989e+15\n", + " Region: \"zone_1\"\tRelError: 5.41698e+00\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.41698e+00\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.80691e+00\tAbsError: 8.51989e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94484e-01\tAbsError: 4.63675e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94370e-01\tAbsError: 3.88315e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18056e-01\tAbsError: 4.09542e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.38247e+01\tAbsError: 3.42646e+15\n", + " Region: \"zone_1\"\tRelError: 1.33015e+01\tAbsError: 1.08344e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33015e+01\tAbsError: 1.08344e-02\n", + " Region: \"zone_3\"\tRelError: 5.23208e-01\tAbsError: 3.42646e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.74976e-01\tAbsError: 1.82876e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.89790e-01\tAbsError: 1.59771e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.84420e-02\tAbsError: 1.08344e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.37737e+00\tAbsError: 1.78105e+14\n", + " Region: \"zone_1\"\tRelError: 1.48634e-01\tAbsError: 2.57619e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48634e-01\tAbsError: 2.57619e-02\n", + " Region: \"zone_3\"\tRelError: 1.22873e+00\tAbsError: 1.78105e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.61703e-01\tAbsError: 1.04558e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.61460e-01\tAbsError: 7.35471e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05569e-01\tAbsError: 2.58968e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.33163e-03\tAbsError: 7.03544e+12\n", + " Region: \"zone_1\"\tRelError: 6.88994e-05\tAbsError: 8.74550e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 6.88994e-05\tAbsError: 8.74550e-07\n", + " Region: \"zone_3\"\tRelError: 1.26273e-03\tAbsError: 7.03544e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.78279e-04\tAbsError: 4.08452e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.87916e-05\tAbsError: 2.95092e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.95662e-04\tAbsError: 9.67670e-07\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.61927e-01\tAbsError: 4.92934e+13\n", + " Region: \"zone_1\"\tRelError: 3.38141e-02\tAbsError: 1.06615e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.38141e-02\tAbsError: 1.06615e-02\n", + " Region: \"zone_3\"\tRelError: 4.28113e-01\tAbsError: 4.92934e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.85411e-01\tAbsError: 2.38523e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.08645e-01\tAbsError: 2.54412e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40579e-02\tAbsError: 1.06615e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.89109e+00\tAbsError: 5.48219e+15\n", + " Region: \"zone_1\"\tRelError: 2.49390e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49390e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 1.64170e+00\tAbsError: 5.48219e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90716e-01\tAbsError: 2.59543e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.66285e-01\tAbsError: 2.88675e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84697e-01\tAbsError: 3.07632e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.00885e-01\tAbsError: 6.88542e+14\n", + " Region: \"zone_1\"\tRelError: 5.76573e-01\tAbsError: 3.18704e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.76573e-01\tAbsError: 3.18704e-04\n", + " Region: \"zone_3\"\tRelError: 1.24312e-01\tAbsError: 6.88542e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.82071e-02\tAbsError: 3.65909e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96440e-02\tAbsError: 3.22633e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.46133e-03\tAbsError: 3.35790e-04\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.72011e-01\tAbsError: 8.49829e+13\n", + " Region: \"zone_1\"\tRelError: 7.44559e-02\tAbsError: 1.22654e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.44559e-02\tAbsError: 1.22654e-02\n", + " Region: \"zone_3\"\tRelError: 4.97555e-01\tAbsError: 8.49829e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.15246e-01\tAbsError: 4.00907e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.40638e-01\tAbsError: 4.48922e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.16711e-02\tAbsError: 1.22654e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.08779e-01\tAbsError: 7.86412e+12\n", + " Region: \"zone_1\"\tRelError: 3.94315e-03\tAbsError: 5.37617e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.94315e-03\tAbsError: 5.37617e-05\n", + " Region: \"zone_3\"\tRelError: 1.04836e-01\tAbsError: 7.86412e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01239e-01\tAbsError: 4.02502e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.36279e-03\tAbsError: 3.83909e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34183e-04\tAbsError: 5.93697e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.48913e-08\tAbsError: 9.78087e+07\n", + " Region: \"zone_1\"\tRelError: 2.39366e-09\tAbsError: 9.98116e-12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39366e-09\tAbsError: 9.98116e-12\n", + " Region: \"zone_3\"\tRelError: 1.24976e-08\tAbsError: 9.78087e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.82653e-09\tAbsError: 5.13414e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.35560e-10\tAbsError: 4.64672e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 9.13552e-09\tAbsError: 1.21236e-11\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:41\u001b[0m.\u001b[1;36m913\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.9\u001b[0m \n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.28809e+00\tAbsError: 4.35524e+15\n", + " Region: \"zone_1\"\tRelError: 1.47109e-01\tAbsError: 2.58916e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47109e-01\tAbsError: 2.58916e-02\n", + " Region: \"zone_3\"\tRelError: 1.14098e+00\tAbsError: 4.35524e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.22693e-01\tAbsError: 2.04103e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.66769e-01\tAbsError: 2.31421e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51518e-01\tAbsError: 2.53379e-02\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 5\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 1.26639e-03\tAbsError: 1.63175e+12\n", + " Region: \"zone_1\"\tRelError: 8.28809e-04\tAbsError: 1.27507e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.28809e-04\tAbsError: 1.27507e-06\n", + " Region: \"zone_3\"\tRelError: 4.37586e-04\tAbsError: 1.63175e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.67912e-04\tAbsError: 1.10540e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.19952e-05\tAbsError: 5.26349e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76786e-05\tAbsError: 1.38379e-06\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.35620e-01\tAbsError: 1.72712e+13\n", + " Region: \"zone_1\"\tRelError: 9.74579e-03\tAbsError: 1.05058e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.74579e-03\tAbsError: 1.05058e-04\n", + " Region: \"zone_3\"\tRelError: 1.25874e-01\tAbsError: 1.72712e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.17031e-01\tAbsError: 8.70382e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.35880e-03\tAbsError: 8.56740e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.84384e-04\tAbsError: 1.13804e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.12912e-04\tAbsError: 6.22497e+09\n", + " Region: \"zone_1\"\tRelError: 4.19318e-06\tAbsError: 5.80483e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 4.19318e-06\tAbsError: 5.80483e-08\n", + " Region: \"zone_3\"\tRelError: 1.08718e-04\tAbsError: 6.22497e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06088e-04\tAbsError: 4.32375e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.37301e-06\tAbsError: 1.90122e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57558e-07\tAbsError: 6.47718e-08\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.61364e-01\tAbsError: 1.56107e+15\n", + " Region: \"zone_1\"\tRelError: 1.02187e-01\tAbsError: 9.16531e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02187e-01\tAbsError: 9.16531e-03\n", + " Region: \"zone_3\"\tRelError: 4.59177e-01\tAbsError: 1.56107e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52513e-01\tAbsError: 8.30423e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.62306e-01\tAbsError: 7.30643e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.43577e-02\tAbsError: 9.16534e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 5.38910e-08\tAbsError: 1.78449e+07\n", + " Region: \"zone_1\"\tRelError: 4.98436e-08\tAbsError: 7.02794e-12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.98436e-08\tAbsError: 7.02794e-12\n", + " Region: \"zone_3\"\tRelError: 4.04737e-09\tAbsError: 1.78449e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.41581e-09\tAbsError: 1.12628e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.67215e-10\tAbsError: 6.58204e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64338e-10\tAbsError: 7.21610e-12\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:42\u001b[0m.\u001b[1;36m479\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:42\u001b[0m.\u001b[1;36m479\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.8388888888888889\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.15889e-04\tAbsError: 3.71681e+10\n", + " Region: \"zone_1\"\tRelError: 2.41579e-05\tAbsError: 2.90587e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41579e-05\tAbsError: 2.90587e-07\n", + " Region: \"zone_3\"\tRelError: 2.91731e-04\tAbsError: 3.71681e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.74902e-04\tAbsError: 2.46870e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.54957e-05\tAbsError: 1.24811e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33364e-06\tAbsError: 3.11133e-07\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.19725e+01\tAbsError: 1.92958e+17\n", + " Region: \"zone_1\"\tRelError: 2.64183e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64183e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 5.55416e+00\tAbsError: 1.92958e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86635e-01\tAbsError: 9.77277e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83108e-01\tAbsError: 9.52302e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.98441e+00\tAbsError: 4.09542e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 9.68479e-11\tAbsError: 3.24994e+04\n", + " Region: \"zone_1\"\tRelError: 2.67602e-12\tAbsError: 3.81036e-14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67602e-12\tAbsError: 3.81036e-14\n", + " Region: \"zone_3\"\tRelError: 9.41719e-11\tAbsError: 3.24994e+04\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.20056e-11\tAbsError: 1.65668e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.99791e-12\tAbsError: 1.59326e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68351e-13\tAbsError: 4.22123e-14\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.02751e-01\tAbsError: 2.88406e+14\n", + " Region: \"zone_1\"\tRelError: 3.60577e-03\tAbsError: 2.29628e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.60577e-03\tAbsError: 2.29628e-04\n", + " Region: \"zone_3\"\tRelError: 9.91456e-02\tAbsError: 2.88406e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.45252e-02\tAbsError: 1.12757e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29594e-02\tAbsError: 1.75650e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66104e-03\tAbsError: 2.42032e-04\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:42\u001b[0m.\u001b[1;36m766\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:42\u001b[0m.\u001b[1;36m766\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6249999999999999\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.90381e-09\tAbsError: 2.12026e+05\n", + " Region: \"zone_1\"\tRelError: 1.00312e-10\tAbsError: 1.55136e-12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00312e-10\tAbsError: 1.55136e-12\n", + " Region: \"zone_3\"\tRelError: 1.80350e-09\tAbsError: 2.12026e+05\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.71088e-09\tAbsError: 1.50477e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.62946e-11\tAbsError: 6.15487e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.32889e-12\tAbsError: 1.60667e-12\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:43\u001b[0m.\u001b[1;36m054\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.6499999999999999\u001b[0m\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 5.59678e+00\tAbsError: 2.20718e+17\n", + " Region: \"zone_1\"\tRelError: 8.54328e-01\tAbsError: 3.07631e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.54328e-01\tAbsError: 3.07631e-02\n", + " Region: \"zone_3\"\tRelError: 4.74245e+00\tAbsError: 2.20718e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57165e-01\tAbsError: 1.09369e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.88364e-01\tAbsError: 1.11350e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 3.39692e+00\tAbsError: 3.07632e-02\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.44083e+02\tAbsError: 6.23143e+16\n", + " Region: \"zone_1\"\tRelError: 1.41746e+02\tAbsError: 4.20726e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41746e+02\tAbsError: 4.20726e-02\n", + " Region: \"zone_3\"\tRelError: 2.33769e+00\tAbsError: 6.23143e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.01593e-01\tAbsError: 3.10038e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.00688e-01\tAbsError: 3.13105e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.35405e-01\tAbsError: 4.20726e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.04675e-04\tAbsError: 3.04021e+11\n", + " Region: \"zone_1\"\tRelError: 6.05493e-06\tAbsError: 5.20454e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 6.05493e-06\tAbsError: 5.20454e-07\n", + " Region: \"zone_3\"\tRelError: 2.98620e-04\tAbsError: 3.04021e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.67672e-04\tAbsError: 1.93910e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.70905e-05\tAbsError: 1.10111e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85729e-06\tAbsError: 5.51479e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.95055e+01\tAbsError: 8.73225e+15\n", + " Region: \"zone_1\"\tRelError: 3.77251e+01\tAbsError: 4.19629e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.77251e+01\tAbsError: 4.19629e-02\n", + " Region: \"zone_3\"\tRelError: 1.78043e+00\tAbsError: 8.73225e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.02406e-01\tAbsError: 5.17151e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.02362e-01\tAbsError: 3.56074e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75661e-01\tAbsError: 4.19629e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.40459e+00\tAbsError: 1.40151e+17\n", + " Region: \"zone_1\"\tRelError: 9.91077e-01\tAbsError: 2.58298e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.91077e-01\tAbsError: 2.58298e-02\n", + " Region: \"zone_3\"\tRelError: 2.41351e+00\tAbsError: 1.40151e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.12962e-01\tAbsError: 7.03247e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.20637e-01\tAbsError: 6.98261e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67991e+00\tAbsError: 2.58976e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.98434e+00\tAbsError: 7.37896e+16\n", + " Region: \"zone_1\"\tRelError: 1.81427e+00\tAbsError: 3.20820e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81427e+00\tAbsError: 3.20820e-02\n", + " Region: \"zone_3\"\tRelError: 3.17007e+00\tAbsError: 7.37896e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.99909e-01\tAbsError: 3.77060e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.60109e-01\tAbsError: 3.60836e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.71005e+00\tAbsError: 3.20820e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.59422e-10\tAbsError: 1.22833e+06\n", + " Region: \"zone_1\"\tRelError: 9.68713e-11\tAbsError: 2.65442e-12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.68713e-11\tAbsError: 2.65442e-12\n", + " Region: \"zone_3\"\tRelError: 6.62551e-10\tAbsError: 1.22833e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38518e-10\tAbsError: 7.28673e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03771e-10\tAbsError: 4.99655e+05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02615e-11\tAbsError: 2.83299e-12\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.04122e+01\tAbsError: 9.15719e+15\n", + " Region: \"zone_1\"\tRelError: 5.85997e+01\tAbsError: 4.29338e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.85997e+01\tAbsError: 4.29338e-02\n", + " Region: \"zone_3\"\tRelError: 1.81249e+00\tAbsError: 9.15719e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09671e-01\tAbsError: 5.35064e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.09616e-01\tAbsError: 3.80655e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93207e-01\tAbsError: 4.29338e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:43\u001b[0m.\u001b[1;36m703\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.8\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.49752e+00\tAbsError: 1.43728e+15\n", + " Region: \"zone_1\"\tRelError: 8.52793e-01\tAbsError: 3.19525e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.52793e-01\tAbsError: 3.19525e-02\n", + " Region: \"zone_3\"\tRelError: 1.64473e+00\tAbsError: 1.43728e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.06123e-01\tAbsError: 8.18697e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.93926e-01\tAbsError: 6.18581e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44679e-01\tAbsError: 3.19525e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.15760e+00\tAbsError: 3.46533e+16\n", + " Region: \"zone_1\"\tRelError: 4.44487e-01\tAbsError: 9.16511e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44487e-01\tAbsError: 9.16511e-03\n", + " Region: \"zone_3\"\tRelError: 7.13113e-01\tAbsError: 3.46533e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34412e-01\tAbsError: 1.73980e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.38070e-02\tAbsError: 1.72552e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.24894e-01\tAbsError: 9.16533e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.12855e+01\tAbsError: 4.98281e+16\n", + " Region: \"zone_1\"\tRelError: 8.25173e+00\tAbsError: 2.57970e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.25173e+00\tAbsError: 2.57970e-02\n", + " Region: \"zone_3\"\tRelError: 3.03375e+00\tAbsError: 4.98281e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.24699e-01\tAbsError: 2.52260e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.64645e-01\tAbsError: 2.46021e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04441e+00\tAbsError: 2.57091e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.66737e+00\tAbsError: 2.26108e+15\n", + " Region: \"zone_1\"\tRelError: 9.89112e-01\tAbsError: 3.31000e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.89112e-01\tAbsError: 3.31000e-02\n", + " Region: \"zone_3\"\tRelError: 1.67826e+00\tAbsError: 2.26108e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.18687e-01\tAbsError: 1.24573e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.03123e-01\tAbsError: 1.01535e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56453e-01\tAbsError: 3.31000e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.85026e+00\tAbsError: 1.00498e+15\n", + " Region: \"zone_1\"\tRelError: 6.71376e-01\tAbsError: 2.56697e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.71376e-01\tAbsError: 2.56697e-02\n", + " Region: \"zone_3\"\tRelError: 1.17888e+00\tAbsError: 1.00498e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.41919e-01\tAbsError: 4.48768e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.04352e-01\tAbsError: 5.56214e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32610e-01\tAbsError: 2.56412e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 5.74119e-02\tAbsError: 3.00253e+15\n", + " Region: \"zone_1\"\tRelError: 1.72667e-02\tAbsError: 6.21206e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72667e-02\tAbsError: 6.21206e-05\n", + " Region: \"zone_3\"\tRelError: 4.01452e-02\tAbsError: 3.00253e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04052e-02\tAbsError: 1.53972e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.58359e-03\tAbsError: 1.46281e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81563e-02\tAbsError: 6.25380e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.72164e+01\tAbsError: 2.27463e+16\n", + " Region: \"zone_1\"\tRelError: 1.85589e+00\tAbsError: 1.08343e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85589e+00\tAbsError: 1.08343e-02\n", + " Region: \"zone_3\"\tRelError: 2.53605e+01\tAbsError: 2.27463e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.43070e-01\tAbsError: 1.22773e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.41963e-01\tAbsError: 1.04689e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49755e+01\tAbsError: 1.08344e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.06248e+01\tAbsError: 3.16044e+16\n", + " Region: \"zone_1\"\tRelError: 1.87257e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87257e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 1.89912e+00\tAbsError: 3.16044e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.93746e-01\tAbsError: 1.57387e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.93249e-01\tAbsError: 1.58657e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.12130e-01\tAbsError: 4.09543e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.57562e+00\tAbsError: 1.85067e+15\n", + " Region: \"zone_1\"\tRelError: 3.48899e-01\tAbsError: 2.58724e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.48899e-01\tAbsError: 2.58724e-02\n", + " Region: \"zone_3\"\tRelError: 1.22672e+00\tAbsError: 1.85067e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.65203e-01\tAbsError: 7.94760e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.14656e-01\tAbsError: 1.05591e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46858e-01\tAbsError: 2.56646e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.27711e-01\tAbsError: 4.77267e+14\n", + " Region: \"zone_1\"\tRelError: 4.31745e-02\tAbsError: 1.06614e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.31745e-02\tAbsError: 1.06614e-02\n", + " Region: \"zone_3\"\tRelError: 4.84536e-01\tAbsError: 4.77267e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.84030e-01\tAbsError: 2.26718e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.56062e-01\tAbsError: 2.50549e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44447e-02\tAbsError: 1.06615e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.14148e-05\tAbsError: 7.36262e+11\n", + " Region: \"zone_1\"\tRelError: 4.55231e-07\tAbsError: 9.54534e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.55231e-07\tAbsError: 9.54534e-09\n", + " Region: \"zone_3\"\tRelError: 1.09596e-05\tAbsError: 7.36262e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.23017e-06\tAbsError: 3.79166e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.26674e-07\tAbsError: 3.57096e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00275e-06\tAbsError: 1.00816e-08\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.53965e+00\tAbsError: 4.86692e+15\n", + " Region: \"zone_1\"\tRelError: 2.38392e-01\tAbsError: 4.52967e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38392e-01\tAbsError: 4.52967e-04\n", + " Region: \"zone_3\"\tRelError: 1.30126e+00\tAbsError: 4.86692e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38553e-02\tAbsError: 2.62229e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.91289e-02\tAbsError: 2.24463e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21828e+00\tAbsError: 4.65426e-04\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:44\u001b[0m.\u001b[1;36m818\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 1.0\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Iteration: 1\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + " Device: \"device\"\tRelError: 2.45748e+00\tAbsError: 3.69441e+16\n", + " Region: \"zone_1\"\tRelError: 4.13331e-01\tAbsError: 3.07632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.13331e-01\tAbsError: 3.07632e-02\n", + " Region: \"zone_3\"\tRelError: 2.04415e+00\tAbsError: 3.69441e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.88321e-01\tAbsError: 1.86445e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.52684e-01\tAbsError: 1.82996e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.03145e-01\tAbsError: 3.07632e-02\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.62870e-01\tAbsError: 8.58491e+14\n", + " Region: \"zone_1\"\tRelError: 9.69362e-02\tAbsError: 1.22653e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.69362e-02\tAbsError: 1.22653e-02\n", + " Region: \"zone_3\"\tRelError: 5.65934e-01\tAbsError: 8.58491e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14889e-01\tAbsError: 4.34973e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96689e-01\tAbsError: 4.23518e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.43556e-02\tAbsError: 1.22654e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.57904e-01\tAbsError: 9.50853e+13\n", + " Region: \"zone_1\"\tRelError: 4.80473e-02\tAbsError: 3.01426e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.80473e-02\tAbsError: 3.01426e-04\n", + " Region: \"zone_3\"\tRelError: 1.09857e-01\tAbsError: 9.50853e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.42491e-02\tAbsError: 5.42455e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.39423e-02\tAbsError: 4.08397e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66512e-03\tAbsError: 3.07235e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.68644e-03\tAbsError: 3.48994e+13\n", + " Region: \"zone_1\"\tRelError: 5.21035e-04\tAbsError: 1.13321e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.21035e-04\tAbsError: 1.13321e-06\n", + " Region: \"zone_3\"\tRelError: 4.16540e-03\tAbsError: 3.48994e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.06545e-04\tAbsError: 1.84003e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.15394e-04\tAbsError: 1.64991e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.64346e-03\tAbsError: 1.18905e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 4.80876e+00\tAbsError: 2.48392e+16\n", + " Region: \"zone_1\"\tRelError: 2.08564e-01\tAbsError: 2.58396e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08564e-01\tAbsError: 2.58396e-02\n", + " Region: \"zone_3\"\tRelError: 4.60020e+00\tAbsError: 2.48392e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.12756e-01\tAbsError: 1.24031e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.61077e-01\tAbsError: 1.24362e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.62637e+00\tAbsError: 2.33304e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.84400e-01\tAbsError: 1.84489e+14\n", + " Region: \"zone_1\"\tRelError: 5.08949e-02\tAbsError: 4.34577e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.08949e-02\tAbsError: 4.34577e-04\n", + " Region: \"zone_3\"\tRelError: 1.33505e-01\tAbsError: 1.84489e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07596e-01\tAbsError: 1.04840e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.33209e-02\tAbsError: 7.96491e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58735e-03\tAbsError: 4.38742e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.46971e+03\tAbsError: 1.01752e+18\n", + " Region: \"zone_1\"\tRelError: 3.33693e+03\tAbsError: 4.09540e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.33693e+03\tAbsError: 4.09540e-02\n", + " Region: \"zone_3\"\tRelError: 1.32780e+02\tAbsError: 1.01752e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.36242e-01\tAbsError: 4.96799e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.16599e-01\tAbsError: 5.20717e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31327e+02\tAbsError: 4.09542e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.72801e-04\tAbsError: 2.36462e+11\n", + " Region: \"zone_1\"\tRelError: 2.51830e-04\tAbsError: 1.37797e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51830e-04\tAbsError: 1.37797e-06\n", + " Region: \"zone_3\"\tRelError: 3.20970e-04\tAbsError: 2.36462e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96882e-04\tAbsError: 1.74027e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.62102e-05\tAbsError: 6.24347e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.87814e-06\tAbsError: 1.44860e-06\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.18196e-08\tAbsError: 3.69718e+08\n", + " Region: \"zone_1\"\tRelError: 4.96905e-09\tAbsError: 3.01388e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.96905e-09\tAbsError: 3.01388e-11\n", + " Region: \"zone_3\"\tRelError: 3.68506e-08\tAbsError: 3.69718e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.36089e-09\tAbsError: 1.89656e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.03371e-10\tAbsError: 1.80062e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 3.27863e-08\tAbsError: 3.32598e-11\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:45\u001b[0m.\u001b[1;36m725\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:45\u001b[0m.\u001b[1;36m725\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.9444444444444445\u001b[0m \n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.55071e+00\tAbsError: 8.48657e+15\n", + " Region: \"zone_1\"\tRelError: 8.11805e-01\tAbsError: 9.16529e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.11805e-01\tAbsError: 9.16529e-03\n", + " Region: \"zone_3\"\tRelError: 2.73890e+00\tAbsError: 8.48657e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.34197e-01\tAbsError: 4.50158e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.40806e-01\tAbsError: 3.98499e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36390e+00\tAbsError: 9.16533e-03\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.66432e-04\tAbsError: 7.61489e+11\n", + " Region: \"zone_1\"\tRelError: 4.42890e-04\tAbsError: 3.54702e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.42890e-04\tAbsError: 3.54702e-06\n", + " Region: \"zone_3\"\tRelError: 5.23542e-04\tAbsError: 7.61489e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.54885e-04\tAbsError: 5.60496e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.72654e-05\tAbsError: 2.00993e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13918e-05\tAbsError: 3.60294e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 5.65180e+03\tAbsError: 5.72030e+17\n", + " Region: \"zone_1\"\tRelError: 4.78800e+03\tAbsError: 3.07628e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.78800e+03\tAbsError: 3.07628e-02\n", + " Region: \"zone_3\"\tRelError: 8.63794e+02\tAbsError: 5.72030e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.05958e-01\tAbsError: 2.86919e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.81098e-01\tAbsError: 2.85111e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 8.62807e+02\tAbsError: 3.07632e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.25906e-09\tAbsError: 1.82945e+06\n", + " Region: \"zone_1\"\tRelError: 1.87221e-09\tAbsError: 9.90777e-12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87221e-09\tAbsError: 9.90777e-12\n", + " Region: \"zone_3\"\tRelError: 2.38685e-09\tAbsError: 1.82945e+06\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.08433e-09\tAbsError: 1.11322e+06\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.44618e-10\tAbsError: 7.16226e+05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.79058e-11\tAbsError: 1.06265e-11\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:46\u001b[0m.\u001b[1;36m082\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:46\u001b[0m.\u001b[1;36m082\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7299999999999999\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 5.10055e-01\tAbsError: 1.79008e+15\n", + " Region: \"zone_1\"\tRelError: 7.10147e-02\tAbsError: 3.19256e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.10147e-02\tAbsError: 3.19256e-04\n", + " Region: \"zone_3\"\tRelError: 4.39040e-01\tAbsError: 1.79008e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39314e-02\tAbsError: 9.39738e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.81226e-02\tAbsError: 8.50345e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.56986e-01\tAbsError: 3.21663e-04\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.97260e-08\tAbsError: 1.61510e+07\n", + " Region: \"zone_1\"\tRelError: 9.39372e-09\tAbsError: 7.94516e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.39372e-09\tAbsError: 7.94516e-11\n", + " Region: \"zone_3\"\tRelError: 1.03323e-08\tAbsError: 1.61510e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.49613e-09\tAbsError: 1.01388e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34197e-09\tAbsError: 6.01217e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.94202e-10\tAbsError: 8.30962e-11\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:46\u001b[0m.\u001b[1;36m350\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.7599999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.88673e+01\tAbsError: 3.96845e+17\n", + " Region: \"zone_1\"\tRelError: 1.50825e+01\tAbsError: 4.20725e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50825e+01\tAbsError: 4.20725e-02\n", + " Region: \"zone_3\"\tRelError: 1.37848e+01\tAbsError: 3.96845e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.84462e-01\tAbsError: 1.90025e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.77026e-01\tAbsError: 2.06820e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22233e+01\tAbsError: 4.20726e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 4.89714e+02\tAbsError: 1.10434e+17\n", + " Region: \"zone_1\"\tRelError: 9.55845e+01\tAbsError: 2.58991e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.55845e+01\tAbsError: 2.58991e-02\n", + " Region: \"zone_3\"\tRelError: 3.94130e+02\tAbsError: 1.10434e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.85160e-01\tAbsError: 5.54007e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.05739e-01\tAbsError: 5.50328e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.93839e+02\tAbsError: 2.58972e-02\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.33163e-03\tAbsError: 7.03544e+12\n", + " Region: \"zone_1\"\tRelError: 6.88994e-05\tAbsError: 8.74550e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 6.88994e-05\tAbsError: 8.74550e-07\n", + " Region: \"zone_3\"\tRelError: 1.26273e-03\tAbsError: 7.03544e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.78279e-04\tAbsError: 4.08452e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.87916e-05\tAbsError: 2.95092e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.95662e-04\tAbsError: 9.67670e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.59297e+02\tAbsError: 9.37580e+15\n", + " Region: \"zone_1\"\tRelError: 1.57449e+02\tAbsError: 4.19629e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57449e+02\tAbsError: 4.19629e-02\n", + " Region: \"zone_3\"\tRelError: 1.84837e+00\tAbsError: 9.37580e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.02269e-01\tAbsError: 5.04440e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.02121e-01\tAbsError: 4.33140e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.43978e-01\tAbsError: 4.19629e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.43213e+01\tAbsError: 4.51925e+17\n", + " Region: \"zone_1\"\tRelError: 9.72728e+00\tAbsError: 3.20817e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.72728e+00\tAbsError: 3.20817e-02\n", + " Region: \"zone_3\"\tRelError: 1.45940e+01\tAbsError: 4.51925e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.26127e-01\tAbsError: 2.25636e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.37098e-01\tAbsError: 2.26288e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33307e+01\tAbsError: 3.20820e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.66351e+02\tAbsError: 9.19252e+15\n", + " Region: \"zone_1\"\tRelError: 3.26361e+01\tAbsError: 9.16476e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.26361e+01\tAbsError: 9.16476e-03\n", + " Region: \"zone_3\"\tRelError: 1.33715e+02\tAbsError: 9.19252e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.93363e-02\tAbsError: 3.80375e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.29874e-03\tAbsError: 5.38877e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33687e+02\tAbsError: 9.16533e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.48935e-08\tAbsError: 9.78086e+07\n", + " Region: \"zone_1\"\tRelError: 2.39367e-09\tAbsError: 9.98117e-12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39367e-09\tAbsError: 9.98117e-12\n", + " Region: \"zone_3\"\tRelError: 1.24998e-08\tAbsError: 9.78086e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.82653e-09\tAbsError: 5.13414e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.35560e-10\tAbsError: 4.64672e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 9.13775e-09\tAbsError: 1.21236e-11\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.46452e+01\tAbsError: 1.39214e+16\n", + " Region: \"zone_1\"\tRelError: 1.27520e+01\tAbsError: 4.29338e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27520e+01\tAbsError: 4.29338e-02\n", + " Region: \"zone_3\"\tRelError: 1.89312e+00\tAbsError: 1.39214e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09433e-01\tAbsError: 7.08522e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.09229e-01\tAbsError: 6.83614e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74457e-01\tAbsError: 4.29338e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:47\u001b[0m.\u001b[1;36m019\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.9\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.53037e+00\tAbsError: 9.91902e+15\n", + " Region: \"zone_1\"\tRelError: 8.43252e-01\tAbsError: 3.19524e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.43252e-01\tAbsError: 3.19524e-02\n", + " Region: \"zone_3\"\tRelError: 1.68712e+00\tAbsError: 9.91902e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.04474e-01\tAbsError: 4.77887e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.75728e-01\tAbsError: 5.14015e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06918e-01\tAbsError: 3.19525e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.95192e+01\tAbsError: 1.87367e+17\n", + " Region: \"zone_1\"\tRelError: 7.47528e+00\tAbsError: 2.58439e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.47528e+00\tAbsError: 2.58439e-02\n", + " Region: \"zone_3\"\tRelError: 1.20439e+01\tAbsError: 1.87367e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.50571e-01\tAbsError: 9.40532e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.24908e-01\tAbsError: 9.33136e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14684e+01\tAbsError: 2.58398e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.32987e-01\tAbsError: 2.66374e+15\n", + " Region: \"zone_1\"\tRelError: 3.15232e-01\tAbsError: 4.41461e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.15232e-01\tAbsError: 4.41461e-05\n", + " Region: \"zone_3\"\tRelError: 3.17755e-01\tAbsError: 2.66374e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.80897e-03\tAbsError: 4.60284e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.14468e-04\tAbsError: 2.20346e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.15232e-01\tAbsError: 4.48094e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.03361e+00\tAbsError: 1.75457e+16\n", + " Region: \"zone_1\"\tRelError: 2.96801e-01\tAbsError: 3.31000e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96801e-01\tAbsError: 3.31000e-02\n", + " Region: \"zone_3\"\tRelError: 1.73681e+00\tAbsError: 1.75457e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16200e-01\tAbsError: 8.62297e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.86789e-01\tAbsError: 8.92275e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.33819e-01\tAbsError: 3.31000e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.40037e+00\tAbsError: 7.91855e+15\n", + " Region: \"zone_1\"\tRelError: 1.77050e-01\tAbsError: 2.58157e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77050e-01\tAbsError: 2.58157e-02\n", + " Region: \"zone_3\"\tRelError: 1.22332e+00\tAbsError: 7.91855e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.45454e-01\tAbsError: 3.90031e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.00819e-01\tAbsError: 4.01824e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77050e-01\tAbsError: 2.58157e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 8.75936e+00\tAbsError: 2.19100e+16\n", + " Region: \"zone_1\"\tRelError: 5.91836e-01\tAbsError: 1.08340e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.91836e-01\tAbsError: 1.08340e-02\n", + " Region: \"zone_3\"\tRelError: 8.16752e+00\tAbsError: 2.19100e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.41856e-02\tAbsError: 1.10284e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.95173e-02\tAbsError: 1.08816e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 8.05382e+00\tAbsError: 1.08344e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.38206e-06\tAbsError: 3.71586e+11\n", + " Region: \"zone_1\"\tRelError: 3.57211e-06\tAbsError: 1.32884e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.57211e-06\tAbsError: 1.32884e-09\n", + " Region: \"zone_3\"\tRelError: 5.80995e-06\tAbsError: 3.71586e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.88317e-07\tAbsError: 1.74877e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.86151e-07\tAbsError: 1.96709e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.03548e-06\tAbsError: 1.32977e-09\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.19725e+01\tAbsError: 1.92958e+17\n", + " Region: \"zone_1\"\tRelError: 2.64183e+01\tAbsError: 4.09542e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64183e+01\tAbsError: 4.09542e-02\n", + " Region: \"zone_3\"\tRelError: 5.55416e+00\tAbsError: 1.92958e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86635e-01\tAbsError: 9.77277e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83108e-01\tAbsError: 9.52302e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.98441e+00\tAbsError: 4.09542e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.50364e+00\tAbsError: 1.43673e+16\n", + " Region: \"zone_1\"\tRelError: 2.06229e-01\tAbsError: 2.57690e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06229e-01\tAbsError: 2.57690e-02\n", + " Region: \"zone_3\"\tRelError: 1.29741e+00\tAbsError: 1.43673e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.65900e-01\tAbsError: 7.23214e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.25278e-01\tAbsError: 7.13518e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06229e-01\tAbsError: 2.50728e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.70911e+00\tAbsError: 3.16280e+15\n", + " Region: \"zone_1\"\tRelError: 1.19373e+00\tAbsError: 1.06614e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19373e+00\tAbsError: 1.06614e-02\n", + " Region: \"zone_3\"\tRelError: 5.15380e-01\tAbsError: 3.16280e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.71283e-01\tAbsError: 1.68374e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.87166e-01\tAbsError: 1.47905e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.69319e-02\tAbsError: 1.06615e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.01804e-01\tAbsError: 3.36603e+15\n", + " Region: \"zone_1\"\tRelError: 2.65712e-02\tAbsError: 6.30769e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.65712e-02\tAbsError: 6.30769e-05\n", + " Region: \"zone_3\"\tRelError: 2.75233e-01\tAbsError: 3.36603e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.46142e-03\tAbsError: 1.73937e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04193e-03\tAbsError: 1.62666e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.65729e-01\tAbsError: 6.31187e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 5.59678e+00\tAbsError: 2.20718e+17\n", + " Region: \"zone_1\"\tRelError: 8.54328e-01\tAbsError: 3.07631e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.54328e-01\tAbsError: 3.07631e-02\n", + " Region: \"zone_3\"\tRelError: 4.74245e+00\tAbsError: 2.20718e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57165e-01\tAbsError: 1.09369e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.88364e-01\tAbsError: 1.11350e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 3.39692e+00\tAbsError: 3.07632e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.10487e+00\tAbsError: 6.11018e+15\n", + " Region: \"zone_1\"\tRelError: 5.10621e-01\tAbsError: 1.22653e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.10621e-01\tAbsError: 1.22653e-02\n", + " Region: \"zone_3\"\tRelError: 5.94250e-01\tAbsError: 6.11018e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.03660e-01\tAbsError: 3.26136e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.08790e-01\tAbsError: 2.84882e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.17995e-02\tAbsError: 1.22654e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.54944e-01\tAbsError: 6.31247e+14\n", + " Region: \"zone_1\"\tRelError: 3.35277e-02\tAbsError: 3.09977e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35277e-02\tAbsError: 3.09977e-04\n", + " Region: \"zone_3\"\tRelError: 1.21416e-01\tAbsError: 6.31247e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.69365e-02\tAbsError: 3.28792e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.89497e-02\tAbsError: 3.02454e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.53021e-03\tAbsError: 3.26964e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.16816e-05\tAbsError: 9.44595e+11\n", + " Region: \"zone_1\"\tRelError: 1.39205e-06\tAbsError: 1.83406e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39205e-06\tAbsError: 1.83406e-08\n", + " Region: \"zone_3\"\tRelError: 3.02895e-05\tAbsError: 9.44595e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.64960e-06\tAbsError: 4.94394e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.51657e-07\tAbsError: 4.50201e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.71883e-05\tAbsError: 1.83406e-08\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.40459e+00\tAbsError: 1.40151e+17\n", + " Region: \"zone_1\"\tRelError: 9.91077e-01\tAbsError: 2.58298e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.91077e-01\tAbsError: 2.58298e-02\n", + " Region: \"zone_3\"\tRelError: 2.41351e+00\tAbsError: 1.40151e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.12962e-01\tAbsError: 7.03247e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.20637e-01\tAbsError: 6.98261e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67991e+00\tAbsError: 2.58976e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:48\u001b[0m.\u001b[1;36m571\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: 1.05\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.81734e-01\tAbsError: 1.29397e+15\n", + " Region: \"zone_1\"\tRelError: 2.65607e-02\tAbsError: 4.00616e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.65607e-02\tAbsError: 4.00616e-04\n", + " Region: \"zone_3\"\tRelError: 1.55174e-01\tAbsError: 1.29397e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05235e-01\tAbsError: 7.52366e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.59033e-02\tAbsError: 5.41606e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.40353e-02\tAbsError: 4.21669e-04\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:48\u001b[0m.\u001b[1;36m774\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:48\u001b[0m.\u001b[1;36m805\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.25 bias\u001b[0m \n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.77292e-04\tAbsError: 1.38473e+12\n", + " Region: \"zone_1\"\tRelError: 5.44385e-05\tAbsError: 1.16755e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.44385e-05\tAbsError: 1.16755e-06\n", + " Region: \"zone_3\"\tRelError: 4.22853e-04\tAbsError: 1.38473e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.57884e-04\tAbsError: 9.38758e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.97750e-05\tAbsError: 4.45977e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51936e-05\tAbsError: 1.26574e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:48\u001b[0m.\u001b[1;36m833\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.15760e+00\tAbsError: 3.46533e+16\n", + " Region: \"zone_1\"\tRelError: 4.44487e-01\tAbsError: 9.16511e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44487e-01\tAbsError: 9.16511e-03\n", + " Region: \"zone_3\"\tRelError: 7.13113e-01\tAbsError: 3.46533e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34412e-01\tAbsError: 1.73980e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.38070e-02\tAbsError: 1.72552e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.24894e-01\tAbsError: 9.16533e-03\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.31774e-04\tAbsError: 5.24071e+12\n", + " Region: \"zone_1\"\tRelError: 7.43582e-05\tAbsError: 2.53146e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.43582e-05\tAbsError: 2.53146e-06\n", + " Region: \"zone_3\"\tRelError: 5.57416e-04\tAbsError: 5.24071e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.32902e-04\tAbsError: 3.49386e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.63617e-05\tAbsError: 1.74685e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.81517e-05\tAbsError: 2.70236e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.70323e+03\tAbsError: 1.65122e+18\n", + " Region: \"zone_1\"\tRelError: 3.32065e+02\tAbsError: 4.20723e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.32065e+02\tAbsError: 4.20723e-02\n", + " Region: \"zone_3\"\tRelError: 1.37117e+03\tAbsError: 1.65122e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.08593e-01\tAbsError: 8.18918e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.84678e-01\tAbsError: 8.32299e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36977e+03\tAbsError: 4.20726e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.07328e-09\tAbsError: 1.34257e+07\n", + " Region: \"zone_1\"\tRelError: 2.69641e-09\tAbsError: 6.49962e-12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.69641e-09\tAbsError: 6.49962e-12\n", + " Region: \"zone_3\"\tRelError: 3.37687e-09\tAbsError: 1.34257e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.85536e-09\tAbsError: 8.36283e+06\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.97808e-10\tAbsError: 5.06285e+06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23706e-10\tAbsError: 6.69897e-12\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:49\u001b[0m.\u001b[1;36m341\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:49\u001b[0m.\u001b[1;36m341\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.8349999999999999\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Iteration: 4\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 5.74119e-02\tAbsError: 3.00253e+15\n", + " Region: \"zone_1\"\tRelError: 1.72667e-02\tAbsError: 6.21206e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72667e-02\tAbsError: 6.21206e-05\n", + " Region: \"zone_3\"\tRelError: 4.01452e-02\tAbsError: 3.00253e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04052e-02\tAbsError: 1.53972e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.58359e-03\tAbsError: 1.46281e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81563e-02\tAbsError: 6.25380e-05\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.02819e+04\tAbsError: 9.43628e+18\n", + " Region: \"zone_1\"\tRelError: 9.68046e+03\tAbsError: 9.26313e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.68046e+03\tAbsError: 9.26313e-02\n", + " Region: \"zone_3\"\tRelError: 1.06015e+04\tAbsError: 9.43628e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.25110e+02\tAbsError: 3.83433e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.95896e+02\tAbsError: 5.60195e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 9.68046e+03\tAbsError: 9.26320e-02\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22602\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.68177e-08\tAbsError: 1.37298e+08\n", + " Region: \"zone_1\"\tRelError: 2.83992e-09\tAbsError: 2.34907e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83992e-09\tAbsError: 2.34907e-11\n", + " Region: \"zone_3\"\tRelError: 1.39778e-08\tAbsError: 1.37298e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12757e-08\tAbsError: 9.31515e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.32268e-09\tAbsError: 4.41463e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37946e-09\tAbsError: 2.41052e-11\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:49\u001b[0m.\u001b[1;36m631\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.8699999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Iteration: 1\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 5.63649e+03\tAbsError: 5.73085e+17\n", + " Region: \"zone_1\"\tRelError: 1.94437e+03\tAbsError: 3.20814e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.94437e+03\tAbsError: 3.20814e-02\n", + " Region: \"zone_3\"\tRelError: 3.69212e+03\tAbsError: 5.73085e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.36268e-01\tAbsError: 2.87360e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.24144e-01\tAbsError: 2.85725e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 3.69126e+03\tAbsError: 3.20820e-02\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n" + ] + } + ], + "source": [ + "results_iso = run_heat_sim(sim=sim_iso, log_level=\"DEBUG\")\n", + "subprocess.run([\"cp\", \"-r\", \"tmp\", \"tmp_Ba_example_iso\"]) \n", + "subprocess.run([\"cp\", \"output/simulation_data.hdf5\", \"tmp_Ba_example_iso/\"]) " + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "04d6037a-adb9-4b8c-b319-64074b203f9c", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:24\u001b[0m.\u001b[1;36m801\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: 0.55\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 8.69185e-05\tAbsError: 3.95954e+10\n", + " Region: \"zone_1\"\tRelError: 7.32516e-06\tAbsError: 6.15078e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.30759e-06\tAbsError: 3.68566e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75656e-08\tAbsError: 6.11392e-06\n", + " Region: \"zone_3\"\tRelError: 7.95933e-05\tAbsError: 3.95954e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.79841e-06\tAbsError: 1.32431e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.77435e-06\tAbsError: 2.63522e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.40030e-05\tAbsError: 3.69064e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75729e-08\tAbsError: 6.11658e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:25\u001b[0m.\u001b[1;36m081\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: 0.54\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.61549e-04\tAbsError: 5.47840e+10\n", + " Region: \"zone_1\"\tRelError: 1.81900e-05\tAbsError: 1.93945e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81846e-05\tAbsError: 4.89694e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43105e-09\tAbsError: 1.89048e-06\n", + " Region: \"zone_3\"\tRelError: 1.43359e-04\tAbsError: 5.47840e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.04114e-06\tAbsError: 2.20323e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.00674e-06\tAbsError: 3.27517e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35306e-04\tAbsError: 4.90033e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43421e-09\tAbsError: 1.89162e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.14452e-04\tAbsError: 7.30289e+10\n", + " Region: \"zone_1\"\tRelError: 2.86940e-05\tAbsError: 6.36360e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.86759e-05\tAbsError: 5.89548e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.81140e-08\tAbsError: 6.30465e-06\n", + " Region: \"zone_3\"\tRelError: 1.85758e-04\tAbsError: 7.30289e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.82939e-06\tAbsError: 2.93609e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.78814e-06\tAbsError: 4.36680e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76122e-04\tAbsError: 5.96153e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.81216e-08\tAbsError: 6.30740e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.42427e-04\tAbsError: 5.63748e+10\n", + " Region: \"zone_1\"\tRelError: 1.23755e-05\tAbsError: 6.53179e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23569e-05\tAbsError: 4.83198e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.86277e-08\tAbsError: 6.48347e-06\n", + " Region: \"zone_3\"\tRelError: 1.30051e-04\tAbsError: 5.63748e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.81534e-06\tAbsError: 2.09516e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.78294e-06\tAbsError: 3.54232e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22434e-04\tAbsError: 4.86777e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.86354e-08\tAbsError: 6.48630e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.17538e+01\tAbsError: 9.25847e+15\n", + " Region: \"zone_1\"\tRelError: 4.00213e+01\tAbsError: 4.34081e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.00213e+01\tAbsError: 4.34059e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.13543e-09\tAbsError: 2.13056e-06\n", + " Region: \"zone_3\"\tRelError: 1.73246e+00\tAbsError: 9.25847e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.89882e-01\tAbsError: 5.37570e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.89829e-01\tAbsError: 3.88277e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52747e-01\tAbsError: 4.34059e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.13711e-09\tAbsError: 2.13108e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.55715e-06\tAbsError: 1.55373e+09\n", + " Region: \"zone_1\"\tRelError: 2.75443e-07\tAbsError: 3.15707e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66361e-07\tAbsError: 7.16801e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.08162e-09\tAbsError: 3.15635e-06\n", + " Region: \"zone_3\"\tRelError: 2.28171e-06\tAbsError: 1.55373e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01860e-07\tAbsError: 1.23173e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.92720e-08\tAbsError: 3.21997e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.10150e-06\tAbsError: 7.37244e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.08225e-09\tAbsError: 3.15662e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.78742e+01\tAbsError: 9.05161e+15\n", + " Region: \"zone_1\"\tRelError: 1.61544e+01\tAbsError: 4.29358e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61544e+01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.66407e-09\tAbsError: 1.96688e-06\n", + " Region: \"zone_3\"\tRelError: 1.71987e+00\tAbsError: 9.05161e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86128e-01\tAbsError: 5.27529e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.86079e-01\tAbsError: 3.77633e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47659e-01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.66503e-09\tAbsError: 1.96717e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:26\u001b[0m.\u001b[1;36m827\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: 0.5\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.22665e-05\tAbsError: 5.09033e+09\n", + " Region: \"zone_1\"\tRelError: 4.34074e-06\tAbsError: 3.93347e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.32944e-06\tAbsError: 3.33444e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13089e-08\tAbsError: 3.93013e-06\n", + " Region: \"zone_3\"\tRelError: 1.79258e-05\tAbsError: 5.09033e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.07491e-07\tAbsError: 3.86922e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.88310e-07\tAbsError: 1.22111e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73186e-05\tAbsError: 3.47370e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13093e-08\tAbsError: 3.93031e-06\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:27\u001b[0m.\u001b[1;36m020\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.6\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Iteration: 8\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 2.23392e-05\tAbsError: 5.34475e+09\n", + " Region: \"zone_1\"\tRelError: 2.09068e-06\tAbsError: 2.89040e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08236e-06\tAbsError: 3.49141e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.31400e-09\tAbsError: 2.88691e-06\n", + " Region: \"zone_3\"\tRelError: 2.02485e-05\tAbsError: 5.34475e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.20754e-07\tAbsError: 3.93870e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.15383e-07\tAbsError: 1.40605e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96041e-05\tAbsError: 3.63779e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.31461e-09\tAbsError: 2.88716e-06\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:27\u001b[0m.\u001b[1;36m163\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.58\u001b[0m \n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.07279e+01\tAbsError: 1.48541e+15\n", + " Region: \"zone_1\"\tRelError: 9.16669e+00\tAbsError: 7.57653e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.16657e+00\tAbsError: 3.36591e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21167e-04\tAbsError: 4.21062e-02\n", + " Region: \"zone_3\"\tRelError: 1.56119e+00\tAbsError: 1.48541e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.76744e-01\tAbsError: 8.47073e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.60738e-01\tAbsError: 6.38333e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23585e-01\tAbsError: 3.36593e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21167e-04\tAbsError: 4.21062e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.83311e+00\tAbsError: 1.26455e+15\n", + " Region: \"zone_1\"\tRelError: 2.88937e-01\tAbsError: 7.51136e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88816e-01\tAbsError: 3.31003e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20899e-04\tAbsError: 4.20134e-02\n", + " Region: \"zone_3\"\tRelError: 1.54417e+00\tAbsError: 1.26455e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.70125e-01\tAbsError: 7.28712e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.54876e-01\tAbsError: 5.35842e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19050e-01\tAbsError: 3.31004e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20899e-04\tAbsError: 4.20134e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.44671e+02\tAbsError: 8.23352e+15\n", + " Region: \"zone_1\"\tRelError: 5.43003e+02\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.43003e+02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.11267e-10\tAbsError: 1.43080e-07\n", + " Region: \"zone_3\"\tRelError: 1.66763e+00\tAbsError: 8.23352e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.84587e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69628e-01\tAbsError: 3.38765e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28340e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.11422e-10\tAbsError: 1.43134e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.88271e+01\tAbsError: 1.03297e+16\n", + " Region: \"zone_1\"\tRelError: 1.70343e+01\tAbsError: 4.56456e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70343e+01\tAbsError: 4.56455e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.07702e-10\tAbsError: 1.41907e-07\n", + " Region: \"zone_3\"\tRelError: 1.79279e+00\tAbsError: 1.03297e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.06826e-01\tAbsError: 5.83689e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.06752e-01\tAbsError: 4.49285e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79207e-01\tAbsError: 4.56455e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.07906e-10\tAbsError: 1.41981e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.41492e+01\tAbsError: 9.89143e+15\n", + " Region: \"zone_1\"\tRelError: 2.23800e+01\tAbsError: 4.47730e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23800e+01\tAbsError: 4.47728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.25599e-10\tAbsError: 2.17748e-07\n", + " Region: \"zone_3\"\tRelError: 1.76921e+00\tAbsError: 9.89143e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.00389e-01\tAbsError: 5.65978e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.00325e-01\tAbsError: 4.23166e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68492e-01\tAbsError: 4.47728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.25887e-10\tAbsError: 2.17851e-07\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.78585e+00\tAbsError: 9.41451e+14\n", + " Region: \"zone_1\"\tRelError: 7.13109e-01\tAbsError: 3.44571e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.13084e-01\tAbsError: 2.58762e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.46922e-05\tAbsError: 8.58088e-03\n", + " Region: \"zone_3\"\tRelError: 1.07274e+00\tAbsError: 9.41451e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.00333e-01\tAbsError: 4.29385e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.58044e-01\tAbsError: 5.12066e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14338e-01\tAbsError: 2.58947e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.46922e-05\tAbsError: 8.58088e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.16142e+00\tAbsError: 7.46156e+14\n", + " Region: \"zone_1\"\tRelError: 1.09872e-01\tAbsError: 3.44018e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09847e-01\tAbsError: 2.58558e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45917e-05\tAbsError: 8.54603e-03\n", + " Region: \"zone_3\"\tRelError: 1.05155e+00\tAbsError: 7.46156e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89433e-01\tAbsError: 3.46738e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.51496e-01\tAbsError: 3.99417e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10596e-01\tAbsError: 2.58925e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45917e-05\tAbsError: 8.54603e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.93663e+00\tAbsError: 6.37428e+14\n", + " Region: \"zone_1\"\tRelError: 3.46019e+00\tAbsError: 7.21476e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.46007e+00\tAbsError: 3.07635e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", + " Region: \"zone_3\"\tRelError: 1.47644e+00\tAbsError: 6.37428e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40577e-01\tAbsError: 3.72575e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.27797e-01\tAbsError: 2.64853e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07947e-01\tAbsError: 3.07638e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.78493e+01\tAbsError: 3.20100e+15\n", + " Region: \"zone_1\"\tRelError: 4.62100e+01\tAbsError: 7.94945e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62099e+01\tAbsError: 3.63156e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24260e-04\tAbsError: 4.31789e-02\n", + " Region: \"zone_3\"\tRelError: 1.63930e+00\tAbsError: 3.20100e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.06426e-01\tAbsError: 1.69245e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.84342e-01\tAbsError: 1.50855e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48412e-01\tAbsError: 3.63156e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24260e-04\tAbsError: 4.31789e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.49591e+00\tAbsError: 2.36630e+15\n", + " Region: \"zone_1\"\tRelError: 1.88679e+00\tAbsError: 7.78202e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88667e+00\tAbsError: 3.52795e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22421e-04\tAbsError: 4.25407e-02\n", + " Region: \"zone_3\"\tRelError: 1.60912e+00\tAbsError: 2.36630e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.95285e-01\tAbsError: 1.29391e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.75748e-01\tAbsError: 1.07240e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37963e-01\tAbsError: 3.52796e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22421e-04\tAbsError: 4.25407e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.97805e-01\tAbsError: 4.22171e+14\n", + " Region: \"zone_1\"\tRelError: 1.57599e-01\tAbsError: 1.98078e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57580e-01\tAbsError: 1.31068e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.92831e-05\tAbsError: 6.70102e-03\n", + " Region: \"zone_3\"\tRelError: 4.40206e-01\tAbsError: 4.22171e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.55362e-01\tAbsError: 2.02981e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.39059e-01\tAbsError: 2.19190e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.57657e-02\tAbsError: 1.31068e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.92831e-05\tAbsError: 6.70102e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.49598e-01\tAbsError: 3.37443e+14\n", + " Region: \"zone_1\"\tRelError: 4.08488e-02\tAbsError: 1.80805e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.08321e-02\tAbsError: 1.22656e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67328e-05\tAbsError: 5.81483e-03\n", + " Region: \"zone_3\"\tRelError: 4.08750e-01\tAbsError: 3.37443e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.41863e-01\tAbsError: 1.59086e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.25055e-01\tAbsError: 1.78357e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.18148e-02\tAbsError: 1.22657e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67328e-05\tAbsError: 5.81483e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.95431e+00\tAbsError: 2.96317e+14\n", + " Region: \"zone_1\"\tRelError: 2.00902e+00\tAbsError: 3.34445e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.00900e+00\tAbsError: 2.58782e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", + " Region: \"zone_3\"\tRelError: 9.45295e-01\tAbsError: 2.96317e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42034e-01\tAbsError: 1.59420e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.10683e-01\tAbsError: 1.36896e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.25558e-02\tAbsError: 2.58843e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.99450e+00\tAbsError: 2.69783e+15\n", + " Region: \"zone_1\"\tRelError: 8.00609e-01\tAbsError: 3.34477e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.00587e-01\tAbsError: 2.57631e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.21384e-05\tAbsError: 7.68460e-03\n", + " Region: \"zone_3\"\tRelError: 1.19389e+00\tAbsError: 2.69783e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.49930e-01\tAbsError: 1.16830e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.12020e-01\tAbsError: 1.52953e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31922e-01\tAbsError: 2.56133e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.21545e-05\tAbsError: 7.69038e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.67527e+00\tAbsError: 1.79984e+15\n", + " Region: \"zone_1\"\tRelError: 5.30726e-01\tAbsError: 3.40936e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.30702e-01\tAbsError: 2.58093e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.38662e-05\tAbsError: 8.28427e-03\n", + " Region: \"zone_3\"\tRelError: 1.14454e+00\tAbsError: 1.79984e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.31015e-01\tAbsError: 7.86562e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.87926e-01\tAbsError: 1.01328e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25580e-01\tAbsError: 2.58205e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.38792e-05\tAbsError: 8.28883e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.62335e-01\tAbsError: 8.52607e+13\n", + " Region: \"zone_1\"\tRelError: 1.60436e-01\tAbsError: 8.47864e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60413e-01\tAbsError: 3.10853e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.35349e-05\tAbsError: 8.16779e-03\n", + " Region: \"zone_3\"\tRelError: 1.01899e-01\tAbsError: 8.52607e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.58516e-02\tAbsError: 4.50523e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.50106e-02\tAbsError: 4.02084e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10135e-02\tAbsError: 3.29324e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.35395e-05\tAbsError: 8.16938e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.04059e-01\tAbsError: 6.56185e+13\n", + " Region: \"zone_1\"\tRelError: 1.13333e-02\tAbsError: 6.89729e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13142e-02\tAbsError: 2.55833e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91291e-05\tAbsError: 6.64145e-03\n", + " Region: \"zone_3\"\tRelError: 9.27262e-02\tAbsError: 6.56185e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.04845e-02\tAbsError: 3.55492e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.18771e-02\tAbsError: 3.00692e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03455e-02\tAbsError: 2.71121e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91291e-05\tAbsError: 6.64145e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.90232e-01\tAbsError: 1.27257e+14\n", + " Region: \"zone_1\"\tRelError: 2.88169e-01\tAbsError: 1.34324e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88157e-01\tAbsError: 9.16559e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22923e-05\tAbsError: 4.26682e-03\n", + " Region: \"zone_3\"\tRelError: 3.02062e-01\tAbsError: 1.27257e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98145e-01\tAbsError: 5.59682e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.53461e-02\tAbsError: 7.12890e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.85587e-02\tAbsError: 9.16563e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22942e-05\tAbsError: 4.26755e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.00720e+00\tAbsError: 1.15188e+15\n", + " Region: \"zone_1\"\tRelError: 4.40654e+00\tAbsError: 3.68300e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.40649e+00\tAbsError: 1.76841e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.50999e-05\tAbsError: 1.91459e-02\n", + " Region: \"zone_3\"\tRelError: 6.00656e-01\tAbsError: 1.15188e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.20391e-01\tAbsError: 5.67234e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.11129e-01\tAbsError: 5.84644e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.90811e-02\tAbsError: 1.76842e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.51005e-05\tAbsError: 1.91459e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.92102e-01\tAbsError: 7.85625e+14\n", + " Region: \"zone_1\"\tRelError: 1.55937e-01\tAbsError: 2.88894e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55899e-01\tAbsError: 1.57809e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77234e-05\tAbsError: 1.31085e-02\n", + " Region: \"zone_3\"\tRelError: 5.36165e-01\tAbsError: 7.85625e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.94721e-01\tAbsError: 3.88094e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.82672e-01\tAbsError: 3.97531e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.87349e-02\tAbsError: 1.57810e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77234e-05\tAbsError: 1.31085e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.22238e-02\tAbsError: 4.20049e+12\n", + " Region: \"zone_1\"\tRelError: 9.02002e-04\tAbsError: 2.21541e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.01377e-04\tAbsError: 4.51852e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.24524e-07\tAbsError: 2.17023e-04\n", + " Region: \"zone_3\"\tRelError: 1.13218e-02\tAbsError: 4.20049e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.21631e-04\tAbsError: 1.57143e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.43383e-04\tAbsError: 2.62907e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04561e-02\tAbsError: 4.55127e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.24524e-07\tAbsError: 2.17023e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.70535e-03\tAbsError: 3.37743e+12\n", + " Region: \"zone_1\"\tRelError: 8.78757e-04\tAbsError: 1.91107e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.78217e-04\tAbsError: 3.61781e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.39528e-07\tAbsError: 1.87489e-04\n", + " Region: \"zone_3\"\tRelError: 8.82659e-03\tAbsError: 3.37743e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.29951e-04\tAbsError: 1.23275e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.83501e-04\tAbsError: 2.14468e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.11260e-03\tAbsError: 3.63680e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.39528e-07\tAbsError: 1.87489e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.81369e-01\tAbsError: 1.65118e+13\n", + " Region: \"zone_1\"\tRelError: 1.13683e-01\tAbsError: 2.48930e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13676e-01\tAbsError: 7.97182e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", + " Region: \"zone_3\"\tRelError: 6.76863e-02\tAbsError: 1.65118e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.50220e-02\tAbsError: 9.05581e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.84537e-03\tAbsError: 7.45604e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.81196e-03\tAbsError: 8.36703e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 5.04216e+00\tAbsError: 2.77132e+14\n", + " Region: \"zone_1\"\tRelError: 4.86460e+00\tAbsError: 1.64874e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.86456e+00\tAbsError: 6.36021e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.56571e-05\tAbsError: 1.58514e-02\n", + " Region: \"zone_3\"\tRelError: 1.77555e-01\tAbsError: 2.77132e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10831e-01\tAbsError: 1.40024e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.52740e-02\tAbsError: 1.37108e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.14041e-02\tAbsError: 6.44948e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.56571e-05\tAbsError: 1.58514e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.46538e-01\tAbsError: 1.72857e+14\n", + " Region: \"zone_1\"\tRelError: 1.03351e-01\tAbsError: 1.21126e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03317e-01\tAbsError: 4.92001e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34699e-05\tAbsError: 1.16206e-02\n", + " Region: \"zone_3\"\tRelError: 1.43187e-01\tAbsError: 1.72857e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.52949e-02\tAbsError: 8.65648e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.61175e-02\tAbsError: 8.62923e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17415e-02\tAbsError: 5.11595e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34699e-05\tAbsError: 1.16206e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.26071e-04\tAbsError: 1.28152e+11\n", + " Region: \"zone_1\"\tRelError: 1.75841e-05\tAbsError: 2.73744e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67966e-05\tAbsError: 8.67708e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.87521e-07\tAbsError: 2.73657e-04\n", + " Region: \"zone_3\"\tRelError: 2.08487e-04\tAbsError: 1.28152e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03318e-05\tAbsError: 1.00310e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.04880e-06\tAbsError: 2.78416e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89318e-04\tAbsError: 9.08068e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.87521e-07\tAbsError: 2.73657e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.74946e-04\tAbsError: 1.17170e+11\n", + " Region: \"zone_1\"\tRelError: 2.69263e-05\tAbsError: 2.18382e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.62981e-05\tAbsError: 8.01643e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.28213e-07\tAbsError: 2.18302e-04\n", + " Region: \"zone_3\"\tRelError: 2.48020e-04\tAbsError: 1.17170e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.02611e-06\tAbsError: 9.22316e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.05400e-06\tAbsError: 2.49383e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31311e-04\tAbsError: 8.38265e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.28213e-07\tAbsError: 2.18302e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.11615e-03\tAbsError: 1.08851e+12\n", + " Region: \"zone_1\"\tRelError: 5.30759e-03\tAbsError: 1.67972e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.30711e-03\tAbsError: 1.45981e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", + " Region: \"zone_3\"\tRelError: 1.80856e-03\tAbsError: 1.08851e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43945e-04\tAbsError: 2.92186e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.94756e-05\tAbsError: 7.96320e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56466e-03\tAbsError: 1.47422e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.71729e-02\tAbsError: 5.98603e+12\n", + " Region: \"zone_1\"\tRelError: 9.52337e-04\tAbsError: 6.34742e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.50533e-04\tAbsError: 7.76974e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80433e-06\tAbsError: 6.26972e-04\n", + " Region: \"zone_3\"\tRelError: 1.62206e-02\tAbsError: 5.98603e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.52054e-04\tAbsError: 2.22170e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.46515e-04\tAbsError: 3.76433e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50202e-02\tAbsError: 7.87871e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80433e-06\tAbsError: 6.26972e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.58310e-02\tAbsError: 8.39317e+12\n", + " Region: \"zone_1\"\tRelError: 6.31932e-02\tAbsError: 1.05953e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.31902e-02\tAbsError: 1.15729e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.01602e-06\tAbsError: 1.04796e-03\n", + " Region: \"zone_3\"\tRelError: 2.26378e-02\tAbsError: 8.39317e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.85729e-04\tAbsError: 3.23963e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.66097e-04\tAbsError: 5.15354e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.10829e-02\tAbsError: 1.17300e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.01602e-06\tAbsError: 1.04796e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.12260e-03\tAbsError: 2.61827e+11\n", + " Region: \"zone_1\"\tRelError: 2.35312e-04\tAbsError: 8.30379e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.35289e-04\tAbsError: 1.63368e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.33999e-08\tAbsError: 8.14042e-06\n", + " Region: \"zone_3\"\tRelError: 8.87286e-04\tAbsError: 2.61827e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54593e-05\tAbsError: 1.30676e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.53483e-05\tAbsError: 1.31151e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.56455e-04\tAbsError: 1.68252e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.34097e-08\tAbsError: 8.14375e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 7.74042e-04\tAbsError: 2.09517e+11\n", + " Region: \"zone_1\"\tRelError: 7.83547e-05\tAbsError: 6.01138e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.83378e-05\tAbsError: 1.34565e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68927e-08\tAbsError: 5.87682e-06\n", + " Region: \"zone_3\"\tRelError: 6.95687e-04\tAbsError: 2.09517e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.25872e-05\tAbsError: 1.03107e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24933e-05\tAbsError: 1.06409e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.70590e-04\tAbsError: 1.38390e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69000e-08\tAbsError: 5.87933e-06\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.59900e-03\tAbsError: 1.40711e+11\n", + " Region: \"zone_1\"\tRelError: 2.06948e-03\tAbsError: 6.41578e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06929e-03\tAbsError: 9.09489e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84503e-07\tAbsError: 6.40668e-05\n", + " Region: \"zone_3\"\tRelError: 5.29527e-04\tAbsError: 1.40711e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.39801e-06\tAbsError: 9.47438e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.30618e-06\tAbsError: 4.59674e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.12638e-04\tAbsError: 9.48359e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84568e-07\tAbsError: 6.40878e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.24434e-03\tAbsError: 3.91752e+11\n", + " Region: \"zone_1\"\tRelError: 7.67299e-05\tAbsError: 3.70354e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.56648e-05\tAbsError: 2.52102e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06512e-06\tAbsError: 3.70102e-04\n", + " Region: \"zone_3\"\tRelError: 1.16761e-03\tAbsError: 3.91752e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.51504e-05\tAbsError: 2.67283e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.33744e-05\tAbsError: 1.24469e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11802e-03\tAbsError: 2.65527e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06512e-06\tAbsError: 3.70104e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.66865e-02\tAbsError: 6.43390e+11\n", + " Region: \"zone_1\"\tRelError: 1.46089e-02\tAbsError: 4.93091e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46075e-02\tAbsError: 4.06773e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41798e-06\tAbsError: 4.92684e-04\n", + " Region: \"zone_3\"\tRelError: 2.07764e-03\tAbsError: 6.43390e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.90233e-05\tAbsError: 4.29245e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.79244e-05\tAbsError: 2.14145e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.99927e-03\tAbsError: 4.25329e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41801e-06\tAbsError: 4.92703e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.95239e-05\tAbsError: 7.21340e+09\n", + " Region: \"zone_1\"\tRelError: 1.93321e-05\tAbsError: 1.67318e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92840e-05\tAbsError: 6.44594e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.81287e-08\tAbsError: 1.67253e-05\n", + " Region: \"zone_3\"\tRelError: 5.01918e-05\tAbsError: 7.21340e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.16012e-07\tAbsError: 2.75283e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.25510e-07\tAbsError: 4.46057e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.91021e-05\tAbsError: 6.58815e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.81495e-08\tAbsError: 1.67326e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.88635e-05\tAbsError: 4.66862e+09\n", + " Region: \"zone_1\"\tRelError: 4.12564e-06\tAbsError: 1.32768e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.08745e-06\tAbsError: 4.74361e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.81931e-08\tAbsError: 1.32720e-05\n", + " Region: \"zone_3\"\tRelError: 3.47379e-05\tAbsError: 4.66862e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.57140e-07\tAbsError: 1.44736e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.64945e-07\tAbsError: 3.22126e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.39776e-05\tAbsError: 4.85044e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.82079e-08\tAbsError: 1.32779e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:37\u001b[0m.\u001b[1;36m811\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: 0.65\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.84757e-04\tAbsError: 5.79872e+10\n", + " Region: \"zone_1\"\tRelError: 5.39232e-04\tAbsError: 6.69464e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.39213e-04\tAbsError: 4.49143e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91058e-08\tAbsError: 6.64972e-06\n", + " Region: \"zone_3\"\tRelError: 1.45525e-04\tAbsError: 5.79872e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.71562e-06\tAbsError: 2.34463e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.68397e-06\tAbsError: 3.45410e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38106e-04\tAbsError: 4.56915e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91137e-08\tAbsError: 6.65261e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.27709e-03\tAbsError: 3.55210e+11\n", + " Region: \"zone_1\"\tRelError: 7.75140e-05\tAbsError: 7.68347e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.74925e-05\tAbsError: 2.05171e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.14878e-08\tAbsError: 7.47830e-06\n", + " Region: \"zone_3\"\tRelError: 1.19957e-03\tAbsError: 3.55210e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97584e-05\tAbsError: 1.77993e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96259e-05\tAbsError: 1.77217e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16017e-03\tAbsError: 2.13005e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.14968e-08\tAbsError: 7.48159e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.28600e-02\tAbsError: 4.74877e+11\n", + " Region: \"zone_1\"\tRelError: 1.12352e-02\tAbsError: 1.84675e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12351e-02\tAbsError: 2.62164e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.23931e-08\tAbsError: 1.82053e-05\n", + " Region: \"zone_3\"\tRelError: 1.62483e-03\tAbsError: 4.74877e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52780e-05\tAbsError: 2.39181e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.51249e-05\tAbsError: 2.35695e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57437e-03\tAbsError: 2.67665e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.23931e-08\tAbsError: 1.82053e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.20708e+01\tAbsError: 9.38375e+15\n", + " Region: \"zone_1\"\tRelError: 1.03034e+01\tAbsError: 4.29349e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03034e+01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.20208e-09\tAbsError: 1.11278e-06\n", + " Region: \"zone_3\"\tRelError: 1.76735e+00\tAbsError: 9.38375e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86030e-01\tAbsError: 4.95036e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.85888e-01\tAbsError: 4.43339e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95437e-01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.20329e-09\tAbsError: 1.11320e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.02364e-04\tAbsError: 5.62247e+09\n", + " Region: \"zone_1\"\tRelError: 8.15379e-05\tAbsError: 3.03368e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.15291e-05\tAbsError: 3.57289e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.71937e-09\tAbsError: 3.03011e-06\n", + " Region: \"zone_3\"\tRelError: 2.08260e-05\tAbsError: 5.62247e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14319e-07\tAbsError: 4.05600e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.09034e-07\tAbsError: 1.56647e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01939e-05\tAbsError: 3.71851e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.71944e-09\tAbsError: 3.03019e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 9.67016e-06\tAbsError: 5.74516e+09\n", + " Region: \"zone_1\"\tRelError: 6.60113e-07\tAbsError: 2.15591e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.98078e-07\tAbsError: 2.63279e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.20343e-08\tAbsError: 2.15565e-05\n", + " Region: \"zone_3\"\tRelError: 9.01005e-06\tAbsError: 5.74516e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.59313e-07\tAbsError: 5.10906e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.57242e-07\tAbsError: 6.36096e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 8.13143e-06\tAbsError: 2.71356e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.20615e-08\tAbsError: 2.15660e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.69643e-04\tAbsError: 1.47420e+10\n", + " Region: \"zone_1\"\tRelError: 1.45495e-04\tAbsError: 2.80955e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45414e-04\tAbsError: 7.53367e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.08344e-08\tAbsError: 2.80880e-05\n", + " Region: \"zone_3\"\tRelError: 2.41485e-05\tAbsError: 1.47420e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.10279e-07\tAbsError: 1.16771e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.44925e-07\tAbsError: 3.06488e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24124e-05\tAbsError: 7.88086e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.08691e-08\tAbsError: 2.81001e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:39\u001b[0m.\u001b[1;36m876\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.7\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:39\u001b[0m.\u001b[1;36m964\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:40\u001b[0m.\u001b[1;36m013\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.75 bias\u001b[0m \n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:40\u001b[0m.\u001b[1;36m060\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.75513e+00\tAbsError: 7.04878e+15\n", + " Region: \"zone_1\"\tRelError: 1.90080e-01\tAbsError: 7.81805e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89950e-01\tAbsError: 3.31001e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29742e-04\tAbsError: 4.50804e-02\n", + " Region: \"zone_3\"\tRelError: 1.56505e+00\tAbsError: 7.04878e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67981e-01\tAbsError: 3.36624e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.39518e-01\tAbsError: 3.68255e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57423e-01\tAbsError: 3.31002e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29742e-04\tAbsError: 4.50804e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.62671e-05\tAbsError: 3.10482e+09\n", + " Region: \"zone_1\"\tRelError: 3.66806e-05\tAbsError: 2.21724e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 3.66799e-05\tAbsError: 2.06476e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.31104e-10\tAbsError: 2.19659e-07\n", + " Region: \"zone_3\"\tRelError: 9.58659e-06\tAbsError: 3.10482e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88628e-07\tAbsError: 1.51765e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.86687e-07\tAbsError: 1.58718e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.21065e-06\tAbsError: 2.10348e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.31398e-10\tAbsError: 2.19764e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.08650e+01\tAbsError: 3.91395e+16\n", + " Region: \"zone_1\"\tRelError: 2.64221e+01\tAbsError: 7.53955e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64221e+01\tAbsError: 7.53940e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.29236e-09\tAbsError: 1.49165e-06\n", + " Region: \"zone_3\"\tRelError: 3.44429e+01\tAbsError: 3.91395e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38671e+01\tAbsError: 2.06460e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.03435e+01\tAbsError: 1.84936e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32357e-01\tAbsError: 7.53940e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.29383e-09\tAbsError: 1.49216e-06\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 8.80001e-04\tAbsError: 2.77064e+10\n", + " Region: \"zone_1\"\tRelError: 7.72213e-04\tAbsError: 7.92012e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 7.72211e-04\tAbsError: 1.37821e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24149e-09\tAbsError: 7.78230e-07\n", + " Region: \"zone_3\"\tRelError: 1.07787e-04\tAbsError: 2.77064e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42447e-06\tAbsError: 1.54677e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.41534e-06\tAbsError: 1.22386e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04945e-04\tAbsError: 1.43316e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24213e-09\tAbsError: 7.78437e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.11831e+01\tAbsError: 1.42484e+16\n", + " Region: \"zone_1\"\tRelError: 2.93524e+01\tAbsError: 4.47737e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.93524e+01\tAbsError: 4.47728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.83682e-09\tAbsError: 9.85742e-07\n", + " Region: \"zone_3\"\tRelError: 1.83065e+00\tAbsError: 1.42484e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.00155e-01\tAbsError: 7.24354e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.99947e-01\tAbsError: 7.00487e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30545e-01\tAbsError: 4.47728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.83682e-09\tAbsError: 9.85743e-07\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.21630e+00\tAbsError: 5.18264e+15\n", + " Region: \"zone_1\"\tRelError: 1.31236e-01\tAbsError: 3.17671e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31218e-01\tAbsError: 2.57644e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72758e-05\tAbsError: 6.00278e-03\n", + " Region: \"zone_3\"\tRelError: 1.08506e+00\tAbsError: 5.18264e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.91482e-01\tAbsError: 2.47681e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.47298e-01\tAbsError: 2.70583e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46263e-01\tAbsError: 2.58377e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72758e-05\tAbsError: 6.00278e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 5.08889e-05\tAbsError: 7.24317e+08\n", + " Region: \"zone_1\"\tRelError: 4.50261e-05\tAbsError: 1.77627e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.50210e-05\tAbsError: 5.70798e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.11028e-09\tAbsError: 1.77570e-06\n", + " Region: \"zone_3\"\tRelError: 5.86272e-06\tAbsError: 7.24317e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.93674e-08\tAbsError: 3.18976e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.07369e-08\tAbsError: 4.05341e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 5.75751e-06\tAbsError: 5.85488e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.11142e-09\tAbsError: 1.77610e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.74440e+03\tAbsError: 9.91965e+15\n", + " Region: \"zone_1\"\tRelError: 1.07784e+00\tAbsError: 2.35444e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07737e+00\tAbsError: 7.09269e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73206e-04\tAbsError: 1.64517e-01\n", + " Region: \"zone_3\"\tRelError: 3.74333e+03\tAbsError: 9.91965e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.37749e+01\tAbsError: 5.01980e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.68934e+03\tAbsError: 4.89985e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06276e-01\tAbsError: 7.09271e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73206e-04\tAbsError: 1.64517e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.45723e+00\tAbsError: 1.63266e+16\n", + " Region: \"zone_1\"\tRelError: 2.81667e+00\tAbsError: 1.05674e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.81646e+00\tAbsError: 3.52793e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.02626e-04\tAbsError: 7.03945e-02\n", + " Region: \"zone_3\"\tRelError: 1.64056e+00\tAbsError: 1.63266e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91761e-01\tAbsError: 8.00317e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.61788e-01\tAbsError: 8.32341e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86811e-01\tAbsError: 3.52793e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.02626e-04\tAbsError: 7.03945e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:43\u001b[0m.\u001b[1;36m408\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:43\u001b[0m.\u001b[1;36m440\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.8 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:43\u001b[0m.\u001b[1;36m468\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 3\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 5.70365e-01\tAbsError: 1.98816e+15\n", + " Region: \"zone_1\"\tRelError: 1.29557e-01\tAbsError: 5.07227e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29446e-01\tAbsError: 1.22662e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10816e-04\tAbsError: 3.84565e-02\n", + " Region: \"zone_3\"\tRelError: 4.40808e-01\tAbsError: 1.98816e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.36802e-01\tAbsError: 1.06250e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.52219e-01\tAbsError: 9.25662e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.16747e-02\tAbsError: 1.22663e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11508e-04\tAbsError: 3.86954e-02\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 5.58930e+02\tAbsError: 7.27584e+15\n", + " Region: \"zone_1\"\tRelError: 7.93812e-01\tAbsError: 8.13553e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.93768e-01\tAbsError: 6.58787e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.45635e-05\tAbsError: 1.54766e-02\n", + " Region: \"zone_3\"\tRelError: 5.58137e+02\tAbsError: 7.27584e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.07952e+01\tAbsError: 2.69436e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.17061e+02\tAbsError: 4.58148e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80139e-01\tAbsError: 6.58787e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.45635e-05\tAbsError: 1.54766e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.61395e+00\tAbsError: 1.26801e+16\n", + " Region: \"zone_1\"\tRelError: 4.05768e-01\tAbsError: 5.54621e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.05683e-01\tAbsError: 2.56990e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.56785e-05\tAbsError: 2.97631e-02\n", + " Region: \"zone_3\"\tRelError: 1.20818e+00\tAbsError: 1.26801e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.30811e-01\tAbsError: 6.31874e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.95490e-01\tAbsError: 6.36135e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81798e-01\tAbsError: 2.45098e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.57611e-05\tAbsError: 2.97924e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.85348e+01\tAbsError: 3.33183e+16\n", + " Region: \"zone_1\"\tRelError: 1.40835e+01\tAbsError: 7.25192e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40835e+01\tAbsError: 7.25190e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.06764e-10\tAbsError: 1.76108e-07\n", + " Region: \"zone_3\"\tRelError: 5.44513e+01\tAbsError: 3.33183e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.58563e+01\tAbsError: 1.83639e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.83884e+01\tAbsError: 1.49544e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06615e-01\tAbsError: 7.25190e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.06930e-10\tAbsError: 1.76171e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:44\u001b[0m.\u001b[1;36m695\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:44\u001b[0m.\u001b[1;36m731\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.85 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:44\u001b[0m.\u001b[1;36m763\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.63797e-01\tAbsError: 3.64765e+14\n", + " Region: \"zone_1\"\tRelError: 1.74354e-02\tAbsError: 3.39678e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73383e-02\tAbsError: 2.51825e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.71283e-05\tAbsError: 3.37160e-02\n", + " Region: \"zone_3\"\tRelError: 1.46362e-01\tAbsError: 3.64765e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.05471e-02\tAbsError: 2.16352e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.33909e-02\tAbsError: 1.48413e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.23269e-02\tAbsError: 2.62821e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.71283e-05\tAbsError: 3.37160e-02\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.39784e+01\tAbsError: 4.25646e+14\n", + " Region: \"zone_1\"\tRelError: 1.20510e-01\tAbsError: 9.75069e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20403e-01\tAbsError: 6.01031e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07573e-04\tAbsError: 3.74038e-02\n", + " Region: \"zone_3\"\tRelError: 7.38579e+01\tAbsError: 4.25646e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.71227e+01\tAbsError: 2.73214e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.66147e+01\tAbsError: 1.52432e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20428e-01\tAbsError: 6.01031e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07573e-04\tAbsError: 3.74038e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 9.54736e-01\tAbsError: 5.35441e+15\n", + " Region: \"zone_1\"\tRelError: 3.96144e-01\tAbsError: 8.53966e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.95944e-01\tAbsError: 1.57805e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00443e-04\tAbsError: 6.96161e-02\n", + " Region: \"zone_3\"\tRelError: 5.58592e-01\tAbsError: 5.35441e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89869e-01\tAbsError: 2.68572e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.92706e-01\tAbsError: 2.66870e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.58172e-02\tAbsError: 1.57805e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00499e-04\tAbsError: 6.96306e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.06708e+01\tAbsError: 6.27680e+16\n", + " Region: \"zone_1\"\tRelError: 4.86663e+01\tAbsError: 7.79816e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.86663e+01\tAbsError: 7.79815e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.55907e-10\tAbsError: 1.58416e-07\n", + " Region: \"zone_3\"\tRelError: 3.20045e+01\tAbsError: 6.27680e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.14175e+01\tAbsError: 3.43987e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.03250e+01\tAbsError: 2.83694e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.62020e-01\tAbsError: 7.79815e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.56011e-10\tAbsError: 1.58453e-07\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 5.86885e+02\tAbsError: 3.75531e+15\n", + " Region: \"zone_1\"\tRelError: 2.91550e-01\tAbsError: 1.88467e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.91202e-01\tAbsError: 6.76847e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47432e-04\tAbsError: 1.20783e-01\n", + " Region: \"zone_3\"\tRelError: 5.86593e+02\tAbsError: 3.75531e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.80952e+01\tAbsError: 1.94186e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.58338e+02\tAbsError: 1.81345e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59709e-01\tAbsError: 6.76849e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47432e-04\tAbsError: 1.20783e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.80286e-02\tAbsError: 1.80043e+13\n", + " Region: \"zone_1\"\tRelError: 5.97130e-03\tAbsError: 5.99908e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.96961e-03\tAbsError: 1.31746e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68890e-06\tAbsError: 5.86733e-04\n", + " Region: \"zone_3\"\tRelError: 5.20573e-02\tAbsError: 1.80043e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.22256e-03\tAbsError: 7.89900e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11166e-03\tAbsError: 1.01053e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.97214e-02\tAbsError: 1.37677e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68890e-06\tAbsError: 5.86733e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.88537e+02\tAbsError: 5.54056e+14\n", + " Region: \"zone_1\"\tRelError: 9.55706e-02\tAbsError: 5.68586e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.55607e-02\tAbsError: 5.34036e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.94226e-06\tAbsError: 3.45499e-03\n", + " Region: \"zone_3\"\tRelError: 2.88441e+02\tAbsError: 5.54056e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01149e+02\tAbsError: 4.03929e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.87196e+02\tAbsError: 1.50127e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.56736e-02\tAbsError: 5.34036e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.94326e-06\tAbsError: 3.45537e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.44525e-01\tAbsError: 1.06041e+15\n", + " Region: \"zone_1\"\tRelError: 9.75460e-02\tAbsError: 7.81452e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.73221e-02\tAbsError: 4.45656e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23905e-04\tAbsError: 7.76995e-02\n", + " Region: \"zone_3\"\tRelError: 2.46979e-01\tAbsError: 1.06041e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.07506e-02\tAbsError: 5.91244e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.56972e-02\tAbsError: 4.69170e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30307e-01\tAbsError: 4.58663e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23905e-04\tAbsError: 7.76995e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 6.64004e+02\tAbsError: 3.19562e+16\n", + " Region: \"zone_1\"\tRelError: 1.02711e+01\tAbsError: 3.71341e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02703e+01\tAbsError: 7.38247e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.55520e-04\tAbsError: 2.97517e-01\n", + " Region: \"zone_3\"\tRelError: 6.53733e+02\tAbsError: 3.19562e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97454e+01\tAbsError: 1.62663e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.33455e+02\tAbsError: 1.56900e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.31683e-01\tAbsError: 7.38249e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.55520e-04\tAbsError: 2.97517e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.19464e+02\tAbsError: 4.04524e+15\n", + " Region: \"zone_1\"\tRelError: 4.46837e-01\tAbsError: 1.06447e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.46710e-01\tAbsError: 6.21780e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27338e-04\tAbsError: 4.42687e-02\n", + " Region: \"zone_3\"\tRelError: 9.19017e+02\tAbsError: 4.04524e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.57418e+01\tAbsError: 2.06871e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.03094e+02\tAbsError: 1.97653e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80848e-01\tAbsError: 6.21780e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27373e-04\tAbsError: 4.42827e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.25730e-04\tAbsError: 4.09198e+11\n", + " Region: \"zone_1\"\tRelError: 8.09639e-05\tAbsError: 1.05680e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.79223e-05\tAbsError: 2.31215e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.04151e-06\tAbsError: 1.05657e-03\n", + " Region: \"zone_3\"\tRelError: 6.44766e-04\tAbsError: 4.09198e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.69437e-05\tAbsError: 3.66831e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.46261e-05\tAbsError: 4.23676e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.00155e-04\tAbsError: 2.35772e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.04158e-06\tAbsError: 1.05661e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.61612e+04\tAbsError: 1.37906e+14\n", + " Region: \"zone_1\"\tRelError: 7.41751e-02\tAbsError: 5.38905e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.41510e-02\tAbsError: 4.55245e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.40596e-05\tAbsError: 8.36596e-03\n", + " Region: \"zone_3\"\tRelError: 4.61611e+04\tAbsError: 1.37906e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.25911e+04\tAbsError: 9.87600e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.56996e+03\tAbsError: 3.91463e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.43675e-02\tAbsError: 4.55246e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.40596e-05\tAbsError: 8.36596e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.36002e-01\tAbsError: 6.07978e+13\n", + " Region: \"zone_1\"\tRelError: 6.95111e-02\tAbsError: 9.25006e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.95086e-02\tAbsError: 2.72112e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58714e-06\tAbsError: 8.97795e-04\n", + " Region: \"zone_3\"\tRelError: 1.66491e-01\tAbsError: 6.07978e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38802e-03\tAbsError: 2.95297e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.19525e-03\tAbsError: 3.12681e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61905e-01\tAbsError: 2.72112e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58878e-06\tAbsError: 8.98338e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.77528e+02\tAbsError: 1.23430e+16\n", + " Region: \"zone_1\"\tRelError: 1.29894e+00\tAbsError: 1.91163e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29859e+00\tAbsError: 6.91599e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.50937e-04\tAbsError: 1.22003e-01\n", + " Region: \"zone_3\"\tRelError: 3.76229e+02\tAbsError: 1.23430e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27510e+02\tAbsError: 2.69801e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.48205e+02\tAbsError: 9.64500e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.13796e-01\tAbsError: 6.91599e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.50937e-04\tAbsError: 1.22003e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 8.02047e+01\tAbsError: 4.76727e+14\n", + " Region: \"zone_1\"\tRelError: 1.04826e-01\tAbsError: 8.34367e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04746e-01\tAbsError: 5.58213e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.94195e-05\tAbsError: 2.76154e-02\n", + " Region: \"zone_3\"\tRelError: 8.00998e+01\tAbsError: 4.76727e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.85718e+01\tAbsError: 3.07028e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.14232e+01\tAbsError: 1.69700e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04769e-01\tAbsError: 5.58213e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.94195e-05\tAbsError: 2.76154e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.50762e-03\tAbsError: 1.02667e+12\n", + " Region: \"zone_1\"\tRelError: 4.77667e-04\tAbsError: 4.19184e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.77548e-04\tAbsError: 5.13940e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19272e-07\tAbsError: 4.14045e-05\n", + " Region: \"zone_3\"\tRelError: 4.02995e-03\tAbsError: 1.02667e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.92271e-05\tAbsError: 5.17713e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.89991e-05\tAbsError: 5.08953e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.93161e-03\tAbsError: 5.31847e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19272e-07\tAbsError: 4.14045e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.46711e+02\tAbsError: 5.06500e+13\n", + " Region: \"zone_1\"\tRelError: 5.45390e-02\tAbsError: 3.77284e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.45345e-02\tAbsError: 3.61717e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.48202e-06\tAbsError: 1.55673e-03\n", + " Region: \"zone_3\"\tRelError: 1.46656e+02\tAbsError: 5.06500e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.45480e+02\tAbsError: 2.85847e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.12174e+00\tAbsError: 2.20653e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.48383e-02\tAbsError: 3.61718e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.48202e-06\tAbsError: 1.55673e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.92621e+03\tAbsError: 3.52155e+15\n", + " Region: \"zone_1\"\tRelError: 3.93767e-01\tAbsError: 1.13500e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.93624e-01\tAbsError: 6.38659e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42910e-04\tAbsError: 4.96339e-02\n", + " Region: \"zone_3\"\tRelError: 1.92581e+03\tAbsError: 3.52155e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17500e+01\tAbsError: 2.11357e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.86377e+03\tAbsError: 1.40799e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.90752e-01\tAbsError: 6.38659e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42910e-04\tAbsError: 4.96339e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.46362e-03\tAbsError: 8.86968e+11\n", + " Region: \"zone_1\"\tRelError: 6.90137e-04\tAbsError: 2.34211e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.83394e-04\tAbsError: 6.31008e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.74299e-06\tAbsError: 2.34148e-03\n", + " Region: \"zone_3\"\tRelError: 1.77348e-03\tAbsError: 8.86968e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.15266e-05\tAbsError: 4.91411e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.00836e-05\tAbsError: 3.95557e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70513e-03\tAbsError: 6.41498e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.74370e-06\tAbsError: 2.34177e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.92390e+03\tAbsError: 8.33185e+13\n", + " Region: \"zone_1\"\tRelError: 8.16755e-02\tAbsError: 4.91163e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.16734e-02\tAbsError: 4.83794e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.11914e-06\tAbsError: 7.36892e-04\n", + " Region: \"zone_3\"\tRelError: 6.92382e+03\tAbsError: 8.33185e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.79886e+03\tAbsError: 3.08110e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24871e+02\tAbsError: 5.25076e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.18178e-02\tAbsError: 4.83795e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.11914e-06\tAbsError: 7.36892e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.87878e-04\tAbsError: 3.71113e+10\n", + " Region: \"zone_1\"\tRelError: 3.08061e-05\tAbsError: 6.36156e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.06230e-05\tAbsError: 2.65699e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83040e-07\tAbsError: 6.35890e-05\n", + " Region: \"zone_3\"\tRelError: 2.57072e-04\tAbsError: 3.71113e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17303e-06\tAbsError: 1.49809e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.20928e-06\tAbsError: 2.21304e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52507e-04\tAbsError: 2.72049e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83108e-07\tAbsError: 6.36126e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.26686e+00\tAbsError: 1.15324e+13\n", + " Region: \"zone_1\"\tRelError: 4.20255e-02\tAbsError: 2.90045e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.20165e-02\tAbsError: 2.58850e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.98143e-06\tAbsError: 3.11954e-03\n", + " Region: \"zone_3\"\tRelError: 1.22484e+00\tAbsError: 1.15324e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99994e-01\tAbsError: 7.07820e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.82489e-01\tAbsError: 4.45424e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.23455e-02\tAbsError: 2.58807e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.98143e-06\tAbsError: 3.11954e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.93407e+02\tAbsError: 4.86622e+14\n", + " Region: \"zone_1\"\tRelError: 1.09282e-01\tAbsError: 8.57972e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09202e-01\tAbsError: 5.77790e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.05790e-05\tAbsError: 2.80182e-02\n", + " Region: \"zone_3\"\tRelError: 4.93298e+02\tAbsError: 4.86622e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07506e+02\tAbsError: 1.60245e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.85683e+02\tAbsError: 3.26377e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09279e-01\tAbsError: 5.77791e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.05790e-05\tAbsError: 2.80182e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.80479e-02\tAbsError: 2.50346e+12\n", + " Region: \"zone_1\"\tRelError: 5.40374e-03\tAbsError: 1.30048e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.40337e-03\tAbsError: 1.04735e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.71722e-07\tAbsError: 1.29001e-04\n", + " Region: \"zone_3\"\tRelError: 1.26441e-02\tAbsError: 2.50346e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.73060e-05\tAbsError: 1.25473e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.65146e-05\tAbsError: 1.24873e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24499e-02\tAbsError: 1.06992e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.71735e-07\tAbsError: 1.29002e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.47740e+03\tAbsError: 2.32331e+13\n", + " Region: \"zone_1\"\tRelError: 6.14540e-02\tAbsError: 4.24419e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.14457e-02\tAbsError: 3.95640e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.28570e-06\tAbsError: 2.87786e-03\n", + " Region: \"zone_3\"\tRelError: 3.47734e+03\tAbsError: 2.32331e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.47473e+03\tAbsError: 7.88349e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.54397e+00\tAbsError: 1.53496e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.16827e-02\tAbsError: 3.95641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.28570e-06\tAbsError: 2.87786e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 3.15874e-04\tAbsError: 6.29995e+10\n", + " Region: \"zone_1\"\tRelError: 3.36655e-05\tAbsError: 6.22152e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.36476e-05\tAbsError: 2.89646e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78252e-08\tAbsError: 6.19255e-06\n", + " Region: \"zone_3\"\tRelError: 2.82208e-04\tAbsError: 6.29995e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.92738e-06\tAbsError: 3.54342e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.90850e-06\tAbsError: 2.75653e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76354e-04\tAbsError: 2.97673e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78310e-08\tAbsError: 6.19458e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.49568e+06\tAbsError: 2.62728e+12\n", + " Region: \"zone_1\"\tRelError: 2.30462e-02\tAbsError: 2.12762e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30351e-02\tAbsError: 1.74104e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11298e-05\tAbsError: 3.86578e-03\n", + " Region: \"zone_3\"\tRelError: 1.49568e+06\tAbsError: 2.62728e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49568e+06\tAbsError: 1.23253e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.03928e-02\tAbsError: 1.39475e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34298e-02\tAbsError: 1.74105e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11298e-05\tAbsError: 3.86578e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.25727e+02\tAbsError: 4.16178e+14\n", + " Region: \"zone_1\"\tRelError: 8.59757e-02\tAbsError: 5.54955e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.59618e-02\tAbsError: 5.06821e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38444e-05\tAbsError: 4.81334e-03\n", + " Region: \"zone_3\"\tRelError: 4.25641e+02\tAbsError: 4.16178e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.19904e+02\tAbsError: 2.66373e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.65014e+00\tAbsError: 1.49805e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.62548e-02\tAbsError: 5.06822e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38449e-05\tAbsError: 4.81369e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.45380e-03\tAbsError: 1.53142e+11\n", + " Region: \"zone_1\"\tRelError: 4.36448e-04\tAbsError: 1.39694e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.36046e-04\tAbsError: 7.04413e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.02062e-07\tAbsError: 1.39623e-04\n", + " Region: \"zone_3\"\tRelError: 1.01735e-03\tAbsError: 1.53142e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.93160e-06\tAbsError: 7.62931e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.97976e-06\tAbsError: 7.68486e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00504e-03\tAbsError: 7.23938e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.02172e-07\tAbsError: 1.39662e-04\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.92670e-05\tAbsError: 5.95028e+09\n", + " Region: \"zone_1\"\tRelError: 4.20495e-06\tAbsError: 4.23098e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.19278e-06\tAbsError: 3.10942e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21699e-08\tAbsError: 4.22787e-06\n", + " Region: \"zone_3\"\tRelError: 3.50620e-05\tAbsError: 5.95028e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.01282e-07\tAbsError: 3.34784e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.02333e-07\tAbsError: 2.60243e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.44462e-05\tAbsError: 3.17149e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21718e-08\tAbsError: 4.22856e-06\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.23060e+03\tAbsError: 1.13927e+13\n", + " Region: \"zone_1\"\tRelError: 4.39038e-02\tAbsError: 3.18697e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.38959e-02\tAbsError: 2.91306e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.88625e-06\tAbsError: 2.73914e-03\n", + " Region: \"zone_3\"\tRelError: 2.23056e+03\tAbsError: 1.13927e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.23014e+03\tAbsError: 6.81734e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.75883e-01\tAbsError: 4.57539e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44473e-02\tAbsError: 2.91306e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.88625e-06\tAbsError: 2.73914e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.00227e+00\tAbsError: 2.54667e+12\n", + " Region: \"zone_1\"\tRelError: 1.21369e-04\tAbsError: 6.00683e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04100e-04\tAbsError: 8.81970e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72683e-05\tAbsError: 5.99801e-03\n", + " Region: \"zone_3\"\tRelError: 1.00214e+00\tAbsError: 2.54667e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99998e-01\tAbsError: 8.50699e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.16160e-03\tAbsError: 1.69597e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.67964e-04\tAbsError: 9.25856e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72683e-05\tAbsError: 5.99801e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.47587e+03\tAbsError: 1.37021e+14\n", + " Region: \"zone_1\"\tRelError: 6.58552e-02\tAbsError: 4.40073e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.58503e-02\tAbsError: 4.22991e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.91268e-06\tAbsError: 1.70821e-03\n", + " Region: \"zone_3\"\tRelError: 1.47580e+03\tAbsError: 1.37021e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.37201e+03\tAbsError: 9.48995e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03732e+02\tAbsError: 4.21217e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.61976e-02\tAbsError: 4.22992e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.91268e-06\tAbsError: 1.70821e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.24475e-03\tAbsError: 1.53017e+11\n", + " Region: \"zone_1\"\tRelError: 3.73962e-04\tAbsError: 1.57755e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.73917e-04\tAbsError: 5.81035e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.52602e-08\tAbsError: 1.57174e-05\n", + " Region: \"zone_3\"\tRelError: 8.70784e-04\tAbsError: 1.53017e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.73394e-06\tAbsError: 7.95928e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.67445e-06\tAbsError: 7.34246e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.59331e-04\tAbsError: 6.03244e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.52710e-08\tAbsError: 1.57212e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.11435e+00\tAbsError: 2.56027e+12\n", + " Region: \"zone_1\"\tRelError: 3.31148e-02\tAbsError: 2.80077e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.31053e-02\tAbsError: 2.47258e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.44895e-06\tAbsError: 3.28195e-03\n", + " Region: \"zone_3\"\tRelError: 1.08123e+00\tAbsError: 2.56027e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99686e-01\tAbsError: 1.22484e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.79624e-02\tAbsError: 1.33543e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35769e-02\tAbsError: 2.47260e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.44895e-06\tAbsError: 3.28195e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 7.30356e-03\tAbsError: 3.16323e+12\n", + " Region: \"zone_1\"\tRelError: 7.06000e-04\tAbsError: 8.08571e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.05779e-04\tAbsError: 3.89462e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.21331e-07\tAbsError: 7.69624e-05\n", + " Region: \"zone_3\"\tRelError: 6.59756e-03\tAbsError: 3.16323e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.65369e-04\tAbsError: 9.98710e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.29064e-04\tAbsError: 2.16452e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.80290e-03\tAbsError: 3.94132e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.21331e-07\tAbsError: 7.69624e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.70866e-04\tAbsError: 1.74039e+10\n", + " Region: \"zone_1\"\tRelError: 5.14065e-05\tAbsError: 9.22102e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.13801e-05\tAbsError: 7.07909e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.64848e-08\tAbsError: 9.21394e-06\n", + " Region: \"zone_3\"\tRelError: 1.19459e-04\tAbsError: 1.74039e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.74477e-07\tAbsError: 8.71301e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.73252e-07\tAbsError: 8.69090e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18085e-04\tAbsError: 7.35517e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.64949e-08\tAbsError: 9.21749e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:55\u001b[0m.\u001b[1;36m243\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.08407e+00\tAbsError: 2.56590e+13\n", + " Region: \"zone_1\"\tRelError: 4.70180e-02\tAbsError: 3.66279e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.70057e-02\tAbsError: 3.23496e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23179e-05\tAbsError: 4.27834e-03\n", + " Region: \"zone_3\"\tRelError: 2.03705e+00\tAbsError: 2.56590e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.97938e-01\tAbsError: 1.32544e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.91702e-01\tAbsError: 1.24046e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.74027e-02\tAbsError: 3.23497e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23179e-05\tAbsError: 4.27834e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:55\u001b[0m.\u001b[1;36m288\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.9 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:55\u001b[0m.\u001b[1;36m340\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 7.92908e-01\tAbsError: 1.90893e+12\n", + " Region: \"zone_1\"\tRelError: 7.45423e-05\tAbsError: 6.94713e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.45496e-05\tAbsError: 2.82529e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99927e-05\tAbsError: 6.94431e-03\n", + " Region: \"zone_3\"\tRelError: 7.92833e-01\tAbsError: 1.90893e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.92004e-01\tAbsError: 5.67421e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.73647e-04\tAbsError: 1.34151e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52663e-05\tAbsError: 2.88056e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99927e-05\tAbsError: 6.94431e-03\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 5.00128e-04\tAbsError: 6.52866e+10\n", + " Region: \"zone_1\"\tRelError: 5.30193e-05\tAbsError: 2.05211e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.24288e-05\tAbsError: 6.99366e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.90586e-07\tAbsError: 2.05141e-04\n", + " Region: \"zone_3\"\tRelError: 4.47108e-04\tAbsError: 6.52866e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.25702e-05\tAbsError: 2.98698e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03058e-05\tAbsError: 3.54167e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.23642e-04\tAbsError: 7.09351e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.90608e-07\tAbsError: 2.05151e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.44361e+01\tAbsError: 1.41106e+17\n", + " Region: \"zone_1\"\tRelError: 6.61097e+01\tAbsError: 8.03344e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.61097e+01\tAbsError: 8.03338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83834e-09\tAbsError: 6.38649e-07\n", + " Region: \"zone_3\"\tRelError: 1.83264e+01\tAbsError: 1.41106e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 7.30985e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 6.80079e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.26430e-01\tAbsError: 8.03338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83857e-09\tAbsError: 6.38730e-07\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 8.65993e-05\tAbsError: 1.01653e+10\n", + " Region: \"zone_1\"\tRelError: 2.60547e-05\tAbsError: 1.49793e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.60504e-05\tAbsError: 3.97229e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.29429e-09\tAbsError: 1.49396e-06\n", + " Region: \"zone_3\"\tRelError: 6.05446e-05\tAbsError: 1.01653e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.70719e-07\tAbsError: 5.41900e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.66709e-07\tAbsError: 4.74632e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.98029e-05\tAbsError: 4.11440e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.29592e-09\tAbsError: 1.49454e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.30668e+04\tAbsError: 7.46291e+12\n", + " Region: \"zone_1\"\tRelError: 3.83242e-02\tAbsError: 2.95562e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.83134e-02\tAbsError: 2.58125e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07783e-05\tAbsError: 3.74364e-03\n", + " Region: \"zone_3\"\tRelError: 6.30668e+04\tAbsError: 7.46291e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.30664e+04\tAbsError: 3.45167e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.28904e-01\tAbsError: 4.01125e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.90005e-02\tAbsError: 2.57582e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07783e-05\tAbsError: 3.74364e-03\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 6.28603e-04\tAbsError: 1.99882e+11\n", + " Region: \"zone_1\"\tRelError: 6.39992e-05\tAbsError: 1.73295e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.39498e-05\tAbsError: 1.52893e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.93979e-08\tAbsError: 1.71766e-05\n", + " Region: \"zone_3\"\tRelError: 5.64604e-04\tAbsError: 1.99882e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04492e-05\tAbsError: 9.24222e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.03161e-05\tAbsError: 1.07460e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.23789e-04\tAbsError: 1.55021e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.94093e-08\tAbsError: 1.71812e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 8.76682e-03\tAbsError: 3.66905e+12\n", + " Region: \"zone_1\"\tRelError: 8.36399e-04\tAbsError: 1.31358e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.36034e-04\tAbsError: 4.50885e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.64798e-07\tAbsError: 1.26849e-04\n", + " Region: \"zone_3\"\tRelError: 7.93042e-03\tAbsError: 3.66905e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.57300e-04\tAbsError: 1.17649e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.01683e-04\tAbsError: 2.49256e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.87107e-03\tAbsError: 4.56272e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.64798e-07\tAbsError: 1.26849e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 8.37365e+01\tAbsError: 7.67421e+16\n", + " Region: \"zone_1\"\tRelError: 4.53781e+00\tAbsError: 5.57061e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.53643e+00\tAbsError: 7.64430e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38154e-03\tAbsError: 4.80618e-01\n", + " Region: \"zone_3\"\tRelError: 7.91987e+01\tAbsError: 7.67421e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 4.02016e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.82528e+01\tAbsError: 3.65405e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.94456e+00\tAbsError: 7.64430e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38154e-03\tAbsError: 4.80618e-01\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 7.78051e-05\tAbsError: 1.62693e+10\n", + " Region: \"zone_1\"\tRelError: 8.16648e-06\tAbsError: 1.33984e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.12799e-06\tAbsError: 1.21676e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.84977e-08\tAbsError: 1.33863e-05\n", + " Region: \"zone_3\"\tRelError: 6.96386e-05\tAbsError: 1.62693e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.72931e-06\tAbsError: 8.65618e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.72298e-06\tAbsError: 7.61314e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 6.61478e-05\tAbsError: 1.23316e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.85089e-08\tAbsError: 1.33905e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.03853e+00\tAbsError: 3.18028e+12\n", + " Region: \"zone_1\"\tRelError: 1.44918e-02\tAbsError: 1.58284e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44785e-02\tAbsError: 1.11984e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33301e-05\tAbsError: 4.63001e-03\n", + " Region: \"zone_3\"\tRelError: 1.02404e+00\tAbsError: 3.18028e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99981e-01\tAbsError: 1.55439e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.22099e-03\tAbsError: 1.62589e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48224e-02\tAbsError: 1.11985e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33301e-05\tAbsError: 4.63001e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:58\u001b[0m.\u001b[1;36m093\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:58\u001b[0m.\u001b[1;36m093\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.20833333333333334\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 10\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 6.96843e-04\tAbsError: 1.13577e+11\n", + " Region: \"zone_1\"\tRelError: 7.40041e-05\tAbsError: 2.40654e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.33116e-05\tAbsError: 1.09664e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.92510e-07\tAbsError: 2.40545e-04\n", + " Region: \"zone_3\"\tRelError: 6.22838e-04\tAbsError: 1.13577e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.45499e-05\tAbsError: 5.24533e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.37560e-05\tAbsError: 6.11233e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.93840e-04\tAbsError: 1.11237e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.92510e-07\tAbsError: 2.40545e-04\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:58\u001b[0m.\u001b[1;36m844\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:58\u001b[0m.\u001b[1;36m875\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.95 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:58\u001b[0m.\u001b[1;36m905\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 4.67971e+03\tAbsError: 3.01461e+16\n", + " Region: \"zone_1\"\tRelError: 4.04216e+01\tAbsError: 2.77713e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.04210e+01\tAbsError: 7.21037e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.91375e-04\tAbsError: 2.05609e-01\n", + " Region: \"zone_3\"\tRelError: 4.63929e+03\tAbsError: 3.01461e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.26446e+03\tAbsError: 1.32531e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.37410e+03\tAbsError: 1.68930e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.25285e-01\tAbsError: 7.21037e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.91375e-04\tAbsError: 2.05609e-01\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.78033e-01\tAbsError: 3.70628e+12\n", + " Region: \"zone_1\"\tRelError: 2.47988e-04\tAbsError: 5.43708e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32390e-04\tAbsError: 1.92962e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55978e-05\tAbsError: 5.41778e-03\n", + " Region: \"zone_3\"\tRelError: 3.77785e-01\tAbsError: 3.70628e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.74214e-01\tAbsError: 1.32572e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.40773e-03\tAbsError: 2.38056e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.14798e-03\tAbsError: 1.94593e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55978e-05\tAbsError: 5.41778e-03\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 7.47471e-04\tAbsError: 2.34931e+11\n", + " Region: \"zone_1\"\tRelError: 7.61699e-05\tAbsError: 2.26699e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.61052e-05\tAbsError: 1.79159e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.46815e-08\tAbsError: 2.24908e-05\n", + " Region: \"zone_3\"\tRelError: 6.71301e-04\tAbsError: 2.34931e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.40726e-05\tAbsError: 1.09456e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.39157e-05\tAbsError: 1.25476e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.23248e-04\tAbsError: 1.81660e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.46979e-08\tAbsError: 2.24974e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.26592e+01\tAbsError: 9.07666e+15\n", + " Region: \"zone_1\"\tRelError: 6.10008e+01\tAbsError: 4.26161e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.10008e+01\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.53966e-09\tAbsError: 1.92633e-06\n", + " Region: \"zone_3\"\tRelError: 1.65838e+00\tAbsError: 9.07666e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83421e-01\tAbsError: 5.02255e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83353e-01\tAbsError: 4.05411e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.16036e-02\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.54116e-09\tAbsError: 1.92686e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.45051e+02\tAbsError: 3.22525e+17\n", + " Region: \"zone_1\"\tRelError: 6.54094e+01\tAbsError: 8.24908e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.54094e+01\tAbsError: 8.24901e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85102e-09\tAbsError: 6.43964e-07\n", + " Region: \"zone_3\"\tRelError: 7.96416e+01\tAbsError: 3.22525e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.35911e+01\tAbsError: 1.62303e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.52689e+01\tAbsError: 1.60222e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 7.81616e-01\tAbsError: 8.24901e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85177e-09\tAbsError: 6.44234e-07\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 6.72475e-03\tAbsError: 2.85913e+12\n", + " Region: \"zone_1\"\tRelError: 6.31779e-04\tAbsError: 3.90493e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.31676e-04\tAbsError: 3.51587e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02188e-07\tAbsError: 3.55335e-05\n", + " Region: \"zone_3\"\tRelError: 6.09297e-03\tAbsError: 2.85913e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.08369e-04\tAbsError: 9.02566e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.89143e-04\tAbsError: 1.95656e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.19536e-03\tAbsError: 3.55808e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02188e-07\tAbsError: 3.55335e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.67873e+03\tAbsError: 1.05528e+16\n", + " Region: \"zone_1\"\tRelError: 1.00757e+00\tAbsError: 1.20375e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00742e+00\tAbsError: 6.72143e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52930e-04\tAbsError: 5.31609e-02\n", + " Region: \"zone_3\"\tRelError: 5.67772e+03\tAbsError: 1.05528e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.39587e+01\tAbsError: 5.79006e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.64342e+03\tAbsError: 4.76271e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.37998e-01\tAbsError: 6.72143e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52930e-04\tAbsError: 5.31609e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 9.96706e-05\tAbsError: 2.13761e+10\n", + " Region: \"zone_1\"\tRelError: 1.04456e-05\tAbsError: 1.59397e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03998e-05\tAbsError: 1.57890e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.57957e-08\tAbsError: 1.59239e-05\n", + " Region: \"zone_3\"\tRelError: 8.92250e-05\tAbsError: 2.13761e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.25511e-06\tAbsError: 1.14120e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.24614e-06\tAbsError: 9.96404e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 8.46780e-05\tAbsError: 1.60006e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.58100e-08\tAbsError: 1.59294e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:00\u001b[0m.\u001b[1;36m602\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.2\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.27969e+00\tAbsError: 3.48721e+14\n", + " Region: \"zone_1\"\tRelError: 1.79507e+00\tAbsError: 9.78465e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79489e+00\tAbsError: 3.27224e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87321e-04\tAbsError: 6.51242e-02\n", + " Region: \"zone_3\"\tRelError: 1.48462e+00\tAbsError: 3.48721e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.62890e-01\tAbsError: 1.71311e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.57486e-01\tAbsError: 1.77410e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.40543e-02\tAbsError: 3.27228e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87321e-04\tAbsError: 6.51242e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.82544e+01\tAbsError: 2.10291e+17\n", + " Region: \"zone_1\"\tRelError: 1.04168e+01\tAbsError: 4.87343e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04157e+01\tAbsError: 7.88298e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17496e-03\tAbsError: 4.08513e-01\n", + " Region: \"zone_3\"\tRelError: 2.78375e+01\tAbsError: 2.10291e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.09352e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29716e+01\tAbsError: 1.00939e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 5.86472e+00\tAbsError: 7.88298e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17496e-03\tAbsError: 4.08513e-01\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 3.44573e-04\tAbsError: 2.22312e+10\n", + " Region: \"zone_1\"\tRelError: 3.62300e-05\tAbsError: 1.83529e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.57017e-05\tAbsError: 3.53910e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.28265e-07\tAbsError: 1.83494e-04\n", + " Region: \"zone_3\"\tRelError: 3.08343e-04\tAbsError: 2.22312e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13840e-05\tAbsError: 9.98484e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.35525e-06\tAbsError: 1.22464e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.87075e-04\tAbsError: 3.58808e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.28288e-07\tAbsError: 1.83504e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.34034e+03\tAbsError: 1.20343e+15\n", + " Region: \"zone_1\"\tRelError: 1.22444e-01\tAbsError: 1.58781e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22165e-01\tAbsError: 6.16386e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.79375e-04\tAbsError: 9.71428e-02\n", + " Region: \"zone_3\"\tRelError: 1.34022e+03\tAbsError: 1.20343e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.83041e+02\tAbsError: 6.78262e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.57032e+02\tAbsError: 5.25172e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46551e-01\tAbsError: 6.16387e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.79375e-04\tAbsError: 9.71428e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.15185e+01\tAbsError: 8.37846e+15\n", + " Region: \"zone_1\"\tRelError: 9.89193e+00\tAbsError: 4.09567e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.89193e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.96045e-09\tAbsError: 2.42039e-06\n", + " Region: \"zone_3\"\tRelError: 1.62652e+00\tAbsError: 8.37846e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69532e-01\tAbsError: 4.63620e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69461e-01\tAbsError: 3.74226e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.75319e-02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.96229e-09\tAbsError: 2.42104e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.29078e+00\tAbsError: 4.47109e+13\n", + " Region: \"zone_1\"\tRelError: 2.42382e-01\tAbsError: 3.11434e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42367e-01\tAbsError: 2.58832e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51300e-05\tAbsError: 5.26019e-03\n", + " Region: \"zone_3\"\tRelError: 1.04840e+00\tAbsError: 4.47109e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.78941e-01\tAbsError: 3.21718e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.51761e-01\tAbsError: 1.25392e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17681e-01\tAbsError: 2.58952e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51300e-05\tAbsError: 5.26019e-03\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 5.57184e-04\tAbsError: 1.78594e+11\n", + " Region: \"zone_1\"\tRelError: 5.66836e-05\tAbsError: 1.33048e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.66457e-05\tAbsError: 1.36613e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.78695e-08\tAbsError: 1.31682e-05\n", + " Region: \"zone_3\"\tRelError: 5.00501e-04\tAbsError: 1.78594e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.82685e-05\tAbsError: 8.24428e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.81485e-05\tAbsError: 9.61515e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.64046e-04\tAbsError: 1.38512e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.78774e-08\tAbsError: 1.31711e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 6.93966e+02\tAbsError: 8.18852e+16\n", + " Region: \"zone_1\"\tRelError: 1.61185e+01\tAbsError: 4.86099e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61173e+01\tAbsError: 7.47713e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18190e-03\tAbsError: 4.11328e-01\n", + " Region: \"zone_3\"\tRelError: 6.77847e+02\tAbsError: 8.18852e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.08584e+02\tAbsError: 4.73922e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.68793e+02\tAbsError: 3.44930e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.68594e-01\tAbsError: 7.47714e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18560e-03\tAbsError: 4.12638e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.95686e+02\tAbsError: 6.28264e+14\n", + " Region: \"zone_1\"\tRelError: 9.69104e-02\tAbsError: 6.14111e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.68925e-02\tAbsError: 5.51938e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78804e-05\tAbsError: 6.21733e-03\n", + " Region: \"zone_3\"\tRelError: 3.95589e+02\tAbsError: 6.28264e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.54891e+02\tAbsError: 3.72710e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.05420e+01\tAbsError: 2.55554e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55752e-01\tAbsError: 5.51939e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78804e-05\tAbsError: 6.21733e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.94648e+00\tAbsError: 2.98429e+14\n", + " Region: \"zone_1\"\tRelError: 5.14531e-01\tAbsError: 9.09002e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.14358e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72973e-04\tAbsError: 6.01365e-02\n", + " Region: \"zone_3\"\tRelError: 1.43195e+00\tAbsError: 2.98429e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37879e-01\tAbsError: 1.45713e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32394e-01\tAbsError: 1.52715e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.15050e-02\tAbsError: 3.07641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72973e-04\tAbsError: 6.01365e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 6.18426e-05\tAbsError: 1.23605e+10\n", + " Region: \"zone_1\"\tRelError: 6.50735e-06\tAbsError: 1.18225e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.47337e-06\tAbsError: 9.41299e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.39733e-08\tAbsError: 1.18131e-05\n", + " Region: \"zone_3\"\tRelError: 5.53353e-05\tAbsError: 1.23605e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33181e-06\tAbsError: 6.56801e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.32777e-06\tAbsError: 5.79248e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.26417e-05\tAbsError: 9.54137e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.39830e-08\tAbsError: 1.18168e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.41241e-01\tAbsError: 2.92135e+12\n", + " Region: \"zone_1\"\tRelError: 1.87261e-02\tAbsError: 1.52077e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87161e-02\tAbsError: 1.17194e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00337e-05\tAbsError: 3.48833e-03\n", + " Region: \"zone_3\"\tRelError: 3.22515e-01\tAbsError: 2.92135e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.35811e-01\tAbsError: 2.03287e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.77298e-02\tAbsError: 8.88478e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89640e-02\tAbsError: 1.17194e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00341e-05\tAbsError: 3.48852e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:03\u001b[0m.\u001b[1;36m816\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:03\u001b[0m.\u001b[1;36m816\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.20714285714285713\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.62856e+03\tAbsError: 2.33966e+16\n", + " Region: \"zone_1\"\tRelError: 1.79222e+00\tAbsError: 6.25008e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79062e+00\tAbsError: 7.02256e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59642e-03\tAbsError: 5.54782e-01\n", + " Region: \"zone_3\"\tRelError: 3.62677e+03\tAbsError: 2.33966e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68602e+01\tAbsError: 1.20119e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.54928e+03\tAbsError: 1.13847e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.22038e-01\tAbsError: 7.02257e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59642e-03\tAbsError: 5.54782e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.23312e+02\tAbsError: 1.77523e+14\n", + " Region: \"zone_1\"\tRelError: 7.60374e-02\tAbsError: 4.96944e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.60314e-02\tAbsError: 4.76396e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.91597e-06\tAbsError: 2.05477e-03\n", + " Region: \"zone_3\"\tRelError: 7.23236e+02\tAbsError: 1.77523e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.57278e+02\tAbsError: 1.33374e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.65882e+02\tAbsError: 4.41496e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.64860e-02\tAbsError: 4.76397e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.91597e-06\tAbsError: 2.05477e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.04599e+00\tAbsError: 3.86283e+13\n", + " Region: \"zone_1\"\tRelError: 9.93293e-02\tAbsError: 3.04735e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.93161e-02\tAbsError: 2.58731e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32322e-05\tAbsError: 4.60043e-03\n", + " Region: \"zone_3\"\tRelError: 9.46661e-01\tAbsError: 3.86283e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39749e-01\tAbsError: 2.78664e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.98990e-01\tAbsError: 1.07619e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07909e-01\tAbsError: 2.56750e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32322e-05\tAbsError: 4.60043e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.91289e-02\tAbsError: 2.88158e+12\n", + " Region: \"zone_1\"\tRelError: 6.81446e-03\tAbsError: 2.78526e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.80644e-03\tAbsError: 1.86670e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.01434e-06\tAbsError: 2.78339e-03\n", + " Region: \"zone_3\"\tRelError: 8.23144e-02\tAbsError: 2.88158e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.35009e-02\tAbsError: 1.71236e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.35888e-04\tAbsError: 1.16922e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.56961e-03\tAbsError: 1.86733e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.01434e-06\tAbsError: 2.78339e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.31027e+02\tAbsError: 3.00458e+15\n", + " Region: \"zone_1\"\tRelError: 3.24992e-01\tAbsError: 2.59747e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.24433e-01\tAbsError: 6.50815e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.59832e-04\tAbsError: 1.94665e-01\n", + " Region: \"zone_3\"\tRelError: 6.30702e+02\tAbsError: 3.00458e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.67501e+02\tAbsError: 2.00631e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.61532e+02\tAbsError: 9.98272e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66880e+00\tAbsError: 6.50816e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.59832e-04\tAbsError: 1.94665e-01\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.77748e+01\tAbsError: 8.97693e+15\n", + " Region: \"zone_1\"\tRelError: 3.61197e+01\tAbsError: 4.23851e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.61197e+01\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.52655e-09\tAbsError: 1.57404e-06\n", + " Region: \"zone_3\"\tRelError: 1.65511e+00\tAbsError: 8.97693e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81540e-01\tAbsError: 4.96736e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.81472e-01\tAbsError: 4.00957e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.21013e-02\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.52778e-09\tAbsError: 1.57447e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.14650e+00\tAbsError: 4.20836e+13\n", + " Region: \"zone_1\"\tRelError: 5.72071e-02\tAbsError: 4.38145e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.71923e-02\tAbsError: 3.86848e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47693e-05\tAbsError: 5.12967e-03\n", + " Region: \"zone_3\"\tRelError: 3.08929e+00\tAbsError: 4.20836e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.97813e-01\tAbsError: 2.36968e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.03383e+00\tAbsError: 1.83868e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.76355e-02\tAbsError: 3.86849e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47693e-05\tAbsError: 5.12967e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.81931e-01\tAbsError: 3.51173e+12\n", + " Region: \"zone_1\"\tRelError: 1.43962e-02\tAbsError: 1.26242e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43863e-02\tAbsError: 9.16567e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.94788e-06\tAbsError: 3.45854e-03\n", + " Region: \"zone_3\"\tRelError: 2.67534e-01\tAbsError: 3.51173e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10366e-01\tAbsError: 2.07267e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.20559e-02\tAbsError: 1.43906e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51023e-02\tAbsError: 9.16572e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.94788e-06\tAbsError: 3.45854e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.23983e-03\tAbsError: 1.36792e+12\n", + " Region: \"zone_1\"\tRelError: 1.01079e-03\tAbsError: 1.28339e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01043e-03\tAbsError: 1.92525e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.63132e-07\tAbsError: 1.26414e-04\n", + " Region: \"zone_3\"\tRelError: 2.22904e-03\tAbsError: 1.36792e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74133e-04\tAbsError: 3.74390e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.76038e-04\tAbsError: 9.93532e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87850e-03\tAbsError: 1.92892e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.63295e-07\tAbsError: 1.26474e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.88819e+03\tAbsError: 9.32942e+14\n", + " Region: \"zone_1\"\tRelError: 1.18425e-01\tAbsError: 9.22039e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18330e-01\tAbsError: 5.91837e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.49690e-05\tAbsError: 3.30202e-02\n", + " Region: \"zone_3\"\tRelError: 2.88807e+03\tAbsError: 9.32942e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.43139e+03\tAbsError: 6.31743e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.56293e+02\tAbsError: 3.01199e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87206e-01\tAbsError: 5.91838e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.49690e-05\tAbsError: 3.30202e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 5.57520e+00\tAbsError: 3.41172e+14\n", + " Region: \"zone_1\"\tRelError: 4.09766e+00\tAbsError: 9.68705e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.09747e+00\tAbsError: 3.24496e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85298e-04\tAbsError: 6.44208e-02\n", + " Region: \"zone_3\"\tRelError: 1.47755e+00\tAbsError: 3.41172e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.59180e-01\tAbsError: 1.67399e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.54624e-01\tAbsError: 1.73772e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.35588e-02\tAbsError: 3.24501e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85298e-04\tAbsError: 6.44208e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 8.92264e+02\tAbsError: 1.46420e+13\n", + " Region: \"zone_1\"\tRelError: 4.21097e-02\tAbsError: 3.28380e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.20961e-02\tAbsError: 2.81027e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36338e-05\tAbsError: 4.73535e-03\n", + " Region: \"zone_3\"\tRelError: 8.92222e+02\tAbsError: 1.46420e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.91554e+02\tAbsError: 6.91559e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.25440e-01\tAbsError: 7.72638e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.23139e-02\tAbsError: 2.81028e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36338e-05\tAbsError: 4.73535e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.22418e-02\tAbsError: 3.50272e+12\n", + " Region: \"zone_1\"\tRelError: 6.27955e-03\tAbsError: 2.19287e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.27328e-03\tAbsError: 1.50746e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.27058e-06\tAbsError: 2.17780e-03\n", + " Region: \"zone_3\"\tRelError: 6.59622e-02\tAbsError: 3.50272e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.67826e-02\tAbsError: 2.11762e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.14388e-04\tAbsError: 1.38509e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.55902e-03\tAbsError: 1.55696e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.27058e-06\tAbsError: 2.17780e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.09066e-04\tAbsError: 1.04921e+11\n", + " Region: \"zone_1\"\tRelError: 2.62531e-04\tAbsError: 8.16597e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.62297e-04\tAbsError: 5.98558e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.34939e-07\tAbsError: 8.15998e-05\n", + " Region: \"zone_3\"\tRelError: 3.46534e-04\tAbsError: 1.04921e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.33554e-06\tAbsError: 7.61208e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.25715e-06\tAbsError: 2.87997e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.29706e-04\tAbsError: 6.29349e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.35038e-07\tAbsError: 8.16321e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.13880e+02\tAbsError: 1.57052e+14\n", + " Region: \"zone_1\"\tRelError: 8.55413e-02\tAbsError: 7.29682e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.54820e-02\tAbsError: 5.23288e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.93599e-05\tAbsError: 2.06393e-02\n", + " Region: \"zone_3\"\tRelError: 1.13794e+02\tAbsError: 1.57052e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.49330e+01\tAbsError: 4.83658e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.87403e+01\tAbsError: 1.08686e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20863e-01\tAbsError: 5.23289e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.93599e-05\tAbsError: 2.06393e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.45566e+00\tAbsError: 4.38834e+13\n", + " Region: \"zone_1\"\tRelError: 4.22260e-01\tAbsError: 3.10654e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22245e-01\tAbsError: 2.58856e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48986e-05\tAbsError: 5.17974e-03\n", + " Region: \"zone_3\"\tRelError: 1.03340e+00\tAbsError: 4.38834e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73706e-01\tAbsError: 3.15931e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.43368e-01\tAbsError: 1.22903e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16309e-01\tAbsError: 2.58965e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48986e-05\tAbsError: 5.17974e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.08957e+00\tAbsError: 4.67918e+12\n", + " Region: \"zone_1\"\tRelError: 2.91985e-02\tAbsError: 2.86891e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.91811e-02\tAbsError: 2.26505e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73858e-05\tAbsError: 6.03862e-03\n", + " Region: \"zone_3\"\tRelError: 1.06038e+00\tAbsError: 4.67918e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.96820e-01\tAbsError: 1.64471e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.38070e-02\tAbsError: 3.03447e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97307e-02\tAbsError: 2.26508e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73858e-05\tAbsError: 6.03862e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.61553e-03\tAbsError: 1.05148e+12\n", + " Region: \"zone_1\"\tRelError: 2.24360e-04\tAbsError: 1.45741e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23946e-04\tAbsError: 1.49308e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14364e-07\tAbsError: 1.44248e-04\n", + " Region: \"zone_3\"\tRelError: 1.39117e-03\tAbsError: 1.05148e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46575e-04\tAbsError: 2.71194e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.31745e-04\tAbsError: 7.80282e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11244e-03\tAbsError: 1.49720e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14525e-07\tAbsError: 1.44306e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.18323e-04\tAbsError: 7.54503e+10\n", + " Region: \"zone_1\"\tRelError: 1.32414e-04\tAbsError: 3.51021e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32404e-04\tAbsError: 6.46082e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.89739e-09\tAbsError: 3.44561e-06\n", + " Region: \"zone_3\"\tRelError: 1.85909e-04\tAbsError: 7.54503e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.96290e-06\tAbsError: 3.07843e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.90608e-06\tAbsError: 4.46660e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72030e-04\tAbsError: 6.49049e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.90251e-09\tAbsError: 3.44747e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.32840e-01\tAbsError: 2.84312e+12\n", + " Region: \"zone_1\"\tRelError: 2.06699e-02\tAbsError: 1.48305e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06599e-02\tAbsError: 1.13363e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00507e-05\tAbsError: 3.49425e-03\n", + " Region: \"zone_3\"\tRelError: 3.12170e-01\tAbsError: 2.84312e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.30160e-01\tAbsError: 1.94377e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.36988e-02\tAbsError: 8.99360e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83008e-02\tAbsError: 1.13363e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00507e-05\tAbsError: 3.49425e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.48129e+04\tAbsError: 1.20564e+14\n", + " Region: \"zone_1\"\tRelError: 6.63227e-02\tAbsError: 4.87508e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.63097e-02\tAbsError: 4.42519e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29540e-05\tAbsError: 4.49889e-03\n", + " Region: \"zone_3\"\tRelError: 5.48128e+04\tAbsError: 1.20564e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.93615e+02\tAbsError: 6.52648e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.46192e+04\tAbsError: 5.52991e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.67437e-02\tAbsError: 4.42520e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29540e-05\tAbsError: 4.49889e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 5.82249e-01\tAbsError: 3.89306e+12\n", + " Region: \"zone_1\"\tRelError: 1.15390e-04\tAbsError: 1.16461e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.18796e-05\tAbsError: 6.35138e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.35108e-05\tAbsError: 1.16397e-02\n", + " Region: \"zone_3\"\tRelError: 5.82134e-01\tAbsError: 3.89306e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.80954e-01\tAbsError: 1.04210e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.18447e-04\tAbsError: 2.85096e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.27764e-04\tAbsError: 6.51921e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.35108e-05\tAbsError: 1.16397e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.04474e-04\tAbsError: 1.25302e+11\n", + " Region: \"zone_1\"\tRelError: 1.66223e-04\tAbsError: 5.88340e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66054e-04\tAbsError: 7.31627e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69180e-07\tAbsError: 5.87608e-05\n", + " Region: \"zone_3\"\tRelError: 4.38251e-04\tAbsError: 1.25302e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07347e-05\tAbsError: 8.57551e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06392e-05\tAbsError: 3.95471e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.16708e-04\tAbsError: 7.69543e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69180e-07\tAbsError: 5.87608e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 9.48378e-06\tAbsError: 2.45281e+09\n", + " Region: \"zone_1\"\tRelError: 3.59744e-06\tAbsError: 4.31703e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.58502e-06\tAbsError: 1.36333e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24138e-08\tAbsError: 4.31567e-06\n", + " Region: \"zone_3\"\tRelError: 5.88634e-06\tAbsError: 2.45281e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.31749e-07\tAbsError: 2.17401e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.05660e-07\tAbsError: 2.78792e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 5.43652e-06\tAbsError: 1.42292e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24148e-08\tAbsError: 4.31610e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:10\u001b[0m.\u001b[1;36m903\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:10\u001b[0m.\u001b[1;36m903\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.31666666666666665\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.45241e-02\tAbsError: 6.08779e+12\n", + " Region: \"zone_1\"\tRelError: 1.38533e-03\tAbsError: 1.93904e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38480e-03\tAbsError: 7.53521e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.35967e-07\tAbsError: 1.86369e-04\n", + " Region: \"zone_3\"\tRelError: 1.31387e-02\tAbsError: 6.08779e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.19346e-04\tAbsError: 1.95279e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.35855e-04\tAbsError: 4.13500e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13830e-02\tAbsError: 7.62534e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.35967e-07\tAbsError: 1.86369e-04\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.24302e-02\tAbsError: 2.86262e+12\n", + " Region: \"zone_1\"\tRelError: 1.27117e-02\tAbsError: 2.69830e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27040e-02\tAbsError: 1.65367e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.76457e-06\tAbsError: 2.69665e-03\n", + " Region: \"zone_3\"\tRelError: 7.97185e-02\tAbsError: 2.86262e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.09232e-02\tAbsError: 1.72387e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.97977e-04\tAbsError: 1.13875e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.58955e-03\tAbsError: 1.70416e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.76457e-06\tAbsError: 2.69665e-03\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.70703e+02\tAbsError: 2.82032e+13\n", + " Region: \"zone_1\"\tRelError: 4.84371e-02\tAbsError: 4.21872e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.84154e-02\tAbsError: 3.46615e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16687e-05\tAbsError: 7.52567e-03\n", + " Region: \"zone_3\"\tRelError: 3.70655e+02\tAbsError: 2.82032e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.69606e+02\tAbsError: 1.64213e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.99820e-01\tAbsError: 1.17818e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.88175e-02\tAbsError: 3.46617e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16687e-05\tAbsError: 7.52567e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.49534e-04\tAbsError: 5.25628e+10\n", + " Region: \"zone_1\"\tRelError: 3.67429e-05\tAbsError: 6.09081e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.67256e-05\tAbsError: 4.65389e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73624e-08\tAbsError: 6.04427e-06\n", + " Region: \"zone_3\"\tRelError: 1.12791e-04\tAbsError: 5.25628e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.87822e-06\tAbsError: 1.95393e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.83754e-06\tAbsError: 3.30235e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03058e-04\tAbsError: 4.67667e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73702e-08\tAbsError: 6.04712e-06\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.08965e-03\tAbsError: 1.66126e+11\n", + " Region: \"zone_1\"\tRelError: 1.15781e-04\tAbsError: 3.98908e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14633e-04\tAbsError: 1.63463e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14796e-06\tAbsError: 3.98745e-04\n", + " Region: \"zone_3\"\tRelError: 9.73866e-04\tAbsError: 1.66126e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.41675e-05\tAbsError: 7.66761e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.03134e-05\tAbsError: 8.94495e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.28237e-04\tAbsError: 1.65873e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14796e-06\tAbsError: 3.98745e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.46753e+00\tAbsError: 8.85142e+12\n", + " Region: \"zone_1\"\tRelError: 3.80736e-02\tAbsError: 3.50731e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.80472e-02\tAbsError: 2.58955e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.64244e-05\tAbsError: 9.17760e-03\n", + " Region: \"zone_3\"\tRelError: 1.42945e+00\tAbsError: 8.85142e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13018e+00\tAbsError: 2.66676e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.60374e-01\tAbsError: 6.18465e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.88771e-02\tAbsError: 2.58916e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.64244e-05\tAbsError: 9.17760e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.75500e-03\tAbsError: 1.32204e+12\n", + " Region: \"zone_1\"\tRelError: 1.65378e-03\tAbsError: 1.30948e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65340e-03\tAbsError: 1.86320e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.70805e-07\tAbsError: 1.29085e-04\n", + " Region: \"zone_3\"\tRelError: 2.10123e-03\tAbsError: 1.32204e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68767e-04\tAbsError: 3.59146e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.69627e-04\tAbsError: 9.62892e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76246e-03\tAbsError: 1.86697e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.70964e-07\tAbsError: 1.29144e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.66636e+01\tAbsError: 8.97630e+15\n", + " Region: \"zone_1\"\tRelError: 2.49916e+01\tAbsError: 4.26144e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49916e+01\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.33059e-10\tAbsError: 1.50679e-07\n", + " Region: \"zone_3\"\tRelError: 1.67196e+00\tAbsError: 8.97630e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83514e-01\tAbsError: 5.13521e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83497e-01\tAbsError: 3.84109e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04945e-01\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.33239e-10\tAbsError: 1.50741e-07\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.34617e-05\tAbsError: 4.93078e+09\n", + " Region: \"zone_1\"\tRelError: 6.39658e-06\tAbsError: 2.70504e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.38880e-06\tAbsError: 2.92925e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78001e-09\tAbsError: 2.70211e-06\n", + " Region: \"zone_3\"\tRelError: 1.70651e-05\tAbsError: 4.93078e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.08409e-07\tAbsError: 3.64055e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.02771e-07\tAbsError: 1.29023e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62462e-05\tAbsError: 3.07627e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78042e-09\tAbsError: 2.70228e-06\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.23496e-03\tAbsError: 3.88937e+11\n", + " Region: \"zone_1\"\tRelError: 1.25820e-04\tAbsError: 3.61467e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25717e-04\tAbsError: 2.96756e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03101e-07\tAbsError: 3.58499e-05\n", + " Region: \"zone_3\"\tRelError: 1.10914e-03\tAbsError: 3.88937e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.98691e-05\tAbsError: 1.81164e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.96088e-05\tAbsError: 2.07773e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02956e-03\tAbsError: 3.00897e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03128e-07\tAbsError: 3.58606e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:13\u001b[0m.\u001b[1;36m398\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:13\u001b[0m.\u001b[1;36m398\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 5.89664e-01\tAbsError: 7.12933e+12\n", + " Region: \"zone_1\"\tRelError: 1.82370e-02\tAbsError: 2.54424e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82061e-02\tAbsError: 1.47192e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.08737e-05\tAbsError: 1.07232e-02\n", + " Region: \"zone_3\"\tRelError: 5.71427e-01\tAbsError: 7.12933e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.46019e-01\tAbsError: 1.65823e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.76669e-03\tAbsError: 5.47110e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86105e-02\tAbsError: 1.47194e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.08737e-05\tAbsError: 1.07232e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 8.49928e-04\tAbsError: 1.08021e+11\n", + " Region: \"zone_1\"\tRelError: 4.89613e-04\tAbsError: 7.83192e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.89388e-04\tAbsError: 6.17623e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.25315e-07\tAbsError: 7.82574e-05\n", + " Region: \"zone_3\"\tRelError: 3.60315e-04\tAbsError: 1.08021e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.68128e-06\tAbsError: 7.75669e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.60123e-06\tAbsError: 3.04546e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.42807e-04\tAbsError: 6.49402e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.25391e-07\tAbsError: 7.82820e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.64103e+00\tAbsError: 3.38547e+14\n", + " Region: \"zone_1\"\tRelError: 1.41318e-01\tAbsError: 9.34351e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41143e-01\tAbsError: 3.27224e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74663e-04\tAbsError: 6.07127e-02\n", + " Region: \"zone_3\"\tRelError: 1.49971e+00\tAbsError: 3.38547e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.63048e-01\tAbsError: 1.99221e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.58072e-01\tAbsError: 1.39326e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.84139e-02\tAbsError: 3.27228e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74663e-04\tAbsError: 6.07127e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.60246e-04\tAbsError: 3.40369e+10\n", + " Region: \"zone_1\"\tRelError: 1.68034e-05\tAbsError: 2.63003e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67278e-05\tAbsError: 2.52237e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.55647e-08\tAbsError: 2.62751e-05\n", + " Region: \"zone_3\"\tRelError: 1.43443e-04\tAbsError: 3.40369e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.59868e-06\tAbsError: 1.81685e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.58484e-06\tAbsError: 1.58684e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36183e-04\tAbsError: 2.55624e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.55881e-08\tAbsError: 2.62841e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.88205e-01\tAbsError: 8.63940e+12\n", + " Region: \"zone_1\"\tRelError: 4.35098e-04\tAbsError: 1.57759e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.89774e-04\tAbsError: 3.29820e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.53240e-05\tAbsError: 1.57429e-02\n", + " Region: \"zone_3\"\tRelError: 2.87770e-01\tAbsError: 8.63940e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.82323e-01\tAbsError: 2.51161e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.35683e-03\tAbsError: 6.12779e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.04524e-03\tAbsError: 3.30252e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.53240e-05\tAbsError: 1.57429e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 9.54016e+00\tAbsError: 8.28773e+15\n", + " Region: \"zone_1\"\tRelError: 7.90066e+00\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.90066e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.70870e-10\tAbsError: 1.98737e-07\n", + " Region: \"zone_3\"\tRelError: 1.63951e+00\tAbsError: 8.28773e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69626e-01\tAbsError: 4.72857e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69607e-01\tAbsError: 3.55916e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00272e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.71133e-10\tAbsError: 1.98833e-07\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.96126e-04\tAbsError: 7.20782e+10\n", + " Region: \"zone_1\"\tRelError: 2.21127e-04\tAbsError: 3.89252e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21116e-04\tAbsError: 6.19595e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10031e-08\tAbsError: 3.83056e-06\n", + " Region: \"zone_3\"\tRelError: 1.74999e-04\tAbsError: 7.20782e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.65804e-06\tAbsError: 2.91079e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.60364e-06\tAbsError: 4.29703e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61727e-04\tAbsError: 6.22469e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10087e-08\tAbsError: 3.83256e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.28948e+00\tAbsError: 4.14353e+13\n", + " Region: \"zone_1\"\tRelError: 2.38341e-01\tAbsError: 3.22323e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38323e-01\tAbsError: 2.58129e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84675e-05\tAbsError: 6.41942e-03\n", + " Region: \"zone_3\"\tRelError: 1.05113e+00\tAbsError: 4.14353e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.79303e-01\tAbsError: 3.03763e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.54468e-01\tAbsError: 1.10590e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17345e-01\tAbsError: 2.58893e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84675e-05\tAbsError: 6.41942e-03\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 9.49376e-05\tAbsError: 2.57660e+10\n", + " Region: \"zone_1\"\tRelError: 9.79246e-06\tAbsError: 3.93277e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 9.78120e-06\tAbsError: 1.74738e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12594e-08\tAbsError: 3.91529e-06\n", + " Region: \"zone_3\"\tRelError: 8.51451e-05\tAbsError: 2.57660e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.56549e-06\tAbsError: 1.38663e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.54725e-06\tAbsError: 1.18996e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.00211e-05\tAbsError: 1.77235e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12624e-08\tAbsError: 3.91634e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:15\u001b[0m.\u001b[1;36m767\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.2\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 12\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 1.96714e-02\tAbsError: 8.16211e+12\n", + " Region: \"zone_1\"\tRelError: 1.87172e-03\tAbsError: 1.88005e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87121e-03\tAbsError: 1.01416e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.11506e-07\tAbsError: 1.77863e-04\n", + " Region: \"zone_3\"\tRelError: 1.77997e-02\tAbsError: 8.16211e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28006e-03\tAbsError: 2.65961e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13272e-03\tAbsError: 5.50249e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53864e-02\tAbsError: 1.02631e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.11506e-07\tAbsError: 1.77863e-04\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.57084e+00\tAbsError: 2.89575e+14\n", + " Region: \"zone_1\"\tRelError: 1.26543e-01\tAbsError: 8.72430e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26381e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62480e-04\tAbsError: 5.64794e-02\n", + " Region: \"zone_3\"\tRelError: 1.44430e+00\tAbsError: 2.89575e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37983e-01\tAbsError: 1.66847e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32917e-01\tAbsError: 1.22728e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.32359e-02\tAbsError: 3.07641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62480e-04\tAbsError: 5.64794e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.64462e-05\tAbsError: 2.76462e+09\n", + " Region: \"zone_1\"\tRelError: 8.94814e-06\tAbsError: 4.07812e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.93642e-06\tAbsError: 1.58768e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17259e-08\tAbsError: 4.07653e-06\n", + " Region: \"zone_3\"\tRelError: 7.49807e-06\tAbsError: 2.76462e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.34484e-07\tAbsError: 2.39149e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.06254e-07\tAbsError: 3.73129e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 7.04561e-06\tAbsError: 1.66770e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17267e-08\tAbsError: 4.07688e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:16\u001b[0m.\u001b[1;36m743\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:16\u001b[0m.\u001b[1;36m743\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.3142857142857143\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Iteration: 3\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 3.68972e-01\tAbsError: 5.93574e+12\n", + " Region: \"zone_1\"\tRelError: 4.08424e-02\tAbsError: 1.48565e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.08334e-02\tAbsError: 1.17194e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.02522e-06\tAbsError: 3.13711e-03\n", + " Region: \"zone_3\"\tRelError: 3.28129e-01\tAbsError: 5.93574e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.35893e-01\tAbsError: 3.04330e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.85715e-02\tAbsError: 2.89244e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36552e-02\tAbsError: 1.17194e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.02730e-06\tAbsError: 3.13793e-03\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.25625e-03\tAbsError: 1.44271e+11\n", + " Region: \"zone_1\"\tRelError: 1.32976e-04\tAbsError: 5.31943e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31445e-04\tAbsError: 1.55231e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53098e-06\tAbsError: 5.31788e-04\n", + " Region: \"zone_3\"\tRelError: 1.12327e-03\tAbsError: 1.44271e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.23384e-05\tAbsError: 6.93544e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.72047e-05\tAbsError: 7.49163e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06220e-03\tAbsError: 1.57379e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53098e-06\tAbsError: 5.31788e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.15185e+01\tAbsError: 8.37847e+15\n", + " Region: \"zone_1\"\tRelError: 9.89198e+00\tAbsError: 4.09561e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.89198e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.44792e-09\tAbsError: 1.89443e-06\n", + " Region: \"zone_3\"\tRelError: 1.62652e+00\tAbsError: 8.37847e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69532e-01\tAbsError: 4.63620e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69461e-01\tAbsError: 3.74227e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.75319e-02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.44931e-09\tAbsError: 1.89492e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.08933e+00\tAbsError: 3.08258e+13\n", + " Region: \"zone_1\"\tRelError: 1.39766e-01\tAbsError: 3.14532e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39750e-01\tAbsError: 2.58726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60540e-05\tAbsError: 5.58058e-03\n", + " Region: \"zone_3\"\tRelError: 9.49568e-01\tAbsError: 3.08258e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40223e-01\tAbsError: 2.27975e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.01508e-01\tAbsError: 8.02831e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07820e-01\tAbsError: 2.58966e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60540e-05\tAbsError: 5.58058e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.00828e-01\tAbsError: 2.58321e+12\n", + " Region: \"zone_1\"\tRelError: 1.80463e-02\tAbsError: 1.94095e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80407e-02\tAbsError: 5.43828e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.57358e-06\tAbsError: 1.93551e-03\n", + " Region: \"zone_3\"\tRelError: 8.27815e-02\tAbsError: 2.58321e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.36586e-02\tAbsError: 1.73538e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.57188e-04\tAbsError: 8.47840e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.76020e-03\tAbsError: 5.92018e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.57358e-06\tAbsError: 1.93551e-03\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.64697e-03\tAbsError: 5.18786e+11\n", + " Region: \"zone_1\"\tRelError: 1.67763e-04\tAbsError: 4.37003e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67639e-04\tAbsError: 3.94746e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24542e-07\tAbsError: 4.33055e-05\n", + " Region: \"zone_3\"\tRelError: 1.47920e-03\tAbsError: 5.18786e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.32202e-05\tAbsError: 2.42889e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.28692e-05\tAbsError: 2.75896e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37299e-03\tAbsError: 4.00256e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24579e-07\tAbsError: 4.33199e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.77904e+01\tAbsError: 8.87794e+15\n", + " Region: \"zone_1\"\tRelError: 5.61221e+01\tAbsError: 4.23836e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.61221e+01\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.50661e-10\tAbsError: 1.22012e-07\n", + " Region: \"zone_3\"\tRelError: 1.66827e+00\tAbsError: 8.87794e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81634e-01\tAbsError: 5.07701e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.81616e-01\tAbsError: 3.80093e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05019e-01\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.50819e-10\tAbsError: 1.22067e-07\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.94647e+00\tAbsError: 2.98429e+14\n", + " Region: \"zone_1\"\tRelError: 5.14524e-01\tAbsError: 9.09015e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.14351e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72976e-04\tAbsError: 6.01378e-02\n", + " Region: \"zone_3\"\tRelError: 1.43195e+00\tAbsError: 2.98429e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37879e-01\tAbsError: 1.45714e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32394e-01\tAbsError: 1.52716e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.15050e-02\tAbsError: 3.07641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72976e-04\tAbsError: 6.01378e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.94758e-01\tAbsError: 4.98642e+12\n", + " Region: \"zone_1\"\tRelError: 2.19383e-02\tAbsError: 1.22221e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19295e-02\tAbsError: 9.16564e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.79291e-06\tAbsError: 3.05651e-03\n", + " Region: \"zone_3\"\tRelError: 2.72820e-01\tAbsError: 4.98642e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12699e-01\tAbsError: 2.77867e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.23181e-02\tAbsError: 2.20775e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77940e-02\tAbsError: 9.16568e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.79389e-06\tAbsError: 3.05683e-03\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 1.98584e-04\tAbsError: 4.08166e+10\n", + " Region: \"zone_1\"\tRelError: 2.08608e-05\tAbsError: 3.48398e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07607e-05\tAbsError: 3.04350e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00109e-07\tAbsError: 3.48094e-05\n", + " Region: \"zone_3\"\tRelError: 1.77724e-04\tAbsError: 4.08166e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.34980e-06\tAbsError: 2.19178e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.33496e-06\tAbsError: 1.88988e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68939e-04\tAbsError: 3.08478e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00140e-07\tAbsError: 3.48217e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.70741e-03\tAbsError: 9.43014e+11\n", + " Region: \"zone_1\"\tRelError: 1.62358e-03\tAbsError: 1.39491e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62318e-03\tAbsError: 1.40436e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.96704e-07\tAbsError: 1.38086e-04\n", + " Region: \"zone_3\"\tRelError: 1.08383e-03\tAbsError: 9.43014e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09769e-04\tAbsError: 2.31971e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02599e-04\tAbsError: 7.11044e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.71070e-04\tAbsError: 1.40908e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.96869e-07\tAbsError: 1.38147e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.75967e+00\tAbsError: 3.31374e+14\n", + " Region: \"zone_1\"\tRelError: 2.67484e-01\tAbsError: 9.25755e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67311e-01\tAbsError: 3.24496e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72974e-04\tAbsError: 6.01259e-02\n", + " Region: \"zone_3\"\tRelError: 1.49219e+00\tAbsError: 3.31374e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.59591e-01\tAbsError: 1.94436e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.54784e-01\tAbsError: 1.36938e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.76418e-02\tAbsError: 3.24500e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72974e-04\tAbsError: 6.01259e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.04600e+00\tAbsError: 3.86292e+13\n", + " Region: \"zone_1\"\tRelError: 9.93314e-02\tAbsError: 3.04738e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.93181e-02\tAbsError: 2.58731e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32329e-05\tAbsError: 4.60067e-03\n", + " Region: \"zone_3\"\tRelError: 9.46666e-01\tAbsError: 3.86292e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39748e-01\tAbsError: 2.78671e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.98990e-01\tAbsError: 1.07621e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07914e-01\tAbsError: 2.56750e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32329e-05\tAbsError: 4.60067e-03\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 1.25453e-04\tAbsError: 3.41182e+10\n", + " Region: \"zone_1\"\tRelError: 1.29374e-05\tAbsError: 4.94542e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29233e-05\tAbsError: 2.30857e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41554e-08\tAbsError: 4.92233e-06\n", + " Region: \"zone_3\"\tRelError: 1.12515e-04\tAbsError: 3.41182e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.39538e-06\tAbsError: 1.83959e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.37099e-06\tAbsError: 1.57223e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05735e-04\tAbsError: 2.34162e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41591e-08\tAbsError: 4.92361e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.73338e-02\tAbsError: 3.09182e+12\n", + " Region: \"zone_1\"\tRelError: 1.11598e-02\tAbsError: 1.65988e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11551e-02\tAbsError: 1.42279e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73882e-06\tAbsError: 1.64565e-03\n", + " Region: \"zone_3\"\tRelError: 6.61739e-02\tAbsError: 3.09182e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.71921e-02\tAbsError: 1.98622e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.49402e-04\tAbsError: 1.10560e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.42774e-03\tAbsError: 1.50865e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73882e-06\tAbsError: 1.64565e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.30730e-03\tAbsError: 1.19612e+11\n", + " Region: \"zone_1\"\tRelError: 8.58744e-04\tAbsError: 5.14180e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.58596e-04\tAbsError: 7.13446e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47850e-07\tAbsError: 5.13467e-05\n", + " Region: \"zone_3\"\tRelError: 4.48561e-04\tAbsError: 1.19612e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.84494e-06\tAbsError: 8.20842e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.76493e-06\tAbsError: 3.75278e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.30803e-04\tAbsError: 7.51545e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47850e-07\tAbsError: 5.13467e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.41236e+00\tAbsError: 3.74251e+13\n", + " Region: \"zone_1\"\tRelError: 3.75384e-01\tAbsError: 3.22046e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.75366e-01\tAbsError: 2.58960e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.81486e-05\tAbsError: 6.30858e-03\n", + " Region: \"zone_3\"\tRelError: 1.03697e+00\tAbsError: 3.74251e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73965e-01\tAbsError: 2.68550e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.46971e-01\tAbsError: 1.05700e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16017e-01\tAbsError: 2.58965e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.81486e-05\tAbsError: 6.30858e-03\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 2.11687e-05\tAbsError: 4.65217e+09\n", + " Region: \"zone_1\"\tRelError: 2.21392e-06\tAbsError: 2.49552e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20676e-06\tAbsError: 3.16709e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.16739e-09\tAbsError: 2.49235e-06\n", + " Region: \"zone_3\"\tRelError: 1.89547e-05\tAbsError: 4.65217e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.78662e-07\tAbsError: 2.65424e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.76615e-07\tAbsError: 1.99793e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79923e-05\tAbsError: 3.21147e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.16920e-09\tAbsError: 2.49299e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.81932e-01\tAbsError: 3.51191e+12\n", + " Region: \"zone_1\"\tRelError: 1.43962e-02\tAbsError: 1.26244e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43862e-02\tAbsError: 9.16567e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.94829e-06\tAbsError: 3.45869e-03\n", + " Region: \"zone_3\"\tRelError: 2.67535e-01\tAbsError: 3.51191e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10366e-01\tAbsError: 2.07283e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.20558e-02\tAbsError: 1.43908e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51034e-02\tAbsError: 9.16572e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.94829e-06\tAbsError: 3.45869e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:21\u001b[0m.\u001b[1;36m692\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.20625\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.35940e-03\tAbsError: 7.91644e+11\n", + " Region: \"zone_1\"\tRelError: 6.17001e-04\tAbsError: 1.42075e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.16596e-04\tAbsError: 1.18665e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.04748e-07\tAbsError: 1.40888e-04\n", + " Region: \"zone_3\"\tRelError: 7.42401e-04\tAbsError: 7.91644e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00211e-04\tAbsError: 1.88344e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.60094e-05\tAbsError: 6.03301e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.55776e-04\tAbsError: 1.18974e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.04912e-07\tAbsError: 1.40947e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.64377e-04\tAbsError: 4.52414e+10\n", + " Region: \"zone_1\"\tRelError: 1.70304e-04\tAbsError: 6.12495e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70287e-04\tAbsError: 4.29528e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74725e-08\tAbsError: 6.08200e-06\n", + " Region: \"zone_3\"\tRelError: 9.40730e-05\tAbsError: 4.52414e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.68905e-06\tAbsError: 1.57870e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.65669e-06\tAbsError: 2.94544e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.67098e-05\tAbsError: 4.29962e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74802e-08\tAbsError: 6.08483e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.82063e-01\tAbsError: 5.70563e+12\n", + " Region: \"zone_1\"\tRelError: 6.50909e-02\tAbsError: 1.43712e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.50822e-02\tAbsError: 1.13362e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.73140e-06\tAbsError: 3.03499e-03\n", + " Region: \"zone_3\"\tRelError: 3.16972e-01\tAbsError: 5.70563e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.29746e-01\tAbsError: 2.94606e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.44628e-02\tAbsError: 2.75958e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27548e-02\tAbsError: 1.13363e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.73488e-06\tAbsError: 3.03633e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.22423e-02\tAbsError: 3.50280e+12\n", + " Region: \"zone_1\"\tRelError: 6.27969e-03\tAbsError: 2.19297e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.27342e-03\tAbsError: 1.50745e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.27086e-06\tAbsError: 2.17790e-03\n", + " Region: \"zone_3\"\tRelError: 6.59626e-02\tAbsError: 3.50280e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.67825e-02\tAbsError: 2.11769e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.14375e-04\tAbsError: 1.38511e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.55940e-03\tAbsError: 1.55695e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.27086e-06\tAbsError: 2.17790e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.02141e-03\tAbsError: 1.23957e+11\n", + " Region: \"zone_1\"\tRelError: 5.52143e-04\tAbsError: 4.11028e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.52024e-04\tAbsError: 7.43261e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18138e-07\tAbsError: 4.10285e-05\n", + " Region: \"zone_3\"\tRelError: 4.69263e-04\tAbsError: 1.23957e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.58109e-06\tAbsError: 8.33431e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.49437e-06\tAbsError: 4.06143e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.50070e-04\tAbsError: 7.83274e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18138e-07\tAbsError: 4.10285e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.91829e+01\tAbsError: 8.90212e+15\n", + " Region: \"zone_1\"\tRelError: 2.75315e+01\tAbsError: 4.22096e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.75315e+01\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34515e-09\tAbsError: 4.67755e-07\n", + " Region: \"zone_3\"\tRelError: 1.65141e+00\tAbsError: 8.90212e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80108e-01\tAbsError: 4.92596e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.80039e-01\tAbsError: 3.97616e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.12637e-02\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34538e-09\tAbsError: 4.67835e-07\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 5.47022e-05\tAbsError: 5.00638e+09\n", + " Region: \"zone_1\"\tRelError: 3.59259e-05\tAbsError: 2.28996e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59193e-05\tAbsError: 3.06179e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.58527e-09\tAbsError: 2.28690e-06\n", + " Region: \"zone_3\"\tRelError: 1.87763e-05\tAbsError: 5.00638e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.63684e-07\tAbsError: 3.65206e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.58517e-07\tAbsError: 1.35432e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80475e-05\tAbsError: 3.21633e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.58713e-09\tAbsError: 2.28757e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:23\u001b[0m.\u001b[1;36m653\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:23\u001b[0m.\u001b[1;36m653\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.42500000000000004\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.08168e-01\tAbsError: 2.50771e+12\n", + " Region: \"zone_1\"\tRelError: 2.80959e-02\tAbsError: 1.99697e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80902e-02\tAbsError: 5.40237e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.73499e-06\tAbsError: 1.99156e-03\n", + " Region: \"zone_3\"\tRelError: 8.00718e-02\tAbsError: 2.50771e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.11633e-02\tAbsError: 1.69868e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.42315e-04\tAbsError: 8.09036e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.46039e-03\tAbsError: 5.79510e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.73499e-06\tAbsError: 1.99156e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.61557e-03\tAbsError: 1.05156e+12\n", + " Region: \"zone_1\"\tRelError: 2.24358e-04\tAbsError: 1.45747e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23943e-04\tAbsError: 1.49317e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14383e-07\tAbsError: 1.44254e-04\n", + " Region: \"zone_3\"\tRelError: 1.39121e-03\tAbsError: 1.05156e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46581e-04\tAbsError: 2.71206e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.31751e-04\tAbsError: 7.80353e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11247e-03\tAbsError: 1.49728e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14543e-07\tAbsError: 1.44312e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.30911e-04\tAbsError: 3.51442e+10\n", + " Region: \"zone_1\"\tRelError: 6.81885e-05\tAbsError: 6.92614e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.81687e-05\tAbsError: 3.42472e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.97989e-08\tAbsError: 6.89189e-06\n", + " Region: \"zone_3\"\tRelError: 6.27220e-05\tAbsError: 3.51442e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91737e-06\tAbsError: 1.11617e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.89123e-06\tAbsError: 2.39825e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.68936e-05\tAbsError: 3.42673e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98072e-08\tAbsError: 6.89488e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.71568e+03\tAbsError: 3.35717e+14\n", + " Region: \"zone_1\"\tRelError: 1.71420e+03\tAbsError: 9.61254e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.71420e+03\tAbsError: 3.22436e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83747e-04\tAbsError: 6.38819e-02\n", + " Region: \"zone_3\"\tRelError: 1.47181e+00\tAbsError: 3.35717e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.56735e-01\tAbsError: 1.64637e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.51848e-01\tAbsError: 1.71080e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.30478e-02\tAbsError: 3.22440e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83747e-04\tAbsError: 6.38819e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.48312e+02\tAbsError: 8.94911e+15\n", + " Region: \"zone_1\"\tRelError: 4.46630e+02\tAbsError: 4.26144e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.46630e+02\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.62615e-10\tAbsError: 2.30654e-07\n", + " Region: \"zone_3\"\tRelError: 1.68233e+00\tAbsError: 8.94911e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83539e-01\tAbsError: 5.26125e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83518e-01\tAbsError: 3.68785e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15269e-01\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.62924e-10\tAbsError: 2.30765e-07\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.33228e-03\tAbsError: 9.74742e+11\n", + " Region: \"zone_1\"\tRelError: 3.08967e-03\tAbsError: 1.32041e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.08930e-03\tAbsError: 1.44698e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.75173e-07\tAbsError: 1.30594e-04\n", + " Region: \"zone_3\"\tRelError: 1.24261e-03\tAbsError: 9.74742e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.15122e-04\tAbsError: 2.46318e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.07963e-04\tAbsError: 7.28424e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01915e-03\tAbsError: 1.45186e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.75331e-07\tAbsError: 1.30651e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.04500e-04\tAbsError: 1.25308e+11\n", + " Region: \"zone_1\"\tRelError: 1.66230e-04\tAbsError: 5.88380e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66061e-04\tAbsError: 7.31659e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69192e-07\tAbsError: 5.87648e-05\n", + " Region: \"zone_3\"\tRelError: 4.38270e-04\tAbsError: 1.25308e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07352e-05\tAbsError: 8.57589e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06397e-05\tAbsError: 3.95489e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.16726e-04\tAbsError: 7.69576e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69192e-07\tAbsError: 5.87648e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.91977e-05\tAbsError: 5.89587e+09\n", + " Region: \"zone_1\"\tRelError: 2.66095e-05\tAbsError: 1.68142e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66047e-05\tAbsError: 3.56714e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.83123e-09\tAbsError: 1.67785e-06\n", + " Region: \"zone_3\"\tRelError: 2.25882e-05\tAbsError: 5.89587e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.48785e-07\tAbsError: 4.10022e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.43251e-07\tAbsError: 1.79565e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16913e-05\tAbsError: 3.75397e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.83123e-09\tAbsError: 1.67785e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.01989e+00\tAbsError: 4.31984e+13\n", + " Region: \"zone_1\"\tRelError: 9.96747e-01\tAbsError: 3.09938e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.96733e-01\tAbsError: 2.58940e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46688e-05\tAbsError: 5.09985e-03\n", + " Region: \"zone_3\"\tRelError: 1.02314e+00\tAbsError: 4.31984e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.69533e-01\tAbsError: 3.11070e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.38351e-01\tAbsError: 1.20915e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15242e-01\tAbsError: 2.58944e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46688e-05\tAbsError: 5.09985e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:26\u001b[0m.\u001b[1;36m225\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.4\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.40232e+00\tAbsError: 3.73139e+14\n", + " Region: \"zone_1\"\tRelError: 8.85228e-01\tAbsError: 8.59449e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.85075e-01\tAbsError: 3.27223e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53137e-04\tAbsError: 5.32226e-02\n", + " Region: \"zone_3\"\tRelError: 1.51710e+00\tAbsError: 3.73139e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.64079e-01\tAbsError: 2.70317e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.57262e-01\tAbsError: 1.02822e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.56017e-02\tAbsError: 3.27227e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53137e-04\tAbsError: 5.32226e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.69414e-03\tAbsError: 1.12063e+11\n", + " Region: \"zone_1\"\tRelError: 1.27847e-03\tAbsError: 5.43584e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27831e-03\tAbsError: 6.67185e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56330e-07\tAbsError: 5.42917e-05\n", + " Region: \"zone_3\"\tRelError: 4.15667e-04\tAbsError: 1.12063e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.22862e-06\tAbsError: 7.78226e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.15163e-06\tAbsError: 3.42401e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.99131e-04\tAbsError: 7.02554e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56330e-07\tAbsError: 5.42917e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.49541e-04\tAbsError: 5.25664e+10\n", + " Region: \"zone_1\"\tRelError: 3.67446e-05\tAbsError: 6.09105e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.67272e-05\tAbsError: 4.65423e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73631e-08\tAbsError: 6.04451e-06\n", + " Region: \"zone_3\"\tRelError: 1.12797e-04\tAbsError: 5.25664e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.87853e-06\tAbsError: 1.95402e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.83785e-06\tAbsError: 3.30262e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03063e-04\tAbsError: 4.67701e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73709e-08\tAbsError: 6.04735e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.55312e-01\tAbsError: 2.79981e+12\n", + " Region: \"zone_1\"\tRelError: 5.12467e-02\tAbsError: 1.44746e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.12369e-02\tAbsError: 1.10529e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.84208e-06\tAbsError: 3.42173e-03\n", + " Region: \"zone_3\"\tRelError: 3.04065e-01\tAbsError: 2.79981e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.25490e-01\tAbsError: 1.88988e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.07536e-02\tAbsError: 9.09929e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78116e-02\tAbsError: 1.10529e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.84244e-06\tAbsError: 3.42191e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.62552e+00\tAbsError: 8.26510e+15\n", + " Region: \"zone_1\"\tRelError: 6.97719e+00\tAbsError: 4.09546e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.97719e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.33437e-10\tAbsError: 3.24924e-07\n", + " Region: \"zone_3\"\tRelError: 1.64833e+00\tAbsError: 8.26510e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69652e-01\tAbsError: 4.84454e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69632e-01\tAbsError: 3.42056e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09044e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.33825e-10\tAbsError: 3.25065e-07\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.49580e+00\tAbsError: 9.39285e+13\n", + " Region: \"zone_1\"\tRelError: 4.42602e-01\tAbsError: 3.34520e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.42580e-01\tAbsError: 2.58963e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17396e-05\tAbsError: 7.55574e-03\n", + " Region: \"zone_3\"\tRelError: 1.05320e+00\tAbsError: 9.39285e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.80080e-01\tAbsError: 5.56726e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.63197e-01\tAbsError: 3.82559e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09902e-01\tAbsError: 2.58951e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17396e-05\tAbsError: 7.55574e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.20550e-04\tAbsError: 4.84741e+10\n", + " Region: \"zone_1\"\tRelError: 3.13594e-04\tAbsError: 5.43528e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.13579e-04\tAbsError: 4.52935e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54842e-08\tAbsError: 5.38998e-06\n", + " Region: \"zone_3\"\tRelError: 1.06955e-04\tAbsError: 4.84741e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.96786e-06\tAbsError: 1.76724e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.93306e-06\tAbsError: 3.08016e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.90390e-05\tAbsError: 4.53361e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54915e-08\tAbsError: 5.39262e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.34625e-05\tAbsError: 4.93094e+09\n", + " Region: \"zone_1\"\tRelError: 6.39679e-06\tAbsError: 2.70523e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.38901e-06\tAbsError: 2.92935e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78057e-09\tAbsError: 2.70230e-06\n", + " Region: \"zone_3\"\tRelError: 1.70657e-05\tAbsError: 4.93094e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.08421e-07\tAbsError: 3.64070e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.02783e-07\tAbsError: 1.29024e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62467e-05\tAbsError: 3.07637e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78097e-09\tAbsError: 2.70247e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:28\u001b[0m.\u001b[1;36m663\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:28\u001b[0m.\u001b[1;36m663\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.08284e-01\tAbsError: 2.80262e+12\n", + " Region: \"zone_1\"\tRelError: 3.07855e-02\tAbsError: 2.71657e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.07777e-02\tAbsError: 1.59621e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.81732e-06\tAbsError: 2.71497e-03\n", + " Region: \"zone_3\"\tRelError: 7.74984e-02\tAbsError: 2.80262e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.89088e-02\tAbsError: 1.70510e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.75146e-04\tAbsError: 1.09751e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.40665e-03\tAbsError: 1.68287e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.81732e-06\tAbsError: 2.71497e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.56210e+00\tAbsError: 2.88655e+14\n", + " Region: \"zone_1\"\tRelError: 1.01850e-01\tAbsError: 8.11752e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01705e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45044e-04\tAbsError: 5.04116e-02\n", + " Region: \"zone_3\"\tRelError: 1.46025e+00\tAbsError: 2.88655e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39145e-01\tAbsError: 2.10222e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.31918e-01\tAbsError: 7.84329e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.90395e-02\tAbsError: 3.07640e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45044e-04\tAbsError: 5.04116e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.83522e-01\tAbsError: 3.54933e+13\n", + " Region: \"zone_1\"\tRelError: 2.33507e-01\tAbsError: 1.43725e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.33499e-01\tAbsError: 1.17193e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.63430e-06\tAbsError: 2.65326e-03\n", + " Region: \"zone_3\"\tRelError: 3.50016e-01\tAbsError: 3.54933e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.34133e-01\tAbsError: 1.71908e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.49655e-02\tAbsError: 1.83026e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.09091e-02\tAbsError: 1.17193e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.63720e-06\tAbsError: 2.65431e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.44773e-05\tAbsError: 4.32661e+09\n", + " Region: \"zone_1\"\tRelError: 4.86330e-05\tAbsError: 2.50407e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.86258e-05\tAbsError: 2.65675e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.20296e-09\tAbsError: 2.50141e-06\n", + " Region: \"zone_3\"\tRelError: 1.58443e-05\tAbsError: 4.32661e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.09737e-07\tAbsError: 3.25544e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.04907e-07\tAbsError: 1.07118e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52224e-05\tAbsError: 2.78624e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.20356e-09\tAbsError: 2.50165e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:29\u001b[0m.\u001b[1;36m772\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:29\u001b[0m.\u001b[1;36m772\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.4214285714285714\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 9.54016e+00\tAbsError: 8.28773e+15\n", + " Region: \"zone_1\"\tRelError: 7.90066e+00\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.90066e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.70878e-10\tAbsError: 1.98740e-07\n", + " Region: \"zone_3\"\tRelError: 1.63951e+00\tAbsError: 8.28773e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69626e-01\tAbsError: 4.72857e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69607e-01\tAbsError: 3.55916e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00272e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.71142e-10\tAbsError: 1.98836e-07\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.36717e-03\tAbsError: 1.33167e+12\n", + " Region: \"zone_1\"\tRelError: 4.20849e-03\tAbsError: 1.26692e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.20813e-03\tAbsError: 1.87616e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.58541e-07\tAbsError: 1.24816e-04\n", + " Region: \"zone_3\"\tRelError: 2.15868e-03\tAbsError: 1.33167e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.71347e-04\tAbsError: 3.63972e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.71719e-04\tAbsError: 9.67699e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81526e-03\tAbsError: 1.88004e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.58699e-07\tAbsError: 1.24874e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.02466e+00\tAbsError: 6.04267e+13\n", + " Region: \"zone_1\"\tRelError: 7.18592e-02\tAbsError: 3.22577e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.18409e-02\tAbsError: 2.58878e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83272e-05\tAbsError: 6.36990e-03\n", + " Region: \"zone_3\"\tRelError: 9.52804e-01\tAbsError: 6.04267e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40508e-01\tAbsError: 3.80417e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.10167e-01\tAbsError: 2.23851e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02110e-01\tAbsError: 2.58991e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83272e-05\tAbsError: 6.36990e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.10471e-01\tAbsError: 5.30987e+12\n", + " Region: \"zone_1\"\tRelError: 2.72318e-02\tAbsError: 1.77544e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.72268e-02\tAbsError: 3.65311e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.00788e-06\tAbsError: 1.73891e-03\n", + " Region: \"zone_3\"\tRelError: 8.32389e-02\tAbsError: 5.30987e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.27195e-02\tAbsError: 2.71759e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.48665e-03\tAbsError: 2.59228e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.02772e-03\tAbsError: 4.07396e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.00788e-06\tAbsError: 1.73891e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.28164e+01\tAbsError: 8.85147e+15\n", + " Region: \"zone_1\"\tRelError: 3.11365e+01\tAbsError: 4.23837e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.11365e+01\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.91236e-10\tAbsError: 1.70998e-07\n", + " Region: \"zone_3\"\tRelError: 1.67985e+00\tAbsError: 8.85147e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81658e-01\tAbsError: 5.20181e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.81638e-01\tAbsError: 3.64966e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16552e-01\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.91480e-10\tAbsError: 1.71086e-07\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.57084e+00\tAbsError: 2.89575e+14\n", + " Region: \"zone_1\"\tRelError: 1.26543e-01\tAbsError: 8.72430e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26381e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62480e-04\tAbsError: 5.64794e-02\n", + " Region: \"zone_3\"\tRelError: 1.44430e+00\tAbsError: 2.89575e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37983e-01\tAbsError: 1.66847e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32917e-01\tAbsError: 1.22728e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.32359e-02\tAbsError: 3.07641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62480e-04\tAbsError: 5.64794e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.47046e-03\tAbsError: 1.03678e+11\n", + " Region: \"zone_1\"\tRelError: 1.12698e-03\tAbsError: 7.93760e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12675e-03\tAbsError: 5.92781e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28365e-07\tAbsError: 7.93168e-05\n", + " Region: \"zone_3\"\tRelError: 3.43475e-04\tAbsError: 1.03678e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.28615e-06\tAbsError: 7.51228e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.20842e-06\tAbsError: 2.85551e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.26752e-04\tAbsError: 6.23260e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28457e-07\tAbsError: 7.93466e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.07050e-01\tAbsError: 1.83634e+13\n", + " Region: \"zone_1\"\tRelError: 2.24108e-02\tAbsError: 1.12606e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24048e-02\tAbsError: 9.16557e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.02744e-06\tAbsError: 2.09499e-03\n", + " Region: \"zone_3\"\tRelError: 2.84640e-01\tAbsError: 1.83634e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.09245e-01\tAbsError: 8.86934e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.28005e-02\tAbsError: 9.49405e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25878e-02\tAbsError: 9.16561e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.02994e-06\tAbsError: 2.09586e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.64532e-03\tAbsError: 8.16897e+11\n", + " Region: \"zone_1\"\tRelError: 7.82382e-04\tAbsError: 1.31169e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.82008e-04\tAbsError: 1.21129e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.73904e-07\tAbsError: 1.29958e-04\n", + " Region: \"zone_3\"\tRelError: 8.62936e-04\tAbsError: 8.16897e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19497e-04\tAbsError: 1.88712e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83220e-05\tAbsError: 6.28185e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.64743e-04\tAbsError: 1.21360e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.73904e-07\tAbsError: 1.29958e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.74151e+00\tAbsError: 3.58703e+14\n", + " Region: \"zone_1\"\tRelError: 1.23207e+00\tAbsError: 8.53073e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23192e+00\tAbsError: 3.24496e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52087e-04\tAbsError: 5.28578e-02\n", + " Region: \"zone_3\"\tRelError: 1.50944e+00\tAbsError: 3.58703e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.60563e-01\tAbsError: 2.60371e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.54059e-01\tAbsError: 9.83320e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.46637e-02\tAbsError: 3.24500e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52087e-04\tAbsError: 5.28578e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.08933e+00\tAbsError: 3.08258e+13\n", + " Region: \"zone_1\"\tRelError: 1.39766e-01\tAbsError: 3.14532e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39750e-01\tAbsError: 2.58726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60540e-05\tAbsError: 5.58058e-03\n", + " Region: \"zone_3\"\tRelError: 9.49568e-01\tAbsError: 3.08258e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40223e-01\tAbsError: 2.27975e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.01508e-01\tAbsError: 8.02831e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07820e-01\tAbsError: 2.58966e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60540e-05\tAbsError: 5.58058e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 7.32841e-04\tAbsError: 7.32581e+10\n", + " Region: \"zone_1\"\tRelError: 5.53070e-04\tAbsError: 3.54075e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.53060e-04\tAbsError: 6.27391e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.99046e-09\tAbsError: 3.47801e-06\n", + " Region: \"zone_3\"\tRelError: 1.79771e-04\tAbsError: 7.32581e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.77544e-06\tAbsError: 2.98226e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.72018e-06\tAbsError: 4.34355e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66266e-04\tAbsError: 6.30335e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.99552e-09\tAbsError: 3.47985e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.39650e-02\tAbsError: 2.30731e+12\n", + " Region: \"zone_1\"\tRelError: 9.33244e-04\tAbsError: 2.05118e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.27371e-04\tAbsError: 1.17101e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87337e-06\tAbsError: 2.03947e-03\n", + " Region: \"zone_3\"\tRelError: 6.30318e-02\tAbsError: 2.30731e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.63237e-02\tAbsError: 1.57438e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.61914e-04\tAbsError: 7.32926e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.34034e-03\tAbsError: 1.22701e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87337e-06\tAbsError: 2.03947e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.94127e-04\tAbsError: 1.13091e+11\n", + " Region: \"zone_1\"\tRelError: 5.03283e-05\tAbsError: 4.43145e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.02009e-05\tAbsError: 7.27026e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27403e-07\tAbsError: 4.42417e-05\n", + " Region: \"zone_3\"\tRelError: 4.43799e-04\tAbsError: 1.13091e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.49594e-06\tAbsError: 7.71052e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.42465e-06\tAbsError: 3.59861e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.28751e-04\tAbsError: 7.59369e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27403e-07\tAbsError: 4.42417e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.31343e+00\tAbsError: 8.70893e+13\n", + " Region: \"zone_1\"\tRelError: 2.74195e-01\tAbsError: 3.32768e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74174e-01\tAbsError: 2.58913e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.12496e-05\tAbsError: 7.38544e-03\n", + " Region: \"zone_3\"\tRelError: 1.03923e+00\tAbsError: 8.70893e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.74714e-01\tAbsError: 5.16570e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.55644e-01\tAbsError: 3.54323e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08852e-01\tAbsError: 2.58666e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.12496e-05\tAbsError: 7.38544e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.94758e-01\tAbsError: 4.98642e+12\n", + " Region: \"zone_1\"\tRelError: 2.19383e-02\tAbsError: 1.22221e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19295e-02\tAbsError: 9.16564e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.79291e-06\tAbsError: 3.05651e-03\n", + " Region: \"zone_3\"\tRelError: 2.72820e-01\tAbsError: 4.98642e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12699e-01\tAbsError: 2.77867e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.23181e-02\tAbsError: 2.20775e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77940e-02\tAbsError: 9.16568e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.79389e-06\tAbsError: 3.05683e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.29111e-05\tAbsError: 2.48408e+09\n", + " Region: \"zone_1\"\tRelError: 1.67401e-05\tAbsError: 4.18088e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67281e-05\tAbsError: 1.39314e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20220e-08\tAbsError: 4.17948e-06\n", + " Region: \"zone_3\"\tRelError: 6.17105e-06\tAbsError: 2.48408e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.28362e-07\tAbsError: 2.18835e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.02485e-07\tAbsError: 2.95729e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 5.72818e-06\tAbsError: 1.45679e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20230e-08\tAbsError: 4.17988e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:34\u001b[0m.\u001b[1;36m739\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.3125\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.79721e-03\tAbsError: 9.76589e+11\n", + " Region: \"zone_1\"\tRelError: 1.82738e-04\tAbsError: 8.39323e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82502e-04\tAbsError: 1.48235e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36874e-07\tAbsError: 8.24499e-05\n", + " Region: \"zone_3\"\tRelError: 1.61447e-03\tAbsError: 9.76589e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10820e-04\tAbsError: 2.51654e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02342e-04\tAbsError: 7.24935e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40107e-03\tAbsError: 1.48793e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36983e-07\tAbsError: 8.24891e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 8.73659e-05\tAbsError: 3.83017e+10\n", + " Region: \"zone_1\"\tRelError: 1.09448e-05\tAbsError: 6.06568e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09275e-05\tAbsError: 3.59235e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73237e-08\tAbsError: 6.02976e-06\n", + " Region: \"zone_3\"\tRelError: 7.64211e-05\tAbsError: 3.83017e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.72621e-06\tAbsError: 1.27553e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.70260e-06\tAbsError: 2.55464e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.09750e-05\tAbsError: 3.59448e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73309e-08\tAbsError: 6.03238e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:35\u001b[0m.\u001b[1;36m159\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:35\u001b[0m.\u001b[1;36m159\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5333333333333333\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.44912e-01\tAbsError: 3.23386e+13\n", + " Region: \"zone_1\"\tRelError: 1.07085e-01\tAbsError: 1.39233e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07077e-01\tAbsError: 1.13362e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.44390e-06\tAbsError: 2.58710e-03\n", + " Region: \"zone_3\"\tRelError: 3.37827e-01\tAbsError: 3.23386e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.28282e-01\tAbsError: 1.57182e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.99266e-02\tAbsError: 1.66204e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96108e-02\tAbsError: 1.13362e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.44711e-06\tAbsError: 2.58826e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.73338e-02\tAbsError: 3.09182e+12\n", + " Region: \"zone_1\"\tRelError: 1.11598e-02\tAbsError: 1.65988e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11551e-02\tAbsError: 1.42279e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73882e-06\tAbsError: 1.64565e-03\n", + " Region: \"zone_3\"\tRelError: 6.61739e-02\tAbsError: 3.09182e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.71921e-02\tAbsError: 1.98622e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.49402e-04\tAbsError: 1.10560e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.42774e-03\tAbsError: 1.50865e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73882e-06\tAbsError: 1.64565e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.68582e-04\tAbsError: 6.39514e+10\n", + " Region: \"zone_1\"\tRelError: 3.10151e-05\tAbsError: 5.94800e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.08440e-05\tAbsError: 4.08298e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71164e-07\tAbsError: 5.94392e-05\n", + " Region: \"zone_3\"\tRelError: 2.37567e-04\tAbsError: 6.39514e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16150e-06\tAbsError: 5.01904e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.80228e-06\tAbsError: 1.37610e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29432e-04\tAbsError: 4.25523e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71229e-07\tAbsError: 5.94601e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.18878e+03\tAbsError: 8.80418e+15\n", + " Region: \"zone_1\"\tRelError: 1.18711e+03\tAbsError: 4.22092e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18711e+03\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.05757e-10\tAbsError: 1.41181e-07\n", + " Region: \"zone_3\"\tRelError: 1.66432e+00\tAbsError: 8.80418e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80202e-01\tAbsError: 5.03339e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.80184e-01\tAbsError: 3.77079e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03936e-01\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.05935e-10\tAbsError: 1.41242e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 9.89628e+00\tAbsError: 8.91444e+15\n", + " Region: \"zone_1\"\tRelError: 8.18490e+00\tAbsError: 4.26161e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.18490e+00\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.46480e-09\tAbsError: 1.89769e-06\n", + " Region: \"zone_3\"\tRelError: 1.71138e+00\tAbsError: 8.91444e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83550e-01\tAbsError: 5.20673e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83503e-01\tAbsError: 3.70771e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44328e-01\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.46563e-09\tAbsError: 1.89793e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.32808e-02\tAbsError: 4.75699e+12\n", + " Region: \"zone_1\"\tRelError: 1.32874e-02\tAbsError: 1.76357e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32824e-02\tAbsError: 3.29582e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.98398e-06\tAbsError: 1.73061e-03\n", + " Region: \"zone_3\"\tRelError: 7.99934e-02\tAbsError: 4.75699e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.00834e-02\tAbsError: 2.45657e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.06171e-03\tAbsError: 2.30042e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.84329e-03\tAbsError: 3.64116e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.98398e-06\tAbsError: 1.73061e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.35940e-03\tAbsError: 7.91644e+11\n", + " Region: \"zone_1\"\tRelError: 6.17001e-04\tAbsError: 1.42075e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.16596e-04\tAbsError: 1.18665e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.04748e-07\tAbsError: 1.40888e-04\n", + " Region: \"zone_3\"\tRelError: 7.42401e-04\tAbsError: 7.91644e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00211e-04\tAbsError: 1.88344e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.60094e-05\tAbsError: 6.03301e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.55776e-04\tAbsError: 1.18974e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.04912e-07\tAbsError: 1.40947e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.61549e-04\tAbsError: 5.47840e+10\n", + " Region: \"zone_1\"\tRelError: 1.81900e-05\tAbsError: 1.93945e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81846e-05\tAbsError: 4.89694e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43105e-09\tAbsError: 1.89048e-06\n", + " Region: \"zone_3\"\tRelError: 1.43359e-04\tAbsError: 5.47840e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.04114e-06\tAbsError: 2.20323e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.00674e-06\tAbsError: 3.27517e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35306e-04\tAbsError: 4.90033e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43421e-09\tAbsError: 1.89162e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.37089e+00\tAbsError: 3.26099e+14\n", + " Region: \"zone_1\"\tRelError: 8.84636e-01\tAbsError: 9.19122e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.84464e-01\tAbsError: 3.22435e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71658e-04\tAbsError: 5.96687e-02\n", + " Region: \"zone_3\"\tRelError: 1.48626e+00\tAbsError: 3.26099e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57141e-01\tAbsError: 1.90943e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.52007e-01\tAbsError: 1.35156e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.69369e-02\tAbsError: 3.22440e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71658e-04\tAbsError: 5.96687e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.74553e+00\tAbsError: 1.13341e+15\n", + " Region: \"zone_1\"\tRelError: 2.12627e-01\tAbsError: 7.46675e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12506e-01\tAbsError: 3.27222e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20702e-04\tAbsError: 4.19453e-02\n", + " Region: \"zone_3\"\tRelError: 1.53291e+00\tAbsError: 1.13341e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.65557e-01\tAbsError: 6.56816e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.50766e-01\tAbsError: 4.76590e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16464e-01\tAbsError: 3.27224e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20702e-04\tAbsError: 4.19453e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.30006e-03\tAbsError: 8.16150e+11\n", + " Region: \"zone_1\"\tRelError: 3.99821e-04\tAbsError: 1.25932e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.99463e-04\tAbsError: 1.21699e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.58320e-07\tAbsError: 1.24715e-04\n", + " Region: \"zone_3\"\tRelError: 9.00235e-04\tAbsError: 8.16150e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12573e-04\tAbsError: 1.90859e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.90086e-05\tAbsError: 6.25291e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.08294e-04\tAbsError: 1.22015e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.58458e-07\tAbsError: 1.24765e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.02141e-03\tAbsError: 1.23957e+11\n", + " Region: \"zone_1\"\tRelError: 5.52143e-04\tAbsError: 4.11028e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.52024e-04\tAbsError: 7.43261e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18138e-07\tAbsError: 4.10285e-05\n", + " Region: \"zone_3\"\tRelError: 4.69263e-04\tAbsError: 1.23957e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.58109e-06\tAbsError: 8.33431e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.49437e-06\tAbsError: 4.06143e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.50070e-04\tAbsError: 7.83274e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18138e-07\tAbsError: 4.10285e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.55715e-06\tAbsError: 1.55371e+09\n", + " Region: \"zone_1\"\tRelError: 2.75443e-07\tAbsError: 3.15707e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66361e-07\tAbsError: 7.16801e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.08162e-09\tAbsError: 3.15635e-06\n", + " Region: \"zone_3\"\tRelError: 2.28171e-06\tAbsError: 1.55371e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01860e-07\tAbsError: 1.23171e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.92720e-08\tAbsError: 3.21996e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.10150e-06\tAbsError: 7.37244e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.08225e-09\tAbsError: 3.15662e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.69411e+00\tAbsError: 3.60477e+13\n", + " Region: \"zone_1\"\tRelError: 6.67424e-01\tAbsError: 3.21034e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.67406e-01\tAbsError: 2.58975e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78531e-05\tAbsError: 6.20590e-03\n", + " Region: \"zone_3\"\tRelError: 1.02669e+00\tAbsError: 3.60477e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.69875e-01\tAbsError: 2.58324e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.41824e-01\tAbsError: 1.02153e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14971e-01\tAbsError: 2.58997e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78531e-05\tAbsError: 6.20590e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:39\u001b[0m.\u001b[1;36m223\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.5\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.14650e+00\tAbsError: 6.35932e+14\n", + " Region: \"zone_1\"\tRelError: 1.10371e-01\tAbsError: 3.43387e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10347e-01\tAbsError: 2.58939e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.43003e-05\tAbsError: 8.44480e-03\n", + " Region: \"zone_3\"\tRelError: 1.03613e+00\tAbsError: 6.35932e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.81867e-01\tAbsError: 2.98873e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.46371e-01\tAbsError: 3.37059e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07870e-01\tAbsError: 2.58834e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.43003e-05\tAbsError: 8.44480e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.68812e-04\tAbsError: 1.08478e+11\n", + " Region: \"zone_1\"\tRelError: 4.45604e-05\tAbsError: 4.47049e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44318e-05\tAbsError: 6.94824e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28536e-07\tAbsError: 4.46354e-05\n", + " Region: \"zone_3\"\tRelError: 4.24252e-04\tAbsError: 1.08478e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.17207e-06\tAbsError: 7.43642e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.10313e-06\tAbsError: 3.41139e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.09848e-04\tAbsError: 7.25698e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28536e-07\tAbsError: 4.46354e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.30911e-04\tAbsError: 3.51442e+10\n", + " Region: \"zone_1\"\tRelError: 6.81885e-05\tAbsError: 6.92614e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.81687e-05\tAbsError: 3.42472e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.97989e-08\tAbsError: 6.89189e-06\n", + " Region: \"zone_3\"\tRelError: 6.27220e-05\tAbsError: 3.51442e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91737e-06\tAbsError: 1.11617e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.89123e-06\tAbsError: 2.39825e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.68936e-05\tAbsError: 3.42673e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98072e-08\tAbsError: 6.89488e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.28405e-01\tAbsError: 5.49587e+12\n", + " Region: \"zone_1\"\tRelError: 1.19521e-01\tAbsError: 1.39329e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19513e-01\tAbsError: 1.10528e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.28535e-06\tAbsError: 2.88012e-03\n", + " Region: \"zone_3\"\tRelError: 3.08884e-01\tAbsError: 5.49587e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.25115e-01\tAbsError: 2.79766e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.16660e-02\tAbsError: 2.69821e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20941e-02\tAbsError: 1.10529e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.28980e-06\tAbsError: 2.88167e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.44671e+02\tAbsError: 8.23352e+15\n", + " Region: \"zone_1\"\tRelError: 5.43003e+02\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.43003e+02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.11266e-10\tAbsError: 1.43080e-07\n", + " Region: \"zone_3\"\tRelError: 1.66763e+00\tAbsError: 8.23352e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.84587e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69628e-01\tAbsError: 3.38765e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28340e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.11422e-10\tAbsError: 1.43134e-07\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.26564e-01\tAbsError: 2.88431e+14\n", + " Region: \"zone_1\"\tRelError: 3.85183e-02\tAbsError: 1.72171e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85025e-02\tAbsError: 1.17193e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58221e-05\tAbsError: 5.49778e-03\n", + " Region: \"zone_3\"\tRelError: 3.88046e-01\tAbsError: 2.88431e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.32962e-01\tAbsError: 1.33696e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.15669e-01\tAbsError: 1.54734e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.93993e-02\tAbsError: 1.17193e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58309e-05\tAbsError: 5.50105e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 8.79838e-05\tAbsError: 3.88886e+10\n", + " Region: \"zone_1\"\tRelError: 7.96260e-06\tAbsError: 5.71318e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.94629e-06\tAbsError: 3.63581e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63097e-08\tAbsError: 5.67682e-06\n", + " Region: \"zone_3\"\tRelError: 8.00212e-05\tAbsError: 3.88886e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.78253e-06\tAbsError: 1.32297e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.75836e-06\tAbsError: 2.56589e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.44640e-05\tAbsError: 3.63668e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63165e-08\tAbsError: 5.67931e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:41\u001b[0m.\u001b[1;36m291\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:41\u001b[0m.\u001b[1;36m291\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5285714285714286\u001b[0m \n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.91977e-05\tAbsError: 5.89585e+09\n", + " Region: \"zone_1\"\tRelError: 2.66095e-05\tAbsError: 1.68142e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66047e-05\tAbsError: 3.56714e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.83123e-09\tAbsError: 1.67785e-06\n", + " Region: \"zone_3\"\tRelError: 2.25882e-05\tAbsError: 5.89585e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.48785e-07\tAbsError: 4.10022e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.43251e-07\tAbsError: 1.79564e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16913e-05\tAbsError: 3.75397e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.83123e-09\tAbsError: 1.67785e-06\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:41\u001b[0m.\u001b[1;36m412\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.4\u001b[0m \n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "number of equations 31816\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.25936e-01\tAbsError: 2.39001e+12\n", + " Region: \"zone_1\"\tRelError: 4.86940e-02\tAbsError: 2.12649e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.86879e-02\tAbsError: 3.66551e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.11296e-06\tAbsError: 2.12282e-03\n", + " Region: \"zone_3\"\tRelError: 7.72419e-02\tAbsError: 2.39001e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.89638e-02\tAbsError: 1.60154e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.54757e-04\tAbsError: 7.88466e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.01716e-03\tAbsError: 3.86019e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.11296e-06\tAbsError: 2.12282e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.93663e+00\tAbsError: 6.37428e+14\n", + " Region: \"zone_1\"\tRelError: 3.46019e+00\tAbsError: 7.21476e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.46007e+00\tAbsError: 3.07635e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", + " Region: \"zone_3\"\tRelError: 1.47644e+00\tAbsError: 6.37428e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40577e-01\tAbsError: 3.72575e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.27797e-01\tAbsError: 2.64853e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07947e-01\tAbsError: 3.07638e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.68261e-02\tAbsError: 5.43663e+13\n", + " Region: \"zone_1\"\tRelError: 9.06245e-03\tAbsError: 5.74468e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.04655e-03\tAbsError: 2.21279e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59082e-05\tAbsError: 5.52340e-03\n", + " Region: \"zone_3\"\tRelError: 8.77637e-02\tAbsError: 5.43663e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.72497e-02\tAbsError: 3.00106e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.95974e-03\tAbsError: 2.43557e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05383e-02\tAbsError: 2.34603e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59082e-05\tAbsError: 5.52340e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.71321e+00\tAbsError: 8.81673e+15\n", + " Region: \"zone_1\"\tRelError: 6.00794e+00\tAbsError: 4.23854e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.00794e+00\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.60595e-09\tAbsError: 1.94672e-06\n", + " Region: \"zone_3\"\tRelError: 1.70527e+00\tAbsError: 8.81673e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81670e-01\tAbsError: 5.15698e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.81625e-01\tAbsError: 3.65975e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41972e-01\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.60753e-09\tAbsError: 1.94721e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.62552e+00\tAbsError: 8.26510e+15\n", + " Region: \"zone_1\"\tRelError: 6.97719e+00\tAbsError: 4.09546e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.97719e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.33437e-10\tAbsError: 3.24924e-07\n", + " Region: \"zone_3\"\tRelError: 1.64833e+00\tAbsError: 8.26510e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69652e-01\tAbsError: 4.84454e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69632e-01\tAbsError: 3.42056e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09044e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.33825e-10\tAbsError: 3.25065e-07\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.80926e-03\tAbsError: 1.04555e+12\n", + " Region: \"zone_1\"\tRelError: 7.27674e-03\tAbsError: 1.19488e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.27640e-03\tAbsError: 1.54619e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.38826e-07\tAbsError: 1.17942e-04\n", + " Region: \"zone_3\"\tRelError: 1.53252e-03\tAbsError: 1.04555e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23053e-04\tAbsError: 2.74165e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.18573e-04\tAbsError: 7.71385e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29055e-03\tAbsError: 1.55151e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.38967e-07\tAbsError: 1.17994e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.95431e+00\tAbsError: 2.96317e+14\n", + " Region: \"zone_1\"\tRelError: 2.00902e+00\tAbsError: 3.34445e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.00900e+00\tAbsError: 2.58782e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", + " Region: \"zone_3\"\tRelError: 9.45295e-01\tAbsError: 2.96317e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42034e-01\tAbsError: 1.59420e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.10683e-01\tAbsError: 1.36896e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.25558e-02\tAbsError: 2.58843e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.75776e-03\tAbsError: 2.76446e+12\n", + " Region: \"zone_1\"\tRelError: 8.22210e-04\tAbsError: 1.95288e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.21657e-04\tAbsError: 3.02703e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.53255e-07\tAbsError: 1.92261e-04\n", + " Region: \"zone_3\"\tRelError: 6.93555e-03\tAbsError: 2.76446e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.63616e-04\tAbsError: 9.74964e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.36190e-04\tAbsError: 1.78949e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.33519e-03\tAbsError: 3.03888e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.53255e-07\tAbsError: 1.92261e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.75729e+00\tAbsError: 1.04697e+15\n", + " Region: \"zone_1\"\tRelError: 2.31703e-01\tAbsError: 7.43403e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31582e-01\tAbsError: 3.24495e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20545e-04\tAbsError: 4.18908e-02\n", + " Region: \"zone_3\"\tRelError: 1.52558e+00\tAbsError: 1.04697e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.62218e-01\tAbsError: 6.08738e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.47724e-01\tAbsError: 4.38234e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15521e-01\tAbsError: 3.24497e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20545e-04\tAbsError: 4.18908e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.56210e+00\tAbsError: 2.88655e+14\n", + " Region: \"zone_1\"\tRelError: 1.01850e-01\tAbsError: 8.11752e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01705e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45044e-04\tAbsError: 5.04116e-02\n", + " Region: \"zone_3\"\tRelError: 1.46025e+00\tAbsError: 2.88655e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39145e-01\tAbsError: 2.10222e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.31918e-01\tAbsError: 7.84329e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.90395e-02\tAbsError: 3.07640e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45044e-04\tAbsError: 5.04116e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.38465e-03\tAbsError: 9.89941e+10\n", + " Region: \"zone_1\"\tRelError: 2.02526e-03\tAbsError: 6.04134e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02509e-03\tAbsError: 5.87660e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73788e-07\tAbsError: 6.03547e-05\n", + " Region: \"zone_3\"\tRelError: 3.59392e-04\tAbsError: 9.89941e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.10601e-06\tAbsError: 7.06670e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.03564e-06\tAbsError: 2.83270e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.45076e-04\tAbsError: 6.17837e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73818e-07\tAbsError: 6.03636e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.90232e-01\tAbsError: 1.27257e+14\n", + " Region: \"zone_1\"\tRelError: 2.88169e-01\tAbsError: 1.34324e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88157e-01\tAbsError: 9.16559e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22923e-05\tAbsError: 4.26682e-03\n", + " Region: \"zone_3\"\tRelError: 3.02062e-01\tAbsError: 1.27257e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98145e-01\tAbsError: 5.59682e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.53461e-02\tAbsError: 7.12890e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.85587e-02\tAbsError: 9.16563e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22942e-05\tAbsError: 4.26755e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.03450e-04\tAbsError: 1.30819e+11\n", + " Region: \"zone_1\"\tRelError: 4.77036e-05\tAbsError: 1.75374e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.71992e-05\tAbsError: 8.81101e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.04420e-07\tAbsError: 1.75286e-04\n", + " Region: \"zone_3\"\tRelError: 3.55747e-04\tAbsError: 1.30819e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.08527e-06\tAbsError: 9.76850e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.48031e-06\tAbsError: 3.31340e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.38677e-04\tAbsError: 9.20454e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.04420e-07\tAbsError: 1.75286e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.15658e+00\tAbsError: 5.66055e+14\n", + " Region: \"zone_1\"\tRelError: 1.31850e-01\tAbsError: 3.41253e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31826e-01\tAbsError: 2.58364e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.38517e-05\tAbsError: 8.28893e-03\n", + " Region: \"zone_3\"\tRelError: 1.02473e+00\tAbsError: 5.66055e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.76444e-01\tAbsError: 2.68305e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.42329e-01\tAbsError: 2.97750e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05937e-01\tAbsError: 2.58885e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.38517e-05\tAbsError: 8.28893e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.02466e+00\tAbsError: 6.04267e+13\n", + " Region: \"zone_1\"\tRelError: 7.18592e-02\tAbsError: 3.22577e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.18409e-02\tAbsError: 2.58878e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83272e-05\tAbsError: 6.36990e-03\n", + " Region: \"zone_3\"\tRelError: 9.52804e-01\tAbsError: 6.04267e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40508e-01\tAbsError: 3.80417e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.10167e-01\tAbsError: 2.23851e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02110e-01\tAbsError: 2.58991e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83272e-05\tAbsError: 6.36990e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 8.44431e-04\tAbsError: 5.49302e+10\n", + " Region: \"zone_1\"\tRelError: 7.13090e-04\tAbsError: 4.21004e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.13078e-04\tAbsError: 5.01862e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19503e-08\tAbsError: 4.15985e-06\n", + " Region: \"zone_3\"\tRelError: 1.31342e-04\tAbsError: 5.49302e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.51186e-06\tAbsError: 2.12338e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.47250e-06\tAbsError: 3.36964e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22345e-04\tAbsError: 5.02300e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19561e-08\tAbsError: 4.16197e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.19343e-04\tAbsError: 1.68979e+11\n", + " Region: \"zone_1\"\tRelError: 7.37376e-05\tAbsError: 3.31699e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.37284e-05\tAbsError: 1.11458e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.21362e-09\tAbsError: 3.20553e-06\n", + " Region: \"zone_3\"\tRelError: 5.45605e-04\tAbsError: 1.68979e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02630e-05\tAbsError: 8.16562e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.01840e-05\tAbsError: 8.73224e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.25149e-04\tAbsError: 1.14194e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.21831e-09\tAbsError: 3.20711e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.81369e-01\tAbsError: 1.65118e+13\n", + " Region: \"zone_1\"\tRelError: 1.13683e-01\tAbsError: 2.48930e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13676e-01\tAbsError: 7.97182e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", + " Region: \"zone_3\"\tRelError: 6.76863e-02\tAbsError: 1.65118e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.50220e-02\tAbsError: 9.05581e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.84537e-03\tAbsError: 7.45604e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.81196e-03\tAbsError: 8.36703e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.10445e-01\tAbsError: 2.57026e+14\n", + " Region: \"zone_1\"\tRelError: 3.68944e-02\tAbsError: 1.67806e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.68788e-02\tAbsError: 1.13361e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56850e-05\tAbsError: 5.44447e-03\n", + " Region: \"zone_3\"\tRelError: 3.73550e-01\tAbsError: 2.57026e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.26469e-01\tAbsError: 1.17749e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09349e-01\tAbsError: 1.39277e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.77163e-02\tAbsError: 1.13362e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56976e-05\tAbsError: 5.44890e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.07050e-01\tAbsError: 1.83634e+13\n", + " Region: \"zone_1\"\tRelError: 2.24108e-02\tAbsError: 1.12606e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24048e-02\tAbsError: 9.16557e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.02744e-06\tAbsError: 2.09499e-03\n", + " Region: \"zone_3\"\tRelError: 2.84640e-01\tAbsError: 1.83634e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.09245e-01\tAbsError: 8.86934e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.28005e-02\tAbsError: 9.49405e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25878e-02\tAbsError: 9.16561e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.02994e-06\tAbsError: 2.09586e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.98804e-05\tAbsError: 3.09962e+09\n", + " Region: \"zone_1\"\tRelError: 5.92720e-05\tAbsError: 2.99292e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.92634e-05\tAbsError: 1.93476e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.60480e-09\tAbsError: 2.99098e-06\n", + " Region: \"zone_3\"\tRelError: 1.06085e-05\tAbsError: 3.09962e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21372e-07\tAbsError: 2.55195e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.06164e-07\tAbsError: 5.47662e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01723e-05\tAbsError: 2.01719e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.60488e-09\tAbsError: 2.99106e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:47\u001b[0m.\u001b[1;36m454\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:47\u001b[0m.\u001b[1;36m454\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.41874999999999996\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.00650e-05\tAbsError: 2.07855e+09\n", + " Region: \"zone_1\"\tRelError: 2.54140e-06\tAbsError: 1.04982e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51119e-06\tAbsError: 2.66080e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.02028e-08\tAbsError: 1.04955e-05\n", + " Region: \"zone_3\"\tRelError: 1.75236e-05\tAbsError: 2.07855e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52303e-07\tAbsError: 3.52420e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.59594e-07\tAbsError: 1.72613e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.71815e-05\tAbsError: 2.70902e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.02126e-08\tAbsError: 1.04992e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.11615e-03\tAbsError: 1.08851e+12\n", + " Region: \"zone_1\"\tRelError: 5.30759e-03\tAbsError: 1.67972e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.30711e-03\tAbsError: 1.45981e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", + " Region: \"zone_3\"\tRelError: 1.80856e-03\tAbsError: 1.08851e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43945e-04\tAbsError: 2.92186e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.94756e-05\tAbsError: 7.96320e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56466e-03\tAbsError: 1.47422e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:47\u001b[0m.\u001b[1;36m958\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:47\u001b[0m.\u001b[1;36m958\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6416666666666667\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.39650e-02\tAbsError: 2.30731e+12\n", + " Region: \"zone_1\"\tRelError: 9.33244e-04\tAbsError: 2.05118e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.27371e-04\tAbsError: 1.17101e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87337e-06\tAbsError: 2.03947e-03\n", + " Region: \"zone_3\"\tRelError: 6.30318e-02\tAbsError: 2.30731e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.63237e-02\tAbsError: 1.57438e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.61914e-04\tAbsError: 7.32926e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.34034e-03\tAbsError: 1.22701e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87337e-06\tAbsError: 2.03947e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.45294e-02\tAbsError: 4.75798e+13\n", + " Region: \"zone_1\"\tRelError: 9.83113e-03\tAbsError: 4.84305e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.81775e-03\tAbsError: 1.96851e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33816e-05\tAbsError: 4.64620e-03\n", + " Region: \"zone_3\"\tRelError: 8.46983e-02\tAbsError: 4.75798e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.50937e-02\tAbsError: 2.64070e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.66534e-03\tAbsError: 2.11728e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09259e-02\tAbsError: 2.08766e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33816e-05\tAbsError: 4.64620e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.87927e+01\tAbsError: 8.77821e+15\n", + " Region: \"zone_1\"\tRelError: 1.71169e+01\tAbsError: 4.22091e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.71169e+01\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79161e-10\tAbsError: 6.23688e-08\n", + " Region: \"zone_3\"\tRelError: 1.67579e+00\tAbsError: 8.77821e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80226e-01\tAbsError: 5.15720e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.80206e-01\tAbsError: 3.62102e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15353e-01\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79280e-10\tAbsError: 6.24114e-08\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.59900e-03\tAbsError: 1.40711e+11\n", + " Region: \"zone_1\"\tRelError: 2.06948e-03\tAbsError: 6.41578e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06929e-03\tAbsError: 9.09489e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84503e-07\tAbsError: 6.40668e-05\n", + " Region: \"zone_3\"\tRelError: 5.29527e-04\tAbsError: 1.40711e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.39801e-06\tAbsError: 9.47438e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.30618e-06\tAbsError: 4.59673e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.12638e-04\tAbsError: 9.48359e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84568e-07\tAbsError: 6.40878e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.54404e+00\tAbsError: 9.19653e+15\n", + " Region: \"zone_1\"\tRelError: 5.78704e+00\tAbsError: 4.26149e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.78704e+00\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.09033e-09\tAbsError: 7.26390e-07\n", + " Region: \"zone_3\"\tRelError: 1.75700e+00\tAbsError: 9.19653e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83468e-01\tAbsError: 4.88666e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83333e-01\tAbsError: 4.30987e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90195e-01\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.09072e-09\tAbsError: 7.26556e-07\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.79721e-03\tAbsError: 9.76589e+11\n", + " Region: \"zone_1\"\tRelError: 1.82738e-04\tAbsError: 8.39323e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82502e-04\tAbsError: 1.48235e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36874e-07\tAbsError: 8.24499e-05\n", + " Region: \"zone_3\"\tRelError: 1.61447e-03\tAbsError: 9.76589e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10820e-04\tAbsError: 2.51654e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02342e-04\tAbsError: 7.24935e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40107e-03\tAbsError: 1.48793e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36983e-07\tAbsError: 8.24891e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.18118e-03\tAbsError: 2.28028e+12\n", + " Region: \"zone_1\"\tRelError: 7.42289e-04\tAbsError: 2.07979e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.41698e-04\tAbsError: 2.57621e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.91069e-07\tAbsError: 2.05403e-04\n", + " Region: \"zone_3\"\tRelError: 5.43889e-03\tAbsError: 2.28028e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.11866e-04\tAbsError: 7.70443e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.97347e-04\tAbsError: 1.50984e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.92909e-03\tAbsError: 2.58602e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.91069e-07\tAbsError: 2.05403e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.95137e+00\tAbsError: 3.48893e+14\n", + " Region: \"zone_1\"\tRelError: 4.47469e-01\tAbsError: 8.48100e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.47317e-01\tAbsError: 3.22435e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51248e-04\tAbsError: 5.25665e-02\n", + " Region: \"zone_3\"\tRelError: 1.50390e+00\tAbsError: 3.48893e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.58073e-01\tAbsError: 2.53777e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.51336e-01\tAbsError: 9.51163e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.43386e-02\tAbsError: 3.22439e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51248e-04\tAbsError: 5.25665e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.84757e-04\tAbsError: 5.79872e+10\n", + " Region: \"zone_1\"\tRelError: 5.39232e-04\tAbsError: 6.69464e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.39213e-04\tAbsError: 4.49143e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91058e-08\tAbsError: 6.64972e-06\n", + " Region: \"zone_3\"\tRelError: 1.45525e-04\tAbsError: 5.79872e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.71562e-06\tAbsError: 2.34463e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.68397e-06\tAbsError: 3.45410e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38106e-04\tAbsError: 4.56915e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91137e-08\tAbsError: 6.65261e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.76152e+00\tAbsError: 6.12661e+15\n", + " Region: \"zone_1\"\tRelError: 2.09395e-01\tAbsError: 7.53205e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09272e-01\tAbsError: 3.27221e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22597e-04\tAbsError: 4.25984e-02\n", + " Region: \"zone_3\"\tRelError: 1.55213e+00\tAbsError: 6.12661e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.63853e-01\tAbsError: 2.91068e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.34999e-01\tAbsError: 3.21593e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53154e-01\tAbsError: 3.27222e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22597e-04\tAbsError: 4.25984e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.68582e-04\tAbsError: 6.39514e+10\n", + " Region: \"zone_1\"\tRelError: 3.10151e-05\tAbsError: 5.94800e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.08440e-05\tAbsError: 4.08298e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71164e-07\tAbsError: 5.94392e-05\n", + " Region: \"zone_3\"\tRelError: 2.37567e-04\tAbsError: 6.39514e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16150e-06\tAbsError: 5.01904e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.80228e-06\tAbsError: 1.37610e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29432e-04\tAbsError: 4.25523e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71229e-07\tAbsError: 5.94601e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 5.42428e-04\tAbsError: 1.49895e+11\n", + " Region: \"zone_1\"\tRelError: 7.43693e-05\tAbsError: 1.42149e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.39602e-05\tAbsError: 9.90020e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.09109e-07\tAbsError: 1.42050e-04\n", + " Region: \"zone_3\"\tRelError: 4.68059e-04\tAbsError: 1.49895e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.53557e-06\tAbsError: 1.05959e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.74851e-06\tAbsError: 4.39358e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.49366e-04\tAbsError: 1.03361e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.09109e-07\tAbsError: 1.42050e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.14013e+00\tAbsError: 8.25371e+13\n", + " Region: \"zone_1\"\tRelError: 1.11172e-01\tAbsError: 3.30262e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11151e-01\tAbsError: 2.57853e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08335e-05\tAbsError: 7.24085e-03\n", + " Region: \"zone_3\"\tRelError: 1.02896e+00\tAbsError: 8.25371e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.70525e-01\tAbsError: 4.90867e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.50397e-01\tAbsError: 3.34505e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08014e-01\tAbsError: 2.58239e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08335e-05\tAbsError: 7.24085e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.02364e-04\tAbsError: 5.62248e+09\n", + " Region: \"zone_1\"\tRelError: 8.15379e-05\tAbsError: 3.03368e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.15291e-05\tAbsError: 3.57289e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.71937e-09\tAbsError: 3.03011e-06\n", + " Region: \"zone_3\"\tRelError: 2.08260e-05\tAbsError: 5.62248e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14319e-07\tAbsError: 4.05602e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.09034e-07\tAbsError: 1.56647e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01939e-05\tAbsError: 3.71851e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.71944e-09\tAbsError: 3.03019e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.19309e+00\tAbsError: 4.43505e+15\n", + " Region: \"zone_1\"\tRelError: 1.28635e-01\tAbsError: 3.41725e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28609e-01\tAbsError: 2.52181e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.57713e-05\tAbsError: 8.95443e-03\n", + " Region: \"zone_3\"\tRelError: 1.06446e+00\tAbsError: 4.43505e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.84044e-01\tAbsError: 2.10617e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.39432e-01\tAbsError: 2.32888e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40955e-01\tAbsError: 2.56263e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.57981e-05\tAbsError: 8.96393e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.61549e-04\tAbsError: 5.47840e+10\n", + " Region: \"zone_1\"\tRelError: 1.81900e-05\tAbsError: 1.93945e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81846e-05\tAbsError: 4.89694e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43105e-09\tAbsError: 1.89048e-06\n", + " Region: \"zone_3\"\tRelError: 1.43359e-04\tAbsError: 5.47840e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.04114e-06\tAbsError: 2.20323e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.00674e-06\tAbsError: 3.27517e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35306e-04\tAbsError: 4.90033e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43421e-09\tAbsError: 1.89162e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.91927e-04\tAbsError: 1.36404e+11\n", + " Region: \"zone_1\"\tRelError: 6.69713e-05\tAbsError: 3.11592e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.69626e-05\tAbsError: 9.20653e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.68788e-09\tAbsError: 3.02386e-06\n", + " Region: \"zone_3\"\tRelError: 4.24956e-04\tAbsError: 1.36404e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.34577e-06\tAbsError: 6.44393e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.27955e-06\tAbsError: 7.19643e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.08322e-04\tAbsError: 9.42720e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.69229e-09\tAbsError: 3.02544e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.75588e-01\tAbsError: 3.01123e+13\n", + " Region: \"zone_1\"\tRelError: 4.71817e-02\tAbsError: 1.36022e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.71744e-02\tAbsError: 1.10528e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.33552e-06\tAbsError: 2.54944e-03\n", + " Region: \"zone_3\"\tRelError: 3.28406e-01\tAbsError: 3.01123e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.23669e-01\tAbsError: 1.46557e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.60685e-02\tAbsError: 1.54566e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.86615e-02\tAbsError: 1.10528e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.33882e-06\tAbsError: 2.55063e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.62672e-05\tAbsError: 3.10481e+09\n", + " Region: \"zone_1\"\tRelError: 3.66806e-05\tAbsError: 2.21724e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 3.66799e-05\tAbsError: 2.06476e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.31104e-10\tAbsError: 2.19659e-07\n", + " Region: \"zone_3\"\tRelError: 9.58660e-06\tAbsError: 3.10481e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88628e-07\tAbsError: 1.51763e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.86687e-07\tAbsError: 1.58718e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.21065e-06\tAbsError: 2.10348e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.31398e-10\tAbsError: 2.19764e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:53\u001b[0m.\u001b[1;36m530\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.6\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.92644e-01\tAbsError: 1.63079e+15\n", + " Region: \"zone_1\"\tRelError: 7.03148e-02\tAbsError: 4.00940e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.02331e-02\tAbsError: 1.17197e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.16694e-05\tAbsError: 2.83743e-02\n", + " Region: \"zone_3\"\tRelError: 4.22329e-01\tAbsError: 1.63079e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.29131e-01\tAbsError: 8.82419e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.44724e-01\tAbsError: 7.48376e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.83927e-02\tAbsError: 1.17198e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.16694e-05\tAbsError: 2.83743e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.55715e-06\tAbsError: 1.55372e+09\n", + " Region: \"zone_1\"\tRelError: 2.75443e-07\tAbsError: 3.15707e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66361e-07\tAbsError: 7.16801e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.08162e-09\tAbsError: 3.15635e-06\n", + " Region: \"zone_3\"\tRelError: 2.28171e-06\tAbsError: 1.55372e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01860e-07\tAbsError: 1.23173e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.92720e-08\tAbsError: 3.21996e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.10150e-06\tAbsError: 7.37244e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.08225e-09\tAbsError: 3.15662e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.79676e-06\tAbsError: 2.40078e+09\n", + " Region: \"zone_1\"\tRelError: 4.23223e-07\tAbsError: 8.23258e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.99535e-07\tAbsError: 1.09967e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36875e-08\tAbsError: 8.23148e-06\n", + " Region: \"zone_3\"\tRelError: 2.37354e-06\tAbsError: 2.40078e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.77442e-07\tAbsError: 2.05901e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.23886e-07\tAbsError: 3.41766e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04852e-06\tAbsError: 1.12122e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36936e-08\tAbsError: 8.23382e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:54\u001b[0m.\u001b[1;36m139\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.5\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:54\u001b[0m.\u001b[1;36m244\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:54\u001b[0m.\u001b[1;36m244\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6357142857142857\u001b[0m \n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "number of equations 31816\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.36867e-02\tAbsError: 4.49639e+12\n", + " Region: \"zone_1\"\tRelError: 6.00906e-03\tAbsError: 1.73862e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.00414e-03\tAbsError: 3.08269e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.91824e-06\tAbsError: 1.70779e-03\n", + " Region: \"zone_3\"\tRelError: 7.76776e-02\tAbsError: 4.49639e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.81380e-02\tAbsError: 2.39823e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.79324e-03\tAbsError: 2.09816e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.74142e-03\tAbsError: 3.38601e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.91824e-06\tAbsError: 1.70779e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.29483e-01\tAbsError: 3.05068e+14\n", + " Region: \"zone_1\"\tRelError: 8.16545e-03\tAbsError: 2.91905e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.08201e-03\tAbsError: 2.25848e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.34378e-05\tAbsError: 2.89646e-02\n", + " Region: \"zone_3\"\tRelError: 1.21317e-01\tAbsError: 3.05068e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.58578e-02\tAbsError: 1.79486e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.20322e-02\tAbsError: 1.25582e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.33440e-02\tAbsError: 2.36235e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.34378e-05\tAbsError: 2.89646e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.94073e+01\tAbsError: 8.32958e+15\n", + " Region: \"zone_1\"\tRelError: 1.77016e+01\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77016e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.06764e-10\tAbsError: 1.76108e-07\n", + " Region: \"zone_3\"\tRelError: 1.70569e+00\tAbsError: 8.32958e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69637e-01\tAbsError: 4.59097e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69532e-01\tAbsError: 3.73860e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66519e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.06930e-10\tAbsError: 1.76171e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.44671e+02\tAbsError: 8.23352e+15\n", + " Region: \"zone_1\"\tRelError: 5.43003e+02\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.43003e+02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.11267e-10\tAbsError: 1.43080e-07\n", + " Region: \"zone_3\"\tRelError: 1.66763e+00\tAbsError: 8.23352e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.84587e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69628e-01\tAbsError: 3.38765e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28340e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.11422e-10\tAbsError: 1.43134e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.13690e+00\tAbsError: 9.06564e+15\n", + " Region: \"zone_1\"\tRelError: 4.38729e+00\tAbsError: 4.23839e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.38729e+00\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10788e-09\tAbsError: 3.85000e-07\n", + " Region: \"zone_3\"\tRelError: 1.74961e+00\tAbsError: 9.06564e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81598e-01\tAbsError: 4.84230e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.81467e-01\tAbsError: 4.22333e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86547e-01\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10788e-09\tAbsError: 3.85000e-07\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.07855e-03\tAbsError: 8.06829e+11\n", + " Region: \"zone_1\"\tRelError: 1.84429e-04\tAbsError: 1.23665e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84077e-04\tAbsError: 1.20782e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.51834e-07\tAbsError: 1.22457e-04\n", + " Region: \"zone_3\"\tRelError: 8.94125e-04\tAbsError: 8.06829e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07774e-04\tAbsError: 1.89260e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83970e-05\tAbsError: 6.17569e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.07602e-04\tAbsError: 1.21142e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.51972e-07\tAbsError: 1.22508e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.96602e-02\tAbsError: 1.51748e+13\n", + " Region: \"zone_1\"\tRelError: 4.68184e-03\tAbsError: 3.54680e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.68086e-03\tAbsError: 1.17136e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.87176e-07\tAbsError: 3.42966e-04\n", + " Region: \"zone_3\"\tRelError: 4.49784e-02\tAbsError: 1.51748e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07526e-03\tAbsError: 6.43367e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.83883e-04\tAbsError: 8.74109e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.29183e-02\tAbsError: 1.21270e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.87176e-07\tAbsError: 3.42966e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.07616e+01\tAbsError: 3.02291e+15\n", + " Region: \"zone_1\"\tRelError: 9.27113e+00\tAbsError: 6.52674e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.27103e+00\tAbsError: 3.07634e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.92954e-05\tAbsError: 3.45040e-02\n", + " Region: \"zone_3\"\tRelError: 1.49044e+00\tAbsError: 3.02291e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40308e-01\tAbsError: 1.49698e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.14159e-01\tAbsError: 1.52592e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35875e-01\tAbsError: 3.07635e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.92954e-05\tAbsError: 3.45040e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.93663e+00\tAbsError: 6.37428e+14\n", + " Region: \"zone_1\"\tRelError: 3.46019e+00\tAbsError: 7.21476e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.46007e+00\tAbsError: 3.07635e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", + " Region: \"zone_3\"\tRelError: 1.47644e+00\tAbsError: 6.37428e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40577e-01\tAbsError: 3.72575e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.27797e-01\tAbsError: 2.64853e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07947e-01\tAbsError: 3.07638e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.79485e+00\tAbsError: 5.47603e+15\n", + " Region: \"zone_1\"\tRelError: 2.51138e-01\tAbsError: 7.31255e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51021e-01\tAbsError: 3.24494e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17064e-04\tAbsError: 4.06761e-02\n", + " Region: \"zone_3\"\tRelError: 1.54371e+00\tAbsError: 5.47603e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.60529e-01\tAbsError: 2.61823e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32596e-01\tAbsError: 2.85780e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50466e-01\tAbsError: 3.24494e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17064e-04\tAbsError: 4.06761e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.60447e-04\tAbsError: 1.06355e+11\n", + " Region: \"zone_1\"\tRelError: 4.47681e-05\tAbsError: 4.42560e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.46408e-05\tAbsError: 6.79569e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27248e-07\tAbsError: 4.41881e-05\n", + " Region: \"zone_3\"\tRelError: 4.15679e-04\tAbsError: 1.06355e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.03322e-06\tAbsError: 7.30303e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.96546e-06\tAbsError: 3.33242e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.01553e-04\tAbsError: 7.09759e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27248e-07\tAbsError: 4.41881e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.52996e-04\tAbsError: 2.81948e+11\n", + " Region: \"zone_1\"\tRelError: 2.18342e-05\tAbsError: 9.35229e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91426e-05\tAbsError: 1.70183e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69160e-06\tAbsError: 9.35059e-04\n", + " Region: \"zone_3\"\tRelError: 2.31162e-04\tAbsError: 2.81948e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.87484e-05\tAbsError: 2.24250e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.27443e-06\tAbsError: 5.76984e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.00448e-04\tAbsError: 1.70517e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69168e-06\tAbsError: 9.35104e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.22732e+00\tAbsError: 2.06865e+15\n", + " Region: \"zone_1\"\tRelError: 2.78568e-01\tAbsError: 2.74627e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78563e-01\tAbsError: 2.58185e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73142e-06\tAbsError: 1.64416e-03\n", + " Region: \"zone_3\"\tRelError: 9.48751e-01\tAbsError: 2.06865e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.44918e-01\tAbsError: 9.02348e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.89155e-01\tAbsError: 1.16630e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14673e-01\tAbsError: 2.51147e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73142e-06\tAbsError: 1.64416e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.95431e+00\tAbsError: 2.96317e+14\n", + " Region: \"zone_1\"\tRelError: 2.00902e+00\tAbsError: 3.34445e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.00900e+00\tAbsError: 2.58782e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", + " Region: \"zone_3\"\tRelError: 9.45295e-01\tAbsError: 2.96317e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42034e-01\tAbsError: 1.59420e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.10683e-01\tAbsError: 1.36896e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.25558e-02\tAbsError: 2.58843e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.17461e+00\tAbsError: 4.04065e+15\n", + " Region: \"zone_1\"\tRelError: 1.26446e-01\tAbsError: 3.40013e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26423e-01\tAbsError: 2.57765e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36708e-05\tAbsError: 8.22472e-03\n", + " Region: \"zone_3\"\tRelError: 1.04817e+00\tAbsError: 4.04065e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.78908e-01\tAbsError: 1.87301e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.31622e-01\tAbsError: 2.16764e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37612e-01\tAbsError: 2.56811e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36844e-05\tAbsError: 8.22958e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 8.78515e-05\tAbsError: 3.85456e+10\n", + " Region: \"zone_1\"\tRelError: 8.13611e-06\tAbsError: 5.58107e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.12018e-06\tAbsError: 3.60972e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59308e-08\tAbsError: 5.54497e-06\n", + " Region: \"zone_3\"\tRelError: 7.97153e-05\tAbsError: 3.85456e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.76828e-06\tAbsError: 1.31596e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.74419e-06\tAbsError: 2.53860e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.41869e-05\tAbsError: 3.60990e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59375e-08\tAbsError: 5.54742e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:58\u001b[0m.\u001b[1;36m865\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.525\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.89158e-03\tAbsError: 9.05298e+11\n", + " Region: \"zone_1\"\tRelError: 3.78207e-04\tAbsError: 4.44628e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.78080e-04\tAbsError: 4.56527e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26768e-07\tAbsError: 4.40063e-05\n", + " Region: \"zone_3\"\tRelError: 3.51337e-03\tAbsError: 9.05298e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42984e-05\tAbsError: 4.59366e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.41399e-05\tAbsError: 4.45932e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.42481e-03\tAbsError: 4.75231e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26809e-07\tAbsError: 4.40212e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.18897e+00\tAbsError: 6.29402e+14\n", + " Region: \"zone_1\"\tRelError: 6.86170e+00\tAbsError: 2.22868e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.86166e+00\tAbsError: 9.16572e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77613e-05\tAbsError: 1.31211e-02\n", + " Region: \"zone_3\"\tRelError: 3.27267e-01\tAbsError: 6.29402e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84319e-01\tAbsError: 3.28649e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.08857e-01\tAbsError: 3.00753e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40527e-02\tAbsError: 9.16579e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77613e-05\tAbsError: 1.31211e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.90232e-01\tAbsError: 1.27257e+14\n", + " Region: \"zone_1\"\tRelError: 2.88169e-01\tAbsError: 1.34324e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88157e-01\tAbsError: 9.16559e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22923e-05\tAbsError: 4.26682e-03\n", + " Region: \"zone_3\"\tRelError: 3.02062e-01\tAbsError: 1.27257e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98145e-01\tAbsError: 5.59682e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.53461e-02\tAbsError: 7.12890e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.85587e-02\tAbsError: 9.16563e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22942e-05\tAbsError: 4.26755e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.86737e-01\tAbsError: 1.42449e+15\n", + " Region: \"zone_1\"\tRelError: 7.79806e-02\tAbsError: 3.66548e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.79077e-02\tAbsError: 1.13365e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.28716e-05\tAbsError: 2.53183e-02\n", + " Region: \"zone_3\"\tRelError: 4.08757e-01\tAbsError: 1.42449e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.22785e-01\tAbsError: 7.62606e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.39761e-01\tAbsError: 6.61889e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.61373e-02\tAbsError: 1.13366e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.28716e-05\tAbsError: 2.53183e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.69212e+00\tAbsError: 8.74359e+15\n", + " Region: \"zone_1\"\tRelError: 4.99147e+00\tAbsError: 4.22110e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.99147e+00\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.56758e-09\tAbsError: 1.93339e-06\n", + " Region: \"zone_3\"\tRelError: 1.70065e+00\tAbsError: 8.74359e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80239e-01\tAbsError: 5.11926e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.80194e-01\tAbsError: 3.62433e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40220e-01\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.56931e-09\tAbsError: 1.93394e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.97153e-04\tAbsError: 4.19543e+10\n", + " Region: \"zone_1\"\tRelError: 2.91864e-05\tAbsError: 5.71878e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.90219e-05\tAbsError: 2.71119e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64529e-07\tAbsError: 5.71607e-05\n", + " Region: \"zone_3\"\tRelError: 2.67967e-04\tAbsError: 4.19543e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38035e-06\tAbsError: 1.92714e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.40994e-06\tAbsError: 2.26829e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.63012e-04\tAbsError: 2.79421e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64589e-07\tAbsError: 5.71816e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.42105e-01\tAbsError: 9.57843e+13\n", + " Region: \"zone_1\"\tRelError: 5.64317e-01\tAbsError: 1.44974e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.64276e-01\tAbsError: 1.24104e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14024e-05\tAbsError: 1.43733e-02\n", + " Region: \"zone_3\"\tRelError: 7.77880e-02\tAbsError: 9.57843e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.25473e-02\tAbsError: 4.71405e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.65020e-03\tAbsError: 4.86438e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95491e-02\tAbsError: 1.28397e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14024e-05\tAbsError: 1.43733e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.81369e-01\tAbsError: 1.65118e+13\n", + " Region: \"zone_1\"\tRelError: 1.13683e-01\tAbsError: 2.48930e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13676e-01\tAbsError: 7.97182e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", + " Region: \"zone_3\"\tRelError: 6.76863e-02\tAbsError: 1.65118e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.50220e-02\tAbsError: 9.05581e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.84537e-03\tAbsError: 7.45604e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.81196e-03\tAbsError: 8.36703e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.19037e-01\tAbsError: 2.65162e+14\n", + " Region: \"zone_1\"\tRelError: 5.99790e-03\tAbsError: 2.62748e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.92282e-03\tAbsError: 2.08974e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.50856e-05\tAbsError: 2.60658e-02\n", + " Region: \"zone_3\"\tRelError: 1.13040e-01\tAbsError: 2.65162e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38024e-02\tAbsError: 1.56704e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09425e-02\tAbsError: 1.08458e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.82196e-02\tAbsError: 2.18158e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.50856e-05\tAbsError: 2.60658e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.77192e+00\tAbsError: 9.85877e+14\n", + " Region: \"zone_1\"\tRelError: 2.52573e-01\tAbsError: 7.40894e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52452e-01\tAbsError: 3.22434e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20416e-04\tAbsError: 4.18460e-02\n", + " Region: \"zone_3\"\tRelError: 1.51935e+00\tAbsError: 9.85877e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.59672e-01\tAbsError: 5.74420e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.45383e-01\tAbsError: 4.11458e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14171e-01\tAbsError: 3.22436e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20416e-04\tAbsError: 4.18460e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.75864e-04\tAbsError: 5.63886e+10\n", + " Region: \"zone_1\"\tRelError: 2.69666e-05\tAbsError: 6.16583e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.69489e-05\tAbsError: 2.63967e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76715e-08\tAbsError: 6.13943e-06\n", + " Region: \"zone_3\"\tRelError: 2.48898e-04\tAbsError: 5.63886e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.67515e-06\tAbsError: 3.18401e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.66080e-06\tAbsError: 2.45485e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.43544e-04\tAbsError: 2.74388e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76766e-08\tAbsError: 6.14120e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.36557e-01\tAbsError: 7.18470e+12\n", + " Region: \"zone_1\"\tRelError: 1.16158e-01\tAbsError: 1.78279e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16157e-01\tAbsError: 6.59165e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.94530e-07\tAbsError: 1.71687e-04\n", + " Region: \"zone_3\"\tRelError: 2.03993e-02\tAbsError: 7.18470e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.98223e-04\tAbsError: 2.78831e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.37326e-04\tAbsError: 4.39639e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92632e-02\tAbsError: 6.83641e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.94530e-07\tAbsError: 1.71687e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.11615e-03\tAbsError: 1.08851e+12\n", + " Region: \"zone_1\"\tRelError: 5.30759e-03\tAbsError: 1.67972e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.30711e-03\tAbsError: 1.45981e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", + " Region: \"zone_3\"\tRelError: 1.80856e-03\tAbsError: 1.08851e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43945e-04\tAbsError: 2.92186e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.94756e-05\tAbsError: 7.96320e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56466e-03\tAbsError: 1.47422e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.38825e-02\tAbsError: 1.34352e+13\n", + " Region: \"zone_1\"\tRelError: 3.90365e-03\tAbsError: 2.91296e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.90285e-03\tAbsError: 1.07704e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.07428e-07\tAbsError: 2.80526e-04\n", + " Region: \"zone_3\"\tRelError: 3.99789e-02\tAbsError: 1.34352e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.86559e-04\tAbsError: 5.55385e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.99792e-04\tAbsError: 7.88132e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.80917e-02\tAbsError: 1.10910e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.07428e-07\tAbsError: 2.80526e-04\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.70615e-05\tAbsError: 5.88164e+09\n", + " Region: \"zone_1\"\tRelError: 3.64088e-06\tAbsError: 3.85278e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.62980e-06\tAbsError: 3.10674e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10807e-08\tAbsError: 3.84967e-06\n", + " Region: \"zone_3\"\tRelError: 3.34206e-05\tAbsError: 5.88164e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.00628e-07\tAbsError: 3.35788e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.01512e-07\tAbsError: 2.52376e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.28074e-05\tAbsError: 3.20733e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10825e-08\tAbsError: 3.85030e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.17046e+00\tAbsError: 5.18157e+14\n", + " Region: \"zone_1\"\tRelError: 1.54680e-01\tAbsError: 3.40645e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54656e-01\tAbsError: 2.58448e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36523e-05\tAbsError: 8.21968e-03\n", + " Region: \"zone_3\"\tRelError: 1.01578e+00\tAbsError: 5.18157e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.72316e-01\tAbsError: 2.47147e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.39064e-01\tAbsError: 2.71010e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04375e-01\tAbsError: 2.57967e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36523e-05\tAbsError: 8.21968e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:03\u001b[0m.\u001b[1;36m346\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: 0.75\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.13498e-03\tAbsError: 1.41105e+11\n", + " Region: \"zone_1\"\tRelError: 2.73398e-03\tAbsError: 4.76357e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73260e-03\tAbsError: 1.35633e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37060e-06\tAbsError: 4.76221e-04\n", + " Region: \"zone_3\"\tRelError: 4.01007e-04\tAbsError: 1.41105e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.96062e-06\tAbsError: 6.85210e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.81427e-06\tAbsError: 7.25836e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87862e-04\tAbsError: 1.38229e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37060e-06\tAbsError: 4.76221e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.59900e-03\tAbsError: 1.40711e+11\n", + " Region: \"zone_1\"\tRelError: 2.06948e-03\tAbsError: 6.41578e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06929e-03\tAbsError: 9.09489e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84503e-07\tAbsError: 6.40668e-05\n", + " Region: \"zone_3\"\tRelError: 5.29527e-04\tAbsError: 1.40711e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.39801e-06\tAbsError: 9.47438e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.30618e-06\tAbsError: 4.59673e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.12638e-04\tAbsError: 9.48359e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84568e-07\tAbsError: 6.40878e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.10085e-04\tAbsError: 2.49978e+11\n", + " Region: \"zone_1\"\tRelError: 2.66948e-05\tAbsError: 8.47545e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42556e-05\tAbsError: 1.53478e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.43917e-06\tAbsError: 8.47391e-04\n", + " Region: \"zone_3\"\tRelError: 2.83390e-04\tAbsError: 2.49978e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.62105e-05\tAbsError: 1.91658e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.80553e-06\tAbsError: 5.83197e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.56935e-04\tAbsError: 1.54001e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.43923e-06\tAbsError: 8.47427e-04\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.98481e-01\tAbsError: 2.35572e+14\n", + " Region: \"zone_1\"\tRelError: 3.57005e-02\tAbsError: 1.65805e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.56846e-02\tAbsError: 1.10528e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59248e-05\tAbsError: 5.52768e-03\n", + " Region: \"zone_3\"\tRelError: 3.62780e-01\tAbsError: 2.35572e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21638e-01\tAbsError: 1.07223e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04647e-01\tAbsError: 1.28348e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.64794e-02\tAbsError: 1.10528e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59361e-05\tAbsError: 5.53170e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.09784e+02\tAbsError: 3.38352e+16\n", + " Region: \"zone_1\"\tRelError: 1.07958e+02\tAbsError: 4.26148e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07958e+02\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76616e-09\tAbsError: 6.13601e-07\n", + " Region: \"zone_3\"\tRelError: 1.82645e+00\tAbsError: 3.38352e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.82692e-01\tAbsError: 1.68867e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.82173e-01\tAbsError: 1.69485e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.61588e-01\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76638e-09\tAbsError: 6.13676e-07\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.31814e-02\tAbsError: 4.58362e+11\n", + " Region: \"zone_1\"\tRelError: 1.15315e-02\tAbsError: 2.80900e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15314e-02\tAbsError: 2.57528e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.01667e-08\tAbsError: 2.78324e-05\n", + " Region: \"zone_3\"\tRelError: 1.64997e-03\tAbsError: 4.58362e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47024e-05\tAbsError: 2.30121e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.45967e-05\tAbsError: 2.28241e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60059e-03\tAbsError: 2.62890e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.01667e-08\tAbsError: 2.78324e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.84757e-04\tAbsError: 5.79873e+10\n", + " Region: \"zone_1\"\tRelError: 5.39232e-04\tAbsError: 6.69464e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.39213e-04\tAbsError: 4.49143e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91058e-08\tAbsError: 6.64972e-06\n", + " Region: \"zone_3\"\tRelError: 1.45525e-04\tAbsError: 5.79873e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.71562e-06\tAbsError: 2.34463e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.68397e-06\tAbsError: 3.45410e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38106e-04\tAbsError: 4.56915e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91137e-08\tAbsError: 6.65261e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.45230e-03\tAbsError: 8.19006e+11\n", + " Region: \"zone_1\"\tRelError: 3.16929e-04\tAbsError: 4.12787e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.16811e-04\tAbsError: 4.16156e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17710e-07\tAbsError: 4.08626e-05\n", + " Region: \"zone_3\"\tRelError: 3.13537e-03\tAbsError: 8.19006e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.06413e-05\tAbsError: 4.15540e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.05304e-05\tAbsError: 4.03467e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.05408e-03\tAbsError: 4.34810e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17738e-07\tAbsError: 4.08731e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.34957e-02\tAbsError: 4.23641e+13\n", + " Region: \"zone_1\"\tRelError: 1.07688e-02\tAbsError: 4.16936e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07573e-02\tAbsError: 1.79758e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14905e-05\tAbsError: 3.98960e-03\n", + " Region: \"zone_3\"\tRelError: 8.27269e-02\tAbsError: 4.23641e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.35207e-02\tAbsError: 2.38732e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.77445e-03\tAbsError: 1.84909e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14203e-02\tAbsError: 1.90667e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14905e-05\tAbsError: 3.98960e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.24383e+00\tAbsError: 3.59726e+16\n", + " Region: \"zone_1\"\tRelError: 6.31680e-01\tAbsError: 1.71583e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.31280e-01\tAbsError: 3.27219e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.99867e-04\tAbsError: 1.38861e-01\n", + " Region: \"zone_3\"\tRelError: 1.61215e+00\tAbsError: 3.59726e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.60313e-01\tAbsError: 1.81432e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.24896e-01\tAbsError: 1.78294e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.26543e-01\tAbsError: 3.27220e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.99867e-04\tAbsError: 1.38861e-01\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.25913e-03\tAbsError: 2.71128e+10\n", + " Region: \"zone_1\"\tRelError: 1.10973e-03\tAbsError: 2.99279e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10965e-03\tAbsError: 1.77983e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.60783e-08\tAbsError: 2.99101e-05\n", + " Region: \"zone_3\"\tRelError: 1.49391e-04\tAbsError: 2.71128e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61984e-06\tAbsError: 1.29863e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.63350e-06\tAbsError: 1.41265e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46052e-04\tAbsError: 1.82225e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.61134e-08\tAbsError: 2.99224e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.02364e-04\tAbsError: 5.62247e+09\n", + " Region: \"zone_1\"\tRelError: 8.15379e-05\tAbsError: 3.03368e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.15291e-05\tAbsError: 3.57289e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.71937e-09\tAbsError: 3.03011e-06\n", + " Region: \"zone_3\"\tRelError: 2.08260e-05\tAbsError: 5.62247e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14319e-07\tAbsError: 4.05602e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.09034e-07\tAbsError: 1.56645e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01939e-05\tAbsError: 3.71851e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.71944e-09\tAbsError: 3.03019e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.69782e-04\tAbsError: 3.91534e+10\n", + " Region: \"zone_1\"\tRelError: 2.50455e-05\tAbsError: 5.20353e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.48958e-05\tAbsError: 2.51864e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49699e-07\tAbsError: 5.20101e-05\n", + " Region: \"zone_3\"\tRelError: 2.44736e-04\tAbsError: 3.91534e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.23816e-06\tAbsError: 1.81837e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.26547e-06\tAbsError: 2.09697e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.40083e-04\tAbsError: 2.60525e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49755e-07\tAbsError: 5.20295e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.96199e-03\tAbsError: 1.91554e+12\n", + " Region: \"zone_1\"\tRelError: 6.58625e-04\tAbsError: 2.23948e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.57987e-04\tAbsError: 2.24579e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.37961e-07\tAbsError: 2.21702e-04\n", + " Region: \"zone_3\"\tRelError: 4.30337e-03\tAbsError: 1.91554e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.72509e-04\tAbsError: 6.15591e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.67636e-04\tAbsError: 1.29995e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.86259e-03\tAbsError: 2.25284e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.37961e-07\tAbsError: 2.21702e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 9.89584e-04\tAbsError: 2.93050e+10\n", + " Region: \"zone_1\"\tRelError: 8.69289e-04\tAbsError: 3.58476e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.69279e-04\tAbsError: 1.49163e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02736e-08\tAbsError: 3.56984e-06\n", + " Region: \"zone_3\"\tRelError: 1.20295e-04\tAbsError: 2.93050e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52554e-06\tAbsError: 1.64489e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.51838e-06\tAbsError: 1.28561e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17241e-04\tAbsError: 1.55101e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02768e-08\tAbsError: 3.57094e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.12505e+00\tAbsError: 2.31531e+16\n", + " Region: \"zone_1\"\tRelError: 1.58868e-01\tAbsError: 1.05142e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58639e-01\tAbsError: 2.56126e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29065e-04\tAbsError: 7.95290e-02\n", + " Region: \"zone_3\"\tRelError: 1.96618e+00\tAbsError: 2.31531e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.75933e-01\tAbsError: 1.14785e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.26157e-01\tAbsError: 1.16746e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06386e+00\tAbsError: 2.48349e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29065e-04\tAbsError: 7.95290e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.62672e-05\tAbsError: 3.10482e+09\n", + " Region: \"zone_1\"\tRelError: 3.66806e-05\tAbsError: 2.21724e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 3.66799e-05\tAbsError: 2.06476e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.31104e-10\tAbsError: 2.19659e-07\n", + " Region: \"zone_3\"\tRelError: 9.58660e-06\tAbsError: 3.10482e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88628e-07\tAbsError: 1.51763e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.86687e-07\tAbsError: 1.58719e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.21065e-06\tAbsError: 2.10348e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.31398e-10\tAbsError: 2.19764e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:08\u001b[0m.\u001b[1;36m397\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.6\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.45670e-04\tAbsError: 5.12227e+10\n", + " Region: \"zone_1\"\tRelError: 2.26882e-05\tAbsError: 5.68447e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.26719e-05\tAbsError: 2.41814e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62919e-08\tAbsError: 5.66029e-06\n", + " Region: \"zone_3\"\tRelError: 2.22982e-04\tAbsError: 5.12227e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46355e-06\tAbsError: 2.89207e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.45248e-06\tAbsError: 2.23020e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18049e-04\tAbsError: 2.53174e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62965e-08\tAbsError: 5.66192e-06\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.77277e-04\tAbsError: 1.69406e+11\n", + " Region: \"zone_1\"\tRelError: 1.04989e-04\tAbsError: 1.17617e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04650e-04\tAbsError: 1.10516e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.38424e-07\tAbsError: 1.17507e-04\n", + " Region: \"zone_3\"\tRelError: 5.72288e-04\tAbsError: 1.69406e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01879e-05\tAbsError: 1.15108e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.00498e-05\tAbsError: 5.42984e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.51712e-04\tAbsError: 1.15347e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.38451e-07\tAbsError: 1.17518e-04\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.48739e-04\tAbsError: 3.41314e+09\n", + " Region: \"zone_1\"\tRelError: 1.31134e-04\tAbsError: 2.06494e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31128e-04\tAbsError: 1.91971e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.93716e-09\tAbsError: 2.06302e-06\n", + " Region: \"zone_3\"\tRelError: 1.76048e-05\tAbsError: 3.41314e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88514e-07\tAbsError: 1.94837e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.89063e-07\tAbsError: 1.46477e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72213e-05\tAbsError: 1.99642e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.93836e-09\tAbsError: 2.06344e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.92425e+00\tAbsError: 7.57393e+15\n", + " Region: \"zone_1\"\tRelError: 6.50438e+00\tAbsError: 5.67741e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.50425e+00\tAbsError: 1.17189e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29791e-04\tAbsError: 4.50552e-02\n", + " Region: \"zone_3\"\tRelError: 1.41987e+00\tAbsError: 7.57393e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12287e-01\tAbsError: 4.15774e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.27964e-01\tAbsError: 3.41619e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07949e+00\tAbsError: 1.17190e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29791e-04\tAbsError: 4.50552e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.33744e-05\tAbsError: 5.41736e+09\n", + " Region: \"zone_1\"\tRelError: 3.09836e-06\tAbsError: 3.51825e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.08825e-06\tAbsError: 2.88215e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01182e-08\tAbsError: 3.51537e-06\n", + " Region: \"zone_3\"\tRelError: 3.02760e-05\tAbsError: 5.41736e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.80133e-07\tAbsError: 3.09626e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.81126e-07\tAbsError: 2.32110e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97047e-05\tAbsError: 2.99667e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01199e-08\tAbsError: 3.51597e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:09\u001b[0m.\u001b[1;36m880\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:09\u001b[0m.\u001b[1;36m880\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7428571428571428\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.94073e+01\tAbsError: 8.32958e+15\n", + " Region: \"zone_1\"\tRelError: 1.77016e+01\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77016e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.06764e-10\tAbsError: 1.76108e-07\n", + " Region: \"zone_3\"\tRelError: 1.70569e+00\tAbsError: 8.32958e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69637e-01\tAbsError: 4.59097e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69532e-01\tAbsError: 3.73860e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66519e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.06930e-10\tAbsError: 1.76171e-07\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 7.33109e-05\tAbsError: 1.99171e+09\n", + " Region: \"zone_1\"\tRelError: 6.45108e-05\tAbsError: 3.50573e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 6.45098e-05\tAbsError: 1.06453e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00585e-09\tAbsError: 3.49509e-07\n", + " Region: \"zone_3\"\tRelError: 8.80008e-06\tAbsError: 1.99171e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03719e-07\tAbsError: 1.17952e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03272e-07\tAbsError: 8.12185e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 8.59208e-06\tAbsError: 1.10473e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00600e-09\tAbsError: 3.49562e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:10\u001b[0m.\u001b[1;36m234\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.7000000000000001\u001b[0m\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.92207e-04\tAbsError: 1.11515e+11\n", + " Region: \"zone_1\"\tRelError: 5.98028e-05\tAbsError: 5.69528e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.97866e-05\tAbsError: 7.69182e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61427e-08\tAbsError: 5.61837e-06\n", + " Region: \"zone_3\"\tRelError: 3.32405e-04\tAbsError: 1.11515e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.85875e-06\tAbsError: 5.12772e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.80258e-06\tAbsError: 6.02373e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.18727e-04\tAbsError: 7.87224e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61498e-08\tAbsError: 5.62096e-06\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.79873e+00\tAbsError: 1.72669e+15\n", + " Region: \"zone_1\"\tRelError: 1.69883e+00\tAbsError: 1.92473e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69827e+00\tAbsError: 3.36867e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.53976e-04\tAbsError: 1.92136e-01\n", + " Region: \"zone_3\"\tRelError: 9.99032e-02\tAbsError: 1.72669e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.09613e-02\tAbsError: 8.58572e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.79843e-02\tAbsError: 8.68118e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04024e-02\tAbsError: 3.67321e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.55146e-04\tAbsError: 1.92536e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.07616e+01\tAbsError: 3.02291e+15\n", + " Region: \"zone_1\"\tRelError: 9.27113e+00\tAbsError: 6.52674e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.27103e+00\tAbsError: 3.07634e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.92954e-05\tAbsError: 3.45040e-02\n", + " Region: \"zone_3\"\tRelError: 1.49044e+00\tAbsError: 3.02291e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40308e-01\tAbsError: 1.49698e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.14159e-01\tAbsError: 1.52592e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35875e-01\tAbsError: 3.07635e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.92954e-05\tAbsError: 3.45040e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.44971e+01\tAbsError: 3.04084e+16\n", + " Region: \"zone_1\"\tRelError: 3.26810e+01\tAbsError: 4.23840e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.26810e+01\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62519e-09\tAbsError: 5.64640e-07\n", + " Region: \"zone_3\"\tRelError: 1.81608e+00\tAbsError: 3.04084e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80898e-01\tAbsError: 1.52254e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.80422e-01\tAbsError: 1.51830e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54761e-01\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62539e-09\tAbsError: 5.64711e-07\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.32281e-05\tAbsError: 4.39719e+09\n", + " Region: \"zone_1\"\tRelError: 2.01633e-06\tAbsError: 6.48161e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.99769e-06\tAbsError: 2.67095e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.86442e-08\tAbsError: 6.47894e-06\n", + " Region: \"zone_3\"\tRelError: 1.12117e-05\tAbsError: 4.39719e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.71767e-07\tAbsError: 3.55045e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.15277e-07\tAbsError: 8.46742e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07060e-05\tAbsError: 2.77920e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.86479e-08\tAbsError: 6.48033e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:11\u001b[0m.\u001b[1;36m773\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.63125\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.94222e+01\tAbsError: 1.62190e+16\n", + " Region: \"zone_1\"\tRelError: 2.76662e+01\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76662e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.29578e-10\tAbsError: 1.49268e-07\n", + " Region: \"zone_3\"\tRelError: 1.75598e+00\tAbsError: 1.62190e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69267e-01\tAbsError: 8.18784e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.68971e-01\tAbsError: 8.03117e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17740e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.29628e-10\tAbsError: 1.49286e-07\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.95883e+00\tAbsError: 2.59839e+14\n", + " Region: \"zone_1\"\tRelError: 1.13863e-01\tAbsError: 1.16709e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13830e-01\tAbsError: 5.73242e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34838e-05\tAbsError: 1.16136e-02\n", + " Region: \"zone_3\"\tRelError: 3.84497e+00\tAbsError: 2.59839e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.47446e-03\tAbsError: 1.31141e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.26729e-03\tAbsError: 1.28698e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.83620e+00\tAbsError: 5.93737e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.35121e-05\tAbsError: 1.16231e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.22732e+00\tAbsError: 2.06865e+15\n", + " Region: \"zone_1\"\tRelError: 2.78568e-01\tAbsError: 2.74627e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78563e-01\tAbsError: 2.58185e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73142e-06\tAbsError: 1.64416e-03\n", + " Region: \"zone_3\"\tRelError: 9.48751e-01\tAbsError: 2.06865e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.44918e-01\tAbsError: 9.02348e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.89155e-01\tAbsError: 1.16630e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14673e-01\tAbsError: 2.51147e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73142e-06\tAbsError: 1.64416e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.21062e+00\tAbsError: 3.24117e+16\n", + " Region: \"zone_1\"\tRelError: 1.60959e+00\tAbsError: 1.60634e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60922e+00\tAbsError: 3.24492e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.69101e-04\tAbsError: 1.28185e-01\n", + " Region: \"zone_3\"\tRelError: 1.60102e+00\tAbsError: 3.24117e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57897e-01\tAbsError: 1.62735e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.20964e-01\tAbsError: 1.61383e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21796e-01\tAbsError: 3.24492e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.69101e-04\tAbsError: 1.28185e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.57455e+00\tAbsError: 1.59389e+16\n", + " Region: \"zone_1\"\tRelError: 1.04759e+00\tAbsError: 1.06162e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04737e+00\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17045e-04\tAbsError: 7.53990e-02\n", + " Region: \"zone_3\"\tRelError: 1.52696e+00\tAbsError: 1.59389e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37511e-01\tAbsError: 7.87332e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.04735e-01\tAbsError: 8.06553e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84502e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17045e-04\tAbsError: 7.53990e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.44977e+00\tAbsError: 8.96903e+15\n", + " Region: \"zone_1\"\tRelError: 3.70568e+00\tAbsError: 4.22092e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.70568e+00\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.36239e-10\tAbsError: 1.51767e-07\n", + " Region: \"zone_3\"\tRelError: 1.74409e+00\tAbsError: 8.96903e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80173e-01\tAbsError: 4.80961e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.80046e-01\tAbsError: 4.15942e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83872e-01\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.36414e-10\tAbsError: 1.51827e-07\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.57963e-01\tAbsError: 1.91072e+13\n", + " Region: \"zone_1\"\tRelError: 2.78504e-02\tAbsError: 5.69747e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78339e-02\tAbsError: 4.27049e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64146e-05\tAbsError: 5.69320e-03\n", + " Region: \"zone_3\"\tRelError: 7.30113e-01\tAbsError: 1.91072e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.16966e-04\tAbsError: 9.66509e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.22761e-04\tAbsError: 9.44216e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.29456e-01\tAbsError: 4.53717e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64194e-05\tAbsError: 5.69496e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.18897e+00\tAbsError: 6.29402e+14\n", + " Region: \"zone_1\"\tRelError: 6.86170e+00\tAbsError: 2.22868e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.86166e+00\tAbsError: 9.16572e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77613e-05\tAbsError: 1.31211e-02\n", + " Region: \"zone_3\"\tRelError: 3.27267e-01\tAbsError: 6.29402e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84319e-01\tAbsError: 3.28649e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.08857e-01\tAbsError: 3.00753e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40527e-02\tAbsError: 9.16579e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77613e-05\tAbsError: 1.31211e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.77741e+00\tAbsError: 2.06093e+16\n", + " Region: \"zone_1\"\tRelError: 1.65058e-01\tAbsError: 9.97024e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64845e-01\tAbsError: 2.55931e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.13439e-04\tAbsError: 7.41092e-02\n", + " Region: \"zone_3\"\tRelError: 1.61236e+00\tAbsError: 2.06093e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.71347e-01\tAbsError: 1.02911e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.25181e-01\tAbsError: 1.03182e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.15614e-01\tAbsError: 2.50412e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.13439e-04\tAbsError: 7.41092e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.14822e+00\tAbsError: 9.83178e+15\n", + " Region: \"zone_1\"\tRelError: 1.39457e-01\tAbsError: 7.32841e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39320e-01\tAbsError: 2.58400e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36592e-04\tAbsError: 4.74441e-02\n", + " Region: \"zone_3\"\tRelError: 1.00877e+00\tAbsError: 9.83178e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43427e-01\tAbsError: 4.83336e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.90483e-01\tAbsError: 4.99841e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74720e-01\tAbsError: 2.58193e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36592e-04\tAbsError: 4.74441e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.82964e+00\tAbsError: 5.08570e+15\n", + " Region: \"zone_1\"\tRelError: 2.92321e-01\tAbsError: 7.19255e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.92207e-01\tAbsError: 3.22433e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14202e-04\tAbsError: 3.96822e-02\n", + " Region: \"zone_3\"\tRelError: 1.53731e+00\tAbsError: 5.08570e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57973e-01\tAbsError: 2.41919e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.30808e-01\tAbsError: 2.66650e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48419e-01\tAbsError: 3.22434e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14202e-04\tAbsError: 3.96822e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.70944e-01\tAbsError: 1.19240e+13\n", + " Region: \"zone_1\"\tRelError: 2.58368e-02\tAbsError: 7.03989e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58348e-02\tAbsError: 2.13236e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.02254e-06\tAbsError: 7.01857e-04\n", + " Region: \"zone_3\"\tRelError: 3.45107e-01\tAbsError: 1.19240e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.00810e-04\tAbsError: 6.03241e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.97504e-04\tAbsError: 5.89158e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.44707e-01\tAbsError: 2.37149e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.02313e-06\tAbsError: 7.02082e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.42105e-01\tAbsError: 9.57843e+13\n", + " Region: \"zone_1\"\tRelError: 5.64317e-01\tAbsError: 1.44974e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.64276e-01\tAbsError: 1.24104e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14024e-05\tAbsError: 1.43733e-02\n", + " Region: \"zone_3\"\tRelError: 7.77880e-02\tAbsError: 9.57843e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.25473e-02\tAbsError: 4.71405e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.65020e-03\tAbsError: 4.86438e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95491e-02\tAbsError: 1.28397e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14024e-05\tAbsError: 1.43733e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.45845e+00\tAbsError: 6.57748e+15\n", + " Region: \"zone_1\"\tRelError: 5.68646e-01\tAbsError: 4.93656e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.68537e-01\tAbsError: 1.13358e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09536e-04\tAbsError: 3.80298e-02\n", + " Region: \"zone_3\"\tRelError: 8.89808e-01\tAbsError: 6.57748e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07117e-01\tAbsError: 3.60805e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24797e-01\tAbsError: 2.96943e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.57785e-01\tAbsError: 1.13359e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09601e-04\tAbsError: 3.80526e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 9.17087e-01\tAbsError: 2.70112e+15\n", + " Region: \"zone_1\"\tRelError: 4.13278e-01\tAbsError: 1.18036e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.12964e-01\tAbsError: 9.16529e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.13541e-04\tAbsError: 1.08871e-01\n", + " Region: \"zone_3\"\tRelError: 5.03809e-01\tAbsError: 2.70112e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.83333e-01\tAbsError: 1.43386e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03452e-01\tAbsError: 1.26726e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16711e-01\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.13541e-04\tAbsError: 1.08871e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.16025e+00\tAbsError: 3.70042e+15\n", + " Region: \"zone_1\"\tRelError: 1.24653e-01\tAbsError: 3.31998e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24632e-01\tAbsError: 2.58287e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.12139e-05\tAbsError: 7.37111e-03\n", + " Region: \"zone_3\"\tRelError: 1.03560e+00\tAbsError: 3.70042e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.75009e-01\tAbsError: 1.71136e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.25597e-01\tAbsError: 1.98907e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34975e-01\tAbsError: 2.56848e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.12245e-05\tAbsError: 7.37495e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.15873e-02\tAbsError: 1.55712e+12\n", + " Region: \"zone_1\"\tRelError: 4.62135e-03\tAbsError: 3.47131e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62035e-03\tAbsError: 2.68329e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.98917e-07\tAbsError: 3.46863e-04\n", + " Region: \"zone_3\"\tRelError: 5.69659e-02\tAbsError: 1.55712e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.63013e-05\tAbsError: 7.86152e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.59055e-05\tAbsError: 7.70966e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.69127e-02\tAbsError: 3.00469e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.99081e-07\tAbsError: 3.46996e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.36557e-01\tAbsError: 7.18470e+12\n", + " Region: \"zone_1\"\tRelError: 1.16158e-01\tAbsError: 1.78279e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16157e-01\tAbsError: 6.59165e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.94530e-07\tAbsError: 1.71687e-04\n", + " Region: \"zone_3\"\tRelError: 2.03993e-02\tAbsError: 7.18470e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.98223e-04\tAbsError: 2.78831e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.37326e-04\tAbsError: 4.39639e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92632e-02\tAbsError: 6.83641e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.94530e-07\tAbsError: 1.71687e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.87235e-01\tAbsError: 1.50716e+15\n", + " Region: \"zone_1\"\tRelError: 5.41370e-02\tAbsError: 1.84184e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.36069e-02\tAbsError: 3.24655e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.30067e-04\tAbsError: 1.83860e-01\n", + " Region: \"zone_3\"\tRelError: 1.33098e-01\tAbsError: 1.50716e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.05112e-02\tAbsError: 7.09659e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.73893e-02\tAbsError: 7.97504e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.46658e-02\tAbsError: 3.54468e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.31323e-04\tAbsError: 1.84290e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.27279e-01\tAbsError: 8.17053e+14\n", + " Region: \"zone_1\"\tRelError: 1.09940e-01\tAbsError: 2.21034e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09304e-01\tAbsError: 3.29075e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.36020e-04\tAbsError: 2.20705e-01\n", + " Region: \"zone_3\"\tRelError: 3.17339e-01\tAbsError: 8.17053e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.72653e-02\tAbsError: 1.99598e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.68899e-02\tAbsError: 6.17455e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42547e-01\tAbsError: 3.29140e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.36020e-04\tAbsError: 2.20705e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.84371e-01\tAbsError: 1.29148e+15\n", + " Region: \"zone_1\"\tRelError: 8.57081e-02\tAbsError: 3.42913e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.56412e-02\tAbsError: 1.10531e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.68838e-05\tAbsError: 2.32383e-02\n", + " Region: \"zone_3\"\tRelError: 3.98663e-01\tAbsError: 1.29148e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.18101e-01\tAbsError: 6.87691e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.36005e-01\tAbsError: 6.03794e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44889e-02\tAbsError: 1.10532e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.68838e-05\tAbsError: 2.32383e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.74137e-02\tAbsError: 7.24736e+11\n", + " Region: \"zone_1\"\tRelError: 2.11554e-03\tAbsError: 6.11484e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.11537e-03\tAbsError: 1.19465e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75486e-07\tAbsError: 6.10289e-05\n", + " Region: \"zone_3\"\tRelError: 2.52982e-02\tAbsError: 7.24736e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.22609e-05\tAbsError: 3.66403e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.20047e-05\tAbsError: 3.58333e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52738e-02\tAbsError: 1.35544e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75553e-07\tAbsError: 6.10532e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.13498e-03\tAbsError: 1.41105e+11\n", + " Region: \"zone_1\"\tRelError: 2.73398e-03\tAbsError: 4.76357e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73260e-03\tAbsError: 1.35633e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37060e-06\tAbsError: 4.76221e-04\n", + " Region: \"zone_3\"\tRelError: 4.01007e-04\tAbsError: 1.41105e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.96062e-06\tAbsError: 6.85210e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.81427e-06\tAbsError: 7.25836e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87862e-04\tAbsError: 1.38229e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37060e-06\tAbsError: 4.76221e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.84987e+00\tAbsError: 2.28445e+14\n", + " Region: \"zone_1\"\tRelError: 5.95418e-02\tAbsError: 1.11721e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95098e-02\tAbsError: 5.68051e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.20442e-05\tAbsError: 1.11153e-02\n", + " Region: \"zone_3\"\tRelError: 2.79033e+00\tAbsError: 2.28445e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43841e-03\tAbsError: 1.14936e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.24161e-03\tAbsError: 1.13509e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78161e+00\tAbsError: 5.82573e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.20714e-05\tAbsError: 1.11244e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 5.34536e-03\tAbsError: 1.27222e+11\n", + " Region: \"zone_1\"\tRelError: 4.35109e-04\tAbsError: 2.41289e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.35040e-04\tAbsError: 2.19915e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93177e-08\tAbsError: 2.41070e-05\n", + " Region: \"zone_3\"\tRelError: 4.91025e-03\tAbsError: 1.27222e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.15267e-06\tAbsError: 6.42044e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.11288e-06\tAbsError: 6.30181e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.90592e-03\tAbsError: 2.48653e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93443e-08\tAbsError: 2.41166e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.01035e-01\tAbsError: 1.64733e+14\n", + " Region: \"zone_1\"\tRelError: 2.03094e-01\tAbsError: 1.60100e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03048e-01\tAbsError: 7.96658e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.59052e-05\tAbsError: 1.59303e-02\n", + " Region: \"zone_3\"\tRelError: 4.97941e-01\tAbsError: 1.64733e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17881e-03\tAbsError: 7.88164e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.07895e-03\tAbsError: 8.59168e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.85637e-01\tAbsError: 8.00849e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.59052e-05\tAbsError: 1.59303e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.12960e-01\tAbsError: 2.37713e+14\n", + " Region: \"zone_1\"\tRelError: 5.59460e-03\tAbsError: 2.42560e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.52529e-03\tAbsError: 1.96929e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93040e-05\tAbsError: 2.40591e-02\n", + " Region: \"zone_3\"\tRelError: 1.07365e-01\tAbsError: 2.37713e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.22456e-02\tAbsError: 1.40642e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.01600e-02\tAbsError: 9.70713e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.48903e-02\tAbsError: 2.04946e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93040e-05\tAbsError: 2.40591e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.31814e-02\tAbsError: 4.58362e+11\n", + " Region: \"zone_1\"\tRelError: 1.15315e-02\tAbsError: 2.80900e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15314e-02\tAbsError: 2.57528e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.01667e-08\tAbsError: 2.78324e-05\n", + " Region: \"zone_3\"\tRelError: 1.64997e-03\tAbsError: 4.58362e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47024e-05\tAbsError: 2.30121e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.45967e-05\tAbsError: 2.28241e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60059e-03\tAbsError: 2.62890e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.01667e-08\tAbsError: 2.78324e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.45765e-01\tAbsError: 1.69493e+13\n", + " Region: \"zone_1\"\tRelError: 6.80757e-03\tAbsError: 5.51469e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.79169e-03\tAbsError: 4.23796e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58863e-05\tAbsError: 5.51045e-03\n", + " Region: \"zone_3\"\tRelError: 2.38957e-01\tAbsError: 1.69493e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.17749e-04\tAbsError: 8.55131e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.22485e-04\tAbsError: 8.39799e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38301e-01\tAbsError: 4.46238e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58903e-05\tAbsError: 5.51193e-03\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.94906e-03\tAbsError: 4.76686e+10\n", + " Region: \"zone_1\"\tRelError: 1.58013e-04\tAbsError: 5.01989e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57999e-04\tAbsError: 8.43998e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44100e-08\tAbsError: 5.01145e-06\n", + " Region: \"zone_3\"\tRelError: 1.79105e-03\tAbsError: 4.76686e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.07419e-07\tAbsError: 2.40867e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.89452e-07\tAbsError: 2.35820e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78944e-03\tAbsError: 9.47662e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44155e-08\tAbsError: 5.01349e-06\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.04323e-01\tAbsError: 1.53102e+13\n", + " Region: \"zone_1\"\tRelError: 3.15774e-02\tAbsError: 7.15567e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.15568e-02\tAbsError: 7.10876e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.05999e-05\tAbsError: 7.14856e-03\n", + " Region: \"zone_3\"\tRelError: 7.27454e-02\tAbsError: 1.53102e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94207e-04\tAbsError: 7.65839e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.98721e-04\tAbsError: 7.65181e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.15319e-02\tAbsError: 7.17354e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.06009e-05\tAbsError: 7.14900e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.99564e-02\tAbsError: 1.22577e+13\n", + " Region: \"zone_1\"\tRelError: 3.41063e-03\tAbsError: 2.57675e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40992e-03\tAbsError: 1.00926e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.11464e-07\tAbsError: 2.47582e-04\n", + " Region: \"zone_3\"\tRelError: 3.65458e-02\tAbsError: 1.22577e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.23239e-04\tAbsError: 4.97251e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.40102e-04\tAbsError: 7.28515e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.47817e-02\tAbsError: 1.03524e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.11760e-07\tAbsError: 2.47692e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.25913e-03\tAbsError: 2.71128e+10\n", + " Region: \"zone_1\"\tRelError: 1.10973e-03\tAbsError: 2.99279e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10965e-03\tAbsError: 1.77983e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.60783e-08\tAbsError: 2.99101e-05\n", + " Region: \"zone_3\"\tRelError: 1.49391e-04\tAbsError: 2.71128e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61984e-06\tAbsError: 1.29863e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.63350e-06\tAbsError: 1.41265e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46052e-04\tAbsError: 1.82225e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.61134e-08\tAbsError: 2.99224e-05\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 4.29595e-04\tAbsError: 9.92758e+09\n", + " Region: \"zone_1\"\tRelError: 3.58438e-05\tAbsError: 1.69659e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.58389e-05\tAbsError: 1.80123e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.87324e-09\tAbsError: 1.69479e-06\n", + " Region: \"zone_3\"\tRelError: 3.93751e-04\tAbsError: 9.92758e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68110e-07\tAbsError: 5.00991e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.64709e-07\tAbsError: 4.91766e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.93414e-04\tAbsError: 2.01959e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.87521e-09\tAbsError: 1.69552e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.08991e-01\tAbsError: 1.05549e+13\n", + " Region: \"zone_1\"\tRelError: 4.83463e-03\tAbsError: 6.90627e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.83265e-03\tAbsError: 2.14369e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98379e-06\tAbsError: 6.88484e-04\n", + " Region: \"zone_3\"\tRelError: 2.04156e-01\tAbsError: 1.05549e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.00089e-04\tAbsError: 5.32743e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.97434e-04\tAbsError: 5.22743e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03757e-01\tAbsError: 2.35062e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98435e-06\tAbsError: 6.88703e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.82885e-02\tAbsError: 7.75343e+12\n", + " Region: \"zone_1\"\tRelError: 1.74263e-02\tAbsError: 1.11082e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74231e-02\tAbsError: 3.27682e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.18949e-06\tAbsError: 1.10754e-03\n", + " Region: \"zone_3\"\tRelError: 4.08622e-02\tAbsError: 7.75343e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.01160e-04\tAbsError: 3.88269e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.99390e-04\tAbsError: 3.87074e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.02585e-02\tAbsError: 3.34987e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.19059e-06\tAbsError: 1.10796e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.30988e-04\tAbsError: 2.29044e+11\n", + " Region: \"zone_1\"\tRelError: 2.79478e-05\tAbsError: 7.85541e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.56871e-05\tAbsError: 1.43357e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.26068e-06\tAbsError: 7.85398e-04\n", + " Region: \"zone_3\"\tRelError: 3.03040e-04\tAbsError: 2.29044e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.45448e-05\tAbsError: 1.71014e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.83903e-06\tAbsError: 5.80300e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.79396e-04\tAbsError: 1.44178e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.26072e-06\tAbsError: 7.85427e-04\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.38753e-04\tAbsError: 3.26741e+09\n", + " Region: \"zone_1\"\tRelError: 1.15196e-05\tAbsError: 3.90487e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15185e-05\tAbsError: 5.98873e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12109e-09\tAbsError: 3.89888e-07\n", + " Region: \"zone_3\"\tRelError: 1.27233e-04\tAbsError: 3.26741e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.53697e-08\tAbsError: 1.65038e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.41124e-08\tAbsError: 1.61704e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27122e-04\tAbsError: 6.69167e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12155e-09\tAbsError: 3.90056e-07\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 9.89584e-04\tAbsError: 2.93050e+10\n", + " Region: \"zone_1\"\tRelError: 8.69289e-04\tAbsError: 3.58476e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.69279e-04\tAbsError: 1.49163e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02736e-08\tAbsError: 3.56984e-06\n", + " Region: \"zone_3\"\tRelError: 1.20295e-04\tAbsError: 2.93050e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52554e-06\tAbsError: 1.64489e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.51838e-06\tAbsError: 1.28561e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17241e-04\tAbsError: 1.55101e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02768e-08\tAbsError: 3.57094e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.20041e-02\tAbsError: 1.39093e+12\n", + " Region: \"zone_1\"\tRelError: 7.66248e-04\tAbsError: 3.38842e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.65272e-04\tAbsError: 2.70408e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.75473e-07\tAbsError: 3.38572e-04\n", + " Region: \"zone_3\"\tRelError: 3.12378e-02\tAbsError: 1.39093e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.64460e-05\tAbsError: 7.00708e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.61310e-05\tAbsError: 6.90221e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.11843e-02\tAbsError: 3.00354e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.75637e-07\tAbsError: 3.38624e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.09210e-02\tAbsError: 1.22286e+12\n", + " Region: \"zone_1\"\tRelError: 3.28469e-03\tAbsError: 4.72819e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.28333e-03\tAbsError: 4.87030e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36013e-06\tAbsError: 4.72332e-04\n", + " Region: \"zone_3\"\tRelError: 7.63634e-03\tAbsError: 1.22286e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.75678e-05\tAbsError: 6.11672e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.73305e-05\tAbsError: 6.11193e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.54008e-03\tAbsError: 5.02425e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36049e-06\tAbsError: 4.72455e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.15307e-03\tAbsError: 7.58272e+11\n", + " Region: \"zone_1\"\tRelError: 2.77988e-04\tAbsError: 3.88732e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.77877e-04\tAbsError: 3.87449e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10861e-07\tAbsError: 3.84857e-05\n", + " Region: \"zone_3\"\tRelError: 2.87508e-03\tAbsError: 7.58272e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.80273e-05\tAbsError: 3.84531e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.79342e-05\tAbsError: 3.73741e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.79901e-03\tAbsError: 4.06154e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10883e-07\tAbsError: 3.84939e-05\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 3.30599e-05\tAbsError: 7.54140e+08\n", + " Region: \"zone_1\"\tRelError: 2.78667e-06\tAbsError: 1.20638e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78633e-06\tAbsError: 1.39905e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.46482e-10\tAbsError: 1.20498e-07\n", + " Region: \"zone_3\"\tRelError: 3.02733e-05\tAbsError: 7.54140e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27759e-08\tAbsError: 3.80597e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.25046e-08\tAbsError: 3.73543e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 3.02476e-05\tAbsError: 1.56263e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.46627e-10\tAbsError: 1.20551e-07\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.48739e-04\tAbsError: 3.41314e+09\n", + " Region: \"zone_1\"\tRelError: 1.31134e-04\tAbsError: 2.06494e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31128e-04\tAbsError: 1.91971e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.93716e-09\tAbsError: 2.06302e-06\n", + " Region: \"zone_3\"\tRelError: 1.76048e-05\tAbsError: 3.41314e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88514e-07\tAbsError: 1.94837e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.89063e-07\tAbsError: 1.46477e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72213e-05\tAbsError: 1.99642e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.93836e-09\tAbsError: 2.06344e-06\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.47103e-02\tAbsError: 6.45496e+11\n", + " Region: \"zone_1\"\tRelError: 3.47376e-04\tAbsError: 5.99802e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.47204e-04\tAbsError: 1.21236e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72111e-07\tAbsError: 5.98589e-05\n", + " Region: \"zone_3\"\tRelError: 1.43629e-02\tAbsError: 6.45496e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.22916e-05\tAbsError: 3.25623e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.20745e-05\tAbsError: 3.19873e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43383e-02\tAbsError: 1.35138e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72176e-07\tAbsError: 5.98823e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.38843e-03\tAbsError: 5.18838e+11\n", + " Region: \"zone_1\"\tRelError: 1.31867e-03\tAbsError: 9.39018e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31840e-03\tAbsError: 1.99779e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69826e-07\tAbsError: 9.37020e-05\n", + " Region: \"zone_3\"\tRelError: 3.06976e-03\tAbsError: 5.18838e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95362e-05\tAbsError: 2.68345e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.93671e-05\tAbsError: 2.50493e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.03058e-03\tAbsError: 2.07424e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69859e-07\tAbsError: 9.37138e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 7.33109e-05\tAbsError: 1.99171e+09\n", + " Region: \"zone_1\"\tRelError: 6.45108e-05\tAbsError: 3.50573e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 6.45098e-05\tAbsError: 1.06453e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00585e-09\tAbsError: 3.49509e-07\n", + " Region: \"zone_3\"\tRelError: 8.80008e-06\tAbsError: 1.99171e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03719e-07\tAbsError: 1.17952e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03272e-07\tAbsError: 8.12185e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 8.59208e-06\tAbsError: 1.10473e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00600e-09\tAbsError: 3.49562e-07\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.50049e-04\tAbsError: 3.69775e+10\n", + " Region: \"zone_1\"\tRelError: 2.23036e-05\tAbsError: 4.83607e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21645e-05\tAbsError: 2.37427e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39124e-07\tAbsError: 4.83369e-05\n", + " Region: \"zone_3\"\tRelError: 2.27745e-04\tAbsError: 3.69775e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12670e-06\tAbsError: 1.72736e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.15245e-06\tAbsError: 1.97039e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23327e-04\tAbsError: 2.46197e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39176e-07\tAbsError: 4.83551e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:24\u001b[0m.\u001b[1;36m900\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.7000000000000001\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.85426e-03\tAbsError: 1.14136e+11\n", + " Region: \"zone_1\"\tRelError: 6.76752e-05\tAbsError: 2.36054e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.76074e-05\tAbsError: 2.24599e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.78070e-08\tAbsError: 2.35829e-05\n", + " Region: \"zone_3\"\tRelError: 2.78659e-03\tAbsError: 1.14136e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17375e-06\tAbsError: 5.74776e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.14053e-06\tAbsError: 5.66581e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78221e-03\tAbsError: 2.49675e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.78330e-08\tAbsError: 2.35924e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 9.50080e-04\tAbsError: 1.03863e+11\n", + " Region: \"zone_1\"\tRelError: 2.85910e-04\tAbsError: 3.37412e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.85814e-04\tAbsError: 4.14946e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.68675e-08\tAbsError: 3.36997e-05\n", + " Region: \"zone_3\"\tRelError: 6.64170e-04\tAbsError: 1.03863e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.88184e-06\tAbsError: 5.40187e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.85553e-06\tAbsError: 4.98443e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.56335e-04\tAbsError: 4.30256e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.69043e-08\tAbsError: 3.37128e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:26\u001b[0m.\u001b[1;36m048\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:26\u001b[0m.\u001b[1;36m080\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.0 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:26\u001b[0m.\u001b[1;36m119\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.25000e-04\tAbsError: 4.75549e+10\n", + " Region: \"zone_1\"\tRelError: 1.99583e-05\tAbsError: 5.32788e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.99431e-05\tAbsError: 2.25774e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52698e-08\tAbsError: 5.30530e-06\n", + " Region: \"zone_3\"\tRelError: 2.05042e-04\tAbsError: 4.75549e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.31012e-06\tAbsError: 2.68418e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.30114e-06\tAbsError: 2.07131e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.00415e-04\tAbsError: 2.37542e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52742e-08\tAbsError: 5.30684e-06\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.94222e+01\tAbsError: 1.62190e+16\n", + " Region: \"zone_1\"\tRelError: 2.76662e+01\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76662e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.29578e-10\tAbsError: 1.49268e-07\n", + " Region: \"zone_3\"\tRelError: 1.75598e+00\tAbsError: 1.62190e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69267e-01\tAbsError: 8.18784e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.68971e-01\tAbsError: 8.03117e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17740e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.29628e-10\tAbsError: 1.49286e-07\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.04232e-03\tAbsError: 4.27220e+10\n", + " Region: \"zone_1\"\tRelError: 2.46914e-05\tAbsError: 4.94110e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.46772e-05\tAbsError: 8.59123e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41822e-08\tAbsError: 4.93251e-06\n", + " Region: \"zone_3\"\tRelError: 1.01763e-03\tAbsError: 4.27220e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.14485e-07\tAbsError: 2.15406e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.99005e-07\tAbsError: 2.11814e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01600e-03\tAbsError: 9.49058e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41877e-08\tAbsError: 4.93449e-06\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 3.25927e-04\tAbsError: 3.72018e+10\n", + " Region: \"zone_1\"\tRelError: 9.80813e-05\tAbsError: 7.68282e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 9.80593e-05\tAbsError: 1.46928e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20415e-08\tAbsError: 7.66812e-06\n", + " Region: \"zone_3\"\tRelError: 2.27846e-04\tAbsError: 3.72018e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36089e-06\tAbsError: 1.97599e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34801e-06\tAbsError: 1.74420e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25115e-04\tAbsError: 1.52180e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20501e-08\tAbsError: 7.67121e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.14608e+03\tAbsError: 7.70037e+17\n", + " Region: \"zone_1\"\tRelError: 3.19069e+01\tAbsError: 8.44807e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.19069e+01\tAbsError: 8.44806e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.48266e-11\tAbsError: 2.95006e-08\n", + " Region: \"zone_3\"\tRelError: 1.11417e+03\tAbsError: 7.70037e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.48445e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10104e+03\tAbsError: 4.21592e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.13482e+00\tAbsError: 8.44807e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.48621e-11\tAbsError: 2.95137e-08\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.07877e-05\tAbsError: 5.07473e+09\n", + " Region: \"zone_1\"\tRelError: 2.74585e-06\tAbsError: 3.27783e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73642e-06\tAbsError: 2.71292e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.42651e-09\tAbsError: 3.27512e-06\n", + " Region: \"zone_3\"\tRelError: 2.80418e-05\tAbsError: 5.07473e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.64686e-07\tAbsError: 2.90165e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.65753e-07\tAbsError: 2.17308e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.75020e-05\tAbsError: 2.83440e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.42815e-09\tAbsError: 3.27570e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:27\u001b[0m.\u001b[1;36m453\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:27\u001b[0m.\u001b[1;36m453\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7374999999999999\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.30254e-04\tAbsError: 8.94840e+09\n", + " Region: \"zone_1\"\tRelError: 5.45902e-06\tAbsError: 1.66915e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.45423e-06\tAbsError: 1.84279e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.79393e-09\tAbsError: 1.66731e-06\n", + " Region: \"zone_3\"\tRelError: 2.24795e-04\tAbsError: 8.94840e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.70555e-07\tAbsError: 4.50630e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.67655e-07\tAbsError: 4.44210e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24452e-04\tAbsError: 2.03358e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.79583e-09\tAbsError: 1.66801e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.57455e+00\tAbsError: 1.59389e+16\n", + " Region: \"zone_1\"\tRelError: 1.04759e+00\tAbsError: 1.06162e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04737e+00\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17045e-04\tAbsError: 7.53990e-02\n", + " Region: \"zone_3\"\tRelError: 1.52696e+00\tAbsError: 1.59389e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37511e-01\tAbsError: 7.87332e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.04735e-01\tAbsError: 8.06553e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84502e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17045e-04\tAbsError: 7.53990e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 7.72661e-05\tAbsError: 8.43440e+09\n", + " Region: \"zone_1\"\tRelError: 2.32650e-05\tAbsError: 2.49052e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32578e-05\tAbsError: 3.39814e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.14902e-09\tAbsError: 2.48712e-06\n", + " Region: \"zone_3\"\tRelError: 5.40011e-05\tAbsError: 8.43440e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.08161e-07\tAbsError: 4.47974e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.05735e-07\tAbsError: 3.95466e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.33800e-05\tAbsError: 3.51782e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.15190e-09\tAbsError: 2.48816e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:28\u001b[0m.\u001b[1;36m160\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.8\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 7.84156e+01\tAbsError: 5.47936e+17\n", + " Region: \"zone_1\"\tRelError: 4.40326e+01\tAbsError: 3.51503e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.40318e+01\tAbsError: 8.10225e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.80415e-04\tAbsError: 2.70481e-01\n", + " Region: \"zone_3\"\tRelError: 3.43830e+01\tAbsError: 5.47936e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.48014e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.23022e+01\tAbsError: 2.99922e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30800e+01\tAbsError: 8.10225e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.81664e-04\tAbsError: 2.70911e-01\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 7.44231e-05\tAbsError: 2.94597e+09\n", + " Region: \"zone_1\"\tRelError: 1.76441e-06\tAbsError: 3.86023e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76330e-06\tAbsError: 6.12245e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10815e-09\tAbsError: 3.85411e-07\n", + " Region: \"zone_3\"\tRelError: 7.26587e-05\tAbsError: 2.94597e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.61898e-08\tAbsError: 1.48485e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.50971e-08\tAbsError: 1.46112e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 7.25463e-05\tAbsError: 6.73509e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10859e-09\tAbsError: 3.85574e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:28\u001b[0m.\u001b[1;36m964\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: 0.85\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.37306e+01\tAbsError: 2.80943e+16\n", + " Region: \"zone_1\"\tRelError: 5.19223e+01\tAbsError: 4.22096e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.19223e+01\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52166e-09\tAbsError: 5.28680e-07\n", + " Region: \"zone_3\"\tRelError: 1.80829e+00\tAbsError: 2.80943e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.79526e-01\tAbsError: 1.40876e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.79080e-01\tAbsError: 1.40066e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49679e-01\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52185e-09\tAbsError: 5.28749e-07\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.14822e+00\tAbsError: 9.83178e+15\n", + " Region: \"zone_1\"\tRelError: 1.39457e-01\tAbsError: 7.32841e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39320e-01\tAbsError: 2.58400e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36592e-04\tAbsError: 4.74441e-02\n", + " Region: \"zone_3\"\tRelError: 1.00877e+00\tAbsError: 9.83178e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43427e-01\tAbsError: 4.83336e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.90483e-01\tAbsError: 4.99841e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74720e-01\tAbsError: 2.58193e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36592e-04\tAbsError: 4.74441e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.91796e+01\tAbsError: 8.00136e+16\n", + " Region: \"zone_1\"\tRelError: 1.61687e+01\tAbsError: 4.09548e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61687e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75011e-09\tAbsError: 6.08861e-07\n", + " Region: \"zone_3\"\tRelError: 3.01093e+00\tAbsError: 8.00136e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.66958e-01\tAbsError: 4.00295e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.65547e-01\tAbsError: 3.99841e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47843e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75082e-09\tAbsError: 6.09112e-07\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.27390e+04\tAbsError: 1.60623e+17\n", + " Region: \"zone_1\"\tRelError: 7.10484e+00\tAbsError: 2.18687e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 7.09880e+00\tAbsError: 7.72092e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.04153e-03\tAbsError: 2.10967e+00\n", + " Region: \"zone_3\"\tRelError: 1.27319e+04\tAbsError: 1.60623e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.56840e+03\tAbsError: 8.48442e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.78850e+03\tAbsError: 7.57789e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74960e+02\tAbsError: 7.72115e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.04153e-03\tAbsError: 2.10967e+00\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.07467e+00\tAbsError: 2.93721e+16\n", + " Region: \"zone_1\"\tRelError: 4.84260e-01\tAbsError: 1.51192e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.83918e-01\tAbsError: 3.22431e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.42489e-04\tAbsError: 1.18949e-01\n", + " Region: \"zone_3\"\tRelError: 1.59041e+00\tAbsError: 2.93721e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.54708e-01\tAbsError: 1.48386e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.21421e-01\tAbsError: 1.45335e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13935e-01\tAbsError: 3.22432e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.42489e-04\tAbsError: 1.18949e-01\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.87370e+01\tAbsError: 1.65062e+17\n", + " Region: \"zone_1\"\tRelError: 2.01385e+01\tAbsError: 4.23836e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01385e+01\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.42729e-10\tAbsError: 1.19199e-07\n", + " Region: \"zone_3\"\tRelError: 3.85984e+01\tAbsError: 1.65062e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.75626e-01\tAbsError: 8.33506e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.72789e-01\tAbsError: 8.17119e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.70500e+01\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.42869e-10\tAbsError: 1.19251e-07\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 9.17087e-01\tAbsError: 2.70112e+15\n", + " Region: \"zone_1\"\tRelError: 4.13278e-01\tAbsError: 1.18036e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.12964e-01\tAbsError: 9.16529e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.13541e-04\tAbsError: 1.08871e-01\n", + " Region: \"zone_3\"\tRelError: 5.03809e-01\tAbsError: 2.70112e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.83333e-01\tAbsError: 1.43386e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03452e-01\tAbsError: 1.26726e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16711e-01\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.13541e-04\tAbsError: 1.08871e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.23024e+00\tAbsError: 7.24788e+16\n", + " Region: \"zone_1\"\tRelError: 2.89301e-01\tAbsError: 2.81842e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88577e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.23562e-04\tAbsError: 2.51079e-01\n", + " Region: \"zone_3\"\tRelError: 2.94094e+00\tAbsError: 7.24788e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.29061e-01\tAbsError: 3.72143e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.83761e-01\tAbsError: 3.52645e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62740e+00\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.23562e-04\tAbsError: 2.51079e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.19207e+03\tAbsError: 3.54754e+16\n", + " Region: \"zone_1\"\tRelError: 2.44560e+00\tAbsError: 1.38996e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.44181e+00\tAbsError: 7.29586e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.78597e-03\tAbsError: 1.31700e+00\n", + " Region: \"zone_3\"\tRelError: 2.18963e+03\tAbsError: 3.54754e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.53288e+01\tAbsError: 1.56750e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.11148e+03\tAbsError: 1.98005e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.81772e+00\tAbsError: 7.29586e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.78597e-03\tAbsError: 1.31700e+00\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.60243e+00\tAbsError: 1.89495e+16\n", + " Region: \"zone_1\"\tRelError: 1.77181e-01\tAbsError: 1.01034e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76965e-01\tAbsError: 2.58752e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16453e-04\tAbsError: 7.51590e-02\n", + " Region: \"zone_3\"\tRelError: 1.42525e+00\tAbsError: 1.89495e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.69075e-01\tAbsError: 9.52361e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.16569e-01\tAbsError: 9.42585e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.39388e-01\tAbsError: 2.51407e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16453e-04\tAbsError: 7.51590e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.58947e+01\tAbsError: 1.57768e+17\n", + " Region: \"zone_1\"\tRelError: 2.28018e+01\tAbsError: 3.32976e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.28010e+01\tAbsError: 3.24492e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.66627e-04\tAbsError: 3.00527e-01\n", + " Region: \"zone_3\"\tRelError: 3.09290e+00\tAbsError: 1.57768e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.36113e-01\tAbsError: 7.69438e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.76306e-01\tAbsError: 8.08240e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77961e+00\tAbsError: 3.24492e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.66953e-04\tAbsError: 3.00640e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.27279e-01\tAbsError: 8.17053e+14\n", + " Region: \"zone_1\"\tRelError: 1.09940e-01\tAbsError: 2.21034e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09304e-01\tAbsError: 3.29075e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.36020e-04\tAbsError: 2.20705e-01\n", + " Region: \"zone_3\"\tRelError: 3.17339e-01\tAbsError: 8.17053e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.72653e-02\tAbsError: 1.99598e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.68899e-02\tAbsError: 6.17455e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42547e-01\tAbsError: 3.29140e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.36020e-04\tAbsError: 2.20705e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 5.71850e+00\tAbsError: 4.10464e+16\n", + " Region: \"zone_1\"\tRelError: 1.82923e-01\tAbsError: 1.08958e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82684e-01\tAbsError: 2.58969e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39429e-04\tAbsError: 8.30609e-02\n", + " Region: \"zone_3\"\tRelError: 5.53558e+00\tAbsError: 4.10464e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16071e-01\tAbsError: 2.08924e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.47287e-01\tAbsError: 2.01540e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.77198e+00\tAbsError: 2.46271e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39429e-04\tAbsError: 8.30609e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.51342e+03\tAbsError: 5.86099e+15\n", + " Region: \"zone_1\"\tRelError: 3.62107e-01\tAbsError: 3.26424e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.61364e-01\tAbsError: 6.81820e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.42885e-04\tAbsError: 2.58242e-01\n", + " Region: \"zone_3\"\tRelError: 1.51306e+03\tAbsError: 5.86099e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13144e+01\tAbsError: 3.40516e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.48998e+03\tAbsError: 2.45583e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76054e+00\tAbsError: 6.81820e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.42885e-04\tAbsError: 2.58242e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.55040e+00\tAbsError: 5.89714e+15\n", + " Region: \"zone_1\"\tRelError: 7.75093e-01\tAbsError: 4.04644e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.75009e-01\tAbsError: 1.10524e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.47082e-05\tAbsError: 2.94120e-02\n", + " Region: \"zone_3\"\tRelError: 7.75306e-01\tAbsError: 5.89714e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.03985e-01\tAbsError: 3.29311e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.22727e-01\tAbsError: 2.60404e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.48510e-01\tAbsError: 1.10525e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.47183e-05\tAbsError: 2.94155e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.17180e+01\tAbsError: 9.85875e+16\n", + " Region: \"zone_1\"\tRelError: 8.81208e+00\tAbsError: 6.64188e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.81197e+00\tAbsError: 2.58840e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16908e-04\tAbsError: 4.05347e-02\n", + " Region: \"zone_3\"\tRelError: 2.90588e+00\tAbsError: 9.85875e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.07353e-01\tAbsError: 5.11756e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.24050e-01\tAbsError: 4.74119e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17436e+00\tAbsError: 2.25833e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16908e-04\tAbsError: 4.05347e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.01035e-01\tAbsError: 1.64733e+14\n", + " Region: \"zone_1\"\tRelError: 2.03094e-01\tAbsError: 1.60100e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03048e-01\tAbsError: 7.96658e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.59052e-05\tAbsError: 1.59303e-02\n", + " Region: \"zone_3\"\tRelError: 4.97941e-01\tAbsError: 1.64733e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17881e-03\tAbsError: 7.88164e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.07895e-03\tAbsError: 8.59168e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.85637e-01\tAbsError: 8.00849e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.59052e-05\tAbsError: 1.59303e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.06773e+00\tAbsError: 1.32751e+16\n", + " Region: \"zone_1\"\tRelError: 2.27618e-01\tAbsError: 5.11022e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27498e-01\tAbsError: 9.16524e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20880e-04\tAbsError: 4.19369e-02\n", + " Region: \"zone_3\"\tRelError: 8.40108e-01\tAbsError: 1.32751e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49254e-01\tAbsError: 7.44002e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.85993e-02\tAbsError: 5.83511e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.12131e-01\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23429e-04\tAbsError: 4.28226e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.31683e+02\tAbsError: 3.11077e+15\n", + " Region: \"zone_1\"\tRelError: 3.18041e-01\tAbsError: 8.94605e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.17964e-01\tAbsError: 6.27478e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.68524e-05\tAbsError: 2.67127e-02\n", + " Region: \"zone_3\"\tRelError: 6.31365e+02\tAbsError: 3.11077e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.81123e+02\tAbsError: 2.01746e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.49993e+02\tAbsError: 1.09331e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49281e-01\tAbsError: 6.27479e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.72517e-05\tAbsError: 2.68546e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.44266e-01\tAbsError: 1.36430e+15\n", + " Region: \"zone_1\"\tRelError: 8.15698e-02\tAbsError: 1.78334e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.10566e-02\tAbsError: 3.17930e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.13188e-04\tAbsError: 1.78016e-01\n", + " Region: \"zone_3\"\tRelError: 1.62696e-01\tAbsError: 1.36430e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.03044e-02\tAbsError: 6.13669e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.70709e-02\tAbsError: 7.50632e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.48059e-02\tAbsError: 3.46308e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.14497e-04\tAbsError: 1.78466e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.74758e+00\tAbsError: 2.57576e+16\n", + " Region: \"zone_1\"\tRelError: 1.88051e+00\tAbsError: 5.94876e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88037e+00\tAbsError: 1.13357e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38878e-04\tAbsError: 4.81519e-02\n", + " Region: \"zone_3\"\tRelError: 8.67068e-01\tAbsError: 2.57576e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.39441e-01\tAbsError: 1.28707e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.19210e-02\tAbsError: 1.28870e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.65567e-01\tAbsError: 1.13359e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39063e-04\tAbsError: 4.82151e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.04323e-01\tAbsError: 1.53102e+13\n", + " Region: \"zone_1\"\tRelError: 3.15774e-02\tAbsError: 7.15567e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.15568e-02\tAbsError: 7.10876e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.05999e-05\tAbsError: 7.14856e-03\n", + " Region: \"zone_3\"\tRelError: 7.27454e-02\tAbsError: 1.53102e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94207e-04\tAbsError: 7.65839e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.98721e-04\tAbsError: 7.65181e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.15319e-02\tAbsError: 7.17354e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.06009e-05\tAbsError: 7.14900e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.91937e-01\tAbsError: 2.33353e+15\n", + " Region: \"zone_1\"\tRelError: 2.61363e-02\tAbsError: 3.15290e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52274e-02\tAbsError: 2.65917e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.08859e-04\tAbsError: 3.15024e-01\n", + " Region: \"zone_3\"\tRelError: 2.65801e-01\tAbsError: 2.33353e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.40034e-02\tAbsError: 1.23195e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.91867e-03\tAbsError: 1.10158e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20969e-01\tAbsError: 2.95967e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.10098e-04\tAbsError: 3.15450e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.10441e+03\tAbsError: 5.35337e+14\n", + " Region: \"zone_1\"\tRelError: 9.42351e-02\tAbsError: 8.38676e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.41563e-02\tAbsError: 5.64831e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.87648e-05\tAbsError: 2.73845e-02\n", + " Region: \"zone_3\"\tRelError: 1.10432e+03\tAbsError: 5.35337e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.93453e+01\tAbsError: 2.95909e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03488e+03\tAbsError: 2.39428e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.44823e-02\tAbsError: 5.64832e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.87648e-05\tAbsError: 2.73845e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.35503e+00\tAbsError: 2.07480e+14\n", + " Region: \"zone_1\"\tRelError: 7.11098e-02\tAbsError: 1.10133e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.10782e-02\tAbsError: 5.63937e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.15856e-05\tAbsError: 1.09569e-02\n", + " Region: \"zone_3\"\tRelError: 1.28392e+00\tAbsError: 2.07480e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.41215e-03\tAbsError: 1.04257e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.22201e-03\tAbsError: 1.03223e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27526e+00\tAbsError: 5.74799e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.16113e-05\tAbsError: 1.09655e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.47364e-02\tAbsError: 3.87371e+15\n", + " Region: \"zone_1\"\tRelError: 3.75014e-02\tAbsError: 2.89882e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.66654e-02\tAbsError: 2.01080e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.36024e-04\tAbsError: 2.89680e-01\n", + " Region: \"zone_3\"\tRelError: 3.72350e-02\tAbsError: 3.87371e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.20691e-02\tAbsError: 2.03069e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.52489e-03\tAbsError: 1.84303e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.80346e-03\tAbsError: 2.27636e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.37600e-04\tAbsError: 2.90215e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.82885e-02\tAbsError: 7.75343e+12\n", + " Region: \"zone_1\"\tRelError: 1.74263e-02\tAbsError: 1.11082e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74231e-02\tAbsError: 3.27682e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.18949e-06\tAbsError: 1.10754e-03\n", + " Region: \"zone_3\"\tRelError: 4.08622e-02\tAbsError: 7.75343e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.01160e-04\tAbsError: 3.88269e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.99390e-04\tAbsError: 3.87074e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.02585e-02\tAbsError: 3.34987e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.19059e-06\tAbsError: 1.10796e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.68338e-01\tAbsError: 7.28836e+14\n", + " Region: \"zone_1\"\tRelError: 4.44613e-02\tAbsError: 2.04423e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44025e-02\tAbsError: 6.98557e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87704e-05\tAbsError: 2.03724e-02\n", + " Region: \"zone_3\"\tRelError: 4.23877e-01\tAbsError: 7.28836e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89975e-03\tAbsError: 3.57624e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.06394e-03\tAbsError: 3.71212e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.13854e-01\tAbsError: 7.63149e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87832e-05\tAbsError: 2.03761e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.58513e+03\tAbsError: 4.66560e+14\n", + " Region: \"zone_1\"\tRelError: 7.45378e-02\tAbsError: 5.71757e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.45147e-02\tAbsError: 4.91589e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.30854e-05\tAbsError: 8.01676e-03\n", + " Region: \"zone_3\"\tRelError: 4.58505e+03\tAbsError: 4.66560e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.41603e+03\tAbsError: 2.81976e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.68952e+02\tAbsError: 1.84584e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.49020e-02\tAbsError: 4.91590e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.30885e-05\tAbsError: 8.01786e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.38704e-01\tAbsError: 1.58138e+13\n", + " Region: \"zone_1\"\tRelError: 8.45115e-03\tAbsError: 5.40315e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.43558e-03\tAbsError: 4.28698e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55636e-05\tAbsError: 5.39886e-03\n", + " Region: \"zone_3\"\tRelError: 1.30253e-01\tAbsError: 1.58138e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.25100e-04\tAbsError: 7.95923e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.29664e-04\tAbsError: 7.85456e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29583e-01\tAbsError: 4.48645e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55670e-05\tAbsError: 5.40013e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.85689e-01\tAbsError: 1.00717e+15\n", + " Region: \"zone_1\"\tRelError: 3.82557e-01\tAbsError: 1.71364e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.82508e-01\tAbsError: 5.45957e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.92961e-05\tAbsError: 1.70818e-02\n", + " Region: \"zone_3\"\tRelError: 4.03132e-01\tAbsError: 1.00717e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.85041e-03\tAbsError: 4.92208e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.97229e-03\tAbsError: 5.14960e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.97260e-01\tAbsError: 5.50253e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.93058e-05\tAbsError: 1.70845e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.09210e-02\tAbsError: 1.22286e+12\n", + " Region: \"zone_1\"\tRelError: 3.28469e-03\tAbsError: 4.72819e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.28333e-03\tAbsError: 4.87030e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36013e-06\tAbsError: 4.72332e-04\n", + " Region: \"zone_3\"\tRelError: 7.63634e-03\tAbsError: 1.22286e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.75678e-05\tAbsError: 6.11672e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.73305e-05\tAbsError: 6.11193e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.54008e-03\tAbsError: 5.02425e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36049e-06\tAbsError: 4.72455e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.64410e-02\tAbsError: 6.34524e+13\n", + " Region: \"zone_1\"\tRelError: 6.01943e-03\tAbsError: 8.87148e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.99386e-03\tAbsError: 6.06051e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.55757e-05\tAbsError: 8.86542e-03\n", + " Region: \"zone_3\"\tRelError: 6.04216e-02\tAbsError: 6.34524e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43427e-04\tAbsError: 3.11581e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.51084e-04\tAbsError: 3.22943e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95015e-02\tAbsError: 6.26485e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.55822e-05\tAbsError: 8.86737e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.24154e+02\tAbsError: 1.03613e+14\n", + " Region: \"zone_1\"\tRelError: 5.67613e-02\tAbsError: 5.05890e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.67322e-02\tAbsError: 4.04903e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.90799e-05\tAbsError: 1.00988e-02\n", + " Region: \"zone_3\"\tRelError: 4.24097e+02\tAbsError: 1.03613e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.35907e+02\tAbsError: 6.68265e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.88132e+02\tAbsError: 3.67861e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.71504e-02\tAbsError: 4.04904e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.90803e-05\tAbsError: 1.00989e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.01928e-01\tAbsError: 8.46773e+13\n", + " Region: \"zone_1\"\tRelError: 5.24736e-02\tAbsError: 7.99199e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.24506e-02\tAbsError: 4.86695e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.30504e-05\tAbsError: 7.98712e-03\n", + " Region: \"zone_3\"\tRelError: 4.94541e-02\tAbsError: 8.46773e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.53589e-04\tAbsError: 4.13669e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.44812e-04\tAbsError: 4.33105e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.89326e-02\tAbsError: 4.90616e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.30517e-05\tAbsError: 7.98725e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.04270e-01\tAbsError: 9.65405e+12\n", + " Region: \"zone_1\"\tRelError: 5.81690e-03\tAbsError: 6.92855e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.81491e-03\tAbsError: 2.15570e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99001e-06\tAbsError: 6.90699e-04\n", + " Region: \"zone_3\"\tRelError: 9.84527e-02\tAbsError: 9.65405e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.00209e-04\tAbsError: 4.86351e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.97989e-04\tAbsError: 4.79053e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.80525e-02\tAbsError: 2.33977e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99059e-06\tAbsError: 6.90923e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.38843e-03\tAbsError: 5.18838e+11\n", + " Region: \"zone_1\"\tRelError: 1.31867e-03\tAbsError: 9.39018e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31840e-03\tAbsError: 1.99779e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69826e-07\tAbsError: 9.37020e-05\n", + " Region: \"zone_3\"\tRelError: 3.06976e-03\tAbsError: 5.18838e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95362e-05\tAbsError: 2.68345e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.93671e-05\tAbsError: 2.50493e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.03058e-03\tAbsError: 2.07424e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69859e-07\tAbsError: 9.37138e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.75673e-02\tAbsError: 3.32993e+13\n", + " Region: \"zone_1\"\tRelError: 3.52548e-03\tAbsError: 1.20689e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52200e-03\tAbsError: 3.09455e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47154e-06\tAbsError: 1.20380e-03\n", + " Region: \"zone_3\"\tRelError: 3.40418e-02\tAbsError: 3.32993e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47698e-04\tAbsError: 1.63796e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.38649e-04\tAbsError: 1.69197e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35520e-02\tAbsError: 3.11273e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47235e-06\tAbsError: 1.20402e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.03697e+00\tAbsError: 2.30736e+13\n", + " Region: \"zone_1\"\tRelError: 4.14534e-02\tAbsError: 4.56411e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.14090e-02\tAbsError: 3.02176e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.44109e-05\tAbsError: 1.54235e-02\n", + " Region: \"zone_3\"\tRelError: 1.99551e+00\tAbsError: 2.30736e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.82589e-01\tAbsError: 5.66552e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.71463e-01\tAbsError: 1.74081e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.14155e-02\tAbsError: 3.02178e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.44109e-05\tAbsError: 1.54235e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.65318e-02\tAbsError: 1.29680e+12\n", + " Region: \"zone_1\"\tRelError: 9.39367e-04\tAbsError: 3.35060e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.38402e-04\tAbsError: 2.76893e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.64479e-07\tAbsError: 3.34783e-04\n", + " Region: \"zone_3\"\tRelError: 1.55924e-02\tAbsError: 1.29680e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.69684e-05\tAbsError: 6.52102e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.67030e-05\tAbsError: 6.44698e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55378e-02\tAbsError: 3.04330e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.64659e-07\tAbsError: 3.34839e-04\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 9.50080e-04\tAbsError: 1.03863e+11\n", + " Region: \"zone_1\"\tRelError: 2.85910e-04\tAbsError: 3.37412e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.85814e-04\tAbsError: 4.14946e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.68675e-08\tAbsError: 3.36997e-05\n", + " Region: \"zone_3\"\tRelError: 6.64170e-04\tAbsError: 1.03863e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.88184e-06\tAbsError: 5.40187e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.85553e-06\tAbsError: 4.98443e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.56335e-04\tAbsError: 4.30256e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.69043e-08\tAbsError: 3.37128e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.29267e-02\tAbsError: 4.93318e+13\n", + " Region: \"zone_1\"\tRelError: 3.14335e-02\tAbsError: 1.02095e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.14305e-02\tAbsError: 2.65530e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.93828e-06\tAbsError: 1.01830e-03\n", + " Region: \"zone_3\"\tRelError: 3.14932e-02\tAbsError: 4.93318e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61086e-04\tAbsError: 2.40538e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.48388e-04\tAbsError: 2.52780e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.11808e-02\tAbsError: 2.67923e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.93884e-06\tAbsError: 1.01846e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.71378e+00\tAbsError: 2.54547e+13\n", + " Region: \"zone_1\"\tRelError: 3.31338e-02\tAbsError: 4.41787e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.30812e-02\tAbsError: 2.58991e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.26319e-05\tAbsError: 1.82796e-02\n", + " Region: \"zone_3\"\tRelError: 2.68064e+00\tAbsError: 2.54547e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.62813e+00\tAbsError: 5.74020e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.89886e-02\tAbsError: 1.97145e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.34704e-02\tAbsError: 2.58028e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.26319e-05\tAbsError: 1.82796e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.47008e-03\tAbsError: 4.77215e+12\n", + " Region: \"zone_1\"\tRelError: 6.05494e-04\tAbsError: 5.38691e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.03946e-04\tAbsError: 4.25617e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54844e-06\tAbsError: 5.38265e-04\n", + " Region: \"zone_3\"\tRelError: 5.86458e-03\tAbsError: 4.77215e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.53153e-05\tAbsError: 2.34800e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.40122e-05\tAbsError: 2.42415e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.79371e-03\tAbsError: 4.28072e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54906e-06\tAbsError: 5.38488e-04\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 3.25927e-04\tAbsError: 3.72019e+10\n", + " Region: \"zone_1\"\tRelError: 9.80813e-05\tAbsError: 7.68282e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 9.80593e-05\tAbsError: 1.46928e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20415e-08\tAbsError: 7.66812e-06\n", + " Region: \"zone_3\"\tRelError: 2.27846e-04\tAbsError: 3.72019e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36089e-06\tAbsError: 1.97599e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34801e-06\tAbsError: 1.74420e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25115e-04\tAbsError: 1.52180e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20501e-08\tAbsError: 7.67121e-06\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 7.44715e-03\tAbsError: 5.94316e+11\n", + " Region: \"zone_1\"\tRelError: 4.20439e-04\tAbsError: 5.99657e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.20267e-04\tAbsError: 1.23145e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72057e-07\tAbsError: 5.98426e-05\n", + " Region: \"zone_3\"\tRelError: 7.02671e-03\tAbsError: 5.94316e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23784e-05\tAbsError: 2.99276e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.21874e-05\tAbsError: 2.95040e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.00197e-03\tAbsError: 1.35494e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72122e-07\tAbsError: 5.98657e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.04281e-02\tAbsError: 6.78073e+12\n", + " Region: \"zone_1\"\tRelError: 5.24513e-03\tAbsError: 4.79333e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.24375e-03\tAbsError: 3.45168e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37832e-06\tAbsError: 4.78987e-04\n", + " Region: \"zone_3\"\tRelError: 5.18295e-03\tAbsError: 6.78073e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17447e-05\tAbsError: 3.30909e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.00474e-05\tAbsError: 3.47164e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.13977e-03\tAbsError: 3.48155e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37885e-06\tAbsError: 4.79177e-04\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 6.40087e-01\tAbsError: 4.64252e+14\n", + " Region: \"zone_1\"\tRelError: 1.04847e-02\tAbsError: 1.27444e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01422e-02\tAbsError: 8.53133e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.42498e-04\tAbsError: 1.18912e-01\n", + " Region: \"zone_3\"\tRelError: 6.29603e-01\tAbsError: 4.64252e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.48953e-01\tAbsError: 1.12241e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.29352e-03\tAbsError: 4.53028e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.10140e-02\tAbsError: 8.53143e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.42498e-04\tAbsError: 1.18912e-01\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.65398e-03\tAbsError: 2.00158e+12\n", + " Region: \"zone_1\"\tRelError: 2.48909e-04\tAbsError: 1.00808e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.48620e-04\tAbsError: 1.66964e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89512e-07\tAbsError: 1.00641e-04\n", + " Region: \"zone_3\"\tRelError: 2.40507e-03\tAbsError: 2.00158e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50347e-05\tAbsError: 9.84888e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.44145e-05\tAbsError: 1.01669e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.37533e-03\tAbsError: 1.67974e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89623e-07\tAbsError: 1.00681e-04\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 7.72661e-05\tAbsError: 8.43440e+09\n", + " Region: \"zone_1\"\tRelError: 2.32650e-05\tAbsError: 2.49052e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32578e-05\tAbsError: 3.39814e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.14902e-09\tAbsError: 2.48712e-06\n", + " Region: \"zone_3\"\tRelError: 5.40011e-05\tAbsError: 8.43440e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.08161e-07\tAbsError: 4.47974e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.05735e-07\tAbsError: 3.95466e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.33800e-05\tAbsError: 3.51782e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.15190e-09\tAbsError: 2.48816e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:42\u001b[0m.\u001b[1;36m814\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.8\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.46366e-03\tAbsError: 1.06422e+11\n", + " Region: \"zone_1\"\tRelError: 8.28492e-05\tAbsError: 2.34015e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.27820e-05\tAbsError: 2.30847e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.72160e-08\tAbsError: 2.33784e-05\n", + " Region: \"zone_3\"\tRelError: 1.38081e-03\tAbsError: 1.06422e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21682e-06\tAbsError: 5.35020e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.18773e-06\tAbsError: 5.29201e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37634e-03\tAbsError: 2.53433e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.72421e-08\tAbsError: 2.33878e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.44129e-03\tAbsError: 2.98553e+12\n", + " Region: \"zone_1\"\tRelError: 2.22864e-03\tAbsError: 8.64925e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.22839e-03\tAbsError: 1.41665e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.48478e-07\tAbsError: 8.63509e-05\n", + " Region: \"zone_3\"\tRelError: 2.21265e-03\tAbsError: 2.98553e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.76851e-06\tAbsError: 1.45688e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.99704e-06\tAbsError: 1.52864e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19363e-03\tAbsError: 1.42960e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.48573e-07\tAbsError: 8.63857e-05\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 4.02180e-01\tAbsError: 4.61203e+14\n", + " Region: \"zone_1\"\tRelError: 2.40938e-02\tAbsError: 1.58654e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36377e-02\tAbsError: 2.27164e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.56101e-04\tAbsError: 1.58426e-01\n", + " Region: \"zone_3\"\tRelError: 3.78087e-01\tAbsError: 4.61203e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43391e-01\tAbsError: 2.70194e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.07294e-03\tAbsError: 4.34183e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29167e-01\tAbsError: 2.34103e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.56101e-04\tAbsError: 1.58426e-01\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 5.36228e-04\tAbsError: 3.67963e+11\n", + " Region: \"zone_1\"\tRelError: 5.03370e-05\tAbsError: 3.69568e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.02308e-05\tAbsError: 3.27141e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06219e-07\tAbsError: 3.69241e-05\n", + " Region: \"zone_3\"\tRelError: 4.85891e-04\tAbsError: 3.67963e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.74381e-06\tAbsError: 1.81082e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.63918e-06\tAbsError: 1.86881e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.80402e-04\tAbsError: 3.29054e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06263e-07\tAbsError: 3.69404e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 5.30904e-04\tAbsError: 3.95714e+10\n", + " Region: \"zone_1\"\tRelError: 3.00411e-05\tAbsError: 4.94346e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.00269e-05\tAbsError: 8.75793e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41879e-08\tAbsError: 4.93470e-06\n", + " Region: \"zone_3\"\tRelError: 5.00863e-04\tAbsError: 3.95714e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.25148e-07\tAbsError: 1.99182e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.11326e-07\tAbsError: 1.96532e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.99212e-04\tAbsError: 9.55948e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41934e-08\tAbsError: 4.93667e-06\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 8.74059e-04\tAbsError: 5.30655e+11\n", + " Region: \"zone_1\"\tRelError: 4.39153e-04\tAbsError: 3.27217e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.39059e-04\tAbsError: 2.68115e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.40808e-08\tAbsError: 3.26949e-05\n", + " Region: \"zone_3\"\tRelError: 4.34906e-04\tAbsError: 5.30655e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.71117e-06\tAbsError: 2.59051e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.58373e-06\tAbsError: 2.71604e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.31517e-04\tAbsError: 2.70335e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.41189e-08\tAbsError: 3.27090e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.91796e+01\tAbsError: 8.00136e+16\n", + " Region: \"zone_1\"\tRelError: 1.61687e+01\tAbsError: 4.09548e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61687e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75011e-09\tAbsError: 6.08861e-07\n", + " Region: \"zone_3\"\tRelError: 3.01093e+00\tAbsError: 8.00136e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.66958e-01\tAbsError: 4.00295e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.65547e-01\tAbsError: 3.99841e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47843e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75082e-09\tAbsError: 6.09112e-07\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 2.10193e-01\tAbsError: 7.99688e+13\n", + " Region: \"zone_1\"\tRelError: 2.05561e-02\tAbsError: 5.86602e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05395e-02\tAbsError: 9.98920e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65822e-05\tAbsError: 5.76613e-03\n", + " Region: \"zone_3\"\tRelError: 1.89637e-01\tAbsError: 7.99688e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16339e-02\tAbsError: 2.81452e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13621e-02\tAbsError: 5.18236e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66624e-01\tAbsError: 1.01086e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65822e-05\tAbsError: 5.76613e-03\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.84514e-04\tAbsError: 1.29331e+11\n", + " Region: \"zone_1\"\tRelError: 1.73204e-05\tAbsError: 7.90813e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72976e-05\tAbsError: 1.15361e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27155e-08\tAbsError: 7.89660e-06\n", + " Region: \"zone_3\"\tRelError: 1.67193e-04\tAbsError: 1.29331e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.72276e-07\tAbsError: 6.36462e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.31421e-07\tAbsError: 6.56851e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65267e-04\tAbsError: 1.16052e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27252e-08\tAbsError: 7.90006e-06\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.18197e-04\tAbsError: 8.36035e+09\n", + " Region: \"zone_1\"\tRelError: 6.69283e-06\tAbsError: 1.66315e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.68805e-06\tAbsError: 1.89367e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.77633e-09\tAbsError: 1.66126e-06\n", + " Region: \"zone_3\"\tRelError: 1.11504e-04\tAbsError: 8.36035e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74281e-07\tAbsError: 4.20320e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.71702e-07\tAbsError: 4.15715e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11154e-04\tAbsError: 2.06535e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.77819e-09\tAbsError: 1.66195e-06\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 3.08060e-04\tAbsError: 1.92461e+11\n", + " Region: \"zone_1\"\tRelError: 1.54735e-04\tAbsError: 6.82159e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54716e-04\tAbsError: 9.70786e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.96010e-08\tAbsError: 6.81188e-06\n", + " Region: \"zone_3\"\tRelError: 1.53325e-04\tAbsError: 1.92461e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.27921e-07\tAbsError: 9.39467e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.79266e-07\tAbsError: 9.85140e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52098e-04\tAbsError: 9.78772e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.96093e-08\tAbsError: 6.81486e-06\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 2.86064e-02\tAbsError: 5.75937e+12\n", + " Region: \"zone_1\"\tRelError: 2.99410e-03\tAbsError: 5.58282e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97805e-03\tAbsError: 3.44900e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60457e-05\tAbsError: 5.57937e-03\n", + " Region: \"zone_3\"\tRelError: 2.56123e-02\tAbsError: 5.75937e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.09545e-04\tAbsError: 3.17341e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.91803e-04\tAbsError: 2.58597e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.45949e-02\tAbsError: 3.59667e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60457e-05\tAbsError: 5.57937e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.23024e+00\tAbsError: 7.24788e+16\n", + " Region: \"zone_1\"\tRelError: 2.89301e-01\tAbsError: 2.81842e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88577e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.23562e-04\tAbsError: 2.51079e-01\n", + " Region: \"zone_3\"\tRelError: 2.94094e+00\tAbsError: 7.24788e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.29061e-01\tAbsError: 3.72143e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.83761e-01\tAbsError: 3.52645e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62740e+00\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.23562e-04\tAbsError: 2.51079e-01\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 4.13464e-05\tAbsError: 2.75069e+10\n", + " Region: \"zone_1\"\tRelError: 3.88379e-06\tAbsError: 2.55222e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87646e-06\tAbsError: 2.54121e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.33447e-09\tAbsError: 2.54968e-06\n", + " Region: \"zone_3\"\tRelError: 3.74626e-05\tAbsError: 2.75069e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05752e-07\tAbsError: 1.35376e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.97692e-07\tAbsError: 1.39693e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.70518e-05\tAbsError: 2.55608e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.33751e-09\tAbsError: 2.55078e-06\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 3.80937e-05\tAbsError: 2.74353e+09\n", + " Region: \"zone_1\"\tRelError: 2.15708e-06\tAbsError: 3.87099e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.15597e-06\tAbsError: 6.26710e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11116e-09\tAbsError: 3.86473e-07\n", + " Region: \"zone_3\"\tRelError: 3.59366e-05\tAbsError: 2.74353e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.72335e-08\tAbsError: 1.38052e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.62500e-08\tAbsError: 1.36301e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.58220e-05\tAbsError: 6.81530e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11160e-09\tAbsError: 3.86634e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:46\u001b[0m.\u001b[1;36m619\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.84375\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 6.77016e-05\tAbsError: 3.99340e+10\n", + " Region: \"zone_1\"\tRelError: 3.40211e-05\tAbsError: 2.24822e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40146e-05\tAbsError: 2.09384e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.46316e-09\tAbsError: 2.24613e-06\n", + " Region: \"zone_3\"\tRelError: 3.36805e-05\tAbsError: 3.99340e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.29073e-07\tAbsError: 1.94974e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.19573e-07\tAbsError: 2.04367e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.34254e-05\tAbsError: 2.11075e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.46585e-09\tAbsError: 2.24710e-06\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 1.82614e-02\tAbsError: 5.42297e+12\n", + " Region: \"zone_1\"\tRelError: 1.87149e-03\tAbsError: 7.19384e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86944e-03\tAbsError: 4.05300e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.05712e-06\tAbsError: 7.15331e-04\n", + " Region: \"zone_3\"\tRelError: 1.63899e-02\tAbsError: 5.42297e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.58853e-04\tAbsError: 2.64128e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.55286e-04\tAbsError: 2.78170e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52737e-02\tAbsError: 4.11046e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.05769e-06\tAbsError: 7.15531e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 5.71850e+00\tAbsError: 4.10464e+16\n", + " Region: \"zone_1\"\tRelError: 1.82923e-01\tAbsError: 1.08958e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82684e-01\tAbsError: 2.58969e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39429e-04\tAbsError: 8.30609e-02\n", + " Region: \"zone_3\"\tRelError: 5.53558e+00\tAbsError: 4.10464e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16071e-01\tAbsError: 2.08924e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.47287e-01\tAbsError: 2.01540e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.77198e+00\tAbsError: 2.46271e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39429e-04\tAbsError: 8.30609e-02\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 3.08921e-03\tAbsError: 6.82153e+11\n", + " Region: \"zone_1\"\tRelError: 3.22828e-04\tAbsError: 3.86240e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.21718e-04\tAbsError: 4.69129e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10938e-06\tAbsError: 3.85770e-04\n", + " Region: \"zone_3\"\tRelError: 2.76638e-03\tAbsError: 6.82153e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.99591e-05\tAbsError: 3.83463e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.96052e-05\tAbsError: 2.98691e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.62571e-03\tAbsError: 4.75594e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10983e-06\tAbsError: 3.85927e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.65151e+01\tAbsError: 1.51212e+17\n", + " Region: \"zone_1\"\tRelError: 1.06619e+01\tAbsError: 4.22092e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06619e+01\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.43092e-10\tAbsError: 1.19331e-07\n", + " Region: \"zone_3\"\tRelError: 5.85318e+00\tAbsError: 1.51212e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.74780e-01\tAbsError: 7.62193e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.72183e-01\tAbsError: 7.49931e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.30622e+00\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.43230e-10\tAbsError: 1.19382e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:48\u001b[0m.\u001b[1;36m483\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:48\u001b[0m.\u001b[1;36m515\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.05 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:48\u001b[0m.\u001b[1;36m554\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.06773e+00\tAbsError: 1.32751e+16\n", + " Region: \"zone_1\"\tRelError: 2.27618e-01\tAbsError: 5.11022e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27498e-01\tAbsError: 9.16524e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20880e-04\tAbsError: 4.19369e-02\n", + " Region: \"zone_3\"\tRelError: 8.40108e-01\tAbsError: 1.32751e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49254e-01\tAbsError: 7.44002e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.85993e-02\tAbsError: 5.83511e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.12131e-01\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23429e-04\tAbsError: 4.28226e-02\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 1.43003e-03\tAbsError: 3.74747e+11\n", + " Region: \"zone_1\"\tRelError: 1.47866e-04\tAbsError: 6.98200e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47666e-04\tAbsError: 2.50990e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00063e-07\tAbsError: 6.95690e-05\n", + " Region: \"zone_3\"\tRelError: 1.28216e-03\tAbsError: 3.74747e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.74306e-05\tAbsError: 2.06228e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.71733e-05\tAbsError: 1.68519e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20736e-03\tAbsError: 2.54594e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00104e-07\tAbsError: 6.95833e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:49\u001b[0m.\u001b[1;36m255\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:49\u001b[0m.\u001b[1;36m296\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.1 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:49\u001b[0m.\u001b[1;36m342\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.90454e+02\tAbsError: 2.04840e+18\n", + " Region: \"zone_1\"\tRelError: 1.53646e+02\tAbsError: 8.63296e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53646e+02\tAbsError: 8.63290e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70509e-09\tAbsError: 5.92742e-07\n", + " Region: \"zone_3\"\tRelError: 3.36809e+02\tAbsError: 2.04840e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 9.87637e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.22507e+02\tAbsError: 1.06076e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 5.30214e+00\tAbsError: 8.63291e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70580e-09\tAbsError: 5.92998e-07\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.62901e+00\tAbsError: 1.40999e+17\n", + " Region: \"zone_1\"\tRelError: 1.19110e+00\tAbsError: 3.28133e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19025e+00\tAbsError: 3.22431e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.53177e-04\tAbsError: 2.95890e-01\n", + " Region: \"zone_3\"\tRelError: 2.43791e+00\tAbsError: 1.40999e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.36448e-01\tAbsError: 6.92767e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.77757e-01\tAbsError: 7.17220e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12285e+00\tAbsError: 3.22432e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.53551e-04\tAbsError: 2.96020e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.91937e-01\tAbsError: 2.33353e+15\n", + " Region: \"zone_1\"\tRelError: 2.61363e-02\tAbsError: 3.15290e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52274e-02\tAbsError: 2.65917e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.08859e-04\tAbsError: 3.15024e-01\n", + " Region: \"zone_3\"\tRelError: 2.65801e-01\tAbsError: 2.33353e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.40034e-02\tAbsError: 1.23195e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.91867e-03\tAbsError: 1.10158e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20969e-01\tAbsError: 2.95967e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.10098e-04\tAbsError: 3.15450e-01\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 2.91465e-04\tAbsError: 6.57879e+10\n", + " Region: \"zone_1\"\tRelError: 3.04241e-05\tAbsError: 2.86234e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.03419e-05\tAbsError: 4.35410e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.21885e-08\tAbsError: 2.85798e-05\n", + " Region: \"zone_3\"\tRelError: 2.61040e-04\tAbsError: 6.57879e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.69838e-06\tAbsError: 3.81906e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.66414e-06\tAbsError: 2.75972e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.47596e-04\tAbsError: 4.41612e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.22066e-08\tAbsError: 2.85862e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.26061e+02\tAbsError: 4.05670e+18\n", + " Region: \"zone_1\"\tRelError: 3.13098e+02\tAbsError: 8.80546e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.13098e+02\tAbsError: 8.80541e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47483e-09\tAbsError: 5.12545e-07\n", + " Region: \"zone_3\"\tRelError: 2.12963e+02\tAbsError: 4.05670e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43587e+01\tAbsError: 1.96046e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.68409e+01\tAbsError: 2.09624e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21763e+02\tAbsError: 8.80543e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47544e-09\tAbsError: 5.12766e-07\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.00694e+02\tAbsError: 1.60088e+18\n", + " Region: \"zone_1\"\tRelError: 5.26463e+01\tAbsError: 6.03766e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.26448e+01\tAbsError: 8.30497e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50446e-03\tAbsError: 5.20716e-01\n", + " Region: \"zone_3\"\tRelError: 4.80481e+01\tAbsError: 1.60088e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.37446e+00\tAbsError: 7.93354e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.97778e+01\tAbsError: 8.07530e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88943e+01\tAbsError: 8.30498e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50569e-03\tAbsError: 5.21124e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.29329e+01\tAbsError: 8.98534e+16\n", + " Region: \"zone_1\"\tRelError: 3.00500e+00\tAbsError: 8.37435e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.00483e+00\tAbsError: 2.57434e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67274e-04\tAbsError: 5.80001e-02\n", + " Region: \"zone_3\"\tRelError: 9.92794e+00\tAbsError: 8.98534e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.09711e-01\tAbsError: 4.68434e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.31259e-01\tAbsError: 4.30101e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 9.18680e+00\tAbsError: 2.30390e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67274e-04\tAbsError: 5.80001e-02\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 1.10900e-04\tAbsError: 2.73373e+10\n", + " Region: \"zone_1\"\tRelError: 1.15094e-05\tAbsError: 6.20610e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14916e-05\tAbsError: 1.76149e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77965e-08\tAbsError: 6.18848e-06\n", + " Region: \"zone_3\"\tRelError: 9.93909e-05\tAbsError: 2.73373e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.73043e-06\tAbsError: 1.58419e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.71188e-06\tAbsError: 1.14954e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.39308e-05\tAbsError: 1.78713e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77992e-08\tAbsError: 6.18941e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.68338e-01\tAbsError: 7.28836e+14\n", + " Region: \"zone_1\"\tRelError: 4.44613e-02\tAbsError: 2.04423e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44025e-02\tAbsError: 6.98557e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87704e-05\tAbsError: 2.03724e-02\n", + " Region: \"zone_3\"\tRelError: 4.23877e-01\tAbsError: 7.28836e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89975e-03\tAbsError: 3.57624e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.06394e-03\tAbsError: 3.71212e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.13854e-01\tAbsError: 7.63149e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87832e-05\tAbsError: 2.03761e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 6.47092e+02\tAbsError: 3.51922e+18\n", + " Region: \"zone_1\"\tRelError: 2.63451e+02\tAbsError: 5.86890e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.63450e+02\tAbsError: 8.49344e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44670e-03\tAbsError: 5.01956e-01\n", + " Region: \"zone_3\"\tRelError: 3.83641e+02\tAbsError: 3.51922e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.70089e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.81832e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 3.65639e+02\tAbsError: 8.49344e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44736e-03\tAbsError: 5.02196e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.07342e+03\tAbsError: 2.97837e+17\n", + " Region: \"zone_1\"\tRelError: 2.56011e+01\tAbsError: 5.04749e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.55870e+01\tAbsError: 7.94526e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41420e-02\tAbsError: 4.96804e+00\n", + " Region: \"zone_3\"\tRelError: 3.04782e+03\tAbsError: 2.97837e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.25861e+01\tAbsError: 1.52164e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.03129e+03\tAbsError: 1.45673e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 3.92837e+00\tAbsError: 7.94551e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41420e-02\tAbsError: 4.96804e+00\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.76566e+00\tAbsError: 2.43207e+16\n", + " Region: \"zone_1\"\tRelError: 2.86332e+00\tAbsError: 4.95127e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.86321e+00\tAbsError: 1.10523e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10923e-04\tAbsError: 3.84604e-02\n", + " Region: \"zone_3\"\tRelError: 9.02346e-01\tAbsError: 2.43207e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42087e-01\tAbsError: 1.21709e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.47178e-02\tAbsError: 1.21498e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.95430e-01\tAbsError: 1.10525e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11265e-04\tAbsError: 3.85782e-02\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 2.56210e-05\tAbsError: 5.83108e+09\n", + " Region: \"zone_1\"\tRelError: 2.67249e-06\tAbsError: 2.19120e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66620e-06\tAbsError: 3.76776e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.29052e-09\tAbsError: 2.18743e-06\n", + " Region: \"zone_3\"\tRelError: 2.29485e-05\tAbsError: 5.83108e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.90368e-07\tAbsError: 3.44839e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.87141e-07\tAbsError: 2.38269e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17647e-05\tAbsError: 3.82222e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.29144e-09\tAbsError: 2.18776e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:52\u001b[0m.\u001b[1;36m734\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.2\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.64410e-02\tAbsError: 6.34524e+13\n", + " Region: \"zone_1\"\tRelError: 6.01943e-03\tAbsError: 8.87148e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.99386e-03\tAbsError: 6.06051e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.55757e-05\tAbsError: 8.86542e-03\n", + " Region: \"zone_3\"\tRelError: 6.04216e-02\tAbsError: 6.34524e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43427e-04\tAbsError: 3.11581e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.51084e-04\tAbsError: 3.22943e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95015e-02\tAbsError: 6.26485e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.55822e-05\tAbsError: 8.86737e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.28415e+02\tAbsError: 4.82050e+17\n", + " Region: \"zone_1\"\tRelError: 9.93520e+01\tAbsError: 5.45600e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 9.93367e+01\tAbsError: 8.15209e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52835e-02\tAbsError: 5.37448e+00\n", + " Region: \"zone_3\"\tRelError: 2.90632e+01\tAbsError: 4.82050e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.38294e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.43888e+01\tAbsError: 2.43756e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 5.65902e+00\tAbsError: 8.15218e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52835e-02\tAbsError: 5.37448e+00\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.49278e+01\tAbsError: 7.81245e+16\n", + " Region: \"zone_1\"\tRelError: 3.54128e+00\tAbsError: 2.67358e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53383e+00\tAbsError: 7.54578e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.45093e-03\tAbsError: 2.59812e+00\n", + " Region: \"zone_3\"\tRelError: 5.13865e+01\tAbsError: 7.81245e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.20613e+01\tAbsError: 4.02344e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.93310e+01\tAbsError: 3.78901e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 9.98674e+00\tAbsError: 7.54578e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.46007e-03\tAbsError: 2.60144e+00\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.33470e-01\tAbsError: 3.90416e+15\n", + " Region: \"zone_1\"\tRelError: 2.76645e-01\tAbsError: 2.96561e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.75790e-01\tAbsError: 2.14183e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.55252e-04\tAbsError: 2.96347e-01\n", + " Region: \"zone_3\"\tRelError: 5.68250e-02\tAbsError: 3.90416e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.39131e-02\tAbsError: 2.04896e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.08999e-03\tAbsError: 1.85520e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49651e-02\tAbsError: 2.43298e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.56812e-04\tAbsError: 2.96876e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.75673e-02\tAbsError: 3.32993e+13\n", + " Region: \"zone_1\"\tRelError: 3.52548e-03\tAbsError: 1.20689e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52200e-03\tAbsError: 3.09455e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47154e-06\tAbsError: 1.20380e-03\n", + " Region: \"zone_3\"\tRelError: 3.40418e-02\tAbsError: 3.32993e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47698e-04\tAbsError: 1.63796e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.38649e-04\tAbsError: 1.69197e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35520e-02\tAbsError: 3.11273e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47235e-06\tAbsError: 1.20402e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.15185e+01\tAbsError: 8.37847e+15\n", + " Region: \"zone_1\"\tRelError: 9.89196e+00\tAbsError: 4.09548e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.89196e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51739e-09\tAbsError: 5.27651e-07\n", + " Region: \"zone_3\"\tRelError: 1.62652e+00\tAbsError: 8.37847e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69532e-01\tAbsError: 4.63620e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69461e-01\tAbsError: 3.74226e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.75319e-02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51758e-09\tAbsError: 5.27715e-07\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.18889e+02\tAbsError: 1.14552e+17\n", + " Region: \"zone_1\"\tRelError: 5.40599e+00\tAbsError: 1.94512e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.40065e+00\tAbsError: 7.77584e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.33822e-03\tAbsError: 1.86737e+00\n", + " Region: \"zone_3\"\tRelError: 1.13483e+02\tAbsError: 1.14552e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.90797e+01\tAbsError: 7.79767e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.64811e+00\tAbsError: 3.65758e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 8.74990e+00\tAbsError: 7.77584e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.33822e-03\tAbsError: 1.86737e+00\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.25625e+03\tAbsError: 1.22730e+16\n", + " Region: \"zone_1\"\tRelError: 5.23435e-01\tAbsError: 1.23727e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.20080e-01\tAbsError: 7.09984e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.35587e-03\tAbsError: 1.16627e+00\n", + " Region: \"zone_3\"\tRelError: 1.25572e+03\tAbsError: 1.22730e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.14061e+02\tAbsError: 7.22075e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.14013e+03\tAbsError: 5.05229e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52613e+00\tAbsError: 7.09985e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.35587e-03\tAbsError: 1.16627e+00\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.12245e+00\tAbsError: 9.91584e+14\n", + " Region: \"zone_1\"\tRelError: 8.68623e-01\tAbsError: 1.80881e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.68571e-01\tAbsError: 5.61289e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.20373e-05\tAbsError: 1.80320e-02\n", + " Region: \"zone_3\"\tRelError: 2.53825e-01\tAbsError: 9.91584e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.10989e-03\tAbsError: 4.83044e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.24305e-03\tAbsError: 5.08540e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.47420e-01\tAbsError: 5.65576e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.20483e-05\tAbsError: 1.80351e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.47008e-03\tAbsError: 4.77215e+12\n", + " Region: \"zone_1\"\tRelError: 6.05494e-04\tAbsError: 5.38691e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.03946e-04\tAbsError: 4.25617e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54844e-06\tAbsError: 5.38265e-04\n", + " Region: \"zone_3\"\tRelError: 5.86458e-03\tAbsError: 4.77215e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.53153e-05\tAbsError: 2.34800e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.40122e-05\tAbsError: 2.42415e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.79371e-03\tAbsError: 4.28072e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54906e-06\tAbsError: 5.38488e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.94648e+00\tAbsError: 2.98429e+14\n", + " Region: \"zone_1\"\tRelError: 5.14527e-01\tAbsError: 9.09010e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.14354e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72975e-04\tAbsError: 6.01374e-02\n", + " Region: \"zone_3\"\tRelError: 1.43195e+00\tAbsError: 2.98429e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37879e-01\tAbsError: 1.45713e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32394e-01\tAbsError: 1.52715e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.15050e-02\tAbsError: 3.07641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72975e-04\tAbsError: 6.01374e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.95684e+02\tAbsError: 5.60954e+16\n", + " Region: \"zone_1\"\tRelError: 3.13909e+00\tAbsError: 2.03306e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.13346e+00\tAbsError: 7.35754e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.63340e-03\tAbsError: 1.95948e+00\n", + " Region: \"zone_3\"\tRelError: 9.92545e+02\tAbsError: 5.60954e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.47342e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.81191e+02\tAbsError: 2.13612e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34805e+00\tAbsError: 7.35755e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.63450e-03\tAbsError: 1.95990e+00\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.11329e+02\tAbsError: 6.64526e+15\n", + " Region: \"zone_1\"\tRelError: 5.94437e-01\tAbsError: 1.17140e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.94290e-01\tAbsError: 6.59600e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47237e-04\tAbsError: 5.11801e-02\n", + " Region: \"zone_3\"\tRelError: 5.10735e+02\tAbsError: 6.64526e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.43214e+01\tAbsError: 4.35598e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.34749e+02\tAbsError: 2.28927e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66411e+00\tAbsError: 6.59600e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47237e-04\tAbsError: 5.11801e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.42634e-01\tAbsError: 8.50303e+13\n", + " Region: \"zone_1\"\tRelError: 1.08407e-01\tAbsError: 8.19922e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08383e-01\tAbsError: 5.12930e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36473e-05\tAbsError: 8.19409e-03\n", + " Region: \"zone_3\"\tRelError: 3.42278e-02\tAbsError: 8.50303e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.81155e-04\tAbsError: 4.15550e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.73729e-04\tAbsError: 4.34753e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.36493e-02\tAbsError: 5.16851e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36494e-05\tAbsError: 8.19449e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.65398e-03\tAbsError: 2.00158e+12\n", + " Region: \"zone_1\"\tRelError: 2.48909e-04\tAbsError: 1.00808e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.48620e-04\tAbsError: 1.66964e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89512e-07\tAbsError: 1.00641e-04\n", + " Region: \"zone_3\"\tRelError: 2.40507e-03\tAbsError: 2.00158e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50347e-05\tAbsError: 9.84888e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.44145e-05\tAbsError: 1.01669e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.37533e-03\tAbsError: 1.67974e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89623e-07\tAbsError: 1.00681e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.04599e+00\tAbsError: 3.86289e+13\n", + " Region: \"zone_1\"\tRelError: 9.93306e-02\tAbsError: 3.04736e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.93173e-02\tAbsError: 2.58731e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32325e-05\tAbsError: 4.60053e-03\n", + " Region: \"zone_3\"\tRelError: 9.46664e-01\tAbsError: 3.86289e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39748e-01\tAbsError: 2.78668e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.98990e-01\tAbsError: 1.07620e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07912e-01\tAbsError: 2.56750e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32325e-05\tAbsError: 4.60053e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.05572e+02\tAbsError: 7.27616e+15\n", + " Region: \"zone_1\"\tRelError: 3.62859e-01\tAbsError: 2.71746e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.62276e-01\tAbsError: 6.88787e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.83532e-04\tAbsError: 2.02867e-01\n", + " Region: \"zone_3\"\tRelError: 3.05209e+02\tAbsError: 7.27616e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.70310e+01\tAbsError: 3.37941e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.76142e+02\tAbsError: 3.89675e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03530e+00\tAbsError: 6.88788e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.85168e-04\tAbsError: 2.03436e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.19404e+03\tAbsError: 1.14702e+15\n", + " Region: \"zone_1\"\tRelError: 1.02333e-01\tAbsError: 9.32654e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02238e-01\tAbsError: 6.01966e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.51279e-05\tAbsError: 3.30688e-02\n", + " Region: \"zone_3\"\tRelError: 3.19394e+03\tAbsError: 1.14702e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04031e+02\tAbsError: 6.26640e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.98981e+03\tAbsError: 5.20382e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02437e-01\tAbsError: 6.01966e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.51279e-05\tAbsError: 3.30688e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 9.22389e-02\tAbsError: 4.82158e+13\n", + " Region: \"zone_1\"\tRelError: 7.18973e-02\tAbsError: 1.06561e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.18942e-02\tAbsError: 2.74508e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.06675e-06\tAbsError: 1.06286e-03\n", + " Region: \"zone_3\"\tRelError: 2.03416e-02\tAbsError: 4.82158e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.73371e-04\tAbsError: 2.34911e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.60750e-04\tAbsError: 2.47247e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.00044e-02\tAbsError: 2.76855e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.06732e-06\tAbsError: 1.06303e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 5.36228e-04\tAbsError: 3.67963e+11\n", + " Region: \"zone_1\"\tRelError: 5.03370e-05\tAbsError: 3.69568e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.02308e-05\tAbsError: 3.27141e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06219e-07\tAbsError: 3.69241e-05\n", + " Region: \"zone_3\"\tRelError: 4.85891e-04\tAbsError: 3.67963e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.74381e-06\tAbsError: 1.81082e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.63918e-06\tAbsError: 1.86881e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.80402e-04\tAbsError: 3.29054e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06263e-07\tAbsError: 3.69404e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.81931e-01\tAbsError: 3.51181e+12\n", + " Region: \"zone_1\"\tRelError: 1.43962e-02\tAbsError: 1.26243e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43862e-02\tAbsError: 9.16567e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.94816e-06\tAbsError: 3.45864e-03\n", + " Region: \"zone_3\"\tRelError: 2.67535e-01\tAbsError: 3.51181e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10366e-01\tAbsError: 2.07274e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.20558e-02\tAbsError: 1.43906e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51029e-02\tAbsError: 9.16572e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.94816e-06\tAbsError: 3.45864e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.52143e+04\tAbsError: 8.85256e+14\n", + " Region: \"zone_1\"\tRelError: 1.13431e-01\tAbsError: 1.63012e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13145e-01\tAbsError: 6.35445e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.86193e-04\tAbsError: 9.94676e-02\n", + " Region: \"zone_3\"\tRelError: 1.52142e+04\tAbsError: 8.85256e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88796e+02\tAbsError: 3.04095e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.50252e+04\tAbsError: 5.81161e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.15776e-01\tAbsError: 6.35445e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.86193e-04\tAbsError: 9.94676e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.84514e-04\tAbsError: 1.29331e+11\n", + " Region: \"zone_1\"\tRelError: 1.73204e-05\tAbsError: 7.90813e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72976e-05\tAbsError: 1.15361e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27155e-08\tAbsError: 7.89660e-06\n", + " Region: \"zone_3\"\tRelError: 1.67193e-04\tAbsError: 1.29331e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.72276e-07\tAbsError: 6.36462e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.31421e-07\tAbsError: 6.56851e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65267e-04\tAbsError: 1.16052e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27252e-08\tAbsError: 7.90006e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.37784e+03\tAbsError: 8.93258e+14\n", + " Region: \"zone_1\"\tRelError: 1.00933e-01\tAbsError: 6.73054e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00893e-01\tAbsError: 5.35128e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.97271e-05\tAbsError: 1.37925e-02\n", + " Region: \"zone_3\"\tRelError: 3.37774e+03\tAbsError: 8.93258e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.00117e+03\tAbsError: 5.58869e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.76480e+02\tAbsError: 3.34389e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.23077e-02\tAbsError: 5.35129e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.97519e-05\tAbsError: 1.38013e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.54653e-02\tAbsError: 6.70800e+12\n", + " Region: \"zone_1\"\tRelError: 1.20581e-02\tAbsError: 4.93668e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20566e-02\tAbsError: 3.62019e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41950e-06\tAbsError: 4.93306e-04\n", + " Region: \"zone_3\"\tRelError: 3.40728e-03\tAbsError: 6.70800e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.37608e-05\tAbsError: 3.26486e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.20449e-05\tAbsError: 3.44314e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.36006e-03\tAbsError: 3.65152e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42005e-06\tAbsError: 4.93504e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.22421e-02\tAbsError: 3.50277e+12\n", + " Region: \"zone_1\"\tRelError: 6.27963e-03\tAbsError: 2.19296e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.27336e-03\tAbsError: 1.50745e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.27082e-06\tAbsError: 2.17788e-03\n", + " Region: \"zone_3\"\tRelError: 6.59624e-02\tAbsError: 3.50277e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.67825e-02\tAbsError: 2.11767e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.14378e-04\tAbsError: 1.38511e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.55925e-03\tAbsError: 1.55695e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.27082e-06\tAbsError: 2.17788e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.55754e+03\tAbsError: 5.40333e+14\n", + " Region: \"zone_1\"\tRelError: 8.98251e-02\tAbsError: 7.71339e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.97682e-02\tAbsError: 5.74069e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.68415e-05\tAbsError: 1.97270e-02\n", + " Region: \"zone_3\"\tRelError: 1.55745e+03\tAbsError: 5.40333e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24902e+02\tAbsError: 2.78996e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.43226e+03\tAbsError: 2.61337e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83203e-01\tAbsError: 5.74070e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.68971e-05\tAbsError: 1.97465e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 4.13464e-05\tAbsError: 2.75069e+10\n", + " Region: \"zone_1\"\tRelError: 3.88379e-06\tAbsError: 2.55222e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87646e-06\tAbsError: 2.54121e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.33447e-09\tAbsError: 2.54968e-06\n", + " Region: \"zone_3\"\tRelError: 3.74626e-05\tAbsError: 2.75069e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05752e-07\tAbsError: 1.35376e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.97692e-07\tAbsError: 1.39693e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.70518e-05\tAbsError: 2.55608e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.33751e-09\tAbsError: 2.55078e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:00\u001b[0m.\u001b[1;36m827\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.9\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 8.34579e+02\tAbsError: 1.94708e+14\n", + " Region: \"zone_1\"\tRelError: 6.43873e-02\tAbsError: 6.04633e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.43446e-02\tAbsError: 4.56537e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.26547e-05\tAbsError: 1.48096e-02\n", + " Region: \"zone_3\"\tRelError: 8.34515e+02\tAbsError: 1.94708e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23533e+02\tAbsError: 9.15286e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.10917e+02\tAbsError: 1.03179e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.46435e-02\tAbsError: 4.56538e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.27063e-05\tAbsError: 1.48277e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 6.56223e-03\tAbsError: 2.91406e+12\n", + " Region: \"zone_1\"\tRelError: 5.12823e-03\tAbsError: 8.98940e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.12798e-03\tAbsError: 1.46733e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58246e-07\tAbsError: 8.97473e-05\n", + " Region: \"zone_3\"\tRelError: 1.43400e-03\tAbsError: 2.91406e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05194e-05\tAbsError: 1.41848e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.74304e-06\tAbsError: 1.49558e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41348e-03\tAbsError: 1.48063e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58345e-07\tAbsError: 8.97837e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.61560e-03\tAbsError: 1.05155e+12\n", + " Region: \"zone_1\"\tRelError: 2.24368e-04\tAbsError: 1.45744e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23954e-04\tAbsError: 1.49315e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14375e-07\tAbsError: 1.44251e-04\n", + " Region: \"zone_3\"\tRelError: 1.39123e-03\tAbsError: 1.05155e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46580e-04\tAbsError: 2.71205e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.31750e-04\tAbsError: 7.80341e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11248e-03\tAbsError: 1.49727e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14536e-07\tAbsError: 1.44309e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.11509e+03\tAbsError: 2.08027e+14\n", + " Region: \"zone_1\"\tRelError: 7.16225e-02\tAbsError: 7.72640e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.15447e-02\tAbsError: 5.02451e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78461e-05\tAbsError: 2.70188e-02\n", + " Region: \"zone_3\"\tRelError: 6.11502e+03\tAbsError: 2.08027e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.36809e+03\tAbsError: 4.84261e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.46858e+02\tAbsError: 1.59601e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.19331e-02\tAbsError: 5.02452e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78461e-05\tAbsError: 2.70188e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.30459e-03\tAbsError: 5.22309e+11\n", + " Region: \"zone_1\"\tRelError: 1.02073e-03\tAbsError: 3.37124e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02063e-03\tAbsError: 2.80533e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.69262e-08\tAbsError: 3.36844e-05\n", + " Region: \"zone_3\"\tRelError: 2.83861e-04\tAbsError: 5.22309e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.86127e-06\tAbsError: 2.54142e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.73182e-06\tAbsError: 2.68167e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80171e-04\tAbsError: 2.82699e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.69658e-08\tAbsError: 3.36990e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.24775e+05\tAbsError: 7.99849e+13\n", + " Region: \"zone_1\"\tRelError: 4.78059e-02\tAbsError: 6.12680e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.77341e-02\tAbsError: 3.63251e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.18354e-05\tAbsError: 2.49428e-02\n", + " Region: \"zone_3\"\tRelError: 2.24775e+05\tAbsError: 7.99849e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.24772e+05\tAbsError: 1.00992e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.14841e+00\tAbsError: 6.98857e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.81352e-02\tAbsError: 3.63252e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.18354e-05\tAbsError: 2.49428e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.18618e+01\tAbsError: 3.43486e+17\n", + " Region: \"zone_1\"\tRelError: 4.68734e+01\tAbsError: 4.09548e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.68734e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70509e-09\tAbsError: 5.92742e-07\n", + " Region: \"zone_3\"\tRelError: 1.49884e+01\tAbsError: 3.43486e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.50361e-01\tAbsError: 1.67687e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.42491e-01\tAbsError: 1.75799e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34955e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70580e-09\tAbsError: 5.92998e-07\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.04487e-04\tAbsError: 1.25305e+11\n", + " Region: \"zone_1\"\tRelError: 1.66226e-04\tAbsError: 5.88375e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66057e-04\tAbsError: 7.31644e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69190e-07\tAbsError: 5.87644e-05\n", + " Region: \"zone_3\"\tRelError: 4.38261e-04\tAbsError: 1.25305e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07350e-05\tAbsError: 8.57573e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06395e-05\tAbsError: 3.95481e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.16717e-04\tAbsError: 7.69561e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69190e-07\tAbsError: 5.87644e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.83105e+01\tAbsError: 1.95329e+14\n", + " Region: \"zone_1\"\tRelError: 5.56071e-02\tAbsError: 7.46696e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.55124e-02\tAbsError: 4.17804e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.47508e-05\tAbsError: 3.28892e-02\n", + " Region: \"zone_3\"\tRelError: 2.82549e+01\tAbsError: 1.95329e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94244e+01\tAbsError: 7.65409e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.77485e+00\tAbsError: 1.87675e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.55752e-02\tAbsError: 4.17805e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.47508e-05\tAbsError: 3.28892e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 4.57494e-04\tAbsError: 1.87851e+11\n", + " Region: \"zone_1\"\tRelError: 3.58124e-04\tAbsError: 7.07024e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.58104e-04\tAbsError: 1.00823e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03150e-08\tAbsError: 7.06016e-06\n", + " Region: \"zone_3\"\tRelError: 9.93700e-05\tAbsError: 1.87851e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.76736e-07\tAbsError: 9.14150e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.27531e-07\tAbsError: 9.64360e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.80454e-05\tAbsError: 1.01596e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03236e-08\tAbsError: 7.06323e-06\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.21405e+00\tAbsError: 7.36648e+13\n", + " Region: \"zone_1\"\tRelError: 3.59171e-02\tAbsError: 5.52897e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.58309e-02\tAbsError: 2.53668e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.61705e-05\tAbsError: 2.99229e-02\n", + " Region: \"zone_3\"\tRelError: 1.17813e+00\tAbsError: 7.36648e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99994e-01\tAbsError: 9.79700e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.41280e-01\tAbsError: 6.38678e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.67735e-02\tAbsError: 2.54466e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.61705e-05\tAbsError: 2.99229e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 6.59116e+00\tAbsError: 3.05940e+17\n", + " Region: \"zone_1\"\tRelError: 1.06162e+00\tAbsError: 1.92710e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06116e+00\tAbsError: 3.07630e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.67257e-04\tAbsError: 1.61947e-01\n", + " Region: \"zone_3\"\tRelError: 5.52954e+00\tAbsError: 3.05940e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.66708e-01\tAbsError: 1.53394e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.75609e-01\tAbsError: 1.52546e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.38676e+00\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.67257e-04\tAbsError: 1.61947e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.49542e-04\tAbsError: 5.25661e+10\n", + " Region: \"zone_1\"\tRelError: 3.67450e-05\tAbsError: 6.09088e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.67276e-05\tAbsError: 4.65419e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73626e-08\tAbsError: 6.04434e-06\n", + " Region: \"zone_3\"\tRelError: 1.12797e-04\tAbsError: 5.25661e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.87851e-06\tAbsError: 1.95403e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.83782e-06\tAbsError: 3.30258e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03064e-04\tAbsError: 4.67697e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73704e-08\tAbsError: 6.04719e-06\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.17347e+02\tAbsError: 2.00590e+14\n", + " Region: \"zone_1\"\tRelError: 4.02790e-02\tAbsError: 7.42617e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.01565e-02\tAbsError: 3.17370e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22495e-04\tAbsError: 4.25247e-02\n", + " Region: \"zone_3\"\tRelError: 2.17306e+02\tAbsError: 2.00590e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16792e+02\tAbsError: 1.28080e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.74248e-01\tAbsError: 1.87782e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.02289e-02\tAbsError: 3.17371e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22495e-04\tAbsError: 4.25247e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.01166e-04\tAbsError: 3.91946e+10\n", + " Region: \"zone_1\"\tRelError: 7.92415e-05\tAbsError: 2.31694e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.92348e-05\tAbsError: 2.18517e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.66050e-09\tAbsError: 2.31475e-06\n", + " Region: \"zone_3\"\tRelError: 2.19241e-05\tAbsError: 3.91946e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.40019e-07\tAbsError: 1.90694e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.30355e-07\tAbsError: 2.01253e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16471e-05\tAbsError: 2.20162e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.66326e-09\tAbsError: 2.31575e-06\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 6.63713e+04\tAbsError: 5.22530e+13\n", + " Region: \"zone_1\"\tRelError: 2.10634e-02\tAbsError: 5.42181e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09583e-02\tAbsError: 1.77022e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05146e-04\tAbsError: 3.65159e-02\n", + " Region: \"zone_3\"\tRelError: 6.63712e+04\tAbsError: 5.22530e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.63712e+04\tAbsError: 5.18134e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.77454e-03\tAbsError: 4.70717e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12693e-02\tAbsError: 1.77023e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05146e-04\tAbsError: 3.65159e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.39017e+01\tAbsError: 1.15461e+17\n", + " Region: \"zone_1\"\tRelError: 6.40052e-01\tAbsError: 2.51200e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.39402e-01\tAbsError: 2.58690e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.49519e-04\tAbsError: 2.25331e-01\n", + " Region: \"zone_3\"\tRelError: 3.32617e+01\tAbsError: 1.15461e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89584e-01\tAbsError: 5.80157e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.82182e-01\tAbsError: 5.74450e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.27893e+01\tAbsError: 2.58944e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.51823e-04\tAbsError: 2.26124e-01\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.06804e+00\tAbsError: 1.79281e+14\n", + " Region: \"zone_1\"\tRelError: 3.16228e-02\tAbsError: 8.06229e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.14652e-02\tAbsError: 2.58829e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57657e-04\tAbsError: 5.47400e-02\n", + " Region: \"zone_3\"\tRelError: 1.03642e+00\tAbsError: 1.79281e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.86597e-01\tAbsError: 1.34599e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.78837e-02\tAbsError: 1.65821e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.17792e-02\tAbsError: 2.43086e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57657e-04\tAbsError: 5.47400e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.34617e-05\tAbsError: 4.93079e+09\n", + " Region: \"zone_1\"\tRelError: 6.39656e-06\tAbsError: 2.70522e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.38878e-06\tAbsError: 2.92927e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78054e-09\tAbsError: 2.70229e-06\n", + " Region: \"zone_3\"\tRelError: 1.70651e-05\tAbsError: 4.93079e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.08409e-07\tAbsError: 3.64060e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.02770e-07\tAbsError: 1.29019e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62462e-05\tAbsError: 3.07628e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78095e-09\tAbsError: 2.70246e-06\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 3.18341e-05\tAbsError: 1.25603e+10\n", + " Region: \"zone_1\"\tRelError: 2.49404e-05\tAbsError: 5.30965e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49389e-05\tAbsError: 6.97982e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52580e-09\tAbsError: 5.30267e-07\n", + " Region: \"zone_3\"\tRelError: 6.89370e-06\tAbsError: 1.25603e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.51738e-08\tAbsError: 6.11147e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.19302e-08\tAbsError: 6.44887e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 6.80507e-06\tAbsError: 7.03236e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52643e-09\tAbsError: 5.30496e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:05\u001b[0m.\u001b[1;36m757\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:05\u001b[0m.\u001b[1;36m757\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 12\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 1.01474e+00\tAbsError: 4.61335e+13\n", + " Region: \"zone_1\"\tRelError: 1.47150e-03\tAbsError: 6.17553e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29402e-03\tAbsError: 1.05400e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77486e-04\tAbsError: 6.16499e-02\n", + " Region: \"zone_3\"\tRelError: 1.01327e+00\tAbsError: 4.61335e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99952e-01\tAbsError: 7.91524e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.57670e-03\tAbsError: 3.82183e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.56216e-03\tAbsError: 1.06870e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77486e-04\tAbsError: 6.16499e-02\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:05\u001b[0m.\u001b[1;36m864\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.95\u001b[0m \n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "number of equations 31816\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.68712e+00\tAbsError: 3.62564e+14\n", + " Region: \"zone_1\"\tRelError: 1.22207e-02\tAbsError: 1.54507e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22061e-02\tAbsError: 1.03781e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46093e-05\tAbsError: 5.07262e-03\n", + " Region: \"zone_3\"\tRelError: 1.67490e+00\tAbsError: 3.62564e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61422e+00\tAbsError: 1.33857e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.90388e-03\tAbsError: 3.49178e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.47664e-02\tAbsError: 1.03783e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46093e-05\tAbsError: 5.07262e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.34480e+00\tAbsError: 1.48853e+16\n", + " Region: \"zone_1\"\tRelError: 1.80604e-01\tAbsError: 1.59400e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80172e-01\tAbsError: 9.16501e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31839e-04\tAbsError: 1.50235e-01\n", + " Region: \"zone_3\"\tRelError: 3.16419e+00\tAbsError: 1.48853e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.34401e-02\tAbsError: 7.53366e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.19569e-02\tAbsError: 7.35164e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.07837e+00\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31839e-04\tAbsError: 1.50235e-01\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 7.62884e-02\tAbsError: 3.11279e+13\n", + " Region: \"zone_1\"\tRelError: 7.32639e-03\tAbsError: 6.71228e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.32458e-03\tAbsError: 3.92163e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.81752e-06\tAbsError: 6.32012e-04\n", + " Region: \"zone_3\"\tRelError: 6.89620e-02\tAbsError: 3.11279e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.28301e-03\tAbsError: 1.04211e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.41417e-03\tAbsError: 2.07069e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.02630e-02\tAbsError: 3.96840e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.81752e-06\tAbsError: 6.32012e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 9.54016e+00\tAbsError: 8.28773e+15\n", + " Region: \"zone_1\"\tRelError: 7.90066e+00\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.90066e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.70848e-10\tAbsError: 1.98729e-07\n", + " Region: \"zone_3\"\tRelError: 1.63951e+00\tAbsError: 8.28773e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69626e-01\tAbsError: 4.72857e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69607e-01\tAbsError: 3.55916e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00272e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.71112e-10\tAbsError: 1.98826e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.74449e+01\tAbsError: 6.96689e+17\n", + " Region: \"zone_1\"\tRelError: 2.96607e+01\tAbsError: 4.22091e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96607e+01\tAbsError: 4.22089e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.61425e-10\tAbsError: 1.60361e-07\n", + " Region: \"zone_3\"\tRelError: 7.78417e+00\tAbsError: 6.96689e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.41055e-01\tAbsError: 3.41021e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.26169e-01\tAbsError: 3.55668e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 6.31694e+00\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.61615e-10\tAbsError: 1.60430e-07\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 3.79888e-01\tAbsError: 4.76646e+14\n", + " Region: \"zone_1\"\tRelError: 8.18570e-03\tAbsError: 1.32227e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.80599e-03\tAbsError: 3.37742e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.79705e-04\tAbsError: 1.31889e-01\n", + " Region: \"zone_3\"\tRelError: 3.71702e-01\tAbsError: 4.76646e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87565e-01\tAbsError: 1.19019e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.42254e-02\tAbsError: 4.64744e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.95315e-02\tAbsError: 3.47242e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.80503e-04\tAbsError: 1.32163e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.42204e-01\tAbsError: 1.90329e+15\n", + " Region: \"zone_1\"\tRelError: 2.01983e-02\tAbsError: 3.47392e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91990e-02\tAbsError: 1.15001e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.99221e-04\tAbsError: 3.47277e-01\n", + " Region: \"zone_3\"\tRelError: 3.22006e-01\tAbsError: 1.90329e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.20950e-03\tAbsError: 1.00831e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03234e-03\tAbsError: 8.94978e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.11765e-01\tAbsError: 1.16357e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.99221e-04\tAbsError: 3.47277e-01\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 4.97160e-03\tAbsError: 5.38954e+11\n", + " Region: \"zone_1\"\tRelError: 5.24807e-04\tAbsError: 2.04317e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.18927e-04\tAbsError: 4.87701e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.88073e-06\tAbsError: 2.04268e-03\n", + " Region: \"zone_3\"\tRelError: 4.44679e-03\tAbsError: 5.38954e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23342e-04\tAbsError: 2.85836e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06330e-04\tAbsError: 2.53118e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.21124e-03\tAbsError: 4.94546e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.88073e-06\tAbsError: 2.04268e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.57084e+00\tAbsError: 2.89575e+14\n", + " Region: \"zone_1\"\tRelError: 1.26543e-01\tAbsError: 8.72430e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26381e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62480e-04\tAbsError: 5.64794e-02\n", + " Region: \"zone_3\"\tRelError: 1.44430e+00\tAbsError: 2.89575e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37983e-01\tAbsError: 1.66847e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32917e-01\tAbsError: 1.22728e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.32359e-02\tAbsError: 3.07641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62480e-04\tAbsError: 5.64794e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.96671e+01\tAbsError: 4.78725e+17\n", + " Region: \"zone_1\"\tRelError: 1.56062e+01\tAbsError: 6.48524e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56044e+01\tAbsError: 3.22428e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77540e-03\tAbsError: 6.16281e-01\n", + " Region: \"zone_3\"\tRelError: 2.40609e+01\tAbsError: 4.78725e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.32526e-01\tAbsError: 2.39421e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.11429e-01\tAbsError: 2.39304e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30152e+01\tAbsError: 3.22432e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77768e-03\tAbsError: 6.17061e-01\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.68812e-01\tAbsError: 6.68290e+13\n", + " Region: \"zone_1\"\tRelError: 1.62757e-02\tAbsError: 2.11428e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62698e-02\tAbsError: 8.34201e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.83306e-06\tAbsError: 2.03086e-03\n", + " Region: \"zone_3\"\tRelError: 1.52537e-01\tAbsError: 6.68290e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.43740e-03\tAbsError: 2.29738e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.52401e-03\tAbsError: 4.38552e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33569e-01\tAbsError: 8.44016e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.83624e-06\tAbsError: 2.03199e-03\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 6.39289e-03\tAbsError: 1.99417e+12\n", + " Region: \"zone_1\"\tRelError: 6.51668e-04\tAbsError: 1.66997e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.51192e-04\tAbsError: 1.51055e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.75922e-07\tAbsError: 1.65487e-04\n", + " Region: \"zone_3\"\tRelError: 5.74122e-03\tAbsError: 1.99417e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05094e-04\tAbsError: 9.44377e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.03732e-04\tAbsError: 1.04979e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.33192e-03\tAbsError: 1.53169e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.76123e-07\tAbsError: 1.65562e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.26159e-01\tAbsError: 1.60368e+15\n", + " Region: \"zone_1\"\tRelError: 2.39971e-02\tAbsError: 1.68797e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39489e-02\tAbsError: 1.07820e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.82419e-05\tAbsError: 1.67718e-02\n", + " Region: \"zone_3\"\tRelError: 7.02162e-01\tAbsError: 1.60368e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.86883e-03\tAbsError: 7.94204e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.42424e-03\tAbsError: 8.09476e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.96821e-01\tAbsError: 1.08766e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.82636e-05\tAbsError: 1.67793e-02\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 1.38481e-02\tAbsError: 1.68702e+12\n", + " Region: \"zone_1\"\tRelError: 1.46213e-03\tAbsError: 4.42925e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44939e-03\tAbsError: 1.36850e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27342e-05\tAbsError: 4.42788e-03\n", + " Region: \"zone_3\"\tRelError: 1.23859e-02\tAbsError: 1.68702e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.64650e-04\tAbsError: 1.13427e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.36099e-04\tAbsError: 5.52747e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18725e-02\tAbsError: 1.41163e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27342e-05\tAbsError: 4.42788e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.08933e+00\tAbsError: 3.08258e+13\n", + " Region: \"zone_1\"\tRelError: 1.39766e-01\tAbsError: 3.14532e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39750e-01\tAbsError: 2.58726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60540e-05\tAbsError: 5.58058e-03\n", + " Region: \"zone_3\"\tRelError: 9.49568e-01\tAbsError: 3.08258e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40223e-01\tAbsError: 2.27975e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.01508e-01\tAbsError: 8.02831e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07820e-01\tAbsError: 2.58966e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60540e-05\tAbsError: 5.58058e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.58934e+01\tAbsError: 1.08929e+17\n", + " Region: \"zone_1\"\tRelError: 7.76222e+00\tAbsError: 2.03869e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.76171e+00\tAbsError: 2.58965e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.13002e-04\tAbsError: 1.77973e-01\n", + " Region: \"zone_3\"\tRelError: 8.13122e+00\tAbsError: 1.08929e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.31874e-01\tAbsError: 5.46655e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.37122e-01\tAbsError: 5.42631e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.76171e+00\tAbsError: 2.58965e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.15508e-04\tAbsError: 1.78843e-01\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 7.67318e-04\tAbsError: 1.55738e+11\n", + " Region: \"zone_1\"\tRelError: 8.06401e-05\tAbsError: 1.34410e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.02538e-05\tAbsError: 1.14844e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.86221e-07\tAbsError: 1.34295e-04\n", + " Region: \"zone_3\"\tRelError: 6.86678e-04\tAbsError: 1.55738e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.65553e-05\tAbsError: 8.47722e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.64999e-05\tAbsError: 7.09653e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.53236e-04\tAbsError: 1.16414e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.86355e-07\tAbsError: 1.34349e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.12346e-01\tAbsError: 1.08123e+14\n", + " Region: \"zone_1\"\tRelError: 3.56238e-03\tAbsError: 1.31451e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52458e-03\tAbsError: 6.36043e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77942e-05\tAbsError: 1.31387e-02\n", + " Region: \"zone_3\"\tRelError: 1.08784e-01\tAbsError: 1.08123e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.76703e-04\tAbsError: 5.36465e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.39449e-04\tAbsError: 5.44763e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08330e-01\tAbsError: 6.41381e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.78094e-05\tAbsError: 1.31440e-02\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 1.41016e-02\tAbsError: 4.32538e+12\n", + " Region: \"zone_1\"\tRelError: 1.44009e-03\tAbsError: 3.91787e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43897e-03\tAbsError: 3.24685e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11735e-06\tAbsError: 3.88540e-04\n", + " Region: \"zone_3\"\tRelError: 1.26615e-02\tAbsError: 4.32538e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.44521e-04\tAbsError: 2.07782e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.41617e-04\tAbsError: 2.24755e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17742e-02\tAbsError: 3.29253e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11758e-06\tAbsError: 3.88622e-04\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 4.85089e-04\tAbsError: 1.31358e+11\n", + " Region: \"zone_1\"\tRelError: 5.00385e-05\tAbsError: 1.89992e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.99841e-05\tAbsError: 8.85529e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43823e-08\tAbsError: 1.89106e-05\n", + " Region: \"zone_3\"\tRelError: 4.35051e-04\tAbsError: 1.31358e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.30758e-05\tAbsError: 7.11941e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29816e-05\tAbsError: 6.01635e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.08939e-04\tAbsError: 8.98229e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43956e-08\tAbsError: 1.89153e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.94758e-01\tAbsError: 4.98642e+12\n", + " Region: \"zone_1\"\tRelError: 2.19383e-02\tAbsError: 1.22221e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19295e-02\tAbsError: 9.16564e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.79291e-06\tAbsError: 3.05651e-03\n", + " Region: \"zone_3\"\tRelError: 2.72820e-01\tAbsError: 4.98642e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12699e-01\tAbsError: 2.77867e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.23181e-02\tAbsError: 2.20775e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77940e-02\tAbsError: 9.16568e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.79389e-06\tAbsError: 3.05683e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.09090e+02\tAbsError: 1.19633e+16\n", + " Region: \"zone_1\"\tRelError: 1.29631e+01\tAbsError: 2.31122e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29625e+01\tAbsError: 1.10519e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.34257e-04\tAbsError: 2.20070e-01\n", + " Region: \"zone_3\"\tRelError: 1.96127e+02\tAbsError: 1.19633e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.51181e-02\tAbsError: 6.00863e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.25304e-02\tAbsError: 5.95469e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96079e+02\tAbsError: 1.10525e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.35003e-04\tAbsError: 2.20329e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 8.36096e-02\tAbsError: 8.44228e+13\n", + " Region: \"zone_1\"\tRelError: 2.87350e-03\tAbsError: 1.23009e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.86998e-03\tAbsError: 4.23325e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52636e-06\tAbsError: 1.22586e-03\n", + " Region: \"zone_3\"\tRelError: 8.07361e-02\tAbsError: 8.44228e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46087e-04\tAbsError: 4.18513e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.25646e-04\tAbsError: 4.25715e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.04608e-02\tAbsError: 4.27186e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52783e-06\tAbsError: 1.22636e-03\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 1.81980e-03\tAbsError: 3.66024e+11\n", + " Region: \"zone_1\"\tRelError: 1.91275e-04\tAbsError: 2.94745e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90428e-04\tAbsError: 2.56341e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.46877e-07\tAbsError: 2.94489e-04\n", + " Region: \"zone_3\"\tRelError: 1.62852e-03\tAbsError: 3.66024e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.82060e-05\tAbsError: 2.08266e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.80575e-05\tAbsError: 1.57759e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55141e-03\tAbsError: 2.59920e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.47241e-07\tAbsError: 2.94616e-04\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 8.15689e-05\tAbsError: 1.78459e+10\n", + " Region: \"zone_1\"\tRelError: 8.53265e-06\tAbsError: 9.62031e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.50502e-06\tAbsError: 1.21079e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.76308e-08\tAbsError: 9.60820e-06\n", + " Region: \"zone_3\"\tRelError: 7.30363e-05\tAbsError: 1.78459e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.83620e-06\tAbsError: 1.02277e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.82841e-06\tAbsError: 7.61829e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 6.93440e-05\tAbsError: 1.22778e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.76376e-08\tAbsError: 9.61058e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:13\u001b[0m.\u001b[1;36m069\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:13\u001b[0m.\u001b[1;36m069\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.20555555555555557\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.73338e-02\tAbsError: 3.09182e+12\n", + " Region: \"zone_1\"\tRelError: 1.11598e-02\tAbsError: 1.65988e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11551e-02\tAbsError: 1.42279e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73882e-06\tAbsError: 1.64565e-03\n", + " Region: \"zone_3\"\tRelError: 6.61739e-02\tAbsError: 3.09182e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.71921e-02\tAbsError: 1.98622e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.49402e-04\tAbsError: 1.10560e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.42774e-03\tAbsError: 1.50865e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73882e-06\tAbsError: 1.64565e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.05334e-02\tAbsError: 1.11116e+15\n", + " Region: \"zone_1\"\tRelError: 1.31572e-02\tAbsError: 1.15650e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28247e-02\tAbsError: 1.19112e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32502e-04\tAbsError: 1.15639e-01\n", + " Region: \"zone_3\"\tRelError: 1.73762e-02\tAbsError: 1.11116e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.08419e-03\tAbsError: 5.81267e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.14070e-04\tAbsError: 5.29897e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44454e-02\tAbsError: 1.22279e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32502e-04\tAbsError: 1.15639e-01\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 1.07179e-03\tAbsError: 2.87267e+11\n", + " Region: \"zone_1\"\tRelError: 1.10640e-04\tAbsError: 4.34533e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10516e-04\tAbsError: 1.92607e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24407e-07\tAbsError: 4.32607e-05\n", + " Region: \"zone_3\"\tRelError: 9.61153e-04\tAbsError: 2.87267e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.86040e-05\tAbsError: 1.56933e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.83999e-05\tAbsError: 1.30334e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.04024e-04\tAbsError: 1.95375e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24432e-07\tAbsError: 4.32693e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.36875e-02\tAbsError: 9.69294e+12\n", + " Region: \"zone_1\"\tRelError: 4.70501e-04\tAbsError: 6.20216e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.68718e-04\tAbsError: 4.28680e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78298e-06\tAbsError: 6.19787e-04\n", + " Region: \"zone_3\"\tRelError: 1.32170e-02\tAbsError: 9.69294e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.60935e-05\tAbsError: 4.80983e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.36870e-05\tAbsError: 4.88312e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31854e-02\tAbsError: 4.32490e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78363e-06\tAbsError: 6.20008e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.35940e-03\tAbsError: 7.91644e+11\n", + " Region: \"zone_1\"\tRelError: 6.17001e-04\tAbsError: 1.42075e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.16596e-04\tAbsError: 1.18665e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.04748e-07\tAbsError: 1.40888e-04\n", + " Region: \"zone_3\"\tRelError: 7.42401e-04\tAbsError: 7.91644e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00211e-04\tAbsError: 1.88344e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.60094e-05\tAbsError: 6.03301e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.55776e-04\tAbsError: 1.18974e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.04912e-07\tAbsError: 1.40947e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.48290e+01\tAbsError: 8.84394e+15\n", + " Region: \"zone_1\"\tRelError: 2.31805e+01\tAbsError: 4.20744e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31805e+01\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.17390e-09\tAbsError: 1.79915e-06\n", + " Region: \"zone_3\"\tRelError: 1.64851e+00\tAbsError: 8.84394e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78981e-01\tAbsError: 4.89377e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.78912e-01\tAbsError: 3.95017e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.06132e-02\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.17475e-09\tAbsError: 1.79945e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.13709e-02\tAbsError: 5.67404e+14\n", + " Region: \"zone_1\"\tRelError: 2.78016e-02\tAbsError: 1.90673e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.77962e-02\tAbsError: 3.34161e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.38355e-06\tAbsError: 1.87332e-03\n", + " Region: \"zone_3\"\tRelError: 2.35693e-02\tAbsError: 5.67404e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.43611e-04\tAbsError: 2.82078e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.73004e-04\tAbsError: 2.85326e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23473e-02\tAbsError: 3.37111e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.38683e-06\tAbsError: 1.87446e-03\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 1.86653e-04\tAbsError: 4.07183e+10\n", + " Region: \"zone_1\"\tRelError: 1.95254e-05\tAbsError: 2.12148e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.94645e-05\tAbsError: 2.72481e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.09302e-08\tAbsError: 2.11876e-05\n", + " Region: \"zone_3\"\tRelError: 1.67128e-04\tAbsError: 4.07183e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.17871e-06\tAbsError: 2.36500e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.16021e-06\tAbsError: 1.70683e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58728e-04\tAbsError: 2.76329e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.09443e-08\tAbsError: 2.11925e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 6.63798e-03\tAbsError: 4.90503e+12\n", + " Region: \"zone_1\"\tRelError: 2.29406e-04\tAbsError: 9.25474e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29140e-04\tAbsError: 1.97212e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.66464e-07\tAbsError: 9.23502e-05\n", + " Region: \"zone_3\"\tRelError: 6.40857e-03\tAbsError: 4.90503e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.34900e-06\tAbsError: 2.43347e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32522e-06\tAbsError: 2.47155e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.39263e-03\tAbsError: 1.99078e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.66498e-07\tAbsError: 9.23593e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.02141e-03\tAbsError: 1.23957e+11\n", + " Region: \"zone_1\"\tRelError: 5.52143e-04\tAbsError: 4.11028e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.52024e-04\tAbsError: 7.43261e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18138e-07\tAbsError: 4.10285e-05\n", + " Region: \"zone_3\"\tRelError: 4.69263e-04\tAbsError: 1.23957e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.58109e-06\tAbsError: 8.33431e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.49437e-06\tAbsError: 4.06143e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.50070e-04\tAbsError: 7.83274e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18138e-07\tAbsError: 4.10285e-05\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 8.12376e-05\tAbsError: 2.03207e+10\n", + " Region: \"zone_1\"\tRelError: 8.42267e-06\tAbsError: 4.07956e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.41098e-06\tAbsError: 1.30852e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16942e-08\tAbsError: 4.06647e-06\n", + " Region: \"zone_3\"\tRelError: 7.28149e-05\tAbsError: 2.03207e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.02463e-06\tAbsError: 1.17351e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.01039e-06\tAbsError: 8.58558e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 6.87682e-05\tAbsError: 1.32758e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16959e-08\tAbsError: 4.06708e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 6.61737e+00\tAbsError: 3.31502e+14\n", + " Region: \"zone_1\"\tRelError: 5.14990e+00\tAbsError: 9.55443e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.14972e+00\tAbsError: 3.20824e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82539e-04\tAbsError: 6.34619e-02\n", + " Region: \"zone_3\"\tRelError: 1.46747e+00\tAbsError: 3.31502e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.54810e-01\tAbsError: 1.62504e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.49659e-01\tAbsError: 1.68998e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.28163e-02\tAbsError: 3.20829e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82539e-04\tAbsError: 6.34619e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:16\u001b[0m.\u001b[1;36m292\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.2\u001b[0m \n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.28947e-03\tAbsError: 1.46573e+13\n", + " Region: \"zone_1\"\tRelError: 7.23740e-04\tAbsError: 4.27408e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.11459e-04\tAbsError: 8.86431e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22814e-05\tAbsError: 4.27319e-03\n", + " Region: \"zone_3\"\tRelError: 1.56573e-03\tAbsError: 1.46573e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.92902e-05\tAbsError: 7.30178e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.04396e-05\tAbsError: 7.35548e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42371e-03\tAbsError: 8.92429e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22868e-05\tAbsError: 4.27500e-03\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.25648e-03\tAbsError: 7.75715e+11\n", + " Region: \"zone_1\"\tRelError: 4.35799e-05\tAbsError: 3.84452e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.34694e-05\tAbsError: 2.84735e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10539e-07\tAbsError: 3.84167e-05\n", + " Region: \"zone_3\"\tRelError: 1.21290e-03\tAbsError: 7.75715e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28473e-06\tAbsError: 3.85060e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13479e-06\tAbsError: 3.90655e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21037e-03\tAbsError: 2.87358e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10581e-07\tAbsError: 3.84313e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.30911e-04\tAbsError: 3.51442e+10\n", + " Region: \"zone_1\"\tRelError: 6.81885e-05\tAbsError: 6.92614e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.81687e-05\tAbsError: 3.42472e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.97989e-08\tAbsError: 6.89189e-06\n", + " Region: \"zone_3\"\tRelError: 6.27220e-05\tAbsError: 3.51442e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91737e-06\tAbsError: 1.11617e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.89123e-06\tAbsError: 2.39825e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.68936e-05\tAbsError: 3.42673e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98072e-08\tAbsError: 6.89488e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.17677e+01\tAbsError: 4.26742e+13\n", + " Region: \"zone_1\"\tRelError: 1.07525e+01\tAbsError: 3.09210e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07525e+01\tAbsError: 2.58825e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44922e-05\tAbsError: 5.03846e-03\n", + " Region: \"zone_3\"\tRelError: 1.01514e+00\tAbsError: 4.26742e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.66369e-01\tAbsError: 3.07350e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.34345e-01\tAbsError: 1.19392e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14412e-01\tAbsError: 2.58985e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44922e-05\tAbsError: 5.03846e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.41093e-03\tAbsError: 2.89275e+13\n", + " Region: \"zone_1\"\tRelError: 1.11675e-03\tAbsError: 2.49108e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11604e-03\tAbsError: 1.27087e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.12326e-07\tAbsError: 2.47837e-04\n", + " Region: \"zone_3\"\tRelError: 2.29418e-03\tAbsError: 2.89275e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.03893e-05\tAbsError: 1.43939e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.44517e-05\tAbsError: 1.45336e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23862e-03\tAbsError: 1.28225e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.12611e-07\tAbsError: 2.47936e-04\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 4.79935e-04\tAbsError: 3.06765e+11\n", + " Region: \"zone_1\"\tRelError: 1.66486e-05\tAbsError: 7.60779e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66267e-05\tAbsError: 1.06336e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18595e-08\tAbsError: 7.59715e-06\n", + " Region: \"zone_3\"\tRelError: 4.63286e-04\tAbsError: 3.06765e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.16909e-07\tAbsError: 1.52260e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.59699e-07\tAbsError: 1.54505e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62288e-04\tAbsError: 1.07353e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18679e-08\tAbsError: 7.60017e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.15185e+01\tAbsError: 8.37847e+15\n", + " Region: \"zone_1\"\tRelError: 9.89198e+00\tAbsError: 4.09558e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.89198e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.56805e-09\tAbsError: 1.58847e-06\n", + " Region: \"zone_3\"\tRelError: 1.62652e+00\tAbsError: 8.37847e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69532e-01\tAbsError: 4.63620e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69461e-01\tAbsError: 3.74227e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.75319e-02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.56875e-09\tAbsError: 1.58872e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.91977e-05\tAbsError: 5.89586e+09\n", + " Region: \"zone_1\"\tRelError: 2.66095e-05\tAbsError: 1.68142e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66047e-05\tAbsError: 3.56714e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.83123e-09\tAbsError: 1.67785e-06\n", + " Region: \"zone_3\"\tRelError: 2.25882e-05\tAbsError: 5.89586e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.48785e-07\tAbsError: 4.10020e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.43251e-07\tAbsError: 1.79565e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16913e-05\tAbsError: 3.75397e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.83123e-09\tAbsError: 1.67785e-06\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.01824e-04\tAbsError: 5.91028e+10\n", + " Region: \"zone_1\"\tRelError: 3.53926e-06\tAbsError: 2.67115e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53158e-06\tAbsError: 2.19844e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.67947e-09\tAbsError: 2.66896e-06\n", + " Region: \"zone_3\"\tRelError: 9.82849e-05\tAbsError: 5.91028e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.78782e-08\tAbsError: 2.93440e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.77169e-08\tAbsError: 2.97588e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.80917e-05\tAbsError: 2.22202e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.68243e-09\tAbsError: 2.67005e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:19\u001b[0m.\u001b[1;36m098\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.4\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Iteration: 3\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 6.47042e-01\tAbsError: 2.75951e+12\n", + " Region: \"zone_1\"\tRelError: 3.49194e-01\tAbsError: 1.42105e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.49185e-01\tAbsError: 1.08348e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.70970e-06\tAbsError: 3.37571e-03\n", + " Region: \"zone_3\"\tRelError: 2.97847e-01\tAbsError: 2.75951e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21768e-01\tAbsError: 1.84052e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.86333e-02\tAbsError: 9.18991e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74362e-02\tAbsError: 1.08349e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.71049e-06\tAbsError: 3.37604e-03\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.90184e-04\tAbsError: 2.11388e+12\n", + " Region: \"zone_1\"\tRelError: 1.29224e-04\tAbsError: 1.96202e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28659e-04\tAbsError: 8.67060e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.64262e-07\tAbsError: 1.96115e-04\n", + " Region: \"zone_3\"\tRelError: 2.60960e-04\tAbsError: 2.11388e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.64631e-06\tAbsError: 1.05289e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.62600e-06\tAbsError: 1.06099e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52124e-04\tAbsError: 8.74089e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.64306e-07\tAbsError: 1.96180e-04\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.94648e+00\tAbsError: 2.98429e+14\n", + " Region: \"zone_1\"\tRelError: 5.14524e-01\tAbsError: 9.09014e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.14351e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72976e-04\tAbsError: 6.01378e-02\n", + " Region: \"zone_3\"\tRelError: 1.43195e+00\tAbsError: 2.98429e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37879e-01\tAbsError: 1.45714e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32394e-01\tAbsError: 1.52716e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.15050e-02\tAbsError: 3.07641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72976e-04\tAbsError: 6.01378e-02\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 3.38300e-05\tAbsError: 2.01418e+10\n", + " Region: \"zone_1\"\tRelError: 1.17571e-06\tAbsError: 5.87640e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17402e-06\tAbsError: 7.44968e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68869e-09\tAbsError: 5.86895e-07\n", + " Region: \"zone_3\"\tRelError: 3.26543e-05\tAbsError: 2.01418e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.37367e-08\tAbsError: 9.99956e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.02428e-08\tAbsError: 1.01422e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.25886e-05\tAbsError: 7.53080e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68939e-09\tAbsError: 5.87154e-07\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.50846e-01\tAbsError: 2.76167e+12\n", + " Region: \"zone_1\"\tRelError: 2.75094e-01\tAbsError: 2.71980e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.75086e-01\tAbsError: 1.59945e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.82662e-06\tAbsError: 2.71820e-03\n", + " Region: \"zone_3\"\tRelError: 7.57513e-02\tAbsError: 2.76167e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.72956e-02\tAbsError: 1.69461e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.56368e-04\tAbsError: 1.06706e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.29152e-03\tAbsError: 1.67315e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.82662e-06\tAbsError: 2.71820e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.54222e-04\tAbsError: 1.61841e+12\n", + " Region: \"zone_1\"\tRelError: 8.49561e-05\tAbsError: 2.28110e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.48905e-05\tAbsError: 5.74698e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.56084e-08\tAbsError: 2.27536e-05\n", + " Region: \"zone_3\"\tRelError: 1.69266e-04\tAbsError: 1.61841e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.63777e-06\tAbsError: 8.05797e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.40478e-06\tAbsError: 8.12616e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66158e-04\tAbsError: 5.79789e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.56151e-08\tAbsError: 2.27557e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.62552e+00\tAbsError: 8.26510e+15\n", + " Region: \"zone_1\"\tRelError: 6.97719e+00\tAbsError: 4.09546e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.97719e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.33437e-10\tAbsError: 3.24924e-07\n", + " Region: \"zone_3\"\tRelError: 1.64833e+00\tAbsError: 8.26510e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69652e-01\tAbsError: 4.84454e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69632e-01\tAbsError: 3.42056e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09044e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.33825e-10\tAbsError: 3.25065e-07\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.04600e+00\tAbsError: 3.86292e+13\n", + " Region: \"zone_1\"\tRelError: 9.93313e-02\tAbsError: 3.04737e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.93181e-02\tAbsError: 2.58731e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32328e-05\tAbsError: 4.60065e-03\n", + " Region: \"zone_3\"\tRelError: 9.46666e-01\tAbsError: 3.86292e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39748e-01\tAbsError: 2.78671e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.98990e-01\tAbsError: 1.07621e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07914e-01\tAbsError: 2.56750e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32328e-05\tAbsError: 4.60065e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.89863e-05\tAbsError: 1.96107e+11\n", + " Region: \"zone_1\"\tRelError: 1.30703e-05\tAbsError: 1.19874e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30359e-05\tAbsError: 6.55029e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.44566e-08\tAbsError: 1.19809e-05\n", + " Region: \"zone_3\"\tRelError: 2.59160e-05\tAbsError: 1.96107e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.50307e-07\tAbsError: 9.76926e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.96535e-07\tAbsError: 9.84147e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.53347e-05\tAbsError: 6.60584e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.44696e-08\tAbsError: 1.19854e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.21540e-02\tAbsError: 1.33312e+12\n", + " Region: \"zone_1\"\tRelError: 3.99726e-02\tAbsError: 1.24237e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.99723e-02\tAbsError: 1.87829e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.51481e-07\tAbsError: 1.22358e-04\n", + " Region: \"zone_3\"\tRelError: 2.18136e-03\tAbsError: 1.33312e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.72391e-04\tAbsError: 3.65392e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.72373e-04\tAbsError: 9.67731e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83624e-03\tAbsError: 1.88227e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.51639e-07\tAbsError: 1.22416e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.56210e+00\tAbsError: 2.88655e+14\n", + " Region: \"zone_1\"\tRelError: 1.01850e-01\tAbsError: 8.11752e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01705e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45044e-04\tAbsError: 5.04116e-02\n", + " Region: \"zone_3\"\tRelError: 1.46025e+00\tAbsError: 2.88655e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39145e-01\tAbsError: 2.10222e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.31918e-01\tAbsError: 7.84329e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.90395e-02\tAbsError: 3.07640e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45044e-04\tAbsError: 5.04116e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.81932e-01\tAbsError: 3.51190e+12\n", + " Region: \"zone_1\"\tRelError: 1.43962e-02\tAbsError: 1.26244e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43862e-02\tAbsError: 9.16567e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.94829e-06\tAbsError: 3.45869e-03\n", + " Region: \"zone_3\"\tRelError: 2.67535e-01\tAbsError: 3.51190e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10366e-01\tAbsError: 2.07282e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.20558e-02\tAbsError: 1.43908e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51034e-02\tAbsError: 9.16572e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.94829e-06\tAbsError: 3.45869e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:22\u001b[0m.\u001b[1;36m730\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:22\u001b[0m.\u001b[1;36m762\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.15 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:22\u001b[0m.\u001b[1;36m807\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.06372e-02\tAbsError: 1.01202e+11\n", + " Region: \"zone_1\"\tRelError: 1.03031e-02\tAbsError: 7.97062e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03028e-02\tAbsError: 5.78857e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29320e-07\tAbsError: 7.96483e-05\n", + " Region: \"zone_3\"\tRelError: 3.34143e-04\tAbsError: 1.01202e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.06734e-06\tAbsError: 7.37076e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.99097e-06\tAbsError: 2.74944e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.17855e-04\tAbsError: 6.08606e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29419e-07\tAbsError: 7.96808e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.02466e+00\tAbsError: 6.04267e+13\n", + " Region: \"zone_1\"\tRelError: 7.18592e-02\tAbsError: 3.22577e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.18409e-02\tAbsError: 2.58878e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83272e-05\tAbsError: 6.36990e-03\n", + " Region: \"zone_3\"\tRelError: 9.52804e-01\tAbsError: 6.04267e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40508e-01\tAbsError: 3.80417e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.10167e-01\tAbsError: 2.23851e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02110e-01\tAbsError: 2.58991e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83272e-05\tAbsError: 6.36990e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.22422e-02\tAbsError: 3.50280e+12\n", + " Region: \"zone_1\"\tRelError: 6.27969e-03\tAbsError: 2.19297e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.27342e-03\tAbsError: 1.50745e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.27087e-06\tAbsError: 2.17790e-03\n", + " Region: \"zone_3\"\tRelError: 6.59626e-02\tAbsError: 3.50280e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.67825e-02\tAbsError: 2.11769e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.14375e-04\tAbsError: 1.38511e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.55939e-03\tAbsError: 1.55695e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.27087e-06\tAbsError: 2.17790e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.93466e+03\tAbsError: 4.31846e+18\n", + " Region: \"zone_1\"\tRelError: 4.28785e+01\tAbsError: 8.96716e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.28785e+01\tAbsError: 8.96714e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.33797e-10\tAbsError: 1.85521e-07\n", + " Region: \"zone_3\"\tRelError: 1.89179e+03\tAbsError: 4.31846e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.97606e+01\tAbsError: 2.12744e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.67832e+03\tAbsError: 2.19102e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23706e+02\tAbsError: 8.96718e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.34021e-10\tAbsError: 1.85602e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:24\u001b[0m.\u001b[1;36m306\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:24\u001b[0m.\u001b[1;36m340\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.2 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:24\u001b[0m.\u001b[1;36m374\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.48710e-03\tAbsError: 7.36590e+10\n", + " Region: \"zone_1\"\tRelError: 5.30545e-03\tAbsError: 3.35547e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.30544e-03\tAbsError: 6.29646e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.45758e-09\tAbsError: 3.29250e-06\n", + " Region: \"zone_3\"\tRelError: 1.81652e-04\tAbsError: 7.36590e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.81848e-06\tAbsError: 3.00987e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.76295e-06\tAbsError: 4.35602e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68061e-04\tAbsError: 6.32627e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.46257e-09\tAbsError: 3.29432e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.07050e-01\tAbsError: 1.83634e+13\n", + " Region: \"zone_1\"\tRelError: 2.24108e-02\tAbsError: 1.12606e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24048e-02\tAbsError: 9.16557e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.02744e-06\tAbsError: 2.09499e-03\n", + " Region: \"zone_3\"\tRelError: 2.84640e-01\tAbsError: 1.83634e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.09245e-01\tAbsError: 8.86934e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.28005e-02\tAbsError: 9.49405e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25878e-02\tAbsError: 9.16561e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.02994e-06\tAbsError: 2.09586e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.61558e-03\tAbsError: 1.05156e+12\n", + " Region: \"zone_1\"\tRelError: 2.24360e-04\tAbsError: 1.45747e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23945e-04\tAbsError: 1.49317e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14382e-07\tAbsError: 1.44254e-04\n", + " Region: \"zone_3\"\tRelError: 1.39122e-03\tAbsError: 1.05156e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46581e-04\tAbsError: 2.71207e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.31751e-04\tAbsError: 7.80355e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11247e-03\tAbsError: 1.49728e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14543e-07\tAbsError: 1.44312e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.50213e+03\tAbsError: 3.74135e+18\n", + " Region: \"zone_1\"\tRelError: 7.43071e+02\tAbsError: 1.38094e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 7.43067e+02\tAbsError: 8.66949e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.73736e-03\tAbsError: 1.29425e+00\n", + " Region: \"zone_3\"\tRelError: 7.59056e+02\tAbsError: 3.74135e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.17794e+01\tAbsError: 1.84767e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.22112e+02\tAbsError: 1.89368e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 5.05161e+02\tAbsError: 8.66950e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.73959e-03\tAbsError: 1.29503e+00\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.17355e+03\tAbsError: 6.59676e+18\n", + " Region: \"zone_1\"\tRelError: 6.64406e+01\tAbsError: 9.11956e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.64406e+01\tAbsError: 9.11936e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.73494e-09\tAbsError: 1.99410e-06\n", + " Region: \"zone_3\"\tRelError: 3.10711e+03\tAbsError: 6.59676e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.29981e+03\tAbsError: 2.72828e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.70071e+02\tAbsError: 3.86847e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 2.37228e+02\tAbsError: 9.11941e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.73711e-09\tAbsError: 1.99490e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.40237e-04\tAbsError: 2.33681e+09\n", + " Region: \"zone_1\"\tRelError: 1.34744e-04\tAbsError: 4.22136e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34732e-04\tAbsError: 1.29205e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21388e-08\tAbsError: 4.22007e-06\n", + " Region: \"zone_3\"\tRelError: 5.49356e-06\tAbsError: 2.33681e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.26121e-07\tAbsError: 2.08101e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.01255e-07\tAbsError: 2.55800e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 5.05404e-06\tAbsError: 1.34731e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21398e-08\tAbsError: 4.22050e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.39650e-02\tAbsError: 2.30731e+12\n", + " Region: \"zone_1\"\tRelError: 9.33244e-04\tAbsError: 2.05118e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.27371e-04\tAbsError: 1.17101e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87337e-06\tAbsError: 2.03947e-03\n", + " Region: \"zone_3\"\tRelError: 6.30318e-02\tAbsError: 2.30731e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.63237e-02\tAbsError: 1.57438e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.61914e-04\tAbsError: 7.32926e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.34034e-03\tAbsError: 1.22701e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87337e-06\tAbsError: 2.03947e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.04499e-04\tAbsError: 1.25308e+11\n", + " Region: \"zone_1\"\tRelError: 1.66230e-04\tAbsError: 5.88382e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66060e-04\tAbsError: 7.31658e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69192e-07\tAbsError: 5.87650e-05\n", + " Region: \"zone_3\"\tRelError: 4.38270e-04\tAbsError: 1.25308e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07352e-05\tAbsError: 8.57588e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06397e-05\tAbsError: 3.95488e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.16726e-04\tAbsError: 7.69575e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69192e-07\tAbsError: 5.87650e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 8.70313e+02\tAbsError: 6.98288e+17\n", + " Region: \"zone_1\"\tRelError: 7.13997e+00\tAbsError: 4.22170e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 7.12815e+00\tAbsError: 8.34500e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18194e-02\tAbsError: 4.13825e+00\n", + " Region: \"zone_3\"\tRelError: 8.63173e+02\tAbsError: 6.98288e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.32959e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.43790e+02\tAbsError: 3.65329e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03717e+01\tAbsError: 8.34501e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18393e-02\tAbsError: 4.14504e+00\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.01380e+03\tAbsError: 5.64204e+18\n", + " Region: \"zone_1\"\tRelError: 6.11831e+02\tAbsError: 2.66745e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 6.11823e+02\tAbsError: 8.83465e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.46831e-03\tAbsError: 2.57910e+00\n", + " Region: \"zone_3\"\tRelError: 2.40196e+03\tAbsError: 5.64204e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.12311e+01\tAbsError: 2.38950e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.15827e+03\tAbsError: 3.25254e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12453e+02\tAbsError: 8.83466e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.47165e-03\tAbsError: 2.58021e+00\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.18681e-04\tAbsError: 4.27046e+09\n", + " Region: \"zone_1\"\tRelError: 4.05794e-04\tAbsError: 1.53696e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 4.05793e-04\tAbsError: 3.17325e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.32608e-10\tAbsError: 1.50523e-07\n", + " Region: \"zone_3\"\tRelError: 1.28868e-05\tAbsError: 4.27046e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.78504e-07\tAbsError: 2.11621e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.75078e-07\tAbsError: 2.15425e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21327e-05\tAbsError: 3.18974e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.32784e-10\tAbsError: 1.50583e-07\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.79721e-03\tAbsError: 9.76589e+11\n", + " Region: \"zone_1\"\tRelError: 1.82738e-04\tAbsError: 8.39323e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82502e-04\tAbsError: 1.48235e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36874e-07\tAbsError: 8.24499e-05\n", + " Region: \"zone_3\"\tRelError: 1.61447e-03\tAbsError: 9.76589e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10820e-04\tAbsError: 2.51654e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02342e-04\tAbsError: 7.24935e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40107e-03\tAbsError: 1.48793e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36983e-07\tAbsError: 8.24891e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.49542e-04\tAbsError: 5.25665e+10\n", + " Region: \"zone_1\"\tRelError: 3.67448e-05\tAbsError: 6.09103e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.67274e-05\tAbsError: 4.65424e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73630e-08\tAbsError: 6.04449e-06\n", + " Region: \"zone_3\"\tRelError: 1.12797e-04\tAbsError: 5.25665e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.87855e-06\tAbsError: 1.95403e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.83786e-06\tAbsError: 3.30263e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03063e-04\tAbsError: 4.67703e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73708e-08\tAbsError: 6.04733e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 9.68427e+01\tAbsError: 1.86271e+17\n", + " Region: \"zone_1\"\tRelError: 3.19685e+01\tAbsError: 7.04871e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.19667e+01\tAbsError: 7.98884e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79029e-03\tAbsError: 6.24983e-01\n", + " Region: \"zone_3\"\tRelError: 6.48742e+01\tAbsError: 1.86271e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.17407e+01\tAbsError: 1.20464e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.64556e+00\tAbsError: 6.58076e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14861e+01\tAbsError: 7.98885e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79151e-03\tAbsError: 6.25414e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 8.53782e+01\tAbsError: 6.84374e+17\n", + " Region: \"zone_1\"\tRelError: 8.96834e+00\tAbsError: 2.10334e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 8.96253e+00\tAbsError: 8.52529e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.81623e-03\tAbsError: 2.01809e+00\n", + " Region: \"zone_3\"\tRelError: 7.64098e+01\tAbsError: 6.84374e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.05667e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.42655e+01\tAbsError: 3.78707e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 3.31385e+01\tAbsError: 8.52530e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.81888e-03\tAbsError: 2.01893e+00\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.52688e-05\tAbsError: 1.17670e+08\n", + " Region: \"zone_1\"\tRelError: 2.46158e-05\tAbsError: 2.70500e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.46150e-05\tAbsError: 1.36432e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.77640e-10\tAbsError: 2.70364e-07\n", + " Region: \"zone_3\"\tRelError: 6.53080e-07\tAbsError: 1.17670e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28285e-08\tAbsError: 3.19578e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29513e-08\tAbsError: 8.57119e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 6.26522e-07\tAbsError: 1.37295e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.77947e-10\tAbsError: 2.70471e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:29\u001b[0m.\u001b[1;36m061\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:29\u001b[0m.\u001b[1;36m061\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.3111111111111111\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.68582e-04\tAbsError: 6.39514e+10\n", + " Region: \"zone_1\"\tRelError: 3.10151e-05\tAbsError: 5.94800e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.08440e-05\tAbsError: 4.08298e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71164e-07\tAbsError: 5.94392e-05\n", + " Region: \"zone_3\"\tRelError: 2.37567e-04\tAbsError: 6.39514e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16150e-06\tAbsError: 5.01904e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.80228e-06\tAbsError: 1.37610e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29432e-04\tAbsError: 4.25523e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71229e-07\tAbsError: 5.94601e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.34624e-05\tAbsError: 4.93091e+09\n", + " Region: \"zone_1\"\tRelError: 6.39676e-06\tAbsError: 2.70524e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.38897e-06\tAbsError: 2.92934e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78060e-09\tAbsError: 2.70231e-06\n", + " Region: \"zone_3\"\tRelError: 1.70656e-05\tAbsError: 4.93091e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.08419e-07\tAbsError: 3.64067e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.02781e-07\tAbsError: 1.29024e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62466e-05\tAbsError: 3.07636e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78100e-09\tAbsError: 2.70248e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:29\u001b[0m.\u001b[1;36m854\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:29\u001b[0m.\u001b[1;36m854\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.24667e+02\tAbsError: 9.36869e+16\n", + " Region: \"zone_1\"\tRelError: 3.44931e+01\tAbsError: 1.92933e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.44878e+01\tAbsError: 7.59482e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.32955e-03\tAbsError: 1.85338e+00\n", + " Region: \"zone_3\"\tRelError: 9.01736e+01\tAbsError: 9.36869e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 5.68542e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.07385e+01\tAbsError: 3.68327e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.29792e-01\tAbsError: 7.59483e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.33491e-03\tAbsError: 1.85518e+00\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Iteration: 3\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 3.86267e+01\tAbsError: 4.06209e+17\n", + " Region: \"zone_1\"\tRelError: 2.78038e+01\tAbsError: 4.45349e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78027e+01\tAbsError: 8.18705e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04531e-03\tAbsError: 3.63478e-01\n", + " Region: \"zone_3\"\tRelError: 1.08229e+01\tAbsError: 4.06209e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.41059e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.98604e-01\tAbsError: 1.65150e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 8.23283e-01\tAbsError: 8.18706e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04717e-03\tAbsError: 3.64135e-01\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.61549e-04\tAbsError: 5.47840e+10\n", + " Region: \"zone_1\"\tRelError: 1.81900e-05\tAbsError: 1.93945e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81846e-05\tAbsError: 4.89694e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43105e-09\tAbsError: 1.89048e-06\n", + " Region: \"zone_3\"\tRelError: 1.43359e-04\tAbsError: 5.47840e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.04114e-06\tAbsError: 2.20323e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.00674e-06\tAbsError: 3.27517e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35306e-04\tAbsError: 4.90033e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43421e-09\tAbsError: 1.89162e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.12632e+01\tAbsError: 8.74680e+15\n", + " Region: \"zone_1\"\tRelError: 7.96020e+01\tAbsError: 4.20726e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.96020e+01\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.00346e-11\tAbsError: 2.43477e-08\n", + " Region: \"zone_3\"\tRelError: 1.66123e+00\tAbsError: 8.74680e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.79075e-01\tAbsError: 4.99947e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.79057e-01\tAbsError: 3.74732e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03096e-01\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.00563e-11\tAbsError: 2.43563e-08\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.28223e+02\tAbsError: 1.62795e+16\n", + " Region: \"zone_1\"\tRelError: 8.61338e-01\tAbsError: 1.70935e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.61052e-01\tAbsError: 7.15491e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.85874e-04\tAbsError: 9.93859e-02\n", + " Region: \"zone_3\"\tRelError: 4.27361e+02\tAbsError: 1.62795e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.54493e+01\tAbsError: 8.35436e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.99426e+02\tAbsError: 7.92518e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.48589e+00\tAbsError: 7.15491e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.88789e-04\tAbsError: 1.00396e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.06257e+02\tAbsError: 1.29604e+17\n", + " Region: \"zone_1\"\tRelError: 8.27554e+00\tAbsError: 8.69496e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.27327e+00\tAbsError: 7.81451e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27537e-03\tAbsError: 7.91351e-01\n", + " Region: \"zone_3\"\tRelError: 9.79817e+01\tAbsError: 1.29604e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 6.52819e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.97255e+01\tAbsError: 6.43224e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 9.25384e+00\tAbsError: 7.81452e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29060e-03\tAbsError: 7.96682e-01\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 9.54016e+00\tAbsError: 8.28773e+15\n", + " Region: \"zone_1\"\tRelError: 7.90066e+00\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.90066e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.70872e-10\tAbsError: 1.98738e-07\n", + " Region: \"zone_3\"\tRelError: 1.63951e+00\tAbsError: 8.28773e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69626e-01\tAbsError: 4.72857e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69607e-01\tAbsError: 3.55916e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00272e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.71136e-10\tAbsError: 1.98834e-07\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.55715e-06\tAbsError: 1.55371e+09\n", + " Region: \"zone_1\"\tRelError: 2.75443e-07\tAbsError: 3.15707e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66361e-07\tAbsError: 7.16801e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.08162e-09\tAbsError: 3.15635e-06\n", + " Region: \"zone_3\"\tRelError: 2.28171e-06\tAbsError: 1.55371e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01860e-07\tAbsError: 1.23171e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.92720e-08\tAbsError: 3.21996e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.10150e-06\tAbsError: 7.37244e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.08225e-09\tAbsError: 3.15662e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.52304e+00\tAbsError: 3.22018e+14\n", + " Region: \"zone_1\"\tRelError: 1.04116e+00\tAbsError: 9.13945e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04099e+00\tAbsError: 3.20823e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70632e-04\tAbsError: 5.93121e-02\n", + " Region: \"zone_3\"\tRelError: 1.48187e+00\tAbsError: 3.22018e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.55212e-01\tAbsError: 1.88246e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.49817e-01\tAbsError: 1.33772e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.66716e-02\tAbsError: 3.20828e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70632e-04\tAbsError: 5.93121e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:32\u001b[0m.\u001b[1;36m265\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.5\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.86745e+03\tAbsError: 2.87021e+15\n", + " Region: \"zone_1\"\tRelError: 3.03999e-01\tAbsError: 2.78978e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.03388e-01\tAbsError: 6.65853e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.11336e-04\tAbsError: 2.12392e-01\n", + " Region: \"zone_3\"\tRelError: 1.86715e+03\tAbsError: 2.87021e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.52631e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.85800e+03\tAbsError: 1.34390e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48187e-01\tAbsError: 6.65854e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.11343e-04\tAbsError: 2.12399e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.25853e+03\tAbsError: 3.72486e+16\n", + " Region: \"zone_1\"\tRelError: 3.40834e+01\tAbsError: 2.39711e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40829e+01\tAbsError: 7.40072e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.76619e-04\tAbsError: 1.65703e-01\n", + " Region: \"zone_3\"\tRelError: 1.22445e+03\tAbsError: 3.72486e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.78015e+01\tAbsError: 2.61006e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.17550e+03\tAbsError: 1.11480e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15080e+00\tAbsError: 7.40073e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.80200e-04\tAbsError: 1.66948e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.57084e+00\tAbsError: 2.89575e+14\n", + " Region: \"zone_1\"\tRelError: 1.26543e-01\tAbsError: 8.72430e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26381e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62480e-04\tAbsError: 5.64794e-02\n", + " Region: \"zone_3\"\tRelError: 1.44430e+00\tAbsError: 2.89575e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37983e-01\tAbsError: 1.66847e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32917e-01\tAbsError: 1.22728e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.32359e-02\tAbsError: 3.07641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62480e-04\tAbsError: 5.64794e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.74375e+00\tAbsError: 3.50039e+13\n", + " Region: \"zone_1\"\tRelError: 1.72509e+00\tAbsError: 3.20212e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72508e+00\tAbsError: 2.58927e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76304e-05\tAbsError: 6.12847e-03\n", + " Region: \"zone_3\"\tRelError: 1.01866e+00\tAbsError: 3.50039e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.66614e-01\tAbsError: 2.50578e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.37869e-01\tAbsError: 9.94603e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14160e-01\tAbsError: 2.58952e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76304e-05\tAbsError: 6.12847e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.44671e+02\tAbsError: 8.23352e+15\n", + " Region: \"zone_1\"\tRelError: 5.43003e+02\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.43003e+02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.11266e-10\tAbsError: 1.43080e-07\n", + " Region: \"zone_3\"\tRelError: 1.66763e+00\tAbsError: 8.23352e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.84587e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69628e-01\tAbsError: 3.38765e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28340e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.11422e-10\tAbsError: 1.43134e-07\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.36319e+03\tAbsError: 1.41269e+15\n", + " Region: \"zone_1\"\tRelError: 1.28924e-01\tAbsError: 8.79199e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28846e-01\tAbsError: 6.09159e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78481e-05\tAbsError: 2.70040e-02\n", + " Region: \"zone_3\"\tRelError: 5.36306e+03\tAbsError: 1.41269e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.92653e+01\tAbsError: 8.02764e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.34320e+03\tAbsError: 6.09927e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.90596e-01\tAbsError: 6.09160e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.79397e-05\tAbsError: 2.70349e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.81425e+03\tAbsError: 1.18091e+16\n", + " Region: \"zone_1\"\tRelError: 1.10058e+00\tAbsError: 3.95698e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09964e+00\tAbsError: 6.93658e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.39571e-04\tAbsError: 3.26332e-01\n", + " Region: \"zone_3\"\tRelError: 4.81315e+03\tAbsError: 1.18091e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01697e+03\tAbsError: 7.05124e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.79600e+03\tAbsError: 4.75788e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79744e-01\tAbsError: 6.93660e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.39571e-04\tAbsError: 3.26332e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.08933e+00\tAbsError: 3.08258e+13\n", + " Region: \"zone_1\"\tRelError: 1.39766e-01\tAbsError: 3.14532e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39750e-01\tAbsError: 2.58726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60540e-05\tAbsError: 5.58058e-03\n", + " Region: \"zone_3\"\tRelError: 9.49568e-01\tAbsError: 3.08258e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40223e-01\tAbsError: 2.27975e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.01508e-01\tAbsError: 8.02831e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07820e-01\tAbsError: 2.58966e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60540e-05\tAbsError: 5.58058e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.75308e-01\tAbsError: 5.34944e+12\n", + " Region: \"zone_1\"\tRelError: 3.72814e-01\tAbsError: 1.35368e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.72806e-01\tAbsError: 1.08347e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.77327e-06\tAbsError: 2.70212e-03\n", + " Region: \"zone_3\"\tRelError: 3.02494e-01\tAbsError: 5.34944e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21510e-01\tAbsError: 2.69650e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.93876e-02\tAbsError: 2.65294e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.15883e-02\tAbsError: 1.08348e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.77635e-06\tAbsError: 2.70319e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.93663e+00\tAbsError: 6.37428e+14\n", + " Region: \"zone_1\"\tRelError: 3.46019e+00\tAbsError: 7.21476e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.46007e+00\tAbsError: 3.07635e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", + " Region: \"zone_3\"\tRelError: 1.47644e+00\tAbsError: 6.37428e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40577e-01\tAbsError: 3.72575e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.27797e-01\tAbsError: 2.64853e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07947e-01\tAbsError: 3.07638e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 5.84846e+03\tAbsError: 3.44554e+14\n", + " Region: \"zone_1\"\tRelError: 8.59110e-02\tAbsError: 9.29740e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.57997e-02\tAbsError: 5.43522e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11333e-04\tAbsError: 3.86218e-02\n", + " Region: \"zone_3\"\tRelError: 5.84837e+03\tAbsError: 3.44554e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.83124e+01\tAbsError: 2.76436e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.77997e+03\tAbsError: 3.16910e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.03843e-02\tAbsError: 5.43523e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11353e-04\tAbsError: 3.86287e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.67664e+03\tAbsError: 3.86757e+15\n", + " Region: \"zone_1\"\tRelError: 2.88309e-01\tAbsError: 8.78439e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88240e-01\tAbsError: 6.41007e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.84844e-05\tAbsError: 2.37431e-02\n", + " Region: \"zone_3\"\tRelError: 3.67636e+03\tAbsError: 3.86757e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.51609e+03\tAbsError: 1.51784e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.15956e+03\tAbsError: 2.34973e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.09194e-01\tAbsError: 6.41009e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.84844e-05\tAbsError: 2.37431e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.94758e-01\tAbsError: 4.98642e+12\n", + " Region: \"zone_1\"\tRelError: 2.19383e-02\tAbsError: 1.22221e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19295e-02\tAbsError: 9.16564e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.79291e-06\tAbsError: 3.05651e-03\n", + " Region: \"zone_3\"\tRelError: 2.72820e-01\tAbsError: 4.98642e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12699e-01\tAbsError: 2.77867e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.23181e-02\tAbsError: 2.20775e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77940e-02\tAbsError: 9.16568e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.79389e-06\tAbsError: 3.05683e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.07127e-01\tAbsError: 2.27621e+12\n", + " Region: \"zone_1\"\tRelError: 1.32025e-01\tAbsError: 2.29999e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32018e-01\tAbsError: 2.64450e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.61552e-06\tAbsError: 2.29735e-03\n", + " Region: \"zone_3\"\tRelError: 7.51022e-02\tAbsError: 2.27621e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.73929e-02\tAbsError: 1.51862e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96700e-04\tAbsError: 7.57587e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.50600e-03\tAbsError: 2.76514e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.61552e-06\tAbsError: 2.29735e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.95431e+00\tAbsError: 2.96317e+14\n", + " Region: \"zone_1\"\tRelError: 2.00902e+00\tAbsError: 3.34445e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.00900e+00\tAbsError: 2.58782e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", + " Region: \"zone_3\"\tRelError: 9.45295e-01\tAbsError: 2.96317e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42034e-01\tAbsError: 1.59420e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.10683e-01\tAbsError: 1.36896e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.25558e-02\tAbsError: 2.58843e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 3.07717e+02\tAbsError: 3.41972e+14\n", + " Region: \"zone_1\"\tRelError: 6.25182e-02\tAbsError: 9.04306e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.23920e-02\tAbsError: 4.66459e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26199e-04\tAbsError: 4.37847e-02\n", + " Region: \"zone_3\"\tRelError: 3.07654e+02\tAbsError: 3.41972e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.13248e+01\tAbsError: 9.78065e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.26263e+02\tAbsError: 3.32191e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.61212e-02\tAbsError: 4.66461e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26284e-04\tAbsError: 4.38139e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.45779e+02\tAbsError: 4.88724e+14\n", + " Region: \"zone_1\"\tRelError: 1.11637e-01\tAbsError: 1.12494e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11480e-01\tAbsError: 5.80508e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57017e-04\tAbsError: 5.44434e-02\n", + " Region: \"zone_3\"\tRelError: 3.45668e+02\tAbsError: 4.88724e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.41490e+02\tAbsError: 7.86476e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04063e+02\tAbsError: 4.10076e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14659e-01\tAbsError: 5.80510e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57017e-04\tAbsError: 5.44434e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.73338e-02\tAbsError: 3.09182e+12\n", + " Region: \"zone_1\"\tRelError: 1.11598e-02\tAbsError: 1.65988e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11551e-02\tAbsError: 1.42279e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73882e-06\tAbsError: 1.64565e-03\n", + " Region: \"zone_3\"\tRelError: 6.61739e-02\tAbsError: 3.09182e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.71921e-02\tAbsError: 1.98622e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.49402e-04\tAbsError: 1.10560e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.42774e-03\tAbsError: 1.50865e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73882e-06\tAbsError: 1.64565e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.83620e-02\tAbsError: 1.13870e+12\n", + " Region: \"zone_1\"\tRelError: 2.64653e-02\tAbsError: 1.04782e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64650e-02\tAbsError: 1.67776e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.96193e-07\tAbsError: 1.03104e-04\n", + " Region: \"zone_3\"\tRelError: 1.89667e-03\tAbsError: 1.13870e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.35343e-04\tAbsError: 3.09668e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.32169e-04\tAbsError: 8.29034e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62887e-03\tAbsError: 1.68368e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.96330e-07\tAbsError: 1.03153e-04\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.90232e-01\tAbsError: 1.27257e+14\n", + " Region: \"zone_1\"\tRelError: 2.88169e-01\tAbsError: 1.34324e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88157e-01\tAbsError: 9.16559e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22923e-05\tAbsError: 4.26682e-03\n", + " Region: \"zone_3\"\tRelError: 3.02062e-01\tAbsError: 1.27257e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98145e-01\tAbsError: 5.59682e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.53461e-02\tAbsError: 7.12890e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.85587e-02\tAbsError: 9.16563e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22942e-05\tAbsError: 4.26755e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.39393e+02\tAbsError: 3.64933e+14\n", + " Region: \"zone_1\"\tRelError: 4.82703e-02\tAbsError: 9.42476e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.81068e-02\tAbsError: 3.75039e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63524e-04\tAbsError: 5.67437e-02\n", + " Region: \"zone_3\"\tRelError: 3.39345e+02\tAbsError: 3.64933e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.35286e+02\tAbsError: 1.87521e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.00945e+00\tAbsError: 3.46181e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.85698e-02\tAbsError: 3.75040e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63606e-04\tAbsError: 5.67717e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.63763e+03\tAbsError: 7.31087e+14\n", + " Region: \"zone_1\"\tRelError: 8.64629e-02\tAbsError: 1.00303e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.63208e-02\tAbsError: 5.10011e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42170e-04\tAbsError: 4.93021e-02\n", + " Region: \"zone_3\"\tRelError: 1.63754e+03\tAbsError: 7.31087e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52841e+03\tAbsError: 1.45596e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09042e+02\tAbsError: 5.85492e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.90210e-02\tAbsError: 5.10013e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42351e-04\tAbsError: 4.93655e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.35940e-03\tAbsError: 7.91644e+11\n", + " Region: \"zone_1\"\tRelError: 6.17001e-04\tAbsError: 1.42075e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.16596e-04\tAbsError: 1.18665e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.04748e-07\tAbsError: 1.40888e-04\n", + " Region: \"zone_3\"\tRelError: 7.42401e-04\tAbsError: 7.91644e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00211e-04\tAbsError: 1.88344e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.60094e-05\tAbsError: 6.03301e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.55776e-04\tAbsError: 1.18974e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.04912e-07\tAbsError: 1.40947e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.97427e-03\tAbsError: 8.34481e+10\n", + " Region: \"zone_1\"\tRelError: 4.68156e-03\tAbsError: 6.81964e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.68136e-03\tAbsError: 4.94587e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.96225e-07\tAbsError: 6.81469e-05\n", + " Region: \"zone_3\"\tRelError: 2.92716e-04\tAbsError: 8.34481e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.82298e-06\tAbsError: 6.22948e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.70009e-06\tAbsError: 2.11533e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80996e-04\tAbsError: 5.18395e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.96320e-07\tAbsError: 6.81781e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.38373e+00\tAbsError: 3.54714e+14\n", + " Region: \"zone_1\"\tRelError: 3.50043e-02\tAbsError: 1.00946e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.47904e-02\tAbsError: 2.67289e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.13833e-04\tAbsError: 7.42170e-02\n", + " Region: \"zone_3\"\tRelError: 1.34873e+00\tAbsError: 3.54714e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.91995e-01\tAbsError: 2.17117e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.20831e-01\tAbsError: 3.33002e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.56862e-02\tAbsError: 2.67290e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.13916e-04\tAbsError: 7.42453e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.81369e-01\tAbsError: 1.65118e+13\n", + " Region: \"zone_1\"\tRelError: 1.13683e-01\tAbsError: 2.48930e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13676e-01\tAbsError: 7.97182e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", + " Region: \"zone_3\"\tRelError: 6.76863e-02\tAbsError: 1.65118e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.50220e-02\tAbsError: 9.05581e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.84537e-03\tAbsError: 7.45604e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.81196e-03\tAbsError: 8.36703e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 5.75527e+03\tAbsError: 5.86973e+14\n", + " Region: \"zone_1\"\tRelError: 6.49389e-02\tAbsError: 1.06630e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.47545e-02\tAbsError: 4.26777e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84381e-04\tAbsError: 6.39523e-02\n", + " Region: \"zone_3\"\tRelError: 5.75521e+03\tAbsError: 5.86973e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.71637e+01\tAbsError: 2.47136e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.72798e+03\tAbsError: 5.62259e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.66210e-02\tAbsError: 4.26779e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84600e-04\tAbsError: 6.40289e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.02141e-03\tAbsError: 1.23957e+11\n", + " Region: \"zone_1\"\tRelError: 5.52143e-04\tAbsError: 4.11028e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.52024e-04\tAbsError: 7.43261e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18138e-07\tAbsError: 4.10285e-05\n", + " Region: \"zone_3\"\tRelError: 4.69263e-04\tAbsError: 1.23957e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.58109e-06\tAbsError: 8.33431e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.49437e-06\tAbsError: 4.06142e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.50070e-04\tAbsError: 7.83274e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18138e-07\tAbsError: 4.10285e-05\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 4.33255e+03\tAbsError: 2.74718e+14\n", + " Region: \"zone_1\"\tRelError: 2.38298e-02\tAbsError: 1.14096e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.35589e-02\tAbsError: 2.00642e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.70849e-04\tAbsError: 9.40316e-02\n", + " Region: \"zone_3\"\tRelError: 4.33253e+03\tAbsError: 2.74718e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33248e+03\tAbsError: 1.69273e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.25127e-02\tAbsError: 2.57791e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.29273e-02\tAbsError: 2.00645e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.70968e-04\tAbsError: 9.40723e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.67864e-03\tAbsError: 6.31615e+10\n", + " Region: \"zone_1\"\tRelError: 2.51673e-03\tAbsError: 2.73456e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51673e-03\tAbsError: 5.64919e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.69330e-09\tAbsError: 2.67806e-06\n", + " Region: \"zone_3\"\tRelError: 1.61905e-04\tAbsError: 6.31615e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.20270e-06\tAbsError: 2.57065e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.15754e-06\tAbsError: 3.74550e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51537e-04\tAbsError: 5.65377e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.69772e-09\tAbsError: 2.67968e-06\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 5.40516e+00\tAbsError: 6.10838e+14\n", + " Region: \"zone_1\"\tRelError: 4.60821e-02\tAbsError: 1.19505e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.58322e-02\tAbsError: 3.27970e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.49925e-04\tAbsError: 8.67077e-02\n", + " Region: \"zone_3\"\tRelError: 5.35908e+00\tAbsError: 6.10838e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.31178e+00\tAbsError: 4.37441e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.99602e-01\tAbsError: 5.67094e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.74406e-02\tAbsError: 3.27973e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.50164e-04\tAbsError: 8.67915e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.11615e-03\tAbsError: 1.08851e+12\n", + " Region: \"zone_1\"\tRelError: 5.30759e-03\tAbsError: 1.67972e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.30711e-03\tAbsError: 1.45981e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", + " Region: \"zone_3\"\tRelError: 1.80856e-03\tAbsError: 1.08851e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43945e-04\tAbsError: 2.92186e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.94756e-05\tAbsError: 7.96320e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56466e-03\tAbsError: 1.47422e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.30911e-04\tAbsError: 3.51442e+10\n", + " Region: \"zone_1\"\tRelError: 6.81885e-05\tAbsError: 6.92614e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.81687e-05\tAbsError: 3.42472e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.97989e-08\tAbsError: 6.89189e-06\n", + " Region: \"zone_3\"\tRelError: 6.27220e-05\tAbsError: 3.51442e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91737e-06\tAbsError: 1.11617e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.89123e-06\tAbsError: 2.39825e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.68936e-05\tAbsError: 3.42673e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98072e-08\tAbsError: 6.89488e-06\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.03113e+00\tAbsError: 2.11035e+14\n", + " Region: \"zone_1\"\tRelError: 4.04265e-03\tAbsError: 1.72589e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.54660e-03\tAbsError: 2.89536e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.96045e-04\tAbsError: 1.72299e-01\n", + " Region: \"zone_3\"\tRelError: 1.02709e+00\tAbsError: 2.11035e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99308e-01\tAbsError: 2.04510e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.65242e-02\tAbsError: 1.90584e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07609e-02\tAbsError: 2.94824e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.96237e-04\tAbsError: 1.72365e-01\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 4.64188e+00\tAbsError: 5.33011e+14\n", + " Region: \"zone_1\"\tRelError: 3.16465e-02\tAbsError: 1.40911e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.13151e-02\tAbsError: 2.58757e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.31467e-04\tAbsError: 1.15036e-01\n", + " Region: \"zone_3\"\tRelError: 4.61023e+00\tAbsError: 5.33011e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.05862e+00\tAbsError: 2.76173e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.10894e-01\tAbsError: 5.05394e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.03797e-02\tAbsError: 2.47844e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.31761e-04\tAbsError: 1.15139e-01\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.97090e-05\tAbsError: 1.87629e+09\n", + " Region: \"zone_1\"\tRelError: 6.53617e-05\tAbsError: 3.62362e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.53512e-05\tAbsError: 1.06367e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04217e-08\tAbsError: 3.62255e-06\n", + " Region: \"zone_3\"\tRelError: 4.34737e-06\tAbsError: 1.87629e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54714e-07\tAbsError: 1.70496e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24511e-07\tAbsError: 1.71327e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 4.05772e-06\tAbsError: 1.10499e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04226e-08\tAbsError: 3.62292e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:42\u001b[0m.\u001b[1;36m078\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:42\u001b[0m.\u001b[1;36m078\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.41666666666666674\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.59900e-03\tAbsError: 1.40711e+11\n", + " Region: \"zone_1\"\tRelError: 2.06948e-03\tAbsError: 6.41578e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06929e-03\tAbsError: 9.09489e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84503e-07\tAbsError: 6.40668e-05\n", + " Region: \"zone_3\"\tRelError: 5.29527e-04\tAbsError: 1.40711e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.39801e-06\tAbsError: 9.47438e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.30618e-06\tAbsError: 4.59674e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.12638e-04\tAbsError: 9.48359e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84568e-07\tAbsError: 6.40878e-05\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 2.12961e-01\tAbsError: 8.84450e+13\n", + " Region: \"zone_1\"\tRelError: 2.03827e-02\tAbsError: 1.35383e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03791e-02\tAbsError: 1.10127e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57224e-06\tAbsError: 1.24370e-03\n", + " Region: \"zone_3\"\tRelError: 1.92578e-01\tAbsError: 8.84450e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.20762e-02\tAbsError: 2.90584e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.23302e-02\tAbsError: 5.93866e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68168e-01\tAbsError: 1.11435e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57397e-06\tAbsError: 1.24433e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.91977e-05\tAbsError: 5.89586e+09\n", + " Region: \"zone_1\"\tRelError: 2.66095e-05\tAbsError: 1.68142e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66047e-05\tAbsError: 3.56714e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.83123e-09\tAbsError: 1.67785e-06\n", + " Region: \"zone_3\"\tRelError: 2.25882e-05\tAbsError: 5.89586e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.48785e-07\tAbsError: 4.10020e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.43251e-07\tAbsError: 1.79565e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16913e-05\tAbsError: 3.75397e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.83123e-09\tAbsError: 1.67785e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:42\u001b[0m.\u001b[1;36m945\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.4\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 8.88594e-01\tAbsError: 7.19301e+14\n", + " Region: \"zone_1\"\tRelError: 1.39066e-02\tAbsError: 2.06684e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38812e-02\tAbsError: 1.18261e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54789e-05\tAbsError: 8.84230e-03\n", + " Region: \"zone_3\"\tRelError: 8.74688e-01\tAbsError: 7.19301e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.37645e-01\tAbsError: 1.89617e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.54753e-03\tAbsError: 7.00339e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33469e-01\tAbsError: 1.18264e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54789e-05\tAbsError: 8.84230e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.84757e-04\tAbsError: 5.79873e+10\n", + " Region: \"zone_1\"\tRelError: 5.39232e-04\tAbsError: 6.69464e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.39213e-04\tAbsError: 4.49143e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91058e-08\tAbsError: 6.64972e-06\n", + " Region: \"zone_3\"\tRelError: 1.45525e-04\tAbsError: 5.79873e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.71562e-06\tAbsError: 2.34463e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.68397e-06\tAbsError: 3.45410e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38106e-04\tAbsError: 4.56915e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91137e-08\tAbsError: 6.65261e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.42976e+01\tAbsError: 8.72124e+15\n", + " Region: \"zone_1\"\tRelError: 1.26250e+01\tAbsError: 4.20728e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26250e+01\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.97298e-10\tAbsError: 1.38229e-07\n", + " Region: \"zone_3\"\tRelError: 1.67260e+00\tAbsError: 8.72124e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.79100e-01\tAbsError: 5.12249e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.79079e-01\tAbsError: 3.59874e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14421e-01\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.97458e-10\tAbsError: 1.38283e-07\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 1.29054e-02\tAbsError: 9.55991e+11\n", + " Region: \"zone_1\"\tRelError: 1.34678e-03\tAbsError: 5.73063e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33028e-03\tAbsError: 1.08229e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64949e-05\tAbsError: 5.72955e-03\n", + " Region: \"zone_3\"\tRelError: 1.15586e-02\tAbsError: 9.55991e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.52563e-04\tAbsError: 6.37238e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.02234e-04\tAbsError: 3.18753e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08873e-02\tAbsError: 1.11346e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64949e-05\tAbsError: 5.72955e-03\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 4.48439e-01\tAbsError: 7.38740e+14\n", + " Region: \"zone_1\"\tRelError: 1.96172e-02\tAbsError: 2.97738e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87611e-02\tAbsError: 3.63461e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.56135e-04\tAbsError: 2.97374e-01\n", + " Region: \"zone_3\"\tRelError: 4.28822e-01\tAbsError: 7.38740e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97195e-01\tAbsError: 1.33763e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.37804e-02\tAbsError: 7.25364e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16989e-01\tAbsError: 3.77506e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.57649e-04\tAbsError: 2.97894e-01\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.62552e+00\tAbsError: 8.26510e+15\n", + " Region: \"zone_1\"\tRelError: 6.97719e+00\tAbsError: 4.09546e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.97719e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.33437e-10\tAbsError: 3.24924e-07\n", + " Region: \"zone_3\"\tRelError: 1.64833e+00\tAbsError: 8.26510e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69652e-01\tAbsError: 4.84454e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69632e-01\tAbsError: 3.42056e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09044e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.33825e-10\tAbsError: 3.25065e-07\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.02364e-04\tAbsError: 5.62247e+09\n", + " Region: \"zone_1\"\tRelError: 8.15379e-05\tAbsError: 3.03368e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.15291e-05\tAbsError: 3.57289e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.71937e-09\tAbsError: 3.03011e-06\n", + " Region: \"zone_3\"\tRelError: 2.08260e-05\tAbsError: 5.62247e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14319e-07\tAbsError: 4.05600e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.09034e-07\tAbsError: 1.56647e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01939e-05\tAbsError: 3.71851e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.71944e-09\tAbsError: 3.03019e-06\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 1.77629e-02\tAbsError: 5.59565e+12\n", + " Region: \"zone_1\"\tRelError: 1.81038e-03\tAbsError: 4.29761e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80916e-03\tAbsError: 4.24509e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22368e-06\tAbsError: 4.25516e-04\n", + " Region: \"zone_3\"\tRelError: 1.59525e-02\tAbsError: 5.59565e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.73694e-04\tAbsError: 2.63052e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.69913e-04\tAbsError: 2.96513e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48076e-02\tAbsError: 4.30437e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22409e-06\tAbsError: 4.25659e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.79975e+00\tAbsError: 3.41396e+14\n", + " Region: \"zone_1\"\tRelError: 3.00576e-01\tAbsError: 8.44197e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.00425e-01\tAbsError: 3.20823e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50589e-04\tAbsError: 5.23374e-02\n", + " Region: \"zone_3\"\tRelError: 1.49918e+00\tAbsError: 3.41396e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.56115e-01\tAbsError: 2.48707e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.49187e-01\tAbsError: 9.26885e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.37238e-02\tAbsError: 3.20827e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50589e-04\tAbsError: 5.23374e-02\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 3.78632e-01\tAbsError: 1.54781e+14\n", + " Region: \"zone_1\"\tRelError: 3.64972e-02\tAbsError: 4.47239e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.64849e-02\tAbsError: 1.90602e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22982e-05\tAbsError: 4.28179e-03\n", + " Region: \"zone_3\"\tRelError: 3.42135e-01\tAbsError: 1.54781e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13118e-02\tAbsError: 5.14808e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.12130e-02\tAbsError: 1.03300e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.99598e-01\tAbsError: 1.92876e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23055e-05\tAbsError: 4.28442e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.56210e+00\tAbsError: 2.88655e+14\n", + " Region: \"zone_1\"\tRelError: 1.01850e-01\tAbsError: 8.11752e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01705e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45044e-04\tAbsError: 5.04116e-02\n", + " Region: \"zone_3\"\tRelError: 1.46025e+00\tAbsError: 2.88655e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39145e-01\tAbsError: 2.10222e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.31918e-01\tAbsError: 7.84329e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.90395e-02\tAbsError: 3.07640e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45044e-04\tAbsError: 5.04116e-02\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 2.03335e-03\tAbsError: 3.99942e+11\n", + " Region: \"zone_1\"\tRelError: 2.13959e-04\tAbsError: 3.73601e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12885e-04\tAbsError: 2.93620e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07360e-06\tAbsError: 3.73308e-04\n", + " Region: \"zone_3\"\tRelError: 1.81940e-03\tAbsError: 3.99942e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.25123e-05\tAbsError: 2.20324e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.23710e-05\tAbsError: 1.79618e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73344e-03\tAbsError: 2.97698e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07395e-06\tAbsError: 3.73446e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.62672e-05\tAbsError: 3.10481e+09\n", + " Region: \"zone_1\"\tRelError: 3.66806e-05\tAbsError: 2.21724e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 3.66799e-05\tAbsError: 2.06476e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.31104e-10\tAbsError: 2.19659e-07\n", + " Region: \"zone_3\"\tRelError: 9.58660e-06\tAbsError: 3.10481e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88628e-07\tAbsError: 1.51763e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.86687e-07\tAbsError: 1.58718e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.21065e-06\tAbsError: 2.10348e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.31398e-10\tAbsError: 2.19764e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:46\u001b[0m.\u001b[1;36m504\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.6\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 3.05940e-02\tAbsError: 3.26270e+12\n", + " Region: \"zone_1\"\tRelError: 3.18240e-03\tAbsError: 1.00464e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.15349e-03\tAbsError: 2.83329e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89147e-05\tAbsError: 1.00436e-02\n", + " Region: \"zone_3\"\tRelError: 2.74116e-02\tAbsError: 3.26270e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.15392e-04\tAbsError: 2.40672e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.40622e-04\tAbsError: 8.55981e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.62267e-02\tAbsError: 2.91021e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89147e-05\tAbsError: 1.00436e-02\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.09917e+00\tAbsError: 7.91798e+13\n", + " Region: \"zone_1\"\tRelError: 7.82475e-02\tAbsError: 3.30055e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.82269e-02\tAbsError: 2.58549e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.05740e-05\tAbsError: 7.15067e-03\n", + " Region: \"zone_3\"\tRelError: 1.02092e+00\tAbsError: 7.91798e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.67275e-01\tAbsError: 4.71969e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.46242e-01\tAbsError: 3.19828e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07381e-01\tAbsError: 2.58736e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.05740e-05\tAbsError: 7.15067e-03\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 1.34362e-03\tAbsError: 3.65764e+11\n", + " Region: \"zone_1\"\tRelError: 1.38561e-04\tAbsError: 5.07671e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38416e-04\tAbsError: 2.46873e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45284e-07\tAbsError: 5.05202e-05\n", + " Region: \"zone_3\"\tRelError: 1.20506e-03\tAbsError: 3.65764e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.63771e-05\tAbsError: 1.97641e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.61145e-05\tAbsError: 1.68123e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13242e-03\tAbsError: 2.50412e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45318e-07\tAbsError: 5.05322e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.02466e+00\tAbsError: 6.04267e+13\n", + " Region: \"zone_1\"\tRelError: 7.18592e-02\tAbsError: 3.22577e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.18409e-02\tAbsError: 2.58878e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83272e-05\tAbsError: 6.36990e-03\n", + " Region: \"zone_3\"\tRelError: 9.52804e-01\tAbsError: 6.04267e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40508e-01\tAbsError: 3.80417e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.10167e-01\tAbsError: 2.23851e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02110e-01\tAbsError: 2.58991e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83272e-05\tAbsError: 6.36990e-03\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 3.17501e-02\tAbsError: 9.87378e+12\n", + " Region: \"zone_1\"\tRelError: 3.24279e-03\tAbsError: 8.49203e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.24037e-03\tAbsError: 7.44208e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.42070e-06\tAbsError: 8.41761e-04\n", + " Region: \"zone_3\"\tRelError: 2.85073e-02\tAbsError: 9.87378e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01026e-03\tAbsError: 4.68266e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.00374e-03\tAbsError: 5.19113e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64909e-02\tAbsError: 7.54644e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.42111e-06\tAbsError: 8.41906e-04\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.53006e-01\tAbsError: 2.85325e+13\n", + " Region: \"zone_1\"\tRelError: 3.17735e-02\tAbsError: 1.33835e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.17662e-02\tAbsError: 1.08347e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.33375e-06\tAbsError: 2.54883e-03\n", + " Region: \"zone_3\"\tRelError: 3.21233e-01\tAbsError: 2.85325e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.19887e-01\tAbsError: 1.38532e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.34008e-02\tAbsError: 1.46793e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.79373e-02\tAbsError: 1.08348e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.33696e-06\tAbsError: 2.54999e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.94073e+01\tAbsError: 8.32958e+15\n", + " Region: \"zone_1\"\tRelError: 1.77016e+01\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77016e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.06764e-10\tAbsError: 1.76108e-07\n", + " Region: \"zone_3\"\tRelError: 1.70569e+00\tAbsError: 8.32958e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69637e-01\tAbsError: 4.59097e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69532e-01\tAbsError: 3.73860e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66519e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.06930e-10\tAbsError: 1.76171e-07\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 2.19620e-04\tAbsError: 4.76128e+10\n", + " Region: \"zone_1\"\tRelError: 2.29852e-05\tAbsError: 2.66177e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29088e-05\tAbsError: 3.23281e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.64529e-08\tAbsError: 2.65853e-05\n", + " Region: \"zone_3\"\tRelError: 1.96635e-04\tAbsError: 4.76128e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.90619e-06\tAbsError: 2.73453e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.88596e-06\tAbsError: 2.02674e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86766e-04\tAbsError: 3.27811e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.64720e-08\tAbsError: 2.65920e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.07050e-01\tAbsError: 1.83634e+13\n", + " Region: \"zone_1\"\tRelError: 2.24108e-02\tAbsError: 1.12606e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24048e-02\tAbsError: 9.16557e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.02744e-06\tAbsError: 2.09499e-03\n", + " Region: \"zone_3\"\tRelError: 2.84640e-01\tAbsError: 1.83634e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.09245e-01\tAbsError: 8.86934e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.28005e-02\tAbsError: 9.49405e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25878e-02\tAbsError: 9.16561e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.02994e-06\tAbsError: 2.09586e-03\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 4.00791e-03\tAbsError: 7.94469e+11\n", + " Region: \"zone_1\"\tRelError: 4.21254e-04\tAbsError: 6.66722e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.19338e-04\tAbsError: 5.54818e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91582e-06\tAbsError: 6.66167e-04\n", + " Region: \"zone_3\"\tRelError: 3.58666e-03\tAbsError: 7.94469e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.27304e-05\tAbsError: 4.54237e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.23889e-05\tAbsError: 3.40232e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.41962e-03\tAbsError: 5.62636e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91658e-06\tAbsError: 6.66464e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.03807e-02\tAbsError: 4.31916e+12\n", + " Region: \"zone_1\"\tRelError: 4.20953e-03\tAbsError: 1.71332e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.20469e-03\tAbsError: 2.96488e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.84876e-06\tAbsError: 1.68367e-03\n", + " Region: \"zone_3\"\tRelError: 7.61712e-02\tAbsError: 4.31916e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.68288e-02\tAbsError: 2.37964e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.61116e-03\tAbsError: 1.93953e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.72641e-03\tAbsError: 3.23070e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.84876e-06\tAbsError: 1.68367e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.07616e+01\tAbsError: 3.02291e+15\n", + " Region: \"zone_1\"\tRelError: 9.27113e+00\tAbsError: 6.52674e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.27103e+00\tAbsError: 3.07634e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.92954e-05\tAbsError: 3.45040e-02\n", + " Region: \"zone_3\"\tRelError: 1.49044e+00\tAbsError: 3.02291e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40308e-01\tAbsError: 1.49698e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.14159e-01\tAbsError: 1.52592e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35875e-01\tAbsError: 3.07635e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.92954e-05\tAbsError: 3.45040e-02\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 1.01270e-04\tAbsError: 2.55605e+10\n", + " Region: \"zone_1\"\tRelError: 1.04938e-05\tAbsError: 4.88254e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04798e-05\tAbsError: 1.65111e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39935e-08\tAbsError: 4.86603e-06\n", + " Region: \"zone_3\"\tRelError: 9.07764e-05\tAbsError: 2.55605e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.54439e-06\tAbsError: 1.46826e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.52628e-06\tAbsError: 1.08779e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.56917e-05\tAbsError: 1.67514e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39958e-08\tAbsError: 4.86682e-06\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 2.41571e-03\tAbsError: 6.51578e+11\n", + " Region: \"zone_1\"\tRelError: 2.49310e-04\tAbsError: 9.61601e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49035e-04\tAbsError: 4.38276e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75272e-07\tAbsError: 9.57218e-05\n", + " Region: \"zone_3\"\tRelError: 2.16640e-03\tAbsError: 6.51578e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.48244e-05\tAbsError: 3.54039e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.43631e-05\tAbsError: 2.97539e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03694e-03\tAbsError: 4.44564e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75326e-07\tAbsError: 9.57408e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.39650e-02\tAbsError: 2.30731e+12\n", + " Region: \"zone_1\"\tRelError: 9.33244e-04\tAbsError: 2.05118e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.27371e-04\tAbsError: 1.17101e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87337e-06\tAbsError: 2.03947e-03\n", + " Region: \"zone_3\"\tRelError: 6.30318e-02\tAbsError: 2.30731e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.63237e-02\tAbsError: 1.57438e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.61914e-04\tAbsError: 7.32926e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.34034e-03\tAbsError: 1.22701e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87337e-06\tAbsError: 2.03947e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.97676e-04\tAbsError: 7.95668e+11\n", + " Region: \"zone_1\"\tRelError: 1.29401e-04\tAbsError: 1.23466e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29049e-04\tAbsError: 1.19542e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.51297e-07\tAbsError: 1.22271e-04\n", + " Region: \"zone_3\"\tRelError: 8.68275e-04\tAbsError: 7.95668e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04248e-04\tAbsError: 1.86473e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.74128e-05\tAbsError: 6.09196e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.86263e-04\tAbsError: 1.19935e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.51436e-07\tAbsError: 1.22321e-04\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 2.05070e-05\tAbsError: 4.57864e+09\n", + " Region: \"zone_1\"\tRelError: 2.14180e-06\tAbsError: 1.98128e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13612e-06\tAbsError: 2.99420e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.68907e-09\tAbsError: 1.97829e-06\n", + " Region: \"zone_3\"\tRelError: 1.83652e-05\tAbsError: 4.57864e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.66063e-07\tAbsError: 2.69416e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.63768e-07\tAbsError: 1.88448e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74296e-05\tAbsError: 3.03713e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.68998e-09\tAbsError: 1.97861e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.22732e+00\tAbsError: 2.06865e+15\n", + " Region: \"zone_1\"\tRelError: 2.78568e-01\tAbsError: 2.74627e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78563e-01\tAbsError: 2.58185e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73142e-06\tAbsError: 1.64416e-03\n", + " Region: \"zone_3\"\tRelError: 9.48751e-01\tAbsError: 2.06865e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.44918e-01\tAbsError: 9.02348e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.89155e-01\tAbsError: 1.16630e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14673e-01\tAbsError: 2.51147e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73142e-06\tAbsError: 1.64416e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:50\u001b[0m.\u001b[1;36m917\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 0.205\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 4.14530e-04\tAbsError: 9.00878e+10\n", + " Region: \"zone_1\"\tRelError: 4.33708e-05\tAbsError: 4.78767e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.32333e-05\tAbsError: 6.03673e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37508e-07\tAbsError: 4.78163e-05\n", + " Region: \"zone_3\"\tRelError: 3.71159e-04\tAbsError: 9.00878e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.25135e-06\tAbsError: 5.23202e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.21072e-06\tAbsError: 3.77677e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52560e-04\tAbsError: 6.12186e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37541e-07\tAbsError: 4.78278e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.79721e-03\tAbsError: 9.76589e+11\n", + " Region: \"zone_1\"\tRelError: 1.82738e-04\tAbsError: 8.39323e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82502e-04\tAbsError: 1.48235e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36874e-07\tAbsError: 8.24499e-05\n", + " Region: \"zone_3\"\tRelError: 1.61447e-03\tAbsError: 9.76589e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10820e-04\tAbsError: 2.51654e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02342e-04\tAbsError: 7.24935e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40107e-03\tAbsError: 1.48793e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36983e-07\tAbsError: 8.24891e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.61330e-04\tAbsError: 1.06282e+11\n", + " Region: \"zone_1\"\tRelError: 4.56683e-05\tAbsError: 4.35026e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.55433e-05\tAbsError: 6.77792e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.25079e-07\tAbsError: 4.34348e-05\n", + " Region: \"zone_3\"\tRelError: 4.15662e-04\tAbsError: 1.06282e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.04343e-06\tAbsError: 7.28947e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.97562e-06\tAbsError: 3.33874e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.01518e-04\tAbsError: 7.07926e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.25079e-07\tAbsError: 4.34348e-05\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 1.82957e-04\tAbsError: 4.59083e+10\n", + " Region: \"zone_1\"\tRelError: 1.89657e-05\tAbsError: 9.08920e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89396e-05\tAbsError: 2.96048e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.60532e-08\tAbsError: 9.05960e-06\n", + " Region: \"zone_3\"\tRelError: 1.63992e-04\tAbsError: 4.59083e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.57251e-06\tAbsError: 2.64519e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.54031e-06\tAbsError: 1.94565e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54853e-04\tAbsError: 3.00359e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.60571e-08\tAbsError: 9.06097e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.18897e+00\tAbsError: 6.29402e+14\n", + " Region: \"zone_1\"\tRelError: 6.86170e+00\tAbsError: 2.22868e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.86166e+00\tAbsError: 9.16572e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77613e-05\tAbsError: 1.31211e-02\n", + " Region: \"zone_3\"\tRelError: 3.27267e-01\tAbsError: 6.29402e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84319e-01\tAbsError: 3.28649e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.08857e-01\tAbsError: 3.00753e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40527e-02\tAbsError: 9.16579e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77613e-05\tAbsError: 1.31211e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.21972e+01\tAbsError: 8.79739e+15\n", + " Region: \"zone_1\"\tRelError: 2.05511e+01\tAbsError: 4.19634e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05511e+01\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24058e-09\tAbsError: 4.31395e-07\n", + " Region: \"zone_3\"\tRelError: 1.64617e+00\tAbsError: 8.79739e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78071e-01\tAbsError: 4.86801e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.78002e-01\tAbsError: 3.92938e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.00933e-02\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24074e-09\tAbsError: 4.31450e-07\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.68582e-04\tAbsError: 6.39514e+10\n", + " Region: \"zone_1\"\tRelError: 3.10151e-05\tAbsError: 5.94800e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.08440e-05\tAbsError: 4.08298e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71164e-07\tAbsError: 5.94392e-05\n", + " Region: \"zone_3\"\tRelError: 2.37567e-04\tAbsError: 6.39514e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16150e-06\tAbsError: 5.01904e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.80228e-06\tAbsError: 1.37610e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29432e-04\tAbsError: 4.25523e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71229e-07\tAbsError: 5.94601e-05\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 3.80865e-05\tAbsError: 8.51875e+09\n", + " Region: \"zone_1\"\tRelError: 3.97720e-06\tAbsError: 3.58327e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.96691e-06\tAbsError: 5.54273e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02887e-08\tAbsError: 3.57772e-06\n", + " Region: \"zone_3\"\tRelError: 3.41093e-05\tAbsError: 8.51875e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.66086e-07\tAbsError: 5.03274e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.61710e-07\tAbsError: 3.48600e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.23712e-05\tAbsError: 5.62244e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02903e-08\tAbsError: 3.57829e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:53\u001b[0m.\u001b[1;36m452\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.21\u001b[0m \n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 8.56296e-05\tAbsError: 3.78286e+10\n", + " Region: \"zone_1\"\tRelError: 8.06637e-06\tAbsError: 5.60804e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.05036e-06\tAbsError: 3.55674e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60098e-08\tAbsError: 5.57247e-06\n", + " Region: \"zone_3\"\tRelError: 7.75632e-05\tAbsError: 3.78286e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.72451e-06\tAbsError: 1.28450e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.70072e-06\tAbsError: 2.49837e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.21220e-05\tAbsError: 3.55685e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60165e-08\tAbsError: 5.57492e-06\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:53\u001b[0m.\u001b[1;36m570\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:53\u001b[0m.\u001b[1;36m570\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5222222222222223\u001b[0m \n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "number of equations 31816\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.42105e-01\tAbsError: 9.57843e+13\n", + " Region: \"zone_1\"\tRelError: 5.64317e-01\tAbsError: 1.44974e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.64276e-01\tAbsError: 1.24104e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14024e-05\tAbsError: 1.43733e-02\n", + " Region: \"zone_3\"\tRelError: 7.77880e-02\tAbsError: 9.57843e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.25473e-02\tAbsError: 4.71405e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.65020e-03\tAbsError: 4.86438e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95491e-02\tAbsError: 1.28397e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14024e-05\tAbsError: 1.43733e-02\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.29261e+00\tAbsError: 3.28148e+14\n", + " Region: \"zone_1\"\tRelError: 2.82868e+00\tAbsError: 9.50796e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.82849e+00\tAbsError: 3.19529e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.81575e-04\tAbsError: 6.31268e-02\n", + " Region: \"zone_3\"\tRelError: 1.46393e+00\tAbsError: 3.28148e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53256e-01\tAbsError: 1.60807e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.47889e-01\tAbsError: 1.67341e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.26077e-02\tAbsError: 3.19533e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.81575e-04\tAbsError: 6.31268e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.61549e-04\tAbsError: 5.47840e+10\n", + " Region: \"zone_1\"\tRelError: 1.81900e-05\tAbsError: 1.93945e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81846e-05\tAbsError: 4.89694e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43105e-09\tAbsError: 1.89048e-06\n", + " Region: \"zone_3\"\tRelError: 1.43359e-04\tAbsError: 5.47840e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.04114e-06\tAbsError: 2.20323e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.00674e-06\tAbsError: 3.27517e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35306e-04\tAbsError: 4.90033e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43421e-09\tAbsError: 1.89162e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.36557e-01\tAbsError: 7.18470e+12\n", + " Region: \"zone_1\"\tRelError: 1.16158e-01\tAbsError: 1.78279e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16157e-01\tAbsError: 6.59165e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.94530e-07\tAbsError: 1.71687e-04\n", + " Region: \"zone_3\"\tRelError: 2.03993e-02\tAbsError: 7.18470e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.98223e-04\tAbsError: 2.78831e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.37326e-04\tAbsError: 4.39639e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92632e-02\tAbsError: 6.83641e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.94530e-07\tAbsError: 1.71687e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.00879e+03\tAbsError: 9.21631e+15\n", + " Region: \"zone_1\"\tRelError: 1.00712e+03\tAbsError: 4.29346e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00712e+03\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29034e-09\tAbsError: 7.96432e-07\n", + " Region: \"zone_3\"\tRelError: 1.66508e+00\tAbsError: 9.21631e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86000e-01\tAbsError: 5.09982e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.85932e-01\tAbsError: 4.11649e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.31442e-02\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29062e-09\tAbsError: 7.96530e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.03787e+00\tAbsError: 8.68675e+15\n", + " Region: \"zone_1\"\tRelError: 5.34083e+00\tAbsError: 4.20745e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.34083e+00\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.44746e-09\tAbsError: 1.89168e-06\n", + " Region: \"zone_3\"\tRelError: 1.69705e+00\tAbsError: 8.68675e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.79112e-01\tAbsError: 5.08967e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.79068e-01\tAbsError: 3.59708e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38867e-01\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.44892e-09\tAbsError: 1.89214e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.01561e+00\tAbsError: 4.22498e+13\n", + " Region: \"zone_1\"\tRelError: 1.00695e+00\tAbsError: 3.08676e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00693e+00\tAbsError: 2.58780e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43517e-05\tAbsError: 4.98963e-03\n", + " Region: \"zone_3\"\tRelError: 1.00866e+00\tAbsError: 4.22498e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.63696e-01\tAbsError: 3.04335e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.31201e-01\tAbsError: 1.18163e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13751e-01\tAbsError: 2.58956e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43517e-05\tAbsError: 4.98963e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.55715e-06\tAbsError: 1.55371e+09\n", + " Region: \"zone_1\"\tRelError: 2.75443e-07\tAbsError: 3.15707e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66361e-07\tAbsError: 7.16801e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.08162e-09\tAbsError: 3.15635e-06\n", + " Region: \"zone_3\"\tRelError: 2.28171e-06\tAbsError: 1.55371e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01860e-07\tAbsError: 1.23171e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.92720e-08\tAbsError: 3.21996e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.10150e-06\tAbsError: 7.37244e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.08225e-09\tAbsError: 3.15662e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:55\u001b[0m.\u001b[1;36m580\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.5\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.13498e-03\tAbsError: 1.41105e+11\n", + " Region: \"zone_1\"\tRelError: 2.73398e-03\tAbsError: 4.76357e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73260e-03\tAbsError: 1.35633e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37060e-06\tAbsError: 4.76221e-04\n", + " Region: \"zone_3\"\tRelError: 4.01007e-04\tAbsError: 1.41105e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.96062e-06\tAbsError: 6.85210e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.81427e-06\tAbsError: 7.25836e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87862e-04\tAbsError: 1.38229e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37060e-06\tAbsError: 4.76221e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.52211e+00\tAbsError: 3.59125e+14\n", + " Region: \"zone_1\"\tRelError: 1.02736e+00\tAbsError: 9.92324e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02717e+00\tAbsError: 3.31004e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.90221e-04\tAbsError: 6.61320e-02\n", + " Region: \"zone_3\"\tRelError: 1.49475e+00\tAbsError: 3.59125e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67298e-01\tAbsError: 1.76595e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.62445e-01\tAbsError: 1.82530e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.48202e-02\tAbsError: 3.31009e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.90221e-04\tAbsError: 6.61320e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.79028e+00\tAbsError: 9.40544e+14\n", + " Region: \"zone_1\"\tRelError: 2.75190e-01\tAbsError: 7.38905e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.75070e-01\tAbsError: 3.20822e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20307e-04\tAbsError: 4.18083e-02\n", + " Region: \"zone_3\"\tRelError: 1.51509e+00\tAbsError: 9.40544e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57667e-01\tAbsError: 5.48737e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.43526e-01\tAbsError: 3.91807e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13778e-01\tAbsError: 3.20825e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20307e-04\tAbsError: 4.18083e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.40953e-01\tAbsError: 2.74084e+12\n", + " Region: \"zone_1\"\tRelError: 4.80746e-02\tAbsError: 1.39556e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.80651e-02\tAbsError: 1.06618e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.47399e-06\tAbsError: 3.29377e-03\n", + " Region: \"zone_3\"\tRelError: 2.92878e-01\tAbsError: 2.74084e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.18891e-01\tAbsError: 1.82408e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.68392e-02\tAbsError: 9.16762e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.71388e-02\tAbsError: 1.06619e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.47605e-06\tAbsError: 3.29454e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.44671e+02\tAbsError: 8.23352e+15\n", + " Region: \"zone_1\"\tRelError: 5.43003e+02\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.43003e+02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.11266e-10\tAbsError: 1.43080e-07\n", + " Region: \"zone_3\"\tRelError: 1.66763e+00\tAbsError: 8.23352e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.84587e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69628e-01\tAbsError: 3.38765e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28340e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.11422e-10\tAbsError: 1.43134e-07\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.31814e-02\tAbsError: 4.58362e+11\n", + " Region: \"zone_1\"\tRelError: 1.15315e-02\tAbsError: 2.80900e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15314e-02\tAbsError: 2.57528e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.01667e-08\tAbsError: 2.78324e-05\n", + " Region: \"zone_3\"\tRelError: 1.64997e-03\tAbsError: 4.58362e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47024e-05\tAbsError: 2.30121e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.45967e-05\tAbsError: 2.28241e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60059e-03\tAbsError: 2.62890e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.01667e-08\tAbsError: 2.78324e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.22235e+00\tAbsError: 4.60128e+13\n", + " Region: \"zone_1\"\tRelError: 1.55292e-01\tAbsError: 3.12944e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55276e-01\tAbsError: 2.58827e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55659e-05\tAbsError: 5.41171e-03\n", + " Region: \"zone_3\"\tRelError: 1.06706e+00\tAbsError: 4.60128e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.86396e-01\tAbsError: 3.30945e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.60965e-01\tAbsError: 1.29183e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19685e-01\tAbsError: 2.58997e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55659e-05\tAbsError: 5.41171e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.04706e-01\tAbsError: 2.69889e+12\n", + " Region: \"zone_1\"\tRelError: 3.03473e-02\tAbsError: 2.78065e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.03393e-02\tAbsError: 1.57814e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.00188e-06\tAbsError: 2.77907e-03\n", + " Region: \"zone_3\"\tRelError: 7.43586e-02\tAbsError: 2.69889e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.61302e-02\tAbsError: 1.67218e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.39676e-04\tAbsError: 1.02671e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.08064e-03\tAbsError: 1.64723e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.00188e-06\tAbsError: 2.77907e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.18789e+00\tAbsError: 4.83732e+14\n", + " Region: \"zone_1\"\tRelError: 1.79190e-01\tAbsError: 3.41802e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79166e-01\tAbsError: 2.58395e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.40007e-05\tAbsError: 8.34077e-03\n", + " Region: \"zone_3\"\tRelError: 1.00870e+00\tAbsError: 4.83732e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.69011e-01\tAbsError: 2.31920e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.36472e-01\tAbsError: 2.51812e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03191e-01\tAbsError: 2.58327e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.40007e-05\tAbsError: 8.34077e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.93663e+00\tAbsError: 6.37428e+14\n", + " Region: \"zone_1\"\tRelError: 3.46019e+00\tAbsError: 7.21476e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.46007e+00\tAbsError: 3.07635e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", + " Region: \"zone_3\"\tRelError: 1.47644e+00\tAbsError: 6.37428e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40577e-01\tAbsError: 3.72575e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.27797e-01\tAbsError: 2.64853e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07947e-01\tAbsError: 3.07638e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.25913e-03\tAbsError: 2.71128e+10\n", + " Region: \"zone_1\"\tRelError: 1.10973e-03\tAbsError: 2.99279e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10965e-03\tAbsError: 1.77983e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.60783e-08\tAbsError: 2.99101e-05\n", + " Region: \"zone_3\"\tRelError: 1.49391e-04\tAbsError: 2.71128e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61984e-06\tAbsError: 1.29863e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.63350e-06\tAbsError: 1.41265e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46052e-04\tAbsError: 1.82225e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.61134e-08\tAbsError: 2.99224e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.57693e-01\tAbsError: 3.02154e+12\n", + " Region: \"zone_1\"\tRelError: 1.96652e-02\tAbsError: 1.57882e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96551e-02\tAbsError: 1.22658e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01318e-05\tAbsError: 3.52244e-03\n", + " Region: \"zone_3\"\tRelError: 3.38028e-01\tAbsError: 3.02154e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.44609e-01\tAbsError: 2.12319e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.34946e-02\tAbsError: 8.98343e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.99137e-02\tAbsError: 1.22658e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01327e-05\tAbsError: 3.52280e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.89232e-01\tAbsError: 2.20799e+14\n", + " Region: \"zone_1\"\tRelError: 3.47859e-02\tAbsError: 1.63666e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.47699e-02\tAbsError: 1.08347e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59370e-05\tAbsError: 5.53193e-03\n", + " Region: \"zone_3\"\tRelError: 3.54446e-01\tAbsError: 2.20799e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17998e-01\tAbsError: 9.98034e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.00900e-01\tAbsError: 1.20996e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.55324e-02\tAbsError: 1.08347e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59483e-05\tAbsError: 5.53592e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.99368e-03\tAbsError: 1.36436e+12\n", + " Region: \"zone_1\"\tRelError: 4.69498e-03\tAbsError: 1.18416e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.69465e-03\tAbsError: 1.92140e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34635e-07\tAbsError: 1.16495e-04\n", + " Region: \"zone_3\"\tRelError: 2.29869e-03\tAbsError: 1.36436e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.77818e-04\tAbsError: 3.77261e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.77531e-04\tAbsError: 9.87102e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.94301e-03\tAbsError: 1.92550e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34793e-07\tAbsError: 1.16552e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.95431e+00\tAbsError: 2.96317e+14\n", + " Region: \"zone_1\"\tRelError: 2.00902e+00\tAbsError: 3.34445e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.00900e+00\tAbsError: 2.58782e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", + " Region: \"zone_3\"\tRelError: 9.45295e-01\tAbsError: 2.96317e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42034e-01\tAbsError: 1.59420e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.10683e-01\tAbsError: 1.36896e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.25558e-02\tAbsError: 2.58843e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 9.89584e-04\tAbsError: 2.93050e+10\n", + " Region: \"zone_1\"\tRelError: 8.69289e-04\tAbsError: 3.58476e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.69279e-04\tAbsError: 1.49163e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02736e-08\tAbsError: 3.56984e-06\n", + " Region: \"zone_3\"\tRelError: 1.20295e-04\tAbsError: 2.93050e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52554e-06\tAbsError: 1.64489e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.51838e-06\tAbsError: 1.28561e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17241e-04\tAbsError: 1.55101e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02768e-08\tAbsError: 3.57094e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.07862e-02\tAbsError: 2.91329e+12\n", + " Region: \"zone_1\"\tRelError: 4.25198e-03\tAbsError: 2.87694e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.24370e-03\tAbsError: 1.98745e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.27799e-06\tAbsError: 2.87495e-03\n", + " Region: \"zone_3\"\tRelError: 8.65343e-02\tAbsError: 2.91329e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.76531e-02\tAbsError: 1.73373e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.28097e-04\tAbsError: 1.17955e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.64474e-03\tAbsError: 1.98943e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.27799e-06\tAbsError: 2.87495e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.27705e-02\tAbsError: 3.92143e+13\n", + " Region: \"zone_1\"\tRelError: 1.18444e-02\tAbsError: 3.97274e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18335e-02\tAbsError: 1.67051e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09608e-05\tAbsError: 3.80569e-03\n", + " Region: \"zone_3\"\tRelError: 8.09261e-02\tAbsError: 3.92143e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.23262e-02\tAbsError: 2.18276e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.11384e-03\tAbsError: 1.73866e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14751e-02\tAbsError: 1.77220e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09608e-05\tAbsError: 3.80569e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.32584e-03\tAbsError: 9.49817e+10\n", + " Region: \"zone_1\"\tRelError: 1.01622e-03\tAbsError: 8.23598e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01599e-03\tAbsError: 5.43240e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36970e-07\tAbsError: 8.23055e-05\n", + " Region: \"zone_3\"\tRelError: 3.09622e-04\tAbsError: 9.49817e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.47531e-06\tAbsError: 7.03893e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.40231e-06\tAbsError: 2.45924e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.94507e-04\tAbsError: 5.71127e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.37095e-07\tAbsError: 8.23471e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.90232e-01\tAbsError: 1.27257e+14\n", + " Region: \"zone_1\"\tRelError: 2.88169e-01\tAbsError: 1.34324e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88157e-01\tAbsError: 9.16559e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22923e-05\tAbsError: 4.26682e-03\n", + " Region: \"zone_3\"\tRelError: 3.02062e-01\tAbsError: 1.27257e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98145e-01\tAbsError: 5.59682e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.53461e-02\tAbsError: 7.12890e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.85587e-02\tAbsError: 9.16563e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22942e-05\tAbsError: 4.26755e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.48739e-04\tAbsError: 3.41314e+09\n", + " Region: \"zone_1\"\tRelError: 1.31134e-04\tAbsError: 2.06494e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31128e-04\tAbsError: 1.91971e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.93716e-09\tAbsError: 2.06302e-06\n", + " Region: \"zone_3\"\tRelError: 1.76048e-05\tAbsError: 3.41314e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88514e-07\tAbsError: 1.94837e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.89063e-07\tAbsError: 1.46477e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72213e-05\tAbsError: 1.99642e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.93836e-09\tAbsError: 2.06344e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.01174e-03\tAbsError: 1.41556e+12\n", + " Region: \"zone_1\"\tRelError: 6.68071e-04\tAbsError: 1.27918e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.67709e-04\tAbsError: 1.99067e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.61735e-07\tAbsError: 1.25927e-04\n", + " Region: \"zone_3\"\tRelError: 2.34367e-03\tAbsError: 1.41556e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.80161e-04\tAbsError: 3.89187e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.82303e-04\tAbsError: 1.02637e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.98085e-03\tAbsError: 1.99421e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.61901e-07\tAbsError: 1.25988e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.66013e-03\tAbsError: 1.81030e+12\n", + " Region: \"zone_1\"\tRelError: 6.83848e-04\tAbsError: 2.20908e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.83218e-04\tAbsError: 2.13698e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.29499e-07\tAbsError: 2.18771e-04\n", + " Region: \"zone_3\"\tRelError: 3.97628e-03\tAbsError: 1.81030e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.57910e-04\tAbsError: 5.71047e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.59751e-04\tAbsError: 1.23926e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.55799e-03\tAbsError: 2.13935e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.29499e-07\tAbsError: 2.18771e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 7.92825e-04\tAbsError: 7.64423e+10\n", + " Region: \"zone_1\"\tRelError: 6.01230e-04\tAbsError: 2.80077e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.01222e-04\tAbsError: 6.50022e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.85825e-09\tAbsError: 2.73577e-06\n", + " Region: \"zone_3\"\tRelError: 1.91595e-04\tAbsError: 7.64423e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.08323e-06\tAbsError: 3.16055e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.02571e-06\tAbsError: 4.48368e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77478e-04\tAbsError: 6.53128e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.86287e-09\tAbsError: 2.73743e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.81369e-01\tAbsError: 1.65118e+13\n", + " Region: \"zone_1\"\tRelError: 1.13683e-01\tAbsError: 2.48930e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13676e-01\tAbsError: 7.97182e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", + " Region: \"zone_3\"\tRelError: 6.76863e-02\tAbsError: 1.65118e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.50220e-02\tAbsError: 9.05581e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.84537e-03\tAbsError: 7.45604e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.81196e-03\tAbsError: 8.36703e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 7.33109e-05\tAbsError: 1.99171e+09\n", + " Region: \"zone_1\"\tRelError: 6.45108e-05\tAbsError: 3.50573e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 6.45098e-05\tAbsError: 1.06453e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00585e-09\tAbsError: 3.49509e-07\n", + " Region: \"zone_3\"\tRelError: 8.80007e-06\tAbsError: 1.99171e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03719e-07\tAbsError: 1.17952e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03272e-07\tAbsError: 8.12185e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 8.59208e-06\tAbsError: 1.10473e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00600e-09\tAbsError: 3.49562e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:02\u001b[0m.\u001b[1;36m982\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.7000000000000001\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.99885e-04\tAbsError: 1.03856e+11\n", + " Region: \"zone_1\"\tRelError: 1.59108e-04\tAbsError: 8.49171e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58864e-04\tAbsError: 5.92152e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.44320e-07\tAbsError: 8.48579e-05\n", + " Region: \"zone_3\"\tRelError: 3.40778e-04\tAbsError: 1.03856e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.18070e-06\tAbsError: 7.59415e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.10237e-06\tAbsError: 2.79147e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.24250e-04\tAbsError: 6.22638e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.44435e-07\tAbsError: 8.48959e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.04302e-04\tAbsError: 1.69873e+11\n", + " Region: \"zone_1\"\tRelError: 1.21025e-04\tAbsError: 1.10965e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20706e-04\tAbsError: 1.10497e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.19264e-07\tAbsError: 1.10854e-04\n", + " Region: \"zone_3\"\tRelError: 5.83276e-04\tAbsError: 1.69873e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01956e-05\tAbsError: 1.15007e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.00614e-05\tAbsError: 5.48653e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.62700e-04\tAbsError: 1.15313e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.19307e-07\tAbsError: 1.10871e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 9.53700e-06\tAbsError: 1.98539e+09\n", + " Region: \"zone_1\"\tRelError: 6.19364e-06\tAbsError: 4.43903e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.18087e-06\tAbsError: 9.79483e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27657e-08\tAbsError: 4.43805e-06\n", + " Region: \"zone_3\"\tRelError: 3.34336e-06\tAbsError: 1.98539e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.26061e-07\tAbsError: 1.76204e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.03253e-07\tAbsError: 2.23352e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.90128e-06\tAbsError: 1.01624e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27671e-08\tAbsError: 4.43858e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:03\u001b[0m.\u001b[1;36m664\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:03\u001b[0m.\u001b[1;36m664\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30999999999999994\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.11615e-03\tAbsError: 1.08851e+12\n", + " Region: \"zone_1\"\tRelError: 5.30759e-03\tAbsError: 1.67972e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.30711e-03\tAbsError: 1.45981e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", + " Region: \"zone_3\"\tRelError: 1.80856e-03\tAbsError: 1.08851e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43945e-04\tAbsError: 2.92186e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.94756e-05\tAbsError: 7.96320e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56466e-03\tAbsError: 1.47422e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.94222e+01\tAbsError: 1.62190e+16\n", + " Region: \"zone_1\"\tRelError: 2.76662e+01\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76662e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.29578e-10\tAbsError: 1.49268e-07\n", + " Region: \"zone_3\"\tRelError: 1.75598e+00\tAbsError: 1.62190e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69267e-01\tAbsError: 8.18784e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.68971e-01\tAbsError: 8.03117e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17740e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.29628e-10\tAbsError: 1.49286e-07\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.82167e-04\tAbsError: 7.86600e+10\n", + " Region: \"zone_1\"\tRelError: 8.64932e-05\tAbsError: 3.28075e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.64839e-05\tAbsError: 6.72220e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.23076e-09\tAbsError: 3.21353e-06\n", + " Region: \"zone_3\"\tRelError: 1.95674e-04\tAbsError: 7.86600e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.24753e-06\tAbsError: 3.22967e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.18839e-06\tAbsError: 4.63633e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81229e-04\tAbsError: 6.75257e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.23600e-09\tAbsError: 3.21543e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.69952e-04\tAbsError: 1.04746e+11\n", + " Region: \"zone_1\"\tRelError: 6.23923e-05\tAbsError: 6.08693e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.23750e-05\tAbsError: 7.30344e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72792e-08\tAbsError: 6.01389e-06\n", + " Region: \"zone_3\"\tRelError: 3.07560e-04\tAbsError: 1.04746e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.47306e-06\tAbsError: 4.76665e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.41953e-06\tAbsError: 5.70795e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.94650e-04\tAbsError: 7.47231e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72864e-08\tAbsError: 6.01657e-06\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.59900e-03\tAbsError: 1.40711e+11\n", + " Region: \"zone_1\"\tRelError: 2.06948e-03\tAbsError: 6.41578e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06929e-03\tAbsError: 9.09489e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84503e-07\tAbsError: 6.40668e-05\n", + " Region: \"zone_3\"\tRelError: 5.29527e-04\tAbsError: 1.40711e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.39801e-06\tAbsError: 9.47438e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.30618e-06\tAbsError: 4.59673e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.12638e-04\tAbsError: 9.48359e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84568e-07\tAbsError: 6.40878e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.43666e+01\tAbsError: 8.70090e+15\n", + " Region: \"zone_1\"\tRelError: 4.27079e+01\tAbsError: 4.19631e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.27079e+01\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.30451e-10\tAbsError: 1.84559e-07\n", + " Region: \"zone_3\"\tRelError: 1.65874e+00\tAbsError: 8.70090e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78165e-01\tAbsError: 4.97235e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.78147e-01\tAbsError: 3.72855e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02426e-01\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.30651e-10\tAbsError: 1.84628e-07\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.57455e+00\tAbsError: 1.59389e+16\n", + " Region: \"zone_1\"\tRelError: 1.04759e+00\tAbsError: 1.06162e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04737e+00\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17045e-04\tAbsError: 7.53990e-02\n", + " Region: \"zone_3\"\tRelError: 1.52696e+00\tAbsError: 1.59389e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37511e-01\tAbsError: 7.87332e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.04735e-01\tAbsError: 8.06553e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84502e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17045e-04\tAbsError: 7.53990e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.46289e-06\tAbsError: 2.26082e+09\n", + " Region: \"zone_1\"\tRelError: 1.63757e-06\tAbsError: 4.53256e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62453e-06\tAbsError: 1.22136e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.30342e-08\tAbsError: 4.53134e-06\n", + " Region: \"zone_3\"\tRelError: 4.82532e-06\tAbsError: 2.26082e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.34861e-07\tAbsError: 2.04550e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.09305e-07\tAbsError: 2.15318e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 4.36812e-06\tAbsError: 1.26903e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.30354e-08\tAbsError: 4.53183e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.62562e-05\tAbsError: 4.80597e+09\n", + " Region: \"zone_1\"\tRelError: 2.76618e-06\tAbsError: 6.02701e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74884e-06\tAbsError: 2.93870e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73352e-08\tAbsError: 6.02407e-06\n", + " Region: \"zone_3\"\tRelError: 1.34900e-05\tAbsError: 4.80597e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.86829e-07\tAbsError: 3.77211e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.31164e-07\tAbsError: 1.03387e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29547e-05\tAbsError: 3.05777e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73383e-08\tAbsError: 6.02527e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:06\u001b[0m.\u001b[1;36m206\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:06\u001b[0m.\u001b[1;36m206\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.31999999999999995\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:06\u001b[0m.\u001b[1;36m279\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:06\u001b[0m.\u001b[1;36m279\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6277777777777779\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.84757e-04\tAbsError: 5.79873e+10\n", + " Region: \"zone_1\"\tRelError: 5.39232e-04\tAbsError: 6.69464e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.39213e-04\tAbsError: 4.49143e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91058e-08\tAbsError: 6.64972e-06\n", + " Region: \"zone_3\"\tRelError: 1.45525e-04\tAbsError: 5.79873e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.71562e-06\tAbsError: 2.34463e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.68397e-06\tAbsError: 3.45410e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38106e-04\tAbsError: 4.56915e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91137e-08\tAbsError: 6.65261e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.85241e+00\tAbsError: 3.18768e+14\n", + " Region: \"zone_1\"\tRelError: 3.74188e-01\tAbsError: 9.09797e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74018e-01\tAbsError: 3.19528e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69811e-04\tAbsError: 5.90269e-02\n", + " Region: \"zone_3\"\tRelError: 1.47822e+00\tAbsError: 3.18768e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53655e-01\tAbsError: 1.86103e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.48046e-01\tAbsError: 1.32665e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.63467e-02\tAbsError: 3.19533e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69811e-04\tAbsError: 5.90269e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.14822e+00\tAbsError: 9.83178e+15\n", + " Region: \"zone_1\"\tRelError: 1.39457e-01\tAbsError: 7.32841e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39320e-01\tAbsError: 2.58400e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36592e-04\tAbsError: 4.74441e-02\n", + " Region: \"zone_3\"\tRelError: 1.00877e+00\tAbsError: 9.83178e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43427e-01\tAbsError: 4.83336e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.90483e-01\tAbsError: 4.99841e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74720e-01\tAbsError: 2.58193e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36592e-04\tAbsError: 4.74441e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.59100e+01\tAbsError: 9.11397e+15\n", + " Region: \"zone_1\"\tRelError: 1.42309e+01\tAbsError: 4.29340e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42309e+01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.96085e-10\tAbsError: 1.72605e-07\n", + " Region: \"zone_3\"\tRelError: 1.67911e+00\tAbsError: 9.11397e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86093e-01\tAbsError: 5.21673e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.86076e-01\tAbsError: 3.89724e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06942e-01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.96287e-10\tAbsError: 1.72675e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.18088e+00\tAbsError: 8.89482e+15\n", + " Region: \"zone_1\"\tRelError: 3.44104e+00\tAbsError: 4.20727e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.44104e+00\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.26342e-10\tAbsError: 1.13537e-07\n", + " Region: \"zone_3\"\tRelError: 1.73984e+00\tAbsError: 8.89482e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.79052e-01\tAbsError: 4.78450e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.78927e-01\tAbsError: 4.11032e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81864e-01\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.26495e-10\tAbsError: 1.13589e-07\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.02364e-04\tAbsError: 5.62247e+09\n", + " Region: \"zone_1\"\tRelError: 8.15379e-05\tAbsError: 3.03368e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.15291e-05\tAbsError: 3.57289e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.71937e-09\tAbsError: 3.03011e-06\n", + " Region: \"zone_3\"\tRelError: 2.08260e-05\tAbsError: 5.62247e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14319e-07\tAbsError: 4.05602e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.09034e-07\tAbsError: 1.56645e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01939e-05\tAbsError: 3.71851e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.71944e-09\tAbsError: 3.03019e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 7.14483e+00\tAbsError: 3.41864e+13\n", + " Region: \"zone_1\"\tRelError: 6.13267e+00\tAbsError: 3.19414e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.13265e+00\tAbsError: 2.58787e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74411e-05\tAbsError: 6.06270e-03\n", + " Region: \"zone_3\"\tRelError: 1.01216e+00\tAbsError: 3.41864e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.64045e-01\tAbsError: 2.44518e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.34593e-01\tAbsError: 9.73459e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13508e-01\tAbsError: 2.58986e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74411e-05\tAbsError: 6.06270e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 9.17087e-01\tAbsError: 2.70112e+15\n", + " Region: \"zone_1\"\tRelError: 4.13278e-01\tAbsError: 1.18036e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.12964e-01\tAbsError: 9.16529e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.13541e-04\tAbsError: 1.08871e-01\n", + " Region: \"zone_3\"\tRelError: 5.03809e-01\tAbsError: 2.70112e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.83333e-01\tAbsError: 1.43386e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03452e-01\tAbsError: 1.26726e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16711e-01\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.13541e-04\tAbsError: 1.08871e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.59689e+00\tAbsError: 3.48565e+14\n", + " Region: \"zone_1\"\tRelError: 8.68274e-02\tAbsError: 9.46608e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.66503e-02\tAbsError: 3.31004e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77102e-04\tAbsError: 6.15604e-02\n", + " Region: \"zone_3\"\tRelError: 1.51007e+00\tAbsError: 3.48565e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67462e-01\tAbsError: 2.05903e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.63037e-01\tAbsError: 1.42662e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.93898e-02\tAbsError: 3.31008e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77102e-04\tAbsError: 6.15604e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.86658e+00\tAbsError: 4.79765e+15\n", + " Region: \"zone_1\"\tRelError: 3.33843e-01\tAbsError: 7.09823e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.33731e-01\tAbsError: 3.20821e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11951e-04\tAbsError: 3.89002e-02\n", + " Region: \"zone_3\"\tRelError: 1.53274e+00\tAbsError: 4.79765e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.55885e-01\tAbsError: 2.27341e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.29604e-01\tAbsError: 2.52424e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47140e-01\tAbsError: 3.20822e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11951e-04\tAbsError: 3.89002e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.62672e-05\tAbsError: 3.10482e+09\n", + " Region: \"zone_1\"\tRelError: 3.66806e-05\tAbsError: 2.21724e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 3.66799e-05\tAbsError: 2.06476e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.31104e-10\tAbsError: 2.19659e-07\n", + " Region: \"zone_3\"\tRelError: 9.58660e-06\tAbsError: 3.10482e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88628e-07\tAbsError: 1.51763e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.86687e-07\tAbsError: 1.58719e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.21065e-06\tAbsError: 2.10348e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.31398e-10\tAbsError: 2.19764e-07\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.86366e-01\tAbsError: 5.21058e+12\n", + " Region: \"zone_1\"\tRelError: 4.88854e-01\tAbsError: 1.32754e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.88846e-01\tAbsError: 1.06618e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.51860e-06\tAbsError: 2.61359e-03\n", + " Region: \"zone_3\"\tRelError: 2.97512e-01\tAbsError: 5.21058e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.18585e-01\tAbsError: 2.63420e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.77304e-02\tAbsError: 2.57639e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.11889e-02\tAbsError: 1.06618e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.52103e-06\tAbsError: 2.61444e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:09\u001b[0m.\u001b[1;36m494\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.6\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.27279e-01\tAbsError: 8.17053e+14\n", + " Region: \"zone_1\"\tRelError: 1.09940e-01\tAbsError: 2.21034e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09304e-01\tAbsError: 3.29075e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.36020e-04\tAbsError: 2.20705e-01\n", + " Region: \"zone_3\"\tRelError: 3.17339e-01\tAbsError: 8.17053e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.72653e-02\tAbsError: 1.99598e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.68899e-02\tAbsError: 6.17455e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42547e-01\tAbsError: 3.29140e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.36020e-04\tAbsError: 2.20705e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.22886e+00\tAbsError: 4.42708e+13\n", + " Region: \"zone_1\"\tRelError: 1.58984e-01\tAbsError: 3.21171e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58965e-01\tAbsError: 2.55032e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.90270e-05\tAbsError: 6.61387e-03\n", + " Region: \"zone_3\"\tRelError: 1.06988e+00\tAbsError: 4.42708e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.86765e-01\tAbsError: 3.24991e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.63795e-01\tAbsError: 1.17717e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19299e-01\tAbsError: 2.58497e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.90270e-05\tAbsError: 6.61387e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.14845e+00\tAbsError: 3.47817e+15\n", + " Region: \"zone_1\"\tRelError: 1.23170e-01\tAbsError: 3.19890e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23152e-01\tAbsError: 2.58241e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77415e-05\tAbsError: 6.16481e-03\n", + " Region: \"zone_3\"\tRelError: 1.02528e+00\tAbsError: 3.47817e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.72014e-01\tAbsError: 1.60123e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.20395e-01\tAbsError: 1.87695e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32856e-01\tAbsError: 2.56660e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77630e-05\tAbsError: 6.17222e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.16100e-01\tAbsError: 2.21306e+12\n", + " Region: \"zone_1\"\tRelError: 2.42523e-01\tAbsError: 2.37532e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42516e-01\tAbsError: 2.24934e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.83356e-06\tAbsError: 2.37307e-03\n", + " Region: \"zone_3\"\tRelError: 7.35763e-02\tAbsError: 2.21306e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.61069e-02\tAbsError: 1.47912e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.09117e-04\tAbsError: 7.33941e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.25338e-03\tAbsError: 2.33234e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.83356e-06\tAbsError: 2.37307e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.94073e+01\tAbsError: 8.32958e+15\n", + " Region: \"zone_1\"\tRelError: 1.77016e+01\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77016e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.06764e-10\tAbsError: 1.76108e-07\n", + " Region: \"zone_3\"\tRelError: 1.70569e+00\tAbsError: 8.32958e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69637e-01\tAbsError: 4.59097e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69532e-01\tAbsError: 3.73860e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66519e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.06930e-10\tAbsError: 1.76171e-07\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.01035e-01\tAbsError: 1.64733e+14\n", + " Region: \"zone_1\"\tRelError: 2.03094e-01\tAbsError: 1.60100e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03048e-01\tAbsError: 7.96658e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.59052e-05\tAbsError: 1.59303e-02\n", + " Region: \"zone_3\"\tRelError: 4.97941e-01\tAbsError: 1.64733e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17881e-03\tAbsError: 7.88164e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.07895e-03\tAbsError: 8.59168e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.85637e-01\tAbsError: 8.00849e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.59052e-05\tAbsError: 1.59303e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.71219e-01\tAbsError: 6.21215e+12\n", + " Region: \"zone_1\"\tRelError: 2.71681e-02\tAbsError: 1.54198e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.71591e-02\tAbsError: 1.22657e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.07418e-06\tAbsError: 3.15411e-03\n", + " Region: \"zone_3\"\tRelError: 3.44051e-01\tAbsError: 6.21215e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.44544e-01\tAbsError: 3.16237e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.45424e-02\tAbsError: 3.04979e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49548e-02\tAbsError: 1.22658e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.07667e-06\tAbsError: 3.15512e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.84622e-01\tAbsError: 1.19910e+15\n", + " Region: \"zone_1\"\tRelError: 9.36472e-02\tAbsError: 3.32184e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.35828e-02\tAbsError: 1.08350e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.44226e-05\tAbsError: 2.23834e-02\n", + " Region: \"zone_3\"\tRelError: 3.90975e-01\tAbsError: 1.19910e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14567e-01\tAbsError: 6.37142e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.33113e-01\tAbsError: 5.61954e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.32306e-02\tAbsError: 1.08351e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.44226e-05\tAbsError: 2.23834e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.21034e-02\tAbsError: 1.17870e+12\n", + " Region: \"zone_1\"\tRelError: 6.00476e-02\tAbsError: 9.78333e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.00474e-02\tAbsError: 1.73477e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.76068e-07\tAbsError: 9.60986e-05\n", + " Region: \"zone_3\"\tRelError: 2.05571e-03\tAbsError: 1.17870e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.40860e-04\tAbsError: 3.24945e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.38116e-04\tAbsError: 8.53756e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77646e-03\tAbsError: 1.74090e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.76193e-07\tAbsError: 9.61438e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.07616e+01\tAbsError: 3.02291e+15\n", + " Region: \"zone_1\"\tRelError: 9.27113e+00\tAbsError: 6.52674e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.27103e+00\tAbsError: 3.07634e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.92954e-05\tAbsError: 3.45040e-02\n", + " Region: \"zone_3\"\tRelError: 1.49044e+00\tAbsError: 3.02291e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40308e-01\tAbsError: 1.49698e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.14159e-01\tAbsError: 1.52592e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35875e-01\tAbsError: 3.07635e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.92954e-05\tAbsError: 3.45040e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.04323e-01\tAbsError: 1.53102e+13\n", + " Region: \"zone_1\"\tRelError: 3.15774e-02\tAbsError: 7.15567e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.15568e-02\tAbsError: 7.10876e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.05999e-05\tAbsError: 7.14856e-03\n", + " Region: \"zone_3\"\tRelError: 7.27454e-02\tAbsError: 1.53102e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94207e-04\tAbsError: 7.65839e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.98721e-04\tAbsError: 7.65181e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.15319e-02\tAbsError: 7.17354e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.06009e-05\tAbsError: 7.14900e-03\n", + "Iteration: 4\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.10597e-01\tAbsError: 2.17642e+14\n", + " Region: \"zone_1\"\tRelError: 5.93953e-03\tAbsError: 2.27414e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.87457e-03\tAbsError: 1.87837e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.49665e-05\tAbsError: 2.25536e-02\n", + " Region: \"zone_3\"\tRelError: 1.04658e-01\tAbsError: 2.17642e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.10024e-02\tAbsError: 1.28740e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.57541e-03\tAbsError: 8.89018e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40148e-02\tAbsError: 1.94966e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.49665e-05\tAbsError: 2.25536e-02\n", + " Device: \"device\"\tRelError: 9.89806e-02\tAbsError: 2.63223e+12\n", + " Region: \"zone_1\"\tRelError: 1.18037e-02\tAbsError: 2.01002e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17979e-02\tAbsError: 4.44609e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.77536e-06\tAbsError: 2.00557e-03\n", + " Region: \"zone_3\"\tRelError: 8.71768e-02\tAbsError: 2.63223e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.79784e-02\tAbsError: 1.72107e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.64930e-04\tAbsError: 9.11160e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.82774e-03\tAbsError: 4.85959e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.77536e-06\tAbsError: 2.00557e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 9.04188e-03\tAbsError: 7.61005e+10\n", + " Region: \"zone_1\"\tRelError: 8.78012e-03\tAbsError: 7.15921e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.77992e-03\tAbsError: 4.50957e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.06023e-07\tAbsError: 7.15470e-05\n", + " Region: \"zone_3\"\tRelError: 2.61754e-04\tAbsError: 7.61005e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.33533e-06\tAbsError: 5.83295e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.07541e-06\tAbsError: 1.77711e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51137e-04\tAbsError: 4.71800e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.06123e-07\tAbsError: 7.15827e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.22732e+00\tAbsError: 2.06865e+15\n", + " Region: \"zone_1\"\tRelError: 2.78568e-01\tAbsError: 2.74627e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78563e-01\tAbsError: 2.58185e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73142e-06\tAbsError: 1.64416e-03\n", + " Region: \"zone_3\"\tRelError: 9.48751e-01\tAbsError: 2.06865e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.44918e-01\tAbsError: 9.02348e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.89155e-01\tAbsError: 1.16630e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14673e-01\tAbsError: 2.51147e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73142e-06\tAbsError: 1.64416e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.82885e-02\tAbsError: 7.75343e+12\n", + " Region: \"zone_1\"\tRelError: 1.74263e-02\tAbsError: 1.11082e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74231e-02\tAbsError: 3.27682e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.18949e-06\tAbsError: 1.10754e-03\n", + " Region: \"zone_3\"\tRelError: 4.08622e-02\tAbsError: 7.75343e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.01160e-04\tAbsError: 3.88269e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.99390e-04\tAbsError: 3.87074e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.02585e-02\tAbsError: 3.34987e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.19059e-06\tAbsError: 1.10796e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.68793e-02\tAbsError: 1.13806e+13\n", + " Region: \"zone_1\"\tRelError: 3.05155e-03\tAbsError: 2.63465e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.05082e-03\tAbsError: 9.56254e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.29620e-07\tAbsError: 2.53902e-04\n", + " Region: \"zone_3\"\tRelError: 3.38277e-02\tAbsError: 1.13806e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.73812e-04\tAbsError: 4.54978e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.93557e-04\tAbsError: 6.83078e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.21596e-02\tAbsError: 9.77882e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.29928e-07\tAbsError: 2.54016e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.30530e-03\tAbsError: 9.78003e+11\n", + " Region: \"zone_1\"\tRelError: 1.14749e-03\tAbsError: 1.38882e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14710e-03\tAbsError: 1.45671e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.94799e-07\tAbsError: 1.37425e-04\n", + " Region: \"zone_3\"\tRelError: 1.15781e-03\tAbsError: 9.78003e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.11703e-04\tAbsError: 2.41528e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06316e-04\tAbsError: 7.36475e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.39392e-04\tAbsError: 1.46178e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.94968e-07\tAbsError: 1.37486e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.96510e-03\tAbsError: 6.67503e+10\n", + " Region: \"zone_1\"\tRelError: 5.78981e-03\tAbsError: 2.05708e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.78981e-03\tAbsError: 5.92280e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.73914e-09\tAbsError: 1.99785e-06\n", + " Region: \"zone_3\"\tRelError: 1.75286e-04\tAbsError: 6.67503e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.50783e-06\tAbsError: 2.76624e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.46016e-06\tAbsError: 3.90878e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64312e-04\tAbsError: 5.92735e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.74272e-09\tAbsError: 1.99915e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.18897e+00\tAbsError: 6.29402e+14\n", + " Region: \"zone_1\"\tRelError: 6.86170e+00\tAbsError: 2.22868e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.86166e+00\tAbsError: 9.16572e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77613e-05\tAbsError: 1.31211e-02\n", + " Region: \"zone_3\"\tRelError: 3.27267e-01\tAbsError: 6.29402e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84319e-01\tAbsError: 3.28649e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.08857e-01\tAbsError: 3.00753e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40527e-02\tAbsError: 9.16579e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77613e-05\tAbsError: 1.31211e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.09210e-02\tAbsError: 1.22286e+12\n", + " Region: \"zone_1\"\tRelError: 3.28469e-03\tAbsError: 4.72819e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.28333e-03\tAbsError: 4.87030e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36013e-06\tAbsError: 4.72332e-04\n", + " Region: \"zone_3\"\tRelError: 7.63634e-03\tAbsError: 1.22286e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.75678e-05\tAbsError: 6.11672e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.73305e-05\tAbsError: 6.11193e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.54008e-03\tAbsError: 5.02425e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36049e-06\tAbsError: 4.72455e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.03979e-04\tAbsError: 2.18534e+11\n", + " Region: \"zone_1\"\tRelError: 1.60281e-05\tAbsError: 7.35130e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39125e-05\tAbsError: 1.32164e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.11558e-06\tAbsError: 7.34998e-04\n", + " Region: \"zone_3\"\tRelError: 1.87951e-04\tAbsError: 2.18534e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43155e-05\tAbsError: 1.73222e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.05806e-06\tAbsError: 4.53126e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64462e-04\tAbsError: 1.32403e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.11561e-06\tAbsError: 7.35020e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 9.98595e-04\tAbsError: 1.18398e+11\n", + " Region: \"zone_1\"\tRelError: 5.54916e-04\tAbsError: 5.37957e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.54761e-04\tAbsError: 7.07360e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54699e-07\tAbsError: 5.37249e-05\n", + " Region: \"zone_3\"\tRelError: 4.43679e-04\tAbsError: 1.18398e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.67115e-06\tAbsError: 8.17908e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.59258e-06\tAbsError: 3.66073e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.26261e-04\tAbsError: 7.44323e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54699e-07\tAbsError: 5.37249e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.04179e-05\tAbsError: 1.70330e+09\n", + " Region: \"zone_1\"\tRelError: 3.88667e-05\tAbsError: 3.90113e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.88554e-05\tAbsError: 6.75226e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12212e-08\tAbsError: 3.90046e-06\n", + " Region: \"zone_3\"\tRelError: 1.55121e-06\tAbsError: 1.70330e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50666e-07\tAbsError: 1.31512e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.21755e-07\tAbsError: 3.88171e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26756e-06\tAbsError: 6.93990e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12225e-08\tAbsError: 3.90096e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.42105e-01\tAbsError: 9.57843e+13\n", + " Region: \"zone_1\"\tRelError: 5.64317e-01\tAbsError: 1.44974e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.64276e-01\tAbsError: 1.24104e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14024e-05\tAbsError: 1.43733e-02\n", + " Region: \"zone_3\"\tRelError: 7.77880e-02\tAbsError: 9.57843e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.25473e-02\tAbsError: 4.71405e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.65020e-03\tAbsError: 4.86438e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95491e-02\tAbsError: 1.28397e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14024e-05\tAbsError: 1.43733e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:16\u001b[0m.\u001b[1;36m499\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:16\u001b[0m.\u001b[1;36m499\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.4149999999999999\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.38843e-03\tAbsError: 5.18838e+11\n", + " Region: \"zone_1\"\tRelError: 1.31867e-03\tAbsError: 9.39018e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31840e-03\tAbsError: 1.99779e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69826e-07\tAbsError: 9.37020e-05\n", + " Region: \"zone_3\"\tRelError: 3.06976e-03\tAbsError: 5.18838e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95362e-05\tAbsError: 2.68345e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.93671e-05\tAbsError: 2.50493e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.03058e-03\tAbsError: 2.07424e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69859e-07\tAbsError: 9.37138e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.91239e-03\tAbsError: 7.09181e+11\n", + " Region: \"zone_1\"\tRelError: 2.49097e-04\tAbsError: 3.52425e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.48997e-04\tAbsError: 3.65197e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00466e-07\tAbsError: 3.48773e-05\n", + " Region: \"zone_3\"\tRelError: 2.66329e-03\tAbsError: 7.09181e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.58653e-05\tAbsError: 3.59049e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.57679e-05\tAbsError: 3.50132e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.59156e-03\tAbsError: 3.83392e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00492e-07\tAbsError: 3.48870e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.20992e-04\tAbsError: 4.75382e+10\n", + " Region: \"zone_1\"\tRelError: 1.19915e-04\tAbsError: 5.94017e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19898e-04\tAbsError: 4.49644e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69359e-08\tAbsError: 5.89520e-06\n", + " Region: \"zone_3\"\tRelError: 1.01077e-04\tAbsError: 4.75382e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.86193e-06\tAbsError: 1.68091e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.82821e-06\tAbsError: 3.07291e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.33703e-05\tAbsError: 4.50130e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69437e-08\tAbsError: 5.89805e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.36557e-01\tAbsError: 7.18470e+12\n", + " Region: \"zone_1\"\tRelError: 1.16158e-01\tAbsError: 1.78279e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16157e-01\tAbsError: 6.59165e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.94530e-07\tAbsError: 1.71687e-04\n", + " Region: \"zone_3\"\tRelError: 2.03993e-02\tAbsError: 7.18470e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.98223e-04\tAbsError: 2.78831e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.37326e-04\tAbsError: 4.39639e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92632e-02\tAbsError: 6.83641e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.94530e-07\tAbsError: 1.71687e-04\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 9.50080e-04\tAbsError: 1.03863e+11\n", + " Region: \"zone_1\"\tRelError: 2.85910e-04\tAbsError: 3.37412e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.85814e-04\tAbsError: 4.14946e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.68675e-08\tAbsError: 3.36997e-05\n", + " Region: \"zone_3\"\tRelError: 6.64170e-04\tAbsError: 1.03863e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.88184e-06\tAbsError: 5.40187e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.85553e-06\tAbsError: 4.98443e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.56335e-04\tAbsError: 4.30256e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.69043e-08\tAbsError: 3.37128e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.20815e+01\tAbsError: 8.67564e+15\n", + " Region: \"zone_1\"\tRelError: 1.04115e+01\tAbsError: 4.19631e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04115e+01\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.25512e-10\tAbsError: 1.82505e-07\n", + " Region: \"zone_3\"\tRelError: 1.67004e+00\tAbsError: 8.67564e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78190e-01\tAbsError: 5.09472e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.78169e-01\tAbsError: 3.58092e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13676e-01\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.25512e-10\tAbsError: 1.82505e-07\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.24916e-04\tAbsError: 3.32660e+10\n", + " Region: \"zone_1\"\tRelError: 1.94731e-05\tAbsError: 4.52188e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93431e-05\tAbsError: 2.17514e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.30085e-07\tAbsError: 4.51970e-05\n", + " Region: \"zone_3\"\tRelError: 2.05443e-04\tAbsError: 3.32660e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.93944e-06\tAbsError: 1.53287e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96480e-06\tAbsError: 1.79373e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01409e-04\tAbsError: 2.25864e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.30134e-07\tAbsError: 4.52143e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.02467e-05\tAbsError: 4.79398e+09\n", + " Region: \"zone_1\"\tRelError: 2.23553e-05\tAbsError: 2.42948e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23483e-05\tAbsError: 2.94730e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.98740e-09\tAbsError: 2.42654e-06\n", + " Region: \"zone_3\"\tRelError: 1.78914e-05\tAbsError: 4.79398e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.44215e-07\tAbsError: 3.54889e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.39137e-07\tAbsError: 1.24509e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72010e-05\tAbsError: 3.09105e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.98888e-09\tAbsError: 2.42708e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:19\u001b[0m.\u001b[1;36m018\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:19\u001b[0m.\u001b[1;36m018\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.42999999999999994\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Iteration: 11\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + " Device: \"device\"\tRelError: 3.25927e-04\tAbsError: 3.72019e+10\n", + " Region: \"zone_1\"\tRelError: 9.80813e-05\tAbsError: 7.68282e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 9.80593e-05\tAbsError: 1.46928e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20415e-08\tAbsError: 7.66812e-06\n", + " Region: \"zone_3\"\tRelError: 2.27846e-04\tAbsError: 3.72019e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36089e-06\tAbsError: 1.97599e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34801e-06\tAbsError: 1.74420e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25115e-04\tAbsError: 1.52180e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20501e-08\tAbsError: 7.67121e-06\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "Iteration: 6\n", + "number of equations 31816\n", + " Device: \"device\"\tRelError: 3.13498e-03\tAbsError: 1.41105e+11\n", + " Region: \"zone_1\"\tRelError: 2.73398e-03\tAbsError: 4.76357e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73260e-03\tAbsError: 1.35633e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37060e-06\tAbsError: 4.76221e-04\n", + " Region: \"zone_3\"\tRelError: 4.01007e-04\tAbsError: 1.41105e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.96062e-06\tAbsError: 6.85210e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.81427e-06\tAbsError: 7.25836e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87862e-04\tAbsError: 1.38229e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37060e-06\tAbsError: 4.76221e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.73360e+00\tAbsError: 3.35480e+14\n", + " Region: \"zone_1\"\tRelError: 2.38462e-01\tAbsError: 8.41052e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38311e-01\tAbsError: 3.19528e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50056e-04\tAbsError: 5.21524e-02\n", + " Region: \"zone_3\"\tRelError: 1.49514e+00\tAbsError: 3.35480e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.54534e-01\tAbsError: 2.44689e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.47448e-01\tAbsError: 9.07907e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.30055e-02\tAbsError: 3.19532e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50056e-04\tAbsError: 5.21524e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.07837e-04\tAbsError: 4.44485e+10\n", + " Region: \"zone_1\"\tRelError: 1.78877e-05\tAbsError: 4.90272e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78736e-05\tAbsError: 2.11659e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40500e-08\tAbsError: 4.88155e-06\n", + " Region: \"zone_3\"\tRelError: 1.89950e-04\tAbsError: 4.44485e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17511e-06\tAbsError: 2.50623e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.16753e-06\tAbsError: 1.93862e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85593e-04\tAbsError: 2.23490e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40541e-08\tAbsError: 4.88301e-06\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 7.72661e-05\tAbsError: 8.43440e+09\n", + " Region: \"zone_1\"\tRelError: 2.32650e-05\tAbsError: 2.49052e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32578e-05\tAbsError: 3.39814e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.14902e-09\tAbsError: 2.48712e-06\n", + " Region: \"zone_3\"\tRelError: 5.40011e-05\tAbsError: 8.43440e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.08161e-07\tAbsError: 4.47974e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.05735e-07\tAbsError: 3.95466e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.33800e-05\tAbsError: 3.51782e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.15190e-09\tAbsError: 2.48816e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:20\u001b[0m.\u001b[1;36m339\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.8\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.31814e-02\tAbsError: 4.58362e+11\n", + " Region: \"zone_1\"\tRelError: 1.15315e-02\tAbsError: 2.80900e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15314e-02\tAbsError: 2.57528e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.01667e-08\tAbsError: 2.78324e-05\n", + " Region: \"zone_3\"\tRelError: 1.64997e-03\tAbsError: 4.58362e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47024e-05\tAbsError: 2.30121e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.45967e-05\tAbsError: 2.28241e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60059e-03\tAbsError: 2.62890e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.01667e-08\tAbsError: 2.78324e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.20945e+01\tAbsError: 9.08577e+15\n", + " Region: \"zone_1\"\tRelError: 2.04049e+01\tAbsError: 4.29340e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04049e+01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.00423e-10\tAbsError: 2.09004e-07\n", + " Region: \"zone_3\"\tRelError: 1.68962e+00\tAbsError: 9.08577e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86117e-01\tAbsError: 5.34441e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.86097e-01\tAbsError: 3.74136e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17405e-01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.00698e-10\tAbsError: 2.09103e-07\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.09215e+00\tAbsError: 7.66077e+13\n", + " Region: \"zone_1\"\tRelError: 7.77139e-02\tAbsError: 3.29192e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.76937e-02\tAbsError: 2.58684e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.02868e-05\tAbsError: 7.05086e-03\n", + " Region: \"zone_3\"\tRelError: 1.01444e+00\tAbsError: 7.66077e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.64635e-01\tAbsError: 4.57472e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.42937e-01\tAbsError: 3.08605e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06843e-01\tAbsError: 2.58845e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.02868e-05\tAbsError: 7.05086e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.81036e-05\tAbsError: 4.66807e+09\n", + " Region: \"zone_1\"\tRelError: 2.43253e-06\tAbsError: 3.06352e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42372e-06\tAbsError: 2.50658e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.81013e-09\tAbsError: 3.06101e-06\n", + " Region: \"zone_3\"\tRelError: 2.56711e-05\tAbsError: 4.66807e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.45544e-07\tAbsError: 2.66353e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.46673e-07\tAbsError: 2.00454e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51700e-05\tAbsError: 2.62757e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.81170e-09\tAbsError: 3.06156e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:21\u001b[0m.\u001b[1;36m434\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:21\u001b[0m.\u001b[1;36m434\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7333333333333334\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.25913e-03\tAbsError: 2.71128e+10\n", + " Region: \"zone_1\"\tRelError: 1.10973e-03\tAbsError: 2.99279e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10965e-03\tAbsError: 1.77983e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.60783e-08\tAbsError: 2.99101e-05\n", + " Region: \"zone_3\"\tRelError: 1.49391e-04\tAbsError: 2.71128e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61984e-06\tAbsError: 1.29863e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.63350e-06\tAbsError: 1.41265e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46052e-04\tAbsError: 1.82225e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.61134e-08\tAbsError: 2.99224e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.91796e+01\tAbsError: 8.00136e+16\n", + " Region: \"zone_1\"\tRelError: 1.61687e+01\tAbsError: 4.09548e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61687e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75011e-09\tAbsError: 6.08861e-07\n", + " Region: \"zone_3\"\tRelError: 3.01093e+00\tAbsError: 8.00136e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.66958e-01\tAbsError: 4.00295e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.65547e-01\tAbsError: 3.99841e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47843e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75082e-09\tAbsError: 6.09112e-07\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.77996e+00\tAbsError: 3.92703e+14\n", + " Region: \"zone_1\"\tRelError: 2.52242e-01\tAbsError: 8.68469e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52087e-01\tAbsError: 3.31003e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54646e-04\tAbsError: 5.37466e-02\n", + " Region: \"zone_3\"\tRelError: 1.52772e+00\tAbsError: 3.92703e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.68572e-01\tAbsError: 2.83122e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.62116e-01\tAbsError: 1.09581e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.68743e-02\tAbsError: 3.31007e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54646e-04\tAbsError: 5.37466e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.42585e-01\tAbsError: 2.72886e+13\n", + " Region: \"zone_1\"\tRelError: 2.71416e-02\tAbsError: 1.31199e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.71346e-02\tAbsError: 1.06617e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.07272e-06\tAbsError: 2.45812e-03\n", + " Region: \"zone_3\"\tRelError: 3.15443e-01\tAbsError: 2.72886e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17067e-01\tAbsError: 1.32533e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.10019e-02\tAbsError: 1.40354e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73671e-02\tAbsError: 1.06618e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.07672e-06\tAbsError: 2.45957e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.88747e+01\tAbsError: 2.64080e+16\n", + " Region: \"zone_1\"\tRelError: 1.70725e+01\tAbsError: 4.20731e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70725e+01\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40999e-09\tAbsError: 4.89892e-07\n", + " Region: \"zone_3\"\tRelError: 1.80221e+00\tAbsError: 2.64080e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78443e-01\tAbsError: 1.32620e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.78018e-01\tAbsError: 1.31460e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.45750e-01\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41018e-09\tAbsError: 4.89958e-07\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 9.89584e-04\tAbsError: 2.93050e+10\n", + " Region: \"zone_1\"\tRelError: 8.69289e-04\tAbsError: 3.58476e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.69279e-04\tAbsError: 1.49163e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02736e-08\tAbsError: 3.56984e-06\n", + " Region: \"zone_3\"\tRelError: 1.20295e-04\tAbsError: 2.93050e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52554e-06\tAbsError: 1.64489e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.51838e-06\tAbsError: 1.28561e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17241e-04\tAbsError: 1.55101e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02768e-08\tAbsError: 3.57094e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.18761e+00\tAbsError: 1.05578e+14\n", + " Region: \"zone_1\"\tRelError: 1.15764e-01\tAbsError: 3.33783e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15742e-01\tAbsError: 2.55891e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24115e-05\tAbsError: 7.78922e-03\n", + " Region: \"zone_3\"\tRelError: 1.07184e+00\tAbsError: 1.05578e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.87584e-01\tAbsError: 6.29656e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.72837e-01\tAbsError: 4.26125e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11399e-01\tAbsError: 2.58759e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24115e-05\tAbsError: 7.78922e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.23024e+00\tAbsError: 7.24788e+16\n", + " Region: \"zone_1\"\tRelError: 2.89301e-01\tAbsError: 2.81842e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88577e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.23562e-04\tAbsError: 2.51079e-01\n", + " Region: \"zone_3\"\tRelError: 2.94094e+00\tAbsError: 7.24788e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.29061e-01\tAbsError: 3.72143e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.83761e-01\tAbsError: 3.52645e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62740e+00\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.23562e-04\tAbsError: 2.51079e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.78641e-02\tAbsError: 3.94985e+12\n", + " Region: \"zone_1\"\tRelError: 3.30932e-03\tAbsError: 1.76151e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.30433e-03\tAbsError: 2.82510e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.99157e-06\tAbsError: 1.73326e-03\n", + " Region: \"zone_3\"\tRelError: 7.45548e-02\tAbsError: 3.94985e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.56024e-02\tAbsError: 2.31572e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.47093e-03\tAbsError: 1.63413e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.47641e-03\tAbsError: 3.06646e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.99157e-06\tAbsError: 1.73326e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.82088e+00\tAbsError: 2.75253e+16\n", + " Region: \"zone_1\"\tRelError: 2.37750e-01\tAbsError: 1.45747e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.37423e-01\tAbsError: 3.20819e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.27266e-04\tAbsError: 1.13665e-01\n", + " Region: \"zone_3\"\tRelError: 1.58313e+00\tAbsError: 2.75253e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53221e-01\tAbsError: 1.38558e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.18941e-01\tAbsError: 1.36695e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.10644e-01\tAbsError: 3.20820e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.27266e-04\tAbsError: 1.13665e-01\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.48739e-04\tAbsError: 3.41314e+09\n", + " Region: \"zone_1\"\tRelError: 1.31134e-04\tAbsError: 2.06494e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31128e-04\tAbsError: 1.91971e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.93716e-09\tAbsError: 2.06302e-06\n", + " Region: \"zone_3\"\tRelError: 1.76048e-05\tAbsError: 3.41314e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88514e-07\tAbsError: 1.94837e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.89063e-07\tAbsError: 1.46477e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72213e-05\tAbsError: 1.99642e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.93836e-09\tAbsError: 2.06344e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.18721e-01\tAbsError: 4.05656e+13\n", + " Region: \"zone_1\"\tRelError: 5.06770e-02\tAbsError: 1.49437e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.06693e-02\tAbsError: 1.22657e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.70556e-06\tAbsError: 2.67801e-03\n", + " Region: \"zone_3\"\tRelError: 3.68044e-01\tAbsError: 4.05656e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.42993e-01\tAbsError: 1.95799e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.22533e-02\tAbsError: 2.09857e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.27901e-02\tAbsError: 1.22657e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.70854e-06\tAbsError: 2.67909e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 5.71850e+00\tAbsError: 4.10464e+16\n", + " Region: \"zone_1\"\tRelError: 1.82923e-01\tAbsError: 1.08958e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82684e-01\tAbsError: 2.58969e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39429e-04\tAbsError: 8.30609e-02\n", + " Region: \"zone_3\"\tRelError: 5.53558e+00\tAbsError: 4.10464e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16071e-01\tAbsError: 2.08924e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.47287e-01\tAbsError: 2.01540e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.77198e+00\tAbsError: 2.46271e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39429e-04\tAbsError: 8.30609e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.10513e-03\tAbsError: 8.23293e+11\n", + " Region: \"zone_1\"\tRelError: 1.04330e-04\tAbsError: 1.16877e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03998e-04\tAbsError: 1.23528e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32247e-07\tAbsError: 1.15642e-04\n", + " Region: \"zone_3\"\tRelError: 1.00080e-03\tAbsError: 8.23293e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05747e-04\tAbsError: 1.97507e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.12169e-05\tAbsError: 6.25787e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.13504e-04\tAbsError: 1.23947e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32377e-07\tAbsError: 1.15689e-04\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 7.33109e-05\tAbsError: 1.99171e+09\n", + " Region: \"zone_1\"\tRelError: 6.45108e-05\tAbsError: 3.50573e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 6.45098e-05\tAbsError: 1.06453e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00585e-09\tAbsError: 3.49509e-07\n", + " Region: \"zone_3\"\tRelError: 8.80007e-06\tAbsError: 1.99171e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03719e-07\tAbsError: 1.17952e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03272e-07\tAbsError: 8.12184e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 8.59208e-06\tAbsError: 1.10473e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00600e-09\tAbsError: 3.49562e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:25\u001b[0m.\u001b[1;36m564\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.7000000000000001\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.55444e+00\tAbsError: 1.76419e+16\n", + " Region: \"zone_1\"\tRelError: 2.12177e-01\tAbsError: 9.72099e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.11971e-01\tAbsError: 2.57520e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.05785e-04\tAbsError: 7.14579e-02\n", + " Region: \"zone_3\"\tRelError: 1.34226e+00\tAbsError: 1.76419e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.66220e-01\tAbsError: 8.87623e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.15790e-01\tAbsError: 8.76568e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.60047e-01\tAbsError: 2.51951e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.05785e-04\tAbsError: 7.14579e-02\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.36553e-02\tAbsError: 6.47712e+12\n", + " Region: \"zone_1\"\tRelError: 5.76964e-03\tAbsError: 1.83664e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.76447e-03\tAbsError: 4.26587e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.16650e-06\tAbsError: 1.79398e-03\n", + " Region: \"zone_3\"\tRelError: 8.78857e-02\tAbsError: 6.47712e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.64913e-02\tAbsError: 3.28452e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.27207e-03\tAbsError: 3.19260e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.11716e-03\tAbsError: 4.70869e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.16650e-06\tAbsError: 1.79398e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.06773e+00\tAbsError: 1.32751e+16\n", + " Region: \"zone_1\"\tRelError: 2.27618e-01\tAbsError: 5.11022e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27498e-01\tAbsError: 9.16524e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20880e-04\tAbsError: 4.19369e-02\n", + " Region: \"zone_3\"\tRelError: 8.40108e-01\tAbsError: 1.32751e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49254e-01\tAbsError: 7.44002e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.85993e-02\tAbsError: 5.83511e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.12131e-01\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23429e-04\tAbsError: 4.28226e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.28970e-04\tAbsError: 9.94655e+10\n", + " Region: \"zone_1\"\tRelError: 4.30793e-05\tAbsError: 4.60610e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.29469e-05\tAbsError: 6.33876e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32459e-07\tAbsError: 4.59976e-05\n", + " Region: \"zone_3\"\tRelError: 3.85891e-04\tAbsError: 9.94655e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53699e-06\tAbsError: 6.91076e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.47213e-06\tAbsError: 3.03579e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.72749e-04\tAbsError: 6.61958e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32459e-07\tAbsError: 4.59976e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 9.48982e-01\tAbsError: 5.47232e+15\n", + " Region: \"zone_1\"\tRelError: 2.62221e-01\tAbsError: 3.66128e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.62147e-01\tAbsError: 1.08344e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.42397e-05\tAbsError: 2.57784e-02\n", + " Region: \"zone_3\"\tRelError: 6.86761e-01\tAbsError: 5.47232e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.00853e-01\tAbsError: 3.04385e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.20754e-01\tAbsError: 2.42847e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.65080e-01\tAbsError: 1.08344e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.42397e-05\tAbsError: 2.57784e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.94222e+01\tAbsError: 1.62190e+16\n", + " Region: \"zone_1\"\tRelError: 2.76662e+01\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76662e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.29578e-10\tAbsError: 1.49268e-07\n", + " Region: \"zone_3\"\tRelError: 1.75598e+00\tAbsError: 1.62190e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69267e-01\tAbsError: 8.18784e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.68971e-01\tAbsError: 8.03117e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17740e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.29628e-10\tAbsError: 1.49286e-07\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.06683e-03\tAbsError: 8.40765e+11\n", + " Region: \"zone_1\"\tRelError: 1.57719e-04\tAbsError: 1.34612e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57335e-04\tAbsError: 1.22953e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.83760e-07\tAbsError: 1.33383e-04\n", + " Region: \"zone_3\"\tRelError: 9.09114e-04\tAbsError: 8.40765e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34420e-04\tAbsError: 1.93982e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.02092e-05\tAbsError: 6.46783e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.94101e-04\tAbsError: 1.22991e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.83760e-07\tAbsError: 1.33383e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.91937e-01\tAbsError: 2.33353e+15\n", + " Region: \"zone_1\"\tRelError: 2.61363e-02\tAbsError: 3.15290e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52274e-02\tAbsError: 2.65917e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.08859e-04\tAbsError: 3.15024e-01\n", + " Region: \"zone_3\"\tRelError: 2.65801e-01\tAbsError: 2.33353e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.40034e-02\tAbsError: 1.23195e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.91867e-03\tAbsError: 1.10158e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20969e-01\tAbsError: 2.95967e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.10098e-04\tAbsError: 3.15450e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 9.83107e-05\tAbsError: 4.06168e+10\n", + " Region: \"zone_1\"\tRelError: 9.45774e-06\tAbsError: 5.00143e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 9.44347e-06\tAbsError: 3.76448e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42610e-08\tAbsError: 4.96378e-06\n", + " Region: \"zone_3\"\tRelError: 8.88530e-05\tAbsError: 4.06168e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.93318e-06\tAbsError: 1.44271e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.90759e-06\tAbsError: 2.61897e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.29979e-05\tAbsError: 3.76467e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42674e-08\tAbsError: 4.96613e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:28\u001b[0m.\u001b[1;36m022\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:28\u001b[0m.\u001b[1;36m022\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5199999999999999\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.90750e-01\tAbsError: 1.25498e+15\n", + " Region: \"zone_1\"\tRelError: 2.65651e-02\tAbsError: 1.73575e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.60656e-02\tAbsError: 3.10437e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.99465e-04\tAbsError: 1.73265e-01\n", + " Region: \"zone_3\"\tRelError: 1.64185e-01\tAbsError: 1.25498e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.97354e-02\tAbsError: 5.42826e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.67090e-02\tAbsError: 7.12158e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.72396e-02\tAbsError: 3.38175e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.00813e-04\tAbsError: 1.73727e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.57455e+00\tAbsError: 1.59389e+16\n", + " Region: \"zone_1\"\tRelError: 1.04759e+00\tAbsError: 1.06162e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04737e+00\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17045e-04\tAbsError: 7.53990e-02\n", + " Region: \"zone_3\"\tRelError: 1.52696e+00\tAbsError: 1.59389e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37511e-01\tAbsError: 7.87332e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.04735e-01\tAbsError: 8.06553e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84502e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17045e-04\tAbsError: 7.53990e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.95550e-04\tAbsError: 1.15056e+11\n", + " Region: \"zone_1\"\tRelError: 4.39510e-05\tAbsError: 4.57599e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.38194e-05\tAbsError: 7.44278e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31561e-07\tAbsError: 4.56855e-05\n", + " Region: \"zone_3\"\tRelError: 4.51599e-04\tAbsError: 1.15056e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.61381e-06\tAbsError: 7.84993e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.54126e-06\tAbsError: 3.65570e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.36312e-04\tAbsError: 7.77366e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31561e-07\tAbsError: 4.56855e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.68338e-01\tAbsError: 7.28836e+14\n", + " Region: \"zone_1\"\tRelError: 4.44613e-02\tAbsError: 2.04423e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44025e-02\tAbsError: 6.98557e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87704e-05\tAbsError: 2.03724e-02\n", + " Region: \"zone_3\"\tRelError: 4.23877e-01\tAbsError: 7.28836e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89975e-03\tAbsError: 3.57624e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.06394e-03\tAbsError: 3.71212e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.13854e-01\tAbsError: 7.63149e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87832e-05\tAbsError: 2.03761e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.65034e+00\tAbsError: 8.64133e+15\n", + " Region: \"zone_1\"\tRelError: 5.95619e+00\tAbsError: 4.19650e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95619e+00\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.98105e-09\tAbsError: 2.07690e-06\n", + " Region: \"zone_3\"\tRelError: 1.69415e+00\tAbsError: 8.64133e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78203e-01\tAbsError: 5.06586e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.78160e-01\tAbsError: 3.57547e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37789e-01\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.98227e-09\tAbsError: 2.07735e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.99296e-01\tAbsError: 1.91866e+14\n", + " Region: \"zone_1\"\tRelError: 8.35978e-02\tAbsError: 1.07328e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.35670e-02\tAbsError: 5.58708e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.07772e-05\tAbsError: 1.06770e-02\n", + " Region: \"zone_3\"\tRelError: 9.15698e-01\tAbsError: 1.91866e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37367e-03\tAbsError: 9.64130e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.19215e-03\tAbsError: 9.54531e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.07102e-01\tAbsError: 5.66702e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.08019e-05\tAbsError: 1.06852e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.14822e+00\tAbsError: 9.83178e+15\n", + " Region: \"zone_1\"\tRelError: 1.39457e-01\tAbsError: 7.32841e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39320e-01\tAbsError: 2.58400e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36592e-04\tAbsError: 4.74441e-02\n", + " Region: \"zone_3\"\tRelError: 1.00877e+00\tAbsError: 9.83178e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43427e-01\tAbsError: 4.83336e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.90483e-01\tAbsError: 4.99841e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74720e-01\tAbsError: 2.58193e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36592e-04\tAbsError: 4.74441e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 8.69185e-05\tAbsError: 3.95954e+10\n", + " Region: \"zone_1\"\tRelError: 7.32516e-06\tAbsError: 6.15078e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.30759e-06\tAbsError: 3.68566e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75656e-08\tAbsError: 6.11392e-06\n", + " Region: \"zone_3\"\tRelError: 7.95933e-05\tAbsError: 3.95954e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.79841e-06\tAbsError: 1.32431e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.77435e-06\tAbsError: 2.63522e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.40030e-05\tAbsError: 3.69064e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75729e-08\tAbsError: 6.11658e-06\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.64410e-02\tAbsError: 6.34524e+13\n", + " Region: \"zone_1\"\tRelError: 6.01943e-03\tAbsError: 8.87148e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.99386e-03\tAbsError: 6.06051e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.55757e-05\tAbsError: 8.86542e-03\n", + " Region: \"zone_3\"\tRelError: 6.04216e-02\tAbsError: 6.34524e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43427e-04\tAbsError: 3.11581e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.51084e-04\tAbsError: 3.22943e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95015e-02\tAbsError: 6.26485e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.55822e-05\tAbsError: 8.86737e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:30\u001b[0m.\u001b[1;36m308\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.5399999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.81068e+00\tAbsError: 9.05561e+14\n", + " Region: \"zone_1\"\tRelError: 2.99568e-01\tAbsError: 7.37289e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.99448e-01\tAbsError: 3.19527e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20214e-04\tAbsError: 4.17762e-02\n", + " Region: \"zone_3\"\tRelError: 1.51111e+00\tAbsError: 9.05561e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.56048e-01\tAbsError: 5.28816e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.42016e-01\tAbsError: 3.76745e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12929e-01\tAbsError: 3.19530e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20214e-04\tAbsError: 4.17762e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.07755e-01\tAbsError: 1.47113e+13\n", + " Region: \"zone_1\"\tRelError: 1.00932e-02\tAbsError: 5.29389e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00780e-02\tAbsError: 4.25637e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52480e-05\tAbsError: 5.28963e-03\n", + " Region: \"zone_3\"\tRelError: 9.76620e-02\tAbsError: 1.47113e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.24736e-04\tAbsError: 7.39880e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.29168e-04\tAbsError: 7.31253e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.69928e-02\tAbsError: 4.43112e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52510e-05\tAbsError: 5.29076e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 9.17087e-01\tAbsError: 2.70112e+15\n", + " Region: \"zone_1\"\tRelError: 4.13278e-01\tAbsError: 1.18036e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.12964e-01\tAbsError: 9.16529e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.13541e-04\tAbsError: 1.08871e-01\n", + " Region: \"zone_3\"\tRelError: 5.03809e-01\tAbsError: 2.70112e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.83333e-01\tAbsError: 1.43386e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03452e-01\tAbsError: 1.26726e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16711e-01\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.13541e-04\tAbsError: 1.08871e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.75673e-02\tAbsError: 3.32993e+13\n", + " Region: \"zone_1\"\tRelError: 3.52548e-03\tAbsError: 1.20689e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52200e-03\tAbsError: 3.09455e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47154e-06\tAbsError: 1.20380e-03\n", + " Region: \"zone_3\"\tRelError: 3.40418e-02\tAbsError: 3.32993e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47698e-04\tAbsError: 1.63796e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.38649e-04\tAbsError: 1.69197e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35520e-02\tAbsError: 3.11273e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47235e-06\tAbsError: 1.20402e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.78742e+01\tAbsError: 9.05161e+15\n", + " Region: \"zone_1\"\tRelError: 1.61544e+01\tAbsError: 4.29358e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61544e+01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.66407e-09\tAbsError: 1.96688e-06\n", + " Region: \"zone_3\"\tRelError: 1.71987e+00\tAbsError: 9.05161e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86128e-01\tAbsError: 5.27529e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.86079e-01\tAbsError: 3.77633e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47659e-01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.66503e-09\tAbsError: 1.96717e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.20896e+00\tAbsError: 4.60776e+14\n", + " Region: \"zone_1\"\tRelError: 2.06112e-01\tAbsError: 3.40032e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06089e-01\tAbsError: 2.58357e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.35020e-05\tAbsError: 8.16746e-03\n", + " Region: \"zone_3\"\tRelError: 1.00285e+00\tAbsError: 4.60776e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.66369e-01\tAbsError: 2.23470e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.34273e-01\tAbsError: 2.37306e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02181e-01\tAbsError: 2.58939e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.35020e-05\tAbsError: 8.16746e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 7.81873e-02\tAbsError: 8.95376e+12\n", + " Region: \"zone_1\"\tRelError: 6.87545e-03\tAbsError: 6.84613e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.87348e-03\tAbsError: 2.15237e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.96616e-06\tAbsError: 6.82460e-04\n", + " Region: \"zone_3\"\tRelError: 7.13119e-02\tAbsError: 8.95376e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.99157e-04\tAbsError: 4.50662e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.97267e-04\tAbsError: 4.44714e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.09135e-02\tAbsError: 2.31794e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.96673e-06\tAbsError: 6.82681e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.27279e-01\tAbsError: 8.17053e+14\n", + " Region: \"zone_1\"\tRelError: 1.09940e-01\tAbsError: 2.21034e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09304e-01\tAbsError: 3.29075e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.36020e-04\tAbsError: 2.20705e-01\n", + " Region: \"zone_3\"\tRelError: 3.17339e-01\tAbsError: 8.17053e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.72653e-02\tAbsError: 1.99598e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.68899e-02\tAbsError: 6.17455e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42547e-01\tAbsError: 3.29140e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.36020e-04\tAbsError: 2.20705e-01\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.47008e-03\tAbsError: 4.77215e+12\n", + " Region: \"zone_1\"\tRelError: 6.05494e-04\tAbsError: 5.38691e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.03946e-04\tAbsError: 4.25617e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54844e-06\tAbsError: 5.38265e-04\n", + " Region: \"zone_3\"\tRelError: 5.86458e-03\tAbsError: 4.77215e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.53153e-05\tAbsError: 2.34800e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.40122e-05\tAbsError: 2.42415e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.79371e-03\tAbsError: 4.28072e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54906e-06\tAbsError: 5.38488e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.83311e+00\tAbsError: 1.26455e+15\n", + " Region: \"zone_1\"\tRelError: 2.88937e-01\tAbsError: 7.51136e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88816e-01\tAbsError: 3.31003e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20899e-04\tAbsError: 4.20134e-02\n", + " Region: \"zone_3\"\tRelError: 1.54417e+00\tAbsError: 1.26455e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.70125e-01\tAbsError: 7.28712e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.54876e-01\tAbsError: 5.35842e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19050e-01\tAbsError: 3.31004e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20899e-04\tAbsError: 4.20134e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.81762e-01\tAbsError: 2.09056e+14\n", + " Region: \"zone_1\"\tRelError: 3.40620e-02\tAbsError: 1.59640e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40467e-02\tAbsError: 1.06617e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52754e-05\tAbsError: 5.30228e-03\n", + " Region: \"zone_3\"\tRelError: 3.47700e-01\tAbsError: 2.09056e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14904e-01\tAbsError: 9.42359e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.79965e-02\tAbsError: 1.14820e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.47840e-02\tAbsError: 1.06618e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52847e-05\tAbsError: 5.30556e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.25385e-02\tAbsError: 1.20969e+12\n", + " Region: \"zone_1\"\tRelError: 1.11831e-03\tAbsError: 3.30063e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11736e-03\tAbsError: 2.78057e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.50037e-07\tAbsError: 3.29785e-04\n", + " Region: \"zone_3\"\tRelError: 1.14202e-02\tAbsError: 1.20969e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.69866e-05\tAbsError: 6.07592e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.67629e-05\tAbsError: 6.02095e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13655e-02\tAbsError: 3.03145e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.50221e-07\tAbsError: 3.29847e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.01035e-01\tAbsError: 1.64733e+14\n", + " Region: \"zone_1\"\tRelError: 2.03094e-01\tAbsError: 1.60100e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03048e-01\tAbsError: 7.96658e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.59052e-05\tAbsError: 1.59303e-02\n", + " Region: \"zone_3\"\tRelError: 4.97941e-01\tAbsError: 1.64733e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17881e-03\tAbsError: 7.88164e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.07895e-03\tAbsError: 8.59168e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.85637e-01\tAbsError: 8.00849e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.59052e-05\tAbsError: 1.59303e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.65398e-03\tAbsError: 2.00158e+12\n", + " Region: \"zone_1\"\tRelError: 2.48909e-04\tAbsError: 1.00808e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.48620e-04\tAbsError: 1.66964e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89512e-07\tAbsError: 1.00641e-04\n", + " Region: \"zone_3\"\tRelError: 2.40507e-03\tAbsError: 2.00158e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50347e-05\tAbsError: 9.84888e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.44145e-05\tAbsError: 1.01669e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.37533e-03\tAbsError: 1.67974e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89623e-07\tAbsError: 1.00681e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.16142e+00\tAbsError: 7.46156e+14\n", + " Region: \"zone_1\"\tRelError: 1.09872e-01\tAbsError: 3.44018e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09847e-01\tAbsError: 2.58558e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45917e-05\tAbsError: 8.54603e-03\n", + " Region: \"zone_3\"\tRelError: 1.05155e+00\tAbsError: 7.46156e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89433e-01\tAbsError: 3.46738e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.51496e-01\tAbsError: 3.99417e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10596e-01\tAbsError: 2.58925e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45917e-05\tAbsError: 8.54603e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 5.61894e-03\tAbsError: 5.53183e+11\n", + " Region: \"zone_1\"\tRelError: 4.98888e-04\tAbsError: 5.92377e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.98718e-04\tAbsError: 1.23657e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69957e-07\tAbsError: 5.91141e-05\n", + " Region: \"zone_3\"\tRelError: 5.12005e-03\tAbsError: 5.53183e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23601e-05\tAbsError: 2.78254e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.21894e-05\tAbsError: 2.74930e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.09533e-03\tAbsError: 1.34729e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70021e-07\tAbsError: 5.91367e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.24336e-02\tAbsError: 3.60203e+13\n", + " Region: \"zone_1\"\tRelError: 1.30520e-02\tAbsError: 3.73274e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30417e-02\tAbsError: 1.57108e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02982e-05\tAbsError: 3.57563e-03\n", + " Region: \"zone_3\"\tRelError: 7.93816e-02\tAbsError: 3.60203e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.15745e-02\tAbsError: 2.04886e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.60979e-03\tAbsError: 1.55317e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11871e-02\tAbsError: 1.66755e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02982e-05\tAbsError: 3.57563e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.04323e-01\tAbsError: 1.53102e+13\n", + " Region: \"zone_1\"\tRelError: 3.15774e-02\tAbsError: 7.15567e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.15568e-02\tAbsError: 7.10876e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.05999e-05\tAbsError: 7.14856e-03\n", + " Region: \"zone_3\"\tRelError: 7.27454e-02\tAbsError: 1.53102e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94207e-04\tAbsError: 7.65839e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.98721e-04\tAbsError: 7.65181e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.15319e-02\tAbsError: 7.17354e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.06009e-05\tAbsError: 7.14900e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 5.36228e-04\tAbsError: 3.67963e+11\n", + " Region: \"zone_1\"\tRelError: 5.03370e-05\tAbsError: 3.69568e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.02308e-05\tAbsError: 3.27141e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06219e-07\tAbsError: 3.69241e-05\n", + " Region: \"zone_3\"\tRelError: 4.85891e-04\tAbsError: 3.67963e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.74381e-06\tAbsError: 1.81082e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.63918e-06\tAbsError: 1.86881e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.80402e-04\tAbsError: 3.29054e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06263e-07\tAbsError: 3.69404e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.49598e-01\tAbsError: 3.37443e+14\n", + " Region: \"zone_1\"\tRelError: 4.08488e-02\tAbsError: 1.80805e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.08321e-02\tAbsError: 1.22656e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67328e-05\tAbsError: 5.81483e-03\n", + " Region: \"zone_3\"\tRelError: 4.08750e-01\tAbsError: 3.37443e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.41863e-01\tAbsError: 1.59086e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.25055e-01\tAbsError: 1.78357e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.18148e-02\tAbsError: 1.22657e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67328e-05\tAbsError: 5.81483e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.10979e-03\tAbsError: 9.95031e+10\n", + " Region: \"zone_1\"\tRelError: 9.87539e-05\tAbsError: 2.30772e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.86876e-05\tAbsError: 2.32783e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.62809e-08\tAbsError: 2.30539e-05\n", + " Region: \"zone_3\"\tRelError: 1.01104e-03\tAbsError: 9.95031e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.22367e-06\tAbsError: 4.99642e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.19804e-06\tAbsError: 4.95389e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00655e-03\tAbsError: 2.53159e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.63071e-08\tAbsError: 2.30633e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.84514e-04\tAbsError: 1.29331e+11\n", + " Region: \"zone_1\"\tRelError: 1.73204e-05\tAbsError: 7.90813e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72976e-05\tAbsError: 1.15361e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27155e-08\tAbsError: 7.89660e-06\n", + " Region: \"zone_3\"\tRelError: 1.67193e-04\tAbsError: 1.29331e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.72276e-07\tAbsError: 6.36462e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.31421e-07\tAbsError: 6.56851e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65267e-04\tAbsError: 1.16052e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27252e-08\tAbsError: 7.90006e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.31903e-03\tAbsError: 1.68866e+12\n", + " Region: \"zone_1\"\tRelError: 6.91359e-04\tAbsError: 2.14092e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.90749e-04\tAbsError: 2.01876e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.10224e-07\tAbsError: 2.12073e-04\n", + " Region: \"zone_3\"\tRelError: 3.62767e-03\tAbsError: 1.68866e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.43300e-04\tAbsError: 5.21952e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.49521e-04\tAbsError: 1.16671e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.23424e-03\tAbsError: 2.02414e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.10224e-07\tAbsError: 2.12073e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.82885e-02\tAbsError: 7.75343e+12\n", + " Region: \"zone_1\"\tRelError: 1.74263e-02\tAbsError: 1.11082e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74231e-02\tAbsError: 3.27682e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.18949e-06\tAbsError: 1.10754e-03\n", + " Region: \"zone_3\"\tRelError: 4.08622e-02\tAbsError: 7.75343e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.01160e-04\tAbsError: 3.88269e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.99390e-04\tAbsError: 3.87074e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.02585e-02\tAbsError: 3.34987e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.19059e-06\tAbsError: 1.10796e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.04059e-01\tAbsError: 6.56185e+13\n", + " Region: \"zone_1\"\tRelError: 1.13333e-02\tAbsError: 6.89729e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13142e-02\tAbsError: 2.55833e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91291e-05\tAbsError: 6.64145e-03\n", + " Region: \"zone_3\"\tRelError: 9.27262e-02\tAbsError: 6.56185e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.04845e-02\tAbsError: 3.55492e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.18771e-02\tAbsError: 3.00692e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03455e-02\tAbsError: 2.71121e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91291e-05\tAbsError: 6.64145e-03\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 4.02059e-04\tAbsError: 3.69694e+10\n", + " Region: \"zone_1\"\tRelError: 3.57703e-05\tAbsError: 4.89345e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.57562e-05\tAbsError: 8.81422e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40435e-08\tAbsError: 4.88463e-06\n", + " Region: \"zone_3\"\tRelError: 3.66288e-04\tAbsError: 3.69694e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.27052e-07\tAbsError: 1.85869e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.14548e-07\tAbsError: 1.83825e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.64633e-04\tAbsError: 9.53371e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40489e-08\tAbsError: 4.88659e-06\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 4.13464e-05\tAbsError: 2.75069e+10\n", + " Region: \"zone_1\"\tRelError: 3.88379e-06\tAbsError: 2.55222e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87646e-06\tAbsError: 2.54121e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.33447e-09\tAbsError: 2.54968e-06\n", + " Region: \"zone_3\"\tRelError: 3.74626e-05\tAbsError: 2.75069e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05752e-07\tAbsError: 1.35376e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.97692e-07\tAbsError: 1.39693e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.70518e-05\tAbsError: 2.55608e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.33751e-09\tAbsError: 2.55078e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:37\u001b[0m.\u001b[1;36m881\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.9\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.11841e-04\tAbsError: 1.66167e+11\n", + " Region: \"zone_1\"\tRelError: 1.33942e-04\tAbsError: 1.03262e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33645e-04\tAbsError: 1.08052e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.97084e-07\tAbsError: 1.03153e-04\n", + " Region: \"zone_3\"\tRelError: 5.77899e-04\tAbsError: 1.66167e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98830e-06\tAbsError: 1.12169e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.86071e-06\tAbsError: 5.39983e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.57753e-04\tAbsError: 1.12755e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.97142e-07\tAbsError: 1.03175e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.09210e-02\tAbsError: 1.22286e+12\n", + " Region: \"zone_1\"\tRelError: 3.28469e-03\tAbsError: 4.72819e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.28333e-03\tAbsError: 4.87030e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36013e-06\tAbsError: 4.72332e-04\n", + " Region: \"zone_3\"\tRelError: 7.63634e-03\tAbsError: 1.22286e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.75678e-05\tAbsError: 6.11672e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.73305e-05\tAbsError: 6.11193e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.54008e-03\tAbsError: 5.02425e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36049e-06\tAbsError: 4.72455e-04\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 8.98138e-05\tAbsError: 7.83801e+09\n", + " Region: \"zone_1\"\tRelError: 7.99573e-06\tAbsError: 1.64573e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.99100e-06\tAbsError: 1.91199e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.72605e-09\tAbsError: 1.64382e-06\n", + " Region: \"zone_3\"\tRelError: 8.18181e-05\tAbsError: 7.83801e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.75301e-07\tAbsError: 3.93589e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.72990e-07\tAbsError: 3.90212e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 8.14650e-05\tAbsError: 2.06683e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.72787e-09\tAbsError: 1.64450e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:38\u001b[0m.\u001b[1;36m653\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:38\u001b[0m.\u001b[1;36m653\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.8388888888888889\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.70535e-03\tAbsError: 3.37743e+12\n", + " Region: \"zone_1\"\tRelError: 8.78757e-04\tAbsError: 1.91107e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.78217e-04\tAbsError: 3.61781e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.39528e-07\tAbsError: 1.87489e-04\n", + " Region: \"zone_3\"\tRelError: 8.82659e-03\tAbsError: 3.37743e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.29951e-04\tAbsError: 1.23275e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.83501e-04\tAbsError: 2.14468e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.11260e-03\tAbsError: 3.63680e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.39528e-07\tAbsError: 1.87489e-04\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.44352e-04\tAbsError: 9.70804e+10\n", + " Region: \"zone_1\"\tRelError: 6.34748e-05\tAbsError: 6.25238e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.34570e-05\tAbsError: 6.83828e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77679e-08\tAbsError: 6.18400e-06\n", + " Region: \"zone_3\"\tRelError: 2.80877e-04\tAbsError: 9.70804e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.02045e-06\tAbsError: 4.37083e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.97041e-06\tAbsError: 5.33721e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.68869e-04\tAbsError: 6.99248e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77753e-08\tAbsError: 6.18669e-06\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.38843e-03\tAbsError: 5.18838e+11\n", + " Region: \"zone_1\"\tRelError: 1.31867e-03\tAbsError: 9.39018e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31840e-03\tAbsError: 1.99779e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69826e-07\tAbsError: 9.37020e-05\n", + " Region: \"zone_3\"\tRelError: 3.06976e-03\tAbsError: 5.18838e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95362e-05\tAbsError: 2.68345e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.93671e-05\tAbsError: 2.50493e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.03058e-03\tAbsError: 2.07424e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69859e-07\tAbsError: 9.37138e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.18618e+01\tAbsError: 3.43486e+17\n", + " Region: \"zone_1\"\tRelError: 4.68734e+01\tAbsError: 4.09548e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.68734e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70509e-09\tAbsError: 5.92742e-07\n", + " Region: \"zone_3\"\tRelError: 1.49884e+01\tAbsError: 3.43486e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.50361e-01\tAbsError: 1.67687e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.42491e-01\tAbsError: 1.75799e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34955e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70580e-09\tAbsError: 5.92998e-07\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.74946e-04\tAbsError: 1.17170e+11\n", + " Region: \"zone_1\"\tRelError: 2.69263e-05\tAbsError: 2.18382e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.62981e-05\tAbsError: 8.01643e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.28213e-07\tAbsError: 2.18302e-04\n", + " Region: \"zone_3\"\tRelError: 2.48020e-04\tAbsError: 1.17170e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.02611e-06\tAbsError: 9.22316e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.05400e-06\tAbsError: 2.49383e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31311e-04\tAbsError: 8.38265e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.28213e-07\tAbsError: 2.18302e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.53041e+01\tAbsError: 1.41055e+17\n", + " Region: \"zone_1\"\tRelError: 2.16347e+01\tAbsError: 4.20730e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16347e+01\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10269e-09\tAbsError: 3.83540e-07\n", + " Region: \"zone_3\"\tRelError: 3.66939e+00\tAbsError: 1.41055e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.74068e-01\tAbsError: 7.09895e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.71643e-01\tAbsError: 7.00658e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12368e+00\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10312e-09\tAbsError: 3.83698e-07\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 9.50080e-04\tAbsError: 1.03863e+11\n", + " Region: \"zone_1\"\tRelError: 2.85910e-04\tAbsError: 3.37412e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.85814e-04\tAbsError: 4.14946e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.68675e-08\tAbsError: 3.36997e-05\n", + " Region: \"zone_3\"\tRelError: 6.64170e-04\tAbsError: 1.03863e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.88184e-06\tAbsError: 5.40187e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.85553e-06\tAbsError: 4.98443e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.56335e-04\tAbsError: 4.30256e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.69043e-08\tAbsError: 3.37128e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.84100e-05\tAbsError: 5.01231e+09\n", + " Region: \"zone_1\"\tRelError: 3.44228e-06\tAbsError: 5.53190e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.42637e-06\tAbsError: 3.08245e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59100e-08\tAbsError: 5.52882e-06\n", + " Region: \"zone_3\"\tRelError: 1.49677e-05\tAbsError: 5.01231e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.92599e-07\tAbsError: 3.85792e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.47636e-07\tAbsError: 1.15439e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44116e-05\tAbsError: 3.20740e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59126e-08\tAbsError: 5.52983e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 6.59116e+00\tAbsError: 3.05940e+17\n", + " Region: \"zone_1\"\tRelError: 1.06162e+00\tAbsError: 1.92710e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06116e+00\tAbsError: 3.07630e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.67257e-04\tAbsError: 1.61947e-01\n", + " Region: \"zone_3\"\tRelError: 5.52954e+00\tAbsError: 3.05940e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.66708e-01\tAbsError: 1.53394e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.75609e-01\tAbsError: 1.52546e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.38676e+00\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.67257e-04\tAbsError: 1.61947e-01\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:40\u001b[0m.\u001b[1;36m975\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:40\u001b[0m.\u001b[1;36m975\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6249999999999999\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 7.74042e-04\tAbsError: 2.09517e+11\n", + " Region: \"zone_1\"\tRelError: 7.83547e-05\tAbsError: 6.01138e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.83378e-05\tAbsError: 1.34565e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68927e-08\tAbsError: 5.87682e-06\n", + " Region: \"zone_3\"\tRelError: 6.95687e-04\tAbsError: 2.09517e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.25872e-05\tAbsError: 1.03107e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24933e-05\tAbsError: 1.06409e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.70590e-04\tAbsError: 1.38390e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69000e-08\tAbsError: 5.87933e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.20501e+00\tAbsError: 1.30894e+17\n", + " Region: \"zone_1\"\tRelError: 6.01862e-01\tAbsError: 3.22703e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.01024e-01\tAbsError: 3.20819e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.37922e-04\tAbsError: 2.90621e-01\n", + " Region: \"zone_3\"\tRelError: 2.60314e+00\tAbsError: 1.30894e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.36510e-01\tAbsError: 6.54938e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.78597e-01\tAbsError: 6.54001e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28720e+00\tAbsError: 3.20820e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.38321e-04\tAbsError: 2.90760e-01\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 3.25927e-04\tAbsError: 3.72019e+10\n", + " Region: \"zone_1\"\tRelError: 9.80813e-05\tAbsError: 7.68282e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 9.80593e-05\tAbsError: 1.46928e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20415e-08\tAbsError: 7.66812e-06\n", + " Region: \"zone_3\"\tRelError: 2.27846e-04\tAbsError: 3.72019e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36089e-06\tAbsError: 1.97599e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34801e-06\tAbsError: 1.74420e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25115e-04\tAbsError: 1.52180e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20501e-08\tAbsError: 7.67121e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.39017e+01\tAbsError: 1.15461e+17\n", + " Region: \"zone_1\"\tRelError: 6.40052e-01\tAbsError: 2.51200e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.39402e-01\tAbsError: 2.58690e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.49519e-04\tAbsError: 2.25331e-01\n", + " Region: \"zone_3\"\tRelError: 3.32617e+01\tAbsError: 1.15461e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89584e-01\tAbsError: 5.80157e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.82182e-01\tAbsError: 5.74450e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.27893e+01\tAbsError: 2.58944e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.51823e-04\tAbsError: 2.26124e-01\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.46441e+00\tAbsError: 8.83603e+15\n", + " Region: \"zone_1\"\tRelError: 3.72799e+00\tAbsError: 4.19630e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.72799e+00\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.33772e-10\tAbsError: 8.13325e-08\n", + " Region: \"zone_3\"\tRelError: 1.73642e+00\tAbsError: 8.83603e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78146e-01\tAbsError: 4.76459e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.78023e-01\tAbsError: 4.07144e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80255e-01\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.33908e-10\tAbsError: 8.13805e-08\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 7.72661e-05\tAbsError: 8.43440e+09\n", + " Region: \"zone_1\"\tRelError: 2.32650e-05\tAbsError: 2.49052e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32578e-05\tAbsError: 3.39814e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.14902e-09\tAbsError: 2.48712e-06\n", + " Region: \"zone_3\"\tRelError: 5.40011e-05\tAbsError: 8.43440e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.08161e-07\tAbsError: 4.47974e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.05735e-07\tAbsError: 3.95466e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.33800e-05\tAbsError: 3.51782e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.15190e-09\tAbsError: 2.48816e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:42\u001b[0m.\u001b[1;36m967\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.8\u001b[0m \n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.88635e-05\tAbsError: 4.66862e+09\n", + " Region: \"zone_1\"\tRelError: 4.12564e-06\tAbsError: 1.32768e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.08745e-06\tAbsError: 4.74361e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.81931e-08\tAbsError: 1.32720e-05\n", + " Region: \"zone_3\"\tRelError: 3.47379e-05\tAbsError: 4.66862e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.57140e-07\tAbsError: 1.44736e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.64945e-07\tAbsError: 3.22126e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.39776e-05\tAbsError: 4.85044e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.82079e-08\tAbsError: 1.32779e-05\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.03286e+01\tAbsError: 8.35371e+16\n", + " Region: \"zone_1\"\tRelError: 4.37153e+00\tAbsError: 9.54149e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.37133e+00\tAbsError: 2.56531e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.01186e-04\tAbsError: 6.97617e-02\n", + " Region: \"zone_3\"\tRelError: 5.95712e+00\tAbsError: 8.35371e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.11144e-01\tAbsError: 4.33513e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.36389e-01\tAbsError: 4.01858e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.20938e+00\tAbsError: 2.33619e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.01186e-04\tAbsError: 6.97617e-02\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:43\u001b[0m.\u001b[1;36m071\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.6499999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.34480e+00\tAbsError: 1.48853e+16\n", + " Region: \"zone_1\"\tRelError: 1.80604e-01\tAbsError: 1.59400e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80172e-01\tAbsError: 9.16501e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31839e-04\tAbsError: 1.50235e-01\n", + " Region: \"zone_3\"\tRelError: 3.16419e+00\tAbsError: 1.48853e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.34401e-02\tAbsError: 7.53366e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.19569e-02\tAbsError: 7.35164e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.07837e+00\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31839e-04\tAbsError: 1.50235e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.90553e+00\tAbsError: 4.57697e+15\n", + " Region: \"zone_1\"\tRelError: 3.76935e-01\tAbsError: 7.03446e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.76825e-01\tAbsError: 3.19526e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10488e-04\tAbsError: 3.83920e-02\n", + " Region: \"zone_3\"\tRelError: 1.52859e+00\tAbsError: 4.57697e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.54474e-01\tAbsError: 2.17150e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.27922e-01\tAbsError: 2.40547e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46086e-01\tAbsError: 3.19527e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10488e-04\tAbsError: 3.83920e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.45087e+00\tAbsError: 2.30680e+16\n", + " Region: \"zone_1\"\tRelError: 2.57354e+00\tAbsError: 4.22735e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57345e+00\tAbsError: 1.08343e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.06700e-05\tAbsError: 3.14392e-02\n", + " Region: \"zone_3\"\tRelError: 3.87733e+00\tAbsError: 2.30680e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43899e-01\tAbsError: 1.15701e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.67217e-02\tAbsError: 1.14979e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.66661e+00\tAbsError: 1.08344e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.11459e-05\tAbsError: 3.16036e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.91796e+01\tAbsError: 8.00136e+16\n", + " Region: \"zone_1\"\tRelError: 1.61687e+01\tAbsError: 4.09548e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61687e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75011e-09\tAbsError: 6.08861e-07\n", + " Region: \"zone_3\"\tRelError: 3.01093e+00\tAbsError: 8.00136e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.66958e-01\tAbsError: 4.00295e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.65547e-01\tAbsError: 3.99841e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47843e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75082e-09\tAbsError: 6.09112e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.20708e+01\tAbsError: 9.38375e+15\n", + " Region: \"zone_1\"\tRelError: 1.03034e+01\tAbsError: 4.29349e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03034e+01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.20208e-09\tAbsError: 1.11278e-06\n", + " Region: \"zone_3\"\tRelError: 1.76735e+00\tAbsError: 9.38375e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86030e-01\tAbsError: 4.95036e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.85888e-01\tAbsError: 4.43339e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95437e-01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.20329e-09\tAbsError: 1.11320e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.42204e-01\tAbsError: 1.90329e+15\n", + " Region: \"zone_1\"\tRelError: 2.01983e-02\tAbsError: 3.47392e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91990e-02\tAbsError: 1.15001e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.99221e-04\tAbsError: 3.47277e-01\n", + " Region: \"zone_3\"\tRelError: 3.22006e-01\tAbsError: 1.90329e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.20950e-03\tAbsError: 1.00831e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03234e-03\tAbsError: 8.94978e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.11765e-01\tAbsError: 1.16357e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.99221e-04\tAbsError: 3.47277e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.14033e+00\tAbsError: 3.30058e+15\n", + " Region: \"zone_1\"\tRelError: 1.21947e-01\tAbsError: 3.16391e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21930e-01\tAbsError: 2.58447e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66760e-05\tAbsError: 5.79442e-03\n", + " Region: \"zone_3\"\tRelError: 1.01838e+00\tAbsError: 3.30058e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.69340e-01\tAbsError: 1.51432e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.17786e-01\tAbsError: 1.78626e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31236e-01\tAbsError: 2.58752e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66940e-05\tAbsError: 5.80079e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.38806e-01\tAbsError: 3.87022e+15\n", + " Region: \"zone_1\"\tRelError: 1.63483e-01\tAbsError: 3.01219e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62614e-01\tAbsError: 2.23807e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.68652e-04\tAbsError: 3.00995e-01\n", + " Region: \"zone_3\"\tRelError: 2.75324e-01\tAbsError: 3.87022e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.53410e-02\tAbsError: 2.03279e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.51471e-03\tAbsError: 1.83742e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41598e-01\tAbsError: 2.54619e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.70193e-04\tAbsError: 3.01518e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.23024e+00\tAbsError: 7.24788e+16\n", + " Region: \"zone_1\"\tRelError: 2.89301e-01\tAbsError: 2.81842e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88577e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.23562e-04\tAbsError: 2.51079e-01\n", + " Region: \"zone_3\"\tRelError: 2.94094e+00\tAbsError: 7.24788e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.29061e-01\tAbsError: 3.72143e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.83761e-01\tAbsError: 3.52645e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62740e+00\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.23562e-04\tAbsError: 2.51079e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.75513e+00\tAbsError: 7.04878e+15\n", + " Region: \"zone_1\"\tRelError: 1.90080e-01\tAbsError: 7.81805e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89950e-01\tAbsError: 3.31001e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29742e-04\tAbsError: 4.50804e-02\n", + " Region: \"zone_3\"\tRelError: 1.56505e+00\tAbsError: 7.04878e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67981e-01\tAbsError: 3.36624e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.39518e-01\tAbsError: 3.68255e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57423e-01\tAbsError: 3.31002e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29742e-04\tAbsError: 4.50804e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.26159e-01\tAbsError: 1.60368e+15\n", + " Region: \"zone_1\"\tRelError: 2.39971e-02\tAbsError: 1.68797e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39489e-02\tAbsError: 1.07820e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.82419e-05\tAbsError: 1.67718e-02\n", + " Region: \"zone_3\"\tRelError: 7.02162e-01\tAbsError: 1.60368e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.86883e-03\tAbsError: 7.94204e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.42424e-03\tAbsError: 8.09476e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.96821e-01\tAbsError: 1.08766e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.82636e-05\tAbsError: 1.67793e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.85130e-01\tAbsError: 1.12037e+15\n", + " Region: \"zone_1\"\tRelError: 1.02020e-01\tAbsError: 3.15185e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01960e-01\tAbsError: 1.06620e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.00273e-05\tAbsError: 2.08565e-02\n", + " Region: \"zone_3\"\tRelError: 3.83110e-01\tAbsError: 1.12037e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10094e-01\tAbsError: 5.96108e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.30728e-01\tAbsError: 5.24260e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22285e-02\tAbsError: 1.06621e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.00273e-05\tAbsError: 2.08565e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.06928e-01\tAbsError: 9.73679e+14\n", + " Region: \"zone_1\"\tRelError: 2.09928e-01\tAbsError: 1.87261e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09874e-01\tAbsError: 5.72449e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.38741e-05\tAbsError: 1.86688e-02\n", + " Region: \"zone_3\"\tRelError: 6.96999e-01\tAbsError: 9.73679e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.31559e-03\tAbsError: 4.72913e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.45755e-03\tAbsError: 5.00766e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.90172e-01\tAbsError: 5.76673e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.38857e-05\tAbsError: 1.86722e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.21630e+00\tAbsError: 5.18264e+15\n", + " Region: \"zone_1\"\tRelError: 1.31236e-01\tAbsError: 3.17671e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31218e-01\tAbsError: 2.57644e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72758e-05\tAbsError: 6.00278e-03\n", + " Region: \"zone_3\"\tRelError: 1.08506e+00\tAbsError: 5.18264e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.91482e-01\tAbsError: 2.47681e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.47298e-01\tAbsError: 2.70583e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46263e-01\tAbsError: 2.58377e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72758e-05\tAbsError: 6.00278e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 5.71850e+00\tAbsError: 4.10464e+16\n", + " Region: \"zone_1\"\tRelError: 1.82923e-01\tAbsError: 1.08958e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82684e-01\tAbsError: 2.58969e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39429e-04\tAbsError: 8.30609e-02\n", + " Region: \"zone_3\"\tRelError: 5.53558e+00\tAbsError: 4.10464e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16071e-01\tAbsError: 2.08924e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.47287e-01\tAbsError: 2.01540e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.77198e+00\tAbsError: 2.46271e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39429e-04\tAbsError: 8.30609e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.12346e-01\tAbsError: 1.08123e+14\n", + " Region: \"zone_1\"\tRelError: 3.56238e-03\tAbsError: 1.31451e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52458e-03\tAbsError: 6.36043e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77942e-05\tAbsError: 1.31387e-02\n", + " Region: \"zone_3\"\tRelError: 1.08784e-01\tAbsError: 1.08123e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.76703e-04\tAbsError: 5.36465e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.39449e-04\tAbsError: 5.44763e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08330e-01\tAbsError: 6.41381e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.78094e-05\tAbsError: 1.31440e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.07843e-01\tAbsError: 1.90448e+14\n", + " Region: \"zone_1\"\tRelError: 6.11966e-03\tAbsError: 2.20754e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.05660e-03\tAbsError: 1.81593e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.30654e-05\tAbsError: 2.18938e-02\n", + " Region: \"zone_3\"\tRelError: 1.01724e-01\tAbsError: 1.90448e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.14668e-02\tAbsError: 1.08172e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.09051e-03\tAbsError: 8.22757e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.11035e-02\tAbsError: 1.89501e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.30654e-05\tAbsError: 2.18938e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.31957e-01\tAbsError: 8.43789e+13\n", + " Region: \"zone_1\"\tRelError: 3.05440e-02\tAbsError: 8.34398e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.05199e-02\tAbsError: 5.31132e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.40641e-05\tAbsError: 8.33867e-03\n", + " Region: \"zone_3\"\tRelError: 1.01413e-01\tAbsError: 8.43789e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.02209e-04\tAbsError: 4.12417e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.96030e-04\tAbsError: 4.31372e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00790e-01\tAbsError: 5.35042e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.40667e-05\tAbsError: 8.33926e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.06773e+00\tAbsError: 1.32751e+16\n", + " Region: \"zone_1\"\tRelError: 2.27618e-01\tAbsError: 5.11022e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27498e-01\tAbsError: 9.16524e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20880e-04\tAbsError: 4.19369e-02\n", + " Region: \"zone_3\"\tRelError: 8.40108e-01\tAbsError: 1.32751e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49254e-01\tAbsError: 7.44002e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.85993e-02\tAbsError: 5.83511e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.12131e-01\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23429e-04\tAbsError: 4.28226e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.70365e-01\tAbsError: 1.98816e+15\n", + " Region: \"zone_1\"\tRelError: 1.29557e-01\tAbsError: 5.07227e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29446e-01\tAbsError: 1.22662e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10816e-04\tAbsError: 3.84565e-02\n", + " Region: \"zone_3\"\tRelError: 4.40808e-01\tAbsError: 1.98816e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.36802e-01\tAbsError: 1.06250e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.52219e-01\tAbsError: 9.25662e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.16747e-02\tAbsError: 1.22663e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11508e-04\tAbsError: 3.86954e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 8.36096e-02\tAbsError: 8.44228e+13\n", + " Region: \"zone_1\"\tRelError: 2.87350e-03\tAbsError: 1.23009e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.86998e-03\tAbsError: 4.23325e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52636e-06\tAbsError: 1.22586e-03\n", + " Region: \"zone_3\"\tRelError: 8.07361e-02\tAbsError: 8.44228e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46087e-04\tAbsError: 4.18513e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.25646e-04\tAbsError: 4.25715e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.04608e-02\tAbsError: 4.27186e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52783e-06\tAbsError: 1.22636e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.56387e-02\tAbsError: 1.09978e+13\n", + " Region: \"zone_1\"\tRelError: 2.87891e-03\tAbsError: 1.99562e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.87836e-03\tAbsError: 9.37283e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.46509e-07\tAbsError: 1.90190e-04\n", + " Region: \"zone_3\"\tRelError: 3.27598e-02\tAbsError: 1.09978e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.61573e-04\tAbsError: 4.35709e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.74651e-04\tAbsError: 6.64069e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.11230e-02\tAbsError: 9.56491e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.46810e-07\tAbsError: 1.90300e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 7.58172e-02\tAbsError: 4.70890e+13\n", + " Region: \"zone_1\"\tRelError: 1.84006e-02\tAbsError: 1.09588e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83975e-02\tAbsError: 2.80956e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.15379e-06\tAbsError: 1.09307e-03\n", + " Region: \"zone_3\"\tRelError: 5.74166e-02\tAbsError: 4.70890e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.82887e-04\tAbsError: 2.29491e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.70413e-04\tAbsError: 2.41400e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.70602e-02\tAbsError: 2.83263e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.15436e-06\tAbsError: 1.09324e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.91937e-01\tAbsError: 2.33353e+15\n", + " Region: \"zone_1\"\tRelError: 2.61363e-02\tAbsError: 3.15290e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52274e-02\tAbsError: 2.65917e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.08859e-04\tAbsError: 3.15024e-01\n", + " Region: \"zone_3\"\tRelError: 2.65801e-01\tAbsError: 2.33353e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.40034e-02\tAbsError: 1.23195e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.91867e-03\tAbsError: 1.10158e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20969e-01\tAbsError: 2.95967e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.10098e-04\tAbsError: 3.15450e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.63797e-01\tAbsError: 3.64765e+14\n", + " Region: \"zone_1\"\tRelError: 1.74354e-02\tAbsError: 3.39678e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73383e-02\tAbsError: 2.51825e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.71283e-05\tAbsError: 3.37160e-02\n", + " Region: \"zone_3\"\tRelError: 1.46362e-01\tAbsError: 3.64765e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.05471e-02\tAbsError: 2.16352e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.33909e-02\tAbsError: 1.48413e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.23269e-02\tAbsError: 2.62821e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.71283e-05\tAbsError: 3.37160e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.36875e-02\tAbsError: 9.69294e+12\n", + " Region: \"zone_1\"\tRelError: 4.70501e-04\tAbsError: 6.20216e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.68718e-04\tAbsError: 4.28680e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78298e-06\tAbsError: 6.19787e-04\n", + " Region: \"zone_3\"\tRelError: 1.32170e-02\tAbsError: 9.69294e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.60935e-05\tAbsError: 4.80983e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.36870e-05\tAbsError: 4.88312e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31854e-02\tAbsError: 4.32490e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78363e-06\tAbsError: 6.20008e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.52637e-04\tAbsError: 2.13154e+11\n", + " Region: \"zone_1\"\tRelError: 3.74653e-05\tAbsError: 7.19007e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53962e-05\tAbsError: 1.60128e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.06907e-06\tAbsError: 7.18847e-04\n", + " Region: \"zone_3\"\tRelError: 4.15172e-04\tAbsError: 2.13154e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13844e-05\tAbsError: 1.35579e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.84410e-06\tAbsError: 7.75754e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.96874e-04\tAbsError: 1.62368e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.06909e-06\tAbsError: 7.18866e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.28991e-02\tAbsError: 6.60678e+12\n", + " Region: \"zone_1\"\tRelError: 3.14837e-03\tAbsError: 5.03566e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.14692e-03\tAbsError: 3.73976e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44792e-06\tAbsError: 5.03192e-04\n", + " Region: \"zone_3\"\tRelError: 9.75070e-03\tAbsError: 6.60678e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52961e-05\tAbsError: 3.21691e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.35828e-05\tAbsError: 3.38987e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.70037e-03\tAbsError: 3.77067e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44848e-06\tAbsError: 5.03396e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.68338e-01\tAbsError: 7.28836e+14\n", + " Region: \"zone_1\"\tRelError: 4.44613e-02\tAbsError: 2.04423e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44025e-02\tAbsError: 6.98557e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87704e-05\tAbsError: 2.03724e-02\n", + " Region: \"zone_3\"\tRelError: 4.23877e-01\tAbsError: 7.28836e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89975e-03\tAbsError: 3.57624e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.06394e-03\tAbsError: 3.71212e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.13854e-01\tAbsError: 7.63149e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87832e-05\tAbsError: 2.03761e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.80286e-02\tAbsError: 1.80043e+13\n", + " Region: \"zone_1\"\tRelError: 5.97130e-03\tAbsError: 5.99908e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.96961e-03\tAbsError: 1.31746e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68890e-06\tAbsError: 5.86733e-04\n", + " Region: \"zone_3\"\tRelError: 5.20573e-02\tAbsError: 1.80043e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.22256e-03\tAbsError: 7.89900e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11166e-03\tAbsError: 1.01053e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.97214e-02\tAbsError: 1.37677e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68890e-06\tAbsError: 5.86733e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 6.63798e-03\tAbsError: 4.90503e+12\n", + " Region: \"zone_1\"\tRelError: 2.29406e-04\tAbsError: 9.25474e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29140e-04\tAbsError: 1.97212e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.66464e-07\tAbsError: 9.23502e-05\n", + " Region: \"zone_3\"\tRelError: 6.40857e-03\tAbsError: 4.90503e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.34900e-06\tAbsError: 2.43347e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32522e-06\tAbsError: 2.47155e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.39263e-03\tAbsError: 1.99078e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.66498e-07\tAbsError: 9.23593e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.83484e-03\tAbsError: 6.93273e+11\n", + " Region: \"zone_1\"\tRelError: 2.36858e-04\tAbsError: 3.83858e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36749e-04\tAbsError: 3.60825e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09532e-07\tAbsError: 3.80250e-05\n", + " Region: \"zone_3\"\tRelError: 2.59798e-03\tAbsError: 6.93273e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.53173e-05\tAbsError: 3.50881e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.52173e-05\tAbsError: 3.42392e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52733e-03\tAbsError: 3.77534e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09545e-07\tAbsError: 3.80301e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 5.38897e-03\tAbsError: 2.84599e+12\n", + " Region: \"zone_1\"\tRelError: 1.32294e-03\tAbsError: 9.22092e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32267e-03\tAbsError: 1.50402e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.64893e-07\tAbsError: 9.20588e-05\n", + " Region: \"zone_3\"\tRelError: 4.06603e-03\tAbsError: 2.84599e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10980e-05\tAbsError: 1.38588e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03237e-05\tAbsError: 1.46010e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.04435e-03\tAbsError: 1.51704e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.64994e-07\tAbsError: 9.20962e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.64410e-02\tAbsError: 6.34524e+13\n", + " Region: \"zone_1\"\tRelError: 6.01943e-03\tAbsError: 8.87148e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.99386e-03\tAbsError: 6.06051e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.55757e-05\tAbsError: 8.86542e-03\n", + " Region: \"zone_3\"\tRelError: 6.04216e-02\tAbsError: 6.34524e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43427e-04\tAbsError: 3.11581e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.51084e-04\tAbsError: 3.22943e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95015e-02\tAbsError: 6.26485e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.55822e-05\tAbsError: 8.86737e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.25648e-03\tAbsError: 7.75715e+11\n", + " Region: \"zone_1\"\tRelError: 4.35799e-05\tAbsError: 3.84452e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.34694e-05\tAbsError: 2.84735e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10539e-07\tAbsError: 3.84167e-05\n", + " Region: \"zone_3\"\tRelError: 1.21290e-03\tAbsError: 7.75715e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28473e-06\tAbsError: 3.85060e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13479e-06\tAbsError: 3.90655e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21037e-03\tAbsError: 2.87358e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10581e-07\tAbsError: 3.84313e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.25730e-04\tAbsError: 4.09198e+11\n", + " Region: \"zone_1\"\tRelError: 8.09639e-05\tAbsError: 1.05680e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.79223e-05\tAbsError: 2.31215e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.04151e-06\tAbsError: 1.05657e-03\n", + " Region: \"zone_3\"\tRelError: 6.44766e-04\tAbsError: 4.09198e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.69437e-05\tAbsError: 3.66831e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.46261e-05\tAbsError: 4.23676e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.00155e-04\tAbsError: 2.35772e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.04158e-06\tAbsError: 1.05661e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.07375e-03\tAbsError: 5.13009e+11\n", + " Region: \"zone_1\"\tRelError: 2.64555e-04\tAbsError: 3.43938e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64456e-04\tAbsError: 2.89234e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.88826e-08\tAbsError: 3.43649e-05\n", + " Region: \"zone_3\"\tRelError: 8.09198e-04\tAbsError: 5.13009e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97594e-06\tAbsError: 2.49726e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.84609e-06\tAbsError: 2.63282e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.05277e-04\tAbsError: 2.91353e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.89231e-08\tAbsError: 3.43800e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.37341e-04\tAbsError: 3.67215e+10\n", + " Region: \"zone_1\"\tRelError: 2.00671e-05\tAbsError: 4.45514e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.99390e-05\tAbsError: 2.32701e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28158e-07\tAbsError: 4.45281e-05\n", + " Region: \"zone_3\"\tRelError: 2.17274e-04\tAbsError: 3.67215e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11511e-06\tAbsError: 1.73467e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.13991e-06\tAbsError: 1.93748e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12891e-04\tAbsError: 2.42196e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28207e-07\tAbsError: 4.45452e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 4.79935e-04\tAbsError: 3.06765e+11\n", + " Region: \"zone_1\"\tRelError: 1.66486e-05\tAbsError: 7.60779e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66267e-05\tAbsError: 1.06336e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18595e-08\tAbsError: 7.59715e-06\n", + " Region: \"zone_3\"\tRelError: 4.63286e-04\tAbsError: 3.06765e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.16909e-07\tAbsError: 1.52260e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.59699e-07\tAbsError: 1.54505e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62288e-04\tAbsError: 1.07353e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18679e-08\tAbsError: 7.60017e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.75673e-02\tAbsError: 3.32993e+13\n", + " Region: \"zone_1\"\tRelError: 3.52548e-03\tAbsError: 1.20689e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52200e-03\tAbsError: 3.09455e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47154e-06\tAbsError: 1.20380e-03\n", + " Region: \"zone_3\"\tRelError: 3.40418e-02\tAbsError: 3.32993e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47698e-04\tAbsError: 1.63796e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.38649e-04\tAbsError: 1.69197e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35520e-02\tAbsError: 3.11273e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47235e-06\tAbsError: 1.20402e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.50762e-03\tAbsError: 1.02667e+12\n", + " Region: \"zone_1\"\tRelError: 4.77667e-04\tAbsError: 4.19184e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.77548e-04\tAbsError: 5.13940e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19272e-07\tAbsError: 4.14045e-05\n", + " Region: \"zone_3\"\tRelError: 4.02995e-03\tAbsError: 1.02667e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.92271e-05\tAbsError: 5.17713e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.89991e-05\tAbsError: 5.08953e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.93161e-03\tAbsError: 5.31847e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19272e-07\tAbsError: 4.14045e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 3.74423e-04\tAbsError: 1.83514e+11\n", + " Region: \"zone_1\"\tRelError: 9.24322e-05\tAbsError: 7.24007e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 9.24114e-05\tAbsError: 1.03473e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08025e-08\tAbsError: 7.22972e-06\n", + " Region: \"zone_3\"\tRelError: 2.81991e-04\tAbsError: 1.83514e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.14280e-07\tAbsError: 8.93421e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.65006e-07\tAbsError: 9.41716e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80591e-04\tAbsError: 1.04236e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08113e-08\tAbsError: 7.23287e-06\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.03654e-04\tAbsError: 4.37520e+10\n", + " Region: \"zone_1\"\tRelError: 1.71235e-05\tAbsError: 5.08015e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.71089e-05\tAbsError: 2.09274e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45611e-08\tAbsError: 5.05922e-06\n", + " Region: \"zone_3\"\tRelError: 1.86531e-04\tAbsError: 4.37520e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.15573e-06\tAbsError: 2.46704e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.14884e-06\tAbsError: 1.90816e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82212e-04\tAbsError: 2.21547e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45654e-08\tAbsError: 5.06071e-06\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.01824e-04\tAbsError: 5.91028e+10\n", + " Region: \"zone_1\"\tRelError: 3.53926e-06\tAbsError: 2.67115e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53158e-06\tAbsError: 2.19844e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.67947e-09\tAbsError: 2.66896e-06\n", + " Region: \"zone_3\"\tRelError: 9.82849e-05\tAbsError: 5.91028e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.78782e-08\tAbsError: 2.93440e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.77169e-08\tAbsError: 2.97588e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.80917e-05\tAbsError: 2.22202e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.68243e-09\tAbsError: 2.67005e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.47008e-03\tAbsError: 4.77215e+12\n", + " Region: \"zone_1\"\tRelError: 6.05494e-04\tAbsError: 5.38691e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.03946e-04\tAbsError: 4.25617e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54844e-06\tAbsError: 5.38265e-04\n", + " Region: \"zone_3\"\tRelError: 5.86458e-03\tAbsError: 4.77215e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.53153e-05\tAbsError: 2.34800e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.40122e-05\tAbsError: 2.42415e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.79371e-03\tAbsError: 4.28072e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54906e-06\tAbsError: 5.38488e-04\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 8.29193e-05\tAbsError: 3.84339e+10\n", + " Region: \"zone_1\"\tRelError: 2.05031e-05\tAbsError: 2.36410e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04963e-05\tAbsError: 2.24932e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.79589e-09\tAbsError: 2.36186e-06\n", + " Region: \"zone_3\"\tRelError: 6.24162e-05\tAbsError: 3.84339e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.48397e-07\tAbsError: 1.87077e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.38686e-07\tAbsError: 1.97262e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.21223e-05\tAbsError: 2.26557e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.79872e-09\tAbsError: 2.36287e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.87878e-04\tAbsError: 3.71113e+10\n", + " Region: \"zone_1\"\tRelError: 3.08061e-05\tAbsError: 6.36156e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.06230e-05\tAbsError: 2.65699e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83040e-07\tAbsError: 6.35890e-05\n", + " Region: \"zone_3\"\tRelError: 2.57072e-04\tAbsError: 3.71113e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17303e-06\tAbsError: 1.49809e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.20928e-06\tAbsError: 2.21304e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52507e-04\tAbsError: 2.72049e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83108e-07\tAbsError: 6.36126e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:56\u001b[0m.\u001b[1;36m115\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:56\u001b[0m.\u001b[1;36m115\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.9444444444444445\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.86300e-05\tAbsError: 4.83981e+09\n", + " Region: \"zone_1\"\tRelError: 2.42070e-06\tAbsError: 3.03673e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41197e-06\tAbsError: 2.59560e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.73266e-09\tAbsError: 3.03413e-06\n", + " Region: \"zone_3\"\tRelError: 2.62093e-05\tAbsError: 4.83981e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.54983e-07\tAbsError: 2.76736e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.56118e-07\tAbsError: 2.07245e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.56894e-05\tAbsError: 2.72893e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.73423e-09\tAbsError: 3.03468e-06\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 3.38300e-05\tAbsError: 2.01418e+10\n", + " Region: \"zone_1\"\tRelError: 1.17571e-06\tAbsError: 5.87640e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17402e-06\tAbsError: 7.44968e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68869e-09\tAbsError: 5.86895e-07\n", + " Region: \"zone_3\"\tRelError: 3.26543e-05\tAbsError: 2.01418e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.37367e-08\tAbsError: 9.99956e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.02428e-08\tAbsError: 1.01422e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.25886e-05\tAbsError: 7.53080e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68939e-09\tAbsError: 5.87154e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:56\u001b[0m.\u001b[1;36m557\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:56\u001b[0m.\u001b[1;36m557\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7299999999999999\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:56\u001b[0m.\u001b[1;36m645\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 1.0\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.65398e-03\tAbsError: 2.00158e+12\n", + " Region: \"zone_1\"\tRelError: 2.48909e-04\tAbsError: 1.00808e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.48620e-04\tAbsError: 1.66964e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89512e-07\tAbsError: 1.00641e-04\n", + " Region: \"zone_3\"\tRelError: 2.40507e-03\tAbsError: 2.00158e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50347e-05\tAbsError: 9.84888e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.44145e-05\tAbsError: 1.01669e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.37533e-03\tAbsError: 1.67974e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89623e-07\tAbsError: 1.00681e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 3.15874e-04\tAbsError: 6.29994e+10\n", + " Region: \"zone_1\"\tRelError: 3.36655e-05\tAbsError: 6.22152e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.36476e-05\tAbsError: 2.89646e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78252e-08\tAbsError: 6.19255e-06\n", + " Region: \"zone_3\"\tRelError: 2.82208e-04\tAbsError: 6.29994e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.92738e-06\tAbsError: 3.54342e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.90850e-06\tAbsError: 2.75653e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76354e-04\tAbsError: 2.97673e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78310e-08\tAbsError: 6.19458e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.70881e+01\tAbsError: 6.50862e+17\n", + " Region: \"zone_1\"\tRelError: 2.91488e+01\tAbsError: 4.20730e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.91488e+01\tAbsError: 4.20725e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56065e-09\tAbsError: 5.42392e-07\n", + " Region: \"zone_3\"\tRelError: 4.79392e+01\tAbsError: 6.50862e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.42560e-01\tAbsError: 3.17361e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.28573e-01\tAbsError: 3.33501e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.64681e+01\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56130e-09\tAbsError: 5.42626e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.28636e+01\tAbsError: 2.51540e+16\n", + " Region: \"zone_1\"\tRelError: 1.10662e+01\tAbsError: 4.19634e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10662e+01\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43744e-09\tAbsError: 4.99432e-07\n", + " Region: \"zone_3\"\tRelError: 1.79735e+00\tAbsError: 2.51540e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77566e-01\tAbsError: 1.26366e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.77157e-01\tAbsError: 1.25173e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42624e-01\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43763e-09\tAbsError: 4.99500e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.07845e+03\tAbsError: 1.16809e+18\n", + " Region: \"zone_1\"\tRelError: 2.98806e+02\tAbsError: 4.09541e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.98806e+02\tAbsError: 4.09540e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.33797e-10\tAbsError: 1.85521e-07\n", + " Region: \"zone_3\"\tRelError: 7.79646e+02\tAbsError: 1.16809e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90701e-01\tAbsError: 5.74604e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.65642e-01\tAbsError: 5.93489e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 7.78290e+02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.34021e-10\tAbsError: 1.85602e-07\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 5.36228e-04\tAbsError: 3.67963e+11\n", + " Region: \"zone_1\"\tRelError: 5.03370e-05\tAbsError: 3.69568e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.02308e-05\tAbsError: 3.27141e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06219e-07\tAbsError: 3.69241e-05\n", + " Region: \"zone_3\"\tRelError: 4.85891e-04\tAbsError: 3.67963e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.74381e-06\tAbsError: 1.81082e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.63918e-06\tAbsError: 1.86881e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.80402e-04\tAbsError: 3.29054e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06263e-07\tAbsError: 3.69404e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.92670e-05\tAbsError: 5.95026e+09\n", + " Region: \"zone_1\"\tRelError: 4.20495e-06\tAbsError: 4.23098e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.19278e-06\tAbsError: 3.10942e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21699e-08\tAbsError: 4.22787e-06\n", + " Region: \"zone_3\"\tRelError: 3.50620e-05\tAbsError: 5.95026e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.01282e-07\tAbsError: 3.34783e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.02333e-07\tAbsError: 2.60243e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.44462e-05\tAbsError: 3.17149e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21718e-08\tAbsError: 4.22856e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:58\u001b[0m.\u001b[1;36m698\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.7599999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.53936e+01\tAbsError: 4.63574e+17\n", + " Region: \"zone_1\"\tRelError: 1.68382e+01\tAbsError: 5.87381e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68366e+01\tAbsError: 3.20816e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59994e-03\tAbsError: 5.55300e-01\n", + " Region: \"zone_3\"\tRelError: 8.55548e+00\tAbsError: 4.63574e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.36996e-01\tAbsError: 2.31508e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.17433e-01\tAbsError: 2.32066e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 7.49945e+00\tAbsError: 3.20820e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60182e-03\tAbsError: 5.55931e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.78042e+00\tAbsError: 2.62146e+16\n", + " Region: \"zone_1\"\tRelError: 2.05146e-01\tAbsError: 1.39912e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04835e-01\tAbsError: 3.19524e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.10831e-04\tAbsError: 1.07960e-01\n", + " Region: \"zone_3\"\tRelError: 1.57527e+00\tAbsError: 2.62146e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.51357e-01\tAbsError: 1.30522e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.18341e-01\tAbsError: 1.31624e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05264e-01\tAbsError: 3.19525e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.10831e-04\tAbsError: 1.07960e-01\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.84514e-04\tAbsError: 1.29331e+11\n", + " Region: \"zone_1\"\tRelError: 1.73204e-05\tAbsError: 7.90813e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72976e-05\tAbsError: 1.15361e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27155e-08\tAbsError: 7.89660e-06\n", + " Region: \"zone_3\"\tRelError: 1.67193e-04\tAbsError: 1.29331e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.72276e-07\tAbsError: 6.36462e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.31421e-07\tAbsError: 6.56851e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65267e-04\tAbsError: 1.16052e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27252e-08\tAbsError: 7.90006e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.95227e+03\tAbsError: 4.47180e+17\n", + " Region: \"zone_1\"\tRelError: 5.95735e+02\tAbsError: 1.32695e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95731e+02\tAbsError: 3.07627e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.72641e-03\tAbsError: 1.29619e+00\n", + " Region: \"zone_3\"\tRelError: 2.35653e+03\tAbsError: 4.47180e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.30389e-01\tAbsError: 2.23868e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.07870e-01\tAbsError: 2.23312e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.35569e+03\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.72703e-03\tAbsError: 1.29643e+00\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.31912e+00\tAbsError: 1.05474e+17\n", + " Region: \"zone_1\"\tRelError: 3.16376e+00\tAbsError: 1.80141e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.16331e+00\tAbsError: 2.58274e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.43672e-04\tAbsError: 1.54313e-01\n", + " Region: \"zone_3\"\tRelError: 6.15536e+00\tAbsError: 1.05474e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38445e-01\tAbsError: 5.28833e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.41911e-01\tAbsError: 5.25905e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.77456e+00\tAbsError: 2.58274e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.43863e-04\tAbsError: 1.54374e-01\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.89989e+01\tAbsError: 3.92698e+16\n", + " Region: \"zone_1\"\tRelError: 8.71579e+01\tAbsError: 4.29344e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.71579e+01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83834e-09\tAbsError: 6.38649e-07\n", + " Region: \"zone_3\"\tRelError: 1.84091e+00\tAbsError: 3.92698e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.85132e-01\tAbsError: 1.95208e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.84546e-01\tAbsError: 1.97490e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.71236e-01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83857e-09\tAbsError: 6.38730e-07\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 4.13464e-05\tAbsError: 2.75069e+10\n", + " Region: \"zone_1\"\tRelError: 3.88379e-06\tAbsError: 2.55222e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87646e-06\tAbsError: 2.54121e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.33447e-09\tAbsError: 2.54968e-06\n", + " Region: \"zone_3\"\tRelError: 3.74626e-05\tAbsError: 2.75069e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05752e-07\tAbsError: 1.35376e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.97692e-07\tAbsError: 1.39693e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.70518e-05\tAbsError: 2.55608e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.33751e-09\tAbsError: 2.55078e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:00\u001b[0m.\u001b[1;36m915\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.9\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.52969e+00\tAbsError: 1.69120e+16\n", + " Region: \"zone_1\"\tRelError: 2.50790e-01\tAbsError: 9.45900e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.50592e-01\tAbsError: 2.58713e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.97890e-04\tAbsError: 6.87187e-02\n", + " Region: \"zone_3\"\tRelError: 1.27890e+00\tAbsError: 1.69120e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.64432e-01\tAbsError: 8.40128e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.11936e-01\tAbsError: 8.51077e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.02336e-01\tAbsError: 2.52194e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.97890e-04\tAbsError: 6.87187e-02\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 8.37720e+02\tAbsError: 8.62713e+16\n", + " Region: \"zone_1\"\tRelError: 6.83172e+02\tAbsError: 5.09423e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.83170e+02\tAbsError: 2.58987e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39194e-03\tAbsError: 4.83524e-01\n", + " Region: \"zone_3\"\tRelError: 1.54548e+02\tAbsError: 8.62713e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27446e-01\tAbsError: 4.32970e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.20316e-02\tAbsError: 4.29743e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54357e+02\tAbsError: 2.58982e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39675e-03\tAbsError: 4.85195e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.33136e+00\tAbsError: 4.26102e+16\n", + " Region: \"zone_1\"\tRelError: 7.03868e-01\tAbsError: 1.89183e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.03418e-01\tAbsError: 3.31000e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.49500e-04\tAbsError: 1.56083e-01\n", + " Region: \"zone_3\"\tRelError: 1.62750e+00\tAbsError: 4.26102e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.64246e-01\tAbsError: 2.11454e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.28205e-01\tAbsError: 2.14648e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34596e-01\tAbsError: 3.31000e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.49500e-04\tAbsError: 1.56083e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.00195e+02\tAbsError: 1.20830e+16\n", + " Region: \"zone_1\"\tRelError: 1.86371e+00\tAbsError: 2.42851e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86304e+00\tAbsError: 1.08339e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.68777e-04\tAbsError: 2.32017e-01\n", + " Region: \"zone_3\"\tRelError: 9.83312e+01\tAbsError: 1.20830e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.72462e-02\tAbsError: 6.06999e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.40219e-02\tAbsError: 6.01304e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.82793e+01\tAbsError: 1.08344e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.69062e-04\tAbsError: 2.32109e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 9.03245e-01\tAbsError: 5.18936e+15\n", + " Region: \"zone_1\"\tRelError: 2.71832e-01\tAbsError: 3.50455e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.71762e-01\tAbsError: 1.06614e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.02213e-05\tAbsError: 2.43841e-02\n", + " Region: \"zone_3\"\tRelError: 6.31413e-01\tAbsError: 5.18936e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98887e-01\tAbsError: 2.86107e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.19458e-01\tAbsError: 2.32829e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.12998e-01\tAbsError: 1.06615e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.02213e-05\tAbsError: 2.43841e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.13777e+02\tAbsError: 9.41150e+15\n", + " Region: \"zone_1\"\tRelError: 7.34943e+01\tAbsError: 1.74710e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 7.34894e+01\tAbsError: 9.16455e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.95952e-03\tAbsError: 1.73794e+00\n", + " Region: \"zone_3\"\tRelError: 5.40283e+02\tAbsError: 9.41150e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.82819e-02\tAbsError: 3.95531e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.70902e-02\tAbsError: 5.45619e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.40223e+02\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.96820e-03\tAbsError: 1.74101e+00\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.18618e+01\tAbsError: 3.43486e+17\n", + " Region: \"zone_1\"\tRelError: 4.68734e+01\tAbsError: 4.09548e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.68734e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70509e-09\tAbsError: 5.92742e-07\n", + " Region: \"zone_3\"\tRelError: 1.49884e+01\tAbsError: 3.43486e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.50361e-01\tAbsError: 1.67687e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.42491e-01\tAbsError: 1.75799e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34955e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70580e-09\tAbsError: 5.92998e-07\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.45670e-01\tAbsError: 1.26540e+15\n", + " Region: \"zone_1\"\tRelError: 3.11411e-02\tAbsError: 1.07400e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.08323e-02\tAbsError: 1.56334e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.08810e-04\tAbsError: 1.07385e-01\n", + " Region: \"zone_3\"\tRelError: 9.14528e-01\tAbsError: 1.26540e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.37147e-03\tAbsError: 6.61259e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.87047e-04\tAbsError: 6.04144e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.11261e-01\tAbsError: 1.60143e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.08810e-04\tAbsError: 1.07385e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.78831e+00\tAbsError: 2.78341e+16\n", + " Region: \"zone_1\"\tRelError: 1.69902e-01\tAbsError: 1.09102e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69661e-01\tAbsError: 2.55696e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.40621e-04\tAbsError: 8.35322e-02\n", + " Region: \"zone_3\"\tRelError: 3.61840e+00\tAbsError: 2.78341e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.81251e-01\tAbsError: 1.38039e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.31150e-01\tAbsError: 1.40303e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.70576e+00\tAbsError: 2.44241e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.40621e-04\tAbsError: 8.35322e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.76534e-01\tAbsError: 1.17369e+15\n", + " Region: \"zone_1\"\tRelError: 1.69600e-02\tAbsError: 1.69700e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64717e-02\tAbsError: 3.03978e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.88294e-04\tAbsError: 1.69396e-01\n", + " Region: \"zone_3\"\tRelError: 1.59574e-01\tAbsError: 1.17369e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.93455e-02\tAbsError: 4.91766e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.63740e-02\tAbsError: 6.81925e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.33645e-02\tAbsError: 3.31356e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.89669e-04\tAbsError: 1.69868e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.16806e+01\tAbsError: 1.22386e+16\n", + " Region: \"zone_1\"\tRelError: 5.81165e+00\tAbsError: 2.01324e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.80588e+00\tAbsError: 6.99078e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.77633e-03\tAbsError: 2.01254e+00\n", + " Region: \"zone_3\"\tRelError: 5.86896e+00\tAbsError: 1.22386e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.88114e-02\tAbsError: 5.53671e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06848e-02\tAbsError: 6.70184e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.80368e+00\tAbsError: 7.04147e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.78367e-03\tAbsError: 2.01512e+00\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 6.59116e+00\tAbsError: 3.05940e+17\n", + " Region: \"zone_1\"\tRelError: 1.06162e+00\tAbsError: 1.92710e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06116e+00\tAbsError: 3.07630e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.67257e-04\tAbsError: 1.61947e-01\n", + " Region: \"zone_3\"\tRelError: 5.52954e+00\tAbsError: 3.05940e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.66708e-01\tAbsError: 1.53394e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.75609e-01\tAbsError: 1.52546e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.38676e+00\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.67257e-04\tAbsError: 1.61947e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.55882e-01\tAbsError: 5.19874e+14\n", + " Region: \"zone_1\"\tRelError: 5.38620e-02\tAbsError: 1.20803e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.38586e-02\tAbsError: 3.11909e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.38226e-06\tAbsError: 1.17683e-03\n", + " Region: \"zone_3\"\tRelError: 5.02020e-01\tAbsError: 5.19874e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.56161e-04\tAbsError: 2.58405e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.64452e-04\tAbsError: 2.61469e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.00896e-01\tAbsError: 3.14682e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.38459e-06\tAbsError: 1.17764e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.38718e+01\tAbsError: 9.28637e+15\n", + " Region: \"zone_1\"\tRelError: 7.88025e+00\tAbsError: 6.96344e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.88008e+00\tAbsError: 1.22653e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65287e-04\tAbsError: 5.73691e-02\n", + " Region: \"zone_3\"\tRelError: 5.99160e+00\tAbsError: 9.28637e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.18748e-01\tAbsError: 4.98903e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.31602e-01\tAbsError: 4.29734e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.64108e+00\tAbsError: 1.22654e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65287e-04\tAbsError: 5.73691e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.46015e-01\tAbsError: 1.80032e+14\n", + " Region: \"zone_1\"\tRelError: 9.75495e-02\tAbsError: 1.04545e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.75195e-02\tAbsError: 5.53506e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.99752e-05\tAbsError: 1.03991e-02\n", + " Region: \"zone_3\"\tRelError: 7.48465e-01\tAbsError: 1.80032e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33637e-03\tAbsError: 9.04288e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.16174e-03\tAbsError: 8.96033e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.39937e-01\tAbsError: 5.59249e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.99992e-05\tAbsError: 1.04072e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.44367e+01\tAbsError: 1.02259e+16\n", + " Region: \"zone_1\"\tRelError: 4.22055e+01\tAbsError: 1.45859e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22051e+01\tAbsError: 5.71640e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.16833e-04\tAbsError: 1.45287e-01\n", + " Region: \"zone_3\"\tRelError: 4.22312e+01\tAbsError: 1.02259e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97020e-02\tAbsError: 4.95775e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.96648e-03\tAbsError: 5.26817e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22051e+01\tAbsError: 5.76213e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.17002e-04\tAbsError: 1.45346e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.39017e+01\tAbsError: 1.15461e+17\n", + " Region: \"zone_1\"\tRelError: 6.40052e-01\tAbsError: 2.51200e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.39402e-01\tAbsError: 2.58690e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.49519e-04\tAbsError: 2.25331e-01\n", + " Region: \"zone_3\"\tRelError: 3.32617e+01\tAbsError: 1.15461e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89584e-01\tAbsError: 5.80157e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.82182e-01\tAbsError: 5.74450e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.27893e+01\tAbsError: 2.58944e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.51823e-04\tAbsError: 2.26124e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.90203e-02\tAbsError: 8.57664e+12\n", + " Region: \"zone_1\"\tRelError: 6.51163e-04\tAbsError: 3.92189e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.39892e-04\tAbsError: 6.62870e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12712e-05\tAbsError: 3.92123e-03\n", + " Region: \"zone_3\"\tRelError: 1.83691e-02\tAbsError: 8.57664e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.99766e-05\tAbsError: 4.26406e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.25376e-05\tAbsError: 4.31258e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82453e-02\tAbsError: 6.67022e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12760e-05\tAbsError: 3.92281e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.77662e-01\tAbsError: 2.06585e+15\n", + " Region: \"zone_1\"\tRelError: 4.30114e-01\tAbsError: 2.03900e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.29527e-01\tAbsError: 3.53307e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.86951e-04\tAbsError: 2.03546e-01\n", + " Region: \"zone_3\"\tRelError: 4.47548e-01\tAbsError: 2.06585e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.13163e-02\tAbsError: 1.09818e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.86137e-02\tAbsError: 9.67666e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.67030e-01\tAbsError: 3.88113e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87978e-04\tAbsError: 2.03897e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 9.34138e-02\tAbsError: 1.37807e+13\n", + " Region: \"zone_1\"\tRelError: 1.18515e-02\tAbsError: 5.19856e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18366e-02\tAbsError: 4.20470e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49728e-05\tAbsError: 5.19436e-03\n", + " Region: \"zone_3\"\tRelError: 8.15623e-02\tAbsError: 1.37807e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.21884e-04\tAbsError: 6.93208e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.26229e-04\tAbsError: 6.84861e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.08992e-02\tAbsError: 4.35810e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49755e-05\tAbsError: 5.19537e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.49604e+00\tAbsError: 9.70392e+14\n", + " Region: \"zone_1\"\tRelError: 3.74605e+00\tAbsError: 7.97463e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74582e+00\tAbsError: 4.64021e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28718e-04\tAbsError: 7.96999e-02\n", + " Region: \"zone_3\"\tRelError: 3.74999e+00\tAbsError: 9.70392e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.58316e-03\tAbsError: 4.83793e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.36045e-03\tAbsError: 4.86599e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74582e+00\tAbsError: 4.67428e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28813e-04\tAbsError: 7.97327e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.34480e+00\tAbsError: 1.48853e+16\n", + " Region: \"zone_1\"\tRelError: 1.80604e-01\tAbsError: 1.59400e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80172e-01\tAbsError: 9.16501e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31839e-04\tAbsError: 1.50235e-01\n", + " Region: \"zone_3\"\tRelError: 3.16419e+00\tAbsError: 1.48853e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.34401e-02\tAbsError: 7.53366e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.19569e-02\tAbsError: 7.35164e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.07837e+00\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31839e-04\tAbsError: 1.50235e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.42229e-02\tAbsError: 2.62107e+13\n", + " Region: \"zone_1\"\tRelError: 9.63183e-04\tAbsError: 1.99796e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.62612e-04\tAbsError: 1.17402e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.70933e-07\tAbsError: 1.98622e-04\n", + " Region: \"zone_3\"\tRelError: 5.32597e-02\tAbsError: 2.62107e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91026e-05\tAbsError: 1.30391e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.35312e-05\tAbsError: 1.31716e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.32065e-02\tAbsError: 1.18451e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.71166e-07\tAbsError: 1.98702e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.53636e-01\tAbsError: 3.08501e+14\n", + " Region: \"zone_1\"\tRelError: 3.98620e-02\tAbsError: 1.23082e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.98267e-02\tAbsError: 5.75296e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.53250e-05\tAbsError: 1.22507e-02\n", + " Region: \"zone_3\"\tRelError: 8.13774e-01\tAbsError: 3.08501e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.49398e-03\tAbsError: 1.56170e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.26463e-03\tAbsError: 1.52331e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.04980e-01\tAbsError: 6.04070e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.53536e-05\tAbsError: 1.22608e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.68389e-02\tAbsError: 8.42161e+12\n", + " Region: \"zone_1\"\tRelError: 8.05486e-03\tAbsError: 6.74002e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.05293e-03\tAbsError: 2.14389e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93552e-06\tAbsError: 6.71858e-04\n", + " Region: \"zone_3\"\tRelError: 5.87840e-02\tAbsError: 8.42161e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97849e-04\tAbsError: 4.23824e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96209e-04\tAbsError: 4.18336e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.83880e-02\tAbsError: 2.29466e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93608e-06\tAbsError: 6.72072e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 9.26745e+00\tAbsError: 5.14481e+14\n", + " Region: \"zone_1\"\tRelError: 8.59152e+00\tAbsError: 9.35409e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.59150e+00\tAbsError: 2.29233e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.68516e-05\tAbsError: 9.33117e-03\n", + " Region: \"zone_3\"\tRelError: 6.75929e-01\tAbsError: 5.14481e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.99602e-04\tAbsError: 2.56366e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.52414e-04\tAbsError: 2.58114e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.74650e-01\tAbsError: 2.31041e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.68516e-05\tAbsError: 9.33117e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.42204e-01\tAbsError: 1.90329e+15\n", + " Region: \"zone_1\"\tRelError: 2.01983e-02\tAbsError: 3.47392e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91990e-02\tAbsError: 1.15001e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.99221e-04\tAbsError: 3.47277e-01\n", + " Region: \"zone_3\"\tRelError: 3.22006e-01\tAbsError: 1.90329e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.20950e-03\tAbsError: 1.00831e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03234e-03\tAbsError: 8.94978e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.11765e-01\tAbsError: 1.16357e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.99221e-04\tAbsError: 3.47277e-01\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 5.30116e-03\tAbsError: 1.65033e+12\n", + " Region: \"zone_1\"\tRelError: 9.08964e-05\tAbsError: 1.77648e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.03860e-05\tAbsError: 7.18800e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.10472e-07\tAbsError: 1.77577e-04\n", + " Region: \"zone_3\"\tRelError: 5.21027e-03\tAbsError: 1.65033e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.07855e-06\tAbsError: 8.21862e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.94019e-06\tAbsError: 8.28472e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.20274e-03\tAbsError: 7.24579e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.10652e-07\tAbsError: 1.77639e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 9.89484e-02\tAbsError: 2.22861e+13\n", + " Region: \"zone_1\"\tRelError: 5.09435e-03\tAbsError: 5.93418e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.07725e-03\tAbsError: 4.26347e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70993e-05\tAbsError: 5.92992e-03\n", + " Region: \"zone_3\"\tRelError: 9.38540e-02\tAbsError: 2.22861e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.12518e-04\tAbsError: 1.13121e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.19708e-04\tAbsError: 1.09740e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.32047e-02\tAbsError: 4.58383e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71053e-05\tAbsError: 5.93209e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.07664e-02\tAbsError: 1.13884e+12\n", + " Region: \"zone_1\"\tRelError: 1.31333e-03\tAbsError: 3.25313e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31239e-03\tAbsError: 2.77300e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.36318e-07\tAbsError: 3.25036e-04\n", + " Region: \"zone_3\"\tRelError: 9.45302e-03\tAbsError: 1.13884e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.68360e-05\tAbsError: 5.72049e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.66458e-05\tAbsError: 5.66790e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.39861e-03\tAbsError: 3.00400e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.36507e-07\tAbsError: 3.25102e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.48030e+01\tAbsError: 7.19505e+13\n", + " Region: \"zone_1\"\tRelError: 1.40655e+01\tAbsError: 3.86191e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40655e+01\tAbsError: 2.84880e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11050e-05\tAbsError: 3.85906e-03\n", + " Region: \"zone_3\"\tRelError: 7.37529e-01\tAbsError: 7.19505e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38672e-04\tAbsError: 3.58470e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.21484e-04\tAbsError: 3.61036e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.37257e-01\tAbsError: 2.87067e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11068e-05\tAbsError: 3.85947e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.26159e-01\tAbsError: 1.60368e+15\n", + " Region: \"zone_1\"\tRelError: 2.39971e-02\tAbsError: 1.68797e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39489e-02\tAbsError: 1.07820e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.82419e-05\tAbsError: 1.67718e-02\n", + " Region: \"zone_3\"\tRelError: 7.02162e-01\tAbsError: 1.60368e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.86883e-03\tAbsError: 7.94204e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.42424e-03\tAbsError: 8.09476e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.96821e-01\tAbsError: 1.08766e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.82636e-05\tAbsError: 1.67793e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.02475e-03\tAbsError: 1.45063e+12\n", + " Region: \"zone_1\"\tRelError: 6.82332e-05\tAbsError: 1.85610e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.81798e-05\tAbsError: 5.23725e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.33733e-08\tAbsError: 1.85086e-05\n", + " Region: \"zone_3\"\tRelError: 3.95652e-03\tAbsError: 1.45063e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.55532e-06\tAbsError: 7.22108e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.33185e-06\tAbsError: 7.28517e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.95357e-03\tAbsError: 5.28441e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.33816e-08\tAbsError: 1.85110e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 7.00709e-02\tAbsError: 1.40239e+13\n", + " Region: \"zone_1\"\tRelError: 5.03970e-03\tAbsError: 7.16974e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.03764e-03\tAbsError: 2.12927e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.06030e-06\tAbsError: 7.14844e-04\n", + " Region: \"zone_3\"\tRelError: 6.50312e-02\tAbsError: 1.40239e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.99984e-04\tAbsError: 7.11157e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96186e-04\tAbsError: 6.91232e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.46330e-02\tAbsError: 2.37452e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.06089e-06\tAbsError: 7.15072e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.82197e-03\tAbsError: 5.21696e+11\n", + " Region: \"zone_1\"\tRelError: 5.86077e-04\tAbsError: 5.83701e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.85910e-04\tAbsError: 1.23649e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67458e-07\tAbsError: 5.82464e-05\n", + " Region: \"zone_3\"\tRelError: 4.23589e-03\tAbsError: 5.21696e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23100e-05\tAbsError: 2.62384e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.21550e-05\tAbsError: 2.59312e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.21126e-03\tAbsError: 1.33690e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67522e-07\tAbsError: 5.82688e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.47896e+00\tAbsError: 2.94682e+13\n", + " Region: \"zone_1\"\tRelError: 1.24509e+00\tAbsError: 6.95816e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24509e+00\tAbsError: 1.07735e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99937e-06\tAbsError: 6.94739e-04\n", + " Region: \"zone_3\"\tRelError: 2.33869e-01\tAbsError: 2.94682e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.81392e-05\tAbsError: 1.46808e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.76977e-05\tAbsError: 1.47873e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.33792e-01\tAbsError: 1.08579e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99953e-06\tAbsError: 6.95001e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.12346e-01\tAbsError: 1.08123e+14\n", + " Region: \"zone_1\"\tRelError: 3.56238e-03\tAbsError: 1.31451e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52458e-03\tAbsError: 6.36043e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77942e-05\tAbsError: 1.31387e-02\n", + " Region: \"zone_3\"\tRelError: 1.08784e-01\tAbsError: 1.08123e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.76703e-04\tAbsError: 5.36465e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.39449e-04\tAbsError: 5.44763e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08330e-01\tAbsError: 6.41381e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.78094e-05\tAbsError: 1.31440e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 5.73035e-04\tAbsError: 1.62179e+11\n", + " Region: \"zone_1\"\tRelError: 9.76105e-06\tAbsError: 1.05558e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.73070e-06\tAbsError: 5.56147e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.03448e-08\tAbsError: 1.05503e-05\n", + " Region: \"zone_3\"\tRelError: 5.63274e-04\tAbsError: 1.62179e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13645e-07\tAbsError: 8.07775e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.43383e-07\tAbsError: 8.14013e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.62786e-04\tAbsError: 5.60872e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.03562e-08\tAbsError: 1.05543e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.09197e-02\tAbsError: 1.80216e+12\n", + " Region: \"zone_1\"\tRelError: 8.53563e-04\tAbsError: 3.58810e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.52532e-04\tAbsError: 2.71616e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03105e-06\tAbsError: 3.58539e-04\n", + " Region: \"zone_3\"\tRelError: 1.00661e-02\tAbsError: 1.80216e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.57850e-05\tAbsError: 9.11943e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.53850e-05\tAbsError: 8.90217e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00139e-02\tAbsError: 2.97011e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03144e-06\tAbsError: 3.58676e-04\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 9.54183e-04\tAbsError: 9.39667e+10\n", + " Region: \"zone_1\"\tRelError: 1.16209e-04\tAbsError: 2.27557e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16144e-04\tAbsError: 2.33029e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.53549e-08\tAbsError: 2.27324e-05\n", + " Region: \"zone_3\"\tRelError: 8.37974e-04\tAbsError: 9.39667e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21772e-06\tAbsError: 4.71829e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.19489e-06\tAbsError: 4.67838e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.33496e-04\tAbsError: 2.51571e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.53810e-08\tAbsError: 2.27417e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.23148e-01\tAbsError: 5.24321e+12\n", + " Region: \"zone_1\"\tRelError: 2.61296e-01\tAbsError: 2.47766e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.61295e-01\tAbsError: 1.83418e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.11380e-07\tAbsError: 2.47583e-04\n", + " Region: \"zone_3\"\tRelError: 6.18518e-02\tAbsError: 5.24321e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94642e-06\tAbsError: 2.61290e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.40186e-06\tAbsError: 2.63031e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.18338e-02\tAbsError: 1.85316e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.11644e-07\tAbsError: 2.47677e-04\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.77942e-04\tAbsError: 8.68011e+10\n", + " Region: \"zone_1\"\tRelError: 4.71672e-06\tAbsError: 1.67033e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.71193e-06\tAbsError: 2.72076e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.79630e-09\tAbsError: 1.66761e-06\n", + " Region: \"zone_3\"\tRelError: 2.73225e-04\tAbsError: 8.68011e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.10687e-08\tAbsError: 4.32250e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.08382e-08\tAbsError: 4.35761e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73048e-04\tAbsError: 2.75222e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.79812e-09\tAbsError: 1.66827e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 8.36096e-02\tAbsError: 8.44228e+13\n", + " Region: \"zone_1\"\tRelError: 2.87350e-03\tAbsError: 1.23009e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.86998e-03\tAbsError: 4.23325e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52636e-06\tAbsError: 1.22586e-03\n", + " Region: \"zone_3\"\tRelError: 8.07361e-02\tAbsError: 8.44228e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46087e-04\tAbsError: 4.18513e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.25646e-04\tAbsError: 4.25715e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.04608e-02\tAbsError: 4.27186e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52783e-06\tAbsError: 1.22636e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 5.01199e-03\tAbsError: 8.44881e+11\n", + " Region: \"zone_1\"\tRelError: 4.01242e-04\tAbsError: 6.23400e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.01063e-04\tAbsError: 1.18119e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78932e-07\tAbsError: 6.22219e-05\n", + " Region: \"zone_3\"\tRelError: 4.61074e-03\tAbsError: 8.44881e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.21066e-05\tAbsError: 4.28039e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.18113e-05\tAbsError: 4.16842e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.58665e-03\tAbsError: 1.34568e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79002e-07\tAbsError: 6.22472e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 3.45938e-04\tAbsError: 3.49606e+10\n", + " Region: \"zone_1\"\tRelError: 4.21268e-05\tAbsError: 4.83279e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.21129e-05\tAbsError: 8.82724e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38687e-08\tAbsError: 4.82397e-06\n", + " Region: \"zone_3\"\tRelError: 3.03811e-04\tAbsError: 3.49606e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.25886e-07\tAbsError: 1.75745e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.14419e-07\tAbsError: 1.73861e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.02157e-04\tAbsError: 9.47988e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38741e-08\tAbsError: 4.82591e-06\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 9.77270e-02\tAbsError: 1.82347e+12\n", + " Region: \"zone_1\"\tRelError: 7.65024e-02\tAbsError: 5.28468e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.65022e-02\tAbsError: 6.24160e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51664e-07\tAbsError: 5.27844e-05\n", + " Region: \"zone_3\"\tRelError: 2.12246e-02\tAbsError: 1.82347e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11287e-06\tAbsError: 9.08701e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.75258e-06\tAbsError: 9.14773e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12196e-02\tAbsError: 6.30788e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51721e-07\tAbsError: 5.28055e-05\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 4.94184e-05\tAbsError: 1.34670e+10\n", + " Region: \"zone_1\"\tRelError: 8.40757e-07\tAbsError: 7.04798e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 8.38731e-07\tAbsError: 4.68512e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.02577e-09\tAbsError: 7.04330e-07\n", + " Region: \"zone_3\"\tRelError: 4.85777e-05\tAbsError: 1.34670e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.35642e-08\tAbsError: 6.71456e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.87779e-08\tAbsError: 6.75244e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.85433e-05\tAbsError: 4.73582e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.02653e-09\tAbsError: 7.04612e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:13\u001b[0m.\u001b[1;36m621\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: 1.05\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.36875e-02\tAbsError: 9.69294e+12\n", + " Region: \"zone_1\"\tRelError: 4.70501e-04\tAbsError: 6.20216e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.68718e-04\tAbsError: 4.28680e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78298e-06\tAbsError: 6.19787e-04\n", + " Region: \"zone_3\"\tRelError: 1.32170e-02\tAbsError: 9.69294e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.60935e-05\tAbsError: 4.80983e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.36870e-05\tAbsError: 4.88312e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31854e-02\tAbsError: 4.32490e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78363e-06\tAbsError: 6.20008e-04\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 9.60700e-04\tAbsError: 1.46526e+11\n", + " Region: \"zone_1\"\tRelError: 8.00160e-05\tAbsError: 2.47424e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.99449e-05\tAbsError: 2.16238e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.10889e-08\tAbsError: 2.47208e-05\n", + " Region: \"zone_3\"\tRelError: 8.80684e-04\tAbsError: 1.46526e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10027e-06\tAbsError: 7.40950e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.05550e-06\tAbsError: 7.24314e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.76457e-04\tAbsError: 2.44043e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.11163e-08\tAbsError: 2.47310e-05\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 7.73949e-05\tAbsError: 7.42262e+09\n", + " Region: \"zone_1\"\tRelError: 9.43065e-06\tAbsError: 1.62687e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 9.42598e-06\tAbsError: 1.91720e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.67168e-09\tAbsError: 1.62495e-06\n", + " Region: \"zone_3\"\tRelError: 6.79643e-05\tAbsError: 7.42262e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.75307e-07\tAbsError: 3.72700e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.73213e-07\tAbsError: 3.69562e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 6.76111e-05\tAbsError: 2.05805e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.67347e-09\tAbsError: 1.62561e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:14\u001b[0m.\u001b[1;36m484\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:14\u001b[0m.\u001b[1;36m484\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.8349999999999999\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.05494e-02\tAbsError: 3.74583e+11\n", + " Region: \"zone_1\"\tRelError: 1.55447e-02\tAbsError: 1.67716e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55447e-02\tAbsError: 1.38057e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.81497e-08\tAbsError: 1.67577e-05\n", + " Region: \"zone_3\"\tRelError: 5.00469e-03\tAbsError: 3.74583e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.90614e-07\tAbsError: 1.86695e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.85333e-07\tAbsError: 1.87888e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.00347e-03\tAbsError: 1.39492e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.81681e-08\tAbsError: 1.67646e-05\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.39678e+02\tAbsError: 1.67099e+18\n", + " Region: \"zone_1\"\tRelError: 2.95195e+02\tAbsError: 4.20724e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.95195e+02\tAbsError: 4.20722e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.86327e-10\tAbsError: 1.34320e-07\n", + " Region: \"zone_3\"\tRelError: 4.44483e+02\tAbsError: 1.67099e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67379e-01\tAbsError: 8.29298e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.42234e-01\tAbsError: 8.41690e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.43174e+02\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.86484e-10\tAbsError: 1.34379e-07\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 3.52484e-04\tAbsError: 5.50892e+10\n", + " Region: \"zone_1\"\tRelError: 2.94784e-05\tAbsError: 5.09771e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.94637e-05\tAbsError: 8.23414e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46357e-08\tAbsError: 5.08948e-06\n", + " Region: \"zone_3\"\tRelError: 3.23006e-04\tAbsError: 5.50892e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.90399e-07\tAbsError: 2.78906e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69285e-07\tAbsError: 2.71986e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.21431e-04\tAbsError: 9.35507e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46414e-08\tAbsError: 5.09161e-06\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 6.63798e-03\tAbsError: 4.90503e+12\n", + " Region: \"zone_1\"\tRelError: 2.29406e-04\tAbsError: 9.25474e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29140e-04\tAbsError: 1.97212e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.66464e-07\tAbsError: 9.23502e-05\n", + " Region: \"zone_3\"\tRelError: 6.40857e-03\tAbsError: 4.90503e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.34900e-06\tAbsError: 2.43347e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32522e-06\tAbsError: 2.47155e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.39263e-03\tAbsError: 1.99078e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.66498e-07\tAbsError: 9.23593e-05\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 6.14058e-03\tAbsError: 1.17501e+11\n", + " Region: \"zone_1\"\tRelError: 4.56971e-03\tAbsError: 3.83354e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.56970e-03\tAbsError: 4.25999e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10026e-08\tAbsError: 3.82928e-06\n", + " Region: \"zone_3\"\tRelError: 1.57087e-03\tAbsError: 1.17501e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.29368e-07\tAbsError: 5.85629e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.92613e-07\tAbsError: 5.89376e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57054e-03\tAbsError: 4.30497e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10071e-08\tAbsError: 3.83095e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.31978e+02\tAbsError: 1.33287e+17\n", + " Region: \"zone_1\"\tRelError: 1.28982e+02\tAbsError: 4.19633e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28982e+02\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09159e-09\tAbsError: 3.79687e-07\n", + " Region: \"zone_3\"\tRelError: 2.99611e+00\tAbsError: 1.33287e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.73467e-01\tAbsError: 6.69941e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.71171e-01\tAbsError: 6.62930e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45147e+00\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09201e-09\tAbsError: 3.79842e-07\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 7.69368e-05\tAbsError: 1.13679e+10\n", + " Region: \"zone_1\"\tRelError: 6.56115e-06\tAbsError: 1.72638e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.55620e-06\tAbsError: 1.74878e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.95947e-09\tAbsError: 1.72463e-06\n", + " Region: \"zone_3\"\tRelError: 7.03756e-05\tAbsError: 1.13679e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.63070e-07\tAbsError: 5.74763e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.59111e-07\tAbsError: 5.62023e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 7.00485e-05\tAbsError: 1.97676e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.96153e-09\tAbsError: 1.72539e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 9.17485e+03\tAbsError: 5.47115e+17\n", + " Region: \"zone_1\"\tRelError: 2.18779e+03\tAbsError: 1.36667e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18779e+03\tAbsError: 3.20813e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.83162e-03\tAbsError: 1.33458e+00\n", + " Region: \"zone_3\"\tRelError: 6.98706e+03\tAbsError: 5.47115e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.79834e-01\tAbsError: 2.74671e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.70195e-01\tAbsError: 2.72444e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 6.98631e+03\tAbsError: 3.20820e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.83194e-03\tAbsError: 1.33471e+00\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:16\u001b[0m.\u001b[1;36m588\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.8699999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.25648e-03\tAbsError: 7.75715e+11\n", + " Region: \"zone_1\"\tRelError: 4.35799e-05\tAbsError: 3.84452e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.34694e-05\tAbsError: 2.84735e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10539e-07\tAbsError: 3.84167e-05\n", + " Region: \"zone_3\"\tRelError: 1.21290e-03\tAbsError: 7.75715e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28473e-06\tAbsError: 3.85060e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13479e-06\tAbsError: 3.90655e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21037e-03\tAbsError: 2.87358e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10581e-07\tAbsError: 3.84313e-05\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.39778e-03\tAbsError: 2.64036e+10\n", + " Region: \"zone_1\"\tRelError: 1.02275e-03\tAbsError: 1.13260e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02274e-03\tAbsError: 9.95943e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.25141e-09\tAbsError: 1.13160e-06\n", + " Region: \"zone_3\"\tRelError: 3.75036e-04\tAbsError: 2.64036e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.18289e-08\tAbsError: 1.31607e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.84989e-08\tAbsError: 1.32430e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74952e-04\tAbsError: 1.00632e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.25274e-09\tAbsError: 1.13210e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.22611e+00\tAbsError: 1.23916e+17\n", + " Region: \"zone_1\"\tRelError: 4.14026e-01\tAbsError: 3.41273e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.13134e-01\tAbsError: 3.19524e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.91880e-04\tAbsError: 3.09320e-01\n", + " Region: \"zone_3\"\tRelError: 2.81209e+00\tAbsError: 1.23916e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.35108e-01\tAbsError: 6.21305e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.82507e-01\tAbsError: 6.17855e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49358e+00\tAbsError: 3.19525e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.92062e-04\tAbsError: 3.09391e-01\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 4.79935e-04\tAbsError: 3.06765e+11\n", + " Region: \"zone_1\"\tRelError: 1.66486e-05\tAbsError: 7.60779e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66267e-05\tAbsError: 1.06336e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18595e-08\tAbsError: 7.59715e-06\n", + " Region: \"zone_3\"\tRelError: 4.63286e-04\tAbsError: 3.06765e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.16909e-07\tAbsError: 1.52260e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.59699e-07\tAbsError: 1.54505e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62288e-04\tAbsError: 1.07353e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18679e-08\tAbsError: 7.60017e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.17043e+01\tAbsError: 7.44954e+16\n", + " Region: \"zone_1\"\tRelError: 5.01901e+00\tAbsError: 1.18236e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.01570e+00\tAbsError: 2.58768e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.31341e-03\tAbsError: 1.15648e+00\n", + " Region: \"zone_3\"\tRelError: 1.66853e+01\tAbsError: 7.44954e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.76333e-02\tAbsError: 3.73658e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.69573e-02\tAbsError: 3.71296e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65274e+01\tAbsError: 2.58764e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.31557e-03\tAbsError: 1.15724e+00\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 3.99448e-04\tAbsError: 7.75693e+09\n", + " Region: \"zone_1\"\tRelError: 2.89402e-04\tAbsError: 2.71336e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.89401e-04\tAbsError: 2.89100e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78779e-10\tAbsError: 2.71047e-07\n", + " Region: \"zone_3\"\tRelError: 1.10046e-04\tAbsError: 7.75693e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.37898e-09\tAbsError: 3.86636e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.32737e-08\tAbsError: 3.89057e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10023e-04\tAbsError: 2.92143e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.79099e-10\tAbsError: 2.71163e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.71728e+01\tAbsError: 2.16638e+17\n", + " Region: \"zone_1\"\tRelError: 7.39288e+01\tAbsError: 4.29342e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.39288e+01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13253e-09\tAbsError: 3.93831e-07\n", + " Region: \"zone_3\"\tRelError: 3.24399e+00\tAbsError: 2.16638e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77741e-01\tAbsError: 1.09826e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.73975e-01\tAbsError: 1.06812e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69227e+00\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13300e-09\tAbsError: 3.94006e-07\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 4.47158e+00\tAbsError: 7.88995e+16\n", + " Region: \"zone_1\"\tRelError: 1.34999e+00\tAbsError: 6.46481e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34987e+00\tAbsError: 2.58848e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11783e-04\tAbsError: 3.87633e-02\n", + " Region: \"zone_3\"\tRelError: 3.12159e+00\tAbsError: 7.88995e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.13314e-01\tAbsError: 4.06991e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.32402e-01\tAbsError: 3.82004e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.37577e+00\tAbsError: 2.35961e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11783e-04\tAbsError: 3.87633e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.01824e-04\tAbsError: 5.91028e+10\n", + " Region: \"zone_1\"\tRelError: 3.53926e-06\tAbsError: 2.67115e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53158e-06\tAbsError: 2.19844e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.67947e-09\tAbsError: 2.66896e-06\n", + " Region: \"zone_3\"\tRelError: 9.82849e-05\tAbsError: 5.91028e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.78782e-08\tAbsError: 2.93440e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.77169e-08\tAbsError: 2.97588e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.80917e-05\tAbsError: 2.22202e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.68243e-09\tAbsError: 2.67005e-06\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 9.59511e-05\tAbsError: 1.84384e+09\n", + " Region: \"zone_1\"\tRelError: 6.90144e-05\tAbsError: 7.66547e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 6.90142e-05\tAbsError: 7.02485e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20044e-10\tAbsError: 7.65844e-08\n", + " Region: \"zone_3\"\tRelError: 2.69367e-05\tAbsError: 1.84384e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12306e-09\tAbsError: 9.19074e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.38040e-09\tAbsError: 9.24762e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.69310e-05\tAbsError: 7.09816e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20135e-10\tAbsError: 7.66170e-08\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.78002e+01\tAbsError: 8.01808e+15\n", + " Region: \"zone_1\"\tRelError: 2.60361e+00\tAbsError: 5.73745e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.60200e+00\tAbsError: 1.08334e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60640e-03\tAbsError: 5.62912e-01\n", + " Region: \"zone_3\"\tRelError: 5.51966e+01\tAbsError: 8.01808e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77531e-03\tAbsError: 4.02252e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.25608e-03\tAbsError: 3.99556e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.51829e+01\tAbsError: 1.08344e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60715e-03\tAbsError: 5.63172e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.60960e+01\tAbsError: 2.20431e+17\n", + " Region: \"zone_1\"\tRelError: 1.14074e+01\tAbsError: 3.26419e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14065e+01\tAbsError: 3.30999e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.46053e-04\tAbsError: 2.93319e-01\n", + " Region: \"zone_3\"\tRelError: 4.68862e+00\tAbsError: 2.20431e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.34214e-01\tAbsError: 1.10721e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.64986e-01\tAbsError: 1.09710e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 3.38857e+00\tAbsError: 3.31000e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.46053e-04\tAbsError: 2.93319e-01\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 3.38300e-05\tAbsError: 2.01418e+10\n", + " Region: \"zone_1\"\tRelError: 1.17571e-06\tAbsError: 5.87640e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17402e-06\tAbsError: 7.44968e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68869e-09\tAbsError: 5.86895e-07\n", + " Region: \"zone_3\"\tRelError: 3.26543e-05\tAbsError: 2.01418e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.37367e-08\tAbsError: 9.99956e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.02428e-08\tAbsError: 1.01422e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.25886e-05\tAbsError: 7.53080e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68939e-09\tAbsError: 5.87154e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:20\u001b[0m.\u001b[1;36m270\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 1.0\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.57821e+00\tAbsError: 2.26810e+16\n", + " Region: \"zone_1\"\tRelError: 1.10562e+00\tAbsError: 4.94572e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10550e+00\tAbsError: 1.06613e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11893e-04\tAbsError: 3.87959e-02\n", + " Region: \"zone_3\"\tRelError: 1.47260e+00\tAbsError: 2.26810e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46329e-01\tAbsError: 1.16259e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.92250e-02\tAbsError: 1.10551e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25693e+00\tAbsError: 1.06615e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12202e-04\tAbsError: 3.89055e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.57894e+00\tAbsError: 9.76840e+15\n", + " Region: \"zone_1\"\tRelError: 1.52646e-01\tAbsError: 1.16652e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49306e-01\tAbsError: 2.40793e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.33941e-03\tAbsError: 1.16628e+00\n", + " Region: \"zone_3\"\tRelError: 8.42629e+00\tAbsError: 9.76840e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.37382e-02\tAbsError: 4.38141e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.76399e-03\tAbsError: 5.38699e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.39645e+00\tAbsError: 2.43323e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34128e-03\tAbsError: 1.16694e+00\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.25243e+01\tAbsError: 1.27893e+17\n", + " Region: \"zone_1\"\tRelError: 2.94369e+00\tAbsError: 9.88622e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.94348e+00\tAbsError: 2.55597e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.11253e-04\tAbsError: 7.33026e-02\n", + " Region: \"zone_3\"\tRelError: 9.58059e+00\tAbsError: 1.27893e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.94923e-01\tAbsError: 6.46615e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.04853e-01\tAbsError: 6.32319e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 8.88060e+00\tAbsError: 2.58610e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.11292e-04\tAbsError: 7.33127e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:21\u001b[0m.\u001b[1;36m527\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:21\u001b[0m.\u001b[1;36m552\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.25 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:21\u001b[0m.\u001b[1;36m582\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.57775e-01\tAbsError: 3.80409e+15\n", + " Region: \"zone_1\"\tRelError: 1.14600e-01\tAbsError: 3.02181e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13729e-01\tAbsError: 2.30820e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.71391e-04\tAbsError: 3.01951e-01\n", + " Region: \"zone_3\"\tRelError: 4.31748e-02\tAbsError: 3.80409e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.65260e-02\tAbsError: 1.99925e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69056e-03\tAbsError: 1.80483e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.08532e-03\tAbsError: 2.62542e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.72885e-04\tAbsError: 3.02457e-01\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.07845e+03\tAbsError: 1.16809e+18\n", + " Region: \"zone_1\"\tRelError: 2.98806e+02\tAbsError: 4.09541e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.98806e+02\tAbsError: 4.09540e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.33797e-10\tAbsError: 1.85521e-07\n", + " Region: \"zone_3\"\tRelError: 7.79646e+02\tAbsError: 1.16809e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90701e-01\tAbsError: 5.74604e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.65642e-01\tAbsError: 5.93489e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 7.78290e+02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.34021e-10\tAbsError: 1.85602e-07\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.44817e+00\tAbsError: 6.71157e+15\n", + " Region: \"zone_1\"\tRelError: 2.31265e+00\tAbsError: 5.95526e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31248e+00\tAbsError: 3.11631e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69588e-04\tAbsError: 5.92410e-02\n", + " Region: \"zone_3\"\tRelError: 2.13552e+00\tAbsError: 6.71157e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19978e-02\tAbsError: 3.26746e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.65453e-03\tAbsError: 3.44411e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12070e+00\tAbsError: 3.13893e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69665e-04\tAbsError: 5.92680e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.16163e+00\tAbsError: 3.15373e+16\n", + " Region: \"zone_1\"\tRelError: 3.73877e-01\tAbsError: 1.56099e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.73462e-01\tAbsError: 1.22651e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14915e-04\tAbsError: 1.43834e-01\n", + " Region: \"zone_3\"\tRelError: 7.87757e-01\tAbsError: 3.15373e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24889e-01\tAbsError: 1.64203e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.31812e-02\tAbsError: 1.51170e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.09272e-01\tAbsError: 1.22654e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14915e-04\tAbsError: 1.43834e-01\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.23456e+04\tAbsError: 1.02352e+19\n", + " Region: \"zone_1\"\tRelError: 3.19775e+04\tAbsError: 9.26313e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.19775e+04\tAbsError: 9.26313e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43761e-11\tAbsError: 1.89251e-08\n", + " Region: \"zone_3\"\tRelError: 3.68111e+02\tAbsError: 1.02352e+19\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.73476e+02\tAbsError: 4.17766e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.83489e+01\tAbsError: 6.05758e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06286e+02\tAbsError: 9.26320e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43983e-11\tAbsError: 1.89331e-08\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.70653e+00\tAbsError: 9.42995e+14\n", + " Region: \"zone_1\"\tRelError: 1.87512e-01\tAbsError: 1.86005e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87459e-01\tAbsError: 5.75054e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.35097e-05\tAbsError: 1.85430e-02\n", + " Region: \"zone_3\"\tRelError: 2.51902e+00\tAbsError: 9.42995e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.42725e-03\tAbsError: 4.56434e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.58145e-03\tAbsError: 4.86561e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51196e+00\tAbsError: 5.79058e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.35168e-05\tAbsError: 1.85447e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.95227e+03\tAbsError: 4.47180e+17\n", + " Region: \"zone_1\"\tRelError: 5.95735e+02\tAbsError: 1.32695e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95731e+02\tAbsError: 3.07627e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.72641e-03\tAbsError: 1.29619e+00\n", + " Region: \"zone_3\"\tRelError: 2.35653e+03\tAbsError: 4.47180e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.30389e-01\tAbsError: 2.23868e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.07870e-01\tAbsError: 2.23312e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.35569e+03\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.72703e-03\tAbsError: 1.29643e+00\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.03801e-01\tAbsError: 3.36873e+14\n", + " Region: \"zone_1\"\tRelError: 4.76962e-01\tAbsError: 4.14745e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.76843e-01\tAbsError: 1.93448e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18688e-04\tAbsError: 4.14551e-02\n", + " Region: \"zone_3\"\tRelError: 2.26840e-01\tAbsError: 3.36873e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34636e-03\tAbsError: 1.66089e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.72901e-04\tAbsError: 1.70784e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24702e-01\tAbsError: 1.94711e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18736e-04\tAbsError: 4.14716e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.55186e-01\tAbsError: 3.91136e+15\n", + " Region: \"zone_1\"\tRelError: 4.65576e-02\tAbsError: 1.85778e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.60219e-02\tAbsError: 1.29525e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.35764e-04\tAbsError: 1.85648e-01\n", + " Region: \"zone_3\"\tRelError: 1.08629e-01\tAbsError: 3.91136e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84355e-02\tAbsError: 2.04486e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.19784e-03\tAbsError: 1.86651e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.74587e-02\tAbsError: 1.40963e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.36803e-04\tAbsError: 1.86011e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.80855e+03\tAbsError: 8.58917e+18\n", + " Region: \"zone_1\"\tRelError: 1.23637e+02\tAbsError: 3.96683e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23626e+02\tAbsError: 8.99016e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12575e-02\tAbsError: 3.87693e+00\n", + " Region: \"zone_3\"\tRelError: 2.68491e+03\tAbsError: 8.58917e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.59082e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.37524e+02\tAbsError: 4.99835e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13838e+03\tAbsError: 8.99018e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12599e-02\tAbsError: 3.87776e+00\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.69373e-01\tAbsError: 7.96597e+13\n", + " Region: \"zone_1\"\tRelError: 2.49118e-02\tAbsError: 8.30434e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.48878e-02\tAbsError: 5.27447e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39494e-05\tAbsError: 8.29907e-03\n", + " Region: \"zone_3\"\tRelError: 2.44461e-01\tAbsError: 7.96597e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.03029e-04\tAbsError: 3.88810e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.99138e-04\tAbsError: 4.07787e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.43835e-01\tAbsError: 5.31227e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39515e-05\tAbsError: 8.29948e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.44034e-01\tAbsError: 2.50982e+14\n", + " Region: \"zone_1\"\tRelError: 2.52669e-01\tAbsError: 3.80409e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52658e-01\tAbsError: 1.15800e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08740e-05\tAbsError: 3.79251e-03\n", + " Region: \"zone_3\"\tRelError: 1.91365e-01\tAbsError: 2.50982e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.75656e-04\tAbsError: 1.25054e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.84954e-04\tAbsError: 1.25928e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90594e-01\tAbsError: 1.16615e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08740e-05\tAbsError: 3.79381e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 8.37720e+02\tAbsError: 8.62713e+16\n", + " Region: \"zone_1\"\tRelError: 6.83172e+02\tAbsError: 5.09423e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.83170e+02\tAbsError: 2.58987e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39194e-03\tAbsError: 4.83524e-01\n", + " Region: \"zone_3\"\tRelError: 1.54548e+02\tAbsError: 8.62713e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27446e-01\tAbsError: 4.32970e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.20316e-02\tAbsError: 4.29743e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54357e+02\tAbsError: 2.58982e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39675e-03\tAbsError: 4.85195e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.71034e-01\tAbsError: 7.05338e+14\n", + " Region: \"zone_1\"\tRelError: 4.96795e-02\tAbsError: 7.24479e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.96587e-02\tAbsError: 3.50735e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08061e-05\tAbsError: 7.20972e-03\n", + " Region: \"zone_3\"\tRelError: 1.21355e-01\tAbsError: 7.05338e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47438e-03\tAbsError: 3.47117e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.53212e-03\tAbsError: 3.58221e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18327e-01\tAbsError: 3.53840e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08197e-05\tAbsError: 7.21462e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.69961e+03\tAbsError: 2.29427e+18\n", + " Region: \"zone_1\"\tRelError: 2.96536e+01\tAbsError: 3.10404e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96449e+01\tAbsError: 8.69447e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.66233e-03\tAbsError: 3.01709e+00\n", + " Region: \"zone_3\"\tRelError: 1.66995e+03\tAbsError: 2.29427e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.01362e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.63130e+03\tAbsError: 1.28065e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96449e+01\tAbsError: 8.69449e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.66403e-03\tAbsError: 3.01762e+00\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.94834e-01\tAbsError: 4.50761e+13\n", + " Region: \"zone_1\"\tRelError: 1.61165e-02\tAbsError: 1.06831e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61134e-02\tAbsError: 2.81432e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.07411e-06\tAbsError: 1.06550e-03\n", + " Region: \"zone_3\"\tRelError: 1.78717e-01\tAbsError: 4.50761e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.86613e-04\tAbsError: 2.19704e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.74556e-04\tAbsError: 2.31057e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78353e-01\tAbsError: 2.83681e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.07499e-06\tAbsError: 1.06575e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.84963e-02\tAbsError: 2.56196e+13\n", + " Region: \"zone_1\"\tRelError: 4.00746e-02\tAbsError: 1.84773e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.00693e-02\tAbsError: 1.18319e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.30122e-06\tAbsError: 1.84655e-03\n", + " Region: \"zone_3\"\tRelError: 2.84217e-02\tAbsError: 2.56196e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.10236e-05\tAbsError: 1.27710e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.94827e-05\tAbsError: 1.28486e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.82859e-02\tAbsError: 1.19127e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.30191e-06\tAbsError: 1.84686e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.13777e+02\tAbsError: 9.41150e+15\n", + " Region: \"zone_1\"\tRelError: 7.34943e+01\tAbsError: 1.74710e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 7.34894e+01\tAbsError: 9.16455e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.95952e-03\tAbsError: 1.73794e+00\n", + " Region: \"zone_3\"\tRelError: 5.40283e+02\tAbsError: 9.41150e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.82819e-02\tAbsError: 3.95531e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.70902e-02\tAbsError: 5.45619e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.40223e+02\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.96820e-03\tAbsError: 1.74101e+00\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.61029e-02\tAbsError: 4.08676e+13\n", + " Region: \"zone_1\"\tRelError: 4.74709e-03\tAbsError: 4.99792e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.73267e-03\tAbsError: 2.21701e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44170e-05\tAbsError: 4.99571e-03\n", + " Region: \"zone_3\"\tRelError: 1.13558e-02\tAbsError: 4.08676e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.88341e-05\tAbsError: 2.00869e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.22806e-05\tAbsError: 2.07807e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11703e-02\tAbsError: 2.23458e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44170e-05\tAbsError: 4.99571e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.25640e+03\tAbsError: 2.59407e+18\n", + " Region: \"zone_1\"\tRelError: 1.34547e+02\tAbsError: 1.10069e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34544e+02\tAbsError: 8.37231e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.92836e-03\tAbsError: 1.01697e+00\n", + " Region: \"zone_3\"\tRelError: 1.12185e+03\tAbsError: 2.59407e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01259e+03\tAbsError: 1.19798e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.28405e+01\tAbsError: 1.39609e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 6.64141e+01\tAbsError: 8.37233e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.92836e-03\tAbsError: 1.01697e+00\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 3.12791e-02\tAbsError: 1.26703e+13\n", + " Region: \"zone_1\"\tRelError: 1.80768e-02\tAbsError: 2.75667e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80761e-02\tAbsError: 5.01993e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.90781e-07\tAbsError: 2.75165e-04\n", + " Region: \"zone_3\"\tRelError: 1.32022e-02\tAbsError: 1.26703e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.15745e-05\tAbsError: 6.31722e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.07221e-05\tAbsError: 6.35307e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31591e-02\tAbsError: 5.05478e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.90922e-07\tAbsError: 2.75214e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.14777e-02\tAbsError: 6.22952e+12\n", + " Region: \"zone_1\"\tRelError: 2.69816e-03\tAbsError: 4.97182e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.69673e-03\tAbsError: 3.70717e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42953e-06\tAbsError: 4.96811e-04\n", + " Region: \"zone_3\"\tRelError: 2.87796e-02\tAbsError: 6.22952e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.54213e-05\tAbsError: 3.03376e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.37896e-05\tAbsError: 3.19576e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.87289e-02\tAbsError: 3.73663e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43009e-06\tAbsError: 4.97011e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.16806e+01\tAbsError: 1.22386e+16\n", + " Region: \"zone_1\"\tRelError: 5.81165e+00\tAbsError: 2.01324e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.80588e+00\tAbsError: 6.99078e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.77633e-03\tAbsError: 2.01254e+00\n", + " Region: \"zone_3\"\tRelError: 5.86896e+00\tAbsError: 1.22386e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.88114e-02\tAbsError: 5.53671e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06848e-02\tAbsError: 6.70184e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.80368e+00\tAbsError: 7.04147e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.78367e-03\tAbsError: 2.01512e+00\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.36737e-02\tAbsError: 3.46945e+13\n", + " Region: \"zone_1\"\tRelError: 4.04619e-03\tAbsError: 4.96121e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.04476e-03\tAbsError: 1.62718e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42705e-06\tAbsError: 4.94493e-04\n", + " Region: \"zone_3\"\tRelError: 9.62755e-03\tAbsError: 3.46945e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.50334e-05\tAbsError: 1.70836e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.66532e-05\tAbsError: 1.76109e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.46443e-03\tAbsError: 1.64203e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42741e-06\tAbsError: 4.94624e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.68437e+02\tAbsError: 3.76826e+17\n", + " Region: \"zone_1\"\tRelError: 5.24367e+00\tAbsError: 1.64859e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.23916e+00\tAbsError: 8.01893e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.51238e-03\tAbsError: 1.56840e+00\n", + " Region: \"zone_3\"\tRelError: 8.63193e+02\tAbsError: 3.76826e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12292e+01\tAbsError: 1.43202e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.11642e+02\tAbsError: 2.33624e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.03176e+01\tAbsError: 8.01894e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.51534e-03\tAbsError: 1.56957e+00\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 5.58596e-03\tAbsError: 1.81500e+12\n", + " Region: \"zone_1\"\tRelError: 3.23185e-03\tAbsError: 1.08128e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.23154e-03\tAbsError: 7.20422e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.10536e-07\tAbsError: 1.08056e-04\n", + " Region: \"zone_3\"\tRelError: 2.35411e-03\tAbsError: 1.81500e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.98887e-06\tAbsError: 9.05203e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.47215e-06\tAbsError: 9.09800e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34534e-03\tAbsError: 7.27320e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.10562e-07\tAbsError: 1.08065e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.35240e-02\tAbsError: 2.71383e+12\n", + " Region: \"zone_1\"\tRelError: 1.15361e-03\tAbsError: 9.01137e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15335e-03\tAbsError: 1.50035e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58860e-07\tAbsError: 8.99637e-05\n", + " Region: \"zone_3\"\tRelError: 1.23704e-02\tAbsError: 2.71383e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12817e-05\tAbsError: 1.32174e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.05297e-05\tAbsError: 1.39209e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23483e-02\tAbsError: 1.51287e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58959e-07\tAbsError: 9.00000e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.44367e+01\tAbsError: 1.02259e+16\n", + " Region: \"zone_1\"\tRelError: 4.22055e+01\tAbsError: 1.45859e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22051e+01\tAbsError: 5.71640e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.16833e-04\tAbsError: 1.45287e-01\n", + " Region: \"zone_3\"\tRelError: 4.22312e+01\tAbsError: 1.02259e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97020e-02\tAbsError: 4.95775e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.96648e-03\tAbsError: 5.26817e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22051e+01\tAbsError: 5.76213e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.17002e-04\tAbsError: 1.45346e-01\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.90554e-03\tAbsError: 3.84334e+12\n", + " Region: \"zone_1\"\tRelError: 5.67157e-04\tAbsError: 2.85941e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.66334e-04\tAbsError: 1.72086e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.22338e-07\tAbsError: 2.85769e-04\n", + " Region: \"zone_3\"\tRelError: 1.33838e-03\tAbsError: 3.84334e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.13597e-06\tAbsError: 1.89425e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.24167e-06\tAbsError: 1.94909e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32018e-03\tAbsError: 1.73581e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.22651e-07\tAbsError: 2.85878e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.49421e+02\tAbsError: 3.45044e+16\n", + " Region: \"zone_1\"\tRelError: 2.47424e+00\tAbsError: 2.92395e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.47362e+00\tAbsError: 7.62823e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.21647e-04\tAbsError: 2.16113e-01\n", + " Region: \"zone_3\"\tRelError: 5.46946e+02\tAbsError: 3.45044e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.98453e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.35971e+02\tAbsError: 1.46591e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97442e+00\tAbsError: 7.62825e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.21666e-04\tAbsError: 2.16115e-01\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.04292e-03\tAbsError: 7.05397e+11\n", + " Region: \"zone_1\"\tRelError: 1.18204e-03\tAbsError: 2.04270e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18198e-03\tAbsError: 2.66778e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.85310e-08\tAbsError: 2.04003e-05\n", + " Region: \"zone_3\"\tRelError: 8.60879e-04\tAbsError: 7.05397e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13172e-06\tAbsError: 3.51344e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.38793e-06\tAbsError: 3.54052e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.58301e-04\tAbsError: 2.69418e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.85529e-08\tAbsError: 2.04083e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.66323e-03\tAbsError: 4.84759e+11\n", + " Region: \"zone_1\"\tRelError: 2.28613e-04\tAbsError: 3.39177e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.28515e-04\tAbsError: 2.84083e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.75123e-08\tAbsError: 3.38893e-05\n", + " Region: \"zone_3\"\tRelError: 2.43462e-03\tAbsError: 4.84759e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.99043e-06\tAbsError: 2.36019e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.86586e-06\tAbsError: 2.48740e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.43067e-03\tAbsError: 2.86106e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.75523e-08\tAbsError: 3.39041e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.49604e+00\tAbsError: 9.70392e+14\n", + " Region: \"zone_1\"\tRelError: 3.74605e+00\tAbsError: 7.97463e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74582e+00\tAbsError: 4.64021e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28718e-04\tAbsError: 7.96999e-02\n", + " Region: \"zone_3\"\tRelError: 3.74999e+00\tAbsError: 9.70392e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.58316e-03\tAbsError: 4.83793e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.36045e-03\tAbsError: 4.86599e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74582e+00\tAbsError: 4.67428e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28813e-04\tAbsError: 7.97327e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 9.55346e-04\tAbsError: 2.05462e+12\n", + " Region: \"zone_1\"\tRelError: 2.84125e-04\tAbsError: 4.49675e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83996e-04\tAbsError: 8.40596e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29156e-07\tAbsError: 4.48834e-05\n", + " Region: \"zone_3\"\tRelError: 6.71221e-04\tAbsError: 2.05462e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.03717e-06\tAbsError: 1.01247e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.55660e-06\tAbsError: 1.04215e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.61498e-04\tAbsError: 8.48402e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29206e-07\tAbsError: 4.49013e-05\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 4.10017e-04\tAbsError: 1.25482e+11\n", + " Region: \"zone_1\"\tRelError: 2.37057e-04\tAbsError: 6.87465e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.37038e-04\tAbsError: 5.30541e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.97090e-08\tAbsError: 6.86934e-06\n", + " Region: \"zone_3\"\tRelError: 1.72960e-04\tAbsError: 1.25482e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.39658e-07\tAbsError: 6.25033e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.14206e-07\tAbsError: 6.29787e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72386e-04\tAbsError: 5.35676e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.97163e-08\tAbsError: 6.87208e-06\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.36093e+03\tAbsError: 1.73063e+16\n", + " Region: \"zone_1\"\tRelError: 2.50099e+00\tAbsError: 1.04032e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.50090e+00\tAbsError: 7.19237e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.26103e-05\tAbsError: 3.21082e-02\n", + " Region: \"zone_3\"\tRelError: 2.35843e+03\tAbsError: 1.73063e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.90026e+03\tAbsError: 7.68195e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.57215e+02\tAbsError: 9.62438e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.53038e-01\tAbsError: 7.19239e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.27224e-05\tAbsError: 3.21462e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 9.36018e-04\tAbsError: 1.74566e+11\n", + " Region: \"zone_1\"\tRelError: 8.04965e-05\tAbsError: 7.09811e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.04761e-05\tAbsError: 1.02447e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03939e-08\tAbsError: 7.08786e-06\n", + " Region: \"zone_3\"\tRelError: 8.55521e-04\tAbsError: 1.74566e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.24390e-07\tAbsError: 8.50012e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.76525e-07\tAbsError: 8.95646e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.54100e-04\tAbsError: 1.03181e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.04026e-08\tAbsError: 7.09095e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 9.26745e+00\tAbsError: 5.14481e+14\n", + " Region: \"zone_1\"\tRelError: 8.59152e+00\tAbsError: 9.35409e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.59150e+00\tAbsError: 2.29233e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.68516e-05\tAbsError: 9.33117e-03\n", + " Region: \"zone_3\"\tRelError: 6.75929e-01\tAbsError: 5.14481e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.99602e-04\tAbsError: 2.56366e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.52414e-04\tAbsError: 2.58114e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.74650e-01\tAbsError: 2.31041e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.68516e-05\tAbsError: 9.33117e-03\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.31093e-04\tAbsError: 4.20042e+10\n", + " Region: \"zone_1\"\tRelError: 7.58426e-05\tAbsError: 1.44285e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.58384e-05\tAbsError: 1.70924e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.13482e-09\tAbsError: 1.44114e-06\n", + " Region: \"zone_3\"\tRelError: 5.52503e-05\tAbsError: 4.20042e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.55628e-08\tAbsError: 2.09238e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.07224e-08\tAbsError: 2.10804e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.50899e-05\tAbsError: 1.72611e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.13649e-09\tAbsError: 1.44176e-06\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.69143e-04\tAbsError: 3.20010e+11\n", + " Region: \"zone_1\"\tRelError: 5.04529e-05\tAbsError: 1.92486e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.03976e-05\tAbsError: 1.37695e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.53502e-08\tAbsError: 1.92349e-05\n", + " Region: \"zone_3\"\tRelError: 1.18690e-04\tAbsError: 3.20010e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.67288e-07\tAbsError: 1.57764e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.98946e-07\tAbsError: 1.62246e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17168e-04\tAbsError: 1.38952e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.53717e-08\tAbsError: 1.92429e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.24927e+02\tAbsError: 9.45906e+15\n", + " Region: \"zone_1\"\tRelError: 8.54269e-01\tAbsError: 1.97970e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.53892e-01\tAbsError: 6.70103e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77125e-04\tAbsError: 1.30959e-01\n", + " Region: \"zone_3\"\tRelError: 3.24073e+02\tAbsError: 9.45906e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.98994e+01\tAbsError: 4.98573e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.43969e+02\tAbsError: 4.47333e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04289e-01\tAbsError: 6.70105e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77125e-04\tAbsError: 1.30959e-01\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.06215e-04\tAbsError: 3.63594e+10\n", + " Region: \"zone_1\"\tRelError: 1.77671e-05\tAbsError: 2.32923e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77604e-05\tAbsError: 2.21535e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.69552e-09\tAbsError: 2.32701e-06\n", + " Region: \"zone_3\"\tRelError: 1.88448e-04\tAbsError: 3.63594e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49672e-07\tAbsError: 1.77014e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.40316e-07\tAbsError: 1.86580e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88151e-04\tAbsError: 2.23089e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.69830e-09\tAbsError: 2.32802e-06\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 2.85509e-05\tAbsError: 8.53392e+09\n", + " Region: \"zone_1\"\tRelError: 1.65076e-05\tAbsError: 4.38296e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65063e-05\tAbsError: 3.70085e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.25646e-09\tAbsError: 4.37926e-07\n", + " Region: \"zone_3\"\tRelError: 1.20433e-05\tAbsError: 8.53392e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50308e-08\tAbsError: 4.25112e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.13442e-08\tAbsError: 4.28280e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20057e-05\tAbsError: 3.73687e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.25697e-09\tAbsError: 4.38116e-07\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 6.55972e-05\tAbsError: 1.30140e+11\n", + " Region: \"zone_1\"\tRelError: 1.95538e-05\tAbsError: 3.68464e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95433e-05\tAbsError: 5.53800e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05870e-08\tAbsError: 3.67910e-06\n", + " Region: \"zone_3\"\tRelError: 4.60434e-05\tAbsError: 1.30140e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.17662e-07\tAbsError: 6.41496e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.88393e-07\tAbsError: 6.59903e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54267e-05\tAbsError: 5.58934e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05914e-08\tAbsError: 3.68073e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:33\u001b[0m.\u001b[1;36m178\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.9799999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.48030e+01\tAbsError: 7.19505e+13\n", + " Region: \"zone_1\"\tRelError: 1.40655e+01\tAbsError: 3.86191e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40655e+01\tAbsError: 2.84880e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11050e-05\tAbsError: 3.85906e-03\n", + " Region: \"zone_3\"\tRelError: 7.37529e-01\tAbsError: 7.19505e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38672e-04\tAbsError: 3.58470e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.21484e-04\tAbsError: 3.61036e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.37257e-01\tAbsError: 2.87067e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11068e-05\tAbsError: 3.85947e-03\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 6.49197e-05\tAbsError: 1.16553e+10\n", + " Region: \"zone_1\"\tRelError: 5.60093e-06\tAbsError: 5.33242e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 5.59940e-06\tAbsError: 7.08545e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53226e-09\tAbsError: 5.32534e-07\n", + " Region: \"zone_3\"\tRelError: 5.93188e-05\tAbsError: 1.16553e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.82921e-08\tAbsError: 5.67470e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.51325e-08\tAbsError: 5.98062e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.92238e-05\tAbsError: 7.13541e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53290e-09\tAbsError: 5.32764e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:33\u001b[0m.\u001b[1;36m686\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:33\u001b[0m.\u001b[1;36m686\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.9399999999999998\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.41228e+03\tAbsError: 1.12269e+15\n", + " Region: \"zone_1\"\tRelError: 9.92429e-02\tAbsError: 1.72929e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.89218e-02\tAbsError: 6.14042e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.21056e-04\tAbsError: 1.11525e-01\n", + " Region: \"zone_3\"\tRelError: 4.41219e+03\tAbsError: 1.12269e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27001e+03\tAbsError: 3.32160e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.14155e+03\tAbsError: 7.90530e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.23042e-01\tAbsError: 6.14044e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.21056e-04\tAbsError: 1.11525e-01\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.47896e+00\tAbsError: 2.94682e+13\n", + " Region: \"zone_1\"\tRelError: 1.24509e+00\tAbsError: 6.95816e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24509e+00\tAbsError: 1.07735e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99937e-06\tAbsError: 6.94739e-04\n", + " Region: \"zone_3\"\tRelError: 2.33869e-01\tAbsError: 2.94682e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.81392e-05\tAbsError: 1.46808e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.76977e-05\tAbsError: 1.47873e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.33792e-01\tAbsError: 1.08579e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99953e-06\tAbsError: 6.95001e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.14292e+01\tAbsError: 9.65069e+17\n", + " Region: \"zone_1\"\tRelError: 4.44867e+01\tAbsError: 4.29349e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44867e+01\tAbsError: 4.29336e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.76237e-09\tAbsError: 1.30750e-06\n", + " Region: \"zone_3\"\tRelError: 2.69425e+01\tAbsError: 9.65069e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.31474e-01\tAbsError: 4.69501e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.11759e-01\tAbsError: 4.95568e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54992e+01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.76396e-09\tAbsError: 1.30807e-06\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 8.68319e+04\tAbsError: 1.01395e+15\n", + " Region: \"zone_1\"\tRelError: 8.30065e-02\tAbsError: 9.69279e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.28854e-02\tAbsError: 5.49210e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21129e-04\tAbsError: 4.20068e-02\n", + " Region: \"zone_3\"\tRelError: 8.68319e+04\tAbsError: 1.01395e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.68105e+04\tAbsError: 4.66680e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.10870e+01\tAbsError: 5.47269e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57619e-01\tAbsError: 5.49213e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21232e-04\tAbsError: 4.20415e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.23523e+02\tAbsError: 6.14633e+17\n", + " Region: \"zone_1\"\tRelError: 4.09043e+01\tAbsError: 4.19630e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.09043e+01\tAbsError: 4.19628e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.63544e-10\tAbsError: 1.61104e-07\n", + " Region: \"zone_3\"\tRelError: 8.26191e+01\tAbsError: 6.14633e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.43690e-01\tAbsError: 2.98656e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.30409e-01\tAbsError: 3.15977e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 8.11450e+01\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.63736e-10\tAbsError: 1.61173e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:35\u001b[0m.\u001b[1;36m554\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:35\u001b[0m.\u001b[1;36m583\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.3 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:35\u001b[0m.\u001b[1;36m632\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.23148e-01\tAbsError: 5.24321e+12\n", + " Region: \"zone_1\"\tRelError: 2.61296e-01\tAbsError: 2.47766e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.61295e-01\tAbsError: 1.83418e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.11380e-07\tAbsError: 2.47583e-04\n", + " Region: \"zone_3\"\tRelError: 6.18518e-02\tAbsError: 5.24321e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94642e-06\tAbsError: 2.61290e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.40186e-06\tAbsError: 2.63031e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.18338e-02\tAbsError: 1.85316e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.11644e-07\tAbsError: 2.47677e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.09355e+04\tAbsError: 5.43141e+17\n", + " Region: \"zone_1\"\tRelError: 2.11850e+03\tAbsError: 9.99073e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.11850e+03\tAbsError: 3.30996e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.78001e-03\tAbsError: 9.65974e-01\n", + " Region: \"zone_3\"\tRelError: 1.88170e+04\tAbsError: 5.43141e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.07099e-01\tAbsError: 2.72398e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.80829e-01\tAbsError: 2.70743e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88160e+04\tAbsError: 3.31000e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.78032e-03\tAbsError: 9.66102e-01\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 4.87779e+02\tAbsError: 5.45900e+14\n", + " Region: \"zone_1\"\tRelError: 6.21634e-02\tAbsError: 1.04361e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.19989e-02\tAbsError: 4.73177e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64467e-04\tAbsError: 5.70437e-02\n", + " Region: \"zone_3\"\tRelError: 4.87717e+02\tAbsError: 5.45900e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.98596e+02\tAbsError: 1.44358e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.89059e+02\tAbsError: 4.01542e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.20921e-02\tAbsError: 4.73180e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64723e-04\tAbsError: 5.71329e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.45887e+04\tAbsError: 1.43878e+19\n", + " Region: \"zone_1\"\tRelError: 1.02041e+03\tAbsError: 9.39934e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02041e+03\tAbsError: 9.39933e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.82293e-10\tAbsError: 9.83916e-08\n", + " Region: \"zone_3\"\tRelError: 7.35683e+04\tAbsError: 1.43878e+19\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.36528e+02\tAbsError: 5.88123e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.06847e+02\tAbsError: 8.50661e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 7.30249e+04\tAbsError: 9.39941e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.82408e-10\tAbsError: 9.84332e-08\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 5.28442e+02\tAbsError: 4.50811e+17\n", + " Region: \"zone_1\"\tRelError: 2.63689e+02\tAbsError: 5.40877e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.63688e+02\tAbsError: 3.19522e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46649e-03\tAbsError: 5.08925e-01\n", + " Region: \"zone_3\"\tRelError: 2.64752e+02\tAbsError: 4.50811e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.40504e-01\tAbsError: 2.25134e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.22390e-01\tAbsError: 2.25677e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.63688e+02\tAbsError: 3.19525e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46805e-03\tAbsError: 5.09446e-01\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 9.77270e-02\tAbsError: 1.82347e+12\n", + " Region: \"zone_1\"\tRelError: 7.65024e-02\tAbsError: 5.28468e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.65022e-02\tAbsError: 6.24160e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51664e-07\tAbsError: 5.27844e-05\n", + " Region: \"zone_3\"\tRelError: 2.12246e-02\tAbsError: 1.82347e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11287e-06\tAbsError: 9.08701e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.75258e-06\tAbsError: 9.14773e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12196e-02\tAbsError: 6.30788e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51721e-07\tAbsError: 5.28055e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.70966e+03\tAbsError: 4.51277e+14\n", + " Region: \"zone_1\"\tRelError: 4.80054e-02\tAbsError: 1.15275e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.77835e-02\tAbsError: 3.83022e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.21879e-04\tAbsError: 7.69733e-02\n", + " Region: \"zone_3\"\tRelError: 1.70961e+03\tAbsError: 4.51277e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.70858e+03\tAbsError: 4.59297e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.82155e-01\tAbsError: 4.05348e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.78561e-02\tAbsError: 3.83026e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.22113e-04\tAbsError: 7.70552e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.05255e+03\tAbsError: 1.21992e+17\n", + " Region: \"zone_1\"\tRelError: 1.96013e+02\tAbsError: 3.72504e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96012e+02\tAbsError: 2.58637e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.98548e-04\tAbsError: 3.46641e-01\n", + " Region: \"zone_3\"\tRelError: 8.56535e+02\tAbsError: 1.21992e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95869e-01\tAbsError: 6.12799e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13879e-01\tAbsError: 6.07120e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 8.56224e+02\tAbsError: 2.58493e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00238e-03\tAbsError: 3.47971e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.68180e+03\tAbsError: 1.18343e+19\n", + " Region: \"zone_1\"\tRelError: 5.17715e+01\tAbsError: 5.45577e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.17559e+01\tAbsError: 9.13709e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56182e-02\tAbsError: 5.36440e+00\n", + " Region: \"zone_3\"\tRelError: 1.63003e+03\tAbsError: 1.18343e+19\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 4.94846e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.13752e+02\tAbsError: 6.88587e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20726e+03\tAbsError: 9.13711e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56198e-02\tAbsError: 5.36502e+00\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.05494e-02\tAbsError: 3.74583e+11\n", + " Region: \"zone_1\"\tRelError: 1.55447e-02\tAbsError: 1.67716e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55447e-02\tAbsError: 1.38057e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.81497e-08\tAbsError: 1.67577e-05\n", + " Region: \"zone_3\"\tRelError: 5.00469e-03\tAbsError: 3.74583e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.90614e-07\tAbsError: 1.86695e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.85333e-07\tAbsError: 1.87888e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.00347e-03\tAbsError: 1.39492e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.81681e-08\tAbsError: 1.67646e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 5.56837e+00\tAbsError: 1.07325e+17\n", + " Region: \"zone_1\"\tRelError: 2.13979e+00\tAbsError: 1.76840e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13935e+00\tAbsError: 2.58872e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.34120e-04\tAbsError: 1.50953e-01\n", + " Region: \"zone_3\"\tRelError: 3.42858e+00\tAbsError: 1.07325e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.43649e-01\tAbsError: 5.37359e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.46620e-01\tAbsError: 5.35895e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.03788e+00\tAbsError: 2.57709e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.34307e-04\tAbsError: 1.51010e-01\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.12531e+00\tAbsError: 4.21060e+14\n", + " Region: \"zone_1\"\tRelError: 3.42960e-02\tAbsError: 1.26190e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40121e-02\tAbsError: 2.76566e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.83947e-04\tAbsError: 9.85338e-02\n", + " Region: \"zone_3\"\tRelError: 1.09102e+00\tAbsError: 4.21060e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99815e-01\tAbsError: 2.67407e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.14073e-02\tAbsError: 3.94320e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.95111e-02\tAbsError: 2.76571e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.84251e-04\tAbsError: 9.86404e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.10831e+02\tAbsError: 1.05705e+16\n", + " Region: \"zone_1\"\tRelError: 1.67975e+02\tAbsError: 1.53352e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67975e+02\tAbsError: 1.22647e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.06404e-04\tAbsError: 1.41087e-01\n", + " Region: \"zone_3\"\tRelError: 4.42856e+02\tAbsError: 1.05705e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52745e-02\tAbsError: 5.30758e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.01145e-02\tAbsError: 5.26289e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.42820e+02\tAbsError: 1.22654e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.06484e-04\tAbsError: 1.41119e-01\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 6.14058e-03\tAbsError: 1.17501e+11\n", + " Region: \"zone_1\"\tRelError: 4.56971e-03\tAbsError: 3.83354e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.56970e-03\tAbsError: 4.25999e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10026e-08\tAbsError: 3.82928e-06\n", + " Region: \"zone_3\"\tRelError: 1.57087e-03\tAbsError: 1.17501e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.29368e-07\tAbsError: 5.85629e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.92613e-07\tAbsError: 5.89376e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57054e-03\tAbsError: 4.30497e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10071e-08\tAbsError: 3.83095e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 6.77537e+02\tAbsError: 3.47065e+18\n", + " Region: \"zone_1\"\tRelError: 5.27552e+01\tAbsError: 5.42650e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.27399e+01\tAbsError: 8.85379e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52685e-02\tAbsError: 5.33797e+00\n", + " Region: \"zone_3\"\tRelError: 6.24782e+02\tAbsError: 3.47065e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.32470e+02\tAbsError: 1.73897e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.39557e+02\tAbsError: 1.73167e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 5.27399e+01\tAbsError: 8.85383e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52728e-02\tAbsError: 5.33955e+00\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.12460e+00\tAbsError: 1.21483e+16\n", + " Region: \"zone_1\"\tRelError: 9.82739e-01\tAbsError: 2.46167e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.82060e-01\tAbsError: 1.06610e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.78912e-04\tAbsError: 2.35506e-01\n", + " Region: \"zone_3\"\tRelError: 1.14186e+00\tAbsError: 1.21483e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.90955e-02\tAbsError: 6.10228e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.44176e-02\tAbsError: 6.04607e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08766e+00\tAbsError: 1.06615e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.79147e-04\tAbsError: 2.35580e-01\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.14209e+04\tAbsError: 3.18688e+14\n", + " Region: \"zone_1\"\tRelError: 2.59223e-02\tAbsError: 1.40661e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.55799e-02\tAbsError: 2.17875e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.42444e-04\tAbsError: 1.18874e-01\n", + " Region: \"zone_3\"\tRelError: 1.14208e+04\tAbsError: 3.18688e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.14208e+04\tAbsError: 1.57888e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.09664e-03\tAbsError: 3.02900e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.93581e-02\tAbsError: 2.17884e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.42953e-04\tAbsError: 1.19052e-01\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.39778e-03\tAbsError: 2.64036e+10\n", + " Region: \"zone_1\"\tRelError: 1.02275e-03\tAbsError: 1.13260e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02274e-03\tAbsError: 9.95943e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.25141e-09\tAbsError: 1.13160e-06\n", + " Region: \"zone_3\"\tRelError: 3.75036e-04\tAbsError: 2.64036e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.18289e-08\tAbsError: 1.31607e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.84989e-08\tAbsError: 1.32430e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74952e-04\tAbsError: 1.00632e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.25274e-09\tAbsError: 1.13210e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.98888e+00\tAbsError: 5.15087e+14\n", + " Region: \"zone_1\"\tRelError: 1.58063e+00\tAbsError: 1.38877e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58023e+00\tAbsError: 9.18863e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.99000e-04\tAbsError: 1.38868e-01\n", + " Region: \"zone_3\"\tRelError: 4.08243e-01\tAbsError: 5.15087e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.30563e-04\tAbsError: 2.54061e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.93154e-04\tAbsError: 2.61026e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.06120e-01\tAbsError: 9.32589e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.99000e-04\tAbsError: 1.38868e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.91912e+02\tAbsError: 3.81871e+18\n", + " Region: \"zone_1\"\tRelError: 5.16724e+01\tAbsError: 2.23553e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.16662e+01\tAbsError: 8.54616e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.18799e-03\tAbsError: 2.15007e+00\n", + " Region: \"zone_3\"\tRelError: 1.40239e+02\tAbsError: 3.81871e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.90791e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.35803e+01\tAbsError: 1.91081e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 9.76528e+01\tAbsError: 8.54619e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.18799e-03\tAbsError: 2.15007e+00\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.04411e+00\tAbsError: 2.50280e+14\n", + " Region: \"zone_1\"\tRelError: 5.02432e-03\tAbsError: 2.11146e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.41747e-03\tAbsError: 3.60591e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.06848e-04\tAbsError: 2.10785e-01\n", + " Region: \"zone_3\"\tRelError: 1.03909e+00\tAbsError: 2.50280e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99718e-01\tAbsError: 2.56770e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.04445e-02\tAbsError: 2.24603e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83179e-02\tAbsError: 3.68304e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.07465e-04\tAbsError: 2.11002e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.73047e-01\tAbsError: 1.36922e+15\n", + " Region: \"zone_1\"\tRelError: 1.96522e-02\tAbsError: 1.01954e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93590e-02\tAbsError: 1.74848e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.93173e-04\tAbsError: 1.01937e-01\n", + " Region: \"zone_3\"\tRelError: 1.53395e-01\tAbsError: 1.36922e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.62916e-03\tAbsError: 7.15283e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.23255e-04\tAbsError: 6.53940e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49849e-01\tAbsError: 1.79107e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.93173e-04\tAbsError: 1.01937e-01\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 3.99447e-04\tAbsError: 7.75693e+09\n", + " Region: \"zone_1\"\tRelError: 2.89402e-04\tAbsError: 2.71336e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.89401e-04\tAbsError: 2.89100e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78779e-10\tAbsError: 2.71047e-07\n", + " Region: \"zone_3\"\tRelError: 1.10046e-04\tAbsError: 7.75693e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.37898e-09\tAbsError: 3.86636e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.32737e-08\tAbsError: 3.89057e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10023e-04\tAbsError: 2.92143e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.79099e-10\tAbsError: 2.71163e-07\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.05350e+01\tAbsError: 7.00392e+14\n", + " Region: \"zone_1\"\tRelError: 1.88154e+01\tAbsError: 4.80835e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88154e+01\tAbsError: 3.93683e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36946e-05\tAbsError: 4.76898e-03\n", + " Region: \"zone_3\"\tRelError: 1.71959e+00\tAbsError: 7.00392e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10974e-03\tAbsError: 3.48796e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.68307e-04\tAbsError: 3.51596e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.71799e+00\tAbsError: 3.96999e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37000e-05\tAbsError: 4.77083e-03\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 2.62132e-01\tAbsError: 1.20370e+14\n", + " Region: \"zone_1\"\tRelError: 2.50228e-02\tAbsError: 1.76959e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.50181e-02\tAbsError: 1.41458e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.67653e-06\tAbsError: 1.62813e-03\n", + " Region: \"zone_3\"\tRelError: 2.37109e-01\tAbsError: 1.20370e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50710e-02\tAbsError: 3.54181e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.53409e-02\tAbsError: 8.49519e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06692e-01\tAbsError: 1.43144e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.67852e-06\tAbsError: 1.62885e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.47134e+03\tAbsError: 5.06320e+17\n", + " Region: \"zone_1\"\tRelError: 7.78525e+01\tAbsError: 8.09559e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.78504e+01\tAbsError: 8.20995e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.09575e-03\tAbsError: 7.27460e-01\n", + " Region: \"zone_3\"\tRelError: 4.39349e+03\tAbsError: 5.06320e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.22912e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.34666e+03\tAbsError: 2.83408e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 3.78239e+01\tAbsError: 8.20997e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.09710e-03\tAbsError: 7.27945e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.28010e-01\tAbsError: 4.89992e+14\n", + " Region: \"zone_1\"\tRelError: 1.30075e-02\tAbsError: 8.50269e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30052e-02\tAbsError: 2.97332e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.35842e-06\tAbsError: 8.20536e-04\n", + " Region: \"zone_3\"\tRelError: 1.15003e-01\tAbsError: 4.89992e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.04716e-04\tAbsError: 2.43507e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.61931e-04\tAbsError: 2.46485e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13934e-01\tAbsError: 2.99961e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36059e-06\tAbsError: 8.21291e-04\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 9.59509e-05\tAbsError: 1.84383e+09\n", + " Region: \"zone_1\"\tRelError: 6.90141e-05\tAbsError: 7.66547e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 6.90139e-05\tAbsError: 7.02485e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20044e-10\tAbsError: 7.65844e-08\n", + " Region: \"zone_3\"\tRelError: 2.69368e-05\tAbsError: 1.84383e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12306e-09\tAbsError: 9.19073e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.38040e-09\tAbsError: 9.24762e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.69311e-05\tAbsError: 7.09816e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20135e-10\tAbsError: 7.66170e-08\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:42\u001b[0m.\u001b[1;36m759\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 1.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 1.65985e-02\tAbsError: 1.45858e+12\n", + " Region: \"zone_1\"\tRelError: 1.72331e-03\tAbsError: 7.56454e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70153e-03\tAbsError: 1.42959e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17736e-05\tAbsError: 7.56311e-03\n", + " Region: \"zone_3\"\tRelError: 1.48752e-02\tAbsError: 1.45858e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.82682e-04\tAbsError: 8.27787e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.80685e-04\tAbsError: 6.30790e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39900e-02\tAbsError: 1.47660e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17788e-05\tAbsError: 7.56500e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.71600e+00\tAbsError: 3.92118e+13\n", + " Region: \"zone_1\"\tRelError: 1.69230e+00\tAbsError: 5.33729e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69229e+00\tAbsError: 1.74236e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53221e-05\tAbsError: 5.33554e-03\n", + " Region: \"zone_3\"\tRelError: 2.36945e-02\tAbsError: 3.92118e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28370e-04\tAbsError: 1.95462e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.14838e-05\tAbsError: 1.96656e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34693e-02\tAbsError: 1.75498e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53283e-05\tAbsError: 5.33766e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.13672e+03\tAbsError: 3.08207e+16\n", + " Region: \"zone_1\"\tRelError: 2.36568e+01\tAbsError: 2.88538e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36562e+01\tAbsError: 7.83982e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.04714e-04\tAbsError: 2.10140e-01\n", + " Region: \"zone_3\"\tRelError: 1.11306e+03\tAbsError: 3.08207e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.89674e+02\tAbsError: 1.98363e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.21917e+02\tAbsError: 1.09843e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47211e+00\tAbsError: 7.83984e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.06798e-04\tAbsError: 2.10862e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.61019e-03\tAbsError: 5.41292e+12\n", + " Region: \"zone_1\"\tRelError: 2.71259e-04\tAbsError: 3.69897e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.60627e-04\tAbsError: 5.44452e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06318e-05\tAbsError: 3.69843e-03\n", + " Region: \"zone_3\"\tRelError: 2.33893e-03\tAbsError: 5.41292e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.46504e-05\tAbsError: 2.68611e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.83588e-05\tAbsError: 2.72681e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.22528e-03\tAbsError: 5.47677e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06362e-05\tAbsError: 3.69989e-03\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 2.25322e-02\tAbsError: 7.37926e+12\n", + " Region: \"zone_1\"\tRelError: 2.29241e-03\tAbsError: 5.68147e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29079e-03\tAbsError: 5.68672e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61754e-06\tAbsError: 5.62460e-04\n", + " Region: \"zone_3\"\tRelError: 2.02398e-02\tAbsError: 7.37926e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.47694e-04\tAbsError: 3.31708e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.42959e-04\tAbsError: 4.06218e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87475e-02\tAbsError: 5.76539e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61810e-06\tAbsError: 5.62663e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.29423e+03\tAbsError: 2.05927e+18\n", + " Region: \"zone_1\"\tRelError: 8.20020e+01\tAbsError: 4.09537e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.20020e+01\tAbsError: 4.09537e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43761e-11\tAbsError: 1.89251e-08\n", + " Region: \"zone_3\"\tRelError: 2.21223e+03\tAbsError: 2.05927e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.07156e-01\tAbsError: 1.02695e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.89042e-01\tAbsError: 1.03232e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21103e+03\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43982e-11\tAbsError: 1.89331e-08\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.84397e-01\tAbsError: 3.65096e+13\n", + " Region: \"zone_1\"\tRelError: 6.42272e-01\tAbsError: 4.54710e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.42270e-01\tAbsError: 1.53943e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.30582e-06\tAbsError: 4.53171e-04\n", + " Region: \"zone_3\"\tRelError: 4.21253e-02\tAbsError: 3.65096e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.38727e-05\tAbsError: 1.81787e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.47740e-05\tAbsError: 1.83308e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.20554e-02\tAbsError: 1.55220e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.30599e-06\tAbsError: 4.53233e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.76807e+03\tAbsError: 1.55980e+16\n", + " Region: \"zone_1\"\tRelError: 1.60174e+00\tAbsError: 7.20164e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59988e+00\tAbsError: 7.42895e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85990e-03\tAbsError: 6.45874e-01\n", + " Region: \"zone_3\"\tRelError: 3.76647e+03\tAbsError: 1.55980e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.74521e+03\tAbsError: 3.55043e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.79546e+01\tAbsError: 1.20475e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.29813e+00\tAbsError: 7.42897e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85990e-03\tAbsError: 6.45874e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.33525e-02\tAbsError: 2.45530e+13\n", + " Region: \"zone_1\"\tRelError: 1.35325e-03\tAbsError: 1.72904e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35276e-03\tAbsError: 1.11340e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.93842e-07\tAbsError: 1.71790e-04\n", + " Region: \"zone_3\"\tRelError: 1.19992e-02\tAbsError: 2.45530e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.84766e-05\tAbsError: 1.22120e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.31490e-05\tAbsError: 1.23410e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19471e-02\tAbsError: 1.12340e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.94049e-07\tAbsError: 1.71859e-04\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 2.64043e-03\tAbsError: 5.34779e+11\n", + " Region: \"zone_1\"\tRelError: 2.77402e-04\tAbsError: 4.85036e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76008e-04\tAbsError: 3.99629e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39377e-06\tAbsError: 4.84636e-04\n", + " Region: \"zone_3\"\tRelError: 2.36302e-03\tAbsError: 5.34779e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.67157e-05\tAbsError: 2.86420e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.64870e-05\tAbsError: 2.48359e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24843e-03\tAbsError: 4.05110e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39410e-06\tAbsError: 4.84764e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.61689e+02\tAbsError: 5.07798e+17\n", + " Region: \"zone_1\"\tRelError: 3.64692e+01\tAbsError: 1.84178e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.64640e+01\tAbsError: 3.07624e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.18031e-03\tAbsError: 1.81102e+00\n", + " Region: \"zone_3\"\tRelError: 4.25219e+02\tAbsError: 5.07798e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.93091e-01\tAbsError: 2.54521e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.93600e-01\tAbsError: 2.53278e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.24628e+02\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.18075e-03\tAbsError: 1.81120e+00\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 5.17602e-02\tAbsError: 3.81639e+12\n", + " Region: \"zone_1\"\tRelError: 5.05943e-02\tAbsError: 2.59396e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.05936e-02\tAbsError: 1.40385e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.46801e-07\tAbsError: 2.59255e-04\n", + " Region: \"zone_3\"\tRelError: 1.16583e-03\tAbsError: 3.81639e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.23974e-06\tAbsError: 1.90175e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.90322e-06\tAbsError: 1.91464e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15094e-03\tAbsError: 1.41500e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.46858e-07\tAbsError: 2.59300e-04\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 1.73000e-03\tAbsError: 4.78739e+11\n", + " Region: \"zone_1\"\tRelError: 1.78256e-04\tAbsError: 6.66258e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78065e-04\tAbsError: 3.27442e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.90658e-07\tAbsError: 6.62984e-05\n", + " Region: \"zone_3\"\tRelError: 1.55175e-03\tAbsError: 4.78739e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.75457e-05\tAbsError: 2.53700e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.72084e-05\tAbsError: 2.25039e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45680e-03\tAbsError: 3.32100e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.90709e-07\tAbsError: 6.63163e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.12918e+02\tAbsError: 3.51252e+15\n", + " Region: \"zone_1\"\tRelError: 1.36922e-01\tAbsError: 1.01550e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36830e-01\tAbsError: 6.96841e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.19319e-05\tAbsError: 3.18660e-02\n", + " Region: \"zone_3\"\tRelError: 5.12781e+02\tAbsError: 3.51252e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.88180e+01\tAbsError: 7.73156e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.62438e+02\tAbsError: 2.73936e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52468e+00\tAbsError: 6.96843e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.19319e-05\tAbsError: 3.18660e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.19315e-03\tAbsError: 1.39866e+12\n", + " Region: \"zone_1\"\tRelError: 1.21613e-04\tAbsError: 1.66369e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21135e-04\tAbsError: 6.37067e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.78109e-07\tAbsError: 1.66305e-04\n", + " Region: \"zone_3\"\tRelError: 1.07154e-03\tAbsError: 1.39866e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.74493e-06\tAbsError: 6.96417e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.55832e-06\tAbsError: 7.02247e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06476e-03\tAbsError: 6.42163e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.78280e-07\tAbsError: 1.66364e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.49657e+00\tAbsError: 3.51966e+16\n", + " Region: \"zone_1\"\tRelError: 4.64902e-01\tAbsError: 7.04755e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62960e-01\tAbsError: 2.58789e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94154e-03\tAbsError: 6.78876e-01\n", + " Region: \"zone_3\"\tRelError: 2.03167e+00\tAbsError: 3.51966e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.92042e-02\tAbsError: 1.76602e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.22372e-02\tAbsError: 1.75363e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95829e+00\tAbsError: 2.58789e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94154e-03\tAbsError: 6.78876e-01\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 2.86203e-04\tAbsError: 6.27638e+10\n", + " Region: \"zone_1\"\tRelError: 2.99365e-05\tAbsError: 3.46445e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.98370e-05\tAbsError: 4.29595e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.95054e-08\tAbsError: 3.46015e-05\n", + " Region: \"zone_3\"\tRelError: 2.56266e-04\tAbsError: 6.27638e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.46343e-06\tAbsError: 3.56504e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.43574e-06\tAbsError: 2.71134e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.43268e-04\tAbsError: 4.35591e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.95328e-08\tAbsError: 3.46111e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.73954e-02\tAbsError: 2.09217e+12\n", + " Region: \"zone_1\"\tRelError: 2.66287e-02\tAbsError: 3.97498e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66286e-02\tAbsError: 7.21599e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14055e-07\tAbsError: 3.96776e-05\n", + " Region: \"zone_3\"\tRelError: 7.66707e-04\tAbsError: 2.09217e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05973e-06\tAbsError: 1.04227e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.16702e-06\tAbsError: 1.04990e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.62366e-04\tAbsError: 7.27544e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14099e-07\tAbsError: 3.96935e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.12441e+02\tAbsError: 2.27947e+15\n", + " Region: \"zone_1\"\tRelError: 2.57506e-01\tAbsError: 1.16072e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57357e-01\tAbsError: 6.44638e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48872e-04\tAbsError: 5.16086e-02\n", + " Region: \"zone_3\"\tRelError: 6.12183e+02\tAbsError: 2.27947e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.56346e+02\tAbsError: 1.29064e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.55679e+02\tAbsError: 9.88834e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58235e-01\tAbsError: 6.44641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48962e-04\tAbsError: 5.16397e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 9.93046e-04\tAbsError: 1.35047e+12\n", + " Region: \"zone_1\"\tRelError: 1.00839e-04\tAbsError: 1.62276e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00793e-04\tAbsError: 4.93121e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.66571e-08\tAbsError: 1.61783e-05\n", + " Region: \"zone_3\"\tRelError: 8.92207e-04\tAbsError: 1.35047e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.51574e-06\tAbsError: 6.72130e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29808e-06\tAbsError: 6.78342e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.89346e-04\tAbsError: 4.97640e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.66657e-08\tAbsError: 1.61809e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.69589e+00\tAbsError: 5.37696e+15\n", + " Region: \"zone_1\"\tRelError: 3.73324e+00\tAbsError: 3.88180e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.73216e+00\tAbsError: 9.16423e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08076e-03\tAbsError: 3.79016e-01\n", + " Region: \"zone_3\"\tRelError: 2.96265e+00\tAbsError: 5.37696e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.56094e-03\tAbsError: 2.69855e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.01807e-03\tAbsError: 2.67840e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.95599e+00\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08076e-03\tAbsError: 3.79016e-01\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 1.31318e-04\tAbsError: 3.33767e+10\n", + " Region: \"zone_1\"\tRelError: 1.36025e-05\tAbsError: 6.39159e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35842e-05\tAbsError: 2.17106e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83182e-08\tAbsError: 6.36988e-06\n", + " Region: \"zone_3\"\tRelError: 1.17716e-04\tAbsError: 3.33767e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.32200e-06\tAbsError: 1.90094e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.29852e-06\tAbsError: 1.43674e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11077e-04\tAbsError: 2.20254e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83215e-08\tAbsError: 6.37102e-06\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.33283e-03\tAbsError: 3.11070e+11\n", + " Region: \"zone_1\"\tRelError: 3.24208e-03\tAbsError: 1.67201e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.24204e-03\tAbsError: 1.08135e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.80316e-08\tAbsError: 1.67093e-05\n", + " Region: \"zone_3\"\tRelError: 9.07484e-05\tAbsError: 3.11070e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.27597e-07\tAbsError: 1.55029e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.37894e-07\tAbsError: 1.56041e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.97349e-05\tAbsError: 1.09264e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.80498e-08\tAbsError: 1.67159e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.48270e+02\tAbsError: 4.45564e+14\n", + " Region: \"zone_1\"\tRelError: 8.87797e-02\tAbsError: 1.14771e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.86173e-02\tAbsError: 5.84706e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62378e-04\tAbsError: 5.63000e-02\n", + " Region: \"zone_3\"\tRelError: 1.48181e+02\tAbsError: 4.45564e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.49194e+01\tAbsError: 5.02523e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.31608e+01\tAbsError: 3.95311e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01003e-01\tAbsError: 5.84709e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62420e-04\tAbsError: 5.63140e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.35256e-04\tAbsError: 1.43351e+11\n", + " Region: \"zone_1\"\tRelError: 1.37721e-05\tAbsError: 9.73032e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37442e-05\tAbsError: 5.01073e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.79871e-08\tAbsError: 9.72531e-06\n", + " Region: \"zone_3\"\tRelError: 1.21484e-04\tAbsError: 1.43351e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.91834e-07\tAbsError: 7.13886e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.13078e-07\tAbsError: 7.19621e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21051e-04\tAbsError: 5.05336e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.79891e-08\tAbsError: 9.72902e-06\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 2.67617e-05\tAbsError: 6.00511e+09\n", + " Region: \"zone_1\"\tRelError: 2.79436e-06\tAbsError: 2.58190e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78695e-06\tAbsError: 3.94165e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.41357e-09\tAbsError: 2.57796e-06\n", + " Region: \"zone_3\"\tRelError: 2.39674e-05\tAbsError: 6.00511e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.11125e-07\tAbsError: 3.51674e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.08086e-07\tAbsError: 2.48837e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27407e-05\tAbsError: 3.99807e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.41485e-09\tAbsError: 2.57841e-06\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.32012e-03\tAbsError: 1.28416e+11\n", + " Region: \"zone_1\"\tRelError: 1.28498e-03\tAbsError: 3.17813e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28497e-03\tAbsError: 4.23201e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.12342e-09\tAbsError: 3.17390e-06\n", + " Region: \"zone_3\"\tRelError: 3.51385e-05\tAbsError: 1.28416e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13826e-07\tAbsError: 6.39919e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.61332e-07\tAbsError: 6.44238e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.48542e-05\tAbsError: 4.27818e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.12696e-09\tAbsError: 3.17522e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:50\u001b[0m.\u001b[1;36m025\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:50\u001b[0m.\u001b[1;36m025\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.20454545454545453\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.88315e-01\tAbsError: 2.62271e+15\n", + " Region: \"zone_1\"\tRelError: 4.71922e-01\tAbsError: 5.76588e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.70275e-01\tAbsError: 6.27557e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64666e-03\tAbsError: 5.76525e-01\n", + " Region: \"zone_3\"\tRelError: 3.16393e-01\tAbsError: 2.62271e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49491e-02\tAbsError: 1.29724e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.95632e-03\tAbsError: 1.32547e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97839e-01\tAbsError: 6.29832e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64866e-03\tAbsError: 5.77242e-01\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.42051e+03\tAbsError: 3.54615e+14\n", + " Region: \"zone_1\"\tRelError: 6.98275e-02\tAbsError: 1.09313e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.96607e-02\tAbsError: 5.14934e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66728e-04\tAbsError: 5.78196e-02\n", + " Region: \"zone_3\"\tRelError: 1.42044e+03\tAbsError: 3.54615e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.98967e+01\tAbsError: 1.27688e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.36047e+03\tAbsError: 3.41846e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.97677e-02\tAbsError: 5.14938e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66908e-04\tAbsError: 5.78809e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 6.85104e-05\tAbsError: 8.03987e+10\n", + " Region: \"zone_1\"\tRelError: 6.96313e-06\tAbsError: 1.48881e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.95886e-06\tAbsError: 2.53806e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.27498e-09\tAbsError: 1.48627e-06\n", + " Region: \"zone_3\"\tRelError: 6.15472e-05\tAbsError: 8.03987e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.83998e-08\tAbsError: 4.00300e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.82676e-08\tAbsError: 4.03687e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.13763e-05\tAbsError: 2.56098e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.27661e-09\tAbsError: 1.48686e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:50\u001b[0m.\u001b[1;36m707\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 1.045\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.19681e-04\tAbsError: 2.36335e+10\n", + " Region: \"zone_1\"\tRelError: 2.12393e-04\tAbsError: 1.12120e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12390e-04\tAbsError: 8.49866e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.22046e-09\tAbsError: 1.12035e-06\n", + " Region: \"zone_3\"\tRelError: 7.28849e-06\tAbsError: 2.36335e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.68162e-08\tAbsError: 1.17793e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.98264e-08\tAbsError: 1.18542e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.21862e-06\tAbsError: 8.58821e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.22171e-09\tAbsError: 1.12081e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.58997e+01\tAbsError: 3.20526e+15\n", + " Region: \"zone_1\"\tRelError: 1.29777e+01\tAbsError: 2.18715e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29777e+01\tAbsError: 1.22913e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.20649e-05\tAbsError: 2.17486e-02\n", + " Region: \"zone_3\"\tRelError: 8.29220e+01\tAbsError: 3.20526e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.66160e-03\tAbsError: 1.56677e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.59518e-03\tAbsError: 1.63849e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.29127e+01\tAbsError: 1.23738e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.20911e-05\tAbsError: 2.17577e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 4.00781e+00\tAbsError: 3.94064e+14\n", + " Region: \"zone_1\"\tRelError: 5.54910e-02\tAbsError: 1.14682e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.52851e-02\tAbsError: 4.32616e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.05905e-04\tAbsError: 7.14208e-02\n", + " Region: \"zone_3\"\tRelError: 3.95232e+00\tAbsError: 3.94064e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89903e+00\tAbsError: 2.21274e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.97707e-01\tAbsError: 3.71937e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.53690e-02\tAbsError: 4.32621e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.06150e-04\tAbsError: 7.15040e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.04363e+01\tAbsError: 8.75931e+15\n", + " Region: \"zone_1\"\tRelError: 1.87906e+01\tAbsError: 4.18734e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87906e+01\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62204e-09\tAbsError: 5.64041e-07\n", + " Region: \"zone_3\"\tRelError: 1.64572e+00\tAbsError: 8.75931e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77321e-01\tAbsError: 4.84694e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.77252e-01\tAbsError: 3.91237e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.11488e-02\tAbsError: 4.18729e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62226e-09\tAbsError: 5.64117e-07\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 7.39581e-05\tAbsError: 8.24568e+09\n", + " Region: \"zone_1\"\tRelError: 7.15031e-05\tAbsError: 2.38813e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 7.15024e-05\tAbsError: 2.87074e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.85640e-10\tAbsError: 2.38526e-07\n", + " Region: \"zone_3\"\tRelError: 2.45501e-06\tAbsError: 8.24568e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.01995e-09\tAbsError: 4.10956e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.14388e-08\tAbsError: 4.13612e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.43586e-06\tAbsError: 2.90181e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.85923e-10\tAbsError: 2.38630e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.31267e+03\tAbsError: 1.61876e+18\n", + " Region: \"zone_1\"\tRelError: 2.15568e+03\tAbsError: 4.19632e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.15568e+03\tAbsError: 4.19626e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.86381e-09\tAbsError: 6.47983e-07\n", + " Region: \"zone_3\"\tRelError: 2.15699e+03\tAbsError: 1.61876e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.69859e-01\tAbsError: 8.03022e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.44383e-01\tAbsError: 8.15742e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.15568e+03\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.86451e-09\tAbsError: 6.48241e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:52\u001b[0m.\u001b[1;36m408\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 1.0899999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.03311e+04\tAbsError: 3.93653e+14\n", + " Region: \"zone_1\"\tRelError: 4.12956e-02\tAbsError: 1.24407e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.10335e-02\tAbsError: 3.34880e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.62058e-04\tAbsError: 9.09187e-02\n", + " Region: \"zone_3\"\tRelError: 1.03311e+04\tAbsError: 3.93653e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03307e+04\tAbsError: 2.36735e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.21091e-01\tAbsError: 3.69979e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.10984e-02\tAbsError: 3.34886e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.62402e-04\tAbsError: 9.10387e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.68799e+00\tAbsError: 1.24428e+14\n", + " Region: \"zone_1\"\tRelError: 2.78169e+00\tAbsError: 1.62679e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78165e+00\tAbsError: 7.17419e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.64072e-05\tAbsError: 1.62607e-02\n", + " Region: \"zone_3\"\tRelError: 9.06301e-01\tAbsError: 1.24428e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.41976e-04\tAbsError: 6.19540e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.02421e-04\tAbsError: 6.24745e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.05410e-01\tAbsError: 7.21579e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.64251e-05\tAbsError: 1.62670e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.51527e+00\tAbsError: 3.25260e+14\n", + " Region: \"zone_1\"\tRelError: 2.05408e+00\tAbsError: 9.47161e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05390e+00\tAbsError: 3.18465e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80835e-04\tAbsError: 6.28696e-02\n", + " Region: \"zone_3\"\tRelError: 1.46119e+00\tAbsError: 3.25260e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.51540e-01\tAbsError: 1.59285e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.47035e-01\tAbsError: 1.65975e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.24340e-02\tAbsError: 3.18470e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80835e-04\tAbsError: 6.28696e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.04408e+03\tAbsError: 5.36695e+17\n", + " Region: \"zone_1\"\tRelError: 5.36992e+02\tAbsError: 1.32221e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.36988e+02\tAbsError: 3.19518e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.70524e-03\tAbsError: 1.29026e+00\n", + " Region: \"zone_3\"\tRelError: 5.07091e+02\tAbsError: 5.36695e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.84800e-01\tAbsError: 2.69477e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.73451e-01\tAbsError: 2.67218e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 5.06329e+02\tAbsError: 3.19525e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.70570e-03\tAbsError: 1.29038e+00\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.08131e+00\tAbsError: 3.49481e+14\n", + " Region: \"zone_1\"\tRelError: 3.13058e-02\tAbsError: 1.42325e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.09702e-02\tAbsError: 2.58770e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.35529e-04\tAbsError: 1.16448e-01\n", + " Region: \"zone_3\"\tRelError: 1.05001e+00\tAbsError: 3.49481e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99703e-01\tAbsError: 2.12352e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.74562e-03\tAbsError: 3.28246e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.42204e-02\tAbsError: 2.45589e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.35937e-04\tAbsError: 1.16589e-01\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.48216e+03\tAbsError: 2.08749e+18\n", + " Region: \"zone_1\"\tRelError: 2.49066e+03\tAbsError: 4.29334e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49066e+03\tAbsError: 4.29333e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17085e-10\tAbsError: 7.55212e-08\n", + " Region: \"zone_3\"\tRelError: 5.99150e+03\tAbsError: 2.08749e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.46766e-01\tAbsError: 1.04031e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.25990e-01\tAbsError: 1.04718e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 5.99022e+03\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17175e-10\tAbsError: 7.55542e-08\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.74817e+00\tAbsError: 1.00690e+14\n", + " Region: \"zone_1\"\tRelError: 2.14136e+00\tAbsError: 1.40275e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.14135e+00\tAbsError: 4.52029e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.00073e-06\tAbsError: 1.39823e-03\n", + " Region: \"zone_3\"\tRelError: 1.60681e+00\tAbsError: 1.00690e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04820e-04\tAbsError: 5.01493e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34375e-04\tAbsError: 5.05408e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60646e+00\tAbsError: 4.54847e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.00161e-06\tAbsError: 1.39859e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.57702e+00\tAbsError: 4.19775e+13\n", + " Region: \"zone_1\"\tRelError: 5.74741e-01\tAbsError: 3.08408e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.74726e-01\tAbsError: 2.58653e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43111e-05\tAbsError: 4.97551e-03\n", + " Region: \"zone_3\"\tRelError: 1.00228e+00\tAbsError: 4.19775e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.61753e-01\tAbsError: 3.02455e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.27245e-01\tAbsError: 1.17320e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13265e-01\tAbsError: 2.58955e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43111e-05\tAbsError: 4.97551e-03\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.40238e+00\tAbsError: 6.16489e+14\n", + " Region: \"zone_1\"\tRelError: 1.51392e-02\tAbsError: 3.50224e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50753e-02\tAbsError: 1.28451e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.39045e-05\tAbsError: 2.21773e-02\n", + " Region: \"zone_3\"\tRelError: 1.38724e+00\tAbsError: 6.16489e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23954e+00\tAbsError: 2.14946e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.55726e-03\tAbsError: 5.94994e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42077e-01\tAbsError: 1.28459e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.39045e-05\tAbsError: 2.21773e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 7.20944e+01\tAbsError: 7.56708e+16\n", + " Region: \"zone_1\"\tRelError: 6.54151e+01\tAbsError: 5.01672e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.54137e+01\tAbsError: 2.58373e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36322e-03\tAbsError: 4.75835e-01\n", + " Region: \"zone_3\"\tRelError: 6.67933e+00\tAbsError: 7.56708e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.58102e-02\tAbsError: 3.79633e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.47265e-02\tAbsError: 3.77076e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.52743e+00\tAbsError: 2.58764e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36338e-03\tAbsError: 4.75899e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 6.96046e+02\tAbsError: 6.12303e+17\n", + " Region: \"zone_1\"\tRelError: 4.96510e+01\tAbsError: 1.78943e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.96460e+01\tAbsError: 3.30992e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.02903e-03\tAbsError: 1.75633e+00\n", + " Region: \"zone_3\"\tRelError: 6.46395e+02\tAbsError: 6.12303e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.43837e-01\tAbsError: 3.06626e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.44545e-01\tAbsError: 3.05677e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 6.45701e+02\tAbsError: 3.31000e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.02964e-03\tAbsError: 1.75644e+00\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.05492e-01\tAbsError: 9.06572e+12\n", + " Region: \"zone_1\"\tRelError: 4.25847e-01\tAbsError: 6.76994e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.25845e-01\tAbsError: 4.28249e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93585e-06\tAbsError: 6.76565e-04\n", + " Region: \"zone_3\"\tRelError: 1.79645e-01\tAbsError: 9.06572e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.72999e-05\tAbsError: 4.51680e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.43151e-05\tAbsError: 4.54892e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79592e-01\tAbsError: 4.30804e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93585e-06\tAbsError: 6.76565e-04\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.17749e-01\tAbsError: 2.75400e+12\n", + " Region: \"zone_1\"\tRelError: 2.84331e-02\tAbsError: 1.37857e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.84237e-02\tAbsError: 1.05213e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.38961e-06\tAbsError: 3.26443e-03\n", + " Region: \"zone_3\"\tRelError: 2.89316e-01\tAbsError: 2.75400e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17006e-01\tAbsError: 1.82710e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.54026e-02\tAbsError: 9.26901e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68976e-02\tAbsError: 1.05214e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.39204e-06\tAbsError: 3.26533e-03\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 5.10120e-01\tAbsError: 6.13179e+14\n", + " Region: \"zone_1\"\tRelError: 2.16057e-02\tAbsError: 3.05911e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07258e-02\tAbsError: 2.97755e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.79857e-04\tAbsError: 3.05613e-01\n", + " Region: \"zone_3\"\tRelError: 4.88514e-01\tAbsError: 6.13179e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.32466e-01\tAbsError: 1.25745e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09422e-02\tAbsError: 6.00604e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.44225e-01\tAbsError: 3.09265e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.80493e-04\tAbsError: 3.05830e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.00029e+00\tAbsError: 4.66294e+15\n", + " Region: \"zone_1\"\tRelError: 2.27580e+00\tAbsError: 9.90877e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27300e+00\tAbsError: 1.06605e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.79721e-03\tAbsError: 9.80216e-01\n", + " Region: \"zone_3\"\tRelError: 7.24485e-01\tAbsError: 4.66294e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.91065e-02\tAbsError: 1.79042e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.75448e-03\tAbsError: 2.87252e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.97823e-01\tAbsError: 1.06615e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.80173e-03\tAbsError: 9.81795e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 8.79492e+00\tAbsError: 6.00288e+16\n", + " Region: \"zone_1\"\tRelError: 3.50227e+00\tAbsError: 1.40347e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.49833e+00\tAbsError: 2.58583e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.93821e-03\tAbsError: 1.37762e+00\n", + " Region: \"zone_3\"\tRelError: 5.29264e+00\tAbsError: 6.00288e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.79218e-02\tAbsError: 3.01274e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.42552e-02\tAbsError: 2.99014e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.16653e+00\tAbsError: 2.58698e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.93821e-03\tAbsError: 1.37762e+00\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.48197e-01\tAbsError: 4.50048e+12\n", + " Region: \"zone_1\"\tRelError: 1.60046e-01\tAbsError: 9.62234e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60046e-01\tAbsError: 1.80340e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75240e-07\tAbsError: 9.60431e-05\n", + " Region: \"zone_3\"\tRelError: 8.81510e-02\tAbsError: 4.50048e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.56637e-06\tAbsError: 2.24288e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.56618e-06\tAbsError: 2.25761e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.81336e-02\tAbsError: 1.81436e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75295e-07\tAbsError: 9.60627e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.11164e-02\tAbsError: 2.67087e+12\n", + " Region: \"zone_1\"\tRelError: 1.76241e-02\tAbsError: 2.79462e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76161e-02\tAbsError: 1.58150e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.04209e-06\tAbsError: 2.79304e-03\n", + " Region: \"zone_3\"\tRelError: 7.34923e-02\tAbsError: 2.67087e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53543e-02\tAbsError: 1.66658e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.26844e-04\tAbsError: 1.00429e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.00307e-03\tAbsError: 1.64903e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.04209e-06\tAbsError: 2.79304e-03\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 3.91597e-01\tAbsError: 1.73440e+14\n", + " Region: \"zone_1\"\tRelError: 3.78559e-02\tAbsError: 5.80300e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.78398e-02\tAbsError: 2.04009e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60820e-05\tAbsError: 5.59900e-03\n", + " Region: \"zone_3\"\tRelError: 3.53741e-01\tAbsError: 1.73440e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.20655e-02\tAbsError: 5.27691e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.20606e-02\tAbsError: 1.20671e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.09599e-01\tAbsError: 2.06461e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60897e-05\tAbsError: 5.60177e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.58249e+02\tAbsError: 1.00167e+16\n", + " Region: \"zone_1\"\tRelError: 1.56715e+02\tAbsError: 1.28436e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56711e+02\tAbsError: 3.89823e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.67750e-03\tAbsError: 1.28397e+00\n", + " Region: \"zone_3\"\tRelError: 1.53416e+00\tAbsError: 1.00167e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.08913e-02\tAbsError: 4.42744e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.61882e-03\tAbsError: 5.58926e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49196e+00\tAbsError: 3.92419e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.68317e-03\tAbsError: 1.28594e+00\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.89743e+00\tAbsError: 9.07768e+15\n", + " Region: \"zone_1\"\tRelError: 4.30415e+00\tAbsError: 5.45655e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.30263e+00\tAbsError: 1.22641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51850e-03\tAbsError: 5.33391e-01\n", + " Region: \"zone_3\"\tRelError: 3.59328e+00\tAbsError: 9.07768e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.05131e-03\tAbsError: 4.51642e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02232e-02\tAbsError: 4.56126e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.57749e+00\tAbsError: 1.22654e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52202e-03\tAbsError: 5.34632e-01\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 4.16881e-02\tAbsError: 5.87027e+11\n", + " Region: \"zone_1\"\tRelError: 2.74007e-02\tAbsError: 3.67679e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74006e-02\tAbsError: 2.53315e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05297e-07\tAbsError: 3.67426e-05\n", + " Region: \"zone_3\"\tRelError: 1.42874e-02\tAbsError: 5.87027e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.44350e-06\tAbsError: 2.92634e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.68502e-06\tAbsError: 2.94393e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42841e-02\tAbsError: 2.55528e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05309e-07\tAbsError: 3.67468e-05\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 3.63215e-02\tAbsError: 5.14930e+12\n", + " Region: \"zone_1\"\tRelError: 3.77742e-03\tAbsError: 1.10706e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74556e-03\tAbsError: 3.72376e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.18607e-05\tAbsError: 1.10669e-02\n", + " Region: \"zone_3\"\tRelError: 3.25441e-02\tAbsError: 5.14930e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90786e-04\tAbsError: 3.12485e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.62634e-04\tAbsError: 2.02445e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.12588e-02\tAbsError: 3.85335e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.18645e-05\tAbsError: 1.10683e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.09610e-03\tAbsError: 1.37091e+12\n", + " Region: \"zone_1\"\tRelError: 2.76889e-03\tAbsError: 1.16527e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76856e-03\tAbsError: 1.93106e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.29178e-07\tAbsError: 1.14596e-04\n", + " Region: \"zone_3\"\tRelError: 2.32720e-03\tAbsError: 1.37091e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.79315e-04\tAbsError: 3.79966e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.78776e-04\tAbsError: 9.90945e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96878e-03\tAbsError: 1.93525e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.29334e-07\tAbsError: 1.14652e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.37705e+01\tAbsError: 7.27933e+15\n", + " Region: \"zone_1\"\tRelError: 4.31671e+01\tAbsError: 8.11674e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.31668e+01\tAbsError: 3.46437e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.31427e-04\tAbsError: 8.08209e-02\n", + " Region: \"zone_3\"\tRelError: 6.03404e-01\tAbsError: 7.27933e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.35117e-02\tAbsError: 3.54144e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.23337e-03\tAbsError: 3.73789e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.86427e-01\tAbsError: 3.48978e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.31517e-04\tAbsError: 8.08519e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.48230e-02\tAbsError: 2.24518e+11\n", + " Region: \"zone_1\"\tRelError: 9.67323e-03\tAbsError: 6.58649e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 9.67321e-03\tAbsError: 9.07531e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88326e-08\tAbsError: 6.57742e-06\n", + " Region: \"zone_3\"\tRelError: 5.14973e-03\tAbsError: 2.24518e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.12497e-07\tAbsError: 1.11948e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.18689e-07\tAbsError: 1.12571e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.14878e-03\tAbsError: 9.15701e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88397e-08\tAbsError: 6.57999e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.12483e+00\tAbsError: 1.15592e+16\n", + " Region: \"zone_1\"\tRelError: 4.05248e-01\tAbsError: 1.15681e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.01945e-01\tAbsError: 2.01056e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.30361e-03\tAbsError: 1.15661e+00\n", + " Region: \"zone_3\"\tRelError: 7.19584e-01\tAbsError: 1.15592e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.33694e-02\tAbsError: 5.41979e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.47353e-03\tAbsError: 6.13946e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.91434e-01\tAbsError: 2.02997e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.30745e-03\tAbsError: 1.15796e+00\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 3.40315e-02\tAbsError: 1.08685e+13\n", + " Region: \"zone_1\"\tRelError: 3.47306e-03\tAbsError: 1.02397e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.47014e-03\tAbsError: 8.30414e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.92082e-06\tAbsError: 1.01567e-03\n", + " Region: \"zone_3\"\tRelError: 3.05585e-02\tAbsError: 1.08685e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10259e-03\tAbsError: 4.97621e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09570e-03\tAbsError: 5.89228e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83573e-02\tAbsError: 8.41978e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.92167e-06\tAbsError: 1.01597e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 8.73840e-04\tAbsError: 9.29496e+10\n", + " Region: \"zone_1\"\tRelError: 5.71863e-04\tAbsError: 8.29789e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.71624e-04\tAbsError: 5.32027e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.38759e-07\tAbsError: 8.29257e-05\n", + " Region: \"zone_3\"\tRelError: 3.01977e-04\tAbsError: 9.29496e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.28949e-06\tAbsError: 6.93078e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.21757e-06\tAbsError: 2.36418e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.87231e-04\tAbsError: 5.59323e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.38888e-07\tAbsError: 8.29697e-05\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.80808e-03\tAbsError: 3.70977e+10\n", + " Region: \"zone_1\"\tRelError: 1.83927e-03\tAbsError: 2.15171e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83927e-03\tAbsError: 1.71473e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.15592e-09\tAbsError: 2.15000e-06\n", + " Region: \"zone_3\"\tRelError: 9.68805e-04\tAbsError: 3.70977e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.10516e-08\tAbsError: 1.85046e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09611e-07\tAbsError: 1.85931e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.68608e-04\tAbsError: 1.72971e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.15824e-09\tAbsError: 2.15085e-06\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 4.64217e-03\tAbsError: 9.68026e+11\n", + " Region: \"zone_1\"\tRelError: 4.86514e-04\tAbsError: 7.30690e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.84414e-04\tAbsError: 6.88362e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.09942e-06\tAbsError: 7.30002e-04\n", + " Region: \"zone_3\"\tRelError: 4.15566e-03\tAbsError: 9.68026e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00606e-04\tAbsError: 5.36847e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.00120e-04\tAbsError: 4.31179e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.95283e-03\tAbsError: 6.97826e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.10002e-06\tAbsError: 7.30231e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.26630e+00\tAbsError: 4.92451e+14\n", + " Region: \"zone_1\"\tRelError: 1.13894e+00\tAbsError: 4.71328e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13880e+00\tAbsError: 2.57047e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34907e-04\tAbsError: 4.71071e-02\n", + " Region: \"zone_3\"\tRelError: 1.27367e-01\tAbsError: 4.92451e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.64457e-03\tAbsError: 2.45424e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.47270e-04\tAbsError: 2.47027e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24640e-01\tAbsError: 2.58802e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34960e-04\tAbsError: 4.71255e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.14566e+00\tAbsError: 7.17512e+15\n", + " Region: \"zone_1\"\tRelError: 4.32124e+00\tAbsError: 5.46696e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.32108e+00\tAbsError: 2.97009e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55267e-04\tAbsError: 5.43726e-02\n", + " Region: \"zone_3\"\tRelError: 2.82442e+00\tAbsError: 7.17512e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24488e-02\tAbsError: 3.50201e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.33247e-03\tAbsError: 3.67311e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80849e+00\tAbsError: 2.99132e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55338e-04\tAbsError: 5.43974e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.46596e-04\tAbsError: 7.70978e+10\n", + " Region: \"zone_1\"\tRelError: 3.52561e-04\tAbsError: 2.63577e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52554e-04\tAbsError: 6.54648e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.38295e-09\tAbsError: 2.57030e-06\n", + " Region: \"zone_3\"\tRelError: 1.94035e-04\tAbsError: 7.70978e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.14845e-06\tAbsError: 3.19726e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.09047e-06\tAbsError: 4.51252e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79789e-04\tAbsError: 6.57794e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.38722e-09\tAbsError: 2.57183e-06\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 8.73376e-04\tAbsError: 1.21033e+10\n", + " Region: \"zone_1\"\tRelError: 5.71066e-04\tAbsError: 4.32120e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 5.71065e-04\tAbsError: 5.34362e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23573e-09\tAbsError: 4.31585e-07\n", + " Region: \"zone_3\"\tRelError: 3.02310e-04\tAbsError: 1.21033e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.19763e-08\tAbsError: 6.03773e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.10528e-08\tAbsError: 6.06556e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.02256e-04\tAbsError: 5.39200e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23623e-09\tAbsError: 4.31772e-07\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 2.63806e-03\tAbsError: 7.18270e+11\n", + " Region: \"zone_1\"\tRelError: 2.72151e-04\tAbsError: 1.11167e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.71833e-04\tAbsError: 4.88634e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.18284e-07\tAbsError: 1.10678e-04\n", + " Region: \"zone_3\"\tRelError: 2.36591e-03\tAbsError: 7.18270e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.14304e-05\tAbsError: 3.84457e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.09324e-05\tAbsError: 3.33813e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.22323e-03\tAbsError: 4.95599e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.18357e-07\tAbsError: 1.10704e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.58694e+00\tAbsError: 2.89132e+14\n", + " Region: \"zone_1\"\tRelError: 1.52380e+00\tAbsError: 5.15698e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52379e+00\tAbsError: 1.32365e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47696e-05\tAbsError: 5.14374e-03\n", + " Region: \"zone_3\"\tRelError: 6.31393e-02\tAbsError: 2.89132e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.46615e-04\tAbsError: 1.44083e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.48650e-04\tAbsError: 1.45050e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.22293e-02\tAbsError: 1.33305e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47725e-05\tAbsError: 5.14444e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.30025e-01\tAbsError: 2.94556e+14\n", + " Region: \"zone_1\"\tRelError: 3.15863e-01\tAbsError: 3.78530e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.15755e-01\tAbsError: 1.75941e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08057e-04\tAbsError: 3.78354e-02\n", + " Region: \"zone_3\"\tRelError: 4.14163e-01\tAbsError: 2.94556e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27992e-03\tAbsError: 1.46638e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.33355e-04\tAbsError: 1.47918e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.12141e-01\tAbsError: 1.76984e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08101e-04\tAbsError: 3.78506e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.93715e-06\tAbsError: 1.96214e+09\n", + " Region: \"zone_1\"\tRelError: 2.21785e-06\tAbsError: 4.49317e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20493e-06\tAbsError: 8.87397e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29217e-08\tAbsError: 4.49228e-06\n", + " Region: \"zone_3\"\tRelError: 2.71931e-06\tAbsError: 1.96214e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.26346e-07\tAbsError: 1.66685e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.04086e-07\tAbsError: 2.95287e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27595e-06\tAbsError: 9.19869e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29231e-08\tAbsError: 4.49284e-06\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.80868e-04\tAbsError: 2.31864e+09\n", + " Region: \"zone_1\"\tRelError: 1.18462e-04\tAbsError: 1.27109e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18462e-04\tAbsError: 1.10538e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.63622e-10\tAbsError: 1.26998e-07\n", + " Region: \"zone_3\"\tRelError: 6.24053e-05\tAbsError: 2.31864e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73488e-09\tAbsError: 1.15691e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.90572e-09\tAbsError: 1.16172e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 6.23933e-05\tAbsError: 1.11505e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.63771e-10\tAbsError: 1.27053e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:03\u001b[0m.\u001b[1;36m020\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:03\u001b[0m.\u001b[1;36m020\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.3090909090909091\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 4.72856e-04\tAbsError: 1.04675e+11\n", + " Region: \"zone_1\"\tRelError: 4.94226e-05\tAbsError: 5.28859e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.92707e-05\tAbsError: 7.05222e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51884e-07\tAbsError: 5.28154e-05\n", + " Region: \"zone_3\"\tRelError: 4.23433e-04\tAbsError: 1.04675e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07269e-05\tAbsError: 6.01563e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06769e-05\tAbsError: 4.45187e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.01878e-04\tAbsError: 7.15151e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51923e-07\tAbsError: 5.28292e-05\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.23377e-01\tAbsError: 3.53784e+13\n", + " Region: \"zone_1\"\tRelError: 2.12151e-01\tAbsError: 2.19055e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12145e-01\tAbsError: 1.54072e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.28620e-06\tAbsError: 2.18901e-03\n", + " Region: \"zone_3\"\tRelError: 1.12254e-02\tAbsError: 3.53784e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.76777e-05\tAbsError: 1.76182e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.87863e-05\tAbsError: 1.77602e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10527e-02\tAbsError: 1.55136e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.28630e-06\tAbsError: 2.18913e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.71990e-01\tAbsError: 2.33075e+14\n", + " Region: \"zone_1\"\tRelError: 3.26655e-01\tAbsError: 3.26790e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.26646e-01\tAbsError: 1.05121e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.32610e-06\tAbsError: 3.25738e-03\n", + " Region: \"zone_3\"\tRelError: 2.45334e-01\tAbsError: 2.33075e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.69921e-04\tAbsError: 1.16087e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.98872e-04\tAbsError: 1.16987e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.44556e-01\tAbsError: 1.05793e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.32610e-06\tAbsError: 3.25738e-03\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 5.16278e-05\tAbsError: 6.84005e+08\n", + " Region: \"zone_1\"\tRelError: 3.37813e-05\tAbsError: 2.73846e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 3.37812e-05\tAbsError: 3.15860e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.83172e-11\tAbsError: 2.73530e-08\n", + " Region: \"zone_3\"\tRelError: 1.78465e-05\tAbsError: 6.84005e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24266e-09\tAbsError: 3.41303e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.85743e-09\tAbsError: 3.42702e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78433e-05\tAbsError: 3.18691e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.83488e-11\tAbsError: 2.73646e-08\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 2.01937e-04\tAbsError: 5.08201e+10\n", + " Region: \"zone_1\"\tRelError: 2.09310e-05\tAbsError: 1.03517e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09013e-05\tAbsError: 3.29728e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.96742e-08\tAbsError: 1.03187e-05\n", + " Region: \"zone_3\"\tRelError: 1.81006e-04\tAbsError: 5.08201e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.06381e-06\tAbsError: 2.90908e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.02859e-06\tAbsError: 2.17292e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70884e-04\tAbsError: 3.34514e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.96790e-08\tAbsError: 1.03204e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.25390e+01\tAbsError: 8.66334e+15\n", + " Region: \"zone_1\"\tRelError: 3.08824e+01\tAbsError: 4.18730e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.08824e+01\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.61411e-10\tAbsError: 1.94992e-07\n", + " Region: \"zone_3\"\tRelError: 1.65669e+00\tAbsError: 8.66334e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77415e-01\tAbsError: 4.95016e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.77396e-01\tAbsError: 3.71318e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01878e-01\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.61411e-10\tAbsError: 1.94992e-07\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 9.78787e-02\tAbsError: 1.51579e+13\n", + " Region: \"zone_1\"\tRelError: 9.33811e-02\tAbsError: 3.72586e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.33800e-02\tAbsError: 5.93039e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06930e-06\tAbsError: 3.71993e-04\n", + " Region: \"zone_3\"\tRelError: 4.49766e-03\tAbsError: 1.51579e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.55718e-05\tAbsError: 7.54871e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.55129e-05\tAbsError: 7.60915e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44551e-03\tAbsError: 5.97196e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06941e-06\tAbsError: 3.72032e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 7.52737e-02\tAbsError: 2.11632e+13\n", + " Region: \"zone_1\"\tRelError: 4.18693e-02\tAbsError: 1.59245e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.18648e-02\tAbsError: 1.01760e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.55695e-06\tAbsError: 1.59143e-03\n", + " Region: \"zone_3\"\tRelError: 3.34044e-02\tAbsError: 2.11632e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.42416e-05\tAbsError: 1.05434e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.40508e-05\tAbsError: 1.06198e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.32815e-02\tAbsError: 1.02389e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.55695e-06\tAbsError: 1.59143e-03\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 4.31241e-05\tAbsError: 9.72368e+09\n", + " Region: \"zone_1\"\tRelError: 4.50120e-06\tAbsError: 3.97895e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.48977e-06\tAbsError: 6.34023e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14243e-08\tAbsError: 3.97261e-06\n", + " Region: \"zone_3\"\tRelError: 3.86230e-05\tAbsError: 9.72368e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.87584e-07\tAbsError: 5.72032e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.82473e-07\tAbsError: 4.00336e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.66415e-05\tAbsError: 6.43135e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14261e-08\tAbsError: 3.97327e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:05\u001b[0m.\u001b[1;36m445\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.2\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.71908e+00\tAbsError: 3.16119e+14\n", + " Region: \"zone_1\"\tRelError: 2.43910e-01\tAbsError: 9.06394e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.43741e-01\tAbsError: 3.18465e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69138e-04\tAbsError: 5.87930e-02\n", + " Region: \"zone_3\"\tRelError: 1.47517e+00\tAbsError: 3.16119e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.52371e-01\tAbsError: 1.84358e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.46585e-01\tAbsError: 1.31761e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.60470e-02\tAbsError: 3.18469e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69138e-04\tAbsError: 5.87930e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.86969e-02\tAbsError: 2.46395e+12\n", + " Region: \"zone_1\"\tRelError: 1.78245e-02\tAbsError: 1.33518e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78241e-02\tAbsError: 9.72546e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.82867e-07\tAbsError: 1.33421e-04\n", + " Region: \"zone_3\"\tRelError: 8.72445e-04\tAbsError: 2.46395e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.98555e-06\tAbsError: 1.22727e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.80165e-06\tAbsError: 1.23668e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.61275e-04\tAbsError: 9.81989e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.83008e-07\tAbsError: 1.33471e-04\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:06\u001b[0m.\u001b[1;36m541\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 3.58424e-02\tAbsError: 1.06654e+13\n", + " Region: \"zone_1\"\tRelError: 2.02058e-02\tAbsError: 2.22070e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02052e-02\tAbsError: 4.26072e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.35587e-07\tAbsError: 2.21644e-04\n", + " Region: \"zone_3\"\tRelError: 1.56366e-02\tAbsError: 1.06654e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.99454e-05\tAbsError: 5.31546e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.95304e-05\tAbsError: 5.34998e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55965e-02\tAbsError: 4.28732e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.35746e-07\tAbsError: 2.21701e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.15185e+01\tAbsError: 8.37846e+15\n", + " Region: \"zone_1\"\tRelError: 9.89195e+00\tAbsError: 4.09551e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.89195e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.59013e-09\tAbsError: 9.00677e-07\n", + " Region: \"zone_3\"\tRelError: 1.62652e+00\tAbsError: 8.37846e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69532e-01\tAbsError: 4.63620e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69461e-01\tAbsError: 3.74226e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.75319e-02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.59045e-09\tAbsError: 9.00793e-07\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 6.40527e-03\tAbsError: 8.75105e+11\n", + " Region: \"zone_1\"\tRelError: 6.10804e-03\tAbsError: 2.72042e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.10796e-03\tAbsError: 3.31759e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.79703e-08\tAbsError: 2.71711e-05\n", + " Region: \"zone_3\"\tRelError: 2.97229e-04\tAbsError: 8.75105e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.37726e-06\tAbsError: 4.35905e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.72581e-06\tAbsError: 4.39200e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.94048e-04\tAbsError: 3.35063e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.79995e-08\tAbsError: 2.71819e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.29560e+00\tAbsError: 3.35290e+13\n", + " Region: \"zone_1\"\tRelError: 1.28873e+00\tAbsError: 3.19009e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28871e+00\tAbsError: 2.58882e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72972e-05\tAbsError: 6.01266e-03\n", + " Region: \"zone_3\"\tRelError: 1.00687e+00\tAbsError: 3.35290e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.61852e-01\tAbsError: 2.39644e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.32027e-01\tAbsError: 9.56462e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12978e-01\tAbsError: 2.58961e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72972e-05\tAbsError: 6.01266e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 5.84928e-03\tAbsError: 1.39322e+12\n", + " Region: \"zone_1\"\tRelError: 3.30163e-03\tAbsError: 8.73550e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.30138e-03\tAbsError: 5.81389e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.50332e-07\tAbsError: 8.72969e-05\n", + " Region: \"zone_3\"\tRelError: 2.54765e-03\tAbsError: 1.39322e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.41191e-06\tAbsError: 6.94509e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.86028e-06\tAbsError: 6.98710e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54013e-03\tAbsError: 5.86552e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.50362e-07\tAbsError: 8.73074e-05\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.35493e-03\tAbsError: 1.68571e+11\n", + " Region: \"zone_1\"\tRelError: 1.29207e-03\tAbsError: 8.63102e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29205e-03\tAbsError: 7.02025e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.47475e-08\tAbsError: 8.62400e-06\n", + " Region: \"zone_3\"\tRelError: 6.28578e-05\tAbsError: 1.68571e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.02466e-07\tAbsError: 8.39739e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.04547e-07\tAbsError: 8.45971e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.21260e-05\tAbsError: 7.08891e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.47569e-08\tAbsError: 8.62749e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.94648e+00\tAbsError: 2.98429e+14\n", + " Region: \"zone_1\"\tRelError: 5.14528e-01\tAbsError: 9.09009e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.14355e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72975e-04\tAbsError: 6.01372e-02\n", + " Region: \"zone_3\"\tRelError: 1.43195e+00\tAbsError: 2.98429e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37879e-01\tAbsError: 1.45713e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32394e-01\tAbsError: 1.52715e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.15050e-02\tAbsError: 3.07641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72975e-04\tAbsError: 6.01372e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.60486e-01\tAbsError: 5.15725e+12\n", + " Region: \"zone_1\"\tRelError: 1.67222e-01\tAbsError: 1.31684e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67215e-01\tAbsError: 1.05212e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.61512e-06\tAbsError: 2.64715e-03\n", + " Region: \"zone_3\"\tRelError: 2.93264e-01\tAbsError: 5.15725e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16225e-01\tAbsError: 2.60346e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.61655e-02\tAbsError: 2.55379e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08654e-02\tAbsError: 1.05213e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.61791e-06\tAbsError: 2.64812e-03\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.15768e-03\tAbsError: 5.43505e+11\n", + " Region: \"zone_1\"\tRelError: 1.21686e-03\tAbsError: 1.55236e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21682e-03\tAbsError: 2.14847e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.44066e-08\tAbsError: 1.55021e-05\n", + " Region: \"zone_3\"\tRelError: 9.40815e-04\tAbsError: 5.43505e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.76219e-07\tAbsError: 2.70992e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.20806e-06\tAbsError: 2.72513e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.38587e-04\tAbsError: 2.16821e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.44232e-08\tAbsError: 1.55082e-05\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 4.15724e-04\tAbsError: 5.32265e+10\n", + " Region: \"zone_1\"\tRelError: 3.96435e-04\tAbsError: 1.89996e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.96429e-04\tAbsError: 2.15435e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.44595e-09\tAbsError: 1.89780e-06\n", + " Region: \"zone_3\"\tRelError: 1.92895e-05\tAbsError: 5.32265e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.13529e-08\tAbsError: 2.65160e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13912e-07\tAbsError: 2.67106e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90888e-05\tAbsError: 2.17574e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.44817e-09\tAbsError: 1.89863e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.04599e+00\tAbsError: 3.86288e+13\n", + " Region: \"zone_1\"\tRelError: 9.93304e-02\tAbsError: 3.04736e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.93171e-02\tAbsError: 2.58731e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32324e-05\tAbsError: 4.60051e-03\n", + " Region: \"zone_3\"\tRelError: 9.46663e-01\tAbsError: 3.86288e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39748e-01\tAbsError: 2.78668e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.98990e-01\tAbsError: 1.07620e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07912e-01\tAbsError: 2.56750e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32324e-05\tAbsError: 4.60051e-03\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 4.06154e-04\tAbsError: 8.98688e+10\n", + " Region: \"zone_1\"\tRelError: 2.29538e-04\tAbsError: 5.19148e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29523e-04\tAbsError: 4.04707e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48597e-08\tAbsError: 5.18744e-06\n", + " Region: \"zone_3\"\tRelError: 1.76616e-04\tAbsError: 8.98688e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.93792e-07\tAbsError: 4.48232e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.56876e-07\tAbsError: 4.50456e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76151e-04\tAbsError: 4.08333e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48652e-08\tAbsError: 5.18949e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.45727e-01\tAbsError: 2.22309e+12\n", + " Region: \"zone_1\"\tRelError: 7.29546e-02\tAbsError: 2.31873e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.29479e-02\tAbsError: 2.32615e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.67039e-06\tAbsError: 2.31641e-03\n", + " Region: \"zone_3\"\tRelError: 7.27727e-02\tAbsError: 2.22309e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.51626e-02\tAbsError: 1.48882e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.60331e-04\tAbsError: 7.34269e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.34309e-03\tAbsError: 2.39748e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.67039e-06\tAbsError: 2.31641e-03\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 9.37854e-05\tAbsError: 1.13966e+10\n", + " Region: \"zone_1\"\tRelError: 8.94375e-05\tAbsError: 5.57086e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 8.94359e-05\tAbsError: 4.85882e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59721e-09\tAbsError: 5.56600e-07\n", + " Region: \"zone_3\"\tRelError: 4.34795e-06\tAbsError: 1.13966e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.91086e-08\tAbsError: 5.67760e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.74403e-08\tAbsError: 5.71899e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.29981e-06\tAbsError: 4.90653e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59787e-09\tAbsError: 5.56840e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:10\u001b[0m.\u001b[1;36m411\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 1.15\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.29151e-04\tAbsError: 2.98537e+10\n", + " Region: \"zone_1\"\tRelError: 7.29015e-05\tAbsError: 1.04164e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.28985e-05\tAbsError: 1.28800e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.98013e-09\tAbsError: 1.04035e-06\n", + " Region: \"zone_3\"\tRelError: 5.62494e-05\tAbsError: 2.98537e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.28726e-08\tAbsError: 1.48916e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.37179e-08\tAbsError: 1.49620e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.61198e-05\tAbsError: 1.29987e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.98133e-09\tAbsError: 1.04079e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.81931e-01\tAbsError: 3.51179e+12\n", + " Region: \"zone_1\"\tRelError: 1.43962e-02\tAbsError: 1.26243e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43862e-02\tAbsError: 9.16567e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.94812e-06\tAbsError: 3.45863e-03\n", + " Region: \"zone_3\"\tRelError: 2.67535e-01\tAbsError: 3.51179e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10366e-01\tAbsError: 2.07273e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.20558e-02\tAbsError: 1.43906e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51028e-02\tAbsError: 9.16572e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.94812e-06\tAbsError: 3.45863e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.80600e-02\tAbsError: 1.14808e+12\n", + " Region: \"zone_1\"\tRelError: 1.61112e-02\tAbsError: 1.01064e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61110e-02\tAbsError: 1.69201e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.85470e-07\tAbsError: 9.93716e-05\n", + " Region: \"zone_3\"\tRelError: 1.94877e-03\tAbsError: 1.14808e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36949e-04\tAbsError: 3.13929e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34019e-04\tAbsError: 8.34149e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67751e-03\tAbsError: 1.69786e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.85602e-07\tAbsError: 9.94189e-05\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 2.67419e-05\tAbsError: 5.73187e+09\n", + " Region: \"zone_1\"\tRelError: 1.51156e-05\tAbsError: 3.11729e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51147e-05\tAbsError: 2.66783e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.92195e-10\tAbsError: 3.11462e-07\n", + " Region: \"zone_3\"\tRelError: 1.16262e-05\tAbsError: 5.73187e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.14918e-08\tAbsError: 2.85974e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.65087e-08\tAbsError: 2.87213e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15974e-05\tAbsError: 2.69180e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.92560e-10\tAbsError: 3.11596e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:11\u001b[0m.\u001b[1;36m894\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 1.2\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Iteration: 0\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 1.83034e+01\tAbsError: 2.49126e+18\n", + " Region: \"zone_1\"\tRelError: 7.60404e+00\tAbsError: 4.19624e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.60404e+00\tAbsError: 4.19623e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.70440e-10\tAbsError: 1.29093e-07\n", + " Region: \"zone_3\"\tRelError: 1.06993e+01\tAbsError: 2.49126e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.80717e-01\tAbsError: 1.24361e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.68985e-01\tAbsError: 1.24765e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 9.54962e+00\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.70590e-10\tAbsError: 1.29147e-07\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.22420e-02\tAbsError: 3.50277e+12\n", + " Region: \"zone_1\"\tRelError: 6.27962e-03\tAbsError: 2.19295e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.27335e-03\tAbsError: 1.50745e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.27080e-06\tAbsError: 2.17787e-03\n", + " Region: \"zone_3\"\tRelError: 6.59624e-02\tAbsError: 3.50277e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.67825e-02\tAbsError: 2.11766e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.14380e-04\tAbsError: 1.38511e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.55922e-03\tAbsError: 1.55695e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.27080e-06\tAbsError: 2.17787e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.91190e-03\tAbsError: 7.96289e+10\n", + " Region: \"zone_1\"\tRelError: 2.63465e-03\tAbsError: 6.91735e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.63445e-03\tAbsError: 4.71976e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99045e-07\tAbsError: 6.91263e-05\n", + " Region: \"zone_3\"\tRelError: 2.77243e-04\tAbsError: 7.96289e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.57432e-06\tAbsError: 6.01559e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.39554e-06\tAbsError: 1.94730e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66074e-04\tAbsError: 4.94439e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99153e-07\tAbsError: 6.91621e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.66836e+00\tAbsError: 5.26750e+17\n", + " Region: \"zone_1\"\tRelError: 5.40408e-01\tAbsError: 2.47466e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.33451e-01\tAbsError: 3.19514e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.95714e-03\tAbsError: 2.44271e+00\n", + " Region: \"zone_3\"\tRelError: 1.12795e+00\tAbsError: 5.26750e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.68024e-01\tAbsError: 2.63837e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.68166e-01\tAbsError: 2.62913e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 5.84807e-01\tAbsError: 3.19525e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.95799e-03\tAbsError: 2.44293e+00\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.61560e-03\tAbsError: 1.05154e+12\n", + " Region: \"zone_1\"\tRelError: 2.24369e-04\tAbsError: 1.45744e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23954e-04\tAbsError: 1.49315e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14373e-07\tAbsError: 1.44251e-04\n", + " Region: \"zone_3\"\tRelError: 1.39123e-03\tAbsError: 1.05154e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46580e-04\tAbsError: 2.71204e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.31750e-04\tAbsError: 7.80335e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11248e-03\tAbsError: 1.49726e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14534e-07\tAbsError: 1.44309e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.10927e+00\tAbsError: 2.88051e+18\n", + " Region: \"zone_1\"\tRelError: 4.40935e+00\tAbsError: 4.29331e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.40935e+00\tAbsError: 4.29330e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.92687e-10\tAbsError: 6.72666e-08\n", + " Region: \"zone_3\"\tRelError: 2.69992e+00\tAbsError: 2.88051e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.57634e-01\tAbsError: 1.43872e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.49377e-01\tAbsError: 1.44179e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59291e+00\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.92765e-10\tAbsError: 6.72951e-08\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.71121e-03\tAbsError: 6.42400e+10\n", + " Region: \"zone_1\"\tRelError: 1.54492e-03\tAbsError: 2.42438e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54492e-03\tAbsError: 5.72492e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.79994e-09\tAbsError: 2.36713e-06\n", + " Region: \"zone_3\"\tRelError: 1.66287e-04\tAbsError: 6.42400e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.30507e-06\tAbsError: 2.63420e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.25914e-06\tAbsError: 3.78980e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55716e-04\tAbsError: 5.72919e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.80392e-09\tAbsError: 2.36856e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 5.19734e-01\tAbsError: 1.97992e+16\n", + " Region: \"zone_1\"\tRelError: 2.37038e-01\tAbsError: 2.07687e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31212e-01\tAbsError: 2.58948e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.82632e-03\tAbsError: 2.05097e+00\n", + " Region: \"zone_3\"\tRelError: 2.82695e-01\tAbsError: 1.97992e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.49371e-02\tAbsError: 9.97403e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96727e-02\tAbsError: 9.82517e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12259e-01\tAbsError: 2.58980e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.82676e-03\tAbsError: 2.05114e+00\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.04484e-04\tAbsError: 1.25305e+11\n", + " Region: \"zone_1\"\tRelError: 1.66225e-04\tAbsError: 5.88372e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66056e-04\tAbsError: 7.31641e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69190e-07\tAbsError: 5.87641e-05\n", + " Region: \"zone_3\"\tRelError: 4.38259e-04\tAbsError: 1.25305e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07349e-05\tAbsError: 8.57569e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06394e-05\tAbsError: 3.95479e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.16715e-04\tAbsError: 7.69558e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69190e-07\tAbsError: 5.87641e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.04733e+00\tAbsError: 5.25888e+17\n", + " Region: \"zone_1\"\tRelError: 2.75293e-01\tAbsError: 3.17385e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66393e-01\tAbsError: 3.30987e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.89983e-03\tAbsError: 3.14075e+00\n", + " Region: \"zone_3\"\tRelError: 7.72042e-01\tAbsError: 5.25888e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.54638e-01\tAbsError: 2.63307e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.49625e-01\tAbsError: 2.62581e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58877e-01\tAbsError: 3.31000e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.90099e-03\tAbsError: 3.14105e+00\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.98365e-05\tAbsError: 1.74812e+09\n", + " Region: \"zone_1\"\tRelError: 2.67203e-05\tAbsError: 3.71573e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67096e-05\tAbsError: 8.84078e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06872e-08\tAbsError: 3.71484e-06\n", + " Region: \"zone_3\"\tRelError: 3.11622e-06\tAbsError: 1.74812e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.51296e-07\tAbsError: 1.52564e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.22090e-07\tAbsError: 2.22487e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83214e-06\tAbsError: 9.16942e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06883e-08\tAbsError: 3.71526e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:15\u001b[0m.\u001b[1;36m058\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:15\u001b[0m.\u001b[1;36m058\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.4136363636363636\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.52761e-01\tAbsError: 2.62797e+16\n", + " Region: \"zone_1\"\tRelError: 9.76584e-02\tAbsError: 3.86718e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 8.68408e-02\tAbsError: 1.06597e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08176e-02\tAbsError: 3.85652e+00\n", + " Region: \"zone_3\"\tRelError: 1.55102e-01\tAbsError: 2.62797e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.12443e-02\tAbsError: 9.31974e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.14102e-03\tAbsError: 1.69599e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 8.68796e-02\tAbsError: 1.06615e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08372e-02\tAbsError: 3.86367e+00\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.49542e-04\tAbsError: 5.25658e+10\n", + " Region: \"zone_1\"\tRelError: 3.67449e-05\tAbsError: 6.09086e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.67275e-05\tAbsError: 4.65416e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73626e-08\tAbsError: 6.04431e-06\n", + " Region: \"zone_3\"\tRelError: 1.12797e-04\tAbsError: 5.25658e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.87848e-06\tAbsError: 1.95402e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.83780e-06\tAbsError: 3.30256e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03063e-04\tAbsError: 4.67695e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73703e-08\tAbsError: 6.04716e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.89417e-01\tAbsError: 2.54221e+16\n", + " Region: \"zone_1\"\tRelError: 1.69711e-01\tAbsError: 4.10046e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58247e-01\tAbsError: 2.58978e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14640e-02\tAbsError: 4.07456e+00\n", + " Region: \"zone_3\"\tRelError: 2.19706e-01\tAbsError: 2.54221e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73312e-02\tAbsError: 1.26603e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.56527e-02\tAbsError: 1.27618e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35257e-01\tAbsError: 2.58670e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14658e-02\tAbsError: 4.07523e+00\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.07616e+01\tAbsError: 8.63834e+15\n", + " Region: \"zone_1\"\tRelError: 9.09370e+00\tAbsError: 4.18730e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.09370e+00\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.46502e-10\tAbsError: 1.55345e-07\n", + " Region: \"zone_3\"\tRelError: 1.66793e+00\tAbsError: 8.63834e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77440e-01\tAbsError: 5.07199e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.77420e-01\tAbsError: 3.56635e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13066e-01\tAbsError: 4.18729e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.46671e-10\tAbsError: 1.55403e-07\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.09087e-01\tAbsError: 3.99201e+16\n", + " Region: \"zone_1\"\tRelError: 1.13300e-01\tAbsError: 4.80576e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 9.96392e-02\tAbsError: 1.27897e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36607e-02\tAbsError: 4.80448e+00\n", + " Region: \"zone_3\"\tRelError: 2.95787e-01\tAbsError: 3.99201e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36733e-01\tAbsError: 1.96602e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.22422e-02\tAbsError: 2.02599e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13131e-01\tAbsError: 1.28517e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36804e-02\tAbsError: 4.81150e+00\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.34616e-05\tAbsError: 4.93077e+09\n", + " Region: \"zone_1\"\tRelError: 6.39653e-06\tAbsError: 2.70521e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.38875e-06\tAbsError: 2.92925e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78050e-09\tAbsError: 2.70228e-06\n", + " Region: \"zone_3\"\tRelError: 1.70651e-05\tAbsError: 4.93077e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.08407e-07\tAbsError: 3.64057e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.02769e-07\tAbsError: 1.29020e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62461e-05\tAbsError: 3.07627e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78090e-09\tAbsError: 2.70245e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.31509e-01\tAbsError: 6.53670e+16\n", + " Region: \"zone_1\"\tRelError: 7.81600e-02\tAbsError: 2.54224e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 7.09907e-02\tAbsError: 1.22635e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.16926e-03\tAbsError: 2.52998e+00\n", + " Region: \"zone_3\"\tRelError: 1.53349e-01\tAbsError: 6.53670e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.15979e-02\tAbsError: 3.23947e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.35663e-02\tAbsError: 3.29723e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.10136e-02\tAbsError: 1.22654e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.17081e-03\tAbsError: 2.53053e+00\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:17\u001b[0m.\u001b[1;36m293\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.3\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.69633e+00\tAbsError: 3.30694e+14\n", + " Region: \"zone_1\"\tRelError: 2.04130e-01\tAbsError: 8.38465e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03981e-01\tAbsError: 3.18465e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49617e-04\tAbsError: 5.20000e-02\n", + " Region: \"zone_3\"\tRelError: 1.49220e+00\tAbsError: 3.30694e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53231e-01\tAbsError: 2.41427e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.46012e-01\tAbsError: 8.92668e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.28037e-02\tAbsError: 3.18468e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49617e-04\tAbsError: 5.20000e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.98801e-01\tAbsError: 3.32657e+16\n", + " Region: \"zone_1\"\tRelError: 1.02828e-01\tAbsError: 2.82782e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02028e-01\tAbsError: 1.18619e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.00031e-04\tAbsError: 2.81596e-01\n", + " Region: \"zone_3\"\tRelError: 1.95973e-01\tAbsError: 3.32657e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.03301e-02\tAbsError: 1.63093e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.05065e-02\tAbsError: 1.69564e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14336e-01\tAbsError: 1.19290e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.00341e-04\tAbsError: 2.81704e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.06521e-01\tAbsError: 5.25690e+16\n", + " Region: \"zone_1\"\tRelError: 2.96156e-02\tAbsError: 2.10225e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36714e-02\tAbsError: 4.41949e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.94425e-03\tAbsError: 2.10181e+00\n", + " Region: \"zone_3\"\tRelError: 7.69054e-02\tAbsError: 5.25690e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.50907e-02\tAbsError: 2.61546e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.12925e-02\tAbsError: 2.64144e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.45709e-02\tAbsError: 4.42076e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.95136e-03\tAbsError: 2.10432e+00\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 9.54016e+00\tAbsError: 8.28773e+15\n", + " Region: \"zone_1\"\tRelError: 7.90066e+00\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.90066e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.70846e-10\tAbsError: 1.98729e-07\n", + " Region: \"zone_3\"\tRelError: 1.63951e+00\tAbsError: 8.28773e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69626e-01\tAbsError: 4.72857e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69607e-01\tAbsError: 3.55916e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00272e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.71110e-10\tAbsError: 1.98825e-07\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.08628e+00\tAbsError: 7.45591e+13\n", + " Region: \"zone_1\"\tRelError: 7.71598e-02\tAbsError: 3.28695e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.71397e-02\tAbsError: 2.58833e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.01007e-05\tAbsError: 6.98622e-03\n", + " Region: \"zone_3\"\tRelError: 1.00912e+00\tAbsError: 7.45591e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.62470e-01\tAbsError: 4.45904e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.40211e-01\tAbsError: 2.99687e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06420e-01\tAbsError: 2.58870e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.01007e-05\tAbsError: 6.98622e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.96187e-02\tAbsError: 1.75053e+15\n", + " Region: \"zone_1\"\tRelError: 1.42724e-02\tAbsError: 1.45028e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38595e-02\tAbsError: 8.94746e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.12887e-04\tAbsError: 1.44939e-01\n", + " Region: \"zone_3\"\tRelError: 2.53464e-02\tAbsError: 1.75053e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.74622e-03\tAbsError: 8.55545e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.60907e-03\tAbsError: 8.94984e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55782e-02\tAbsError: 8.99214e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.12890e-04\tAbsError: 1.44947e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.05243e-02\tAbsError: 1.71928e+16\n", + " Region: \"zone_1\"\tRelError: 1.39003e-02\tAbsError: 9.75908e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36257e-02\tAbsError: 4.95045e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.74527e-04\tAbsError: 9.70958e-02\n", + " Region: \"zone_3\"\tRelError: 4.66240e-02\tAbsError: 1.71928e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.43183e-02\tAbsError: 8.46411e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.92900e-03\tAbsError: 8.72870e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41020e-02\tAbsError: 4.97560e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.74643e-04\tAbsError: 9.71365e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.57084e+00\tAbsError: 2.89575e+14\n", + " Region: \"zone_1\"\tRelError: 1.26543e-01\tAbsError: 8.72430e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26381e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62480e-04\tAbsError: 5.64794e-02\n", + " Region: \"zone_3\"\tRelError: 1.44430e+00\tAbsError: 2.89575e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37983e-01\tAbsError: 1.66847e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32917e-01\tAbsError: 1.22728e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.32359e-02\tAbsError: 3.07641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62480e-04\tAbsError: 5.64794e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.37573e-01\tAbsError: 2.62583e+13\n", + " Region: \"zone_1\"\tRelError: 2.66856e-02\tAbsError: 1.29341e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66787e-02\tAbsError: 1.05212e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.94244e-06\tAbsError: 2.41284e-03\n", + " Region: \"zone_3\"\tRelError: 3.10887e-01\tAbsError: 2.62583e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14741e-01\tAbsError: 1.27736e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.92334e-02\tAbsError: 1.34847e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.69065e-02\tAbsError: 1.05213e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.94691e-06\tAbsError: 2.41446e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.84579e-02\tAbsError: 9.27268e+14\n", + " Region: \"zone_1\"\tRelError: 7.06495e-03\tAbsError: 1.50817e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.02210e-03\tAbsError: 4.11553e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.28501e-05\tAbsError: 1.50405e-02\n", + " Region: \"zone_3\"\tRelError: 1.13930e-02\tAbsError: 9.27268e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.00214e-03\tAbsError: 4.61804e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.45972e-03\tAbsError: 4.65464e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.88825e-03\tAbsError: 4.13778e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.28501e-05\tAbsError: 1.50405e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 5.11179e-03\tAbsError: 7.70441e+14\n", + " Region: \"zone_1\"\tRelError: 1.35889e-03\tAbsError: 5.45003e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20454e-03\tAbsError: 2.78425e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54352e-04\tAbsError: 5.44725e-02\n", + " Region: \"zone_3\"\tRelError: 3.75290e-03\tAbsError: 7.70441e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.99204e-03\tAbsError: 3.85016e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.80199e-04\tAbsError: 3.85425e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.26308e-04\tAbsError: 2.79655e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54352e-04\tAbsError: 5.44725e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.08933e+00\tAbsError: 3.08258e+13\n", + " Region: \"zone_1\"\tRelError: 1.39766e-01\tAbsError: 3.14532e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39750e-01\tAbsError: 2.58726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60540e-05\tAbsError: 5.58058e-03\n", + " Region: \"zone_3\"\tRelError: 9.49568e-01\tAbsError: 3.08258e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40223e-01\tAbsError: 2.27975e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.01508e-01\tAbsError: 8.02831e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07820e-01\tAbsError: 2.58966e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60540e-05\tAbsError: 5.58058e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.61545e-02\tAbsError: 3.83266e+12\n", + " Region: \"zone_1\"\tRelError: 2.81411e-03\tAbsError: 1.78747e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80904e-03\tAbsError: 2.72818e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.06913e-06\tAbsError: 1.76019e-03\n", + " Region: \"zone_3\"\tRelError: 7.33404e-02\tAbsError: 3.83266e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.46251e-02\tAbsError: 2.27967e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.36878e-03\tAbsError: 1.55299e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.34146e-03\tAbsError: 2.95939e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.06913e-06\tAbsError: 1.76019e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.71738e-03\tAbsError: 1.07667e+14\n", + " Region: \"zone_1\"\tRelError: 1.03630e-03\tAbsError: 5.76985e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01984e-03\tAbsError: 4.42848e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64621e-05\tAbsError: 5.76542e-03\n", + " Region: \"zone_3\"\tRelError: 1.68108e-03\tAbsError: 1.07667e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.64362e-04\tAbsError: 5.32517e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.53711e-04\tAbsError: 5.44154e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14654e-03\tAbsError: 4.45105e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64621e-05\tAbsError: 5.76542e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.81043e-03\tAbsError: 4.89759e+14\n", + " Region: \"zone_1\"\tRelError: 7.77711e-04\tAbsError: 4.18472e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.65896e-04\tAbsError: 1.51951e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18145e-05\tAbsError: 4.16952e-03\n", + " Region: \"zone_3\"\tRelError: 2.03272e-03\tAbsError: 4.89759e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.36181e-04\tAbsError: 2.42285e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.91630e-04\tAbsError: 2.47473e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.93091e-04\tAbsError: 1.52676e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18155e-05\tAbsError: 4.16958e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.94758e-01\tAbsError: 4.98642e+12\n", + " Region: \"zone_1\"\tRelError: 2.19383e-02\tAbsError: 1.22221e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19295e-02\tAbsError: 9.16564e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.79291e-06\tAbsError: 3.05651e-03\n", + " Region: \"zone_3\"\tRelError: 2.72820e-01\tAbsError: 4.98642e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12699e-01\tAbsError: 2.77867e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.23181e-02\tAbsError: 2.20775e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77940e-02\tAbsError: 9.16568e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.79389e-06\tAbsError: 3.05683e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.17479e-03\tAbsError: 8.38513e+11\n", + " Region: \"zone_1\"\tRelError: 9.80301e-05\tAbsError: 1.13249e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.77084e-05\tAbsError: 1.25766e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.21759e-07\tAbsError: 1.11992e-04\n", + " Region: \"zone_3\"\tRelError: 1.07676e-03\tAbsError: 8.38513e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06684e-04\tAbsError: 2.03880e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.34123e-05\tAbsError: 6.34633e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.86344e-04\tAbsError: 1.26205e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.21884e-07\tAbsError: 1.12037e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 9.60517e-04\tAbsError: 3.70140e+13\n", + " Region: \"zone_1\"\tRelError: 3.79391e-04\tAbsError: 8.82747e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.76874e-04\tAbsError: 1.49370e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.51627e-06\tAbsError: 8.81253e-04\n", + " Region: \"zone_3\"\tRelError: 5.81126e-04\tAbsError: 3.70140e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.42292e-05\tAbsError: 1.82854e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.05886e-05\tAbsError: 1.87285e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.23791e-04\tAbsError: 1.50155e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.51686e-06\tAbsError: 8.81464e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.90949e-04\tAbsError: 4.62352e+13\n", + " Region: \"zone_1\"\tRelError: 7.67261e-05\tAbsError: 1.67089e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.19872e-05\tAbsError: 1.28358e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73887e-06\tAbsError: 1.66960e-03\n", + " Region: \"zone_3\"\tRelError: 2.14223e-04\tAbsError: 4.62352e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.49627e-05\tAbsError: 2.29665e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.00098e-05\tAbsError: 2.32687e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.45113e-05\tAbsError: 1.28948e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73889e-06\tAbsError: 1.66962e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.73338e-02\tAbsError: 3.09182e+12\n", + " Region: \"zone_1\"\tRelError: 1.11598e-02\tAbsError: 1.65988e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11551e-02\tAbsError: 1.42279e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73882e-06\tAbsError: 1.64565e-03\n", + " Region: \"zone_3\"\tRelError: 6.61739e-02\tAbsError: 3.09182e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.71921e-02\tAbsError: 1.98622e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.49402e-04\tAbsError: 1.10560e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.42774e-03\tAbsError: 1.50865e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73882e-06\tAbsError: 1.64565e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.11158e-04\tAbsError: 9.57185e+10\n", + " Region: \"zone_1\"\tRelError: 4.17863e-05\tAbsError: 4.74842e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.16497e-05\tAbsError: 6.09462e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36564e-07\tAbsError: 4.74233e-05\n", + " Region: \"zone_3\"\tRelError: 3.69372e-04\tAbsError: 9.57185e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.25911e-06\tAbsError: 6.70220e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.19571e-06\tAbsError: 2.86965e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.56780e-04\tAbsError: 6.36408e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36564e-07\tAbsError: 4.74233e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.64548e-04\tAbsError: 6.13730e+12\n", + " Region: \"zone_1\"\tRelError: 6.45712e-05\tAbsError: 2.85998e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.37552e-05\tAbsError: 2.31313e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.15960e-07\tAbsError: 2.85767e-04\n", + " Region: \"zone_3\"\tRelError: 9.99767e-05\tAbsError: 6.13730e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.20916e-05\tAbsError: 3.04900e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.53543e-05\tAbsError: 3.08830e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.17148e-05\tAbsError: 2.33098e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.16042e-07\tAbsError: 2.85798e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.09161e-04\tAbsError: 1.86881e+13\n", + " Region: \"zone_1\"\tRelError: 3.26597e-05\tAbsError: 1.87205e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.21288e-05\tAbsError: 4.35351e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.30847e-07\tAbsError: 1.86769e-04\n", + " Region: \"zone_3\"\tRelError: 7.65013e-05\tAbsError: 1.86881e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07377e-05\tAbsError: 9.31169e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.19499e-05\tAbsError: 9.37639e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.32829e-05\tAbsError: 4.37180e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.30847e-07\tAbsError: 1.86769e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.35940e-03\tAbsError: 7.91644e+11\n", + " Region: \"zone_1\"\tRelError: 6.17001e-04\tAbsError: 1.42075e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.16596e-04\tAbsError: 1.18665e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.04748e-07\tAbsError: 1.40888e-04\n", + " Region: \"zone_3\"\tRelError: 7.42401e-04\tAbsError: 7.91644e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00211e-04\tAbsError: 1.88344e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.60094e-05\tAbsError: 6.03301e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.55776e-04\tAbsError: 1.18974e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.04912e-07\tAbsError: 1.40947e-04\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 4.97822e-05\tAbsError: 1.78863e+12\n", + " Region: \"zone_1\"\tRelError: 1.99209e-05\tAbsError: 5.22253e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97720e-05\tAbsError: 7.17372e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48921e-07\tAbsError: 5.21536e-05\n", + " Region: \"zone_3\"\tRelError: 2.98612e-05\tAbsError: 1.78863e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14705e-06\tAbsError: 8.88308e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.32143e-06\tAbsError: 9.00324e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.22438e-05\tAbsError: 7.23110e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48977e-07\tAbsError: 5.21742e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.05534e-04\tAbsError: 4.21784e+10\n", + " Region: \"zone_1\"\tRelError: 1.03068e-05\tAbsError: 4.66453e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02935e-05\tAbsError: 3.88153e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32897e-08\tAbsError: 4.62572e-06\n", + " Region: \"zone_3\"\tRelError: 9.52277e-05\tAbsError: 4.21784e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.05233e-06\tAbsError: 1.53249e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.02568e-06\tAbsError: 2.68535e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.91364e-05\tAbsError: 3.88184e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32960e-08\tAbsError: 4.62800e-06\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.45996e-05\tAbsError: 2.40000e+12\n", + " Region: \"zone_1\"\tRelError: 4.26432e-06\tAbsError: 6.51115e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.07939e-06\tAbsError: 4.99211e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84928e-07\tAbsError: 6.50615e-05\n", + " Region: \"zone_3\"\tRelError: 1.03352e-05\tAbsError: 2.40000e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.62973e-06\tAbsError: 1.19621e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.29508e-06\tAbsError: 1.20379e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22543e-06\tAbsError: 5.01223e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84982e-07\tAbsError: 6.50814e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.02141e-03\tAbsError: 1.23957e+11\n", + " Region: \"zone_1\"\tRelError: 5.52143e-04\tAbsError: 4.11028e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.52024e-04\tAbsError: 7.43261e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18138e-07\tAbsError: 4.10285e-05\n", + " Region: \"zone_3\"\tRelError: 4.69263e-04\tAbsError: 1.23957e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.58109e-06\tAbsError: 8.33431e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.49437e-06\tAbsError: 4.06143e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.50070e-04\tAbsError: 7.83274e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18138e-07\tAbsError: 4.10285e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.56608e-05\tAbsError: 3.69526e+09\n", + " Region: \"zone_1\"\tRelError: 1.59073e-06\tAbsError: 2.18297e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58445e-06\tAbsError: 2.39172e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.27962e-09\tAbsError: 2.18058e-06\n", + " Region: \"zone_3\"\tRelError: 1.40700e-05\tAbsError: 3.69526e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.31303e-07\tAbsError: 2.80779e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.27370e-07\tAbsError: 8.87479e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36051e-05\tAbsError: 2.49316e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.28025e-09\tAbsError: 2.18083e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:26\u001b[0m.\u001b[1;36m725\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:26\u001b[0m.\u001b[1;36m725\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5181818181818182\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:27\u001b[0m.\u001b[1;36m529\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.30911e-04\tAbsError: 3.51442e+10\n", + " Region: \"zone_1\"\tRelError: 6.81885e-05\tAbsError: 6.92614e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.81687e-05\tAbsError: 3.42472e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.97989e-08\tAbsError: 6.89189e-06\n", + " Region: \"zone_3\"\tRelError: 6.27220e-05\tAbsError: 3.51442e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91737e-06\tAbsError: 1.11617e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.89123e-06\tAbsError: 2.39825e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.68936e-05\tAbsError: 3.42673e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98072e-08\tAbsError: 6.89488e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:28\u001b[0m.\u001b[1;36m182\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.27541e+00\tAbsError: 8.60418e+15\n", + " Region: \"zone_1\"\tRelError: 6.58364e+00\tAbsError: 4.18730e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.58364e+00\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.17406e-10\tAbsError: 1.45288e-07\n", + " Region: \"zone_3\"\tRelError: 1.69177e+00\tAbsError: 8.60418e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77453e-01\tAbsError: 5.04627e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.77410e-01\tAbsError: 3.55791e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36912e-01\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.17616e-10\tAbsError: 1.45364e-07\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.91977e-05\tAbsError: 5.89586e+09\n", + " Region: \"zone_1\"\tRelError: 2.66095e-05\tAbsError: 1.68142e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66047e-05\tAbsError: 3.56714e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.83123e-09\tAbsError: 1.67785e-06\n", + " Region: \"zone_3\"\tRelError: 2.25882e-05\tAbsError: 5.89586e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.48785e-07\tAbsError: 4.10020e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.43251e-07\tAbsError: 1.79565e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16913e-05\tAbsError: 3.75397e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.83123e-09\tAbsError: 1.67785e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:28\u001b[0m.\u001b[1;36m716\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.4\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.83363e+00\tAbsError: 8.77764e+14\n", + " Region: \"zone_1\"\tRelError: 3.25771e-01\tAbsError: 7.35950e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.25651e-01\tAbsError: 3.18464e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20135e-04\tAbsError: 4.17486e-02\n", + " Region: \"zone_3\"\tRelError: 1.50785e+00\tAbsError: 8.77764e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.54712e-01\tAbsError: 5.12926e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.40765e-01\tAbsError: 3.64838e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12257e-01\tAbsError: 3.18466e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20135e-04\tAbsError: 4.17486e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.62552e+00\tAbsError: 8.26510e+15\n", + " Region: \"zone_1\"\tRelError: 6.97719e+00\tAbsError: 4.09546e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.97719e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.33437e-10\tAbsError: 3.24924e-07\n", + " Region: \"zone_3\"\tRelError: 1.64833e+00\tAbsError: 8.26510e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69652e-01\tAbsError: 4.84454e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69632e-01\tAbsError: 3.42056e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09044e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.33825e-10\tAbsError: 3.25065e-07\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.23424e+00\tAbsError: 4.42838e+14\n", + " Region: \"zone_1\"\tRelError: 2.36025e-01\tAbsError: 3.39690e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36002e-01\tAbsError: 2.58732e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.32959e-05\tAbsError: 8.09586e-03\n", + " Region: \"zone_3\"\tRelError: 9.98217e-01\tAbsError: 4.42838e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.64238e-01\tAbsError: 2.16900e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.32347e-01\tAbsError: 2.25938e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01608e-01\tAbsError: 2.58503e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.32959e-05\tAbsError: 8.09586e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.56210e+00\tAbsError: 2.88655e+14\n", + " Region: \"zone_1\"\tRelError: 1.01850e-01\tAbsError: 8.11752e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01705e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45044e-04\tAbsError: 5.04116e-02\n", + " Region: \"zone_3\"\tRelError: 1.46025e+00\tAbsError: 2.88655e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39145e-01\tAbsError: 2.10222e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.31918e-01\tAbsError: 7.84329e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.90395e-02\tAbsError: 3.07640e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45044e-04\tAbsError: 5.04116e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.75475e-01\tAbsError: 1.99867e+14\n", + " Region: \"zone_1\"\tRelError: 3.34759e-02\tAbsError: 1.58921e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.34604e-02\tAbsError: 1.05212e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54730e-05\tAbsError: 5.37087e-03\n", + " Region: \"zone_3\"\tRelError: 3.41999e-01\tAbsError: 1.99867e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12024e-01\tAbsError: 8.98614e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.57822e-02\tAbsError: 1.10005e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.41777e-02\tAbsError: 1.05213e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54821e-05\tAbsError: 5.37408e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.02466e+00\tAbsError: 6.04267e+13\n", + " Region: \"zone_1\"\tRelError: 7.18592e-02\tAbsError: 3.22577e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.18409e-02\tAbsError: 2.58878e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83272e-05\tAbsError: 6.36990e-03\n", + " Region: \"zone_3\"\tRelError: 9.52804e-01\tAbsError: 6.04267e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40508e-01\tAbsError: 3.80417e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.10167e-01\tAbsError: 2.23851e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02110e-01\tAbsError: 2.58991e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83272e-05\tAbsError: 6.36990e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.33968e-02\tAbsError: 3.34257e+13\n", + " Region: \"zone_1\"\tRelError: 1.43902e-02\tAbsError: 3.37019e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43809e-02\tAbsError: 1.48707e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.27817e-06\tAbsError: 3.22148e-03\n", + " Region: \"zone_3\"\tRelError: 7.90066e-02\tAbsError: 3.34257e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.13103e-02\tAbsError: 1.91554e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.18326e-03\tAbsError: 1.42703e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15037e-02\tAbsError: 1.58044e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.27817e-06\tAbsError: 3.22148e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.07050e-01\tAbsError: 1.83634e+13\n", + " Region: \"zone_1\"\tRelError: 2.24108e-02\tAbsError: 1.12606e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24048e-02\tAbsError: 9.16557e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.02744e-06\tAbsError: 2.09499e-03\n", + " Region: \"zone_3\"\tRelError: 2.84640e-01\tAbsError: 1.83634e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.09245e-01\tAbsError: 8.86934e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.28005e-02\tAbsError: 9.49405e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25878e-02\tAbsError: 9.16561e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.02994e-06\tAbsError: 2.09586e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.63934e-03\tAbsError: 1.49207e+12\n", + " Region: \"zone_1\"\tRelError: 6.19467e-04\tAbsError: 2.24642e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.18826e-04\tAbsError: 1.84309e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.41085e-07\tAbsError: 2.22799e-04\n", + " Region: \"zone_3\"\tRelError: 3.01987e-03\tAbsError: 1.49207e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.23665e-04\tAbsError: 4.38788e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.32776e-04\tAbsError: 1.05329e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66279e-03\tAbsError: 1.84755e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.41085e-07\tAbsError: 2.22799e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.39650e-02\tAbsError: 2.30731e+12\n", + " Region: \"zone_1\"\tRelError: 9.33244e-04\tAbsError: 2.05118e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.27371e-04\tAbsError: 1.17101e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87337e-06\tAbsError: 2.03947e-03\n", + " Region: \"zone_3\"\tRelError: 6.30318e-02\tAbsError: 2.30731e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.63237e-02\tAbsError: 1.57438e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.61914e-04\tAbsError: 7.32926e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.34034e-03\tAbsError: 1.22701e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87337e-06\tAbsError: 2.03947e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 8.04014e-04\tAbsError: 1.78082e+11\n", + " Region: \"zone_1\"\tRelError: 1.64236e-04\tAbsError: 8.99450e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63978e-04\tAbsError: 1.15245e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58711e-07\tAbsError: 8.98298e-05\n", + " Region: \"zone_3\"\tRelError: 6.39777e-04\tAbsError: 1.78082e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07882e-05\tAbsError: 1.17921e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06608e-05\tAbsError: 6.01615e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.18070e-04\tAbsError: 1.20248e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58802e-07\tAbsError: 8.98625e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.79721e-03\tAbsError: 9.76589e+11\n", + " Region: \"zone_1\"\tRelError: 1.82738e-04\tAbsError: 8.39323e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82502e-04\tAbsError: 1.48235e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36874e-07\tAbsError: 8.24499e-05\n", + " Region: \"zone_3\"\tRelError: 1.61447e-03\tAbsError: 9.76589e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10820e-04\tAbsError: 2.51654e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02342e-04\tAbsError: 7.24935e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40107e-03\tAbsError: 1.48793e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36983e-07\tAbsError: 8.24891e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.88086e-04\tAbsError: 8.35552e+10\n", + " Region: \"zone_1\"\tRelError: 5.73074e-05\tAbsError: 7.74193e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.72853e-05\tAbsError: 5.99789e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20722e-08\tAbsError: 7.68195e-06\n", + " Region: \"zone_3\"\tRelError: 2.30778e-04\tAbsError: 8.35552e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.19425e-06\tAbsError: 3.65804e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.15002e-06\tAbsError: 4.69748e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20412e-04\tAbsError: 6.12813e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20814e-08\tAbsError: 7.68536e-06\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.68582e-04\tAbsError: 6.39514e+10\n", + " Region: \"zone_1\"\tRelError: 3.10151e-05\tAbsError: 5.94800e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.08440e-05\tAbsError: 4.08298e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71164e-07\tAbsError: 5.94392e-05\n", + " Region: \"zone_3\"\tRelError: 2.37567e-04\tAbsError: 6.39514e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16150e-06\tAbsError: 5.01904e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.80228e-06\tAbsError: 1.37610e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29432e-04\tAbsError: 4.25523e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71229e-07\tAbsError: 5.94601e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.80999e-05\tAbsError: 6.55525e+09\n", + " Region: \"zone_1\"\tRelError: 5.74155e-06\tAbsError: 4.57456e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.72840e-06\tAbsError: 4.04596e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31523e-08\tAbsError: 4.57052e-06\n", + " Region: \"zone_3\"\tRelError: 2.23583e-05\tAbsError: 6.55525e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.58194e-07\tAbsError: 4.71867e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.45841e-07\tAbsError: 1.83658e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16411e-05\tAbsError: 4.21062e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31539e-08\tAbsError: 4.57114e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:36\u001b[0m.\u001b[1;36m356\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:36\u001b[0m.\u001b[1;36m356\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6227272727272727\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.61549e-04\tAbsError: 5.47840e+10\n", + " Region: \"zone_1\"\tRelError: 1.81900e-05\tAbsError: 1.93945e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81846e-05\tAbsError: 4.89694e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43105e-09\tAbsError: 1.89048e-06\n", + " Region: \"zone_3\"\tRelError: 1.43359e-04\tAbsError: 5.47840e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.04114e-06\tAbsError: 2.20323e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.00674e-06\tAbsError: 3.27517e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35306e-04\tAbsError: 4.90033e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43421e-09\tAbsError: 1.89162e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.73597e+00\tAbsError: 8.78832e+15\n", + " Region: \"zone_1\"\tRelError: 4.00235e+00\tAbsError: 4.18730e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.00235e+00\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.45782e-10\tAbsError: 1.89960e-07\n", + " Region: \"zone_3\"\tRelError: 1.73361e+00\tAbsError: 8.78832e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77399e-01\tAbsError: 4.74842e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.77278e-01\tAbsError: 4.03990e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78937e-01\tAbsError: 4.18729e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.46049e-10\tAbsError: 1.90057e-07\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.55715e-06\tAbsError: 1.55369e+09\n", + " Region: \"zone_1\"\tRelError: 2.75443e-07\tAbsError: 3.15707e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66361e-07\tAbsError: 7.16801e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.08162e-09\tAbsError: 3.15635e-06\n", + " Region: \"zone_3\"\tRelError: 2.28171e-06\tAbsError: 1.55369e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01860e-07\tAbsError: 1.23171e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.92720e-08\tAbsError: 3.21980e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.10150e-06\tAbsError: 7.37244e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.08225e-09\tAbsError: 3.15662e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:38\u001b[0m.\u001b[1;36m102\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.5\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.94703e+00\tAbsError: 4.41099e+15\n", + " Region: \"zone_1\"\tRelError: 4.22002e-01\tAbsError: 6.98420e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.21892e-01\tAbsError: 3.18463e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09347e-04\tAbsError: 3.79957e-02\n", + " Region: \"zone_3\"\tRelError: 1.52503e+00\tAbsError: 4.41099e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53305e-01\tAbsError: 2.09959e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.26550e-01\tAbsError: 2.31140e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45067e-01\tAbsError: 3.18463e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09347e-04\tAbsError: 3.79957e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.44671e+02\tAbsError: 8.23352e+15\n", + " Region: \"zone_1\"\tRelError: 5.43003e+02\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.43003e+02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.11267e-10\tAbsError: 1.43080e-07\n", + " Region: \"zone_3\"\tRelError: 1.66763e+00\tAbsError: 8.23352e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.84587e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69628e-01\tAbsError: 3.38765e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28340e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.11422e-10\tAbsError: 1.43134e-07\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.13342e+00\tAbsError: 3.16052e+15\n", + " Region: \"zone_1\"\tRelError: 1.20914e-01\tAbsError: 3.06036e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20901e-01\tAbsError: 2.58438e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36978e-05\tAbsError: 4.75979e-03\n", + " Region: \"zone_3\"\tRelError: 1.01250e+00\tAbsError: 3.16052e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.67125e-01\tAbsError: 1.44537e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.15620e-01\tAbsError: 1.71514e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29744e-01\tAbsError: 2.58330e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36978e-05\tAbsError: 4.75979e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.93663e+00\tAbsError: 6.37428e+14\n", + " Region: \"zone_1\"\tRelError: 3.46019e+00\tAbsError: 7.21476e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.46007e+00\tAbsError: 3.07635e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", + " Region: \"zone_3\"\tRelError: 1.47644e+00\tAbsError: 6.37428e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40577e-01\tAbsError: 3.72575e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.27797e-01\tAbsError: 2.64853e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07947e-01\tAbsError: 3.07638e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.87423e-01\tAbsError: 1.06489e+15\n", + " Region: \"zone_1\"\tRelError: 1.09495e-01\tAbsError: 3.11412e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09436e-01\tAbsError: 1.05215e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.93454e-05\tAbsError: 2.06197e-02\n", + " Region: \"zone_3\"\tRelError: 3.77927e-01\tAbsError: 1.06489e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07715e-01\tAbsError: 5.65159e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.28724e-01\tAbsError: 4.99726e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.14286e-02\tAbsError: 1.05216e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.93454e-05\tAbsError: 2.06197e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.95431e+00\tAbsError: 2.96317e+14\n", + " Region: \"zone_1\"\tRelError: 2.00902e+00\tAbsError: 3.34445e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.00900e+00\tAbsError: 2.58782e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", + " Region: \"zone_3\"\tRelError: 9.45295e-01\tAbsError: 2.96317e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42034e-01\tAbsError: 1.59420e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.10683e-01\tAbsError: 1.36896e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.25558e-02\tAbsError: 2.58843e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.07124e-01\tAbsError: 1.79033e+14\n", + " Region: \"zone_1\"\tRelError: 6.54489e-03\tAbsError: 2.11446e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.48449e-03\tAbsError: 1.76026e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.03999e-05\tAbsError: 2.09686e-02\n", + " Region: \"zone_3\"\tRelError: 1.00579e-01\tAbsError: 1.79033e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.05426e-02\tAbsError: 1.01224e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.72982e-03\tAbsError: 7.78084e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.12463e-02\tAbsError: 1.83300e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.03999e-05\tAbsError: 2.09686e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.90232e-01\tAbsError: 1.27257e+14\n", + " Region: \"zone_1\"\tRelError: 2.88169e-01\tAbsError: 1.34324e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88157e-01\tAbsError: 9.16559e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22923e-05\tAbsError: 4.26682e-03\n", + " Region: \"zone_3\"\tRelError: 3.02062e-01\tAbsError: 1.27257e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98145e-01\tAbsError: 5.59682e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.53461e-02\tAbsError: 7.12890e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.85587e-02\tAbsError: 9.16563e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22942e-05\tAbsError: 4.26755e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.37034e-02\tAbsError: 1.05074e+13\n", + " Region: \"zone_1\"\tRelError: 2.67000e-03\tAbsError: 2.16848e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66940e-03\tAbsError: 9.03313e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.97153e-07\tAbsError: 2.07815e-04\n", + " Region: \"zone_3\"\tRelError: 3.10334e-02\tAbsError: 1.05074e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.29413e-04\tAbsError: 4.14886e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.45066e-04\tAbsError: 6.35852e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.94584e-02\tAbsError: 9.20156e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.97452e-07\tAbsError: 2.07924e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.81369e-01\tAbsError: 1.65118e+13\n", + " Region: \"zone_1\"\tRelError: 1.13683e-01\tAbsError: 2.48930e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13676e-01\tAbsError: 7.97182e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", + " Region: \"zone_3\"\tRelError: 6.76863e-02\tAbsError: 1.65118e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.50220e-02\tAbsError: 9.05581e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.84537e-03\tAbsError: 7.45604e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.81196e-03\tAbsError: 8.36703e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.09660e-04\tAbsError: 2.08695e+11\n", + " Region: \"zone_1\"\tRelError: 2.47254e-05\tAbsError: 6.86063e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27511e-05\tAbsError: 1.43700e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.97427e-06\tAbsError: 6.85919e-04\n", + " Region: \"zone_3\"\tRelError: 2.84935e-04\tAbsError: 2.08695e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.17199e-05\tAbsError: 1.45019e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.68171e-06\tAbsError: 6.36760e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66559e-04\tAbsError: 1.45320e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.97428e-06\tAbsError: 6.85933e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.11615e-03\tAbsError: 1.08851e+12\n", + " Region: \"zone_1\"\tRelError: 5.30759e-03\tAbsError: 1.67972e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.30711e-03\tAbsError: 1.45981e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", + " Region: \"zone_3\"\tRelError: 1.80856e-03\tAbsError: 1.08851e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43945e-04\tAbsError: 2.92186e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.94756e-05\tAbsError: 7.96320e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56466e-03\tAbsError: 1.47422e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.68055e-03\tAbsError: 6.61369e+11\n", + " Region: \"zone_1\"\tRelError: 2.19776e-04\tAbsError: 3.52770e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19675e-04\tAbsError: 3.47259e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00615e-07\tAbsError: 3.49297e-05\n", + " Region: \"zone_3\"\tRelError: 2.46078e-03\tAbsError: 6.61369e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.38712e-05\tAbsError: 3.34135e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.37692e-05\tAbsError: 3.27234e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39304e-03\tAbsError: 3.62329e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00635e-07\tAbsError: 3.49373e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.59900e-03\tAbsError: 1.40711e+11\n", + " Region: \"zone_1\"\tRelError: 2.06948e-03\tAbsError: 6.41578e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06929e-03\tAbsError: 9.09489e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84503e-07\tAbsError: 6.40668e-05\n", + " Region: \"zone_3\"\tRelError: 5.29527e-04\tAbsError: 1.40711e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.39801e-06\tAbsError: 9.47438e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.30618e-06\tAbsError: 4.59674e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.12638e-04\tAbsError: 9.48359e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84568e-07\tAbsError: 6.40878e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.17224e-04\tAbsError: 3.34541e+10\n", + " Region: \"zone_1\"\tRelError: 1.80302e-05\tAbsError: 4.24293e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79082e-05\tAbsError: 2.16023e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22054e-07\tAbsError: 4.24077e-05\n", + " Region: \"zone_3\"\tRelError: 1.99194e-04\tAbsError: 3.34541e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95013e-06\tAbsError: 1.55599e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.97435e-06\tAbsError: 1.78942e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95147e-04\tAbsError: 2.25328e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22102e-07\tAbsError: 4.24242e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.84757e-04\tAbsError: 5.79872e+10\n", + " Region: \"zone_1\"\tRelError: 5.39232e-04\tAbsError: 6.69464e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.39213e-04\tAbsError: 4.49143e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91058e-08\tAbsError: 6.64972e-06\n", + " Region: \"zone_3\"\tRelError: 1.45525e-04\tAbsError: 5.79872e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.71562e-06\tAbsError: 2.34463e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.68397e-06\tAbsError: 3.45410e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38106e-04\tAbsError: 4.56915e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91137e-08\tAbsError: 6.65261e-06\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.92407e-04\tAbsError: 4.16681e+10\n", + " Region: \"zone_1\"\tRelError: 1.58767e-05\tAbsError: 4.74333e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58631e-05\tAbsError: 1.99539e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35944e-08\tAbsError: 4.72338e-06\n", + " Region: \"zone_3\"\tRelError: 1.76530e-04\tAbsError: 4.16681e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.06328e-06\tAbsError: 2.34690e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.05628e-06\tAbsError: 1.81991e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72397e-04\tAbsError: 2.11694e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35985e-08\tAbsError: 4.72481e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.02364e-04\tAbsError: 5.62248e+09\n", + " Region: \"zone_1\"\tRelError: 8.15379e-05\tAbsError: 3.03368e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.15291e-05\tAbsError: 3.57289e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.71937e-09\tAbsError: 3.03011e-06\n", + " Region: \"zone_3\"\tRelError: 2.08260e-05\tAbsError: 5.62248e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14319e-07\tAbsError: 4.05602e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.09034e-07\tAbsError: 1.56647e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01939e-05\tAbsError: 3.71851e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.71944e-09\tAbsError: 3.03019e-06\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.66442e-05\tAbsError: 4.51828e+09\n", + " Region: \"zone_1\"\tRelError: 2.21134e-06\tAbsError: 2.88818e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20303e-06\tAbsError: 2.43029e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.30553e-09\tAbsError: 2.88575e-06\n", + " Region: \"zone_3\"\tRelError: 2.44328e-05\tAbsError: 4.51828e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.39512e-07\tAbsError: 2.57717e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.40681e-07\tAbsError: 1.94111e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39443e-05\tAbsError: 2.56001e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.30706e-09\tAbsError: 2.88629e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:47\u001b[0m.\u001b[1;36m839\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:47\u001b[0m.\u001b[1;36m839\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7272727272727272\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.62671e-05\tAbsError: 3.10481e+09\n", + " Region: \"zone_1\"\tRelError: 3.66806e-05\tAbsError: 2.21724e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 3.66799e-05\tAbsError: 2.06476e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.31104e-10\tAbsError: 2.19659e-07\n", + " Region: \"zone_3\"\tRelError: 9.58659e-06\tAbsError: 3.10481e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88628e-07\tAbsError: 1.51763e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.86687e-07\tAbsError: 1.58718e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.21065e-06\tAbsError: 2.10348e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.31398e-10\tAbsError: 2.19764e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:48\u001b[0m.\u001b[1;36m517\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.6\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.28678e+01\tAbsError: 2.41720e+16\n", + " Region: \"zone_1\"\tRelError: 1.10745e+01\tAbsError: 4.18733e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10745e+01\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35235e-09\tAbsError: 4.69873e-07\n", + " Region: \"zone_3\"\tRelError: 1.79337e+00\tAbsError: 2.41720e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.76842e-01\tAbsError: 1.21471e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.76445e-01\tAbsError: 1.20250e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.40077e-01\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35254e-09\tAbsError: 4.69938e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.94073e+01\tAbsError: 8.32958e+15\n", + " Region: \"zone_1\"\tRelError: 1.77016e+01\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77016e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.06764e-10\tAbsError: 1.76108e-07\n", + " Region: \"zone_3\"\tRelError: 1.70569e+00\tAbsError: 8.32958e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69637e-01\tAbsError: 4.59097e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69532e-01\tAbsError: 3.73860e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66519e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.06930e-10\tAbsError: 1.76171e-07\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.81152e+00\tAbsError: 2.51170e+16\n", + " Region: \"zone_1\"\tRelError: 2.40084e-01\tAbsError: 1.36620e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39783e-01\tAbsError: 3.18461e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.01653e-04\tAbsError: 1.04774e-01\n", + " Region: \"zone_3\"\tRelError: 1.57143e+00\tAbsError: 2.51170e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.50352e-01\tAbsError: 1.24519e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.16673e-01\tAbsError: 1.26651e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04104e-01\tAbsError: 3.18461e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.01653e-04\tAbsError: 1.04774e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.07616e+01\tAbsError: 3.02291e+15\n", + " Region: \"zone_1\"\tRelError: 9.27113e+00\tAbsError: 6.52674e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.27103e+00\tAbsError: 3.07634e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.92954e-05\tAbsError: 3.45040e-02\n", + " Region: \"zone_3\"\tRelError: 1.49044e+00\tAbsError: 3.02291e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40308e-01\tAbsError: 1.49698e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.14159e-01\tAbsError: 1.52592e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35875e-01\tAbsError: 3.07635e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.92954e-05\tAbsError: 3.45040e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.55235e+00\tAbsError: 1.60967e+16\n", + " Region: \"zone_1\"\tRelError: 3.10275e-01\tAbsError: 9.21671e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.10084e-01\tAbsError: 2.58591e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.90943e-04\tAbsError: 6.63081e-02\n", + " Region: \"zone_3\"\tRelError: 1.24207e+00\tAbsError: 1.60967e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.62478e-01\tAbsError: 7.99951e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.11305e-01\tAbsError: 8.09715e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.68101e-01\tAbsError: 2.52301e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.90943e-04\tAbsError: 6.63081e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.22732e+00\tAbsError: 2.06865e+15\n", + " Region: \"zone_1\"\tRelError: 2.78568e-01\tAbsError: 2.74627e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78563e-01\tAbsError: 2.58185e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73142e-06\tAbsError: 1.64416e-03\n", + " Region: \"zone_3\"\tRelError: 9.48751e-01\tAbsError: 2.06865e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.44918e-01\tAbsError: 9.02348e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.89155e-01\tAbsError: 1.16630e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14673e-01\tAbsError: 2.51147e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73142e-06\tAbsError: 1.64416e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 9.12966e-01\tAbsError: 4.93027e+15\n", + " Region: \"zone_1\"\tRelError: 3.16482e-01\tAbsError: 3.26469e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.16418e-01\tAbsError: 1.05209e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.37165e-05\tAbsError: 2.21260e-02\n", + " Region: \"zone_3\"\tRelError: 5.96484e-01\tAbsError: 4.93027e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.96829e-01\tAbsError: 2.70578e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.18110e-01\tAbsError: 2.22449e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.81481e-01\tAbsError: 1.05209e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.37165e-05\tAbsError: 2.21260e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.18897e+00\tAbsError: 6.29402e+14\n", + " Region: \"zone_1\"\tRelError: 6.86170e+00\tAbsError: 2.22868e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.86166e+00\tAbsError: 9.16572e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77613e-05\tAbsError: 1.31211e-02\n", + " Region: \"zone_3\"\tRelError: 3.27267e-01\tAbsError: 6.29402e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84319e-01\tAbsError: 3.28649e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.08857e-01\tAbsError: 3.00753e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40527e-02\tAbsError: 9.16579e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77613e-05\tAbsError: 1.31211e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.73417e-01\tAbsError: 1.11041e+15\n", + " Region: \"zone_1\"\tRelError: 1.30194e-02\tAbsError: 1.66649e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25399e-02\tAbsError: 2.99019e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.79500e-04\tAbsError: 1.66350e-01\n", + " Region: \"zone_3\"\tRelError: 1.60398e-01\tAbsError: 1.11041e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.88743e-02\tAbsError: 4.52060e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.61195e-02\tAbsError: 6.58351e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.49232e-02\tAbsError: 3.25903e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.80894e-04\tAbsError: 1.66829e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.42105e-01\tAbsError: 9.57843e+13\n", + " Region: \"zone_1\"\tRelError: 5.64317e-01\tAbsError: 1.44974e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.64276e-01\tAbsError: 1.24104e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14024e-05\tAbsError: 1.43733e-02\n", + " Region: \"zone_3\"\tRelError: 7.77880e-02\tAbsError: 9.57843e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.25473e-02\tAbsError: 4.71405e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.65020e-03\tAbsError: 4.86438e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95491e-02\tAbsError: 1.28397e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14024e-05\tAbsError: 1.43733e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.67871e-01\tAbsError: 1.71023e+14\n", + " Region: \"zone_1\"\tRelError: 1.13573e-01\tAbsError: 1.02796e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13544e-01\tAbsError: 5.49352e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94716e-05\tAbsError: 1.02247e-02\n", + " Region: \"zone_3\"\tRelError: 6.54297e-01\tAbsError: 1.71023e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.30590e-03\tAbsError: 8.58374e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.13746e-03\tAbsError: 8.51855e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.45825e-01\tAbsError: 5.53316e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94949e-05\tAbsError: 1.02325e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.36557e-01\tAbsError: 7.18470e+12\n", + " Region: \"zone_1\"\tRelError: 1.16158e-01\tAbsError: 1.78279e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16157e-01\tAbsError: 6.59165e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.94530e-07\tAbsError: 1.71687e-04\n", + " Region: \"zone_3\"\tRelError: 2.03993e-02\tAbsError: 7.18470e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.98223e-04\tAbsError: 2.78831e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.37326e-04\tAbsError: 4.39639e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92632e-02\tAbsError: 6.83641e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.94530e-07\tAbsError: 1.71687e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 8.66150e-02\tAbsError: 1.31466e+13\n", + " Region: \"zone_1\"\tRelError: 1.39621e-02\tAbsError: 5.12705e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39474e-02\tAbsError: 4.18122e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47663e-05\tAbsError: 5.12287e-03\n", + " Region: \"zone_3\"\tRelError: 7.26529e-02\tAbsError: 1.31466e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.21405e-04\tAbsError: 6.60915e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.25654e-04\tAbsError: 6.53741e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.19911e-02\tAbsError: 4.31922e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47687e-05\tAbsError: 5.12379e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.13498e-03\tAbsError: 1.41105e+11\n", + " Region: \"zone_1\"\tRelError: 2.73398e-03\tAbsError: 4.76357e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73260e-03\tAbsError: 1.35633e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37060e-06\tAbsError: 4.76221e-04\n", + " Region: \"zone_3\"\tRelError: 4.01007e-04\tAbsError: 1.41105e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.96062e-06\tAbsError: 6.85210e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.81427e-06\tAbsError: 7.25836e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87862e-04\tAbsError: 1.38229e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37060e-06\tAbsError: 4.76221e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.10896e-02\tAbsError: 8.02079e+12\n", + " Region: \"zone_1\"\tRelError: 9.41575e-03\tAbsError: 6.68589e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.41383e-03\tAbsError: 2.13817e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91987e-06\tAbsError: 6.66451e-04\n", + " Region: \"zone_3\"\tRelError: 5.16738e-02\tAbsError: 8.02079e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.96956e-04\tAbsError: 4.03346e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.95510e-04\tAbsError: 3.98733e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.12794e-02\tAbsError: 2.27733e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.92042e-06\tAbsError: 6.66662e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.31814e-02\tAbsError: 4.58362e+11\n", + " Region: \"zone_1\"\tRelError: 1.15315e-02\tAbsError: 2.80900e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15314e-02\tAbsError: 2.57528e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.01667e-08\tAbsError: 2.78324e-05\n", + " Region: \"zone_3\"\tRelError: 1.64997e-03\tAbsError: 4.58362e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47024e-05\tAbsError: 2.30121e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.45967e-05\tAbsError: 2.28241e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60059e-03\tAbsError: 2.62890e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.01667e-08\tAbsError: 2.78324e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 9.90143e-03\tAbsError: 1.08924e+12\n", + " Region: \"zone_1\"\tRelError: 1.54299e-03\tAbsError: 3.21984e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54206e-03\tAbsError: 2.77661e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.26693e-07\tAbsError: 3.21707e-04\n", + " Region: \"zone_3\"\tRelError: 8.35844e-03\tAbsError: 1.08924e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.68262e-05\tAbsError: 5.46733e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.66605e-05\tAbsError: 5.42503e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.30402e-03\tAbsError: 2.99268e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.26885e-07\tAbsError: 3.21773e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.25913e-03\tAbsError: 2.71128e+10\n", + " Region: \"zone_1\"\tRelError: 1.10973e-03\tAbsError: 2.99279e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10965e-03\tAbsError: 1.77983e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.60783e-08\tAbsError: 2.99101e-05\n", + " Region: \"zone_3\"\tRelError: 1.49391e-04\tAbsError: 2.71128e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61984e-06\tAbsError: 1.29863e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.63350e-06\tAbsError: 1.41265e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46052e-04\tAbsError: 1.82225e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.61134e-08\tAbsError: 2.99224e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.42186e-03\tAbsError: 4.98160e+11\n", + " Region: \"zone_1\"\tRelError: 6.86933e-04\tAbsError: 5.78872e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.86767e-04\tAbsError: 1.23785e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66172e-07\tAbsError: 5.77634e-05\n", + " Region: \"zone_3\"\tRelError: 3.73493e-03\tAbsError: 4.98160e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.22855e-05\tAbsError: 2.50372e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.21426e-05\tAbsError: 2.47788e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.71034e-03\tAbsError: 1.33015e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66188e-07\tAbsError: 5.77856e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 9.89584e-04\tAbsError: 2.93050e+10\n", + " Region: \"zone_1\"\tRelError: 8.69289e-04\tAbsError: 3.58476e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.69279e-04\tAbsError: 1.49163e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02736e-08\tAbsError: 3.56984e-06\n", + " Region: \"zone_3\"\tRelError: 1.20295e-04\tAbsError: 2.93050e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52554e-06\tAbsError: 1.64489e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.51838e-06\tAbsError: 1.28561e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17241e-04\tAbsError: 1.55101e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02768e-08\tAbsError: 3.57094e-06\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 8.77845e-04\tAbsError: 9.00104e+10\n", + " Region: \"zone_1\"\tRelError: 1.36631e-04\tAbsError: 2.25392e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36566e-04\tAbsError: 2.33969e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.47310e-08\tAbsError: 2.25158e-05\n", + " Region: \"zone_3\"\tRelError: 7.41215e-04\tAbsError: 9.00104e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.22024e-06\tAbsError: 4.51658e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.19948e-06\tAbsError: 4.48447e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.36730e-04\tAbsError: 2.51096e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.47572e-08\tAbsError: 2.25252e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.48739e-04\tAbsError: 3.41314e+09\n", + " Region: \"zone_1\"\tRelError: 1.31134e-04\tAbsError: 2.06494e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31128e-04\tAbsError: 1.91971e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.93716e-09\tAbsError: 2.06302e-06\n", + " Region: \"zone_3\"\tRelError: 1.76048e-05\tAbsError: 3.41314e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88514e-07\tAbsError: 1.94837e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.89063e-07\tAbsError: 1.46477e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72213e-05\tAbsError: 1.99642e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.93836e-09\tAbsError: 2.06344e-06\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 3.17998e-04\tAbsError: 3.34676e+10\n", + " Region: \"zone_1\"\tRelError: 4.94909e-05\tAbsError: 4.79910e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.94771e-05\tAbsError: 8.85122e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37715e-08\tAbsError: 4.79025e-06\n", + " Region: \"zone_3\"\tRelError: 2.68507e-04\tAbsError: 3.34676e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.26317e-07\tAbsError: 1.68128e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.15644e-07\tAbsError: 1.66549e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66852e-04\tAbsError: 9.45123e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37769e-08\tAbsError: 4.79218e-06\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 7.33109e-05\tAbsError: 1.99171e+09\n", + " Region: \"zone_1\"\tRelError: 6.45108e-05\tAbsError: 3.50573e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 6.45098e-05\tAbsError: 1.06453e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00585e-09\tAbsError: 3.49509e-07\n", + " Region: \"zone_3\"\tRelError: 8.80008e-06\tAbsError: 1.99171e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03719e-07\tAbsError: 1.17952e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03272e-07\tAbsError: 8.12184e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 8.59208e-06\tAbsError: 1.10473e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00600e-09\tAbsError: 3.49562e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:00\u001b[0m.\u001b[1;36m749\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.7\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 7.13061e-05\tAbsError: 7.12270e+09\n", + " Region: \"zone_1\"\tRelError: 1.11041e-05\tAbsError: 1.61505e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10995e-05\tAbsError: 1.92666e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.63760e-09\tAbsError: 1.61313e-06\n", + " Region: \"zone_3\"\tRelError: 6.02020e-05\tAbsError: 7.12270e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.75816e-07\tAbsError: 3.57407e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.73885e-07\tAbsError: 3.54864e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.98477e-05\tAbsError: 2.05662e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.63937e-09\tAbsError: 1.61378e-06\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:00\u001b[0m.\u001b[1;36m890\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:00\u001b[0m.\u001b[1;36m890\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.8318181818181818\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.94222e+01\tAbsError: 1.62190e+16\n", + " Region: \"zone_1\"\tRelError: 2.76662e+01\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76662e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.29578e-10\tAbsError: 1.49268e-07\n", + " Region: \"zone_3\"\tRelError: 1.75598e+00\tAbsError: 1.62190e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69267e-01\tAbsError: 8.18784e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.68971e-01\tAbsError: 8.03117e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17740e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.29628e-10\tAbsError: 1.49286e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.48214e+01\tAbsError: 1.27161e+17\n", + " Region: \"zone_1\"\tRelError: 4.16643e+01\tAbsError: 4.18732e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.16643e+01\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08576e-09\tAbsError: 3.77666e-07\n", + " Region: \"zone_3\"\tRelError: 3.15707e+00\tAbsError: 1.27161e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.72955e-01\tAbsError: 6.38462e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.70759e-01\tAbsError: 6.33149e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61336e+00\tAbsError: 4.18729e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08617e-09\tAbsError: 3.77819e-07\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.57455e+00\tAbsError: 1.59389e+16\n", + " Region: \"zone_1\"\tRelError: 1.04759e+00\tAbsError: 1.06162e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04737e+00\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17045e-04\tAbsError: 7.53990e-02\n", + " Region: \"zone_3\"\tRelError: 1.52696e+00\tAbsError: 1.59389e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37511e-01\tAbsError: 7.87332e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.04735e-01\tAbsError: 8.06553e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84502e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17045e-04\tAbsError: 7.53990e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.41302e+00\tAbsError: 1.17930e+17\n", + " Region: \"zone_1\"\tRelError: 3.44060e-01\tAbsError: 3.41507e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.43167e-01\tAbsError: 3.18461e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.92830e-04\tAbsError: 3.09661e-01\n", + " Region: \"zone_3\"\tRelError: 3.06896e+00\tAbsError: 1.17930e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.33886e-01\tAbsError: 5.94093e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.85749e-01\tAbsError: 5.85208e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74843e+00\tAbsError: 3.18461e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.93043e-04\tAbsError: 3.09742e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.14822e+00\tAbsError: 9.83178e+15\n", + " Region: \"zone_1\"\tRelError: 1.39457e-01\tAbsError: 7.32841e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39320e-01\tAbsError: 2.58400e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36592e-04\tAbsError: 4.74441e-02\n", + " Region: \"zone_3\"\tRelError: 1.00877e+00\tAbsError: 9.83178e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43427e-01\tAbsError: 4.83336e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.90483e-01\tAbsError: 4.99841e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74720e-01\tAbsError: 2.58193e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36592e-04\tAbsError: 4.74441e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 5.86698e+00\tAbsError: 7.50678e+16\n", + " Region: \"zone_1\"\tRelError: 3.54477e+00\tAbsError: 5.54414e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.54468e+00\tAbsError: 2.58460e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.53345e-05\tAbsError: 2.95954e-02\n", + " Region: \"zone_3\"\tRelError: 2.32221e+00\tAbsError: 7.50678e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.14936e-01\tAbsError: 3.85162e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.28711e-01\tAbsError: 3.65517e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57848e+00\tAbsError: 2.37733e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.53345e-05\tAbsError: 2.95954e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 9.17087e-01\tAbsError: 2.70112e+15\n", + " Region: \"zone_1\"\tRelError: 4.13278e-01\tAbsError: 1.18036e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.12964e-01\tAbsError: 9.16529e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.13541e-04\tAbsError: 1.08871e-01\n", + " Region: \"zone_3\"\tRelError: 5.03809e-01\tAbsError: 2.70112e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.83333e-01\tAbsError: 1.43386e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03452e-01\tAbsError: 1.26726e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16711e-01\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.13541e-04\tAbsError: 1.08871e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.49512e+00\tAbsError: 2.22343e+16\n", + " Region: \"zone_1\"\tRelError: 7.22230e-01\tAbsError: 5.29663e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.22108e-01\tAbsError: 1.05208e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22416e-04\tAbsError: 4.24455e-02\n", + " Region: \"zone_3\"\tRelError: 7.72890e-01\tAbsError: 2.22343e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.48169e-01\tAbsError: 1.15801e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.09555e-02\tAbsError: 1.06542e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.53643e-01\tAbsError: 1.05209e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22416e-04\tAbsError: 4.24455e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.27279e-01\tAbsError: 8.17053e+14\n", + " Region: \"zone_1\"\tRelError: 1.09940e-01\tAbsError: 2.21034e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09304e-01\tAbsError: 3.29075e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.36020e-04\tAbsError: 2.20705e-01\n", + " Region: \"zone_3\"\tRelError: 3.17339e-01\tAbsError: 8.17053e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.72653e-02\tAbsError: 1.99598e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.68899e-02\tAbsError: 6.17455e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42547e-01\tAbsError: 3.29140e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.36020e-04\tAbsError: 2.20705e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.24776e-01\tAbsError: 3.73586e+15\n", + " Region: \"zone_1\"\tRelError: 7.45352e-02\tAbsError: 3.03331e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.36605e-02\tAbsError: 2.36141e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.74683e-04\tAbsError: 3.03094e-01\n", + " Region: \"zone_3\"\tRelError: 5.02411e-02\tAbsError: 3.73586e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.75032e-02\tAbsError: 1.96426e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.84727e-03\tAbsError: 1.77160e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40144e-02\tAbsError: 2.68517e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.76136e-04\tAbsError: 3.03589e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.01035e-01\tAbsError: 1.64733e+14\n", + " Region: \"zone_1\"\tRelError: 2.03094e-01\tAbsError: 1.60100e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03048e-01\tAbsError: 7.96658e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.59052e-05\tAbsError: 1.59303e-02\n", + " Region: \"zone_3\"\tRelError: 4.97941e-01\tAbsError: 1.64733e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17881e-03\tAbsError: 7.88164e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.07895e-03\tAbsError: 8.59168e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.85637e-01\tAbsError: 8.00849e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.59052e-05\tAbsError: 1.59303e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.51962e-01\tAbsError: 9.20112e+14\n", + " Region: \"zone_1\"\tRelError: 9.61216e-02\tAbsError: 1.85870e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.60682e-02\tAbsError: 5.78211e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.34689e-05\tAbsError: 1.85292e-02\n", + " Region: \"zone_3\"\tRelError: 5.55840e-01\tAbsError: 9.20112e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.53243e-03\tAbsError: 4.43917e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.69520e-03\tAbsError: 4.76195e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.48559e-01\tAbsError: 5.87235e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.34733e-05\tAbsError: 1.85300e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.04323e-01\tAbsError: 1.53102e+13\n", + " Region: \"zone_1\"\tRelError: 3.15774e-02\tAbsError: 7.15567e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.15568e-02\tAbsError: 7.10876e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.05999e-05\tAbsError: 7.14856e-03\n", + " Region: \"zone_3\"\tRelError: 7.27454e-02\tAbsError: 1.53102e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94207e-04\tAbsError: 7.65839e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.98721e-04\tAbsError: 7.65181e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.15319e-02\tAbsError: 7.17354e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.06009e-05\tAbsError: 7.14900e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.71590e-02\tAbsError: 7.66261e+13\n", + " Region: \"zone_1\"\tRelError: 1.20009e-02\tAbsError: 8.30452e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19770e-02\tAbsError: 5.27249e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39494e-05\tAbsError: 8.29925e-03\n", + " Region: \"zone_3\"\tRelError: 6.51581e-02\tAbsError: 7.66261e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.06580e-04\tAbsError: 3.73072e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.04337e-04\tAbsError: 3.93189e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.45233e-02\tAbsError: 5.30950e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39514e-05\tAbsError: 8.29962e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.82885e-02\tAbsError: 7.75343e+12\n", + " Region: \"zone_1\"\tRelError: 1.74263e-02\tAbsError: 1.11082e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74231e-02\tAbsError: 3.27682e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.18949e-06\tAbsError: 1.10754e-03\n", + " Region: \"zone_3\"\tRelError: 4.08622e-02\tAbsError: 7.75343e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.01160e-04\tAbsError: 3.88269e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.99390e-04\tAbsError: 3.87074e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.02585e-02\tAbsError: 3.34987e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.19059e-06\tAbsError: 1.10796e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.06377e-02\tAbsError: 4.36188e+13\n", + " Region: \"zone_1\"\tRelError: 7.66673e-03\tAbsError: 1.05621e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.66369e-03\tAbsError: 2.82677e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.03907e-06\tAbsError: 1.05338e-03\n", + " Region: \"zone_3\"\tRelError: 4.29710e-02\tAbsError: 4.36188e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.90527e-04\tAbsError: 2.12589e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.78772e-04\tAbsError: 2.23599e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.25987e-02\tAbsError: 2.84898e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.04014e-06\tAbsError: 1.05370e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.09210e-02\tAbsError: 1.22286e+12\n", + " Region: \"zone_1\"\tRelError: 3.28469e-03\tAbsError: 4.72819e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.28333e-03\tAbsError: 4.87030e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36013e-06\tAbsError: 4.72332e-04\n", + " Region: \"zone_3\"\tRelError: 7.63634e-03\tAbsError: 1.22286e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.75678e-05\tAbsError: 6.11672e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.73305e-05\tAbsError: 6.11193e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.54008e-03\tAbsError: 5.02425e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36049e-06\tAbsError: 4.72455e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 8.26317e-03\tAbsError: 5.97645e+12\n", + " Region: \"zone_1\"\tRelError: 1.26006e-03\tAbsError: 4.95200e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25864e-03\tAbsError: 3.70328e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42381e-06\tAbsError: 4.94829e-04\n", + " Region: \"zone_3\"\tRelError: 7.00311e-03\tAbsError: 5.97645e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.57319e-05\tAbsError: 2.91052e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.41552e-05\tAbsError: 3.06593e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.95180e-03\tAbsError: 3.73182e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42436e-06\tAbsError: 4.95028e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.38843e-03\tAbsError: 5.18838e+11\n", + " Region: \"zone_1\"\tRelError: 1.31867e-03\tAbsError: 9.39018e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31840e-03\tAbsError: 1.99779e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69826e-07\tAbsError: 9.37020e-05\n", + " Region: \"zone_3\"\tRelError: 3.06976e-03\tAbsError: 5.18838e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95362e-05\tAbsError: 2.68345e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.93671e-05\tAbsError: 2.50493e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.03058e-03\tAbsError: 2.07424e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69859e-07\tAbsError: 9.37138e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 3.54716e-03\tAbsError: 2.62008e+12\n", + " Region: \"zone_1\"\tRelError: 5.39788e-04\tAbsError: 8.92263e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.39531e-04\tAbsError: 1.50390e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.56301e-07\tAbsError: 8.90759e-05\n", + " Region: \"zone_3\"\tRelError: 3.00737e-03\tAbsError: 2.62008e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.14929e-05\tAbsError: 1.27607e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.07559e-05\tAbsError: 1.34402e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.98487e-03\tAbsError: 1.51609e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.56399e-07\tAbsError: 8.91117e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 9.50080e-04\tAbsError: 1.03863e+11\n", + " Region: \"zone_1\"\tRelError: 2.85910e-04\tAbsError: 3.37412e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.85814e-04\tAbsError: 4.14946e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.68675e-08\tAbsError: 3.36997e-05\n", + " Region: \"zone_3\"\tRelError: 6.64170e-04\tAbsError: 1.03863e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.88184e-06\tAbsError: 5.40187e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.85553e-06\tAbsError: 4.98443e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.56335e-04\tAbsError: 4.30256e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.69043e-08\tAbsError: 3.37128e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 6.95864e-04\tAbsError: 4.65649e+11\n", + " Region: \"zone_1\"\tRelError: 1.06054e-04\tAbsError: 3.37560e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05957e-04\tAbsError: 2.82366e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.70459e-08\tAbsError: 3.37277e-05\n", + " Region: \"zone_3\"\tRelError: 5.89810e-04\tAbsError: 4.65649e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01758e-06\tAbsError: 2.26719e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.89641e-06\tAbsError: 2.38931e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.85799e-04\tAbsError: 2.84329e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.70857e-08\tAbsError: 3.37425e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 3.25927e-04\tAbsError: 3.72019e+10\n", + " Region: \"zone_1\"\tRelError: 9.80813e-05\tAbsError: 7.68282e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 9.80593e-05\tAbsError: 1.46928e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20415e-08\tAbsError: 7.66812e-06\n", + " Region: \"zone_3\"\tRelError: 2.27846e-04\tAbsError: 3.72019e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36089e-06\tAbsError: 1.97599e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34801e-06\tAbsError: 1.74420e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25115e-04\tAbsError: 1.52180e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20501e-08\tAbsError: 7.67121e-06\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.45400e-04\tAbsError: 1.68299e+11\n", + " Region: \"zone_1\"\tRelError: 3.73915e-05\tAbsError: 7.04108e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.73713e-05\tAbsError: 1.02290e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.02296e-08\tAbsError: 7.03085e-06\n", + " Region: \"zone_3\"\tRelError: 2.08008e-04\tAbsError: 1.68299e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.36950e-07\tAbsError: 8.19502e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.90014e-07\tAbsError: 8.63483e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06561e-04\tAbsError: 1.03006e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.02382e-08\tAbsError: 7.03392e-06\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 7.72661e-05\tAbsError: 8.43440e+09\n", + " Region: \"zone_1\"\tRelError: 2.32650e-05\tAbsError: 2.49052e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32578e-05\tAbsError: 3.39814e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.14902e-09\tAbsError: 2.48712e-06\n", + " Region: \"zone_3\"\tRelError: 5.40011e-05\tAbsError: 8.43440e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.08161e-07\tAbsError: 4.47973e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.05735e-07\tAbsError: 3.95466e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.33800e-05\tAbsError: 3.51782e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.15190e-09\tAbsError: 2.48816e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:13\u001b[0m.\u001b[1;36m705\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.7999999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 5.39068e-05\tAbsError: 3.49491e+10\n", + " Region: \"zone_1\"\tRelError: 8.21869e-06\tAbsError: 2.31681e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.21203e-06\tAbsError: 2.20536e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.65971e-09\tAbsError: 2.31460e-06\n", + " Region: \"zone_3\"\tRelError: 4.56881e-05\tAbsError: 3.49491e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.51818e-07\tAbsError: 1.70152e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.42691e-07\tAbsError: 1.79339e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.53869e-05\tAbsError: 2.22047e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.66248e-09\tAbsError: 2.31560e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:14\u001b[0m.\u001b[1;36m265\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:14\u001b[0m.\u001b[1;36m265\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.9363636363636363\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.91796e+01\tAbsError: 8.00136e+16\n", + " Region: \"zone_1\"\tRelError: 1.61687e+01\tAbsError: 4.09548e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61687e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75011e-09\tAbsError: 6.08861e-07\n", + " Region: \"zone_3\"\tRelError: 3.01093e+00\tAbsError: 8.00136e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.66958e-01\tAbsError: 4.00295e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.65547e-01\tAbsError: 3.99841e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47843e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75082e-09\tAbsError: 6.09112e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 9.53347e+01\tAbsError: 5.85371e+17\n", + " Region: \"zone_1\"\tRelError: 8.27765e+01\tAbsError: 4.18732e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.27765e+01\tAbsError: 4.18727e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52118e-09\tAbsError: 5.28690e-07\n", + " Region: \"zone_3\"\tRelError: 1.25582e+01\tAbsError: 5.85371e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.44563e-01\tAbsError: 2.83553e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.31848e-01\tAbsError: 3.01819e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10818e+01\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52181e-09\tAbsError: 5.28919e-07\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.23024e+00\tAbsError: 7.24788e+16\n", + " Region: \"zone_1\"\tRelError: 2.89301e-01\tAbsError: 2.81842e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88577e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.23562e-04\tAbsError: 2.51079e-01\n", + " Region: \"zone_3\"\tRelError: 2.94094e+00\tAbsError: 7.24788e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.29061e-01\tAbsError: 3.72143e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.83761e-01\tAbsError: 3.52645e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62740e+00\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.23562e-04\tAbsError: 2.51079e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.35816e+01\tAbsError: 4.38149e+17\n", + " Region: \"zone_1\"\tRelError: 1.38930e+01\tAbsError: 4.99074e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38916e+01\tAbsError: 3.18458e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34648e-03\tAbsError: 4.67228e-01\n", + " Region: \"zone_3\"\tRelError: 9.68863e+00\tAbsError: 4.38149e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.42884e-01\tAbsError: 2.18851e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.28261e-01\tAbsError: 2.19298e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 8.61613e+00\tAbsError: 3.18461e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34768e-03\tAbsError: 4.67627e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 5.71850e+00\tAbsError: 4.10464e+16\n", + " Region: \"zone_1\"\tRelError: 1.82923e-01\tAbsError: 1.08958e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82684e-01\tAbsError: 2.58969e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39429e-04\tAbsError: 8.30609e-02\n", + " Region: \"zone_3\"\tRelError: 5.53558e+00\tAbsError: 4.10464e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16071e-01\tAbsError: 2.08924e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.47287e-01\tAbsError: 2.01540e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.77198e+00\tAbsError: 2.46271e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39429e-04\tAbsError: 8.30609e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 5.53490e+00\tAbsError: 1.10286e+17\n", + " Region: \"zone_1\"\tRelError: 2.56956e+00\tAbsError: 1.81425e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.56912e+00\tAbsError: 2.58889e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.47417e-04\tAbsError: 1.55536e-01\n", + " Region: \"zone_3\"\tRelError: 2.96534e+00\tAbsError: 1.10286e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.48327e-01\tAbsError: 5.52116e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.47448e-01\tAbsError: 5.50739e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.56912e+00\tAbsError: 2.58782e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.47594e-04\tAbsError: 1.55593e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.06773e+00\tAbsError: 1.32751e+16\n", + " Region: \"zone_1\"\tRelError: 2.27618e-01\tAbsError: 5.11022e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27498e-01\tAbsError: 9.16524e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20880e-04\tAbsError: 4.19369e-02\n", + " Region: \"zone_3\"\tRelError: 8.40108e-01\tAbsError: 1.32751e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49254e-01\tAbsError: 7.44002e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.85993e-02\tAbsError: 5.83511e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.12131e-01\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23429e-04\tAbsError: 4.28226e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.56612e+00\tAbsError: 1.23216e+16\n", + " Region: \"zone_1\"\tRelError: 7.26552e-01\tAbsError: 2.41455e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.25886e-01\tAbsError: 1.05204e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.65769e-04\tAbsError: 2.30934e-01\n", + " Region: \"zone_3\"\tRelError: 8.39571e-01\tAbsError: 1.23216e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.12201e-02\tAbsError: 6.18993e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.48009e-02\tAbsError: 6.13165e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.82884e-01\tAbsError: 1.05209e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.66165e-04\tAbsError: 2.31065e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.91937e-01\tAbsError: 2.33353e+15\n", + " Region: \"zone_1\"\tRelError: 2.61363e-02\tAbsError: 3.15290e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52274e-02\tAbsError: 2.65917e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.08859e-04\tAbsError: 3.15024e-01\n", + " Region: \"zone_3\"\tRelError: 2.65801e-01\tAbsError: 2.33353e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.40034e-02\tAbsError: 1.23195e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.91867e-03\tAbsError: 1.10158e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20969e-01\tAbsError: 2.95967e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.10098e-04\tAbsError: 3.15450e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.04421e-02\tAbsError: 1.45216e+15\n", + " Region: \"zone_1\"\tRelError: 4.34524e-02\tAbsError: 1.16728e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.31168e-02\tAbsError: 1.74721e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.35663e-04\tAbsError: 1.16710e-01\n", + " Region: \"zone_3\"\tRelError: 4.69896e-02\tAbsError: 1.45216e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.93609e-03\tAbsError: 7.70658e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.01075e-04\tAbsError: 6.81500e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.31168e-02\tAbsError: 1.76380e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.35688e-04\tAbsError: 1.16715e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.68338e-01\tAbsError: 7.28836e+14\n", + " Region: \"zone_1\"\tRelError: 4.44613e-02\tAbsError: 2.04423e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44025e-02\tAbsError: 6.98557e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87704e-05\tAbsError: 2.03724e-02\n", + " Region: \"zone_3\"\tRelError: 4.23877e-01\tAbsError: 7.28836e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89975e-03\tAbsError: 3.57624e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.06394e-03\tAbsError: 3.71212e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.13854e-01\tAbsError: 7.63149e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87832e-05\tAbsError: 2.03761e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.57790e-02\tAbsError: 5.53776e+14\n", + " Region: \"zone_1\"\tRelError: 2.72664e-02\tAbsError: 1.65342e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.72617e-02\tAbsError: 3.40332e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.65495e-06\tAbsError: 1.61938e-03\n", + " Region: \"zone_3\"\tRelError: 2.85126e-02\tAbsError: 5.53776e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.03401e-04\tAbsError: 2.75139e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.42857e-04\tAbsError: 2.78638e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.72617e-02\tAbsError: 3.43282e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.65837e-06\tAbsError: 1.62055e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.64410e-02\tAbsError: 6.34524e+13\n", + " Region: \"zone_1\"\tRelError: 6.01943e-03\tAbsError: 8.87148e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.99386e-03\tAbsError: 6.06051e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.55757e-05\tAbsError: 8.86542e-03\n", + " Region: \"zone_3\"\tRelError: 6.04216e-02\tAbsError: 6.34524e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43427e-04\tAbsError: 3.11581e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.51084e-04\tAbsError: 3.22943e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95015e-02\tAbsError: 6.26485e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.55822e-05\tAbsError: 8.86737e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.64663e-03\tAbsError: 9.54828e+12\n", + " Region: \"zone_1\"\tRelError: 7.63718e-04\tAbsError: 4.21975e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.51589e-04\tAbsError: 8.32688e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21290e-05\tAbsError: 4.21892e-03\n", + " Region: \"zone_3\"\tRelError: 8.82908e-04\tAbsError: 9.54828e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.90874e-05\tAbsError: 4.74690e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.00972e-05\tAbsError: 4.80137e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.51589e-04\tAbsError: 8.38480e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21339e-05\tAbsError: 4.22059e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.75673e-02\tAbsError: 3.32993e+13\n", + " Region: \"zone_1\"\tRelError: 3.52548e-03\tAbsError: 1.20689e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52200e-03\tAbsError: 3.09455e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47154e-06\tAbsError: 1.20380e-03\n", + " Region: \"zone_3\"\tRelError: 3.40418e-02\tAbsError: 3.32993e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47698e-04\tAbsError: 1.63796e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.38649e-04\tAbsError: 1.69197e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35520e-02\tAbsError: 3.11273e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47235e-06\tAbsError: 1.20402e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.87542e-03\tAbsError: 2.78952e+13\n", + " Region: \"zone_1\"\tRelError: 2.90731e-03\tAbsError: 2.23946e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.90667e-03\tAbsError: 1.27907e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.40144e-07\tAbsError: 2.22667e-04\n", + " Region: \"zone_3\"\tRelError: 2.96811e-03\tAbsError: 2.78952e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.34898e-05\tAbsError: 1.38719e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.73182e-05\tAbsError: 1.40233e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.90667e-03\tAbsError: 1.29061e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.40413e-07\tAbsError: 2.22756e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.47008e-03\tAbsError: 4.77215e+12\n", + " Region: \"zone_1\"\tRelError: 6.05494e-04\tAbsError: 5.38691e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.03946e-04\tAbsError: 4.25617e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54844e-06\tAbsError: 5.38265e-04\n", + " Region: \"zone_3\"\tRelError: 5.86458e-03\tAbsError: 4.77215e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.53153e-05\tAbsError: 2.34800e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.40122e-05\tAbsError: 2.42415e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.79371e-03\tAbsError: 4.28072e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54906e-06\tAbsError: 5.38488e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 5.69726e-04\tAbsError: 1.77554e+12\n", + " Region: \"zone_1\"\tRelError: 2.81273e-04\tAbsError: 1.90569e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80725e-04\tAbsError: 8.09815e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.47674e-07\tAbsError: 1.90489e-04\n", + " Region: \"zone_3\"\tRelError: 2.88453e-04\tAbsError: 1.77554e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33842e-06\tAbsError: 8.83844e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.84134e-06\tAbsError: 8.91692e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80725e-04\tAbsError: 8.16431e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.47870e-07\tAbsError: 1.90556e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.65398e-03\tAbsError: 2.00158e+12\n", + " Region: \"zone_1\"\tRelError: 2.48909e-04\tAbsError: 1.00808e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.48620e-04\tAbsError: 1.66964e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89512e-07\tAbsError: 1.00641e-04\n", + " Region: \"zone_3\"\tRelError: 2.40507e-03\tAbsError: 2.00158e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50347e-05\tAbsError: 9.84888e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.44145e-05\tAbsError: 1.01669e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.37533e-03\tAbsError: 1.67974e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89623e-07\tAbsError: 1.00681e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.41439e-04\tAbsError: 1.54296e+12\n", + " Region: \"zone_1\"\tRelError: 2.19052e-04\tAbsError: 1.95890e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18996e-04\tAbsError: 5.68742e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.63328e-08\tAbsError: 1.95322e-05\n", + " Region: \"zone_3\"\tRelError: 2.22387e-04\tAbsError: 1.54296e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.79567e-06\tAbsError: 7.67812e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.53849e-06\tAbsError: 7.75148e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18996e-04\tAbsError: 5.74023e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.63439e-08\tAbsError: 1.95355e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 5.36228e-04\tAbsError: 3.67963e+11\n", + " Region: \"zone_1\"\tRelError: 5.03370e-05\tAbsError: 3.69568e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.02308e-05\tAbsError: 3.27141e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06219e-07\tAbsError: 3.69241e-05\n", + " Region: \"zone_3\"\tRelError: 4.85891e-04\tAbsError: 3.67963e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.74381e-06\tAbsError: 1.81082e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.63918e-06\tAbsError: 1.86881e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.80402e-04\tAbsError: 3.29054e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06263e-07\tAbsError: 3.69404e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 6.28099e-05\tAbsError: 1.73172e+11\n", + " Region: \"zone_1\"\tRelError: 3.11765e-05\tAbsError: 1.11459e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.11445e-05\tAbsError: 6.09244e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.20807e-08\tAbsError: 1.11398e-05\n", + " Region: \"zone_3\"\tRelError: 3.16334e-05\tAbsError: 1.73172e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16960e-07\tAbsError: 8.62244e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.39894e-07\tAbsError: 8.69476e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.11445e-05\tAbsError: 6.14462e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.20831e-08\tAbsError: 1.11440e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.84514e-04\tAbsError: 1.29331e+11\n", + " Region: \"zone_1\"\tRelError: 1.73204e-05\tAbsError: 7.90813e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72976e-05\tAbsError: 1.15361e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27155e-08\tAbsError: 7.89660e-06\n", + " Region: \"zone_3\"\tRelError: 1.67193e-04\tAbsError: 1.29331e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.72276e-07\tAbsError: 6.36462e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.31421e-07\tAbsError: 6.56851e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65267e-04\tAbsError: 1.16052e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27252e-08\tAbsError: 7.90006e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:25\u001b[0m.\u001b[1;36m882\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:25\u001b[0m.\u001b[1;36m882\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m1.0409090909090908\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 4.13464e-05\tAbsError: 2.75069e+10\n", + " Region: \"zone_1\"\tRelError: 3.88379e-06\tAbsError: 2.55222e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87646e-06\tAbsError: 2.54121e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.33447e-09\tAbsError: 2.54968e-06\n", + " Region: \"zone_3\"\tRelError: 3.74626e-05\tAbsError: 2.75069e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05752e-07\tAbsError: 1.35376e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.97692e-07\tAbsError: 1.39693e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.70518e-05\tAbsError: 2.55608e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.33751e-09\tAbsError: 2.55078e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:26\u001b[0m.\u001b[1;36m709\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.8999999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.87468e+03\tAbsError: 1.57594e+18\n", + " Region: \"zone_1\"\tRelError: 6.11972e+03\tAbsError: 4.18742e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.11972e+03\tAbsError: 4.18725e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.06414e-09\tAbsError: 1.76056e-06\n", + " Region: \"zone_3\"\tRelError: 1.75496e+03\tAbsError: 1.57594e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.71865e-01\tAbsError: 7.81473e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.46168e-01\tAbsError: 7.94463e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75364e+03\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.06608e-09\tAbsError: 1.76125e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.18618e+01\tAbsError: 3.43486e+17\n", + " Region: \"zone_1\"\tRelError: 4.68734e+01\tAbsError: 4.09548e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.68734e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70509e-09\tAbsError: 5.92742e-07\n", + " Region: \"zone_3\"\tRelError: 1.49884e+01\tAbsError: 3.43486e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.50361e-01\tAbsError: 1.67687e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.42491e-01\tAbsError: 1.75799e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34955e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70580e-09\tAbsError: 5.92998e-07\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.30315e+03\tAbsError: 5.28037e+17\n", + " Region: \"zone_1\"\tRelError: 4.13286e+02\tAbsError: 1.28690e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.13283e+02\tAbsError: 3.18455e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.60513e-03\tAbsError: 1.25505e+00\n", + " Region: \"zone_3\"\tRelError: 1.88986e+03\tAbsError: 5.28037e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.88929e-01\tAbsError: 2.65094e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.76179e-01\tAbsError: 2.62943e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88910e+03\tAbsError: 3.18461e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.60541e-03\tAbsError: 1.25519e+00\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 6.59116e+00\tAbsError: 3.05940e+17\n", + " Region: \"zone_1\"\tRelError: 1.06162e+00\tAbsError: 1.92710e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06116e+00\tAbsError: 3.07630e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.67257e-04\tAbsError: 1.61947e-01\n", + " Region: \"zone_3\"\tRelError: 5.52954e+00\tAbsError: 3.05940e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.66708e-01\tAbsError: 1.53394e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.75609e-01\tAbsError: 1.52546e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.38676e+00\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.67257e-04\tAbsError: 1.61947e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.23949e+02\tAbsError: 7.68225e+16\n", + " Region: \"zone_1\"\tRelError: 1.01274e+02\tAbsError: 5.10475e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01273e+02\tAbsError: 2.57970e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38904e-03\tAbsError: 4.84678e-01\n", + " Region: \"zone_3\"\tRelError: 1.22675e+02\tAbsError: 7.68225e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.85556e-02\tAbsError: 3.85589e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.64057e-02\tAbsError: 3.82636e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22518e+02\tAbsError: 2.58939e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38924e-03\tAbsError: 4.84741e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.39017e+01\tAbsError: 1.15461e+17\n", + " Region: \"zone_1\"\tRelError: 6.40052e-01\tAbsError: 2.51200e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.39402e-01\tAbsError: 2.58690e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.49519e-04\tAbsError: 2.25331e-01\n", + " Region: \"zone_3\"\tRelError: 3.32617e+01\tAbsError: 1.15461e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89584e-01\tAbsError: 5.80157e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.82182e-01\tAbsError: 5.74450e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.27893e+01\tAbsError: 2.58944e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.51823e-04\tAbsError: 2.26124e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.99106e+00\tAbsError: 4.60947e+15\n", + " Region: \"zone_1\"\tRelError: 9.82178e-01\tAbsError: 9.51528e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.79492e-01\tAbsError: 1.05200e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.68610e-03\tAbsError: 9.41008e-01\n", + " Region: \"zone_3\"\tRelError: 1.00888e+00\tAbsError: 4.60947e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.86739e-02\tAbsError: 1.78353e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.53479e-03\tAbsError: 2.82595e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.82985e-01\tAbsError: 1.05209e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69033e-03\tAbsError: 9.42484e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.34480e+00\tAbsError: 1.48853e+16\n", + " Region: \"zone_1\"\tRelError: 1.80604e-01\tAbsError: 1.59400e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80172e-01\tAbsError: 9.16501e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31839e-04\tAbsError: 1.50235e-01\n", + " Region: \"zone_3\"\tRelError: 3.16419e+00\tAbsError: 1.48853e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.34401e-02\tAbsError: 7.53366e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.19569e-02\tAbsError: 7.35164e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.07837e+00\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31839e-04\tAbsError: 1.50235e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.86435e+00\tAbsError: 9.79041e+15\n", + " Region: \"zone_1\"\tRelError: 1.84952e+00\tAbsError: 1.25697e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84592e+00\tAbsError: 3.77567e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.59985e-03\tAbsError: 1.25659e+00\n", + " Region: \"zone_3\"\tRelError: 1.01483e+00\tAbsError: 9.79041e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.98548e-02\tAbsError: 4.26210e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.13855e-03\tAbsError: 5.52831e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.74232e-01\tAbsError: 3.79891e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.60540e-03\tAbsError: 1.25852e+00\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.42204e-01\tAbsError: 1.90329e+15\n", + " Region: \"zone_1\"\tRelError: 2.01983e-02\tAbsError: 3.47392e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91990e-02\tAbsError: 1.15001e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.99221e-04\tAbsError: 3.47277e-01\n", + " Region: \"zone_3\"\tRelError: 3.22006e-01\tAbsError: 1.90329e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.20950e-03\tAbsError: 1.00831e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03234e-03\tAbsError: 8.94978e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.11765e-01\tAbsError: 1.16357e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.99221e-04\tAbsError: 3.47277e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.24847e+01\tAbsError: 7.06406e+15\n", + " Region: \"zone_1\"\tRelError: 6.33480e-01\tAbsError: 7.91039e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.33255e-01\tAbsError: 3.40300e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.25585e-04\tAbsError: 7.87636e-02\n", + " Region: \"zone_3\"\tRelError: 1.18512e+01\tAbsError: 7.06406e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31041e-02\tAbsError: 3.43640e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.02226e-03\tAbsError: 3.62765e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18348e+01\tAbsError: 3.42813e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.25683e-04\tAbsError: 7.87975e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.26159e-01\tAbsError: 1.60368e+15\n", + " Region: \"zone_1\"\tRelError: 2.39971e-02\tAbsError: 1.68797e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39489e-02\tAbsError: 1.07820e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.82419e-05\tAbsError: 1.67718e-02\n", + " Region: \"zone_3\"\tRelError: 7.02162e-01\tAbsError: 1.60368e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.86883e-03\tAbsError: 7.94204e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.42424e-03\tAbsError: 8.09476e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.96821e-01\tAbsError: 1.08766e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.82636e-05\tAbsError: 1.67793e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 8.20251e-01\tAbsError: 4.81045e+14\n", + " Region: \"zone_1\"\tRelError: 1.33651e-01\tAbsError: 4.63651e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33518e-01\tAbsError: 2.50993e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32739e-04\tAbsError: 4.63400e-02\n", + " Region: \"zone_3\"\tRelError: 6.86600e-01\tAbsError: 4.81045e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.60043e-03\tAbsError: 2.39564e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.09695e-04\tAbsError: 2.41481e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.83957e-01\tAbsError: 2.52723e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32791e-04\tAbsError: 4.63581e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.12346e-01\tAbsError: 1.08123e+14\n", + " Region: \"zone_1\"\tRelError: 3.56238e-03\tAbsError: 1.31451e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52458e-03\tAbsError: 6.36043e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77942e-05\tAbsError: 1.31387e-02\n", + " Region: \"zone_3\"\tRelError: 1.08784e-01\tAbsError: 1.08123e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.76703e-04\tAbsError: 5.36465e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.39449e-04\tAbsError: 5.44763e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08330e-01\tAbsError: 6.41381e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.78094e-05\tAbsError: 1.31440e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.40048e-01\tAbsError: 2.83614e+14\n", + " Region: \"zone_1\"\tRelError: 6.61348e-02\tAbsError: 5.04447e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.61204e-02\tAbsError: 1.30341e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44504e-05\tAbsError: 5.03144e-03\n", + " Region: \"zone_3\"\tRelError: 5.73913e-01\tAbsError: 2.83614e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.31177e-04\tAbsError: 1.41341e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.34459e-04\tAbsError: 1.42273e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.73033e-01\tAbsError: 1.31277e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44524e-05\tAbsError: 5.03188e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 8.36096e-02\tAbsError: 8.44228e+13\n", + " Region: \"zone_1\"\tRelError: 2.87350e-03\tAbsError: 1.23009e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.86998e-03\tAbsError: 4.23325e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52636e-06\tAbsError: 1.22586e-03\n", + " Region: \"zone_3\"\tRelError: 8.07361e-02\tAbsError: 8.44228e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46087e-04\tAbsError: 4.18513e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.25646e-04\tAbsError: 4.25715e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.04608e-02\tAbsError: 4.27186e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52783e-06\tAbsError: 1.22636e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.04807e-01\tAbsError: 3.49952e+13\n", + " Region: \"zone_1\"\tRelError: 1.19544e-02\tAbsError: 2.15893e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19482e-02\tAbsError: 1.51234e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.19688e-06\tAbsError: 2.15742e-03\n", + " Region: \"zone_3\"\tRelError: 9.28525e-02\tAbsError: 3.49952e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.54709e-05\tAbsError: 1.74282e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.63267e-05\tAbsError: 1.75670e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.26845e-02\tAbsError: 1.52290e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.19717e-06\tAbsError: 2.15761e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.36875e-02\tAbsError: 9.69294e+12\n", + " Region: \"zone_1\"\tRelError: 4.70501e-04\tAbsError: 6.20216e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.68718e-04\tAbsError: 4.28680e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78298e-06\tAbsError: 6.19787e-04\n", + " Region: \"zone_3\"\tRelError: 1.32170e-02\tAbsError: 9.69294e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.60935e-05\tAbsError: 4.80983e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.36870e-05\tAbsError: 4.88312e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31854e-02\tAbsError: 4.32490e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78363e-06\tAbsError: 6.20008e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.34395e-02\tAbsError: 1.50873e+13\n", + " Region: \"zone_1\"\tRelError: 4.76678e-03\tAbsError: 3.66196e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.76573e-03\tAbsError: 5.85936e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05115e-06\tAbsError: 3.65610e-04\n", + " Region: \"zone_3\"\tRelError: 3.86727e-02\tAbsError: 1.50873e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.49064e-05\tAbsError: 7.51386e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.47458e-05\tAbsError: 7.57343e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.86220e-02\tAbsError: 5.90085e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05126e-06\tAbsError: 3.65648e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 6.63798e-03\tAbsError: 4.90503e+12\n", + " Region: \"zone_1\"\tRelError: 2.29406e-04\tAbsError: 9.25474e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29140e-04\tAbsError: 1.97212e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.66464e-07\tAbsError: 9.23502e-05\n", + " Region: \"zone_3\"\tRelError: 6.40857e-03\tAbsError: 4.90503e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.34900e-06\tAbsError: 2.43347e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32522e-06\tAbsError: 2.47155e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.39263e-03\tAbsError: 1.99078e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.66498e-07\tAbsError: 9.23593e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 8.47313e-03\tAbsError: 2.45459e+12\n", + " Region: \"zone_1\"\tRelError: 9.36987e-04\tAbsError: 1.32000e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.36609e-04\tAbsError: 9.56354e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.78566e-07\tAbsError: 1.31904e-04\n", + " Region: \"zone_3\"\tRelError: 7.53614e-03\tAbsError: 2.45459e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.87205e-06\tAbsError: 1.22267e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.65680e-06\tAbsError: 1.23192e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.52524e-03\tAbsError: 9.65698e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.78706e-07\tAbsError: 1.31954e-04\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.25648e-03\tAbsError: 7.75715e+11\n", + " Region: \"zone_1\"\tRelError: 4.35799e-05\tAbsError: 3.84452e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.34694e-05\tAbsError: 2.84735e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10539e-07\tAbsError: 3.84167e-05\n", + " Region: \"zone_3\"\tRelError: 1.21290e-03\tAbsError: 7.75715e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28473e-06\tAbsError: 3.85060e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13479e-06\tAbsError: 3.90655e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21037e-03\tAbsError: 2.87358e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10581e-07\tAbsError: 3.84313e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.88106e-03\tAbsError: 8.75795e+11\n", + " Region: \"zone_1\"\tRelError: 3.17767e-04\tAbsError: 2.68964e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.17689e-04\tAbsError: 3.28042e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.70983e-08\tAbsError: 2.68636e-05\n", + " Region: \"zone_3\"\tRelError: 2.56329e-03\tAbsError: 8.75795e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34563e-06\tAbsError: 4.36269e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.68576e-06\tAbsError: 4.39526e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.56018e-03\tAbsError: 3.31331e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.71271e-08\tAbsError: 2.68742e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 4.79935e-04\tAbsError: 3.06765e+11\n", + " Region: \"zone_1\"\tRelError: 1.66486e-05\tAbsError: 7.60779e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66267e-05\tAbsError: 1.06336e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18595e-08\tAbsError: 7.59715e-06\n", + " Region: \"zone_3\"\tRelError: 4.63286e-04\tAbsError: 3.06765e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.16909e-07\tAbsError: 1.52260e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.59699e-07\tAbsError: 1.54505e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62288e-04\tAbsError: 1.07353e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18679e-08\tAbsError: 7.60017e-06\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 6.15045e-04\tAbsError: 1.68932e+11\n", + " Region: \"zone_1\"\tRelError: 6.78668e-05\tAbsError: 8.57075e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.78422e-05\tAbsError: 6.94676e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45781e-08\tAbsError: 8.56380e-06\n", + " Region: \"zone_3\"\tRelError: 5.47178e-04\tAbsError: 1.68932e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96513e-07\tAbsError: 8.41586e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.96621e-07\tAbsError: 8.47738e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.46460e-04\tAbsError: 7.01511e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45874e-08\tAbsError: 8.56727e-06\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.01824e-04\tAbsError: 5.91028e+10\n", + " Region: \"zone_1\"\tRelError: 3.53926e-06\tAbsError: 2.67115e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53158e-06\tAbsError: 2.19844e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.67947e-09\tAbsError: 2.66896e-06\n", + " Region: \"zone_3\"\tRelError: 9.82849e-05\tAbsError: 5.91028e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.78782e-08\tAbsError: 2.93440e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.77169e-08\tAbsError: 2.97588e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.80917e-05\tAbsError: 2.22202e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.68243e-09\tAbsError: 2.67005e-06\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.88221e-04\tAbsError: 5.35359e+10\n", + " Region: \"zone_1\"\tRelError: 2.07676e-05\tAbsError: 1.88845e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07622e-05\tAbsError: 2.14079e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.41371e-09\tAbsError: 1.88631e-06\n", + " Region: \"zone_3\"\tRelError: 1.67453e-04\tAbsError: 5.35359e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.97944e-08\tAbsError: 2.66714e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11906e-07\tAbsError: 2.68645e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67256e-04\tAbsError: 2.16218e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.41591e-09\tAbsError: 1.88713e-06\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 3.38300e-05\tAbsError: 2.01418e+10\n", + " Region: \"zone_1\"\tRelError: 1.17571e-06\tAbsError: 5.87640e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17402e-06\tAbsError: 7.44968e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68869e-09\tAbsError: 5.86895e-07\n", + " Region: \"zone_3\"\tRelError: 3.26543e-05\tAbsError: 2.01418e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.37367e-08\tAbsError: 9.99956e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.02428e-08\tAbsError: 1.01422e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.25886e-05\tAbsError: 7.53080e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68939e-09\tAbsError: 5.87154e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:40\u001b[0m.\u001b[1;36m587\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.9999999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 4.27414e-05\tAbsError: 1.14823e+10\n", + " Region: \"zone_1\"\tRelError: 4.71554e-06\tAbsError: 5.55691e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 4.71394e-06\tAbsError: 4.83442e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59344e-09\tAbsError: 5.55208e-07\n", + " Region: \"zone_3\"\tRelError: 3.80259e-05\tAbsError: 1.14823e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88030e-08\tAbsError: 5.72062e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.70392e-08\tAbsError: 5.76169e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.79784e-05\tAbsError: 4.88216e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59409e-09\tAbsError: 5.55448e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:40\u001b[0m.\u001b[1;36m783\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:40\u001b[0m.\u001b[1;36m783\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m1.1454545454545455\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.07845e+03\tAbsError: 1.16809e+18\n", + " Region: \"zone_1\"\tRelError: 2.98806e+02\tAbsError: 4.09541e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.98806e+02\tAbsError: 4.09540e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.33797e-10\tAbsError: 1.85521e-07\n", + " Region: \"zone_3\"\tRelError: 7.79646e+02\tAbsError: 1.16809e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90701e-01\tAbsError: 5.74604e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.65642e-01\tAbsError: 5.93489e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 7.78290e+02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.34021e-10\tAbsError: 1.85602e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.48560e+01\tAbsError: 2.45370e+18\n", + " Region: \"zone_1\"\tRelError: 1.31353e+01\tAbsError: 4.18724e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31353e+01\tAbsError: 4.18723e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.70107e-10\tAbsError: 1.28959e-07\n", + " Region: \"zone_3\"\tRelError: 2.17207e+01\tAbsError: 2.45370e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.83005e-01\tAbsError: 1.22478e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.70802e-01\tAbsError: 1.22892e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05669e+01\tAbsError: 4.18730e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.70257e-10\tAbsError: 1.29014e-07\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.95227e+03\tAbsError: 4.47180e+17\n", + " Region: \"zone_1\"\tRelError: 5.95735e+02\tAbsError: 1.32695e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95731e+02\tAbsError: 3.07627e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.72641e-03\tAbsError: 1.29619e+00\n", + " Region: \"zone_3\"\tRelError: 2.35653e+03\tAbsError: 4.47180e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.30389e-01\tAbsError: 2.23868e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.07870e-01\tAbsError: 2.23312e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.35569e+03\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.72703e-03\tAbsError: 1.29643e+00\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.98343e+00\tAbsError: 5.25979e+17\n", + " Region: \"zone_1\"\tRelError: 6.78890e-01\tAbsError: 2.40460e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 6.72129e-01\tAbsError: 3.18452e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.76081e-03\tAbsError: 2.37276e+00\n", + " Region: \"zone_3\"\tRelError: 1.30454e+00\tAbsError: 5.25979e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.69683e-01\tAbsError: 2.63478e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.70057e-01\tAbsError: 2.62501e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 7.58037e-01\tAbsError: 3.18462e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.76160e-03\tAbsError: 2.37299e+00\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 8.37720e+02\tAbsError: 8.62713e+16\n", + " Region: \"zone_1\"\tRelError: 6.83172e+02\tAbsError: 5.09423e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.83170e+02\tAbsError: 2.58987e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39194e-03\tAbsError: 4.83524e-01\n", + " Region: \"zone_3\"\tRelError: 1.54548e+02\tAbsError: 8.62713e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27446e-01\tAbsError: 4.32970e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.20316e-02\tAbsError: 4.29743e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54357e+02\tAbsError: 2.58982e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39675e-03\tAbsError: 4.85195e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 5.69994e-01\tAbsError: 2.17602e+16\n", + " Region: \"zone_1\"\tRelError: 2.50379e-01\tAbsError: 2.20116e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.44199e-01\tAbsError: 2.58997e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.17935e-03\tAbsError: 2.17526e+00\n", + " Region: \"zone_3\"\tRelError: 3.19615e-01\tAbsError: 2.17602e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.70343e-02\tAbsError: 1.09545e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.17379e-02\tAbsError: 1.08057e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.44659e-01\tAbsError: 2.58997e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.18370e-03\tAbsError: 2.17682e+00\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.13777e+02\tAbsError: 9.41150e+15\n", + " Region: \"zone_1\"\tRelError: 7.34943e+01\tAbsError: 1.74710e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 7.34894e+01\tAbsError: 9.16455e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.95952e-03\tAbsError: 1.73794e+00\n", + " Region: \"zone_3\"\tRelError: 5.40283e+02\tAbsError: 9.41150e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.82819e-02\tAbsError: 3.95531e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.70902e-02\tAbsError: 5.45619e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.40223e+02\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.96820e-03\tAbsError: 1.74101e+00\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.85302e-01\tAbsError: 2.54840e+16\n", + " Region: \"zone_1\"\tRelError: 1.03223e-01\tAbsError: 5.09960e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 8.89918e-02\tAbsError: 1.05193e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42311e-02\tAbsError: 5.08908e+00\n", + " Region: \"zone_3\"\tRelError: 1.82079e-01\tAbsError: 2.54840e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.18364e-02\tAbsError: 9.82764e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.96671e-03\tAbsError: 1.56563e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 8.90331e-02\tAbsError: 1.05211e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42430e-02\tAbsError: 5.09332e+00\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.16806e+01\tAbsError: 1.22386e+16\n", + " Region: \"zone_1\"\tRelError: 5.81165e+00\tAbsError: 2.01324e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.80588e+00\tAbsError: 6.99078e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.77633e-03\tAbsError: 2.01254e+00\n", + " Region: \"zone_3\"\tRelError: 5.86896e+00\tAbsError: 1.22386e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.88114e-02\tAbsError: 5.53671e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06848e-02\tAbsError: 6.70184e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.80368e+00\tAbsError: 7.04147e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.78367e-03\tAbsError: 2.01512e+00\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.66806e-01\tAbsError: 4.46613e+16\n", + " Region: \"zone_1\"\tRelError: 2.01778e-01\tAbsError: 6.07668e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84496e-01\tAbsError: 1.64814e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72818e-02\tAbsError: 6.07503e+00\n", + " Region: \"zone_3\"\tRelError: 4.65028e-01\tAbsError: 4.46613e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.85265e-01\tAbsError: 2.19504e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.34316e-02\tAbsError: 2.27109e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19041e-01\tAbsError: 1.65634e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72910e-02\tAbsError: 6.07824e+00\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.44367e+01\tAbsError: 1.02259e+16\n", + " Region: \"zone_1\"\tRelError: 4.22055e+01\tAbsError: 1.45859e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22051e+01\tAbsError: 5.71640e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.16833e-04\tAbsError: 1.45287e-01\n", + " Region: \"zone_3\"\tRelError: 4.22312e+01\tAbsError: 1.02259e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97020e-02\tAbsError: 4.95775e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.96648e-03\tAbsError: 5.26817e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22051e+01\tAbsError: 5.76213e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.17002e-04\tAbsError: 1.45346e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.48036e-01\tAbsError: 4.08947e+16\n", + " Region: \"zone_1\"\tRelError: 1.59671e-01\tAbsError: 3.39263e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58711e-01\tAbsError: 1.47989e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.59972e-04\tAbsError: 3.37784e-01\n", + " Region: \"zone_3\"\tRelError: 2.88365e-01\tAbsError: 4.08947e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.87342e-02\tAbsError: 2.00424e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.55822e-02\tAbsError: 2.08523e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83088e-01\tAbsError: 1.48837e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.60353e-04\tAbsError: 3.37917e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.49604e+00\tAbsError: 9.70392e+14\n", + " Region: \"zone_1\"\tRelError: 3.74605e+00\tAbsError: 7.97463e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74582e+00\tAbsError: 4.64021e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28718e-04\tAbsError: 7.96999e-02\n", + " Region: \"zone_3\"\tRelError: 3.74999e+00\tAbsError: 9.70392e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.58316e-03\tAbsError: 4.83793e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.36045e-03\tAbsError: 4.86599e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74582e+00\tAbsError: 4.67428e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28813e-04\tAbsError: 7.97327e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 5.94888e-02\tAbsError: 2.09629e+15\n", + " Region: \"zone_1\"\tRelError: 2.22902e-02\tAbsError: 1.82349e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17712e-02\tAbsError: 1.08536e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.18918e-04\tAbsError: 1.82241e-01\n", + " Region: \"zone_3\"\tRelError: 3.71987e-02\tAbsError: 2.09629e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.94884e-03\tAbsError: 1.04302e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.49555e-03\tAbsError: 1.05327e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52353e-02\tAbsError: 1.09074e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.18942e-04\tAbsError: 1.82257e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 9.26745e+00\tAbsError: 5.14481e+14\n", + " Region: \"zone_1\"\tRelError: 8.59152e+00\tAbsError: 9.35409e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.59150e+00\tAbsError: 2.29233e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.68516e-05\tAbsError: 9.33117e-03\n", + " Region: \"zone_3\"\tRelError: 6.75929e-01\tAbsError: 5.14481e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.99602e-04\tAbsError: 2.56366e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.52414e-04\tAbsError: 2.58114e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.74650e-01\tAbsError: 2.31041e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.68516e-05\tAbsError: 9.33117e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.83605e-02\tAbsError: 1.16657e+15\n", + " Region: \"zone_1\"\tRelError: 1.11393e-02\tAbsError: 1.87909e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10859e-02\tAbsError: 5.17315e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.34103e-05\tAbsError: 1.87392e-02\n", + " Region: \"zone_3\"\tRelError: 1.72212e-02\tAbsError: 1.16657e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.50800e-03\tAbsError: 5.80987e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.83040e-03\tAbsError: 5.85581e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28294e-02\tAbsError: 5.20147e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.34103e-05\tAbsError: 1.87392e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.48030e+01\tAbsError: 7.19505e+13\n", + " Region: \"zone_1\"\tRelError: 1.40655e+01\tAbsError: 3.86191e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40655e+01\tAbsError: 2.84880e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11050e-05\tAbsError: 3.85906e-03\n", + " Region: \"zone_3\"\tRelError: 7.37529e-01\tAbsError: 7.19505e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38672e-04\tAbsError: 3.58470e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.21484e-04\tAbsError: 3.61036e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.37257e-01\tAbsError: 2.87067e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11068e-05\tAbsError: 3.85947e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.18320e-03\tAbsError: 1.27381e+14\n", + " Region: \"zone_1\"\tRelError: 1.63776e-03\tAbsError: 7.35262e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61677e-03\tAbsError: 5.51755e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.09861e-05\tAbsError: 7.34711e-03\n", + " Region: \"zone_3\"\tRelError: 2.54544e-03\tAbsError: 1.27381e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.31618e-04\tAbsError: 6.29513e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.20105e-04\tAbsError: 6.44296e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87274e-03\tAbsError: 5.54604e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.09861e-05\tAbsError: 7.34711e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.47896e+00\tAbsError: 2.94682e+13\n", + " Region: \"zone_1\"\tRelError: 1.24509e+00\tAbsError: 6.95816e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24509e+00\tAbsError: 1.07735e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99937e-06\tAbsError: 6.94739e-04\n", + " Region: \"zone_3\"\tRelError: 2.33869e-01\tAbsError: 2.94682e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.81392e-05\tAbsError: 1.46808e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.76977e-05\tAbsError: 1.47873e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.33792e-01\tAbsError: 1.08579e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99953e-06\tAbsError: 6.95001e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.50724e-03\tAbsError: 4.58277e+13\n", + " Region: \"zone_1\"\tRelError: 6.07327e-04\tAbsError: 1.12554e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.04117e-04\tAbsError: 1.90266e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.20955e-06\tAbsError: 1.12364e-03\n", + " Region: \"zone_3\"\tRelError: 8.99917e-04\tAbsError: 4.58277e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.44714e-05\tAbsError: 2.28384e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02367e-04\tAbsError: 2.29892e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.99868e-04\tAbsError: 1.91285e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.21023e-06\tAbsError: 1.12389e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.23148e-01\tAbsError: 5.24321e+12\n", + " Region: \"zone_1\"\tRelError: 2.61296e-01\tAbsError: 2.47766e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.61295e-01\tAbsError: 1.83418e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.11380e-07\tAbsError: 2.47583e-04\n", + " Region: \"zone_3\"\tRelError: 6.18518e-02\tAbsError: 5.24321e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94642e-06\tAbsError: 2.61290e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.40186e-06\tAbsError: 2.63031e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.18338e-02\tAbsError: 1.85316e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.11644e-07\tAbsError: 2.47677e-04\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.58569e-04\tAbsError: 7.36064e+12\n", + " Region: \"zone_1\"\tRelError: 1.03590e-04\tAbsError: 3.69022e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02537e-04\tAbsError: 2.95343e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05323e-06\tAbsError: 3.68726e-04\n", + " Region: \"zone_3\"\tRelError: 1.54979e-04\tAbsError: 7.36064e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54889e-05\tAbsError: 3.65218e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96114e-05\tAbsError: 3.70846e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18825e-04\tAbsError: 2.97648e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05333e-06\tAbsError: 3.68764e-04\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 9.77270e-02\tAbsError: 1.82347e+12\n", + " Region: \"zone_1\"\tRelError: 7.65024e-02\tAbsError: 5.28468e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.65022e-02\tAbsError: 6.24160e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51664e-07\tAbsError: 5.27844e-05\n", + " Region: \"zone_3\"\tRelError: 2.12246e-02\tAbsError: 1.82347e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11287e-06\tAbsError: 9.08701e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.75258e-06\tAbsError: 9.14773e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12196e-02\tAbsError: 6.30788e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51721e-07\tAbsError: 5.28055e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 7.93615e-05\tAbsError: 2.16297e+12\n", + " Region: \"zone_1\"\tRelError: 3.23104e-05\tAbsError: 6.76144e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.21176e-05\tAbsError: 9.25130e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.92857e-07\tAbsError: 6.75219e-05\n", + " Region: \"zone_3\"\tRelError: 4.70511e-05\tAbsError: 2.16297e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.07553e-06\tAbsError: 1.07246e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.55801e-06\tAbsError: 1.09051e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.72246e-05\tAbsError: 9.32629e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.92929e-07\tAbsError: 6.75484e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:53\u001b[0m.\u001b[1;36m173\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: 1.25\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.05494e-02\tAbsError: 3.74583e+11\n", + " Region: \"zone_1\"\tRelError: 1.55447e-02\tAbsError: 1.67716e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55447e-02\tAbsError: 1.38057e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.81497e-08\tAbsError: 1.67577e-05\n", + " Region: \"zone_3\"\tRelError: 5.00469e-03\tAbsError: 3.74583e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.90614e-07\tAbsError: 1.86695e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.85333e-07\tAbsError: 1.87888e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.00347e-03\tAbsError: 1.39492e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.81681e-08\tAbsError: 1.67646e-05\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 6.14058e-03\tAbsError: 1.17501e+11\n", + " Region: \"zone_1\"\tRelError: 4.56971e-03\tAbsError: 3.83354e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.56970e-03\tAbsError: 4.25999e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10026e-08\tAbsError: 3.82928e-06\n", + " Region: \"zone_3\"\tRelError: 1.57087e-03\tAbsError: 1.17501e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.29368e-07\tAbsError: 5.85629e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.92613e-07\tAbsError: 5.89376e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57054e-03\tAbsError: 4.30497e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10071e-08\tAbsError: 3.83095e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.36008e+00\tAbsError: 2.97116e+18\n", + " Region: \"zone_1\"\tRelError: 3.47604e+00\tAbsError: 4.18915e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.47604e+00\tAbsError: 4.18718e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.64368e-08\tAbsError: 1.97593e-05\n", + " Region: \"zone_3\"\tRelError: 1.88404e+00\tAbsError: 2.97116e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.08761e-01\tAbsError: 1.48457e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.00956e-01\tAbsError: 1.48659e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 8.74325e-01\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.64587e-08\tAbsError: 1.97673e-05\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.39778e-03\tAbsError: 2.64036e+10\n", + " Region: \"zone_1\"\tRelError: 1.02275e-03\tAbsError: 1.13260e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02274e-03\tAbsError: 9.95943e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.25141e-09\tAbsError: 1.13160e-06\n", + " Region: \"zone_3\"\tRelError: 3.75036e-04\tAbsError: 2.64036e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.18289e-08\tAbsError: 1.31607e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.84989e-08\tAbsError: 1.32430e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74952e-04\tAbsError: 1.00632e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.25274e-09\tAbsError: 1.13210e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 8.38000e-01\tAbsError: 4.19541e+17\n", + " Region: \"zone_1\"\tRelError: 2.02810e-01\tAbsError: 3.72206e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92418e-01\tAbsError: 3.18445e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03924e-02\tAbsError: 3.69022e+00\n", + " Region: \"zone_3\"\tRelError: 6.35190e-01\tAbsError: 4.19541e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.22905e-01\tAbsError: 2.10016e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.09404e-01\tAbsError: 2.09524e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92487e-01\tAbsError: 3.18460e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03935e-02\tAbsError: 3.69072e+00\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 3.99447e-04\tAbsError: 7.75693e+09\n", + " Region: \"zone_1\"\tRelError: 2.89402e-04\tAbsError: 2.71336e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.89401e-04\tAbsError: 2.89100e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78779e-10\tAbsError: 2.71047e-07\n", + " Region: \"zone_3\"\tRelError: 1.10046e-04\tAbsError: 7.75693e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.37898e-09\tAbsError: 3.86636e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.32737e-08\tAbsError: 3.89057e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10023e-04\tAbsError: 2.92143e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.79099e-10\tAbsError: 2.71163e-07\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.94946e-01\tAbsError: 3.72204e+16\n", + " Region: \"zone_1\"\tRelError: 1.32375e-01\tAbsError: 2.45003e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25563e-01\tAbsError: 2.58821e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.81251e-03\tAbsError: 2.42415e+00\n", + " Region: \"zone_3\"\tRelError: 1.62571e-01\tAbsError: 3.72204e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94379e-02\tAbsError: 1.85679e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04649e-02\tAbsError: 1.86524e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25823e-01\tAbsError: 2.58467e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.84508e-03\tAbsError: 2.43578e+00\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 9.59509e-05\tAbsError: 1.84384e+09\n", + " Region: \"zone_1\"\tRelError: 6.90141e-05\tAbsError: 7.66546e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 6.90138e-05\tAbsError: 7.02485e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20044e-10\tAbsError: 7.65844e-08\n", + " Region: \"zone_3\"\tRelError: 2.69368e-05\tAbsError: 1.84384e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12306e-09\tAbsError: 9.19073e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.38040e-09\tAbsError: 9.24762e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.69311e-05\tAbsError: 7.09816e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20134e-10\tAbsError: 7.66170e-08\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:56\u001b[0m.\u001b[1;36m861\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 1.0999999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.61360e-01\tAbsError: 3.87872e+16\n", + " Region: \"zone_1\"\tRelError: 5.16143e-02\tAbsError: 1.56589e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.72241e-02\tAbsError: 1.05190e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.39019e-03\tAbsError: 1.55537e+00\n", + " Region: \"zone_3\"\tRelError: 1.09746e-01\tAbsError: 3.87872e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47430e-02\tAbsError: 1.93636e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.33427e-02\tAbsError: 1.94236e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.72362e-02\tAbsError: 1.05208e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.42403e-03\tAbsError: 1.56733e+00\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.29423e+03\tAbsError: 2.05927e+18\n", + " Region: \"zone_1\"\tRelError: 8.20020e+01\tAbsError: 4.09537e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.20020e+01\tAbsError: 4.09537e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43761e-11\tAbsError: 1.89251e-08\n", + " Region: \"zone_3\"\tRelError: 2.21223e+03\tAbsError: 2.05927e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.07156e-01\tAbsError: 1.02695e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.89042e-01\tAbsError: 1.03232e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21103e+03\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43983e-11\tAbsError: 1.89331e-08\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.12508e-02\tAbsError: 2.36362e+16\n", + " Region: \"zone_1\"\tRelError: 1.23306e-02\tAbsError: 5.50249e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07777e-02\tAbsError: 3.00426e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55296e-03\tAbsError: 5.49949e-01\n", + " Region: \"zone_3\"\tRelError: 2.89202e-02\tAbsError: 2.36362e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.42033e-03\tAbsError: 1.18049e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09279e-02\tAbsError: 1.18314e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10135e-02\tAbsError: 3.00426e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55851e-03\tAbsError: 5.51737e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.61689e+02\tAbsError: 5.07798e+17\n", + " Region: \"zone_1\"\tRelError: 3.64692e+01\tAbsError: 1.84178e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.64640e+01\tAbsError: 3.07624e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.18031e-03\tAbsError: 1.81102e+00\n", + " Region: \"zone_3\"\tRelError: 4.25219e+02\tAbsError: 5.07798e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.93091e-01\tAbsError: 2.54521e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.93600e-01\tAbsError: 2.53278e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.24628e+02\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.18075e-03\tAbsError: 1.81120e+00\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.30456e-02\tAbsError: 5.05269e+15\n", + " Region: \"zone_1\"\tRelError: 2.57227e-03\tAbsError: 2.38651e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.50544e-03\tAbsError: 9.30864e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.68300e-05\tAbsError: 2.37721e-02\n", + " Region: \"zone_3\"\tRelError: 1.04733e-02\tAbsError: 5.05269e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.20422e-03\tAbsError: 2.49761e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.45765e-03\tAbsError: 2.55509e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74456e-03\tAbsError: 9.35381e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.68749e-05\tAbsError: 2.37885e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.49657e+00\tAbsError: 3.51966e+16\n", + " Region: \"zone_1\"\tRelError: 4.64902e-01\tAbsError: 7.04755e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62960e-01\tAbsError: 2.58789e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94154e-03\tAbsError: 6.78876e-01\n", + " Region: \"zone_3\"\tRelError: 2.03167e+00\tAbsError: 3.51966e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.92042e-02\tAbsError: 1.76602e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.22372e-02\tAbsError: 1.75363e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95829e+00\tAbsError: 2.58789e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94154e-03\tAbsError: 6.78876e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.34859e-04\tAbsError: 4.31967e+14\n", + " Region: \"zone_1\"\tRelError: 1.54373e-04\tAbsError: 1.04332e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25013e-04\tAbsError: 4.01967e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.93605e-05\tAbsError: 1.04292e-02\n", + " Region: \"zone_3\"\tRelError: 4.80486e-04\tAbsError: 4.31967e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.73966e-04\tAbsError: 2.14461e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.90341e-05\tAbsError: 2.17506e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.81236e-05\tAbsError: 4.04531e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.93628e-05\tAbsError: 1.04303e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.69589e+00\tAbsError: 5.37696e+15\n", + " Region: \"zone_1\"\tRelError: 3.73324e+00\tAbsError: 3.88180e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.73216e+00\tAbsError: 9.16423e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08076e-03\tAbsError: 3.79016e-01\n", + " Region: \"zone_3\"\tRelError: 2.96265e+00\tAbsError: 5.37696e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.56094e-03\tAbsError: 2.69855e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.01807e-03\tAbsError: 2.67840e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.95599e+00\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08076e-03\tAbsError: 3.79016e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.80331e-04\tAbsError: 1.22832e+14\n", + " Region: \"zone_1\"\tRelError: 8.29661e-05\tAbsError: 8.78226e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.05056e-05\tAbsError: 2.87475e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.46051e-06\tAbsError: 8.75351e-04\n", + " Region: \"zone_3\"\tRelError: 2.97365e-04\tAbsError: 1.22832e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42838e-04\tAbsError: 6.10063e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.36160e-05\tAbsError: 6.18260e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.84489e-05\tAbsError: 2.88687e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.46143e-06\tAbsError: 8.75680e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.88315e-01\tAbsError: 2.62271e+15\n", + " Region: \"zone_1\"\tRelError: 4.71922e-01\tAbsError: 5.76588e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.70275e-01\tAbsError: 6.27557e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64666e-03\tAbsError: 5.76525e-01\n", + " Region: \"zone_3\"\tRelError: 3.16393e-01\tAbsError: 2.62271e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49491e-02\tAbsError: 1.29724e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.95632e-03\tAbsError: 1.32547e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97839e-01\tAbsError: 6.29832e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64866e-03\tAbsError: 5.77242e-01\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.18220e-05\tAbsError: 9.16581e+12\n", + " Region: \"zone_1\"\tRelError: 7.98670e-06\tAbsError: 2.39440e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.31303e-06\tAbsError: 2.34929e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.73668e-07\tAbsError: 2.39205e-04\n", + " Region: \"zone_3\"\tRelError: 2.38353e-05\tAbsError: 9.16581e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31675e-05\tAbsError: 4.59210e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.33363e-06\tAbsError: 4.57371e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.66041e-06\tAbsError: 2.35961e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.73759e-07\tAbsError: 2.39225e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.58997e+01\tAbsError: 3.20526e+15\n", + " Region: \"zone_1\"\tRelError: 1.29777e+01\tAbsError: 2.18715e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29777e+01\tAbsError: 1.22913e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.20649e-05\tAbsError: 2.17486e-02\n", + " Region: \"zone_3\"\tRelError: 8.29220e+01\tAbsError: 3.20526e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.66160e-03\tAbsError: 1.56677e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.59518e-03\tAbsError: 1.63849e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.29127e+01\tAbsError: 1.23738e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.20911e-05\tAbsError: 2.17577e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.68799e+00\tAbsError: 1.24428e+14\n", + " Region: \"zone_1\"\tRelError: 2.78169e+00\tAbsError: 1.62679e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78165e+00\tAbsError: 7.17419e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.64072e-05\tAbsError: 1.62607e-02\n", + " Region: \"zone_3\"\tRelError: 9.06301e-01\tAbsError: 1.24428e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.41976e-04\tAbsError: 6.19540e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.02421e-04\tAbsError: 6.24745e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.05410e-01\tAbsError: 7.21579e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.64251e-05\tAbsError: 1.62670e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:04\u001b[0m.\u001b[1;36m521\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.74817e+00\tAbsError: 1.00690e+14\n", + " Region: \"zone_1\"\tRelError: 2.14136e+00\tAbsError: 1.40275e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.14135e+00\tAbsError: 4.52029e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.00073e-06\tAbsError: 1.39823e-03\n", + " Region: \"zone_3\"\tRelError: 1.60681e+00\tAbsError: 1.00690e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04820e-04\tAbsError: 5.01493e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34375e-04\tAbsError: 5.05408e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60646e+00\tAbsError: 4.54847e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.00161e-06\tAbsError: 1.39859e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.05492e-01\tAbsError: 9.06572e+12\n", + " Region: \"zone_1\"\tRelError: 4.25847e-01\tAbsError: 6.76994e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.25845e-01\tAbsError: 4.28249e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93585e-06\tAbsError: 6.76565e-04\n", + " Region: \"zone_3\"\tRelError: 1.79645e-01\tAbsError: 9.06572e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.72999e-05\tAbsError: 4.51680e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.43151e-05\tAbsError: 4.54892e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79592e-01\tAbsError: 4.30804e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93585e-06\tAbsError: 6.76565e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.48197e-01\tAbsError: 4.50048e+12\n", + " Region: \"zone_1\"\tRelError: 1.60046e-01\tAbsError: 9.62234e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60046e-01\tAbsError: 1.80340e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75240e-07\tAbsError: 9.60431e-05\n", + " Region: \"zone_3\"\tRelError: 8.81510e-02\tAbsError: 4.50048e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.56637e-06\tAbsError: 2.24288e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.56618e-06\tAbsError: 2.25761e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.81336e-02\tAbsError: 1.81436e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75295e-07\tAbsError: 9.60627e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 4.16881e-02\tAbsError: 5.87027e+11\n", + " Region: \"zone_1\"\tRelError: 2.74007e-02\tAbsError: 3.67679e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74006e-02\tAbsError: 2.53315e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05297e-07\tAbsError: 3.67426e-05\n", + " Region: \"zone_3\"\tRelError: 1.42874e-02\tAbsError: 5.87027e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.44350e-06\tAbsError: 2.92634e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.68502e-06\tAbsError: 2.94393e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42841e-02\tAbsError: 2.55528e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05309e-07\tAbsError: 3.67468e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.48230e-02\tAbsError: 2.24518e+11\n", + " Region: \"zone_1\"\tRelError: 9.67323e-03\tAbsError: 6.58649e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 9.67321e-03\tAbsError: 9.07531e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88326e-08\tAbsError: 6.57742e-06\n", + " Region: \"zone_3\"\tRelError: 5.14973e-03\tAbsError: 2.24518e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.12497e-07\tAbsError: 1.11948e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.18689e-07\tAbsError: 1.12571e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.14878e-03\tAbsError: 9.15701e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88397e-08\tAbsError: 6.57999e-06\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.80808e-03\tAbsError: 3.70977e+10\n", + " Region: \"zone_1\"\tRelError: 1.83927e-03\tAbsError: 2.15171e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83927e-03\tAbsError: 1.71473e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.15592e-09\tAbsError: 2.15000e-06\n", + " Region: \"zone_3\"\tRelError: 9.68805e-04\tAbsError: 3.70977e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.10516e-08\tAbsError: 1.85046e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09611e-07\tAbsError: 1.85931e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.68608e-04\tAbsError: 1.72971e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.15824e-09\tAbsError: 2.15085e-06\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 8.73376e-04\tAbsError: 1.21033e+10\n", + " Region: \"zone_1\"\tRelError: 5.71066e-04\tAbsError: 4.32120e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 5.71065e-04\tAbsError: 5.34362e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23573e-09\tAbsError: 4.31585e-07\n", + " Region: \"zone_3\"\tRelError: 3.02310e-04\tAbsError: 1.21033e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.19763e-08\tAbsError: 6.03773e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.10528e-08\tAbsError: 6.06556e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.02256e-04\tAbsError: 5.39200e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23623e-09\tAbsError: 4.31772e-07\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.80868e-04\tAbsError: 2.31864e+09\n", + " Region: \"zone_1\"\tRelError: 1.18462e-04\tAbsError: 1.27109e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18462e-04\tAbsError: 1.10538e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.63622e-10\tAbsError: 1.26998e-07\n", + " Region: \"zone_3\"\tRelError: 6.24053e-05\tAbsError: 2.31864e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73488e-09\tAbsError: 1.15691e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.90572e-09\tAbsError: 1.16172e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 6.23933e-05\tAbsError: 1.11505e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.63771e-10\tAbsError: 1.27053e-07\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 5.16278e-05\tAbsError: 6.84005e+08\n", + " Region: \"zone_1\"\tRelError: 3.37813e-05\tAbsError: 2.73846e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 3.37812e-05\tAbsError: 3.15860e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.83172e-11\tAbsError: 2.73530e-08\n", + " Region: \"zone_3\"\tRelError: 1.78465e-05\tAbsError: 6.84005e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24266e-09\tAbsError: 3.41303e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.85743e-09\tAbsError: 3.42702e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78433e-05\tAbsError: 3.18691e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.83488e-11\tAbsError: 2.73645e-08\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:11\u001b[0m.\u001b[1;36m280\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 1.2\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.69357e+00\tAbsError: 2.66495e+18\n", + " Region: \"zone_1\"\tRelError: 4.21216e+00\tAbsError: 4.09534e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.21216e+00\tAbsError: 4.09534e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.15817e-11\tAbsError: 7.53761e-09\n", + " Region: \"zone_3\"\tRelError: 2.48140e+00\tAbsError: 2.66495e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.26904e-01\tAbsError: 1.33117e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.18950e-01\tAbsError: 1.33378e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43555e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.15905e-11\tAbsError: 7.54080e-09\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 9.11083e-01\tAbsError: 4.29693e+17\n", + " Region: \"zone_1\"\tRelError: 2.33260e-01\tAbsError: 3.01190e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24815e-01\tAbsError: 3.07620e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.44504e-03\tAbsError: 2.98114e+00\n", + " Region: \"zone_3\"\tRelError: 6.77823e-01\tAbsError: 4.29693e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.26134e-01\tAbsError: 2.15151e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.18205e-01\tAbsError: 2.14542e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25038e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.44618e-03\tAbsError: 2.98144e+00\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.98015e-01\tAbsError: 3.44260e+16\n", + " Region: \"zone_1\"\tRelError: 1.67630e-01\tAbsError: 4.32385e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55559e-01\tAbsError: 2.58776e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20711e-02\tAbsError: 4.29797e+00\n", + " Region: \"zone_3\"\tRelError: 2.30385e-01\tAbsError: 3.44260e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.28242e-02\tAbsError: 1.71675e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96798e-02\tAbsError: 1.72585e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55792e-01\tAbsError: 2.58613e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20893e-02\tAbsError: 4.30461e+00\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.88268e-01\tAbsError: 5.44887e+16\n", + " Region: \"zone_1\"\tRelError: 8.11123e-02\tAbsError: 3.74063e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 7.05212e-02\tAbsError: 9.16402e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05911e-02\tAbsError: 3.73147e+00\n", + " Region: \"zone_3\"\tRelError: 2.07156e-01\tAbsError: 5.44887e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.14920e-02\tAbsError: 2.71499e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.19391e-02\tAbsError: 2.73388e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.31159e-02\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06092e-02\tAbsError: 3.73794e+00\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.46664e-01\tAbsError: 4.08487e+16\n", + " Region: \"zone_1\"\tRelError: 4.56801e-02\tAbsError: 3.69590e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.46303e-02\tAbsError: 6.80823e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04978e-03\tAbsError: 3.68909e-01\n", + " Region: \"zone_3\"\tRelError: 1.00984e-01\tAbsError: 4.08487e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47873e-02\tAbsError: 2.03982e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.89178e-02\tAbsError: 2.04505e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62262e-02\tAbsError: 6.81912e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05310e-03\tAbsError: 3.70023e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.50047e-03\tAbsError: 3.65688e+15\n", + " Region: \"zone_1\"\tRelError: 1.17570e-03\tAbsError: 5.54688e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01812e-03\tAbsError: 2.86291e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57580e-04\tAbsError: 5.54401e-02\n", + " Region: \"zone_3\"\tRelError: 6.32477e-03\tAbsError: 3.65688e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.94960e-03\tAbsError: 1.81551e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.15827e-03\tAbsError: 1.84137e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05928e-03\tAbsError: 2.88541e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57617e-04\tAbsError: 5.54541e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.05325e-03\tAbsError: 7.39656e+14\n", + " Region: \"zone_1\"\tRelError: 1.05635e-03\tAbsError: 4.72946e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04302e-03\tAbsError: 1.25154e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33385e-05\tAbsError: 4.71694e-03\n", + " Region: \"zone_3\"\tRelError: 1.99689e-03\tAbsError: 7.39656e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.06585e-04\tAbsError: 3.69865e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.95891e-04\tAbsError: 3.69791e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08107e-03\tAbsError: 1.26067e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33460e-05\tAbsError: 4.71960e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.02228e-04\tAbsError: 7.07967e+13\n", + " Region: \"zone_1\"\tRelError: 5.25423e-05\tAbsError: 1.84411e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.72968e-05\tAbsError: 8.14577e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.24545e-06\tAbsError: 1.84329e-03\n", + " Region: \"zone_3\"\tRelError: 1.49686e-04\tAbsError: 7.07967e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.00882e-05\tAbsError: 3.51107e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.52399e-05\tAbsError: 3.56860e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.91100e-05\tAbsError: 8.19808e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.24790e-06\tAbsError: 1.84419e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 9.93368e-05\tAbsError: 1.98300e+13\n", + " Region: \"zone_1\"\tRelError: 3.45670e-05\tAbsError: 1.74429e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40718e-05\tAbsError: 4.08047e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.95220e-07\tAbsError: 1.74021e-04\n", + " Region: \"zone_3\"\tRelError: 6.47697e-05\tAbsError: 1.98300e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.78567e-06\tAbsError: 9.91314e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.41541e-05\tAbsError: 9.91687e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53344e-05\tAbsError: 4.11038e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.95524e-07\tAbsError: 1.74130e-04\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:19\u001b[0m.\u001b[1;36m618\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 1.3\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.74984e+00\tAbsError: 2.99427e+18\n", + " Region: \"zone_1\"\tRelError: 1.22014e+00\tAbsError: 4.10265e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22014e+00\tAbsError: 4.09531e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08768e-07\tAbsError: 7.33628e-05\n", + " Region: \"zone_3\"\tRelError: 1.52970e+00\tAbsError: 2.99427e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.68781e-01\tAbsError: 1.49643e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.58888e-01\tAbsError: 1.49783e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 6.02035e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08870e-07\tAbsError: 7.33999e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 7.11354e-01\tAbsError: 3.39922e+17\n", + " Region: \"zone_1\"\tRelError: 1.62508e-01\tAbsError: 4.20847e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50825e-01\tAbsError: 3.07616e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16823e-02\tAbsError: 4.17771e+00\n", + " Region: \"zone_3\"\tRelError: 5.48846e-01\tAbsError: 3.39922e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.02912e-01\tAbsError: 1.70116e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.83391e-01\tAbsError: 1.69806e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50859e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16835e-02\tAbsError: 4.17814e+00\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.39788e-01\tAbsError: 5.48577e+16\n", + " Region: \"zone_1\"\tRelError: 1.05133e-01\tAbsError: 2.52094e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 9.81720e-02\tAbsError: 2.58708e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.96071e-03\tAbsError: 2.49507e+00\n", + " Region: \"zone_3\"\tRelError: 1.34655e-01\tAbsError: 5.48577e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.44445e-02\tAbsError: 2.73900e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.50754e-02\tAbsError: 2.74677e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 9.81720e-02\tAbsError: 2.58708e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.96305e-03\tAbsError: 2.49588e+00\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.46801e-01\tAbsError: 5.16511e+16\n", + " Region: \"zone_1\"\tRelError: 3.82516e-02\tAbsError: 1.66960e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35977e-02\tAbsError: 9.16363e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.65383e-03\tAbsError: 1.66044e+00\n", + " Region: \"zone_3\"\tRelError: 1.08549e-01\tAbsError: 5.16511e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.50546e-02\tAbsError: 2.58130e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.52331e-02\tAbsError: 2.58381e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.36049e-02\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.65675e-03\tAbsError: 1.66145e+00\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.18420e-02\tAbsError: 3.01642e+16\n", + " Region: \"zone_1\"\tRelError: 1.00205e-02\tAbsError: 3.09336e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.14415e-03\tAbsError: 3.58905e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.76318e-04\tAbsError: 3.08977e-01\n", + " Region: \"zone_3\"\tRelError: 3.18216e-02\tAbsError: 3.01642e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.57299e-03\tAbsError: 1.50610e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.30870e-02\tAbsError: 1.51033e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 9.28151e-03\tAbsError: 3.59005e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.80063e-04\tAbsError: 3.10394e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.19199e-03\tAbsError: 3.33433e+15\n", + " Region: \"zone_1\"\tRelError: 7.32131e-04\tAbsError: 2.20514e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.70631e-04\tAbsError: 3.80425e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.14997e-05\tAbsError: 2.20134e-02\n", + " Region: \"zone_3\"\tRelError: 5.45986e-03\tAbsError: 3.33433e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.47884e-03\tAbsError: 1.65513e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.44744e-04\tAbsError: 1.67921e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.74729e-04\tAbsError: 3.80514e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.15473e-05\tAbsError: 2.20319e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.71686e-04\tAbsError: 6.22919e+14\n", + " Region: \"zone_1\"\tRelError: 7.57987e-05\tAbsError: 4.41710e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.34842e-05\tAbsError: 4.90940e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23145e-05\tAbsError: 4.41219e-03\n", + " Region: \"zone_3\"\tRelError: 3.95887e-04\tAbsError: 6.22919e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.19030e-04\tAbsError: 3.10182e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.00016e-04\tAbsError: 3.12737e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.45237e-05\tAbsError: 4.91118e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23180e-05\tAbsError: 4.41341e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.23949e-04\tAbsError: 6.05361e+13\n", + " Region: \"zone_1\"\tRelError: 2.06195e-05\tAbsError: 8.14059e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83500e-05\tAbsError: 1.11800e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.26953e-06\tAbsError: 8.12941e-04\n", + " Region: \"zone_3\"\tRelError: 1.03330e-04\tAbsError: 6.05361e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.60362e-05\tAbsError: 3.03412e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.74075e-05\tAbsError: 3.01949e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76158e-05\tAbsError: 1.12220e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27050e-06\tAbsError: 8.13295e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.75170e-05\tAbsError: 8.97976e+12\n", + " Region: \"zone_1\"\tRelError: 2.87179e-06\tAbsError: 8.96839e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.62152e-06\tAbsError: 1.74588e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.50268e-07\tAbsError: 8.95093e-05\n", + " Region: \"zone_3\"\tRelError: 1.46452e-05\tAbsError: 8.97976e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00137e-05\tAbsError: 4.44041e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.14437e-06\tAbsError: 4.53935e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23658e-06\tAbsError: 1.75366e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.50560e-07\tAbsError: 8.96198e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:29\u001b[0m.\u001b[1;36m537\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:30\u001b[0m.\u001b[1;36m580\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:30\u001b[0m.\u001b[1;36m595\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.0.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:30\u001b[0m.\u001b[1;36m706\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.5.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:30\u001b[0m.\u001b[1;36m812\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.55.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:30\u001b[0m.\u001b[1;36m918\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.6.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:31\u001b[0m.\u001b[1;36m017\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.65.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:31\u001b[0m.\u001b[1;36m129\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.7.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:31\u001b[0m.\u001b[1;36m256\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.75.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:31\u001b[0m.\u001b[1;36m360\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.8.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:31\u001b[0m.\u001b[1;36m475\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.85.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:31\u001b[0m.\u001b[1;36m575\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.9.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:31\u001b[0m.\u001b[1;36m680\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.95.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:31\u001b[0m.\u001b[1;36m778\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.0.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:31\u001b[0m.\u001b[1;36m885\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.05.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:31\u001b[0m.\u001b[1;36m994\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.1.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:32\u001b[0m.\u001b[1;36m104\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.15.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:32\u001b[0m.\u001b[1;36m212\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.2.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:32\u001b[0m.\u001b[1;36m316\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.25.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:32\u001b[0m.\u001b[1;36m423\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.3.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:32\u001b[0m.\u001b[1;36m534\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mFinished_reading devsim data\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:32\u001b[0m.\u001b[1;36m544\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading heat-charge solver CHARGE output.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:32\u001b[0m.\u001b[1;36m648\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor charge_global_mnt\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:33\u001b[0m.\u001b[1;36m888\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor potential_global_mnt\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:34\u001b[0m.\u001b[1;36m594\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor capacitance_global_mnt\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:35\u001b[0m.\u001b[1;36m870\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor temp_mnt\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m463\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mPostprocess time (s): 5.8727\u001b[0m \n" + ] + }, + { + "data": { + "text/plain": [ + "CompletedProcess(args=['cp', 'output/simulation_data.hdf5', 'tmp_Ba_example_cst/'], returncode=0)" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "results_cst = run_heat_sim(sim=sim_cst, log_level=\"DEBUG\")\n", + "subprocess.run([\"cp\", \"-r\", \"tmp\", \"tmp_Ba_example_cst\"]) \n", + "subprocess.run([\"cp\", \"output/simulation_data.hdf5\", \"tmp_Ba_example_cst/\"]) " + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "f2db1025-950c-4c15-a7c0-4980022d1ebd", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m815\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mSetting up heat-charge simulation.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m866\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin meshing heat-charge simulation.\u001b[0m \n", + "Debug : Destroying model model\n", + "Debug : Destroying model \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m889\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin adding structures to mesh.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m900\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m914\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m926\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m938\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m949\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m960\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m977\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m996\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m012\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m028\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m040\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m051\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m062\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m070\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd adding structures to mesh.\u001b[0m \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Warning : Logger already started - ignoring\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m078\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m090\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m101\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m113\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m121\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m129\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m137\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m147\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m157\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m168\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m179\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m190\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m200\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin adding monitors.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m211\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd adding monitors.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m219\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin combining added structures.\u001b[0m \n", + "Debug : BOOL (2,1) other \n", + "Debug : BOOL (3,1) replaced by 1\n", + "Debug : BOOL (3,2) other\n", + "Debug : BOOL (3,3) replaced by 1\n", + "Debug : BOOL (3,4) replaced by 1\n", + "Debug : BOOL (3,5) replaced by 1\n", + "Debug : BOOL (3,6) other\n", + "Debug : BOOL (2,38) other\n", + "Debug : BOOL (2,39) other\n", + "Debug : BOOL (2,40) other\n", + "Debug : BOOL (2,41) other\n", + "Debug : BOOL (2,42) other\n", + "Debug : BOOL (2,43) other\n", + "Debug : BOOL (2,44) other\n", + "Debug : BOOL (2,45) other\n", + "Debug : BOOL (2,46) other\n", + "Debug : BOOL (2,47) other\n", + "Debug : BOOL (2,48) other\n", + "Debug : BOOL (2,49) other\n", + "Debug : BOOL in (2,1) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (3,1) -> out (3,1)\n", + "Debug : BOOL in (3,2) -> out (3,6) (3,5) (3,3) (3,7) (3,8) (3,4) (3,9)\n", + "Debug : BOOL in (3,3) -> out (3,3)\n", + "Debug : BOOL in (3,4) -> out (3,4)\n", + "Debug : BOOL in (3,5) -> out (3,5)\n", + "Debug : BOOL in (3,6) -> out (3,9) (3,8)\n", + "Debug : BOOL in (2,38) -> out (2,13) (2,48) (2,49)\n", + "Debug : BOOL in (2,39) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,40) -> out (2,8) (2,51) (2,54)\n", + "Debug : BOOL in (2,41) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,42) -> out (2,11) (2,60) (2,37) (2,43)\n", + "Debug : BOOL in (2,43) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,44) -> out (2,10) (2,63) (2,44) (2,38)\n", + "Debug : BOOL in (2,45) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,46) -> out (2,12) (2,53) (2,36)\n", + "Debug : BOOL in (2,47) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,48) -> out (2,9) (2,58) (2,39)\n", + "Debug : BOOL in (2,49) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m319\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd adding structures to mesh.\u001b[0m \n", + "Debug : Syncing OCC_Internals with GModel\n", + "Debug : Sync is removing 377 model entities\n", + "Debug : Destroying 0 entities in model\n", + "Debug : OCCRTree found 3 matches at (-2.5,-2.09,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (-2.5,-2.09,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (-2.5,-2.09,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (-2.5,-2.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (-2.5,-2.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (-2.5,-2.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-2.09,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-2.09,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-2.09,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-2.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-2.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-2.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-2.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-2.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-2.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-2.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-2.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-2.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.5,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.5,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.5,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.5,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.5,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.5,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,-2.295,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,-2.295,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,-2.295,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,-2.295,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,-2.295,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,-2.295,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,1.205,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,1.205,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,1.205,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,1.205,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,1.205,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,1.205,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-2.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-2.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-2.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.2,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.75,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.75,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.75,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.75,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.75,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.75,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,-2.295,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,-2.295,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,-2.295,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-2.1925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-2.1925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-2.1925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-2.1925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-2.1925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-2.1925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.2525,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.2525,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.2525,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.2525,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.2525,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.2525,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,1.1025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,1.1025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,1.1025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,1.205,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,1.205,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,1.205,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,1.1025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,1.1025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,1.1025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.28,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.28,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.28,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.28,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.28,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-2.28,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.47,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.47,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.47,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.28,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.28,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.28,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.28,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.28,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-2.28,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.045,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.045,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.045,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.25,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.25,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.25,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.25,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.25,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,0.25,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 7 - new wire\n", + "Debug : Curve 8 (7 --> 8) ori 1\n", + "Debug : Curve 42 (8 --> 34) ori 1\n", + "Debug : Curve 41 (33 --> 34) ori -1\n", + "Debug : Curve 40 (11 --> 33) ori -1\n", + "Debug : Curve 14 (13 --> 11) ori -1\n", + "Debug : Curve 39 (32 --> 13) ori -1\n", + "Debug : Curve 38 (31 --> 32) ori -1\n", + "Debug : Curve 37 (14 --> 31) ori -1\n", + "Debug : Curve 16 (15 --> 14) ori -1\n", + "Debug : Curve 36 (30 --> 15) ori -1\n", + "Debug : Curve 35 (29 --> 30) ori -1\n", + "Debug : Curve 34 (16 --> 29) ori -1\n", + "Debug : Curve 18 (17 --> 16) ori -1\n", + "Debug : Curve 33 (28 --> 17) ori -1\n", + "Debug : Curve 32 (27 --> 28) ori -1\n", + "Debug : Curve 31 (18 --> 27) ori -1\n", + "Debug : Curve 20 (19 --> 18) ori -1\n", + "Debug : Curve 30 (26 --> 19) ori -1\n", + "Debug : Curve 29 (25 --> 26) ori -1\n", + "Debug : Curve 28 (20 --> 25) ori -1\n", + "Debug : Curve 22 (21 --> 20) ori -1\n", + "Debug : Curve 27 (24 --> 21) ori -1\n", + "Debug : Curve 26 (23 --> 24) ori -1\n", + "Debug : Curve 25 (23 --> 7) ori 1\n", + "Debug : OCC surface 7 with 24 parameter bounds (-2.4,2.4)(-1.545,0.455)\n", + "Debug : OCCRTree found 1 matches at (0,-1.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-1.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-1.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 8 - new wire\n", + "Debug : Curve 43 (22 --> 23) ori 1\n", + "Debug : Curve 26 (23 --> 24) ori 1\n", + "Debug : Curve 27 (24 --> 21) ori 1\n", + "Debug : Curve 23 (22 --> 21) ori -1\n", + "Debug : OCC surface 8 with 4 parameter bounds (-2.4,-2.29)(0.45,0.455)\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 9 - new wire\n", + "Debug : Curve 21 (20 --> 19) ori -1\n", + "Debug : Curve 28 (20 --> 25) ori 1\n", + "Debug : Curve 29 (25 --> 26) ori 1\n", + "Debug : Curve 30 (26 --> 19) ori 1\n", + "Debug : OCC surface 9 with 4 parameter bounds (-1.31,-1.19)(0.45,0.455)\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 10 - new wire\n", + "Debug : Curve 19 (18 --> 17) ori -1\n", + "Debug : Curve 31 (18 --> 27) ori 1\n", + "Debug : Curve 32 (27 --> 28) ori 1\n", + "Debug : Curve 33 (28 --> 17) ori 1\n", + "Debug : OCC surface 10 with 4 parameter bounds (-0.31,-0.19)(0.45,0.455)\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 11 - new wire\n", + "Debug : Curve 36 (30 --> 15) ori 1\n", + "Debug : Curve 17 (16 --> 15) ori -1\n", + "Debug : Curve 34 (16 --> 29) ori 1\n", + "Debug : Curve 35 (29 --> 30) ori 1\n", + "Debug : OCC surface 11 with 4 parameter bounds (0.19,0.31)(0.45,0.455)\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 12 - new wire\n", + "Debug : Curve 39 (32 --> 13) ori 1\n", + "Debug : Curve 15 (14 --> 13) ori -1\n", + "Debug : Curve 37 (14 --> 31) ori 1\n", + "Debug : Curve 38 (31 --> 32) ori 1\n", + "Debug : OCC surface 12 with 4 parameter bounds (1.19,1.31)(0.45,0.455)\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 13 - new wire\n", + "Debug : Curve 41 (33 --> 34) ori 1\n", + "Debug : Curve 44 (34 --> 12) ori 1\n", + "Debug : Curve 13 (11 --> 12) ori -1\n", + "Debug : Curve 40 (11 --> 33) ori 1\n", + "Debug : OCC surface 13 with 4 parameter bounds (2.29,2.4)(0.45,0.455)\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 35 - new wire\n", + "Debug : Curve 93 (70 --> 72) ori 1\n", + "Debug : Curve 118 (72 --> 51) ori 1\n", + "Debug : Curve 62 (50 --> 51) ori -1\n", + "Debug : Curve 117 (50 --> 55) ori 1\n", + "Debug : Curve 68 (55 --> 54) ori 1\n", + "Debug : Curve 70 (56 --> 54) ori -1\n", + "Debug : Curve 74 (56 --> 60) ori 1\n", + "Debug : Curve 116 (84 --> 60) ori -1\n", + "Debug : Curve 115 (83 --> 84) ori -1\n", + "Debug : Curve 114 (59 --> 83) ori -1\n", + "Debug : Curve 72 (59 --> 57) ori 1\n", + "Debug : Curve 113 (82 --> 57) ori -1\n", + "Debug : Curve 112 (62 --> 82) ori -1\n", + "Debug : Curve 77 (62 --> 61) ori 1\n", + "Debug : Curve 80 (61 --> 63) ori 1\n", + "Debug : Curve 82 (65 --> 63) ori -1\n", + "Debug : Curve 111 (81 --> 65) ori -1\n", + "Debug : Curve 110 (69 --> 81) ori -1\n", + "Debug : Curve 86 (69 --> 68) ori 1\n", + "Debug : Curve 109 (80 --> 68) ori -1\n", + "Debug : Curve 108 (79 --> 80) ori -1\n", + "Debug : Curve 107 (66 --> 79) ori -1\n", + "Debug : Curve 84 (66 --> 67) ori 1\n", + "Debug : Curve 90 (67 --> 70) ori 1\n", + "Debug : OCC surface 35 with 24 parameter bounds (-2.4,2.4)(0.545,1.545)\n", + "Debug : OCCRTree found 1 matches at (0,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.5,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 36 - new wire\n", + "Debug : Curve 85 (68 --> 66) ori 1\n", + "Debug : Curve 107 (66 --> 79) ori 1\n", + "Debug : Curve 108 (79 --> 80) ori 1\n", + "Debug : Curve 109 (80 --> 68) ori 1\n", + "Debug : OCC surface 36 with 4 parameter bounds (1.19,1.31)(0.545,0.55)\n", + "Debug : OCCRTree found 1 matches at (-1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 37 - new wire\n", + "Debug : Curve 87 (64 --> 69) ori 1\n", + "Debug : Curve 110 (69 --> 81) ori 1\n", + "Debug : Curve 111 (81 --> 65) ori 1\n", + "Debug : Curve 83 (64 --> 65) ori -1\n", + "Debug : OCC surface 37 with 4 parameter bounds (0.25,0.31)(0.545,0.55)\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 38 - new wire\n", + "Debug : Curve 113 (82 --> 57) ori 1\n", + "Debug : Curve 71 (57 --> 58) ori 1\n", + "Debug : Curve 78 (58 --> 62) ori 1\n", + "Debug : Curve 112 (62 --> 82) ori 1\n", + "Debug : OCC surface 38 with 4 parameter bounds (-0.31,-0.25)(0.545,0.55)\n", + "Debug : OCCRTree found 1 matches at (0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 39 - new wire\n", + "Debug : Curve 116 (84 --> 60) ori 1\n", + "Debug : Curve 73 (60 --> 59) ori 1\n", + "Debug : Curve 114 (59 --> 83) ori 1\n", + "Debug : Curve 115 (83 --> 84) ori 1\n", + "Debug : OCC surface 39 with 4 parameter bounds (-1.31,-1.19)(0.545,0.55)\n", + "Debug : OCCRTree found 1 matches at (1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 42 - new wire\n", + "Debug : Curve 121 (86 --> 85) ori 1\n", + "Debug : Curve 126 (88 --> 85) ori -1\n", + "Debug : Curve 125 (65 --> 88) ori -1\n", + "Debug : Curve 82 (65 --> 63) ori 1\n", + "Debug : Curve 80 (61 --> 63) ori -1\n", + "Debug : Curve 77 (62 --> 61) ori -1\n", + "Debug : Curve 124 (87 --> 62) ori -1\n", + "Debug : Curve 123 (86 --> 87) ori -1\n", + "Debug : OCC surface 42 with 8 parameter bounds (-0.25,0.25)(0.545,0.765)\n", + "Debug : OCCRTree found 1 matches at (0,0.11,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.11,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.11,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 43 - new wire\n", + "Debug : Curve 120 (85 --> 64) ori 1\n", + "Debug : Curve 83 (64 --> 65) ori 1\n", + "Debug : Curve 125 (65 --> 88) ori 1\n", + "Debug : Curve 126 (88 --> 85) ori 1\n", + "Debug : OCC surface 43 with 4 parameter bounds (0.19,0.25)(0.545,0.55)\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 44 - new wire\n", + "Debug : Curve 122 (58 --> 86) ori 1\n", + "Debug : Curve 123 (86 --> 87) ori 1\n", + "Debug : Curve 124 (87 --> 62) ori 1\n", + "Debug : Curve 78 (58 --> 62) ori -1\n", + "Debug : OCC surface 44 with 4 parameter bounds (-0.25,-0.19)(0.545,0.55)\n", + "Debug : OCCRTree found 1 matches at (0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 47 - new wire\n", + "Debug : Curve 128 (89 --> 90) ori 1\n", + "Debug : Curve 130 (90 --> 8) ori 1\n", + "Debug : Curve 8 (7 --> 8) ori -1\n", + "Debug : Curve 129 (7 --> 89) ori 1\n", + "Debug : OCC surface 47 with 4 parameter bounds (-2.4,2.4)(-1.75,-1.545)\n", + "Debug : OCCRTree found 1 matches at (0,-2.1925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-2.1925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-2.1925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 48 - new wire\n", + "Debug : Curve 13 (11 --> 12) ori 1\n", + "Debug : Curve 133 (12 --> 92) ori 1\n", + "Debug : Curve 132 (91 --> 92) ori -1\n", + "Debug : Curve 131 (91 --> 11) ori 1\n", + "Debug : OCC surface 48 with 4 parameter bounds (2.29,2.4)(0.455,0.545)\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 49 - new wire\n", + "Debug : Curve 132 (91 --> 92) ori 1\n", + "Debug : Curve 136 (92 --> 94) ori 1\n", + "Debug : Curve 135 (94 --> 93) ori 1\n", + "Debug : Curve 134 (93 --> 91) ori 1\n", + "Debug : OCC surface 49 with 4 parameter bounds (2.29,2.4)(0.545,0.55)\n", + "Debug : OCCRTree found 1 matches at (-2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 50 - new wire\n", + "Debug : Curve 14 (13 --> 11) ori 1\n", + "Debug : Curve 131 (91 --> 11) ori -1\n", + "Debug : Curve 138 (67 --> 91) ori -1\n", + "Debug : Curve 84 (66 --> 67) ori -1\n", + "Debug : Curve 137 (13 --> 66) ori -1\n", + "Debug : OCC surface 50 with 5 parameter bounds (1.31,2.29)(0.455,0.545)\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 51 - new wire\n", + "Debug : Curve 139 (95 --> 22) ori 1\n", + "Debug : Curve 23 (22 --> 21) ori 1\n", + "Debug : Curve 141 (21 --> 96) ori 1\n", + "Debug : Curve 140 (95 --> 96) ori -1\n", + "Debug : OCC surface 51 with 4 parameter bounds (-2.4,-2.29)(0.455,0.545)\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 52 - new wire\n", + "Debug : Curve 135 (94 --> 93) ori -1\n", + "Debug : Curve 142 (94 --> 72) ori 1\n", + "Debug : Curve 93 (70 --> 72) ori -1\n", + "Debug : Curve 90 (67 --> 70) ori -1\n", + "Debug : Curve 138 (67 --> 91) ori 1\n", + "Debug : Curve 134 (93 --> 91) ori -1\n", + "Debug : OCC surface 52 with 6 parameter bounds (2,2.4)(0.545,1.045)\n", + "Debug : OCCRTree found 1 matches at (-2.2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 53 - new wire\n", + "Debug : Curve 15 (14 --> 13) ori 1\n", + "Debug : Curve 137 (13 --> 66) ori 1\n", + "Debug : Curve 85 (68 --> 66) ori -1\n", + "Debug : Curve 143 (68 --> 14) ori 1\n", + "Debug : OCC surface 53 with 4 parameter bounds (1.19,1.31)(0.455,0.545)\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 54 - new wire\n", + "Debug : Curve 144 (97 --> 95) ori 1\n", + "Debug : Curve 140 (95 --> 96) ori 1\n", + "Debug : Curve 146 (96 --> 98) ori 1\n", + "Debug : Curve 145 (98 --> 97) ori 1\n", + "Debug : OCC surface 54 with 4 parameter bounds (-2.4,-2.29)(0.545,0.55)\n", + "Debug : OCCRTree found 1 matches at (2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 55 - new wire\n", + "Debug : Curve 141 (21 --> 96) ori -1\n", + "Debug : Curve 22 (21 --> 20) ori 1\n", + "Debug : Curve 148 (60 --> 20) ori -1\n", + "Debug : Curve 74 (56 --> 60) ori -1\n", + "Debug : Curve 147 (96 --> 56) ori -1\n", + "Debug : OCC surface 55 with 5 parameter bounds (-2.29,-1.31)(0.455,0.545)\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 56 - new wire\n", + "Debug : Curve 16 (15 --> 14) ori 1\n", + "Debug : Curve 143 (68 --> 14) ori -1\n", + "Debug : Curve 86 (69 --> 68) ori -1\n", + "Debug : Curve 149 (15 --> 69) ori -1\n", + "Debug : OCC surface 56 with 4 parameter bounds (0.31,1.19)(0.455,0.545)\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 57 - new wire\n", + "Debug : Curve 150 (55 --> 97) ori 1\n", + "Debug : Curve 145 (98 --> 97) ori -1\n", + "Debug : Curve 146 (96 --> 98) ori -1\n", + "Debug : Curve 147 (96 --> 56) ori 1\n", + "Debug : Curve 70 (56 --> 54) ori 1\n", + "Debug : Curve 68 (55 --> 54) ori -1\n", + "Debug : OCC surface 57 with 6 parameter bounds (-2.4,-2)(0.545,1.045)\n", + "Debug : OCCRTree found 1 matches at (2.2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.2,0.25,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 58 - new wire\n", + "Debug : Curve 148 (60 --> 20) ori 1\n", + "Debug : Curve 21 (20 --> 19) ori 1\n", + "Debug : Curve 151 (19 --> 59) ori 1\n", + "Debug : Curve 73 (60 --> 59) ori -1\n", + "Debug : OCC surface 58 with 4 parameter bounds (-1.31,-1.19)(0.455,0.545)\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 59 - new wire\n", + "Debug : Curve 62 (50 --> 51) ori 1\n", + "Debug : Curve 154 (51 --> 100) ori 1\n", + "Debug : Curve 153 (100 --> 99) ori 1\n", + "Debug : Curve 152 (99 --> 50) ori 1\n", + "Debug : OCC surface 59 with 4 parameter bounds (-2.4,2.4)(1.545,1.75)\n", + "Debug : OCCRTree found 1 matches at (0,1.1025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,1.1025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,1.1025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 60 - new wire\n", + "Debug : Curve 17 (16 --> 15) ori 1\n", + "Debug : Curve 149 (15 --> 69) ori 1\n", + "Debug : Curve 87 (64 --> 69) ori -1\n", + "Debug : Curve 120 (85 --> 64) ori -1\n", + "Debug : Curve 155 (85 --> 16) ori 1\n", + "Debug : OCC surface 60 with 5 parameter bounds (0.19,0.31)(0.455,0.545)\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 61 - new wire\n", + "Debug : Curve 151 (19 --> 59) ori -1\n", + "Debug : Curve 20 (19 --> 18) ori 1\n", + "Debug : Curve 156 (57 --> 18) ori -1\n", + "Debug : Curve 72 (59 --> 57) ori -1\n", + "Debug : OCC surface 61 with 4 parameter bounds (-1.19,-0.31)(0.455,0.545)\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 62 - new wire\n", + "Debug : Curve 18 (17 --> 16) ori 1\n", + "Debug : Curve 155 (85 --> 16) ori -1\n", + "Debug : Curve 121 (86 --> 85) ori -1\n", + "Debug : Curve 157 (17 --> 86) ori -1\n", + "Debug : OCC surface 62 with 4 parameter bounds (-0.19,0.19)(0.455,0.545)\n", + "Debug : OCCRTree found 1 matches at (0,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 63 - new wire\n", + "Debug : Curve 156 (57 --> 18) ori 1\n", + "Debug : Curve 19 (18 --> 17) ori 1\n", + "Debug : Curve 157 (17 --> 86) ori 1\n", + "Debug : Curve 122 (58 --> 86) ori -1\n", + "Debug : Curve 71 (57 --> 58) ori -1\n", + "Debug : OCC surface 63 with 5 parameter bounds (-0.31,-0.19)(0.455,0.545)\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : GModel imported:\n", + "Debug : 81 points\n", + "Debug : 110 curves\n", + "Debug : 32 surfaces\n", + "Debug : 0 volumes\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m346\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin constructing surface dictionary.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m359\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd constructing surface dictionary.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m369\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin create volume zones.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m380\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd create volume zones.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m390\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin create surface zones.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m405\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mContinue create surface zones.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m417\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd create surface zones.\u001b[0m \n", + "Debug : Decoded option name 'Mesh' . 'MeshSizeExtendFromBoundary' (index 0)\n", + "Debug : Decoded option name 'Mesh' . 'MeshSizeFromPoints' (index 0)\n", + "Debug : Decoded option name 'Mesh' . 'MeshSizeFromCurvature' (index 0)\n", + "Debug : Destroying 28 entities in model\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m428\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin meshing.\u001b[0m \n", + "Debug : Decoded option name 'Mesh' . 'Algorithm' (index 0)\n", + "Debug : Decoded option name 'Mesh' . 'Algorithm3D' (index 0)\n", + "Debug : Decoded option name 'General' . 'NumThreads' (index 0)\n", + "Info : Meshing 1D...\n", + "Info : [ 0%] Meshing curve 8 (Line)\n", + "Debug : Meshing curve 8 (Line): 9 interior vertices\n", + "Info : [ 10%] Meshing curve 13 (Line)\n", + "Debug : Meshing curve 13 (Line): 26 interior vertices\n", + "Info : [ 10%] Meshing curve 14 (Line)\n", + "Debug : Meshing curve 14 (Line): 44 interior vertices\n", + "Info : [ 10%] Meshing curve 15 (Line)\n", + "Debug : Meshing curve 15 (Line): 28 interior vertices\n", + "Info : [ 10%] Meshing curve 16 (Line)\n", + "Debug : Meshing curve 16 (Line): 40 interior vertices\n", + "Info : [ 10%] Meshing curve 17 (Line)\n", + "Debug : Meshing curve 17 (Line): 28 interior vertices\n", + "Info : [ 10%] Meshing curve 18 (Line)\n", + "Debug : Meshing curve 18 (Line): 20 interior vertices\n", + "Info : [ 10%] Meshing curve 19 (Line)\n", + "Debug : Meshing curve 19 (Line): 28 interior vertices\n", + "Info : [ 10%] Meshing curve 20 (Line)\n", + "Debug : Meshing curve 20 (Line): 40 interior vertices\n", + "Info : [ 10%] Meshing curve 21 (Line)\n", + "Debug : Meshing curve 21 (Line): 28 interior vertices\n", + "Info : [ 20%] Meshing curve 22 (Line)\n", + "Debug : Meshing curve 22 (Line): 44 interior vertices\n", + "Info : [ 20%] Meshing curve 23 (Line)\n", + "Debug : Meshing curve 23 (Line): 26 interior vertices\n", + "Info : [ 20%] Meshing curve 25 (Line)\n", + "Debug : Meshing curve 25 (Line): 15 interior vertices\n", + "Info : [ 20%] Meshing curve 26 (Line)\n", + "Debug : Meshing curve 26 (Line): 26 interior vertices\n", + "Info : [ 20%] Meshing curve 27 (Line)\n", + "Debug : Meshing curve 27 (Line): 1 interior vertices\n", + "Info : [ 20%] Meshing curve 28 (Line)\n", + "Debug : Meshing curve 28 (Line): 1 interior vertices\n", + "Info : [ 20%] Meshing curve 29 (Line)\n", + "Debug : Meshing curve 29 (Line): 28 interior vertices\n", + "Info : [ 20%] Meshing curve 30 (Line)\n", + "Debug : Meshing curve 30 (Line): 1 interior vertices\n", + "Info : [ 20%] Meshing curve 31 (Line)\n", + "Debug : Meshing curve 31 (Line): 1 interior vertices\n", + "Info : [ 20%] Meshing curve 32 (Line)\n", + "Debug : Meshing curve 32 (Line): 28 interior vertices\n", + "Info : [ 30%] Meshing curve 33 (Line)\n", + "Debug : Meshing curve 33 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 34 (Line)\n", + "Debug : Meshing curve 34 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 35 (Line)\n", + "Debug : Meshing curve 35 (Line): 28 interior vertices\n", + "Info : [ 30%] Meshing curve 36 (Line)\n", + "Debug : Meshing curve 36 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 37 (Line)\n", + "Debug : Meshing curve 37 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 38 (Line)\n", + "Debug : Meshing curve 38 (Line): 28 interior vertices\n", + "Info : [ 30%] Meshing curve 39 (Line)\n", + "Debug : Meshing curve 39 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 40 (Line)\n", + "Debug : Meshing curve 40 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 41 (Line)\n", + "Debug : Meshing curve 41 (Line): 26 interior vertices\n", + "Info : [ 40%] Meshing curve 42 (Line)\n", + "Debug : Meshing curve 42 (Line): 15 interior vertices\n", + "Info : [ 40%] Meshing curve 43 (Line)\n", + "Debug : Meshing curve 43 (Line): 1 interior vertices\n", + "Info : [ 40%] Meshing curve 44 (Line)\n", + "Debug : Meshing curve 44 (Line): 1 interior vertices\n", + "Info : [ 40%] Meshing curve 62 (Line)\n", + "Debug : Meshing curve 62 (Line): 9 interior vertices\n", + "Info : [ 40%] Meshing curve 68 (Line)\n", + "Debug : Meshing curve 68 (Line): 0 interior vertices\n", + "Info : [ 40%] Meshing curve 70 (Line)\n", + "Debug : Meshing curve 70 (Line): 4 interior vertices\n", + "Info : [ 40%] Meshing curve 71 (Line)\n", + "Debug : Meshing curve 71 (Line): 14 interior vertices\n", + "Info : [ 40%] Meshing curve 72 (Line)\n", + "Debug : Meshing curve 72 (Line): 40 interior vertices\n", + "Info : [ 40%] Meshing curve 73 (Line)\n", + "Debug : Meshing curve 73 (Line): 28 interior vertices\n", + "Info : [ 40%] Meshing curve 74 (Line)\n", + "Debug : Meshing curve 74 (Line): 30 interior vertices\n", + "Info : [ 50%] Meshing curve 77 (Line)\n", + "Debug : Meshing curve 77 (Line): 11 interior vertices\n", + "Info : [ 50%] Meshing curve 78 (Line)\n", + "Debug : Meshing curve 78 (Line): 1 interior vertices\n", + "Info : [ 50%] Meshing curve 80 (Line)\n", + "Debug : Meshing curve 80 (Line): 19 interior vertices\n", + "Info : [ 50%] Meshing curve 82 (Line)\n", + "Debug : Meshing curve 82 (Line): 11 interior vertices\n", + "Info : [ 50%] Meshing curve 83 (Line)\n", + "Debug : Meshing curve 83 (Line): 1 interior vertices\n", + "Info : [ 50%] Meshing curve 84 (Line)\n", + "Debug : Meshing curve 84 (Line): 30 interior vertices\n", + "Info : [ 50%] Meshing curve 85 (Line)\n", + "Debug : Meshing curve 85 (Line): 28 interior vertices\n", + "Info : [ 50%] Meshing curve 86 (Line)\n", + "Debug : Meshing curve 86 (Line): 40 interior vertices\n", + "Info : [ 50%] Meshing curve 87 (Line)\n", + "Debug : Meshing curve 87 (Line): 14 interior vertices\n", + "Info : [ 60%] Meshing curve 90 (Line)\n", + "Debug : Meshing curve 90 (Line): 4 interior vertices\n", + "Info : [ 60%] Meshing curve 93 (Line)\n", + "Debug : Meshing curve 93 (Line): 0 interior vertices\n", + "Info : [ 60%] Meshing curve 107 (Line)\n", + "Debug : Meshing curve 107 (Line): 1 interior vertices\n", + "Info : [ 60%] Meshing curve 108 (Line)\n", + "Debug : Meshing curve 108 (Line): 28 interior vertices\n", + "Info : [ 60%] Meshing curve 109 (Line)\n", + "Debug : Meshing curve 109 (Line): 1 interior vertices\n", + "Info : [ 60%] Meshing curve 110 (Line)\n", + "Debug : Meshing curve 110 (Line): 1 interior vertices\n", + "Info : [ 60%] Meshing curve 111 (Line)\n", + "Debug : Meshing curve 111 (Line): 14 interior vertices\n", + "Info : [ 60%] Meshing curve 112 (Line)\n", + "Debug : Meshing curve 112 (Line): 14 interior vertices\n", + "Info : [ 60%] Meshing curve 113 (Line)\n", + "Debug : Meshing curve 113 (Line): 1 interior vertices\n", + "Info : [ 60%] Meshing curve 114 (Line)\n", + "Debug : Meshing curve 114 (Line): 1 interior vertices\n", + "Info : [ 70%] Meshing curve 115 (Line)\n", + "Debug : Meshing curve 115 (Line): 28 interior vertices\n", + "Info : [ 70%] Meshing curve 116 (Line)\n", + "Debug : Meshing curve 116 (Line): 1 interior vertices\n", + "Info : [ 70%] Meshing curve 117 (Line)\n", + "Debug : Meshing curve 117 (Line): 0 interior vertices\n", + "Info : [ 70%] Meshing curve 118 (Line)\n", + "Debug : Meshing curve 118 (Line): 0 interior vertices\n", + "Info : [ 70%] Meshing curve 120 (Line)\n", + "Debug : Meshing curve 120 (Line): 14 interior vertices\n", + "Info : [ 70%] Meshing curve 121 (Line)\n", + "Debug : Meshing curve 121 (Line): 20 interior vertices\n", + "Info : [ 70%] Meshing curve 122 (Line)\n", + "Debug : Meshing curve 122 (Line): 14 interior vertices\n", + "Info : [ 70%] Meshing curve 123 (Line)\n", + "Debug : Meshing curve 123 (Line): 1 interior vertices\n", + "Info : [ 70%] Meshing curve 124 (Line)\n", + "Debug : Meshing curve 124 (Line): 14 interior vertices\n", + "Info : [ 70%] Meshing curve 125 (Line)\n", + "Debug : Meshing curve 125 (Line): 14 interior vertices\n", + "Info : [ 80%] Meshing curve 126 (Line)\n", + "Debug : Meshing curve 126 (Line): 1 interior vertices\n", + "Info : [ 80%] Meshing curve 131 (Line)\n", + "Debug : Meshing curve 131 (Line): 21 interior vertices\n", + "Info : [ 80%] Meshing curve 132 (Line)\n", + "Debug : Meshing curve 132 (Line): 26 interior vertices\n", + "Info : [ 80%] Meshing curve 133 (Line)\n", + "Debug : Meshing curve 133 (Line): 21 interior vertices\n", + "Info : [ 80%] Meshing curve 137 (Line)\n", + "Debug : Meshing curve 137 (Line): 21 interior vertices\n", + "Info : [ 80%] Meshing curve 138 (Line)\n", + "Debug : Meshing curve 138 (Line): 14 interior vertices\n", + "Info : [ 80%] Meshing curve 139 (Line)\n", + "Debug : Meshing curve 139 (Line): 21 interior vertices\n", + "Info : [ 80%] Meshing curve 140 (Line)\n", + "Debug : Meshing curve 140 (Line): 26 interior vertices\n", + "Info : [ 80%] Meshing curve 141 (Line)\n", + "Debug : Meshing curve 141 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 143 (Line)\n", + "Debug : Meshing curve 143 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 147 (Line)\n", + "Debug : Meshing curve 147 (Line): 14 interior vertices\n", + "Info : [ 90%] Meshing curve 148 (Line)\n", + "Debug : Meshing curve 148 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 149 (Line)\n", + "Debug : Meshing curve 149 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 151 (Line)\n", + "Debug : Meshing curve 151 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 155 (Line)\n", + "Debug : Meshing curve 155 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 156 (Line)\n", + "Debug : Meshing curve 156 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 157 (Line)\n", + "Debug : Meshing curve 157 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 158 (Line)\n", + "Debug : Meshing curve 158 (Line): 2 interior vertices\n", + "Info : [ 90%] Meshing curve 159 (Line)\n", + "Debug : Meshing curve 159 (Line): 0 interior vertices\n", + "Info : [100%] Meshing curve 160 (Line)\n", + "Debug : Meshing curve 160 (Line): 0 interior vertices\n", + "Info : [100%] Meshing curve 161 (Line)\n", + "Debug : Meshing curve 161 (Line): 9 interior vertices\n", + "Info : [100%] Meshing curve 162 (Line)\n", + "Debug : Meshing curve 162 (Line): 2 interior vertices\n", + "Info : [100%] Meshing curve 163 (Line)\n", + "Debug : Meshing curve 163 (Line): 9 interior vertices\n", + "Info : [100%] Meshing curve 164 (Line)\n", + "Debug : Meshing curve 164 (Line): 0 interior vertices\n", + "Info : [100%] Meshing curve 165 (Line)\n", + "Debug : Meshing curve 165 (Line): 0 interior vertices\n", + "Info : [100%] Meshing curve 171 (Line)\n", + "Debug : Meshing curve 171 (Line): 0 interior vertices\n", + "Info : [100%] Meshing curve 178 (Line)\n", + "Debug : Meshing curve 178 (Line): 0 interior vertices\n", + "Info : [100%] Meshing curve 179 (Line)\n", + "Debug : Meshing curve 179 (Line): 0 interior vertices\n", + "Info : Done meshing 1D (Wall 0.0770174s, CPU 0.081491s)\n", + "Info : Meshing 2D...\n", + "Info : [ 0%] Meshing surface 7 (Plane, Delaunay)\n", + "Debug : Recovering 24 model edges\n", + "Debug : Recovering 425 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 7\n", + "Debug : Computing mesh size field at mesh nodes 425\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 425 points created -- Worst tri radius is 47.689\n", + "Debug : Point -2.28753 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.28753 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.31247 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.31247 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.312471 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.312471 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.18753 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.18753 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.187542 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.187542 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 2011 triangles generated, 794 internal nodes\n", + "Info : [ 10%] Meshing surface 8 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 58 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 8\n", + "Debug : Computing mesh size field at mesh nodes 58\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 58 points created -- Worst tri radius is 0.792\n", + "Debug : Point -2.39796 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.39796 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.29204 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.29204 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 110 triangles generated, 27 internal nodes\n", + "Info : [ 10%] Meshing surface 9 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 9\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point -1.19207 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30793 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30793 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19207 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30718 0.4525 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19282 0.4525 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 20%] Meshing surface 10 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 10\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point -0.307931 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.192069 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.192069 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.307931 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.192824 0.4525 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.307176 0.4525 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 20%] Meshing surface 11 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 11\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point 0.307931 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.192069 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.307931 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.192069 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.192824 0.4525 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.307176 0.4525 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 20%] Meshing surface 12 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 12\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point 1.30793 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19207 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19207 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30793 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19282 0.4525 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30718 0.4525 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 30%] Meshing surface 13 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 58 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 13\n", + "Debug : Computing mesh size field at mesh nodes 58\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 58 points created -- Worst tri radius is 0.792\n", + "Debug : Point 2.39796 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.39796 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.29204 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.29204 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 110 triangles generated, 27 internal nodes\n", + "Info : [ 30%] Meshing surface 35 (Plane, Delaunay)\n", + "Debug : Recovering 24 model edges\n", + "Debug : Recovering 312 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 35\n", + "Debug : Computing mesh size field at mesh nodes 312\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 312 points created -- Worst tri radius is 28.183\n", + "Debug : Point 0.278471 0.753119 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.278471 0.753119 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.92425 0.599632 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.92425 0.599632 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.974031 0.599626 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.974031 0.599626 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.0236 0.600088 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.0236 0.600088 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.79154 0.598819 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.74272 0.599332 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.79154 0.598819 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.74272 0.599332 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.90192 0.601289 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.90192 0.601289 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.312471 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.312471 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.18753 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.18753 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.31243 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.31243 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.268545 0.773526 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.268545 0.773526 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.60759 0.590312 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.60759 0.590312 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.97768 0.604631 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.97768 0.604631 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1284 triangles generated, 487 internal nodes\n", + "Info : [ 40%] Meshing surface 36 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 36\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point 1.19207 0.54875 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19207 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30793 0.54875 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30793 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19282 0.5475 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30718 0.5475 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 40%] Meshing surface 37 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 34 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 37\n", + "Debug : Computing mesh size field at mesh nodes 34\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 34 points created -- Worst tri radius is 0.800\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 62 triangles generated, 15 internal nodes\n", + "Info : [ 40%] Meshing surface 38 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 34 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 38\n", + "Debug : Computing mesh size field at mesh nodes 34\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 34 points created -- Worst tri radius is 0.800\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 62 triangles generated, 15 internal nodes\n", + "Info : [ 50%] Meshing surface 39 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 39\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point -1.30793 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19207 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30793 0.54875 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19207 0.54875 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19282 0.5475 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30718 0.5475 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 50%] Meshing surface 42 (Plane, Delaunay)\n", + "Debug : Recovering 8 model edges\n", + "Debug : Recovering 99 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 42\n", + "Debug : Computing mesh size field at mesh nodes 99\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 99 points created -- Worst tri radius is 9.102\n", + "Debug : Point 0.187542 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.187542 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 617 triangles generated, 260 internal nodes\n", + "Info : [ 60%] Meshing surface 43 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 34 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 43\n", + "Debug : Computing mesh size field at mesh nodes 34\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 34 points created -- Worst tri radius is 0.800\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 62 triangles generated, 15 internal nodes\n", + "Info : [ 60%] Meshing surface 44 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 34 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 44\n", + "Debug : Computing mesh size field at mesh nodes 34\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 34 points created -- Worst tri radius is 0.800\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 62 triangles generated, 15 internal nodes\n", + "Info : [ 60%] Meshing surface 48 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 98 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 48\n", + "Debug : Computing mesh size field at mesh nodes 98\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 98 points created -- Worst tri radius is 11.057\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1502 triangles generated, 703 internal nodes\n", + "Info : [ 70%] Meshing surface 50 (Plane, Delaunay)\n", + "Debug : Recovering 5 model edges\n", + "Debug : Recovering 135 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 50\n", + "Debug : Computing mesh size field at mesh nodes 135\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 135 points created -- Worst tri radius is 5.960\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 539 triangles generated, 203 internal nodes\n", + "Info : [ 70%] Meshing surface 51 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 98 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 51\n", + "Debug : Computing mesh size field at mesh nodes 98\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 98 points created -- Worst tri radius is 11.057\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1516 triangles generated, 710 internal nodes\n", + "Info : [ 70%] Meshing surface 53 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 102 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 53\n", + "Debug : Computing mesh size field at mesh nodes 102\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 102 points created -- Worst tri radius is 10.917\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1620 triangles generated, 760 internal nodes\n", + "Info : [ 80%] Meshing surface 55 (Plane, Delaunay)\n", + "Debug : Recovering 5 model edges\n", + "Debug : Recovering 135 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 55\n", + "Debug : Computing mesh size field at mesh nodes 135\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 135 points created -- Worst tri radius is 5.960\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 539 triangles generated, 203 internal nodes\n", + "Info : [ 80%] Meshing surface 56 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 126 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 56\n", + "Debug : Computing mesh size field at mesh nodes 126\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 126 points created -- Worst tri radius is 5.990\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 486 triangles generated, 181 internal nodes\n", + "Info : [ 90%] Meshing surface 58 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 102 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 58\n", + "Debug : Computing mesh size field at mesh nodes 102\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 102 points created -- Worst tri radius is 10.917\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1612 triangles generated, 756 internal nodes\n", + "Info : [ 90%] Meshing surface 60 (Plane, Delaunay)\n", + "Debug : Recovering 5 model edges\n", + "Debug : Recovering 103 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 60\n", + "Debug : Computing mesh size field at mesh nodes 103\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 103 points created -- Worst tri radius is 11.128\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1627 triangles generated, 763 internal nodes\n", + "Info : [ 90%] Meshing surface 61 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 126 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 61\n", + "Debug : Computing mesh size field at mesh nodes 126\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 126 points created -- Worst tri radius is 5.990\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 494 triangles generated, 185 internal nodes\n", + "Info : [100%] Meshing surface 62 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 86 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 62\n", + "Debug : Computing mesh size field at mesh nodes 86\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 86 points created -- Worst tri radius is 6.043\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 326 triangles generated, 121 internal nodes\n", + "Info : [100%] Meshing surface 63 (Plane, Delaunay)\n", + "Debug : Recovering 5 model edges\n", + "Debug : Recovering 103 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 63\n", + "Debug : Computing mesh size field at mesh nodes 103\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 103 points created -- Worst tri radius is 11.128\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1613 triangles generated, 756 internal nodes\n", + "Info : Done meshing 2D (Wall 0.221417s, CPU 0.233159s)\n", + "Info : 8604 nodes 18480 elements\n", + "Debug : Minimum mesh quality (ICN) = 0.348727\n", + "Debug : Renumbering for potentially partial mesh save\n", + "Info : Removing duplicate mesh elements...\n", + "Info : Done removing duplicate mesh elements\n", + "Info : Removing duplicate mesh nodes...\n", + "Info : Found 0 duplicate nodes \n", + "Info : No duplicate nodes found\n", + "Debug : Renumbering for potentially partial mesh save\n", + "Debug : Decoded option name 'Mesh' . 'MshFileVersion' (index 0)\n", + "Info : Writing './output/gmsh.msh'...\n", + "Info : Done writing './output/gmsh.msh'\n", + "Info : Writing './output/gmsh.vtk'...\n", + "Info : Done writing './output/gmsh.vtk'\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m823\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd meshing.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m832\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd meshing heat-charge simulation.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m842\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mMesh heat-charge simulation time (s): 1.0171\u001b[0m \n", + "Resetting DEVSIM\n", + "Physical group name bc_0 has 0 Tetrahedra.\n", + "Physical group name bc_0 has 0 Triangles.\n", + "Physical group name bc_0 has 48 Lines.\n", + "Physical group name bc_0 has 51 Points.\n", + "Physical group name bc_1 has 0 Tetrahedra.\n", + "Physical group name bc_1 has 0 Triangles.\n", + "Physical group name bc_1 has 10 Lines.\n", + "Physical group name bc_1 has 11 Points.\n", + "Physical group name bc_2 has 0 Tetrahedra.\n", + "Physical group name bc_2 has 0 Triangles.\n", + "Physical group name bc_2 has 643 Lines.\n", + "Physical group name bc_2 has 645 Points.\n", + "Physical group name bc_3 has 0 Tetrahedra.\n", + "Physical group name bc_3 has 0 Triangles.\n", + "Physical group name bc_3 has 12 Lines.\n", + "Physical group name bc_3 has 14 Points.\n", + "Physical group name bc_4 has 0 Tetrahedra.\n", + "Physical group name bc_4 has 0 Triangles.\n", + "Physical group name bc_4 has 42 Lines.\n", + "Physical group name bc_4 has 43 Points.\n", + "Physical group name bc_5 has 0 Tetrahedra.\n", + "Physical group name bc_5 has 0 Triangles.\n", + "Physical group name bc_5 has 42 Lines.\n", + "Physical group name bc_5 has 43 Points.\n", + "Physical group name bc_6 has 0 Tetrahedra.\n", + "Physical group name bc_6 has 0 Triangles.\n", + "Physical group name bc_6 has 44 Lines.\n", + "Physical group name bc_6 has 46 Points.\n", + "Physical group name zone_1 has 0 Tetrahedra.\n", + "Physical group name zone_1 has 4323 Triangles.\n", + "Physical group name zone_1 has 6841 Lines.\n", + "Physical group name zone_1 has 2520 Points.\n", + "Physical group name zone_3 has 0 Tetrahedra.\n", + "Physical group name zone_3 has 12615 Triangles.\n", + "Physical group name zone_3 has 19308 Lines.\n", + "Physical group name zone_3 has 6694 Points.\n", + "Device device has 8569 coordinates with max index 8569\n", + "Region zone_1 has 2520 nodes.\n", + "Region zone_3 has 6694 nodes.\n", + "Contact zone_1_bc_0 in region zone_1 with 51 nodes\n", + "Warning, contact \"zone_1_bc_0\" shares a node with contact \"zone_1_bc_1\" (repeated 1 times)\n", + "Contact zone_1_bc_1 in region zone_1 with 11 nodes\n", + "Warning, contact \"zone_1_bc_0\" shares a node with contact \"zone_1_bc_3\" (repeated 1 times)\n", + "Contact zone_1_bc_3 in region zone_1 with 14 nodes\n", + "Warning, contact \"zone_1_bc_3\" shares a node with contact \"zone_3_bc_4\"\n", + "Contact zone_3_bc_4 in region zone_3 with 43 nodes\n", + "Warning, contact \"zone_1_bc_3\" shares a node with contact \"zone_3_bc_5\"\n", + "Contact zone_3_bc_5 in region zone_3 with 43 nodes\n", + "Warning, contact \"zone_1_bc_0\" shares a node with contact \"zone_3_bc_6\" (repeated 1 times)\n", + "Warning, contact \"zone_3_bc_4\" shares a node with contact \"zone_3_bc_6\"\n", + "Warning, contact \"zone_3_bc_5\" shares a node with contact \"zone_3_bc_6\"\n", + "Contact zone_3_bc_6 in region zone_3 with 46 nodes\n", + "Warning, contact \"zone_1_bc_3\" shares a node with interface \"zone_1_bc_2\" (repeated 1 times)\n", + "Warning, contact \"zone_3_bc_6\" shares a node with interface \"zone_1_bc_2\" (repeated 1 times)\n", + "Adding interface zone_1_bc_2 with 645, 645 nodes\n", + "Warning: Replacing equation with equation of the same name.\n", + "Region: zone_1, Equation: PotentialEquation, Variable: Potential\n", + "Replacing Node Model Holes in region zone_1 of material Si\n", + "Replacing Node Model Electrons in region zone_1 of material Si\n", + "Warning: Replacing equation with equation of the same name.\n", + "Region: zone_3, Equation: PotentialEquation, Variable: Potential\n", + "Warning: Replacing equation with equation of the same name.\n", + "Region: zone_3, Equation: TemperatureEquation, Variable: T\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:55\u001b[0m.\u001b[1;36m349\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 0.01\u001b[0m \n", + "Replacing Node Model NetDoping in region zone_1 of material Si\n", + "Replacing Node Model n_i in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_1 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_1 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_1 of material Si\n", + "Replacing Node Model n_i:T in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_1 of material Si\n", + "Replacing Node Model NetDoping in region zone_3 of material Si\n", + "Replacing Node Model n_i in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_3 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_3 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_3 of material Si\n", + "Replacing Node Model n_i:T in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Electrons@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Holes@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:T@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Electrons@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Holes@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:T@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.94776e+06\tAbsError: 2.04000e+18\n", + " Region: \"zone_1\"\tRelError: 1.14286e+00\tAbsError: 5.03923e+01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00000e+00\tAbsError: 3.92273e-01\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42857e-01\tAbsError: 5.00000e+01\n", + " Region: \"zone_3\"\tRelError: 1.94776e+06\tAbsError: 2.04000e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.73890e+05\tAbsError: 1.01999e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.73871e+05\tAbsError: 1.02001e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00000e+00\tAbsError: 3.94258e-01\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42857e-01\tAbsError: 5.00000e+01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 6.67125e+02\tAbsError: 1.33461e+18\n", + " Region: \"zone_1\"\tRelError: 1.20765e+00\tAbsError: 1.73937e+02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.73060e-01\tAbsError: 1.07722e-01\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34587e-01\tAbsError: 1.73829e+02\n", + " Region: \"zone_3\"\tRelError: 6.65917e+02\tAbsError: 1.33461e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.70455e+02\tAbsError: 4.94500e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.94360e+02\tAbsError: 8.40115e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 7.67341e-01\tAbsError: 1.12369e-01\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34791e-01\tAbsError: 1.73988e+02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.30072e+03\tAbsError: 1.46621e+18\n", + " Region: \"zone_1\"\tRelError: 5.66736e+00\tAbsError: 6.21208e+01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.53177e+00\tAbsError: 8.68314e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35594e-01\tAbsError: 6.20340e+01\n", + " Region: \"zone_3\"\tRelError: 1.29505e+03\tAbsError: 1.46621e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.98626e+02\tAbsError: 5.27076e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.93595e+02\tAbsError: 9.39137e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.69209e+00\tAbsError: 8.63083e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35695e-01\tAbsError: 6.20936e+01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.92859e+03\tAbsError: 6.96382e+17\n", + " Region: \"zone_1\"\tRelError: 5.95263e+01\tAbsError: 7.27435e+01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.93375e+01\tAbsError: 8.37936e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88805e-01\tAbsError: 7.26597e+01\n", + " Region: \"zone_3\"\tRelError: 3.86907e+03\tAbsError: 6.96382e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.90197e+03\tAbsError: 2.98121e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.66146e+02\tAbsError: 3.98260e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 5.00763e+02\tAbsError: 8.37910e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88952e-01\tAbsError: 7.27229e+01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.95059e+03\tAbsError: 1.53714e+17\n", + " Region: \"zone_1\"\tRelError: 4.47601e+02\tAbsError: 1.33171e+01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.47568e+02\tAbsError: 8.18747e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32482e-02\tAbsError: 1.32353e+01\n", + " Region: \"zone_3\"\tRelError: 2.50299e+03\tAbsError: 1.53714e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.86779e+02\tAbsError: 6.22634e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24742e+03\tAbsError: 9.14502e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.68756e+02\tAbsError: 8.19661e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32744e-02\tAbsError: 1.32473e+01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.89183e+03\tAbsError: 1.32069e+17\n", + " Region: \"zone_1\"\tRelError: 9.63120e+02\tAbsError: 2.36855e+01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.63057e+02\tAbsError: 7.58983e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.30488e-02\tAbsError: 2.36096e+01\n", + " Region: \"zone_3\"\tRelError: 4.92871e+03\tAbsError: 1.32069e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.68041e+02\tAbsError: 4.90786e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.25338e+02\tAbsError: 8.29902e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53527e+03\tAbsError: 7.54264e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.30998e-02\tAbsError: 2.36303e+01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.91257e+03\tAbsError: 2.45952e+16\n", + " Region: \"zone_1\"\tRelError: 4.00274e+00\tAbsError: 2.56698e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.99605e+00\tAbsError: 7.69849e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.69398e-03\tAbsError: 2.48999e+00\n", + " Region: \"zone_3\"\tRelError: 1.90857e+03\tAbsError: 2.45952e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.38175e+02\tAbsError: 1.16483e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.65893e+02\tAbsError: 1.29469e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.49097e+00\tAbsError: 7.70600e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.69995e-03\tAbsError: 2.49238e+00\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.66274e+03\tAbsError: 8.40381e+15\n", + " Region: \"zone_1\"\tRelError: 7.75919e-01\tAbsError: 5.24262e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 7.61812e-01\tAbsError: 6.79483e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41076e-02\tAbsError: 5.17468e+00\n", + " Region: \"zone_3\"\tRelError: 1.66197e+03\tAbsError: 8.40381e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.58469e+02\tAbsError: 2.69142e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.02704e+02\tAbsError: 5.71240e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.82716e-01\tAbsError: 6.79483e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41204e-02\tAbsError: 5.17962e+00\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.24866e+03\tAbsError: 3.16272e+15\n", + " Region: \"zone_1\"\tRelError: 3.66397e-01\tAbsError: 6.01586e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.49892e-01\tAbsError: 6.01222e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65050e-02\tAbsError: 5.95574e+00\n", + " Region: \"zone_3\"\tRelError: 2.24829e+03\tAbsError: 3.16272e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.11206e+02\tAbsError: 1.71777e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.13671e+03\tAbsError: 1.44495e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.57030e-01\tAbsError: 6.01222e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65192e-02\tAbsError: 5.96108e+00\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 3.19658e+03\tAbsError: 4.07304e+15\n", + " Region: \"zone_1\"\tRelError: 2.22622e-01\tAbsError: 7.04686e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02853e-01\tAbsError: 5.15633e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.97692e-02\tAbsError: 6.99530e+00\n", + " Region: \"zone_3\"\tRelError: 3.19636e+03\tAbsError: 4.07304e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13171e+03\tAbsError: 2.16998e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.06442e+03\tAbsError: 1.90306e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08591e-01\tAbsError: 5.12074e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.97872e-02\tAbsError: 7.00183e+00\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 7.28118e+03\tAbsError: 6.93925e+15\n", + " Region: \"zone_1\"\tRelError: 1.29224e-01\tAbsError: 4.66597e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15984e-01\tAbsError: 4.20159e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32406e-02\tAbsError: 4.62395e+00\n", + " Region: \"zone_3\"\tRelError: 7.28105e+03\tAbsError: 6.93925e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16511e+03\tAbsError: 3.71724e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.11583e+03\tAbsError: 3.22201e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00397e-01\tAbsError: 4.13918e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32528e-02\tAbsError: 4.62826e+00\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.46907e+02\tAbsError: 1.08406e+16\n", + " Region: \"zone_1\"\tRelError: 8.02287e-02\tAbsError: 2.35784e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 7.35182e-02\tAbsError: 2.99851e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.71049e-03\tAbsError: 2.32785e+00\n", + " Region: \"zone_3\"\tRelError: 2.46826e+02\tAbsError: 1.08406e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.87789e+01\tAbsError: 5.90881e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.77975e+02\tAbsError: 4.93175e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.61012e-02\tAbsError: 2.58908e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.71698e-03\tAbsError: 2.33011e+00\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.34357e+04\tAbsError: 1.19559e+16\n", + " Region: \"zone_1\"\tRelError: 6.09932e-02\tAbsError: 9.36029e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.83763e-02\tAbsError: 3.05969e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.61692e-03\tAbsError: 9.05432e-01\n", + " Region: \"zone_3\"\tRelError: 1.34357e+04\tAbsError: 1.19559e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.22439e+03\tAbsError: 6.88914e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.21121e+03\tAbsError: 5.06678e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.99220e-02\tAbsError: 3.18503e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.62022e-03\tAbsError: 9.06573e-01\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 2.51914e+02\tAbsError: 3.41911e+15\n", + " Region: \"zone_1\"\tRelError: 5.37272e-02\tAbsError: 2.53023e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.30702e-02\tAbsError: 2.58390e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.57047e-04\tAbsError: 2.27184e-01\n", + " Region: \"zone_3\"\tRelError: 2.51860e+02\tAbsError: 3.41911e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09434e+02\tAbsError: 1.76185e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.42371e+02\tAbsError: 1.65725e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.39750e-02\tAbsError: 2.58978e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.57247e-04\tAbsError: 2.27252e-01\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 9.17153e+03\tAbsError: 1.53174e+15\n", + " Region: \"zone_1\"\tRelError: 3.35927e-02\tAbsError: 6.34263e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.34496e-02\tAbsError: 1.39634e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43074e-04\tAbsError: 4.94630e-02\n", + " Region: \"zone_3\"\tRelError: 9.17149e+03\tAbsError: 1.53174e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.72842e+02\tAbsError: 6.29796e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.99862e+03\tAbsError: 9.01944e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.44281e-02\tAbsError: 1.50572e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43193e-04\tAbsError: 4.95039e-02\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 1.00752e+04\tAbsError: 3.51392e+14\n", + " Region: \"zone_1\"\tRelError: 1.25933e-02\tAbsError: 1.36724e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25722e-02\tAbsError: 6.36915e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.11256e-05\tAbsError: 7.30329e-03\n", + " Region: \"zone_3\"\tRelError: 1.00751e+04\tAbsError: 3.51392e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98699e+03\tAbsError: 1.94249e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.81432e+01\tAbsError: 1.57143e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36562e-02\tAbsError: 6.88316e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.11388e-05\tAbsError: 7.30782e-03\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 1.48057e+02\tAbsError: 7.55540e+12\n", + " Region: \"zone_1\"\tRelError: 1.35837e-04\tAbsError: 9.15436e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33386e-04\tAbsError: 6.81099e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45099e-06\tAbsError: 8.47326e-04\n", + " Region: \"zone_3\"\tRelError: 1.48057e+02\tAbsError: 7.55540e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04520e+02\tAbsError: 5.86235e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.35366e+01\tAbsError: 1.69306e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54934e-04\tAbsError: 7.83782e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45202e-06\tAbsError: 8.47678e-04\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 1.61095e-01\tAbsError: 1.05062e+11\n", + " Region: \"zone_1\"\tRelError: 6.80612e-07\tAbsError: 2.10057e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.20301e-07\tAbsError: 1.55674e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.03111e-08\tAbsError: 2.08500e-05\n", + " Region: \"zone_3\"\tRelError: 1.61095e-01\tAbsError: 1.05062e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.45800e-01\tAbsError: 5.36236e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.52936e-02\tAbsError: 5.14380e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.43614e-07\tAbsError: 1.59316e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.03688e-08\tAbsError: 2.08699e-05\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 2.80810e-06\tAbsError: 3.32876e+09\n", + " Region: \"zone_1\"\tRelError: 2.35479e-08\tAbsError: 8.94470e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09842e-08\tAbsError: 4.33411e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.56372e-09\tAbsError: 8.90136e-07\n", + " Region: \"zone_3\"\tRelError: 2.78455e-06\tAbsError: 3.32876e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.51830e-06\tAbsError: 1.84896e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24197e-06\tAbsError: 1.47980e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17144e-08\tAbsError: 4.43296e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.56540e-09\tAbsError: 8.90719e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:11\u001b[0m.\u001b[1;36m800\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 0.03162277660168379\u001b[0m \n", + "Replacing Node Model NetDoping in region zone_1 of material Si\n", + "Replacing Node Model n_i in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_1 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_1 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_1 of material Si\n", + "Replacing Node Model n_i:T in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_1 of material Si\n", + "Replacing Node Model NetDoping in region zone_3 of material Si\n", + "Replacing Node Model n_i in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_3 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_3 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_3 of material Si\n", + "Replacing Node Model n_i:T in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Electrons@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Holes@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:T@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Electrons@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Holes@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:T@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.09589e+04\tAbsError: 4.42835e+18\n", + " Region: \"zone_1\"\tRelError: 3.76402e-01\tAbsError: 3.71294e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.76398e-01\tAbsError: 3.58464e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.66599e-06\tAbsError: 1.28302e-03\n", + " Region: \"zone_3\"\tRelError: 1.09585e+04\tAbsError: 4.42835e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.08828e+03\tAbsError: 2.21419e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.86986e+03\tAbsError: 2.21416e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 3.77508e-01\tAbsError: 3.65195e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.66651e-06\tAbsError: 1.28320e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.68704e+00\tAbsError: 4.09689e+16\n", + " Region: \"zone_1\"\tRelError: 1.59987e-01\tAbsError: 3.78978e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59912e-01\tAbsError: 1.21279e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.44743e-05\tAbsError: 2.57699e-02\n", + " Region: \"zone_3\"\tRelError: 2.52705e+00\tAbsError: 4.09689e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.20519e+00\tAbsError: 2.06847e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.16158e+00\tAbsError: 2.02842e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60211e-01\tAbsError: 1.27503e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.44743e-05\tAbsError: 2.57699e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 7.16777e-01\tAbsError: 2.84880e+15\n", + " Region: \"zone_1\"\tRelError: 2.13091e-03\tAbsError: 1.34529e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09298e-03\tAbsError: 2.83116e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.79289e-05\tAbsError: 1.31698e-02\n", + " Region: \"zone_3\"\tRelError: 7.14646e-01\tAbsError: 2.84880e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.40737e-01\tAbsError: 1.50317e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.71739e-01\tAbsError: 1.34563e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13216e-03\tAbsError: 2.93924e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.79505e-05\tAbsError: 1.31770e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.53330e-03\tAbsError: 4.97209e+12\n", + " Region: \"zone_1\"\tRelError: 2.95921e-05\tAbsError: 2.95955e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.87527e-05\tAbsError: 4.52958e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.39356e-07\tAbsError: 2.91426e-04\n", + " Region: \"zone_3\"\tRelError: 2.50371e-03\tAbsError: 4.97209e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10415e-03\tAbsError: 3.14115e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.36935e-03\tAbsError: 1.83094e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.93707e-05\tAbsError: 4.65627e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.39451e-07\tAbsError: 2.91462e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.31368e-05\tAbsError: 1.03126e+11\n", + " Region: \"zone_1\"\tRelError: 8.82046e-07\tAbsError: 7.25910e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.73282e-07\tAbsError: 1.05369e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08765e-07\tAbsError: 7.24857e-05\n", + " Region: \"zone_3\"\tRelError: 3.22547e-05\tAbsError: 1.03126e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.57484e-05\tAbsError: 6.95547e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.56070e-05\tAbsError: 3.35713e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.90339e-07\tAbsError: 1.08090e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08891e-07\tAbsError: 7.25309e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:16\u001b[0m.\u001b[1;36m705\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 0.1\u001b[0m \n", + "Replacing Node Model NetDoping in region zone_1 of material Si\n", + "Replacing Node Model n_i in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_1 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_1 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_1 of material Si\n", + "Replacing Node Model n_i:T in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_1 of material Si\n", + "Replacing Node Model NetDoping in region zone_3 of material Si\n", + "Replacing Node Model n_i in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_3 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_3 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_3 of material Si\n", + "Replacing Node Model n_i:T in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Electrons@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Holes@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:T@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Electrons@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Holes@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:T@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.59181e+03\tAbsError: 1.39723e+19\n", + " Region: \"zone_1\"\tRelError: 7.56617e-01\tAbsError: 3.57738e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.56605e-01\tAbsError: 3.16803e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18304e-05\tAbsError: 4.09344e-03\n", + " Region: \"zone_3\"\tRelError: 4.59105e+03\tAbsError: 1.39723e+19\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.88119e+02\tAbsError: 6.98585e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.80218e+03\tAbsError: 6.98649e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 7.56801e-01\tAbsError: 3.19349e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18304e-05\tAbsError: 4.09344e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.84985e+00\tAbsError: 5.93483e+16\n", + " Region: \"zone_1\"\tRelError: 3.91051e-01\tAbsError: 9.08795e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.90822e-01\tAbsError: 1.14871e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29416e-04\tAbsError: 7.93923e-02\n", + " Region: \"zone_3\"\tRelError: 2.45880e+00\tAbsError: 5.93483e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06772e+00\tAbsError: 2.86051e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.99141e-01\tAbsError: 3.07432e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.91709e-01\tAbsError: 1.14871e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29490e-04\tAbsError: 7.94203e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.05684e-01\tAbsError: 2.58379e+14\n", + " Region: \"zone_1\"\tRelError: 2.55963e-03\tAbsError: 6.45560e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54282e-03\tAbsError: 6.41085e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68020e-05\tAbsError: 5.81451e-03\n", + " Region: \"zone_3\"\tRelError: 3.03124e-01\tAbsError: 2.58379e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68002e-01\tAbsError: 1.37307e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.32383e-01\tAbsError: 1.21072e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.72183e-03\tAbsError: 6.81504e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68020e-05\tAbsError: 5.81451e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.98022e-03\tAbsError: 2.85263e+12\n", + " Region: \"zone_1\"\tRelError: 2.85485e-05\tAbsError: 2.74721e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06166e-05\tAbsError: 2.24456e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.93198e-06\tAbsError: 2.74496e-03\n", + " Region: \"zone_3\"\tRelError: 2.95167e-03\tAbsError: 2.85263e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49430e-03\tAbsError: 2.03236e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.42813e-03\tAbsError: 8.20269e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13020e-05\tAbsError: 2.28367e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.93591e-06\tAbsError: 2.74628e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.32722e-04\tAbsError: 1.09424e+12\n", + " Region: \"zone_1\"\tRelError: 5.94752e-06\tAbsError: 8.07354e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.71760e-06\tAbsError: 8.94103e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29918e-07\tAbsError: 7.98413e-05\n", + " Region: \"zone_3\"\tRelError: 4.26775e-04\tAbsError: 1.09424e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11667e-04\tAbsError: 6.50366e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.09053e-04\tAbsError: 4.43872e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.82510e-06\tAbsError: 9.33163e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.30055e-07\tAbsError: 7.98910e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.14431e-05\tAbsError: 4.11796e+10\n", + " Region: \"zone_1\"\tRelError: 3.18218e-07\tAbsError: 2.36712e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.50145e-07\tAbsError: 3.35603e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.80731e-08\tAbsError: 2.36377e-05\n", + " Region: \"zone_3\"\tRelError: 1.11249e-05\tAbsError: 4.11796e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.42049e-06\tAbsError: 2.80121e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.38209e-06\tAbsError: 1.31675e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54185e-07\tAbsError: 3.45102e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.81052e-08\tAbsError: 2.36495e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:22\u001b[0m.\u001b[1;36m456\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 0.31622776601683794\u001b[0m \n", + "Replacing Node Model NetDoping in region zone_1 of material Si\n", + "Replacing Node Model n_i in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_1 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_1 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_1 of material Si\n", + "Replacing Node Model n_i:T in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_1 of material Si\n", + "Replacing Node Model NetDoping in region zone_3 of material Si\n", + "Replacing Node Model n_i in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_3 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_3 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_3 of material Si\n", + "Replacing Node Model n_i:T in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Electrons@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Holes@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:T@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Electrons@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Holes@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:T@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.81548e+04\tAbsError: 4.41452e+19\n", + " Region: \"zone_1\"\tRelError: 4.00112e+02\tAbsError: 5.38619e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.00112e+02\tAbsError: 3.01539e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.85108e-05\tAbsError: 2.37080e-02\n", + " Region: \"zone_3\"\tRelError: 1.77547e+04\tAbsError: 4.41452e+19\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.11357e+03\tAbsError: 2.20717e+19\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.68429e+03\tAbsError: 2.20736e+19\n", + " Equation: \"PotentialEquation\"\tRelError: 8.95682e+03\tAbsError: 3.01539e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.85824e-05\tAbsError: 2.37335e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 6.37823e+03\tAbsError: 7.77266e+16\n", + " Region: \"zone_1\"\tRelError: 2.55259e+03\tAbsError: 3.32603e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.55259e+03\tAbsError: 1.21605e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.25174e-04\tAbsError: 3.20443e-01\n", + " Region: \"zone_3\"\tRelError: 3.82564e+03\tAbsError: 7.77266e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.85918e+00\tAbsError: 4.09086e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.30746e+00\tAbsError: 3.68181e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.82047e+03\tAbsError: 1.27151e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.25174e-04\tAbsError: 3.20443e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.51948e+00\tAbsError: 1.24184e+15\n", + " Region: \"zone_1\"\tRelError: 3.41095e-01\tAbsError: 5.88077e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40927e-01\tAbsError: 8.76347e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67226e-04\tAbsError: 5.79314e-02\n", + " Region: \"zone_3\"\tRelError: 1.17838e+00\tAbsError: 1.24184e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.50766e-01\tAbsError: 8.12970e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.95876e-01\tAbsError: 4.28870e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31571e-01\tAbsError: 9.34668e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67226e-04\tAbsError: 5.79314e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.30025e-02\tAbsError: 1.81225e+13\n", + " Region: \"zone_1\"\tRelError: 1.31169e-02\tAbsError: 1.68781e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30682e-02\tAbsError: 1.34387e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.86794e-05\tAbsError: 1.68646e-02\n", + " Region: \"zone_3\"\tRelError: 3.98856e-02\tAbsError: 1.81225e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.03737e-02\tAbsError: 1.02962e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.70790e-03\tAbsError: 7.82629e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27553e-02\tAbsError: 1.42458e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.86794e-05\tAbsError: 1.68646e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.41263e-02\tAbsError: 9.07776e+12\n", + " Region: \"zone_1\"\tRelError: 9.62176e-03\tAbsError: 4.08013e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.62060e-03\tAbsError: 6.26261e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15956e-06\tAbsError: 4.01751e-04\n", + " Region: \"zone_3\"\tRelError: 4.50458e-03\tAbsError: 9.07776e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.40964e-03\tAbsError: 5.33124e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.38896e-03\tAbsError: 3.74652e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70482e-03\tAbsError: 6.61320e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16036e-06\tAbsError: 4.02019e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.48775e-04\tAbsError: 2.90368e+11\n", + " Region: \"zone_1\"\tRelError: 3.86328e-04\tAbsError: 3.03437e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85453e-04\tAbsError: 1.50377e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.75364e-07\tAbsError: 3.03287e-04\n", + " Region: \"zone_3\"\tRelError: 4.62447e-04\tAbsError: 2.90368e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.48536e-05\tAbsError: 1.72985e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.41646e-05\tAbsError: 1.17383e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.92553e-04\tAbsError: 1.58814e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.75483e-07\tAbsError: 3.03321e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.03929e-04\tAbsError: 2.36139e+11\n", + " Region: \"zone_1\"\tRelError: 2.89879e-04\tAbsError: 1.34924e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.89875e-04\tAbsError: 1.43748e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.46954e-09\tAbsError: 1.20549e-06\n", + " Region: \"zone_3\"\tRelError: 1.14050e-04\tAbsError: 2.36139e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.76341e-05\tAbsError: 1.44548e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.73640e-05\tAbsError: 9.15910e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.90481e-05\tAbsError: 1.50265e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47105e-09\tAbsError: 1.20601e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.89084e-05\tAbsError: 1.30416e+09\n", + " Region: \"zone_1\"\tRelError: 1.60532e-05\tAbsError: 7.73681e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60310e-05\tAbsError: 6.68367e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.22657e-08\tAbsError: 7.73614e-06\n", + " Region: \"zone_3\"\tRelError: 1.28552e-05\tAbsError: 1.30416e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.96650e-07\tAbsError: 7.75602e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.23307e-07\tAbsError: 5.28556e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18129e-05\tAbsError: 6.69589e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.22749e-08\tAbsError: 7.73943e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:30\u001b[0m.\u001b[1;36m250\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 1.0\u001b[0m \n", + "Replacing Node Model NetDoping in region zone_1 of material Si\n", + "Replacing Node Model n_i in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_1 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_1 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_1 of material Si\n", + "Replacing Node Model n_i:T in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_1 of material Si\n", + "Replacing Node Model NetDoping in region zone_3 of material Si\n", + "Replacing Node Model n_i in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_3 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_3 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_3 of material Si\n", + "Replacing Node Model n_i:T in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Electrons@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Holes@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:T@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Electrons@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Holes@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:T@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.25598e+03\tAbsError: 1.39519e+20\n", + " Region: \"zone_1\"\tRelError: 1.78965e+02\tAbsError: 1.67941e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78964e+02\tAbsError: 4.06320e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.67619e-04\tAbsError: 1.27309e-01\n", + " Region: \"zone_3\"\tRelError: 2.07701e+03\tAbsError: 1.39519e+20\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.52607e+02\tAbsError: 6.97576e+19\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11741e+03\tAbsError: 6.97615e+19\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06993e+02\tAbsError: 4.15365e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.67619e-04\tAbsError: 1.27309e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.17154e+04\tAbsError: 6.81771e+16\n", + " Region: \"zone_1\"\tRelError: 2.30977e+02\tAbsError: 1.32838e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30973e+02\tAbsError: 2.82997e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.74009e-03\tAbsError: 1.30008e+00\n", + " Region: \"zone_3\"\tRelError: 1.14845e+04\tAbsError: 6.81771e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12728e+04\tAbsError: 3.49371e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.62860e+00\tAbsError: 3.32400e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.10015e+02\tAbsError: 2.93816e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.74009e-03\tAbsError: 1.30008e+00\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.82529e+00\tAbsError: 2.16371e+15\n", + " Region: \"zone_1\"\tRelError: 7.14038e-01\tAbsError: 9.63977e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.13819e-01\tAbsError: 2.02378e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19044e-04\tAbsError: 7.61599e-02\n", + " Region: \"zone_3\"\tRelError: 2.11126e+00\tAbsError: 2.16371e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99928e-01\tAbsError: 1.08980e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.09314e-01\tAbsError: 1.07391e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.01796e-01\tAbsError: 2.24265e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19044e-04\tAbsError: 7.61599e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.19459e+00\tAbsError: 9.46737e+13\n", + " Region: \"zone_1\"\tRelError: 2.48858e-01\tAbsError: 7.49117e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.48644e-01\tAbsError: 6.58192e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.13516e-04\tAbsError: 7.42536e-02\n", + " Region: \"zone_3\"\tRelError: 9.45729e-01\tAbsError: 9.46737e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.14875e-01\tAbsError: 4.65985e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.08043e-01\tAbsError: 4.80752e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25967e-02\tAbsError: 7.03900e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.13612e-04\tAbsError: 7.42871e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.14246e-02\tAbsError: 6.01858e+13\n", + " Region: \"zone_1\"\tRelError: 2.16696e-02\tAbsError: 2.70554e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16619e-02\tAbsError: 4.09885e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.65293e-06\tAbsError: 2.66456e-03\n", + " Region: \"zone_3\"\tRelError: 6.97550e-02\tAbsError: 6.01858e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.51834e-03\tAbsError: 3.45595e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.49371e-03\tAbsError: 2.56263e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.87353e-02\tAbsError: 4.18557e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.65609e-06\tAbsError: 2.66571e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.32865e-03\tAbsError: 2.21399e+12\n", + " Region: \"zone_1\"\tRelError: 1.82386e-03\tAbsError: 4.30666e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81148e-03\tAbsError: 1.70549e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23785e-05\tAbsError: 4.30496e-03\n", + " Region: \"zone_3\"\tRelError: 5.50479e-03\tAbsError: 2.21399e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.69673e-04\tAbsError: 1.46537e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.83712e-04\tAbsError: 7.48619e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.83902e-03\tAbsError: 1.76657e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23819e-05\tAbsError: 4.30614e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.56549e-03\tAbsError: 4.01137e+12\n", + " Region: \"zone_1\"\tRelError: 1.54046e-03\tAbsError: 4.35699e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53922e-03\tAbsError: 2.45136e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24576e-06\tAbsError: 4.33248e-04\n", + " Region: \"zone_3\"\tRelError: 5.02503e-03\tAbsError: 4.01137e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.28020e-04\tAbsError: 2.37441e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.24782e-04\tAbsError: 1.63695e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.17098e-03\tAbsError: 2.50044e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24583e-06\tAbsError: 4.33272e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 8.67547e-04\tAbsError: 3.95476e+11\n", + " Region: \"zone_1\"\tRelError: 2.12214e-04\tAbsError: 2.93797e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.11370e-04\tAbsError: 2.53684e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.44057e-07\tAbsError: 2.93544e-04\n", + " Region: \"zone_3\"\tRelError: 6.55333e-04\tAbsError: 3.95476e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37464e-05\tAbsError: 2.41005e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.36537e-05\tAbsError: 1.54470e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.67089e-04\tAbsError: 2.59006e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.44176e-07\tAbsError: 2.93586e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.70521e-04\tAbsError: 2.77095e+11\n", + " Region: \"zone_1\"\tRelError: 1.11249e-04\tAbsError: 4.61091e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11117e-04\tAbsError: 1.66976e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32102e-07\tAbsError: 4.59421e-05\n", + " Region: \"zone_3\"\tRelError: 3.59272e-04\tAbsError: 2.77095e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.92629e-05\tAbsError: 1.66200e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.90560e-05\tAbsError: 1.10895e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.00821e-04\tAbsError: 1.70352e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32114e-07\tAbsError: 4.59465e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 8.45205e-05\tAbsError: 4.25447e+10\n", + " Region: \"zone_1\"\tRelError: 2.04303e-05\tAbsError: 2.13507e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03690e-05\tAbsError: 2.66316e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.13154e-08\tAbsError: 2.13241e-05\n", + " Region: \"zone_3\"\tRelError: 6.40902e-05\tAbsError: 4.25447e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.61885e-06\tAbsError: 2.57226e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.60021e-06\tAbsError: 1.68221e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.48098e-05\tAbsError: 2.71818e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.13223e-08\tAbsError: 2.13265e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m507\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m528\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBuilt-in potential: % (np.float64(-1.0448670768291761),)\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m528\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mnot all arguments converted during string formatting\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m637\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.55 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m637\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.5 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m639\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.65 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m640\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.6 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m640\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.7 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m659\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: 0.1\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m659\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: 0.1\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m661\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.1\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m667\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m676\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "number of equations 31816\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "number of equations 31816\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.58159e+00\tAbsError: 8.42925e+15\n", + " Region: \"zone_1\"\tRelError: 6.96489e+00\tAbsError: 4.09585e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.96489e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22081e-08\tAbsError: 4.24570e-06\n", + " Region: \"zone_3\"\tRelError: 1.61670e+00\tAbsError: 8.42925e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68720e-01\tAbsError: 4.55135e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.68261e-01\tAbsError: 3.87791e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.97210e-02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22093e-08\tAbsError: 4.24613e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.58159e+00\tAbsError: 8.42925e+15\n", + " Region: \"zone_1\"\tRelError: 6.96489e+00\tAbsError: 4.09585e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.96489e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22081e-08\tAbsError: 4.24570e-06\n", + " Region: \"zone_3\"\tRelError: 1.61670e+00\tAbsError: 8.42925e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68720e-01\tAbsError: 4.55135e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.68261e-01\tAbsError: 3.87791e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.97210e-02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22093e-08\tAbsError: 4.24613e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.58159e+00\tAbsError: 8.42925e+15\n", + " Region: \"zone_1\"\tRelError: 6.96489e+00\tAbsError: 4.09585e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.96489e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22081e-08\tAbsError: 4.24570e-06\n", + " Region: \"zone_3\"\tRelError: 1.61670e+00\tAbsError: 8.42925e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68720e-01\tAbsError: 4.55135e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.68261e-01\tAbsError: 3.87791e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.97210e-02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22093e-08\tAbsError: 4.24613e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.58159e+00\tAbsError: 8.42925e+15\n", + " Region: \"zone_1\"\tRelError: 6.96489e+00\tAbsError: 4.09585e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.96489e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22081e-08\tAbsError: 4.24570e-06\n", + " Region: \"zone_3\"\tRelError: 1.61670e+00\tAbsError: 8.42925e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68720e-01\tAbsError: 4.55135e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.68261e-01\tAbsError: 3.87791e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.97210e-02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22093e-08\tAbsError: 4.24613e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.58159e+00\tAbsError: 8.42925e+15\n", + " Region: \"zone_1\"\tRelError: 6.96489e+00\tAbsError: 4.09585e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.96489e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22081e-08\tAbsError: 4.24570e-06\n", + " Region: \"zone_3\"\tRelError: 1.61670e+00\tAbsError: 8.42925e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68720e-01\tAbsError: 4.55135e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.68261e-01\tAbsError: 3.87791e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.97210e-02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22093e-08\tAbsError: 4.24613e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.51014e+00\tAbsError: 2.99004e+14\n", + " Region: \"zone_1\"\tRelError: 8.86940e-02\tAbsError: 9.23854e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.85168e-02\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77223e-04\tAbsError: 6.16217e-02\n", + " Region: \"zone_3\"\tRelError: 1.42145e+00\tAbsError: 2.99004e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37288e-01\tAbsError: 1.29763e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.31407e-01\tAbsError: 1.69241e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.25791e-02\tAbsError: 3.07641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77223e-04\tAbsError: 6.16217e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.51014e+00\tAbsError: 2.99004e+14\n", + " Region: \"zone_1\"\tRelError: 8.86940e-02\tAbsError: 9.23854e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.85168e-02\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77223e-04\tAbsError: 6.16217e-02\n", + " Region: \"zone_3\"\tRelError: 1.42145e+00\tAbsError: 2.99004e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37288e-01\tAbsError: 1.29763e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.31407e-01\tAbsError: 1.69241e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.25791e-02\tAbsError: 3.07641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77223e-04\tAbsError: 6.16217e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.51014e+00\tAbsError: 2.99004e+14\n", + " Region: \"zone_1\"\tRelError: 8.86940e-02\tAbsError: 9.23854e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.85168e-02\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77223e-04\tAbsError: 6.16217e-02\n", + " Region: \"zone_3\"\tRelError: 1.42145e+00\tAbsError: 2.99004e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37288e-01\tAbsError: 1.29763e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.31407e-01\tAbsError: 1.69241e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.25791e-02\tAbsError: 3.07641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77223e-04\tAbsError: 6.16217e-02\n", + "Iteration: 1\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.51014e+00\tAbsError: 2.99004e+14\n", + " Region: \"zone_1\"\tRelError: 8.86940e-02\tAbsError: 9.23854e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.85168e-02\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77223e-04\tAbsError: 6.16217e-02\n", + " Region: \"zone_3\"\tRelError: 1.42145e+00\tAbsError: 2.99004e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37288e-01\tAbsError: 1.29763e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.31407e-01\tAbsError: 1.69241e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.25791e-02\tAbsError: 3.07641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77223e-04\tAbsError: 6.16217e-02\n", + " Device: \"device\"\tRelError: 1.51014e+00\tAbsError: 2.99004e+14\n", + " Region: \"zone_1\"\tRelError: 8.86940e-02\tAbsError: 9.23854e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.85168e-02\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77223e-04\tAbsError: 6.16217e-02\n", + " Region: \"zone_3\"\tRelError: 1.42145e+00\tAbsError: 2.99004e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37288e-01\tAbsError: 1.29763e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.31407e-01\tAbsError: 1.69241e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.25791e-02\tAbsError: 3.07641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77223e-04\tAbsError: 6.16217e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.16282e-01\tAbsError: 4.40895e+13\n", + " Region: \"zone_1\"\tRelError: 3.94410e-02\tAbsError: 2.98107e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.94296e-02\tAbsError: 2.58562e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13728e-05\tAbsError: 3.95446e-03\n", + " Region: \"zone_3\"\tRelError: 8.76841e-01\tAbsError: 4.40895e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.38974e-01\tAbsError: 3.05502e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.97980e-01\tAbsError: 1.35393e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.98753e-02\tAbsError: 2.58800e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13728e-05\tAbsError: 3.95446e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.16282e-01\tAbsError: 4.40895e+13\n", + " Region: \"zone_1\"\tRelError: 3.94410e-02\tAbsError: 2.98107e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.94296e-02\tAbsError: 2.58562e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13728e-05\tAbsError: 3.95446e-03\n", + " Region: \"zone_3\"\tRelError: 8.76841e-01\tAbsError: 4.40895e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.38974e-01\tAbsError: 3.05502e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.97980e-01\tAbsError: 1.35393e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.98753e-02\tAbsError: 2.58800e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13728e-05\tAbsError: 3.95446e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.16282e-01\tAbsError: 4.40895e+13\n", + " Region: \"zone_1\"\tRelError: 3.94410e-02\tAbsError: 2.98107e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.94296e-02\tAbsError: 2.58562e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13728e-05\tAbsError: 3.95446e-03\n", + " Region: \"zone_3\"\tRelError: 8.76841e-01\tAbsError: 4.40895e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.38974e-01\tAbsError: 3.05502e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.97980e-01\tAbsError: 1.35393e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.98753e-02\tAbsError: 2.58800e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13728e-05\tAbsError: 3.95446e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.16282e-01\tAbsError: 4.40895e+13\n", + " Region: \"zone_1\"\tRelError: 3.94410e-02\tAbsError: 2.98107e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.94296e-02\tAbsError: 2.58562e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13728e-05\tAbsError: 3.95446e-03\n", + " Region: \"zone_3\"\tRelError: 8.76841e-01\tAbsError: 4.40895e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.38974e-01\tAbsError: 3.05502e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.97980e-01\tAbsError: 1.35393e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.98753e-02\tAbsError: 2.58800e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13728e-05\tAbsError: 3.95446e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.16282e-01\tAbsError: 4.40895e+13\n", + " Region: \"zone_1\"\tRelError: 3.94410e-02\tAbsError: 2.98107e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.94296e-02\tAbsError: 2.58562e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13728e-05\tAbsError: 3.95446e-03\n", + " Region: \"zone_3\"\tRelError: 8.76841e-01\tAbsError: 4.40895e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.38974e-01\tAbsError: 3.05502e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.97980e-01\tAbsError: 1.35393e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.98753e-02\tAbsError: 2.58800e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13728e-05\tAbsError: 3.95446e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.80924e-01\tAbsError: 4.14041e+12\n", + " Region: \"zone_1\"\tRelError: 1.26761e-02\tAbsError: 1.28810e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26654e-02\tAbsError: 9.16569e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06852e-05\tAbsError: 3.71531e-03\n", + " Region: \"zone_3\"\tRelError: 2.68247e-01\tAbsError: 4.14041e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13343e-01\tAbsError: 1.97531e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.20174e-02\tAbsError: 2.16511e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28765e-02\tAbsError: 9.16574e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06852e-05\tAbsError: 3.71531e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.80924e-01\tAbsError: 4.14041e+12\n", + " Region: \"zone_1\"\tRelError: 1.26761e-02\tAbsError: 1.28810e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26654e-02\tAbsError: 9.16569e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06852e-05\tAbsError: 3.71531e-03\n", + " Region: \"zone_3\"\tRelError: 2.68247e-01\tAbsError: 4.14041e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13343e-01\tAbsError: 1.97531e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.20174e-02\tAbsError: 2.16511e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28765e-02\tAbsError: 9.16574e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06852e-05\tAbsError: 3.71531e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.80924e-01\tAbsError: 4.14041e+12\n", + " Region: \"zone_1\"\tRelError: 1.26761e-02\tAbsError: 1.28810e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26654e-02\tAbsError: 9.16569e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06852e-05\tAbsError: 3.71531e-03\n", + " Region: \"zone_3\"\tRelError: 2.68247e-01\tAbsError: 4.14041e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13343e-01\tAbsError: 1.97531e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.20174e-02\tAbsError: 2.16511e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28765e-02\tAbsError: 9.16574e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06852e-05\tAbsError: 3.71531e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.80924e-01\tAbsError: 4.14041e+12\n", + " Region: \"zone_1\"\tRelError: 1.26761e-02\tAbsError: 1.28810e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26654e-02\tAbsError: 9.16569e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06852e-05\tAbsError: 3.71531e-03\n", + " Region: \"zone_3\"\tRelError: 2.68247e-01\tAbsError: 4.14041e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13343e-01\tAbsError: 1.97531e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.20174e-02\tAbsError: 2.16511e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28765e-02\tAbsError: 9.16574e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06852e-05\tAbsError: 3.71531e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.80924e-01\tAbsError: 4.14041e+12\n", + " Region: \"zone_1\"\tRelError: 1.26761e-02\tAbsError: 1.28810e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26654e-02\tAbsError: 9.16569e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06852e-05\tAbsError: 3.71531e-03\n", + " Region: \"zone_3\"\tRelError: 2.68247e-01\tAbsError: 4.14041e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13343e-01\tAbsError: 1.97531e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.20174e-02\tAbsError: 2.16511e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28765e-02\tAbsError: 9.16574e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06852e-05\tAbsError: 3.71531e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.24267e-02\tAbsError: 4.44373e+12\n", + " Region: \"zone_1\"\tRelError: 1.55756e-03\tAbsError: 2.71473e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54980e-03\tAbsError: 2.11332e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.75517e-06\tAbsError: 2.69360e-03\n", + " Region: \"zone_3\"\tRelError: 6.08692e-02\tAbsError: 4.44373e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.73099e-02\tAbsError: 2.36189e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.64950e-04\tAbsError: 2.08185e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58656e-03\tAbsError: 2.12775e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.75517e-06\tAbsError: 2.69360e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.24267e-02\tAbsError: 4.44373e+12\n", + " Region: \"zone_1\"\tRelError: 1.55756e-03\tAbsError: 2.71473e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54980e-03\tAbsError: 2.11332e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.75517e-06\tAbsError: 2.69360e-03\n", + " Region: \"zone_3\"\tRelError: 6.08692e-02\tAbsError: 4.44373e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.73099e-02\tAbsError: 2.36189e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.64950e-04\tAbsError: 2.08185e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58656e-03\tAbsError: 2.12775e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.75517e-06\tAbsError: 2.69360e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.24267e-02\tAbsError: 4.44373e+12\n", + " Region: \"zone_1\"\tRelError: 1.55756e-03\tAbsError: 2.71473e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54980e-03\tAbsError: 2.11332e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.75517e-06\tAbsError: 2.69360e-03\n", + " Region: \"zone_3\"\tRelError: 6.08692e-02\tAbsError: 4.44373e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.73099e-02\tAbsError: 2.36189e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.64950e-04\tAbsError: 2.08185e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58656e-03\tAbsError: 2.12775e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.75517e-06\tAbsError: 2.69360e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.24267e-02\tAbsError: 4.44373e+12\n", + " Region: \"zone_1\"\tRelError: 1.55756e-03\tAbsError: 2.71473e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54980e-03\tAbsError: 2.11332e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.75517e-06\tAbsError: 2.69360e-03\n", + " Region: \"zone_3\"\tRelError: 6.08692e-02\tAbsError: 4.44373e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.73099e-02\tAbsError: 2.36189e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.64950e-04\tAbsError: 2.08185e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58656e-03\tAbsError: 2.12775e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.75517e-06\tAbsError: 2.69360e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.24267e-02\tAbsError: 4.44373e+12\n", + " Region: \"zone_1\"\tRelError: 1.55756e-03\tAbsError: 2.71473e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54980e-03\tAbsError: 2.11332e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.75517e-06\tAbsError: 2.69360e-03\n", + " Region: \"zone_3\"\tRelError: 6.08692e-02\tAbsError: 4.44373e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.73099e-02\tAbsError: 2.36189e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.64950e-04\tAbsError: 2.08185e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58656e-03\tAbsError: 2.12775e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.75517e-06\tAbsError: 2.69360e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.05482e-03\tAbsError: 1.29241e+12\n", + " Region: \"zone_1\"\tRelError: 1.90090e-04\tAbsError: 1.43838e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89682e-04\tAbsError: 1.76981e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.08079e-07\tAbsError: 1.42068e-04\n", + " Region: \"zone_3\"\tRelError: 8.64726e-04\tAbsError: 1.29241e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98376e-04\tAbsError: 3.47698e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.77560e-04\tAbsError: 9.44709e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.88382e-04\tAbsError: 1.78415e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.08236e-07\tAbsError: 1.42125e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.05482e-03\tAbsError: 1.29241e+12\n", + " Region: \"zone_1\"\tRelError: 1.90090e-04\tAbsError: 1.43838e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89682e-04\tAbsError: 1.76981e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.08079e-07\tAbsError: 1.42068e-04\n", + " Region: \"zone_3\"\tRelError: 8.64726e-04\tAbsError: 1.29241e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98376e-04\tAbsError: 3.47698e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.77560e-04\tAbsError: 9.44709e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.88382e-04\tAbsError: 1.78415e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.08236e-07\tAbsError: 1.42125e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.05482e-03\tAbsError: 1.29241e+12\n", + " Region: \"zone_1\"\tRelError: 1.90090e-04\tAbsError: 1.43838e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89682e-04\tAbsError: 1.76981e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.08079e-07\tAbsError: 1.42068e-04\n", + " Region: \"zone_3\"\tRelError: 8.64726e-04\tAbsError: 1.29241e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98376e-04\tAbsError: 3.47698e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.77560e-04\tAbsError: 9.44709e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.88382e-04\tAbsError: 1.78415e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.08236e-07\tAbsError: 1.42125e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.05482e-03\tAbsError: 1.29241e+12\n", + " Region: \"zone_1\"\tRelError: 1.90090e-04\tAbsError: 1.43838e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89682e-04\tAbsError: 1.76981e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.08079e-07\tAbsError: 1.42068e-04\n", + " Region: \"zone_3\"\tRelError: 8.64726e-04\tAbsError: 1.29241e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98376e-04\tAbsError: 3.47698e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.77560e-04\tAbsError: 9.44709e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.88382e-04\tAbsError: 1.78415e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.08236e-07\tAbsError: 1.42125e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.05482e-03\tAbsError: 1.29241e+12\n", + " Region: \"zone_1\"\tRelError: 1.90090e-04\tAbsError: 1.43838e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89682e-04\tAbsError: 1.76981e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.08079e-07\tAbsError: 1.42068e-04\n", + " Region: \"zone_3\"\tRelError: 8.64726e-04\tAbsError: 1.29241e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98376e-04\tAbsError: 3.47698e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.77560e-04\tAbsError: 9.44709e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.88382e-04\tAbsError: 1.78415e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.08236e-07\tAbsError: 1.42125e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.83337e-04\tAbsError: 1.21087e+11\n", + " Region: \"zone_1\"\tRelError: 4.90568e-05\tAbsError: 7.60331e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.88381e-05\tAbsError: 6.98456e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18693e-07\tAbsError: 7.59633e-05\n", + " Region: \"zone_3\"\tRelError: 1.34280e-04\tAbsError: 1.21087e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09790e-05\tAbsError: 8.50144e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.08806e-05\tAbsError: 3.60730e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12202e-04\tAbsError: 7.33777e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18747e-07\tAbsError: 7.59802e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.83337e-04\tAbsError: 1.21087e+11\n", + " Region: \"zone_1\"\tRelError: 4.90568e-05\tAbsError: 7.60331e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.88381e-05\tAbsError: 6.98456e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18693e-07\tAbsError: 7.59633e-05\n", + " Region: \"zone_3\"\tRelError: 1.34280e-04\tAbsError: 1.21087e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09790e-05\tAbsError: 8.50144e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.08806e-05\tAbsError: 3.60730e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12202e-04\tAbsError: 7.33777e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18747e-07\tAbsError: 7.59802e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.83337e-04\tAbsError: 1.21087e+11\n", + " Region: \"zone_1\"\tRelError: 4.90568e-05\tAbsError: 7.60331e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.88381e-05\tAbsError: 6.98456e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18693e-07\tAbsError: 7.59633e-05\n", + " Region: \"zone_3\"\tRelError: 1.34280e-04\tAbsError: 1.21087e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09790e-05\tAbsError: 8.50144e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.08806e-05\tAbsError: 3.60730e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12202e-04\tAbsError: 7.33777e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18747e-07\tAbsError: 7.59802e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.83337e-04\tAbsError: 1.21087e+11\n", + " Region: \"zone_1\"\tRelError: 4.90568e-05\tAbsError: 7.60331e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.88381e-05\tAbsError: 6.98456e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18693e-07\tAbsError: 7.59633e-05\n", + " Region: \"zone_3\"\tRelError: 1.34280e-04\tAbsError: 1.21087e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09790e-05\tAbsError: 8.50144e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.08806e-05\tAbsError: 3.60730e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12202e-04\tAbsError: 7.33777e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18747e-07\tAbsError: 7.59802e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.83337e-04\tAbsError: 1.21087e+11\n", + " Region: \"zone_1\"\tRelError: 4.90568e-05\tAbsError: 7.60331e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.88381e-05\tAbsError: 6.98456e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18693e-07\tAbsError: 7.59633e-05\n", + " Region: \"zone_3\"\tRelError: 1.34280e-04\tAbsError: 1.21087e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09790e-05\tAbsError: 8.50144e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.08806e-05\tAbsError: 3.60730e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12202e-04\tAbsError: 7.33777e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18747e-07\tAbsError: 7.59802e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 7.81161e-05\tAbsError: 6.93771e+10\n", + " Region: \"zone_1\"\tRelError: 1.93898e-05\tAbsError: 4.92941e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93758e-05\tAbsError: 5.79060e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39925e-08\tAbsError: 4.87150e-06\n", + " Region: \"zone_3\"\tRelError: 5.87263e-05\tAbsError: 6.93771e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90534e-06\tAbsError: 2.77459e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.85181e-06\tAbsError: 4.16312e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.49552e-05\tAbsError: 5.84903e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39990e-08\tAbsError: 4.87388e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:52\u001b[0m.\u001b[1;36m670\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:52\u001b[0m.\u001b[1;36m670\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.21250000000000002\u001b[0m \n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 7.81161e-05\tAbsError: 6.93771e+10\n", + " Region: \"zone_1\"\tRelError: 1.93898e-05\tAbsError: 4.92941e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93758e-05\tAbsError: 5.79060e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39925e-08\tAbsError: 4.87150e-06\n", + " Region: \"zone_3\"\tRelError: 5.87263e-05\tAbsError: 6.93771e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90534e-06\tAbsError: 2.77459e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.85181e-06\tAbsError: 4.16312e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.49552e-05\tAbsError: 5.84903e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39990e-08\tAbsError: 4.87388e-06\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Iteration: 7\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 7.81161e-05\tAbsError: 6.93771e+10\n", + " Region: \"zone_1\"\tRelError: 1.93898e-05\tAbsError: 4.92941e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93758e-05\tAbsError: 5.79060e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39925e-08\tAbsError: 4.87150e-06\n", + " Region: \"zone_3\"\tRelError: 5.87263e-05\tAbsError: 6.93771e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90534e-06\tAbsError: 2.77459e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.85181e-06\tAbsError: 4.16312e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.49552e-05\tAbsError: 5.84903e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39990e-08\tAbsError: 4.87388e-06\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Iteration: 7\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + " Device: \"device\"\tRelError: 7.81161e-05\tAbsError: 6.93771e+10\n", + " Region: \"zone_1\"\tRelError: 1.93898e-05\tAbsError: 4.92941e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93758e-05\tAbsError: 5.79060e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39925e-08\tAbsError: 4.87150e-06\n", + " Region: \"zone_3\"\tRelError: 5.87263e-05\tAbsError: 6.93771e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90534e-06\tAbsError: 2.77459e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.85181e-06\tAbsError: 4.16312e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.49552e-05\tAbsError: 5.84903e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39990e-08\tAbsError: 4.87388e-06\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 7.81161e-05\tAbsError: 6.93771e+10\n", + " Region: \"zone_1\"\tRelError: 1.93898e-05\tAbsError: 4.92941e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93758e-05\tAbsError: 5.79060e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39925e-08\tAbsError: 4.87150e-06\n", + " Region: \"zone_3\"\tRelError: 5.87263e-05\tAbsError: 6.93771e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90534e-06\tAbsError: 2.77459e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.85181e-06\tAbsError: 4.16312e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.49552e-05\tAbsError: 5.84903e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39990e-08\tAbsError: 4.87388e-06\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:52\u001b[0m.\u001b[1;36m793\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:52\u001b[0m.\u001b[1;36m793\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.21000000000000002\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:52\u001b[0m.\u001b[1;36m796\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.225\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:52\u001b[0m.\u001b[1;36m798\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.22\u001b[0m \n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:52\u001b[0m.\u001b[1;36m862\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: 0.2\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "number of equations 31816\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.53879e+00\tAbsError: 9.39205e+15\n", + " Region: \"zone_1\"\tRelError: 1.86269e+00\tAbsError: 4.34098e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86269e+00\tAbsError: 4.34059e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10402e-08\tAbsError: 3.83862e-06\n", + " Region: \"zone_3\"\tRelError: 1.67610e+00\tAbsError: 9.39205e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.89767e-01\tAbsError: 5.25395e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.89699e-01\tAbsError: 4.13810e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.66371e-02\tAbsError: 4.34059e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10406e-08\tAbsError: 3.83883e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.28200e+00\tAbsError: 1.04356e+16\n", + " Region: \"zone_1\"\tRelError: 2.57025e+00\tAbsError: 4.56493e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57025e+00\tAbsError: 4.56455e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10402e-08\tAbsError: 3.83862e-06\n", + " Region: \"zone_3\"\tRelError: 1.71175e+00\tAbsError: 1.04356e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.06727e-01\tAbsError: 5.83772e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.06663e-01\tAbsError: 4.59788e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.83590e-02\tAbsError: 4.56455e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10406e-08\tAbsError: 3.83883e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.56710e+00\tAbsError: 9.18334e+15\n", + " Region: \"zone_1\"\tRelError: 1.89994e+00\tAbsError: 4.29376e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89994e+00\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10402e-08\tAbsError: 3.83862e-06\n", + " Region: \"zone_3\"\tRelError: 1.66716e+00\tAbsError: 9.18334e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86011e-01\tAbsError: 5.13720e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.85942e-01\tAbsError: 4.04614e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.52021e-02\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10406e-08\tAbsError: 3.83883e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.93684e+00\tAbsError: 1.00182e+16\n", + " Region: \"zone_1\"\tRelError: 2.23741e+00\tAbsError: 4.47766e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23741e+00\tAbsError: 4.47728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10402e-08\tAbsError: 3.83862e-06\n", + " Region: \"zone_3\"\tRelError: 1.69943e+00\tAbsError: 1.00182e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.00282e-01\tAbsError: 5.60422e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.00217e-01\tAbsError: 4.41397e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.89279e-02\tAbsError: 4.47728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10406e-08\tAbsError: 3.83883e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.71665e+00\tAbsError: 8.34849e+15\n", + " Region: \"zone_1\"\tRelError: 2.08783e+00\tAbsError: 4.09581e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08783e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10402e-08\tAbsError: 3.83862e-06\n", + " Region: \"zone_3\"\tRelError: 1.62882e+00\tAbsError: 8.34849e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69544e-01\tAbsError: 4.67018e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69471e-01\tAbsError: 3.67831e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.98079e-02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10406e-08\tAbsError: 3.83883e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.58790e+00\tAbsError: 3.66802e+14\n", + " Region: \"zone_1\"\tRelError: 7.55897e-02\tAbsError: 1.00192e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.53983e-02\tAbsError: 3.36593e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91386e-04\tAbsError: 6.65330e-02\n", + " Region: \"zone_3\"\tRelError: 1.51231e+00\tAbsError: 3.66802e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.73823e-01\tAbsError: 1.90008e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69654e-01\tAbsError: 1.76794e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.86418e-02\tAbsError: 3.36598e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91386e-04\tAbsError: 6.65330e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.57053e+00\tAbsError: 3.51165e+14\n", + " Region: \"zone_1\"\tRelError: 7.27979e-02\tAbsError: 9.81633e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.26108e-02\tAbsError: 3.31004e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87156e-04\tAbsError: 6.50629e-02\n", + " Region: \"zone_3\"\tRelError: 1.49773e+00\tAbsError: 3.51165e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67194e-01\tAbsError: 1.81651e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.62787e-01\tAbsError: 1.69514e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.75645e-02\tAbsError: 3.31009e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87156e-04\tAbsError: 6.50629e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.66284e+00\tAbsError: 4.50140e+14\n", + " Region: \"zone_1\"\tRelError: 8.50588e-02\tAbsError: 1.10173e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.48463e-02\tAbsError: 3.63158e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.12460e-04\tAbsError: 7.38576e-02\n", + " Region: \"zone_3\"\tRelError: 1.57778e+00\tAbsError: 4.50140e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.04046e-01\tAbsError: 2.35006e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.99754e-01\tAbsError: 2.15134e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.37676e-02\tAbsError: 3.63162e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.12460e-04\tAbsError: 7.38576e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.63292e+00\tAbsError: 4.15375e+14\n", + " Region: \"zone_1\"\tRelError: 7.97441e-02\tAbsError: 1.06260e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.95399e-02\tAbsError: 3.52797e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.04182e-04\tAbsError: 7.09806e-02\n", + " Region: \"zone_3\"\tRelError: 1.55318e+00\tAbsError: 4.15375e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.92034e-01\tAbsError: 2.15992e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.89172e-01\tAbsError: 1.99383e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.17701e-02\tAbsError: 3.52802e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.04182e-04\tAbsError: 7.09806e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.50135e+00\tAbsError: 2.91709e+14\n", + " Region: \"zone_1\"\tRelError: 6.56152e-02\tAbsError: 8.99308e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.54450e-02\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70194e-04\tAbsError: 5.91672e-02\n", + " Region: \"zone_3\"\tRelError: 1.43573e+00\tAbsError: 2.91709e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37692e-01\tAbsError: 1.49990e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32867e-01\tAbsError: 1.41719e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.50013e-02\tAbsError: 3.07641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70194e-04\tAbsError: 5.91672e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.07805e+00\tAbsError: 4.45719e+13\n", + " Region: \"zone_1\"\tRelError: 5.25512e-02\tAbsError: 3.19171e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.25338e-02\tAbsError: 2.58938e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73262e-05\tAbsError: 6.02337e-03\n", + " Region: \"zone_3\"\tRelError: 1.02550e+00\tAbsError: 4.45719e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.97356e-01\tAbsError: 3.25945e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.75305e-01\tAbsError: 1.19774e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.28239e-02\tAbsError: 2.58580e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73262e-05\tAbsError: 6.02337e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.20178e+00\tAbsError: 5.38350e+13\n", + " Region: \"zone_1\"\tRelError: 5.65078e-02\tAbsError: 3.29649e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.64872e-02\tAbsError: 2.58169e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.05615e-05\tAbsError: 7.14795e-03\n", + " Region: \"zone_3\"\tRelError: 1.14528e+00\tAbsError: 5.38350e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.46674e-01\tAbsError: 3.92893e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.41993e-01\tAbsError: 1.45456e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.65882e-02\tAbsError: 2.58050e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.05615e-05\tAbsError: 7.14795e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.05165e+00\tAbsError: 4.28489e+13\n", + " Region: \"zone_1\"\tRelError: 5.19381e-02\tAbsError: 3.16771e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.19214e-02\tAbsError: 2.58745e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66912e-05\tAbsError: 5.80261e-03\n", + " Region: \"zone_3\"\tRelError: 9.99707e-01\tAbsError: 4.28489e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.86538e-01\tAbsError: 3.13493e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.61055e-01\tAbsError: 1.14996e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.20976e-02\tAbsError: 2.58960e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66912e-05\tAbsError: 5.80261e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.15262e+00\tAbsError: 5.01447e+13\n", + " Region: \"zone_1\"\tRelError: 5.48144e-02\tAbsError: 3.25839e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.47949e-02\tAbsError: 2.58232e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94474e-05\tAbsError: 6.76072e-03\n", + " Region: \"zone_3\"\tRelError: 1.09780e+00\tAbsError: 5.01447e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.27983e-01\tAbsError: 3.66370e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.14663e-01\tAbsError: 1.35077e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.51367e-02\tAbsError: 2.58961e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94474e-05\tAbsError: 6.76072e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.34092e-01\tAbsError: 3.63172e+13\n", + " Region: \"zone_1\"\tRelError: 4.74089e-02\tAbsError: 3.08414e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.73947e-02\tAbsError: 2.58899e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42429e-05\tAbsError: 4.95155e-03\n", + " Region: \"zone_3\"\tRelError: 8.86683e-01\tAbsError: 3.63172e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40041e-01\tAbsError: 2.66176e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.98904e-01\tAbsError: 9.69965e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.77236e-02\tAbsError: 2.58388e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42429e-05\tAbsError: 4.95155e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.84829e-01\tAbsError: 3.38152e+12\n", + " Region: \"zone_1\"\tRelError: 2.22384e-02\tAbsError: 1.67900e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.22278e-02\tAbsError: 1.31069e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05945e-05\tAbsError: 3.68307e-03\n", + " Region: \"zone_3\"\tRelError: 3.62591e-01\tAbsError: 3.38152e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.57689e-01\tAbsError: 2.18351e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.23925e-02\tAbsError: 1.19802e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24992e-02\tAbsError: 1.31070e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05945e-05\tAbsError: 3.68307e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.16809e-01\tAbsError: 4.52158e+12\n", + " Region: \"zone_1\"\tRelError: 3.08342e-02\tAbsError: 2.17664e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.08224e-02\tAbsError: 1.76840e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17434e-05\tAbsError: 4.08239e-03\n", + " Region: \"zone_3\"\tRelError: 4.85974e-01\tAbsError: 4.52158e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.20160e-01\tAbsError: 2.93839e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34635e-01\tAbsError: 1.58320e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.11676e-02\tAbsError: 1.76841e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17434e-05\tAbsError: 4.08239e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.59925e-01\tAbsError: 3.29811e+12\n", + " Region: \"zone_1\"\tRelError: 2.06968e-02\tAbsError: 1.57226e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06868e-02\tAbsError: 1.22658e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.94379e-06\tAbsError: 3.45688e-03\n", + " Region: \"zone_3\"\tRelError: 3.39228e-01\tAbsError: 3.29811e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.44822e-01\tAbsError: 2.09106e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.34528e-02\tAbsError: 1.20705e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09440e-02\tAbsError: 1.22658e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.94484e-06\tAbsError: 3.45731e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.63237e-01\tAbsError: 3.89858e+12\n", + " Region: \"zone_1\"\tRelError: 2.72186e-02\tAbsError: 1.97367e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.72072e-02\tAbsError: 1.57809e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13791e-05\tAbsError: 3.95578e-03\n", + " Region: \"zone_3\"\tRelError: 4.36018e-01\tAbsError: 3.89858e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.95865e-01\tAbsError: 2.60793e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.12619e-01\tAbsError: 1.29064e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.75223e-02\tAbsError: 1.57810e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13791e-05\tAbsError: 3.95578e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.84661e-01\tAbsError: 3.60663e+12\n", + " Region: \"zone_1\"\tRelError: 1.51217e-02\tAbsError: 1.24487e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51123e-02\tAbsError: 9.16566e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.44365e-06\tAbsError: 3.28306e-03\n", + " Region: \"zone_3\"\tRelError: 2.69539e-01\tAbsError: 3.60663e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12296e-01\tAbsError: 2.19846e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.19182e-02\tAbsError: 1.40817e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53153e-02\tAbsError: 9.16570e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.44365e-06\tAbsError: 3.28306e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.84170e-02\tAbsError: 2.98589e+12\n", + " Region: \"zone_1\"\tRelError: 1.01074e-03\tAbsError: 2.47043e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00364e-03\tAbsError: 2.37290e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.10666e-06\tAbsError: 2.46806e-03\n", + " Region: \"zone_3\"\tRelError: 8.74063e-02\tAbsError: 2.98589e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.43433e-02\tAbsError: 1.88413e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.78684e-04\tAbsError: 1.10176e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.77718e-03\tAbsError: 2.58380e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.10666e-06\tAbsError: 2.46806e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.28938e-01\tAbsError: 3.34909e+12\n", + " Region: \"zone_1\"\tRelError: 8.90961e-04\tAbsError: 2.97123e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.82412e-04\tAbsError: 2.22756e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.54922e-06\tAbsError: 2.96901e-03\n", + " Region: \"zone_3\"\tRelError: 1.28047e-01\tAbsError: 3.34909e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24383e-01\tAbsError: 2.03710e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.91050e-04\tAbsError: 1.31199e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.06484e-03\tAbsError: 2.23835e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.54922e-06\tAbsError: 2.96901e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.12077e-01\tAbsError: 3.22720e+12\n", + " Region: \"zone_1\"\tRelError: 9.34001e-04\tAbsError: 2.75666e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.26069e-04\tAbsError: 2.01820e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.93193e-06\tAbsError: 2.75464e-03\n", + " Region: \"zone_3\"\tRelError: 1.11143e-01\tAbsError: 3.22720e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07769e-01\tAbsError: 1.97456e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.93688e-04\tAbsError: 1.25263e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97332e-03\tAbsError: 2.09794e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.93193e-06\tAbsError: 2.75464e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.15555e-02\tAbsError: 2.83273e+12\n", + " Region: \"zone_1\"\tRelError: 9.61737e-04\tAbsError: 2.53661e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.54438e-04\tAbsError: 1.76901e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.29893e-06\tAbsError: 2.53484e-03\n", + " Region: \"zone_3\"\tRelError: 8.05938e-02\tAbsError: 2.83273e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77894e-02\tAbsError: 1.76357e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.00697e-04\tAbsError: 1.06916e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.59639e-03\tAbsError: 1.83626e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.29893e-06\tAbsError: 2.53484e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.15193e-02\tAbsError: 3.32533e+12\n", + " Region: \"zone_1\"\tRelError: 1.39861e-03\tAbsError: 2.06499e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39271e-03\tAbsError: 1.45908e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.90395e-06\tAbsError: 2.05040e-03\n", + " Region: \"zone_3\"\tRelError: 6.01207e-02\tAbsError: 3.32533e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.70408e-02\tAbsError: 2.05872e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.81905e-04\tAbsError: 1.26661e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49208e-03\tAbsError: 1.52370e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.90395e-06\tAbsError: 2.05040e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.83872e-04\tAbsError: 1.20586e+12\n", + " Region: \"zone_1\"\tRelError: 1.08141e-04\tAbsError: 1.50843e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07713e-04\tAbsError: 1.73879e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.28324e-07\tAbsError: 1.49104e-04\n", + " Region: \"zone_3\"\tRelError: 6.75731e-04\tAbsError: 1.20586e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47748e-04\tAbsError: 3.09981e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.43876e-04\tAbsError: 8.95875e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.83677e-04\tAbsError: 1.73899e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.28505e-07\tAbsError: 1.49169e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.24807e-04\tAbsError: 1.44810e+12\n", + " Region: \"zone_1\"\tRelError: 1.11443e-04\tAbsError: 1.61914e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10984e-04\tAbsError: 2.10195e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.59089e-07\tAbsError: 1.59812e-04\n", + " Region: \"zone_3\"\tRelError: 8.13364e-04\tAbsError: 1.44810e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68603e-04\tAbsError: 3.67953e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.69322e-04\tAbsError: 1.08015e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.74980e-04\tAbsError: 2.10266e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.59279e-07\tAbsError: 1.59881e-04\n", + "Iteration: 5\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.98965e-04\tAbsError: 1.24659e+12\n", + " Region: \"zone_1\"\tRelError: 1.38362e-04\tAbsError: 1.35908e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37977e-04\tAbsError: 1.78872e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.85277e-07\tAbsError: 1.34119e-04\n", + " Region: \"zone_3\"\tRelError: 7.60603e-04\tAbsError: 1.24659e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53741e-04\tAbsError: 3.31806e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.52332e-04\tAbsError: 9.14787e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54145e-04\tAbsError: 1.78892e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.85437e-07\tAbsError: 1.34177e-04\n", + " Device: \"device\"\tRelError: 8.54154e-04\tAbsError: 1.34353e+12\n", + " Region: \"zone_1\"\tRelError: 1.07529e-04\tAbsError: 1.59272e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07078e-04\tAbsError: 1.94603e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.51946e-07\tAbsError: 1.57326e-04\n", + " Region: \"zone_3\"\tRelError: 7.46624e-04\tAbsError: 1.34353e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.58803e-04\tAbsError: 3.42023e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.58116e-04\tAbsError: 1.00151e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.29253e-04\tAbsError: 1.94645e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.52133e-07\tAbsError: 1.57394e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.41619e-04\tAbsError: 9.91737e+11\n", + " Region: \"zone_1\"\tRelError: 9.96328e-05\tAbsError: 1.41218e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.92313e-05\tAbsError: 1.43598e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.01548e-07\tAbsError: 1.39782e-04\n", + " Region: \"zone_3\"\tRelError: 5.41987e-04\tAbsError: 9.91737e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33851e-04\tAbsError: 2.52743e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.19510e-04\tAbsError: 7.38994e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88224e-04\tAbsError: 1.43642e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.01703e-07\tAbsError: 1.39838e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.88505e-04\tAbsError: 1.27858e+11\n", + " Region: \"zone_1\"\tRelError: 4.26064e-05\tAbsError: 6.82507e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.24101e-05\tAbsError: 7.45728e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.96297e-07\tAbsError: 6.81762e-05\n", + " Region: \"zone_3\"\tRelError: 1.45898e-04\tAbsError: 1.27858e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01716e-05\tAbsError: 8.89126e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.00818e-05\tAbsError: 3.89454e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25448e-04\tAbsError: 7.84802e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.96297e-07\tAbsError: 6.81762e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.88637e-04\tAbsError: 1.33871e+11\n", + " Region: \"zone_1\"\tRelError: 3.67778e-05\tAbsError: 8.30989e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.65388e-05\tAbsError: 7.88474e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39039e-07\tAbsError: 8.30200e-05\n", + " Region: \"zone_3\"\tRelError: 1.51859e-04\tAbsError: 1.33871e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03403e-05\tAbsError: 9.56490e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02501e-05\tAbsError: 3.82221e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31030e-04\tAbsError: 8.29792e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39042e-07\tAbsError: 8.30200e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.91512e-04\tAbsError: 1.33302e+11\n", + " Region: \"zone_1\"\tRelError: 3.95318e-05\tAbsError: 7.64793e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.93118e-05\tAbsError: 7.81883e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19981e-07\tAbsError: 7.64012e-05\n", + " Region: \"zone_3\"\tRelError: 1.51980e-04\tAbsError: 1.33302e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04356e-05\tAbsError: 9.39778e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03447e-05\tAbsError: 3.93238e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30980e-04\tAbsError: 8.22844e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19981e-07\tAbsError: 7.64012e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.63404e-04\tAbsError: 1.13118e+11\n", + " Region: \"zone_1\"\tRelError: 3.79692e-05\tAbsError: 7.25340e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.77606e-05\tAbsError: 6.55674e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08655e-07\tAbsError: 7.24685e-05\n", + " Region: \"zone_3\"\tRelError: 1.25435e-04\tAbsError: 1.13118e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.83920e-06\tAbsError: 8.03454e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.75701e-06\tAbsError: 3.27729e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07630e-04\tAbsError: 6.89930e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08701e-07\tAbsError: 7.24825e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.93092e-04\tAbsError: 1.20956e+11\n", + " Region: \"zone_1\"\tRelError: 5.19796e-05\tAbsError: 5.49717e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.18215e-05\tAbsError: 7.13664e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58071e-07\tAbsError: 5.49003e-05\n", + " Region: \"zone_3\"\tRelError: 1.41112e-04\tAbsError: 1.20956e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98278e-06\tAbsError: 8.30737e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.89193e-06\tAbsError: 3.78825e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21079e-04\tAbsError: 7.51109e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58071e-07\tAbsError: 5.49003e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.02240e-05\tAbsError: 6.13809e+10\n", + " Region: \"zone_1\"\tRelError: 1.22214e-05\tAbsError: 5.85783e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22048e-05\tAbsError: 5.52827e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66684e-08\tAbsError: 5.80254e-06\n", + " Region: \"zone_3\"\tRelError: 4.80026e-05\tAbsError: 6.13809e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.42789e-06\tAbsError: 2.30389e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.38225e-06\tAbsError: 3.83421e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.71758e-05\tAbsError: 5.53762e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66761e-08\tAbsError: 5.80531e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:04\u001b[0m.\u001b[1;36m201\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:04\u001b[0m.\u001b[1;36m201\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.32500000000000007\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 7.25073e-05\tAbsError: 7.50435e+10\n", + " Region: \"zone_1\"\tRelError: 1.27392e-05\tAbsError: 5.72098e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27230e-05\tAbsError: 6.77997e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62395e-08\tAbsError: 5.65318e-06\n", + " Region: \"zone_3\"\tRelError: 5.97680e-05\tAbsError: 7.50435e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.54092e-06\tAbsError: 2.83626e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.48691e-06\tAbsError: 4.66809e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.67240e-05\tAbsError: 6.78612e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62475e-08\tAbsError: 5.65608e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.64634e-05\tAbsError: 6.88445e+10\n", + " Region: \"zone_1\"\tRelError: 1.23151e-05\tAbsError: 5.93606e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22982e-05\tAbsError: 6.22343e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68733e-08\tAbsError: 5.87382e-06\n", + " Region: \"zone_3\"\tRelError: 5.41483e-05\tAbsError: 6.88445e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.03522e-06\tAbsError: 2.58299e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.98503e-06\tAbsError: 4.30146e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.21112e-05\tAbsError: 6.23101e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68809e-08\tAbsError: 5.87661e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.96553e-05\tAbsError: 6.62371e+10\n", + " Region: \"zone_1\"\tRelError: 1.48815e-05\tAbsError: 4.57528e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48685e-05\tAbsError: 5.85248e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29748e-08\tAbsError: 4.51675e-06\n", + " Region: \"zone_3\"\tRelError: 5.47738e-05\tAbsError: 6.62371e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.88342e-06\tAbsError: 2.60354e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.83402e-06\tAbsError: 4.02017e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.30433e-05\tAbsError: 5.86384e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29813e-08\tAbsError: 4.51913e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:04\u001b[0m.\u001b[1;36m442\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.35\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:04\u001b[0m.\u001b[1;36m478\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: \u001b[0m \n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:04\u001b[0m.\u001b[1;36m478\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.33999999999999997\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:04\u001b[0m.\u001b[1;36m494\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: \u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:04\u001b[0m.\u001b[1;36m494\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.32000000000000006\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.80808e-05\tAbsError: 4.88682e+10\n", + " Region: \"zone_1\"\tRelError: 1.14733e-05\tAbsError: 6.01729e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14561e-05\tAbsError: 4.42617e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71583e-08\tAbsError: 5.97303e-06\n", + " Region: \"zone_3\"\tRelError: 3.66076e-05\tAbsError: 4.88682e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37895e-06\tAbsError: 1.78097e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.34162e-06\tAbsError: 3.10585e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78698e-05\tAbsError: 4.43739e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71659e-08\tAbsError: 5.97583e-06\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:04\u001b[0m.\u001b[1;36m657\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:04\u001b[0m.\u001b[1;36m657\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.52071e+00\tAbsError: 9.31230e+15\n", + " Region: \"zone_1\"\tRelError: 6.83668e+00\tAbsError: 4.34092e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.83668e+00\tAbsError: 4.34059e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.31980e-09\tAbsError: 3.23984e-06\n", + " Region: \"zone_3\"\tRelError: 1.68403e+00\tAbsError: 9.31230e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.89855e-01\tAbsError: 5.38690e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.89836e-01\tAbsError: 3.92539e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04337e-01\tAbsError: 4.34059e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.31980e-09\tAbsError: 3.23984e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 9.02508e+00\tAbsError: 1.03436e+16\n", + " Region: \"zone_1\"\tRelError: 7.30011e+00\tAbsError: 4.56495e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.30011e+00\tAbsError: 4.56455e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16793e-08\tAbsError: 4.06001e-06\n", + " Region: \"zone_3\"\tRelError: 1.72497e+00\tAbsError: 1.03436e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.06813e-01\tAbsError: 6.00379e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.06796e-01\tAbsError: 4.33979e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11360e-01\tAbsError: 4.56455e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16793e-08\tAbsError: 4.06001e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.11166e+00\tAbsError: 9.93116e+15\n", + " Region: \"zone_1\"\tRelError: 4.40001e+00\tAbsError: 4.47764e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.40001e+00\tAbsError: 4.47728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05684e-08\tAbsError: 3.67386e-06\n", + " Region: \"zone_3\"\tRelError: 1.71166e+00\tAbsError: 9.93116e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.00369e-01\tAbsError: 5.75673e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.00352e-01\tAbsError: 4.17443e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10937e-01\tAbsError: 4.47728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05684e-08\tAbsError: 3.67386e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.13208e+01\tAbsError: 9.10596e+15\n", + " Region: \"zone_1\"\tRelError: 9.64710e+00\tAbsError: 4.29375e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.64710e+00\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05109e-08\tAbsError: 3.65393e-06\n", + " Region: \"zone_3\"\tRelError: 1.67375e+00\tAbsError: 9.10596e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86100e-01\tAbsError: 5.26385e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.86081e-01\tAbsError: 3.84211e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01565e-01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05112e-08\tAbsError: 3.65410e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.29649e+01\tAbsError: 8.28032e+15\n", + " Region: \"zone_1\"\tRelError: 1.13261e+01\tAbsError: 4.09567e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13261e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.18797e-09\tAbsError: 2.49640e-06\n", + " Region: \"zone_3\"\tRelError: 1.63880e+00\tAbsError: 8.28032e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69633e-01\tAbsError: 4.77284e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.50748e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.95556e-02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.18889e-09\tAbsError: 2.49675e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.62246e+00\tAbsError: 3.65433e+14\n", + " Region: \"zone_1\"\tRelError: 9.44049e-02\tAbsError: 9.44380e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.42301e-02\tAbsError: 3.36593e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74863e-04\tAbsError: 6.07788e-02\n", + " Region: \"zone_3\"\tRelError: 1.52805e+00\tAbsError: 3.65433e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.74362e-01\tAbsError: 2.33112e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69900e-01\tAbsError: 1.32321e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.36162e-02\tAbsError: 3.36597e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74863e-04\tAbsError: 6.07788e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.67898e+00\tAbsError: 4.16529e+14\n", + " Region: \"zone_1\"\tRelError: 1.08583e-01\tAbsError: 9.95281e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08398e-01\tAbsError: 3.52797e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84850e-04\tAbsError: 6.42484e-02\n", + " Region: \"zone_3\"\tRelError: 1.57040e+00\tAbsError: 4.16529e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.92917e-01\tAbsError: 2.71892e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.88893e-01\tAbsError: 1.44637e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.84045e-02\tAbsError: 3.52801e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84850e-04\tAbsError: 6.42484e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.76174e+00\tAbsError: 4.53186e+14\n", + " Region: \"zone_1\"\tRelError: 1.66138e-01\tAbsError: 1.02791e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65947e-01\tAbsError: 3.63157e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91260e-04\tAbsError: 6.64756e-02\n", + " Region: \"zone_3\"\tRelError: 1.59560e+00\tAbsError: 4.53186e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.04551e-01\tAbsError: 3.00667e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.00035e-01\tAbsError: 1.52519e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.08233e-02\tAbsError: 3.63162e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91260e-04\tAbsError: 6.64756e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.60555e+00\tAbsError: 3.49070e+14\n", + " Region: \"zone_1\"\tRelError: 9.22733e-02\tAbsError: 9.26848e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.21018e-02\tAbsError: 3.31004e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71426e-04\tAbsError: 5.95845e-02\n", + " Region: \"zone_3\"\tRelError: 1.51327e+00\tAbsError: 3.49070e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67916e-01\tAbsError: 2.20940e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.62728e-01\tAbsError: 1.28130e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.24571e-02\tAbsError: 3.31008e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71426e-04\tAbsError: 5.95845e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.56865e+00\tAbsError: 2.86625e+14\n", + " Region: \"zone_1\"\tRelError: 1.21045e-01\tAbsError: 8.55195e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20888e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", + " Region: \"zone_3\"\tRelError: 1.44761e+00\tAbsError: 2.86625e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38556e-01\tAbsError: 1.75436e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32332e-01\tAbsError: 1.11189e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.65613e-02\tAbsError: 3.07640e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.11363e+00\tAbsError: 5.96545e+13\n", + " Region: \"zone_1\"\tRelError: 6.75695e-02\tAbsError: 3.29339e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.75487e-02\tAbsError: 2.57042e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.07999e-05\tAbsError: 7.22975e-03\n", + " Region: \"zone_3\"\tRelError: 1.04606e+00\tAbsError: 5.96545e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.97798e-01\tAbsError: 4.25095e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.80228e-01\tAbsError: 1.71450e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.80105e-02\tAbsError: 2.58162e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.07999e-05\tAbsError: 7.22975e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.19514e+00\tAbsError: 7.59573e+13\n", + " Region: \"zone_1\"\tRelError: 7.24050e-02\tAbsError: 3.39834e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.23816e-02\tAbsError: 2.58364e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.34393e-05\tAbsError: 8.14699e-03\n", + " Region: \"zone_3\"\tRelError: 1.12273e+00\tAbsError: 7.59573e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.28455e-01\tAbsError: 5.29748e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.21700e-01\tAbsError: 2.29824e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.25511e-02\tAbsError: 2.58828e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.34393e-05\tAbsError: 8.14699e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.24543e+00\tAbsError: 8.44995e+13\n", + " Region: \"zone_1\"\tRelError: 7.48143e-02\tAbsError: 3.41274e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.47891e-02\tAbsError: 2.53557e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.52369e-05\tAbsError: 8.77172e-03\n", + " Region: \"zone_3\"\tRelError: 1.17061e+00\tAbsError: 8.44995e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.47366e-01\tAbsError: 5.66747e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.48284e-01\tAbsError: 2.78248e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.49367e-02\tAbsError: 2.57734e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.52369e-05\tAbsError: 8.77172e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.08576e+00\tAbsError: 5.42272e+13\n", + " Region: \"zone_1\"\tRelError: 6.57302e-02\tAbsError: 3.25935e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.57103e-02\tAbsError: 2.56636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99371e-05\tAbsError: 6.92989e-03\n", + " Region: \"zone_3\"\tRelError: 1.02003e+00\tAbsError: 5.42272e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.86826e-01\tAbsError: 3.87041e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.66488e-01\tAbsError: 1.55232e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.66923e-02\tAbsError: 2.58213e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99371e-05\tAbsError: 6.92989e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.63437e-01\tAbsError: 3.66677e+13\n", + " Region: \"zone_1\"\tRelError: 5.93231e-02\tAbsError: 3.16919e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.93064e-02\tAbsError: 2.58707e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", + " Region: \"zone_3\"\tRelError: 9.04114e-01\tAbsError: 3.66677e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40101e-01\tAbsError: 2.63702e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.04471e-01\tAbsError: 1.02975e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95256e-02\tAbsError: 2.58992e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.00848e-01\tAbsError: 1.07895e+13\n", + " Region: \"zone_1\"\tRelError: 2.84831e-02\tAbsError: 1.61431e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.84743e-02\tAbsError: 1.31069e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.73558e-06\tAbsError: 3.03626e-03\n", + " Region: \"zone_3\"\tRelError: 3.72365e-01\tAbsError: 1.07895e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.56914e-01\tAbsError: 5.23438e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.67239e-02\tAbsError: 5.55513e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.87187e-02\tAbsError: 1.31069e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.73893e-06\tAbsError: 3.03751e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.85588e-01\tAbsError: 1.61066e+13\n", + " Region: \"zone_1\"\tRelError: 3.56563e-02\tAbsError: 1.89664e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.56471e-02\tAbsError: 1.57809e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.16511e-06\tAbsError: 3.18549e-03\n", + " Region: \"zone_3\"\tRelError: 4.49932e-01\tAbsError: 1.61066e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.95059e-01\tAbsError: 8.36463e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.18941e-01\tAbsError: 7.74195e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59228e-02\tAbsError: 1.57809e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.16867e-06\tAbsError: 3.18682e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.45003e-01\tAbsError: 2.12588e+13\n", + " Region: \"zone_1\"\tRelError: 4.10214e-02\tAbsError: 2.09861e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.10119e-02\tAbsError: 1.76839e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.50094e-06\tAbsError: 3.30217e-03\n", + " Region: \"zone_3\"\tRelError: 5.03981e-01\tAbsError: 2.12588e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.20049e-01\tAbsError: 1.15224e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.42587e-01\tAbsError: 9.73636e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.13362e-02\tAbsError: 1.76840e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.50472e-06\tAbsError: 3.30358e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.73642e-01\tAbsError: 9.69815e+12\n", + " Region: \"zone_1\"\tRelError: 2.63134e-02\tAbsError: 1.52684e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.63048e-02\tAbsError: 1.22657e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.63884e-06\tAbsError: 3.00266e-03\n", + " Region: \"zone_3\"\tRelError: 3.47328e-01\tAbsError: 9.69815e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.43903e-01\tAbsError: 4.70596e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.68748e-02\tAbsError: 4.99219e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.65414e-02\tAbsError: 1.22658e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.64176e-06\tAbsError: 3.00375e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.93334e-01\tAbsError: 6.56738e+12\n", + " Region: \"zone_1\"\tRelError: 1.86981e-02\tAbsError: 1.19586e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86900e-02\tAbsError: 9.16562e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03535e-06\tAbsError: 2.79297e-03\n", + " Region: \"zone_3\"\tRelError: 2.74636e-01\tAbsError: 6.56738e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11907e-01\tAbsError: 3.29549e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.38500e-02\tAbsError: 3.27189e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88710e-02\tAbsError: 9.16566e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03753e-06\tAbsError: 2.79381e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.82821e-02\tAbsError: 2.68252e+12\n", + " Region: \"zone_1\"\tRelError: 5.25129e-04\tAbsError: 1.93840e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.19570e-04\tAbsError: 8.03188e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.55898e-06\tAbsError: 1.93037e-03\n", + " Region: \"zone_3\"\tRelError: 8.77570e-02\tAbsError: 2.68252e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.43925e-02\tAbsError: 1.75308e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.55318e-04\tAbsError: 9.29440e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.50363e-03\tAbsError: 8.78638e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.55898e-06\tAbsError: 1.93037e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.11980e-01\tAbsError: 2.98837e+12\n", + " Region: \"zone_1\"\tRelError: 5.60614e-04\tAbsError: 2.14512e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.54465e-04\tAbsError: 1.00063e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.14867e-06\tAbsError: 2.13511e-03\n", + " Region: \"zone_3\"\tRelError: 1.11419e-01\tAbsError: 2.98837e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06867e-01\tAbsError: 1.76788e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.90377e-03\tAbsError: 1.22049e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64228e-03\tAbsError: 1.04392e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.14867e-06\tAbsError: 2.13511e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.30171e-01\tAbsError: 3.28068e+12\n", + " Region: \"zone_1\"\tRelError: 5.86889e-04\tAbsError: 2.27696e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.80377e-04\tAbsError: 1.55714e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.51238e-06\tAbsError: 2.26139e-03\n", + " Region: \"zone_3\"\tRelError: 1.29584e-01\tAbsError: 3.28068e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23299e-01\tAbsError: 1.75938e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.53077e-03\tAbsError: 1.52130e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74781e-03\tAbsError: 1.70018e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.51238e-06\tAbsError: 2.26139e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.13764e-02\tAbsError: 2.60011e+12\n", + " Region: \"zone_1\"\tRelError: 5.15644e-04\tAbsError: 1.86139e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.10306e-04\tAbsError: 7.73509e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.33805e-06\tAbsError: 1.85366e-03\n", + " Region: \"zone_3\"\tRelError: 8.08607e-02\tAbsError: 2.60011e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77471e-02\tAbsError: 1.74501e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.39413e-04\tAbsError: 8.55098e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.46890e-03\tAbsError: 8.53513e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.33805e-06\tAbsError: 1.85366e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.00158e-02\tAbsError: 2.47729e+12\n", + " Region: \"zone_1\"\tRelError: 6.29744e-04\tAbsError: 1.66755e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.24968e-04\tAbsError: 8.94858e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", + " Region: \"zone_3\"\tRelError: 5.93860e-02\tAbsError: 2.47729e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.68115e-02\tAbsError: 1.70064e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.91678e-04\tAbsError: 7.76647e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27809e-03\tAbsError: 9.43816e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.07510e-04\tAbsError: 1.02613e+12\n", + " Region: \"zone_1\"\tRelError: 4.81162e-05\tAbsError: 1.44442e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.77057e-05\tAbsError: 1.54944e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.10523e-07\tAbsError: 1.42893e-04\n", + " Region: \"zone_3\"\tRelError: 4.59393e-04\tAbsError: 1.02613e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.20154e-04\tAbsError: 2.39172e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03494e-04\tAbsError: 7.86956e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.35335e-04\tAbsError: 1.55565e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.10697e-07\tAbsError: 1.42956e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.59692e-04\tAbsError: 9.32961e+11\n", + " Region: \"zone_1\"\tRelError: 4.35244e-05\tAbsError: 1.38312e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.31311e-05\tAbsError: 1.40628e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.93324e-07\tAbsError: 1.36906e-04\n", + " Region: \"zone_3\"\tRelError: 4.16167e-04\tAbsError: 9.32961e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03722e-04\tAbsError: 2.21928e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.61297e-05\tAbsError: 7.11033e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.15922e-04\tAbsError: 1.41248e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.93489e-07\tAbsError: 1.36966e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.38944e-04\tAbsError: 1.08088e+12\n", + " Region: \"zone_1\"\tRelError: 5.57220e-05\tAbsError: 1.49946e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.52959e-05\tAbsError: 1.63142e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.26101e-07\tAbsError: 1.48314e-04\n", + " Region: \"zone_3\"\tRelError: 4.83222e-04\tAbsError: 1.08088e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36277e-04\tAbsError: 2.47335e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.07539e-04\tAbsError: 8.33548e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38980e-04\tAbsError: 1.63690e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.26280e-07\tAbsError: 1.48379e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.48966e-04\tAbsError: 8.96566e+11\n", + " Region: \"zone_1\"\tRelError: 5.28566e-05\tAbsError: 1.37320e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.24660e-05\tAbsError: 1.35084e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.90631e-07\tAbsError: 1.35969e-04\n", + " Region: \"zone_3\"\tRelError: 3.96109e-04\tAbsError: 8.96566e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98545e-05\tAbsError: 2.13909e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.29182e-05\tAbsError: 6.82656e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02946e-04\tAbsError: 1.35679e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.90791e-07\tAbsError: 1.36028e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.31240e-04\tAbsError: 7.97937e+11\n", + " Region: \"zone_1\"\tRelError: 7.54533e-05\tAbsError: 1.27890e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.50894e-05\tAbsError: 1.20855e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.63943e-07\tAbsError: 1.26681e-04\n", + " Region: \"zone_3\"\tRelError: 3.55787e-04\tAbsError: 7.97937e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.38045e-05\tAbsError: 1.92064e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.48742e-05\tAbsError: 6.05872e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76744e-04\tAbsError: 1.21338e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.64089e-07\tAbsError: 1.26735e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.70737e-04\tAbsError: 1.21785e+11\n", + " Region: \"zone_1\"\tRelError: 2.65857e-05\tAbsError: 5.61935e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64241e-05\tAbsError: 7.54825e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61597e-07\tAbsError: 5.61181e-05\n", + " Region: \"zone_3\"\tRelError: 1.44151e-04\tAbsError: 1.21785e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.31951e-06\tAbsError: 8.52238e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.24759e-06\tAbsError: 3.65614e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27422e-04\tAbsError: 7.88477e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61597e-07\tAbsError: 5.61181e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.77308e-04\tAbsError: 1.25818e+11\n", + " Region: \"zone_1\"\tRelError: 2.79068e-05\tAbsError: 5.92346e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.77364e-05\tAbsError: 7.86787e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70346e-07\tAbsError: 5.91560e-05\n", + " Region: \"zone_3\"\tRelError: 1.49401e-04\tAbsError: 1.25818e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.46957e-06\tAbsError: 8.85315e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.39871e-06\tAbsError: 3.72862e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32362e-04\tAbsError: 8.21640e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70346e-07\tAbsError: 5.91560e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.64583e-04\tAbsError: 1.17941e+11\n", + " Region: \"zone_1\"\tRelError: 2.52141e-05\tAbsError: 5.07020e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.50683e-05\tAbsError: 7.21588e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45792e-07\tAbsError: 5.06299e-05\n", + " Region: \"zone_3\"\tRelError: 1.39369e-04\tAbsError: 1.17941e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.26647e-06\tAbsError: 8.14899e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.19254e-06\tAbsError: 3.64508e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22764e-04\tAbsError: 7.54100e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45792e-07\tAbsError: 5.06299e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.53826e-04\tAbsError: 1.09912e+11\n", + " Region: \"zone_1\"\tRelError: 2.29821e-05\tAbsError: 4.27473e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.28592e-05\tAbsError: 6.65170e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", + " Region: \"zone_3\"\tRelError: 1.30844e-04\tAbsError: 1.09912e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.01681e-06\tAbsError: 7.52234e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94349e-06\tAbsError: 3.46881e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14760e-04\tAbsError: 6.98367e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.64329e-04\tAbsError: 1.17757e+11\n", + " Region: \"zone_1\"\tRelError: 2.50373e-05\tAbsError: 4.84121e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.48981e-05\tAbsError: 7.17289e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39198e-07\tAbsError: 4.83403e-05\n", + " Region: \"zone_3\"\tRelError: 1.39291e-04\tAbsError: 1.17757e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.33650e-06\tAbsError: 8.08468e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.26154e-06\tAbsError: 3.69104e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22554e-04\tAbsError: 7.49738e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39198e-07\tAbsError: 4.83403e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.90390e-05\tAbsError: 4.90602e+10\n", + " Region: \"zone_1\"\tRelError: 5.41804e-06\tAbsError: 6.22537e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.40029e-06\tAbsError: 4.72424e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77494e-08\tAbsError: 6.17812e-06\n", + " Region: \"zone_3\"\tRelError: 3.36210e-05\tAbsError: 4.90602e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.73319e-06\tAbsError: 1.65926e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.70156e-06\tAbsError: 3.24676e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.61685e-05\tAbsError: 4.73196e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77577e-08\tAbsError: 6.18118e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:15\u001b[0m.\u001b[1;36m847\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:15\u001b[0m.\u001b[1;36m847\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.45999999999999996\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.06903e-05\tAbsError: 5.15663e+10\n", + " Region: \"zone_1\"\tRelError: 5.70157e-06\tAbsError: 6.43438e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.68323e-06\tAbsError: 4.97272e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83425e-08\tAbsError: 6.38465e-06\n", + " Region: \"zone_3\"\tRelError: 3.49887e-05\tAbsError: 5.15663e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.87284e-06\tAbsError: 1.72438e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.84060e-06\tAbsError: 3.43225e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.72569e-05\tAbsError: 4.97993e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83512e-08\tAbsError: 6.38778e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.50001e-05\tAbsError: 4.42708e+10\n", + " Region: \"zone_1\"\tRelError: 4.76850e-06\tAbsError: 6.11915e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.75104e-06\tAbsError: 4.26401e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74573e-08\tAbsError: 6.07651e-06\n", + " Region: \"zone_3\"\tRelError: 3.02316e-05\tAbsError: 4.42708e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.43399e-06\tAbsError: 1.50234e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.40416e-06\tAbsError: 2.92474e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.33760e-05\tAbsError: 4.27135e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74650e-08\tAbsError: 6.07937e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:16\u001b[0m.\u001b[1;36m086\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.475\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:16\u001b[0m.\u001b[1;36m094\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: 0.4375\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.84860e-05\tAbsError: 3.70987e+10\n", + " Region: \"zone_1\"\tRelError: 3.74711e-06\tAbsError: 5.87951e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.73032e-06\tAbsError: 3.58594e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67880e-08\tAbsError: 5.84365e-06\n", + " Region: \"zone_3\"\tRelError: 2.47389e-05\tAbsError: 3.70987e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96764e-06\tAbsError: 1.24118e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.94133e-06\tAbsError: 2.46869e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88131e-05\tAbsError: 3.59119e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67950e-08\tAbsError: 5.84625e-06\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.29104e-05\tAbsError: 4.21734e+10\n", + " Region: \"zone_1\"\tRelError: 4.44495e-06\tAbsError: 6.18426e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.42730e-06\tAbsError: 4.07074e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76498e-08\tAbsError: 6.14355e-06\n", + " Region: \"zone_3\"\tRelError: 2.84655e-05\tAbsError: 4.21734e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.29169e-06\tAbsError: 1.42178e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.26285e-06\tAbsError: 2.79556e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18933e-05\tAbsError: 4.07772e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76574e-08\tAbsError: 6.14636e-06\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:16\u001b[0m.\u001b[1;36m233\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: 0.4\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:16\u001b[0m.\u001b[1;36m337\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:16\u001b[0m.\u001b[1;36m337\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.43000000000000005\u001b[0m \n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "number of equations 31816\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.81358e+01\tAbsError: 9.89122e+15\n", + " Region: \"zone_1\"\tRelError: 3.64061e+01\tAbsError: 4.47753e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.64061e+01\tAbsError: 4.47728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.22055e-09\tAbsError: 2.50749e-06\n", + " Region: \"zone_3\"\tRelError: 1.72979e+00\tAbsError: 9.89122e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.00390e-01\tAbsError: 5.83984e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.00363e-01\tAbsError: 4.05139e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29036e-01\tAbsError: 4.47728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.22309e-09\tAbsError: 2.50831e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.24985e+01\tAbsError: 1.02989e+16\n", + " Region: \"zone_1\"\tRelError: 1.07491e+01\tAbsError: 4.56481e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07491e+01\tAbsError: 4.56455e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.61244e-09\tAbsError: 2.64356e-06\n", + " Region: \"zone_3\"\tRelError: 1.74934e+00\tAbsError: 1.02989e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.06833e-01\tAbsError: 6.07666e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.06804e-01\tAbsError: 4.22228e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35703e-01\tAbsError: 4.56455e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.61471e-09\tAbsError: 2.64428e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.06444e+00\tAbsError: 9.27893e+15\n", + " Region: \"zone_1\"\tRelError: 4.36525e+00\tAbsError: 4.34082e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.36525e+00\tAbsError: 4.34059e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.43922e-09\tAbsError: 2.23618e-06\n", + " Region: \"zone_3\"\tRelError: 1.69919e+00\tAbsError: 9.27893e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.89877e-01\tAbsError: 5.47844e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.89852e-01\tAbsError: 3.80049e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19466e-01\tAbsError: 4.34059e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.44131e-09\tAbsError: 2.23685e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.87618e+01\tAbsError: 8.25603e+15\n", + " Region: \"zone_1\"\tRelError: 2.71120e+01\tAbsError: 4.09561e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.71120e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.29384e-09\tAbsError: 1.83846e-06\n", + " Region: \"zone_3\"\tRelError: 1.64979e+00\tAbsError: 8.25603e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69658e-01\tAbsError: 4.86497e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69634e-01\tAbsError: 3.39106e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10500e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.29480e-09\tAbsError: 1.83875e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.99434e+00\tAbsError: 9.07460e+15\n", + " Region: \"zone_1\"\tRelError: 3.30452e+00\tAbsError: 4.29359e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.30452e+00\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.08442e-09\tAbsError: 2.11298e-06\n", + " Region: \"zone_3\"\tRelError: 1.68981e+00\tAbsError: 9.07460e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86122e-01\tAbsError: 5.35667e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.86097e-01\tAbsError: 3.71793e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17595e-01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.08597e-09\tAbsError: 2.11346e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.76698e+00\tAbsError: 6.05674e+14\n", + " Region: \"zone_1\"\tRelError: 1.76193e-01\tAbsError: 8.82156e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76041e-01\tAbsError: 3.52796e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52324e-04\tAbsError: 5.29360e-02\n", + " Region: \"zone_3\"\tRelError: 1.59079e+00\tAbsError: 6.05674e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.94698e-01\tAbsError: 3.52874e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.85858e-01\tAbsError: 2.52800e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10077e-01\tAbsError: 3.52799e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52324e-04\tAbsError: 5.29360e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.77155e+00\tAbsError: 7.60573e+14\n", + " Region: \"zone_1\"\tRelError: 1.51457e-01\tAbsError: 9.01901e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51302e-01\tAbsError: 3.63157e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55027e-04\tAbsError: 5.38744e-02\n", + " Region: \"zone_3\"\tRelError: 1.62010e+00\tAbsError: 7.60573e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.06073e-01\tAbsError: 4.40912e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.96799e-01\tAbsError: 3.19661e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17069e-01\tAbsError: 3.63160e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55027e-04\tAbsError: 5.38744e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.66739e+00\tAbsError: 5.06300e+14\n", + " Region: \"zone_1\"\tRelError: 1.22234e-01\tAbsError: 8.49170e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22087e-01\tAbsError: 3.36592e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47492e-04\tAbsError: 5.12578e-02\n", + " Region: \"zone_3\"\tRelError: 1.54515e+00\tAbsError: 5.06300e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.75921e-01\tAbsError: 3.27200e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.67567e-01\tAbsError: 1.79101e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01517e-01\tAbsError: 3.36595e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47492e-04\tAbsError: 5.12578e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.69855e+00\tAbsError: 3.40458e+14\n", + " Region: \"zone_1\"\tRelError: 2.34470e-01\tAbsError: 7.85796e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34332e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", + " Region: \"zone_3\"\tRelError: 1.46408e+00\tAbsError: 3.40458e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39247e-01\tAbsError: 2.37038e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.31799e-01\tAbsError: 1.03420e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.29010e-02\tAbsError: 3.07639e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.64725e+00\tAbsError: 4.74556e+14\n", + " Region: \"zone_1\"\tRelError: 1.16564e-01\tAbsError: 8.37432e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16418e-01\tAbsError: 3.31003e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45721e-04\tAbsError: 5.06428e-02\n", + " Region: \"zone_3\"\tRelError: 1.53069e+00\tAbsError: 4.74556e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.69093e-01\tAbsError: 3.14532e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.61063e-01\tAbsError: 1.60024e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00388e-01\tAbsError: 3.31007e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45721e-04\tAbsError: 5.06428e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.35255e+00\tAbsError: 3.63655e+14\n", + " Region: \"zone_1\"\tRelError: 1.97939e-01\tAbsError: 3.56019e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97911e-01\tAbsError: 2.56995e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.84934e-05\tAbsError: 9.90236e-03\n", + " Region: \"zone_3\"\tRelError: 1.15461e+00\tAbsError: 3.63655e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.30370e-01\tAbsError: 2.11310e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.26259e-01\tAbsError: 1.52345e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.79559e-02\tAbsError: 2.58613e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.84934e-05\tAbsError: 9.90236e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.33921e+00\tAbsError: 4.90102e+14\n", + " Region: \"zone_1\"\tRelError: 1.39048e-01\tAbsError: 3.67457e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39017e-01\tAbsError: 2.58798e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.12666e-05\tAbsError: 1.08660e-02\n", + " Region: \"zone_3\"\tRelError: 1.20016e+00\tAbsError: 4.90102e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.49633e-01\tAbsError: 2.77160e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.48210e-01\tAbsError: 2.12942e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02286e-01\tAbsError: 2.58607e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.12666e-05\tAbsError: 1.08660e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.16831e+00\tAbsError: 2.25997e+14\n", + " Region: \"zone_1\"\tRelError: 8.94403e-02\tAbsError: 3.44130e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.94155e-02\tAbsError: 2.57920e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.48059e-05\tAbsError: 8.62100e-03\n", + " Region: \"zone_3\"\tRelError: 1.07887e+00\tAbsError: 2.25997e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.99205e-01\tAbsError: 1.34698e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.88376e-01\tAbsError: 9.12987e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.12613e-02\tAbsError: 2.58613e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.48059e-05\tAbsError: 8.62100e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.13875e+00\tAbsError: 1.91429e+14\n", + " Region: \"zone_1\"\tRelError: 8.72362e-02\tAbsError: 3.41775e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.72123e-02\tAbsError: 2.58950e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.38317e-05\tAbsError: 8.28251e-03\n", + " Region: \"zone_3\"\tRelError: 1.05151e+00\tAbsError: 1.91429e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.88183e-01\tAbsError: 1.14582e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.74391e-01\tAbsError: 7.68472e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.89114e-02\tAbsError: 2.58546e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.38317e-05\tAbsError: 8.28251e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.10009e+00\tAbsError: 9.49766e+13\n", + " Region: \"zone_1\"\tRelError: 1.69910e-01\tAbsError: 3.26443e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69891e-01\tAbsError: 2.58991e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", + " Region: \"zone_3\"\tRelError: 9.30185e-01\tAbsError: 9.49766e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40985e-01\tAbsError: 5.67002e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.12174e-01\tAbsError: 3.82763e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.70066e-02\tAbsError: 2.58994e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.36061e-01\tAbsError: 1.72469e+14\n", + " Region: \"zone_1\"\tRelError: 4.75512e-02\tAbsError: 1.91624e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.75415e-02\tAbsError: 1.57808e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.74068e-06\tAbsError: 3.38161e-03\n", + " Region: \"zone_3\"\tRelError: 4.88510e-01\tAbsError: 1.72469e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.93580e-01\tAbsError: 7.57065e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.46679e-01\tAbsError: 9.67627e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.82412e-02\tAbsError: 1.57809e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.74424e-06\tAbsError: 3.38291e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.97909e-01\tAbsError: 2.52002e+14\n", + " Region: \"zone_1\"\tRelError: 5.51282e-02\tAbsError: 2.15770e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.51170e-02\tAbsError: 1.76838e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12142e-05\tAbsError: 3.89314e-03\n", + " Region: \"zone_3\"\tRelError: 5.42781e-01\tAbsError: 2.52002e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.19147e-01\tAbsError: 1.09256e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.67592e-01\tAbsError: 1.42746e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.60306e-02\tAbsError: 1.76839e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12182e-05\tAbsError: 3.89457e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.43699e-01\tAbsError: 9.37478e+13\n", + " Region: \"zone_1\"\tRelError: 3.74442e-02\tAbsError: 1.59997e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74359e-02\tAbsError: 1.31068e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.33312e-06\tAbsError: 2.89293e-03\n", + " Region: \"zone_3\"\tRelError: 4.06255e-01\tAbsError: 9.37478e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.55206e-01\tAbsError: 4.13823e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13134e-01\tAbsError: 5.23655e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.79070e-02\tAbsError: 1.31068e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.33742e-06\tAbsError: 2.89445e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.13297e-01\tAbsError: 7.52929e+13\n", + " Region: \"zone_1\"\tRelError: 3.44170e-02\tAbsError: 1.51248e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.44088e-02\tAbsError: 1.22657e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.23601e-06\tAbsError: 2.85918e-03\n", + " Region: \"zone_3\"\tRelError: 3.78880e-01\tAbsError: 7.52929e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.42275e-01\tAbsError: 3.28684e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.01785e-01\tAbsError: 4.24245e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.48113e-02\tAbsError: 1.22657e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.23601e-06\tAbsError: 2.85918e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.56252e-01\tAbsError: 3.42527e+13\n", + " Region: \"zone_1\"\tRelError: 6.41646e-02\tAbsError: 1.11813e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.41588e-02\tAbsError: 9.16555e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.79958e-06\tAbsError: 2.01571e-03\n", + " Region: \"zone_3\"\tRelError: 2.92088e-01\tAbsError: 3.42527e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07223e-01\tAbsError: 1.60452e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.07953e-02\tAbsError: 1.82076e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.40630e-02\tAbsError: 9.16559e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.80279e-06\tAbsError: 2.01683e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.27933e-01\tAbsError: 3.77067e+13\n", + " Region: \"zone_1\"\tRelError: 8.63730e-03\tAbsError: 3.44155e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.62803e-03\tAbsError: 2.24917e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.26403e-06\tAbsError: 3.21663e-03\n", + " Region: \"zone_3\"\tRelError: 1.19296e-01\tAbsError: 3.77067e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01004e-01\tAbsError: 1.86096e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.59887e-02\tAbsError: 1.90970e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29412e-03\tAbsError: 2.44371e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.26403e-06\tAbsError: 3.21663e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.52868e-01\tAbsError: 5.88500e+13\n", + " Region: \"zone_1\"\tRelError: 9.73630e-03\tAbsError: 4.53225e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.72423e-03\tAbsError: 3.38686e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20778e-05\tAbsError: 4.19356e-03\n", + " Region: \"zone_3\"\tRelError: 1.43131e-01\tAbsError: 5.88500e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16572e-01\tAbsError: 2.83993e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.41855e-02\tAbsError: 3.04506e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36161e-03\tAbsError: 3.65636e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20778e-05\tAbsError: 4.19356e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.29176e-02\tAbsError: 1.87255e+13\n", + " Region: \"zone_1\"\tRelError: 2.42581e-03\tAbsError: 2.43303e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41913e-03\tAbsError: 1.13406e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.68051e-06\tAbsError: 2.31963e-03\n", + " Region: \"zone_3\"\tRelError: 9.04918e-02\tAbsError: 1.87255e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.06428e-02\tAbsError: 9.51123e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.64781e-03\tAbsError: 9.21422e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19457e-03\tAbsError: 1.25751e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.68051e-06\tAbsError: 2.31963e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.59960e-02\tAbsError: 3.73217e+12\n", + " Region: \"zone_1\"\tRelError: 7.31305e-03\tAbsError: 2.21475e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.30674e-03\tAbsError: 2.57182e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", + " Region: \"zone_3\"\tRelError: 5.86829e-02\tAbsError: 3.73217e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.62142e-02\tAbsError: 2.07187e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.09163e-04\tAbsError: 1.66031e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65329e-03\tAbsError: 2.69578e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.55296e-02\tAbsError: 1.46785e+13\n", + " Region: \"zone_1\"\tRelError: 2.49644e-03\tAbsError: 2.18616e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49041e-03\tAbsError: 9.01307e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.03652e-06\tAbsError: 2.09603e-03\n", + " Region: \"zone_3\"\tRelError: 8.30332e-02\tAbsError: 1.46785e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.51171e-02\tAbsError: 7.64842e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.70344e-03\tAbsError: 7.03012e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20658e-03\tAbsError: 1.00679e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.03652e-06\tAbsError: 2.09603e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.46136e-03\tAbsError: 1.53101e+12\n", + " Region: \"zone_1\"\tRelError: 1.66986e-04\tAbsError: 2.22118e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66353e-04\tAbsError: 2.21820e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.32759e-07\tAbsError: 2.19900e-04\n", + " Region: \"zone_3\"\tRelError: 1.29437e-03\tAbsError: 1.53101e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.36978e-04\tAbsError: 4.54909e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.42881e-04\tAbsError: 1.07610e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.13878e-04\tAbsError: 2.48873e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.32759e-07\tAbsError: 2.19900e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.18982e-03\tAbsError: 2.05271e+12\n", + " Region: \"zone_1\"\tRelError: 2.63923e-04\tAbsError: 2.92360e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.63092e-04\tAbsError: 3.76510e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.30441e-07\tAbsError: 2.88595e-04\n", + " Region: \"zone_3\"\tRelError: 1.92590e-03\tAbsError: 2.05271e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.21596e-04\tAbsError: 6.82791e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.91395e-04\tAbsError: 1.36992e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11208e-03\tAbsError: 4.22049e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.30441e-07\tAbsError: 2.88595e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.17310e-04\tAbsError: 1.08380e+12\n", + " Region: \"zone_1\"\tRelError: 8.80491e-05\tAbsError: 1.60948e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.75900e-05\tAbsError: 1.40037e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.59060e-07\tAbsError: 1.59547e-04\n", + " Region: \"zone_3\"\tRelError: 7.29260e-04\tAbsError: 1.08380e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.40460e-04\tAbsError: 2.80505e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02770e-04\tAbsError: 8.03299e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85571e-04\tAbsError: 1.45875e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.59060e-07\tAbsError: 1.59547e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.58436e-04\tAbsError: 9.76197e+11\n", + " Region: \"zone_1\"\tRelError: 6.87963e-05\tAbsError: 1.52764e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.83606e-05\tAbsError: 1.30863e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.35775e-07\tAbsError: 1.51456e-04\n", + " Region: \"zone_3\"\tRelError: 5.89639e-04\tAbsError: 9.76197e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.93148e-04\tAbsError: 2.43686e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.21484e-05\tAbsError: 7.32511e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.03907e-04\tAbsError: 1.33351e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.35775e-07\tAbsError: 1.51456e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.14034e-04\tAbsError: 1.03618e+12\n", + " Region: \"zone_1\"\tRelError: 1.43803e-04\tAbsError: 7.79056e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43584e-04\tAbsError: 1.54074e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19396e-07\tAbsError: 7.63649e-05\n", + " Region: \"zone_3\"\tRelError: 6.70231e-04\tAbsError: 1.03618e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.21829e-04\tAbsError: 2.70793e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.05108e-04\tAbsError: 7.65387e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.43074e-04\tAbsError: 1.54210e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19498e-07\tAbsError: 7.64015e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.91105e-04\tAbsError: 1.53176e+11\n", + " Region: \"zone_1\"\tRelError: 3.27136e-05\tAbsError: 9.22669e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.24482e-05\tAbsError: 1.08446e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.65413e-07\tAbsError: 9.21585e-05\n", + " Region: \"zone_3\"\tRelError: 1.58391e-04\tAbsError: 1.53176e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05709e-05\tAbsError: 1.03501e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04377e-05\tAbsError: 4.96748e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37117e-04\tAbsError: 1.13469e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.65524e-07\tAbsError: 9.21983e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.17167e-04\tAbsError: 1.84585e+11\n", + " Region: \"zone_1\"\tRelError: 3.72870e-05\tAbsError: 1.24890e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.69277e-05\tAbsError: 1.34606e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.59293e-07\tAbsError: 1.24755e-04\n", + " Region: \"zone_3\"\tRelError: 1.79880e-04\tAbsError: 1.84585e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31660e-05\tAbsError: 1.23826e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29782e-05\tAbsError: 6.07589e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53376e-04\tAbsError: 1.40980e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.59336e-07\tAbsError: 1.24771e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.65553e-04\tAbsError: 1.24515e+11\n", + " Region: \"zone_1\"\tRelError: 2.80671e-05\tAbsError: 6.32032e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78853e-05\tAbsError: 8.44023e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.81769e-07\tAbsError: 6.31188e-05\n", + " Region: \"zone_3\"\tRelError: 1.37486e-04\tAbsError: 1.24515e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.24823e-06\tAbsError: 8.47993e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.15629e-06\tAbsError: 3.97152e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20900e-04\tAbsError: 8.81984e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.81805e-07\tAbsError: 6.31296e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.65798e-04\tAbsError: 1.22174e+11\n", + " Region: \"zone_1\"\tRelError: 2.79805e-05\tAbsError: 5.56854e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78204e-05\tAbsError: 8.16520e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60127e-07\tAbsError: 5.56037e-05\n", + " Region: \"zone_3\"\tRelError: 1.37818e-04\tAbsError: 1.22174e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.04045e-06\tAbsError: 8.28593e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.95339e-06\tAbsError: 3.93149e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21664e-04\tAbsError: 8.53009e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60129e-07\tAbsError: 5.56037e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.61312e-05\tAbsError: 5.74046e+10\n", + " Region: \"zone_1\"\tRelError: 1.61849e-05\tAbsError: 6.45313e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59991e-05\tAbsError: 3.79845e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85726e-07\tAbsError: 6.44934e-05\n", + " Region: \"zone_3\"\tRelError: 5.99464e-05\tAbsError: 5.74046e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.77906e-06\tAbsError: 4.68633e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.20461e-06\tAbsError: 1.05413e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.27769e-05\tAbsError: 3.95532e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85828e-07\tAbsError: 6.45281e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:26\u001b[0m.\u001b[1;36m614\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: 0.5\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 8.71599e-05\tAbsError: 8.63311e+10\n", + " Region: \"zone_1\"\tRelError: 1.45239e-05\tAbsError: 6.32337e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45059e-05\tAbsError: 6.52346e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79809e-08\tAbsError: 6.25813e-06\n", + " Region: \"zone_3\"\tRelError: 7.26359e-05\tAbsError: 8.63311e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.55694e-06\tAbsError: 3.72560e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.50849e-06\tAbsError: 4.90752e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.15525e-05\tAbsError: 6.62280e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79882e-08\tAbsError: 6.26082e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:27\u001b[0m.\u001b[1;36m227\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.58\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.28225e-04\tAbsError: 1.19419e+11\n", + " Region: \"zone_1\"\tRelError: 2.19087e-05\tAbsError: 6.73240e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18896e-05\tAbsError: 8.49137e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.90998e-08\tAbsError: 6.64748e-06\n", + " Region: \"zone_3\"\tRelError: 1.06317e-04\tAbsError: 1.19419e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.49812e-06\tAbsError: 5.46310e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.43237e-06\tAbsError: 6.47876e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.13670e-05\tAbsError: 8.65435e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91076e-08\tAbsError: 6.65030e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.21903e-05\tAbsError: 5.72389e+10\n", + " Region: \"zone_1\"\tRelError: 8.34176e-06\tAbsError: 5.86080e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.32506e-06\tAbsError: 4.71382e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67033e-08\tAbsError: 5.81366e-06\n", + " Region: \"zone_3\"\tRelError: 4.38485e-05\tAbsError: 5.72389e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.81863e-06\tAbsError: 2.24731e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.78561e-06\tAbsError: 3.47657e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.62276e-05\tAbsError: 4.76030e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67103e-08\tAbsError: 5.81619e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.29840e-05\tAbsError: 4.97114e+10\n", + " Region: \"zone_1\"\tRelError: 6.74775e-06\tAbsError: 6.07457e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.73042e-06\tAbsError: 4.22286e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73315e-08\tAbsError: 6.03234e-06\n", + " Region: \"zone_3\"\tRelError: 3.62362e-05\tAbsError: 4.97114e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.35448e-06\tAbsError: 1.86949e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.32535e-06\tAbsError: 3.10165e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.95390e-05\tAbsError: 4.25647e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73388e-08\tAbsError: 6.03496e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:27\u001b[0m.\u001b[1;36m903\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: 0.55\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:27\u001b[0m.\u001b[1;36m949\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: 0.54\u001b[0m \n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.60199e+01\tAbsError: 8.22903e+15\n", + " Region: \"zone_1\"\tRelError: 3.43433e+01\tAbsError: 4.09555e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.43433e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.48443e-09\tAbsError: 1.21289e-06\n", + " Region: \"zone_3\"\tRelError: 1.67662e+00\tAbsError: 8.22903e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.78919e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.43984e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37338e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.48691e-09\tAbsError: 1.21378e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.61978e+01\tAbsError: 9.96785e+15\n", + " Region: \"zone_1\"\tRelError: 4.44199e+01\tAbsError: 4.47776e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44199e+01\tAbsError: 4.47728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38243e-08\tAbsError: 4.80419e-06\n", + " Region: \"zone_3\"\tRelError: 1.77789e+00\tAbsError: 9.96785e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.00373e-01\tAbsError: 5.53494e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.00283e-01\tAbsError: 4.43291e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77231e-01\tAbsError: 4.47728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38259e-08\tAbsError: 4.80483e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.66418e-06\tAbsError: 5.37987e+09\n", + " Region: \"zone_1\"\tRelError: 8.01887e-07\tAbsError: 6.86973e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.82129e-07\tAbsError: 3.38380e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.97586e-08\tAbsError: 6.86635e-06\n", + " Region: \"zone_3\"\tRelError: 3.86229e-06\tAbsError: 5.37987e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.38045e-07\tAbsError: 4.16158e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.79512e-07\tAbsError: 1.21829e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.22497e-06\tAbsError: 3.52801e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.97625e-08\tAbsError: 6.86780e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:29\u001b[0m.\u001b[1;36m025\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.6\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.79935e+00\tAbsError: 9.07065e+15\n", + " Region: \"zone_1\"\tRelError: 6.07018e+00\tAbsError: 4.29363e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.07018e+00\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.28179e-09\tAbsError: 2.52849e-06\n", + " Region: \"zone_3\"\tRelError: 1.72916e+00\tAbsError: 9.07065e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86123e-01\tAbsError: 5.17830e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.86053e-01\tAbsError: 3.89234e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56989e-01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.28214e-09\tAbsError: 2.52864e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.34489e+01\tAbsError: 9.28815e+15\n", + " Region: \"zone_1\"\tRelError: 1.17073e+01\tAbsError: 4.34089e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17073e+01\tAbsError: 4.34059e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.66604e-09\tAbsError: 3.01167e-06\n", + " Region: \"zone_3\"\tRelError: 1.74167e+00\tAbsError: 9.28815e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.89875e-01\tAbsError: 5.26960e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.89800e-01\tAbsError: 4.01855e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61991e-01\tAbsError: 4.34059e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.66604e-09\tAbsError: 3.01169e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.73485e+00\tAbsError: 1.08973e+15\n", + " Region: \"zone_1\"\tRelError: 2.25350e+00\tAbsError: 6.85700e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25339e+00\tAbsError: 3.07635e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", + " Region: \"zone_3\"\tRelError: 1.48136e+00\tAbsError: 1.08973e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41054e-01\tAbsError: 6.25022e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.24005e-01\tAbsError: 4.64711e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16189e-01\tAbsError: 3.07637e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 9.49120e+00\tAbsError: 3.87577e+15\n", + " Region: \"zone_1\"\tRelError: 7.88160e+00\tAbsError: 7.65185e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.88148e+00\tAbsError: 3.52795e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18679e-04\tAbsError: 4.12390e-02\n", + " Region: \"zone_3\"\tRelError: 1.60960e+00\tAbsError: 3.87577e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.94752e-01\tAbsError: 1.96214e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.70036e-01\tAbsError: 1.91363e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44693e-01\tAbsError: 3.52796e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18679e-04\tAbsError: 4.12390e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.52079e+01\tAbsError: 1.04499e+16\n", + " Region: \"zone_1\"\tRelError: 2.34063e+01\tAbsError: 4.56456e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34063e+01\tAbsError: 4.56455e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.65927e-10\tAbsError: 1.27309e-07\n", + " Region: \"zone_3\"\tRelError: 1.80158e+00\tAbsError: 1.04499e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.06801e-01\tAbsError: 5.71038e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.06701e-01\tAbsError: 4.73948e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88074e-01\tAbsError: 4.56455e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.66097e-10\tAbsError: 1.27368e-07\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.87726e+00\tAbsError: 2.07784e+15\n", + " Region: \"zone_1\"\tRelError: 3.30726e-01\tAbsError: 7.19464e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.30614e-01\tAbsError: 3.31002e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11788e-04\tAbsError: 3.88462e-02\n", + " Region: \"zone_3\"\tRelError: 1.54653e+00\tAbsError: 2.07784e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.70151e-01\tAbsError: 1.12779e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.49677e-01\tAbsError: 9.50051e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26591e-01\tAbsError: 3.31003e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11788e-04\tAbsError: 3.88462e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.06546e+00\tAbsError: 2.42910e+15\n", + " Region: \"zone_1\"\tRelError: 5.04047e-01\tAbsError: 7.29119e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.03934e-01\tAbsError: 3.36591e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12959e-04\tAbsError: 3.92528e-02\n", + " Region: \"zone_3\"\tRelError: 1.56142e+00\tAbsError: 2.42910e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.76732e-01\tAbsError: 1.29636e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.55184e-01\tAbsError: 1.13274e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29387e-01\tAbsError: 3.36592e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12959e-04\tAbsError: 3.92528e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.38677e+00\tAbsError: 6.38966e+14\n", + " Region: \"zone_1\"\tRelError: 4.51470e-01\tAbsError: 3.37904e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.51448e-01\tAbsError: 2.58448e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", + " Region: \"zone_3\"\tRelError: 9.35299e-01\tAbsError: 6.38966e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42607e-01\tAbsError: 3.02038e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.95795e-01\tAbsError: 3.36928e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.68743e-02\tAbsError: 2.57679e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.27685e+00\tAbsError: 3.22805e+15\n", + " Region: \"zone_1\"\tRelError: 1.23665e-01\tAbsError: 3.28269e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23644e-01\tAbsError: 2.57799e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03021e-05\tAbsError: 7.04693e-03\n", + " Region: \"zone_3\"\tRelError: 1.15319e+00\tAbsError: 3.22805e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.31406e-01\tAbsError: 1.41952e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.92785e-01\tAbsError: 1.80854e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28975e-01\tAbsError: 2.50223e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03132e-05\tAbsError: 7.05082e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.97416e+01\tAbsError: 5.30793e+15\n", + " Region: \"zone_1\"\tRelError: 1.81011e+01\tAbsError: 8.03359e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81009e+01\tAbsError: 3.63155e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26686e-04\tAbsError: 4.40203e-02\n", + " Region: \"zone_3\"\tRelError: 1.64056e+00\tAbsError: 5.30793e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.05436e-01\tAbsError: 2.59655e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.79266e-01\tAbsError: 2.71137e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55737e-01\tAbsError: 3.63156e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26686e-04\tAbsError: 4.40203e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.15795e+00\tAbsError: 1.43317e+15\n", + " Region: \"zone_1\"\tRelError: 1.12652e-01\tAbsError: 3.52450e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12625e-01\tAbsError: 2.58896e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69531e-05\tAbsError: 9.35535e-03\n", + " Region: \"zone_3\"\tRelError: 1.04530e+00\tAbsError: 1.43317e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89809e-01\tAbsError: 6.27661e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.39858e-01\tAbsError: 8.05511e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15604e-01\tAbsError: 2.58543e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69724e-05\tAbsError: 9.36224e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.19014e+00\tAbsError: 1.77232e+15\n", + " Region: \"zone_1\"\tRelError: 1.16406e-01\tAbsError: 3.58693e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16377e-01\tAbsError: 2.57454e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.91673e-05\tAbsError: 1.01239e-02\n", + " Region: \"zone_3\"\tRelError: 1.07373e+00\tAbsError: 1.77232e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.00688e-01\tAbsError: 7.71149e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.53283e-01\tAbsError: 1.00118e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19733e-01\tAbsError: 2.58503e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.91886e-05\tAbsError: 1.01314e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.41554e-01\tAbsError: 2.20715e+14\n", + " Region: \"zone_1\"\tRelError: 2.89595e-02\tAbsError: 1.67352e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.89377e-02\tAbsError: 9.16565e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18085e-05\tAbsError: 7.56954e-03\n", + " Region: \"zone_3\"\tRelError: 3.12594e-01\tAbsError: 2.20715e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94155e-01\tAbsError: 1.01533e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.87246e-02\tAbsError: 1.19182e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96932e-02\tAbsError: 9.16570e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18152e-05\tAbsError: 7.57200e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.03339e+00\tAbsError: 1.35100e+15\n", + " Region: \"zone_1\"\tRelError: 4.86638e-01\tAbsError: 4.06166e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.86567e-01\tAbsError: 1.57812e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.15551e-05\tAbsError: 2.48354e-02\n", + " Region: \"zone_3\"\tRelError: 5.46754e-01\tAbsError: 1.35100e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.94312e-01\tAbsError: 6.70250e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.91899e-01\tAbsError: 6.80751e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.04718e-02\tAbsError: 1.57813e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.15962e-05\tAbsError: 2.48500e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.90718e+00\tAbsError: 4.57799e+15\n", + " Region: \"zone_1\"\tRelError: 6.98987e-01\tAbsError: 3.15756e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.98970e-01\tAbsError: 2.58187e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65873e-05\tAbsError: 5.75692e-03\n", + " Region: \"zone_3\"\tRelError: 1.20819e+00\tAbsError: 4.57799e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.50404e-01\tAbsError: 2.10275e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.16940e-01\tAbsError: 2.47524e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40833e-01\tAbsError: 2.57339e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65919e-05\tAbsError: 5.75848e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.66101e-01\tAbsError: 5.71776e+14\n", + " Region: \"zone_1\"\tRelError: 4.21342e-02\tAbsError: 2.70003e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.20918e-02\tAbsError: 1.22659e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.24522e-05\tAbsError: 1.47344e-02\n", + " Region: \"zone_3\"\tRelError: 4.23967e-01\tAbsError: 5.71776e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.40635e-01\tAbsError: 2.83777e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.40006e-01\tAbsError: 2.87999e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.32840e-02\tAbsError: 1.22660e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.24816e-05\tAbsError: 1.47449e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.00471e-01\tAbsError: 7.18290e+14\n", + " Region: \"zone_1\"\tRelError: 4.58077e-02\tAbsError: 3.08706e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.57565e-02\tAbsError: 1.31071e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.11797e-05\tAbsError: 1.77635e-02\n", + " Region: \"zone_3\"\tRelError: 4.54664e-01\tAbsError: 7.18290e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.54015e-01\tAbsError: 3.59442e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.53250e-01\tAbsError: 3.58848e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.73475e-02\tAbsError: 1.31072e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.12103e-05\tAbsError: 1.77744e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.19808e-02\tAbsError: 3.06344e+13\n", + " Region: \"zone_1\"\tRelError: 2.04251e-02\tAbsError: 4.10278e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04136e-02\tAbsError: 1.00349e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", + " Region: \"zone_3\"\tRelError: 6.15557e-02\tAbsError: 3.06344e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38926e-02\tAbsError: 1.71938e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.73234e-03\tAbsError: 1.34406e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.91920e-03\tAbsError: 1.01109e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.77064e-01\tAbsError: 2.74208e+14\n", + " Region: \"zone_1\"\tRelError: 1.45533e-01\tAbsError: 1.86642e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45481e-01\tAbsError: 4.78882e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.23812e-05\tAbsError: 1.81853e-02\n", + " Region: \"zone_3\"\tRelError: 1.31531e-01\tAbsError: 2.74208e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.43134e-02\tAbsError: 1.47586e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.67438e-02\tAbsError: 1.26622e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04217e-02\tAbsError: 4.89202e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.23812e-05\tAbsError: 1.81853e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.08267e+00\tAbsError: 2.05555e+15\n", + " Region: \"zone_1\"\tRelError: 4.74733e-01\tAbsError: 5.07265e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.74638e-01\tAbsError: 1.76843e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.51006e-05\tAbsError: 3.30422e-02\n", + " Region: \"zone_3\"\tRelError: 6.07933e-01\tAbsError: 2.05555e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.19412e-01\tAbsError: 1.01229e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.17373e-01\tAbsError: 1.04326e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.10530e-02\tAbsError: 1.76844e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.51581e-05\tAbsError: 3.30598e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.84053e-02\tAbsError: 1.08690e+14\n", + " Region: \"zone_1\"\tRelError: 8.68078e-03\tAbsError: 8.41083e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.65731e-03\tAbsError: 2.61591e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.34713e-05\tAbsError: 8.14923e-03\n", + " Region: \"zone_3\"\tRelError: 8.97245e-02\tAbsError: 1.08690e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.02382e-02\tAbsError: 6.26697e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.25943e-02\tAbsError: 4.60204e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.86852e-03\tAbsError: 2.62736e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.34713e-05\tAbsError: 8.14923e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.53920e-03\tAbsError: 1.84314e+12\n", + " Region: \"zone_1\"\tRelError: 2.29752e-04\tAbsError: 2.41443e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29064e-04\tAbsError: 2.20702e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", + " Region: \"zone_3\"\tRelError: 1.30944e-03\tAbsError: 1.84314e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11485e-04\tAbsError: 5.81096e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.63190e-04\tAbsError: 1.26205e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.34079e-04\tAbsError: 2.25011e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.14444e-01\tAbsError: 1.39799e+14\n", + " Region: \"zone_1\"\tRelError: 1.51601e-02\tAbsError: 1.02733e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51314e-02\tAbsError: 3.09160e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.86990e-05\tAbsError: 9.96415e-03\n", + " Region: \"zone_3\"\tRelError: 9.92839e-02\tAbsError: 1.39799e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.56218e-02\tAbsError: 7.87755e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.55448e-02\tAbsError: 6.10233e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.08856e-03\tAbsError: 3.11493e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.86990e-05\tAbsError: 9.96415e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.30863e-02\tAbsError: 9.34886e+12\n", + " Region: \"zone_1\"\tRelError: 5.42500e-03\tAbsError: 1.09909e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.42186e-03\tAbsError: 8.38632e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.13916e-06\tAbsError: 1.09070e-03\n", + " Region: \"zone_3\"\tRelError: 7.66127e-03\tAbsError: 9.34886e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.03173e-04\tAbsError: 3.67297e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.55630e-04\tAbsError: 5.67589e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.09933e-03\tAbsError: 8.47585e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.13916e-06\tAbsError: 1.09070e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.21573e-01\tAbsError: 4.67958e+14\n", + " Region: \"zone_1\"\tRelError: 1.62369e-01\tAbsError: 2.82899e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62289e-01\tAbsError: 6.12610e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.97267e-05\tAbsError: 2.76773e-02\n", + " Region: \"zone_3\"\tRelError: 1.59204e-01\tAbsError: 4.67958e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10876e-01\tAbsError: 2.44176e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.52599e-02\tAbsError: 2.23782e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29883e-02\tAbsError: 6.28778e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.97267e-05\tAbsError: 2.76773e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.70865e-03\tAbsError: 3.95368e+12\n", + " Region: \"zone_1\"\tRelError: 5.98822e-04\tAbsError: 5.60907e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.97219e-04\tAbsError: 3.89502e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60297e-06\tAbsError: 5.57012e-04\n", + " Region: \"zone_3\"\tRelError: 3.10982e-03\tAbsError: 3.95368e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.50396e-04\tAbsError: 1.41982e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.19860e-04\tAbsError: 2.53386e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.33796e-03\tAbsError: 3.96587e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60304e-06\tAbsError: 5.57046e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.63142e-03\tAbsError: 4.86609e+12\n", + " Region: \"zone_1\"\tRelError: 7.61282e-04\tAbsError: 6.97446e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.59288e-04\tAbsError: 4.58618e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99396e-06\tAbsError: 6.92860e-04\n", + " Region: \"zone_3\"\tRelError: 3.87013e-03\tAbsError: 4.86609e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.40083e-04\tAbsError: 1.77391e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.84262e-04\tAbsError: 3.09218e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.94379e-03\tAbsError: 4.70350e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99396e-06\tAbsError: 6.92860e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.51045e-04\tAbsError: 2.02519e+11\n", + " Region: \"zone_1\"\tRelError: 4.54891e-05\tAbsError: 1.12868e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.51644e-05\tAbsError: 1.25671e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.24705e-07\tAbsError: 1.12743e-04\n", + " Region: \"zone_3\"\tRelError: 2.05556e-04\tAbsError: 2.02519e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12163e-05\tAbsError: 1.36505e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10724e-05\tAbsError: 6.60139e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82943e-04\tAbsError: 1.30848e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.24777e-07\tAbsError: 1.12769e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.18680e-03\tAbsError: 7.18169e+11\n", + " Region: \"zone_1\"\tRelError: 5.59334e-04\tAbsError: 5.55817e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.57736e-04\tAbsError: 4.25373e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59852e-06\tAbsError: 5.55391e-04\n", + " Region: \"zone_3\"\tRelError: 6.27464e-04\tAbsError: 7.18169e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.03657e-05\tAbsError: 4.82924e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.86476e-05\tAbsError: 2.35246e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.46853e-04\tAbsError: 4.40551e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59852e-06\tAbsError: 5.55401e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.47140e-02\tAbsError: 1.50803e+13\n", + " Region: \"zone_1\"\tRelError: 1.27460e-02\tAbsError: 1.51578e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27417e-02\tAbsError: 1.27789e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.32614e-06\tAbsError: 1.50300e-03\n", + " Region: \"zone_3\"\tRelError: 1.19680e-02\tAbsError: 1.50803e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28353e-03\tAbsError: 6.44204e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.49281e-04\tAbsError: 8.63829e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.73086e-03\tAbsError: 1.29461e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.32614e-06\tAbsError: 1.50300e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 5.03905e-04\tAbsError: 4.29222e+11\n", + " Region: \"zone_1\"\tRelError: 9.36879e-05\tAbsError: 2.36804e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.30066e-05\tAbsError: 2.54166e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.81308e-07\tAbsError: 2.36550e-04\n", + " Region: \"zone_3\"\tRelError: 4.10217e-04\tAbsError: 4.29222e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.41988e-05\tAbsError: 2.77763e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.38677e-05\tAbsError: 1.51459e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.61470e-04\tAbsError: 2.67086e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.81308e-07\tAbsError: 2.36550e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.09745e-04\tAbsError: 5.21468e+11\n", + " Region: \"zone_1\"\tRelError: 1.14300e-04\tAbsError: 2.90084e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13465e-04\tAbsError: 3.07455e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.34625e-07\tAbsError: 2.89777e-04\n", + " Region: \"zone_3\"\tRelError: 4.95445e-04\tAbsError: 5.21468e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.92372e-05\tAbsError: 3.37309e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.88204e-05\tAbsError: 1.84159e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.36553e-04\tAbsError: 3.22181e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.34625e-07\tAbsError: 2.89777e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.09882e-04\tAbsError: 1.05387e+11\n", + " Region: \"zone_1\"\tRelError: 1.91896e-05\tAbsError: 8.11152e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91665e-05\tAbsError: 7.26801e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.30974e-08\tAbsError: 8.03884e-06\n", + " Region: \"zone_3\"\tRelError: 9.06925e-05\tAbsError: 1.05387e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41210e-06\tAbsError: 4.74044e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.36012e-06\tAbsError: 5.79823e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.78972e-05\tAbsError: 7.44246e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.31071e-08\tAbsError: 8.04242e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 9.89150e-04\tAbsError: 5.35964e+11\n", + " Region: \"zone_1\"\tRelError: 4.72333e-04\tAbsError: 1.96224e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.72277e-04\tAbsError: 2.88087e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.55580e-08\tAbsError: 1.93343e-05\n", + " Region: \"zone_3\"\tRelError: 5.16817e-04\tAbsError: 5.35964e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.78052e-05\tAbsError: 2.68732e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.76635e-05\tAbsError: 2.67232e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.61293e-04\tAbsError: 2.97401e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.55808e-08\tAbsError: 1.93427e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.80995e-03\tAbsError: 9.00716e+11\n", + " Region: \"zone_1\"\tRelError: 1.05911e-03\tAbsError: 8.52183e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05666e-03\tAbsError: 5.36776e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45139e-06\tAbsError: 8.51646e-04\n", + " Region: \"zone_3\"\tRelError: 7.50839e-04\tAbsError: 9.00716e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.26828e-05\tAbsError: 6.33818e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.67143e-05\tAbsError: 2.66898e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.48991e-04\tAbsError: 5.58586e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45150e-06\tAbsError: 8.51699e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.52598e-04\tAbsError: 2.26713e+11\n", + " Region: \"zone_1\"\tRelError: 4.63661e-05\tAbsError: 1.62759e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.63197e-05\tAbsError: 1.37060e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.63731e-08\tAbsError: 1.61389e-05\n", + " Region: \"zone_3\"\tRelError: 2.06232e-04\tAbsError: 2.26713e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28007e-05\tAbsError: 1.09151e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.27071e-05\tAbsError: 1.17562e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80678e-04\tAbsError: 1.41716e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.63910e-08\tAbsError: 1.61454e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 7.21635e-06\tAbsError: 6.66071e+09\n", + " Region: \"zone_1\"\tRelError: 1.30608e-06\tAbsError: 5.92265e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28905e-06\tAbsError: 4.03393e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70320e-08\tAbsError: 5.91862e-06\n", + " Region: \"zone_3\"\tRelError: 5.91027e-06\tAbsError: 6.66071e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61854e-07\tAbsError: 4.98334e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.27195e-07\tAbsError: 1.67738e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.20418e-06\tAbsError: 4.19235e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70346e-08\tAbsError: 5.91965e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.14039e-04\tAbsError: 2.78819e+11\n", + " Region: \"zone_1\"\tRelError: 5.82968e-05\tAbsError: 1.95922e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.82410e-05\tAbsError: 1.63517e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.58267e-08\tAbsError: 1.94287e-05\n", + " Region: \"zone_3\"\tRelError: 2.55743e-04\tAbsError: 2.78819e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54293e-05\tAbsError: 1.35487e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.53221e-05\tAbsError: 1.43332e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24935e-04\tAbsError: 1.69505e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.58486e-08\tAbsError: 1.94366e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.51031e-06\tAbsError: 1.52707e+10\n", + " Region: \"zone_1\"\tRelError: 1.92750e-06\tAbsError: 3.15987e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83658e-06\tAbsError: 7.53819e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.09197e-08\tAbsError: 3.15911e-05\n", + " Region: \"zone_3\"\tRelError: 4.58280e-06\tAbsError: 1.52707e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.43367e-07\tAbsError: 1.25040e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.52456e-07\tAbsError: 2.76660e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.79602e-06\tAbsError: 7.83943e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.09589e-08\tAbsError: 3.16048e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:40\u001b[0m.\u001b[1;36m058\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.7\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.97686e-03\tAbsError: 8.26086e+11\n", + " Region: \"zone_1\"\tRelError: 1.16335e-03\tAbsError: 1.77491e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16330e-03\tAbsError: 4.17046e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.98056e-08\tAbsError: 1.73321e-05\n", + " Region: \"zone_3\"\tRelError: 8.13509e-04\tAbsError: 8.26086e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.08663e-05\tAbsError: 4.18100e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.07187e-05\tAbsError: 4.07986e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.31874e-04\tAbsError: 4.36618e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.98285e-08\tAbsError: 1.73405e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.37529e-05\tAbsError: 1.40904e+10\n", + " Region: \"zone_1\"\tRelError: 2.56157e-06\tAbsError: 1.29255e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52440e-06\tAbsError: 7.69838e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.71758e-08\tAbsError: 1.29178e-05\n", + " Region: \"zone_3\"\tRelError: 1.11914e-05\tAbsError: 1.40904e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.24225e-07\tAbsError: 1.00189e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.55953e-07\tAbsError: 4.07146e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.77400e-06\tAbsError: 8.06496e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.71861e-08\tAbsError: 1.29217e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:40\u001b[0m.\u001b[1;36m919\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: 0.65\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 8\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 1.63083e-05\tAbsError: 1.69923e+10\n", + " Region: \"zone_1\"\tRelError: 3.06233e-06\tAbsError: 1.59116e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.01656e-06\tAbsError: 9.13982e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.57663e-08\tAbsError: 1.59025e-05\n", + " Region: \"zone_3\"\tRelError: 1.32460e-05\tAbsError: 1.69923e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.64217e-07\tAbsError: 1.20714e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.75493e-07\tAbsError: 4.92097e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15605e-05\tAbsError: 9.54770e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.57804e-08\tAbsError: 1.59078e-05\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.68423e-05\tAbsError: 1.31861e+10\n", + " Region: \"zone_1\"\tRelError: 1.57902e-05\tAbsError: 4.90444e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56491e-05\tAbsError: 5.53975e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41146e-07\tAbsError: 4.90389e-05\n", + " Region: \"zone_3\"\tRelError: 1.10521e-05\tAbsError: 1.31861e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00575e-06\tAbsError: 1.18844e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.38543e-07\tAbsError: 1.30166e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.16658e-06\tAbsError: 5.67278e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41201e-07\tAbsError: 4.90583e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.87250e+00\tAbsError: 2.38112e+16\n", + " Region: \"zone_1\"\tRelError: 4.02900e+00\tAbsError: 4.47737e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.02900e+00\tAbsError: 4.47728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.77280e-09\tAbsError: 9.62637e-07\n", + " Region: \"zone_3\"\tRelError: 1.84350e+00\tAbsError: 2.38112e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.99927e-01\tAbsError: 1.19850e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.99609e-01\tAbsError: 1.18262e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.43964e-01\tAbsError: 4.47728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.77327e-09\tAbsError: 9.62813e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:42\u001b[0m.\u001b[1;36m364\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:42\u001b[0m.\u001b[1;36m394\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.75 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:42\u001b[0m.\u001b[1;36m439\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.52664e+01\tAbsError: 1.16964e+16\n", + " Region: \"zone_1\"\tRelError: 5.34885e+01\tAbsError: 4.29340e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.34885e+01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.65399e-10\tAbsError: 1.96786e-07\n", + " Region: \"zone_3\"\tRelError: 1.77791e+00\tAbsError: 1.16964e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.85913e-01\tAbsError: 5.96599e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.85711e-01\tAbsError: 5.73044e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06286e-01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.65730e-10\tAbsError: 1.96905e-07\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.85583e+00\tAbsError: 2.82968e+16\n", + " Region: \"zone_1\"\tRelError: 2.08117e-01\tAbsError: 1.41550e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07811e-01\tAbsError: 3.52793e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.05953e-04\tAbsError: 1.06271e-01\n", + " Region: \"zone_3\"\tRelError: 1.64772e+00\tAbsError: 2.82968e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91544e-01\tAbsError: 1.39566e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.57360e-01\tAbsError: 1.43401e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.98508e-01\tAbsError: 3.52793e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.05953e-04\tAbsError: 1.06271e-01\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.48679e+02\tAbsError: 3.39467e+16\n", + " Region: \"zone_1\"\tRelError: 7.11664e+02\tAbsError: 7.25191e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.11664e+02\tAbsError: 7.25190e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57556e-10\tAbsError: 1.24451e-07\n", + " Region: \"zone_3\"\tRelError: 3.70144e+01\tAbsError: 3.39467e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10279e+01\tAbsError: 1.80458e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.57729e+01\tAbsError: 1.59008e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13521e-01\tAbsError: 7.25190e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57765e-10\tAbsError: 1.24526e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:43\u001b[0m.\u001b[1;36m596\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:43\u001b[0m.\u001b[1;36m635\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.8 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:43\u001b[0m.\u001b[1;36m684\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 6.33878e+00\tAbsError: 1.22675e+16\n", + " Region: \"zone_1\"\tRelError: 4.76725e+00\tAbsError: 9.34106e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.76707e+00\tAbsError: 3.31000e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73592e-04\tAbsError: 6.03106e-02\n", + " Region: \"zone_3\"\tRelError: 1.57153e+00\tAbsError: 1.22675e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67129e-01\tAbsError: 5.98252e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.36794e-01\tAbsError: 6.28496e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67430e-01\tAbsError: 3.31000e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73592e-04\tAbsError: 6.03106e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:44\u001b[0m.\u001b[1;36m280\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:44\u001b[0m.\u001b[1;36m311\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.85 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:44\u001b[0m.\u001b[1;36m345\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.34811e+00\tAbsError: 2.09220e+16\n", + " Region: \"zone_1\"\tRelError: 1.55990e-01\tAbsError: 4.10360e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55945e-01\tAbsError: 2.55116e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.47424e-05\tAbsError: 1.55244e-02\n", + " Region: \"zone_3\"\tRelError: 1.19212e+00\tAbsError: 2.09220e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.27350e-01\tAbsError: 1.05095e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.94610e-01\tAbsError: 1.04125e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70114e-01\tAbsError: 2.41674e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.47424e-05\tAbsError: 1.55244e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 9.93000e+01\tAbsError: 4.51525e+16\n", + " Region: \"zone_1\"\tRelError: 7.25052e+01\tAbsError: 7.53942e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.25052e+01\tAbsError: 7.53940e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.15069e-10\tAbsError: 2.14071e-07\n", + " Region: \"zone_3\"\tRelError: 2.67949e+01\tAbsError: 4.51525e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61657e+01\tAbsError: 2.54761e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03882e+01\tAbsError: 1.96764e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41003e-01\tAbsError: 7.53940e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.15427e-10\tAbsError: 2.14199e-07\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.25381e+02\tAbsError: 7.27552e+15\n", + " Region: \"zone_1\"\tRelError: 1.16793e+01\tAbsError: 1.99937e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16789e+01\tAbsError: 6.76847e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.80427e-04\tAbsError: 1.32252e-01\n", + " Region: \"zone_3\"\tRelError: 1.13702e+02\tAbsError: 7.27552e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.96579e+01\tAbsError: 3.56588e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.38771e+01\tAbsError: 3.70964e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66530e-01\tAbsError: 6.76849e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.80427e-04\tAbsError: 1.32252e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.27823e+00\tAbsError: 8.68356e+15\n", + " Region: \"zone_1\"\tRelError: 1.88988e-01\tAbsError: 4.08652e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88944e-01\tAbsError: 2.57034e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.36930e-05\tAbsError: 1.51618e-02\n", + " Region: \"zone_3\"\tRelError: 1.08924e+00\tAbsError: 8.68356e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.90758e-01\tAbsError: 4.26881e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.47066e-01\tAbsError: 4.41475e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51374e-01\tAbsError: 2.52748e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.47625e-05\tAbsError: 1.55328e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.59636e+01\tAbsError: 9.97993e+16\n", + " Region: \"zone_1\"\tRelError: 4.40288e+01\tAbsError: 7.79837e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.40288e+01\tAbsError: 7.79815e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.54665e-09\tAbsError: 2.27445e-06\n", + " Region: \"zone_3\"\tRelError: 3.19348e+01\tAbsError: 9.97993e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19797e+01\tAbsError: 5.24562e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96832e+01\tAbsError: 4.73431e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.71919e-01\tAbsError: 7.79815e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.54665e-09\tAbsError: 2.27445e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.70108e-01\tAbsError: 8.80223e+15\n", + " Region: \"zone_1\"\tRelError: 1.18953e-01\tAbsError: 1.56966e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18546e-01\tAbsError: 1.57804e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.06994e-04\tAbsError: 1.41186e-01\n", + " Region: \"zone_3\"\tRelError: 5.51155e-01\tAbsError: 8.80223e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.83768e-01\tAbsError: 4.18531e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.85569e-01\tAbsError: 4.61691e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.14117e-02\tAbsError: 1.57805e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.07123e-04\tAbsError: 1.41232e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.04468e+02\tAbsError: 1.94565e+16\n", + " Region: \"zone_1\"\tRelError: 1.33089e+00\tAbsError: 2.90662e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33026e+00\tAbsError: 7.09270e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.31969e-04\tAbsError: 2.19735e-01\n", + " Region: \"zone_3\"\tRelError: 3.03137e+02\tAbsError: 1.94565e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14106e+01\tAbsError: 1.05094e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.81537e+02\tAbsError: 8.94706e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88168e-01\tAbsError: 7.09271e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.31969e-04\tAbsError: 2.19735e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.21999e+02\tAbsError: 5.77042e+15\n", + " Region: \"zone_1\"\tRelError: 1.84527e+00\tAbsError: 8.08650e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84522e+00\tAbsError: 6.21779e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.38134e-05\tAbsError: 1.86870e-02\n", + " Region: \"zone_3\"\tRelError: 1.20153e+02\tAbsError: 5.77042e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47805e+01\tAbsError: 2.59297e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.05233e+02\tAbsError: 3.17746e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39803e-01\tAbsError: 6.21780e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.38227e-05\tAbsError: 1.86907e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.63507e+02\tAbsError: 5.30277e+16\n", + " Region: \"zone_1\"\tRelError: 8.35852e+01\tAbsError: 4.44328e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.35841e+01\tAbsError: 7.38247e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06526e-03\tAbsError: 3.70503e-01\n", + " Region: \"zone_3\"\tRelError: 7.99220e+01\tAbsError: 5.30277e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.88005e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.07098e+01\tAbsError: 2.42271e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.11202e-01\tAbsError: 7.38248e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06526e-03\tAbsError: 3.70503e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.24591e+00\tAbsError: 3.26346e+15\n", + " Region: \"zone_1\"\tRelError: 1.80867e+00\tAbsError: 8.31621e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80847e+00\tAbsError: 1.22663e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.04347e-04\tAbsError: 7.08958e-02\n", + " Region: \"zone_3\"\tRelError: 4.37234e-01\tAbsError: 3.26346e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.32552e-01\tAbsError: 1.73554e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.50687e-01\tAbsError: 1.52791e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.37915e-02\tAbsError: 1.22664e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.04553e-04\tAbsError: 7.09655e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.17815e-01\tAbsError: 1.58420e+15\n", + " Region: \"zone_1\"\tRelError: 4.13293e-02\tAbsError: 1.21701e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.09798e-02\tAbsError: 4.52349e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.49513e-04\tAbsError: 1.21249e-01\n", + " Region: \"zone_3\"\tRelError: 1.76486e-01\tAbsError: 1.58420e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.63825e-02\tAbsError: 9.43320e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.46672e-02\tAbsError: 6.40881e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.50863e-02\tAbsError: 4.79056e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.49530e-04\tAbsError: 1.21252e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.16103e+03\tAbsError: 9.66146e+15\n", + " Region: \"zone_1\"\tRelError: 2.70149e+00\tAbsError: 1.33956e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.70130e+00\tAbsError: 6.58786e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.95827e-04\tAbsError: 6.80778e-02\n", + " Region: \"zone_3\"\tRelError: 1.15833e+03\tAbsError: 9.66146e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.59756e+01\tAbsError: 2.60646e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.14219e+03\tAbsError: 7.05500e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57544e-01\tAbsError: 6.58787e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.95827e-04\tAbsError: 6.80778e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.06291e+02\tAbsError: 4.01421e+14\n", + " Region: \"zone_1\"\tRelError: 1.10248e-01\tAbsError: 8.97582e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10150e-01\tAbsError: 5.58213e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.76059e-05\tAbsError: 3.39369e-02\n", + " Region: \"zone_3\"\tRelError: 6.06180e+02\tAbsError: 4.01421e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.98365e+02\tAbsError: 2.62317e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.70461e+00\tAbsError: 1.39104e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10110e-01\tAbsError: 5.58214e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.76059e-05\tAbsError: 3.39369e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.50763e+03\tAbsError: 2.23340e+16\n", + " Region: \"zone_1\"\tRelError: 6.44725e+00\tAbsError: 2.49092e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.44673e+00\tAbsError: 6.91599e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.17604e-04\tAbsError: 1.79932e-01\n", + " Region: \"zone_3\"\tRelError: 1.50119e+03\tAbsError: 2.23340e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.29257e+03\tAbsError: 8.51965e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.08393e+02\tAbsError: 1.38143e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.26018e-01\tAbsError: 6.91599e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.17604e-04\tAbsError: 1.79932e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.09725e-01\tAbsError: 5.66844e+14\n", + " Region: \"zone_1\"\tRelError: 9.74944e-02\tAbsError: 6.02281e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.73217e-02\tAbsError: 2.69090e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72760e-04\tAbsError: 5.99590e-02\n", + " Region: \"zone_3\"\tRelError: 1.12230e-01\tAbsError: 5.66844e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16841e-02\tAbsError: 3.36059e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.40653e-02\tAbsError: 2.30785e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.63081e-02\tAbsError: 2.86751e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72917e-04\tAbsError: 6.00120e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.10483e-02\tAbsError: 1.35513e+14\n", + " Region: \"zone_1\"\tRelError: 2.58322e-02\tAbsError: 2.48018e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58252e-02\tAbsError: 3.80519e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.03965e-06\tAbsError: 2.44213e-03\n", + " Region: \"zone_3\"\tRelError: 5.52160e-02\tAbsError: 1.35513e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.20175e-03\tAbsError: 6.78200e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.94194e-03\tAbsError: 6.76932e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.90653e-02\tAbsError: 3.84912e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.05638e-06\tAbsError: 2.44787e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.46406e+03\tAbsError: 1.65999e+15\n", + " Region: \"zone_1\"\tRelError: 4.28617e-01\tAbsError: 1.04295e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.28490e-01\tAbsError: 6.01031e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27107e-04\tAbsError: 4.41918e-02\n", + " Region: \"zone_3\"\tRelError: 3.46363e+03\tAbsError: 1.65999e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.22098e+01\tAbsError: 1.04576e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.37130e+03\tAbsError: 6.14224e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25668e-01\tAbsError: 6.01031e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27107e-04\tAbsError: 4.41918e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.20336e+03\tAbsError: 2.45508e+14\n", + " Region: \"zone_1\"\tRelError: 8.57374e-02\tAbsError: 4.98203e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.57333e-02\tAbsError: 4.83794e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14867e-06\tAbsError: 1.44089e-03\n", + " Region: \"zone_3\"\tRelError: 2.20327e+03\tAbsError: 2.45508e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14531e+03\tAbsError: 1.73130e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.78727e+01\tAbsError: 7.23779e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.58452e-02\tAbsError: 4.83794e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14867e-06\tAbsError: 1.44089e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.25272e+02\tAbsError: 6.60472e+15\n", + " Region: \"zone_1\"\tRelError: 2.27909e+00\tAbsError: 1.12504e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27895e+00\tAbsError: 6.38659e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40057e-04\tAbsError: 4.86385e-02\n", + " Region: \"zone_3\"\tRelError: 4.22993e+02\tAbsError: 6.60472e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.16210e+01\tAbsError: 3.79266e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.41231e+02\tAbsError: 2.81205e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41418e-01\tAbsError: 6.38659e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40177e-04\tAbsError: 4.86799e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.32859e-02\tAbsError: 3.83563e+13\n", + " Region: \"zone_1\"\tRelError: 8.24035e-03\tAbsError: 7.96612e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.23812e-03\tAbsError: 2.18441e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23240e-06\tAbsError: 7.74768e-04\n", + " Region: \"zone_3\"\tRelError: 2.50456e-02\tAbsError: 3.83563e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.92826e-03\tAbsError: 1.79088e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.76021e-03\tAbsError: 2.04475e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13549e-02\tAbsError: 2.23899e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24276e-06\tAbsError: 7.78349e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 5.48813e-04\tAbsError: 1.88570e+12\n", + " Region: \"zone_1\"\tRelError: 1.45274e-04\tAbsError: 3.39970e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35478e-04\tAbsError: 1.22010e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.79649e-06\tAbsError: 3.39848e-03\n", + " Region: \"zone_3\"\tRelError: 4.03539e-04\tAbsError: 1.88570e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94628e-05\tAbsError: 9.77470e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.14796e-05\tAbsError: 9.08225e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.92798e-04\tAbsError: 1.23326e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.79900e-06\tAbsError: 3.39940e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 5.83067e+03\tAbsError: 5.92587e+14\n", + " Region: \"zone_1\"\tRelError: 1.88503e-01\tAbsError: 6.71506e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88463e-01\tAbsError: 5.34036e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.95381e-05\tAbsError: 1.37470e-02\n", + " Region: \"zone_3\"\tRelError: 5.83048e+03\tAbsError: 5.92587e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.74537e+03\tAbsError: 3.49738e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.50118e+01\tAbsError: 2.42848e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.98336e-02\tAbsError: 5.34037e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.95381e-05\tAbsError: 1.37470e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.77863e+01\tAbsError: 6.01969e+13\n", + " Region: \"zone_1\"\tRelError: 6.43140e-02\tAbsError: 4.43277e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.43003e-02\tAbsError: 3.95640e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37008e-05\tAbsError: 4.76374e-03\n", + " Region: \"zone_3\"\tRelError: 1.77220e+01\tAbsError: 6.01969e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.39628e+01\tAbsError: 3.74418e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.69466e+00\tAbsError: 2.27551e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.45263e-02\tAbsError: 3.95641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37008e-05\tAbsError: 4.76374e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.38541e+03\tAbsError: 6.79969e+14\n", + " Region: \"zone_1\"\tRelError: 1.13349e-01\tAbsError: 1.11530e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13194e-01\tAbsError: 5.77791e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54595e-04\tAbsError: 5.37513e-02\n", + " Region: \"zone_3\"\tRelError: 2.38530e+03\tAbsError: 6.79969e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.60459e+03\tAbsError: 2.66439e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.80597e+02\tAbsError: 4.13529e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13272e-01\tAbsError: 5.77792e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54595e-04\tAbsError: 5.37513e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.77352e-04\tAbsError: 7.13394e+11\n", + " Region: \"zone_1\"\tRelError: 2.80569e-04\tAbsError: 1.79321e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.75403e-04\tAbsError: 4.87828e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.16541e-06\tAbsError: 1.79273e-03\n", + " Region: \"zone_3\"\tRelError: 1.96783e-04\tAbsError: 7.13394e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.19881e-05\tAbsError: 4.92944e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.32443e-05\tAbsError: 2.20450e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46385e-04\tAbsError: 4.93945e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.16541e-06\tAbsError: 1.79273e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.92853e-03\tAbsError: 5.62124e+12\n", + " Region: \"zone_1\"\tRelError: 1.96532e-03\tAbsError: 1.96576e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96476e-03\tAbsError: 1.37574e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.61379e-07\tAbsError: 1.95200e-04\n", + " Region: \"zone_3\"\tRelError: 3.96321e-03\tAbsError: 5.62124e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.25845e-04\tAbsError: 2.83157e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24546e-04\tAbsError: 2.78967e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.71226e-03\tAbsError: 1.47660e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.61596e-07\tAbsError: 1.95273e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.08409e+02\tAbsError: 1.91699e+14\n", + " Region: \"zone_1\"\tRelError: 7.70948e-02\tAbsError: 5.30921e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.70730e-02\tAbsError: 4.55245e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17651e-05\tAbsError: 7.56764e-03\n", + " Region: \"zone_3\"\tRelError: 2.08332e+02\tAbsError: 1.91699e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05469e+02\tAbsError: 1.32563e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.78566e+00\tAbsError: 5.91361e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.73368e-02\tAbsError: 4.55246e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17651e-05\tAbsError: 7.56764e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 9.93223e+03\tAbsError: 1.22952e+13\n", + " Region: \"zone_1\"\tRelError: 4.57686e-02\tAbsError: 3.13053e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.57624e-02\tAbsError: 2.91306e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.26141e-06\tAbsError: 2.17471e-03\n", + " Region: \"zone_3\"\tRelError: 9.93219e+03\tAbsError: 1.22952e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.93152e+03\tAbsError: 6.28414e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.21409e-01\tAbsError: 6.01109e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.63288e-02\tAbsError: 2.91306e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.26141e-06\tAbsError: 2.17471e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.25988e+04\tAbsError: 5.24078e+14\n", + " Region: \"zone_1\"\tRelError: 1.49524e-01\tAbsError: 5.33198e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49516e-01\tAbsError: 5.06822e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.59452e-06\tAbsError: 2.63763e-03\n", + " Region: \"zone_3\"\tRelError: 1.25987e+04\tAbsError: 5.24078e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.25908e+04\tAbsError: 3.27064e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.78157e+00\tAbsError: 1.97014e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.90329e-02\tAbsError: 5.06822e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.59452e-06\tAbsError: 2.63763e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.49838e-03\tAbsError: 1.76569e+12\n", + " Region: \"zone_1\"\tRelError: 6.54941e-04\tAbsError: 9.30889e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.54675e-04\tAbsError: 8.39400e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.65787e-07\tAbsError: 9.22495e-05\n", + " Region: \"zone_3\"\tRelError: 1.84344e-03\tAbsError: 1.76569e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77494e-05\tAbsError: 8.82777e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.71860e-05\tAbsError: 8.82910e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68824e-03\tAbsError: 8.40369e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.65787e-07\tAbsError: 9.22495e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.72762e-04\tAbsError: 3.41820e+11\n", + " Region: \"zone_1\"\tRelError: 1.58246e-04\tAbsError: 1.92506e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57692e-04\tAbsError: 9.65722e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.54279e-07\tAbsError: 1.92410e-04\n", + " Region: \"zone_3\"\tRelError: 3.14516e-04\tAbsError: 3.41820e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.64023e-06\tAbsError: 1.71224e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.68076e-06\tAbsError: 1.70595e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.98641e-04\tAbsError: 1.03349e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.54407e-07\tAbsError: 1.92451e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.41194e+02\tAbsError: 5.68109e+13\n", + " Region: \"zone_1\"\tRelError: 5.66163e-02\tAbsError: 3.77625e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.66117e-02\tAbsError: 3.61717e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.58018e-06\tAbsError: 1.59077e-03\n", + " Region: \"zone_3\"\tRelError: 6.41138e+02\tAbsError: 5.68109e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33427e+02\tAbsError: 3.56087e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.07654e+02\tAbsError: 2.12022e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.69268e-02\tAbsError: 3.61718e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.58018e-06\tAbsError: 1.59077e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.11877e+00\tAbsError: 2.43618e+12\n", + " Region: \"zone_1\"\tRelError: 3.45248e-02\tAbsError: 2.79337e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.45156e-02\tAbsError: 2.47258e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.23616e-06\tAbsError: 3.20792e-03\n", + " Region: \"zone_3\"\tRelError: 1.08424e+00\tAbsError: 2.43618e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99948e-01\tAbsError: 1.31112e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.93315e-02\tAbsError: 1.12506e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.49530e-02\tAbsError: 2.47259e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.23616e-06\tAbsError: 3.20792e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.32327e+02\tAbsError: 1.48132e+14\n", + " Region: \"zone_1\"\tRelError: 6.77637e-02\tAbsError: 4.36000e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.77600e-02\tAbsError: 4.22992e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.74140e-06\tAbsError: 1.30085e-03\n", + " Region: \"zone_3\"\tRelError: 6.32260e+02\tAbsError: 1.48132e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.04050e+01\tAbsError: 1.03200e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.51786e+02\tAbsError: 4.49319e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.81931e-02\tAbsError: 4.22993e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.74140e-06\tAbsError: 1.30085e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.99060e-04\tAbsError: 9.07144e+10\n", + " Region: \"zone_1\"\tRelError: 5.32122e-05\tAbsError: 1.06982e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.29043e-05\tAbsError: 5.30299e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.07864e-07\tAbsError: 1.06929e-04\n", + " Region: \"zone_3\"\tRelError: 1.45848e-04\tAbsError: 9.07144e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37854e-06\tAbsError: 4.24042e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.42241e-06\tAbsError: 4.83102e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36739e-04\tAbsError: 5.34823e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.07966e-07\tAbsError: 1.06964e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.00550e-04\tAbsError: 3.20626e+11\n", + " Region: \"zone_1\"\tRelError: 1.33793e-04\tAbsError: 2.12224e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33732e-04\tAbsError: 7.08063e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.09330e-08\tAbsError: 2.11516e-05\n", + " Region: \"zone_3\"\tRelError: 2.66756e-04\tAbsError: 3.20626e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.21226e-06\tAbsError: 1.61400e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.10685e-06\tAbsError: 1.59226e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52376e-04\tAbsError: 7.71568e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.09495e-08\tAbsError: 2.11573e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.07505e+00\tAbsError: 6.25389e+12\n", + " Region: \"zone_1\"\tRelError: 4.36529e-02\tAbsError: 2.95826e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.36423e-02\tAbsError: 2.58965e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06129e-05\tAbsError: 3.68607e-03\n", + " Region: \"zone_3\"\tRelError: 2.03140e+00\tAbsError: 6.25389e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.96580e-01\tAbsError: 1.78149e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.90898e-01\tAbsError: 4.47240e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.39096e-02\tAbsError: 2.58973e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06129e-05\tAbsError: 3.68607e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 9.51554e-01\tAbsError: 1.89582e+12\n", + " Region: \"zone_1\"\tRelError: 2.30110e-04\tAbsError: 6.58813e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.11154e-04\tAbsError: 4.13879e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89561e-05\tAbsError: 6.58399e-03\n", + " Region: \"zone_3\"\tRelError: 9.51324e-01\tAbsError: 1.89582e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.49652e-01\tAbsError: 5.86158e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.60421e-03\tAbsError: 1.30967e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.88469e-05\tAbsError: 4.50711e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89561e-05\tAbsError: 6.58399e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.09192e+00\tAbsError: 2.46218e+13\n", + " Region: \"zone_1\"\tRelError: 4.83263e-02\tAbsError: 3.71406e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.83125e-02\tAbsError: 3.23497e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37943e-05\tAbsError: 4.79093e-03\n", + " Region: \"zone_3\"\tRelError: 2.04359e+00\tAbsError: 2.46218e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99137e-01\tAbsError: 9.59394e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.95705e-01\tAbsError: 1.50279e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.87366e-02\tAbsError: 3.23497e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37943e-05\tAbsError: 4.79093e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.73943e-04\tAbsError: 1.07365e+11\n", + " Region: \"zone_1\"\tRelError: 4.60985e-05\tAbsError: 1.16082e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.60652e-05\tAbsError: 4.61233e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32888e-08\tAbsError: 1.15620e-05\n", + " Region: \"zone_3\"\tRelError: 1.27845e-04\tAbsError: 1.07365e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.59108e-06\tAbsError: 6.01847e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.54678e-06\tAbsError: 4.71802e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18674e-04\tAbsError: 4.74794e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32988e-08\tAbsError: 1.15655e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 5.47711e-05\tAbsError: 3.70815e+10\n", + " Region: \"zone_1\"\tRelError: 1.83966e-05\tAbsError: 1.25973e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83604e-05\tAbsError: 8.35155e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.61935e-08\tAbsError: 1.25889e-05\n", + " Region: \"zone_3\"\tRelError: 3.63746e-05\tAbsError: 3.70815e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.32814e-07\tAbsError: 1.85960e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.27373e-07\tAbsError: 1.84855e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.46782e-05\tAbsError: 9.16153e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.62081e-08\tAbsError: 1.25941e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 9.27661e+02\tAbsError: 3.54994e+12\n", + " Region: \"zone_1\"\tRelError: 2.38776e-02\tAbsError: 2.12602e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38666e-02\tAbsError: 1.74104e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10841e-05\tAbsError: 3.84976e-03\n", + " Region: \"zone_3\"\tRelError: 9.27637e+02\tAbsError: 3.54994e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.27595e+02\tAbsError: 1.74289e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.72650e-02\tAbsError: 1.80705e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42829e-02\tAbsError: 1.74106e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10841e-05\tAbsError: 3.84976e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 3.89717e-03\tAbsError: 3.47997e+12\n", + " Region: \"zone_1\"\tRelError: 8.55125e-04\tAbsError: 1.16964e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.54801e-04\tAbsError: 4.36303e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.23842e-07\tAbsError: 1.12601e-04\n", + " Region: \"zone_3\"\tRelError: 3.04204e-03\tAbsError: 3.47997e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.47788e-04\tAbsError: 1.09617e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.59563e-04\tAbsError: 2.38380e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03437e-03\tAbsError: 4.40268e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.23842e-07\tAbsError: 1.12601e-04\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.42423e-05\tAbsError: 1.13845e+10\n", + " Region: \"zone_1\"\tRelError: 6.77172e-06\tAbsError: 7.06656e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.75139e-06\tAbsError: 5.42330e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03301e-08\tAbsError: 7.06113e-06\n", + " Region: \"zone_3\"\tRelError: 1.74705e-05\tAbsError: 1.13845e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.20454e-07\tAbsError: 6.31987e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.20087e-07\tAbsError: 5.06458e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64097e-05\tAbsError: 5.58892e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03324e-08\tAbsError: 7.06195e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 9.11104e-01\tAbsError: 6.39403e+12\n", + " Region: \"zone_1\"\tRelError: 3.95295e-02\tAbsError: 3.01416e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.95166e-02\tAbsError: 2.56794e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28475e-05\tAbsError: 4.46215e-03\n", + " Region: \"zone_3\"\tRelError: 8.71574e-01\tAbsError: 6.39403e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.22643e-01\tAbsError: 2.54350e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.08856e-01\tAbsError: 3.85053e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.00630e-02\tAbsError: 2.57518e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28475e-05\tAbsError: 4.46215e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.01442e-04\tAbsError: 1.00519e+11\n", + " Region: \"zone_1\"\tRelError: 8.70773e-05\tAbsError: 2.27393e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.64229e-05\tAbsError: 1.01434e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.54379e-07\tAbsError: 2.27291e-04\n", + " Region: \"zone_3\"\tRelError: 2.14365e-04\tAbsError: 1.00519e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.62706e-05\tAbsError: 4.47105e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.33789e-05\tAbsError: 5.58084e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84061e-04\tAbsError: 1.02591e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.54389e-07\tAbsError: 2.27297e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 9.98130e-01\tAbsError: 2.62533e+12\n", + " Region: \"zone_1\"\tRelError: 3.82333e-04\tAbsError: 6.10703e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.64779e-04\tAbsError: 9.96994e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75541e-05\tAbsError: 6.09706e-03\n", + " Region: \"zone_3\"\tRelError: 9.97748e-01\tAbsError: 2.62533e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.96506e-01\tAbsError: 8.87847e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.16735e-03\tAbsError: 1.73748e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.72863e-05\tAbsError: 1.05441e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75541e-05\tAbsError: 6.09706e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 9.47371e-01\tAbsError: 4.28530e+12\n", + " Region: \"zone_1\"\tRelError: 1.48935e-02\tAbsError: 1.65084e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48782e-02\tAbsError: 1.11985e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52880e-05\tAbsError: 5.30987e-03\n", + " Region: \"zone_3\"\tRelError: 9.32478e-01\tAbsError: 4.28530e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.10570e-01\tAbsError: 1.95243e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.69199e-03\tAbsError: 2.33287e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51998e-02\tAbsError: 1.11987e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52880e-05\tAbsError: 5.30987e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:58\u001b[0m.\u001b[1;36m352\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:58\u001b[0m.\u001b[1;36m385\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.9 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:58\u001b[0m.\u001b[1;36m415\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 3.12421e-04\tAbsError: 2.21889e+11\n", + " Region: \"zone_1\"\tRelError: 8.22854e-05\tAbsError: 2.08676e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.22259e-05\tAbsError: 1.72465e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.95208e-08\tAbsError: 2.06951e-05\n", + " Region: \"zone_3\"\tRelError: 2.30136e-04\tAbsError: 2.21889e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.20007e-05\tAbsError: 1.02564e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.18521e-05\tAbsError: 1.19326e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86224e-04\tAbsError: 1.74273e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.95335e-08\tAbsError: 2.07004e-05\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.47644e-03\tAbsError: 3.24054e+12\n", + " Region: \"zone_1\"\tRelError: 7.94661e-04\tAbsError: 8.94961e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.94416e-04\tAbsError: 4.03981e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45773e-07\tAbsError: 8.54563e-05\n", + " Region: \"zone_3\"\tRelError: 2.68177e-03\tAbsError: 3.24054e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.67270e-04\tAbsError: 1.02396e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.23056e-04\tAbsError: 2.21658e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89120e-03\tAbsError: 4.07680e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45773e-07\tAbsError: 8.54563e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.11908e-01\tAbsError: 5.16826e+12\n", + " Region: \"zone_1\"\tRelError: 9.92569e-04\tAbsError: 6.44275e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.74107e-04\tAbsError: 3.01846e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84625e-05\tAbsError: 6.41257e-03\n", + " Region: \"zone_3\"\tRelError: 2.10915e-01\tAbsError: 5.16826e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.08472e-01\tAbsError: 1.83522e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.87614e-03\tAbsError: 3.33304e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.48673e-04\tAbsError: 3.03392e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84625e-05\tAbsError: 6.41257e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:59\u001b[0m.\u001b[1;36m142\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:59\u001b[0m.\u001b[1;36m180\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.95 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:59\u001b[0m.\u001b[1;36m221\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.51573e+01\tAbsError: 5.73632e+17\n", + " Region: \"zone_1\"\tRelError: 2.42264e+01\tAbsError: 8.24921e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42264e+01\tAbsError: 8.24901e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.73190e-09\tAbsError: 1.99366e-06\n", + " Region: \"zone_3\"\tRelError: 2.09309e+01\tAbsError: 5.73632e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.80469e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10902e+01\tAbsError: 2.93163e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 8.40641e-01\tAbsError: 8.24901e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.73416e-09\tAbsError: 1.99448e-06\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 4.17956e-05\tAbsError: 1.97290e+10\n", + " Region: \"zone_1\"\tRelError: 1.18661e-05\tAbsError: 1.49685e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18231e-05\tAbsError: 1.48864e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.30078e-08\tAbsError: 1.49536e-05\n", + " Region: \"zone_3\"\tRelError: 2.99295e-05\tAbsError: 1.97290e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01914e-06\tAbsError: 1.04404e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.01081e-06\tAbsError: 9.28869e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58566e-05\tAbsError: 1.50609e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.30208e-08\tAbsError: 1.49586e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:59\u001b[0m.\u001b[1;36m721\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:59\u001b[0m.\u001b[1;36m721\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.20833333333333334\u001b[0m \n", + "Iteration: 11\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 2.60848e-04\tAbsError: 7.27867e+10\n", + " Region: \"zone_1\"\tRelError: 7.50893e-05\tAbsError: 2.09731e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.44857e-05\tAbsError: 7.59270e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.03603e-07\tAbsError: 2.09655e-04\n", + " Region: \"zone_3\"\tRelError: 1.85759e-04\tAbsError: 7.27867e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50933e-05\tAbsError: 3.42289e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24436e-05\tAbsError: 3.85578e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57619e-04\tAbsError: 7.67885e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.03618e-07\tAbsError: 2.09663e-04\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 3.66154e-03\tAbsError: 3.38692e+12\n", + " Region: \"zone_1\"\tRelError: 8.23270e-04\tAbsError: 5.50756e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.23124e-04\tAbsError: 4.23833e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46208e-07\tAbsError: 5.08373e-05\n", + " Region: \"zone_3\"\tRelError: 2.83827e-03\tAbsError: 3.38692e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.27487e-04\tAbsError: 1.07437e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.47763e-04\tAbsError: 2.31254e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96287e-03\tAbsError: 4.27713e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46208e-07\tAbsError: 5.08373e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.04899e+02\tAbsError: 2.22519e+17\n", + " Region: \"zone_1\"\tRelError: 6.80302e+01\tAbsError: 8.03349e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.80302e+01\tAbsError: 8.03338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.23687e-09\tAbsError: 1.12425e-06\n", + " Region: \"zone_3\"\tRelError: 2.36869e+02\tAbsError: 2.22519e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.08226e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.27561e+02\tAbsError: 1.14293e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 3.07393e-01\tAbsError: 8.03338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.23715e-09\tAbsError: 1.12434e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.05786e+01\tAbsError: 3.90962e+17\n", + " Region: \"zone_1\"\tRelError: 7.44374e+00\tAbsError: 3.85122e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.44286e+00\tAbsError: 7.88298e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.81581e-04\tAbsError: 3.06292e-01\n", + " Region: \"zone_3\"\tRelError: 2.31349e+01\tAbsError: 3.90962e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.20845e+01\tAbsError: 1.91461e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.99501e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04951e+00\tAbsError: 7.88298e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.81581e-04\tAbsError: 3.06292e-01\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.87569e-04\tAbsError: 2.04901e+11\n", + " Region: \"zone_1\"\tRelError: 7.57005e-05\tAbsError: 1.81146e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.56488e-05\tAbsError: 1.59044e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.16415e-08\tAbsError: 1.79555e-05\n", + " Region: \"zone_3\"\tRelError: 2.11869e-04\tAbsError: 2.04901e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.02801e-05\tAbsError: 9.47207e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.01434e-05\tAbsError: 1.10180e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.71394e-04\tAbsError: 1.60712e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.16551e-08\tAbsError: 1.79610e-05\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.22293e-04\tAbsError: 3.30869e+10\n", + " Region: \"zone_1\"\tRelError: 6.30972e-05\tAbsError: 2.17552e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.24710e-05\tAbsError: 4.60870e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.26207e-07\tAbsError: 2.17506e-04\n", + " Region: \"zone_3\"\tRelError: 1.59196e-04\tAbsError: 3.30869e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.57828e-05\tAbsError: 1.58467e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.30769e-05\tAbsError: 1.72402e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29710e-04\tAbsError: 4.66375e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.26215e-07\tAbsError: 2.17511e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.58703e+00\tAbsError: 9.04418e+15\n", + " Region: \"zone_1\"\tRelError: 1.92661e+00\tAbsError: 4.26164e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92661e+00\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.45404e-09\tAbsError: 2.24417e-06\n", + " Region: \"zone_3\"\tRelError: 1.66042e+00\tAbsError: 9.04418e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83432e-01\tAbsError: 5.05936e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83363e-01\tAbsError: 3.98483e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.36246e-02\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.45579e-09\tAbsError: 2.24478e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.03354e+01\tAbsError: 1.45334e+17\n", + " Region: \"zone_1\"\tRelError: 2.05211e+01\tAbsError: 5.44014e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05197e+01\tAbsError: 7.64428e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34440e-03\tAbsError: 4.67571e-01\n", + " Region: \"zone_3\"\tRelError: 1.98143e+01\tAbsError: 1.45334e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02485e+01\tAbsError: 7.38983e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 7.14362e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.64509e-01\tAbsError: 7.64428e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34619e-03\tAbsError: 4.68197e-01\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 3.69302e-05\tAbsError: 1.70378e+10\n", + " Region: \"zone_1\"\tRelError: 1.05164e-05\tAbsError: 1.37373e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04769e-05\tAbsError: 1.28711e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.94725e-08\tAbsError: 1.37244e-05\n", + " Region: \"zone_3\"\tRelError: 2.64138e-05\tAbsError: 1.70378e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.75140e-06\tAbsError: 9.08031e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.74451e-06\tAbsError: 7.95747e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.28784e-05\tAbsError: 1.30229e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.94844e-08\tAbsError: 1.37290e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:02\u001b[0m.\u001b[1;36m231\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.2\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 8.47490e+02\tAbsError: 1.27841e+17\n", + " Region: \"zone_1\"\tRelError: 1.17044e+00\tAbsError: 1.20401e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16720e+00\tAbsError: 7.47721e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.23989e-03\tAbsError: 1.12924e+00\n", + " Region: \"zone_3\"\tRelError: 8.46320e+02\tAbsError: 1.27841e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.64763e+01\tAbsError: 7.09434e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69485e+02\tAbsError: 5.68980e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.55471e-01\tAbsError: 7.47734e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.24142e-03\tAbsError: 1.12966e+00\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 2.95900e-04\tAbsError: 2.12250e+11\n", + " Region: \"zone_1\"\tRelError: 7.77472e-05\tAbsError: 1.62515e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.77010e-05\tAbsError: 1.64693e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.62658e-08\tAbsError: 1.60868e-05\n", + " Region: \"zone_3\"\tRelError: 2.18153e-04\tAbsError: 2.12250e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10257e-05\tAbsError: 9.81512e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.08823e-05\tAbsError: 1.14099e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76199e-04\tAbsError: 1.66424e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.62780e-08\tAbsError: 1.60913e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.56197e+00\tAbsError: 3.41005e+14\n", + " Region: \"zone_1\"\tRelError: 7.42778e-02\tAbsError: 9.67927e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.40935e-02\tAbsError: 3.27224e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84300e-04\tAbsError: 6.40703e-02\n", + " Region: \"zone_3\"\tRelError: 1.48769e+00\tAbsError: 3.41005e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.62788e-01\tAbsError: 1.76260e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.57825e-01\tAbsError: 1.64745e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.68901e-02\tAbsError: 3.27228e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84300e-04\tAbsError: 6.40703e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.45968e+02\tAbsError: 5.46698e+16\n", + " Region: \"zone_1\"\tRelError: 1.20232e+00\tAbsError: 2.11631e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20192e+00\tAbsError: 7.21040e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.01760e-04\tAbsError: 1.39527e-01\n", + " Region: \"zone_3\"\tRelError: 1.44765e+02\tAbsError: 5.46698e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.07518e+01\tAbsError: 2.79405e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.37872e+01\tAbsError: 2.67293e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25797e-01\tAbsError: 7.21040e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.02283e-04\tAbsError: 1.39707e-01\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 3.43657e-05\tAbsError: 1.51208e+10\n", + " Region: \"zone_1\"\tRelError: 9.84464e-06\tAbsError: 1.40710e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.80420e-06\tAbsError: 1.16041e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.04359e-08\tAbsError: 1.40594e-05\n", + " Region: \"zone_3\"\tRelError: 2.45210e-05\tAbsError: 1.51208e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.57488e-06\tAbsError: 8.06094e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.56966e-06\tAbsError: 7.05983e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13361e-05\tAbsError: 1.17422e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.04480e-08\tAbsError: 1.40640e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.26513e+02\tAbsError: 2.61970e+16\n", + " Region: \"zone_1\"\tRelError: 4.28289e+00\tAbsError: 1.05157e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.28006e+00\tAbsError: 7.02256e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.82352e-03\tAbsError: 9.81348e-01\n", + " Region: \"zone_3\"\tRelError: 7.22231e+02\tAbsError: 2.61970e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27009e+01\tAbsError: 1.26138e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.08947e+02\tAbsError: 1.35832e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.79421e-01\tAbsError: 7.02257e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.82352e-03\tAbsError: 9.81348e-01\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:03\u001b[0m.\u001b[1;36m693\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:03\u001b[0m.\u001b[1;36m693\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.20714285714285713\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.71665e+00\tAbsError: 8.34848e+15\n", + " Region: \"zone_1\"\tRelError: 2.08783e+00\tAbsError: 4.09562e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08783e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.73741e-09\tAbsError: 1.99498e-06\n", + " Region: \"zone_3\"\tRelError: 1.62882e+00\tAbsError: 8.34848e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69544e-01\tAbsError: 4.67018e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69472e-01\tAbsError: 3.67830e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.98079e-02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.73892e-09\tAbsError: 1.99551e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.03390e+00\tAbsError: 4.16810e+13\n", + " Region: \"zone_1\"\tRelError: 5.13611e-02\tAbsError: 3.15350e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.13449e-02\tAbsError: 2.58934e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62282e-05\tAbsError: 5.64167e-03\n", + " Region: \"zone_3\"\tRelError: 9.82539e-01\tAbsError: 4.16810e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.79113e-01\tAbsError: 3.05006e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.51817e-01\tAbsError: 1.11804e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.15928e-02\tAbsError: 2.58971e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62282e-05\tAbsError: 5.64167e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.12673e+02\tAbsError: 1.53705e+16\n", + " Region: \"zone_1\"\tRelError: 5.06195e+00\tAbsError: 3.44130e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.06116e+00\tAbsError: 6.72141e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.96842e-04\tAbsError: 2.76915e-01\n", + " Region: \"zone_3\"\tRelError: 2.07611e+02\tAbsError: 1.53705e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.47712e+01\tAbsError: 8.09677e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.42682e+02\tAbsError: 7.27369e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57154e-01\tAbsError: 6.72141e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.96842e-04\tAbsError: 2.76915e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.73206e+02\tAbsError: 3.66314e+15\n", + " Region: \"zone_1\"\tRelError: 2.06542e+00\tAbsError: 1.60031e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06514e+00\tAbsError: 6.50814e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.73108e-04\tAbsError: 9.49496e-02\n", + " Region: \"zone_3\"\tRelError: 4.71141e+02\tAbsError: 3.66314e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.58557e+02\tAbsError: 1.93985e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11976e+02\tAbsError: 1.72329e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.06785e-01\tAbsError: 6.50815e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.73108e-04\tAbsError: 9.49496e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.60219e+00\tAbsError: 8.94480e+15\n", + " Region: \"zone_1\"\tRelError: 1.94666e+00\tAbsError: 4.23854e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.94666e+00\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.45611e-09\tAbsError: 1.89717e-06\n", + " Region: \"zone_3\"\tRelError: 1.65553e+00\tAbsError: 8.94480e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81552e-01\tAbsError: 5.00376e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.81482e-01\tAbsError: 3.94104e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.25006e-02\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.45755e-09\tAbsError: 1.89767e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.50135e+00\tAbsError: 2.91711e+14\n", + " Region: \"zone_1\"\tRelError: 6.56152e-02\tAbsError: 8.99300e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.54450e-02\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70192e-04\tAbsError: 5.91664e-02\n", + " Region: \"zone_3\"\tRelError: 1.43573e+00\tAbsError: 2.91711e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37693e-01\tAbsError: 1.49991e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32867e-01\tAbsError: 1.41720e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.50013e-02\tAbsError: 3.07641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70192e-04\tAbsError: 5.91664e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.43498e-01\tAbsError: 3.21382e+12\n", + " Region: \"zone_1\"\tRelError: 1.97019e-02\tAbsError: 1.49690e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96925e-02\tAbsError: 1.17194e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.34753e-06\tAbsError: 3.24960e-03\n", + " Region: \"zone_3\"\tRelError: 3.23797e-01\tAbsError: 3.21382e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.36008e-01\tAbsError: 2.01560e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.78387e-02\tAbsError: 1.19822e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.99403e-02\tAbsError: 1.17194e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.35162e-06\tAbsError: 3.25108e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.14910e+03\tAbsError: 2.04407e+15\n", + " Region: \"zone_1\"\tRelError: 5.71463e-01\tAbsError: 2.34617e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.70965e-01\tAbsError: 6.16388e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.97509e-04\tAbsError: 1.72979e-01\n", + " Region: \"zone_3\"\tRelError: 2.14852e+03\tAbsError: 2.04407e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34986e+03\tAbsError: 1.29772e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.98463e+02\tAbsError: 7.46348e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05158e-01\tAbsError: 6.16388e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.97509e-04\tAbsError: 1.72979e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.97407e+03\tAbsError: 3.02790e+15\n", + " Region: \"zone_1\"\tRelError: 1.06529e+00\tAbsError: 8.80521e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06521e+00\tAbsError: 5.91837e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.29279e-05\tAbsError: 2.88684e-02\n", + " Region: \"zone_3\"\tRelError: 2.97300e+03\tAbsError: 3.02790e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.51309e+02\tAbsError: 1.92031e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.62158e+03\tAbsError: 1.10759e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10085e-01\tAbsError: 5.91838e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.29699e-05\tAbsError: 2.88835e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.55313e+00\tAbsError: 3.33831e+14\n", + " Region: \"zone_1\"\tRelError: 7.29219e-02\tAbsError: 9.58119e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.27397e-02\tAbsError: 3.24496e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82263e-04\tAbsError: 6.33622e-02\n", + " Region: \"zone_3\"\tRelError: 1.48020e+00\tAbsError: 3.33831e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.59573e-01\tAbsError: 1.72457e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.54195e-01\tAbsError: 1.61374e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.62545e-02\tAbsError: 3.24501e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82263e-04\tAbsError: 6.33622e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.34092e-01\tAbsError: 3.63167e+13\n", + " Region: \"zone_1\"\tRelError: 4.74090e-02\tAbsError: 3.08415e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.73947e-02\tAbsError: 2.58899e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42431e-05\tAbsError: 4.95164e-03\n", + " Region: \"zone_3\"\tRelError: 8.86683e-01\tAbsError: 3.63167e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40041e-01\tAbsError: 2.66171e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.98905e-01\tAbsError: 9.69957e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.77237e-02\tAbsError: 2.58388e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42431e-05\tAbsError: 4.95164e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.71243e-02\tAbsError: 2.70156e+12\n", + " Region: \"zone_1\"\tRelError: 9.02595e-04\tAbsError: 2.64928e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.94971e-04\tAbsError: 1.55568e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.62398e-06\tAbsError: 2.64773e-03\n", + " Region: \"zone_3\"\tRelError: 7.62218e-02\tAbsError: 2.70156e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.36053e-02\tAbsError: 1.65880e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.79838e-04\tAbsError: 1.04276e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42896e-03\tAbsError: 1.62853e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.62398e-06\tAbsError: 2.64773e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.03260e+02\tAbsError: 8.32195e+14\n", + " Region: \"zone_1\"\tRelError: 2.61910e-01\tAbsError: 7.68414e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.61848e-01\tAbsError: 5.51938e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.22632e-05\tAbsError: 2.16475e-02\n", + " Region: \"zone_3\"\tRelError: 4.02998e+02\tAbsError: 8.32195e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.42678e+02\tAbsError: 5.88353e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.02190e+01\tAbsError: 2.43842e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01300e-01\tAbsError: 5.51939e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.22632e-05\tAbsError: 2.16475e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.40047e+04\tAbsError: 4.49493e+14\n", + " Region: \"zone_1\"\tRelError: 8.73537e-02\tAbsError: 9.02032e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.72448e-02\tAbsError: 5.23288e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08938e-04\tAbsError: 3.78743e-02\n", + " Region: \"zone_3\"\tRelError: 4.40046e+04\tAbsError: 4.49493e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87099e+02\tAbsError: 2.63668e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.37175e+04\tAbsError: 1.85825e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.76009e-02\tAbsError: 5.23289e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08938e-04\tAbsError: 3.78743e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.02097e+00\tAbsError: 4.08584e+13\n", + " Region: \"zone_1\"\tRelError: 5.08907e-02\tAbsError: 3.14127e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.08748e-02\tAbsError: 2.58834e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59049e-05\tAbsError: 5.52929e-03\n", + " Region: \"zone_3\"\tRelError: 9.70077e-01\tAbsError: 4.08584e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73651e-01\tAbsError: 2.99028e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.45246e-01\tAbsError: 1.09556e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.11640e-02\tAbsError: 2.58996e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59049e-05\tAbsError: 5.52929e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.84661e-01\tAbsError: 3.60668e+12\n", + " Region: \"zone_1\"\tRelError: 1.51217e-02\tAbsError: 1.24486e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51123e-02\tAbsError: 9.16566e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.44333e-06\tAbsError: 3.28295e-03\n", + " Region: \"zone_3\"\tRelError: 2.69539e-01\tAbsError: 3.60668e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12296e-01\tAbsError: 2.19850e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.19182e-02\tAbsError: 1.40818e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53153e-02\tAbsError: 9.16570e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.44333e-06\tAbsError: 3.28295e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.03129e-03\tAbsError: 1.30882e+12\n", + " Region: \"zone_1\"\tRelError: 1.71592e-04\tAbsError: 1.21225e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.71249e-04\tAbsError: 1.87177e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.42860e-07\tAbsError: 1.19353e-04\n", + " Region: \"zone_3\"\tRelError: 8.59698e-04\tAbsError: 1.30882e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.62718e-04\tAbsError: 3.58700e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.63159e-04\tAbsError: 9.50116e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.33478e-04\tAbsError: 1.87198e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.43020e-07\tAbsError: 1.19412e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.99477e+02\tAbsError: 1.64419e+14\n", + " Region: \"zone_1\"\tRelError: 7.79686e-02\tAbsError: 6.55201e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.79172e-02\tAbsError: 4.76397e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.14270e-05\tAbsError: 1.78804e-02\n", + " Region: \"zone_3\"\tRelError: 3.99399e+02\tAbsError: 1.64419e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.81466e+02\tAbsError: 9.03287e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.78544e+01\tAbsError: 7.40902e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.83657e-02\tAbsError: 4.76398e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.14270e-05\tAbsError: 1.78804e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.01826e+03\tAbsError: 2.61704e+14\n", + " Region: \"zone_1\"\tRelError: 7.59357e-02\tAbsError: 4.99197e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.59194e-02\tAbsError: 4.42519e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63213e-05\tAbsError: 5.66780e-03\n", + " Region: \"zone_3\"\tRelError: 1.01818e+03\tAbsError: 2.61704e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00513e+03\tAbsError: 1.47036e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29856e+01\tAbsError: 1.14668e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.78898e-02\tAbsError: 4.42520e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63433e-05\tAbsError: 5.67561e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.31742e-01\tAbsError: 3.18634e+12\n", + " Region: \"zone_1\"\tRelError: 1.90077e-02\tAbsError: 1.45577e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89985e-02\tAbsError: 1.13363e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.26664e-06\tAbsError: 3.22149e-03\n", + " Region: \"zone_3\"\tRelError: 3.12735e-01\tAbsError: 3.18634e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.29768e-01\tAbsError: 1.97921e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.37177e-02\tAbsError: 1.20713e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92397e-02\tAbsError: 1.13363e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.27048e-06\tAbsError: 3.22288e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.15193e-02\tAbsError: 3.32526e+12\n", + " Region: \"zone_1\"\tRelError: 1.39859e-03\tAbsError: 2.06485e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39268e-03\tAbsError: 1.45910e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.90356e-06\tAbsError: 2.05026e-03\n", + " Region: \"zone_3\"\tRelError: 6.01207e-02\tAbsError: 3.32526e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.70409e-02\tAbsError: 2.05868e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.81916e-04\tAbsError: 1.26659e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49202e-03\tAbsError: 1.52371e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.90356e-06\tAbsError: 2.05026e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.36928e-04\tAbsError: 9.81205e+10\n", + " Region: \"zone_1\"\tRelError: 3.23153e-05\tAbsError: 7.81886e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.20903e-05\tAbsError: 5.65537e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24962e-07\tAbsError: 7.81321e-05\n", + " Region: \"zone_3\"\tRelError: 1.04613e-04\tAbsError: 9.81205e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.45720e-06\tAbsError: 7.19535e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.38300e-06\tAbsError: 2.61671e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.95475e-05\tAbsError: 5.94976e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.25064e-07\tAbsError: 7.81656e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.96409e+02\tAbsError: 6.68527e+13\n", + " Region: \"zone_1\"\tRelError: 5.84302e-02\tAbsError: 4.24892e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.84192e-02\tAbsError: 3.86849e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09539e-05\tAbsError: 3.80426e-03\n", + " Region: \"zone_3\"\tRelError: 5.96351e+02\tAbsError: 6.68527e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.88544e+02\tAbsError: 3.45664e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.74762e+00\tAbsError: 3.22862e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.88590e-02\tAbsError: 3.86850e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09539e-05\tAbsError: 3.80426e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.30616e+02\tAbsError: 5.02085e+13\n", + " Region: \"zone_1\"\tRelError: 4.91483e-02\tAbsError: 4.53133e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.91176e-02\tAbsError: 3.46616e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.06722e-05\tAbsError: 1.06517e-02\n", + " Region: \"zone_3\"\tRelError: 1.30567e+02\tAbsError: 5.02085e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28276e+02\tAbsError: 3.22912e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.24066e+00\tAbsError: 1.79173e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.95443e-02\tAbsError: 3.46617e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.06722e-05\tAbsError: 1.06517e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.42804e-02\tAbsError: 2.67868e+12\n", + " Region: \"zone_1\"\tRelError: 9.10601e-04\tAbsError: 2.59909e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.03121e-04\tAbsError: 1.52325e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.47953e-06\tAbsError: 2.59757e-03\n", + " Region: \"zone_3\"\tRelError: 7.33698e-02\tAbsError: 2.67868e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.07907e-02\tAbsError: 1.63747e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.61085e-04\tAbsError: 1.04121e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41051e-03\tAbsError: 1.60476e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.47953e-06\tAbsError: 2.59757e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.41545e-04\tAbsError: 9.91625e+11\n", + " Region: \"zone_1\"\tRelError: 9.96172e-05\tAbsError: 1.41216e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.92156e-05\tAbsError: 1.43586e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.01542e-07\tAbsError: 1.39780e-04\n", + " Region: \"zone_3\"\tRelError: 5.41928e-04\tAbsError: 9.91625e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33841e-04\tAbsError: 2.52723e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.19501e-04\tAbsError: 7.38901e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88184e-04\tAbsError: 1.43630e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.01697e-07\tAbsError: 1.39836e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 8.05460e-05\tAbsError: 7.23632e+10\n", + " Region: \"zone_1\"\tRelError: 1.78531e-05\tAbsError: 3.23123e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78440e-05\tAbsError: 6.29009e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.10118e-09\tAbsError: 3.16833e-06\n", + " Region: \"zone_3\"\tRelError: 6.26929e-05\tAbsError: 7.23632e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.44791e-06\tAbsError: 2.95386e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.39399e-06\tAbsError: 4.28245e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.98419e-05\tAbsError: 6.30346e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.10613e-09\tAbsError: 3.17013e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:11\u001b[0m.\u001b[1;36m522\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:11\u001b[0m.\u001b[1;36m522\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.31666666666666665\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 8\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 1.50343e+00\tAbsError: 1.53730e+13\n", + " Region: \"zone_1\"\tRelError: 4.33572e-02\tAbsError: 3.51156e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.33370e-02\tAbsError: 2.81028e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.01921e-05\tAbsError: 7.01280e-03\n", + " Region: \"zone_3\"\tRelError: 1.46007e+00\tAbsError: 1.53730e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.95686e-01\tAbsError: 8.29728e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.20790e-01\tAbsError: 7.07575e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.35762e-02\tAbsError: 2.81030e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.01921e-05\tAbsError: 7.01280e-03\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.36741e+00\tAbsError: 1.62270e+13\n", + " Region: \"zone_1\"\tRelError: 3.93555e-02\tAbsError: 3.93757e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.93166e-02\tAbsError: 2.58717e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.88832e-05\tAbsError: 1.35040e-02\n", + " Region: \"zone_3\"\tRelError: 1.32805e+00\tAbsError: 1.62270e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.63434e-01\tAbsError: 4.27379e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.25261e-01\tAbsError: 1.19532e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.93166e-02\tAbsError: 2.57584e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.88832e-05\tAbsError: 1.35040e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.00690e-03\tAbsError: 1.28237e+12\n", + " Region: \"zone_1\"\tRelError: 1.69753e-04\tAbsError: 1.20834e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69412e-04\tAbsError: 1.83530e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.41841e-07\tAbsError: 1.18999e-04\n", + " Region: \"zone_3\"\tRelError: 8.37147e-04\tAbsError: 1.28237e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.59291e-04\tAbsError: 3.50666e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.59888e-04\tAbsError: 9.31705e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.17626e-04\tAbsError: 1.83551e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.41999e-07\tAbsError: 1.19057e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.93092e-04\tAbsError: 1.20954e+11\n", + " Region: \"zone_1\"\tRelError: 5.19797e-05\tAbsError: 5.49654e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.18217e-05\tAbsError: 7.13657e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58052e-07\tAbsError: 5.48940e-05\n", + " Region: \"zone_3\"\tRelError: 1.41112e-04\tAbsError: 1.20954e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98268e-06\tAbsError: 8.30723e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.89183e-06\tAbsError: 3.78820e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21079e-04\tAbsError: 7.51102e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58052e-07\tAbsError: 5.48940e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.41610e+04\tAbsError: 7.17639e+12\n", + " Region: \"zone_1\"\tRelError: 2.96810e-02\tAbsError: 3.09975e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96569e-02\tAbsError: 2.26509e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.40320e-05\tAbsError: 8.34661e-03\n", + " Region: \"zone_3\"\tRelError: 2.41610e+04\tAbsError: 7.17639e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.41609e+04\tAbsError: 2.45259e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.27385e-02\tAbsError: 4.72381e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.01714e-02\tAbsError: 2.26511e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.40320e-05\tAbsError: 8.34661e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.51593e+01\tAbsError: 8.96838e+15\n", + " Region: \"zone_1\"\tRelError: 1.34866e+01\tAbsError: 4.26184e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34866e+01\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19321e-08\tAbsError: 4.14799e-06\n", + " Region: \"zone_3\"\tRelError: 1.67273e+00\tAbsError: 8.96838e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83521e-01\tAbsError: 5.18188e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83502e-01\tAbsError: 3.78650e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05705e-01\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19332e-08\tAbsError: 4.14842e-06\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.12376e-01\tAbsError: 1.32407e+13\n", + " Region: \"zone_1\"\tRelError: 1.86149e-02\tAbsError: 3.04927e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85695e-02\tAbsError: 1.47195e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.54157e-05\tAbsError: 1.57733e-02\n", + " Region: \"zone_3\"\tRelError: 2.93761e-01\tAbsError: 1.32407e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.66530e-01\tAbsError: 2.89957e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.33838e-03\tAbsError: 1.03411e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88480e-02\tAbsError: 1.47197e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.54157e-05\tAbsError: 1.57733e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.38268e-04\tAbsError: 9.80909e+10\n", + " Region: \"zone_1\"\tRelError: 3.31894e-05\tAbsError: 7.64321e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.29695e-05\tAbsError: 5.65440e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19904e-07\tAbsError: 7.63755e-05\n", + " Region: \"zone_3\"\tRelError: 1.05079e-04\tAbsError: 9.80909e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.48584e-06\tAbsError: 7.16917e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.41212e-06\tAbsError: 2.63992e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.99609e-05\tAbsError: 5.94850e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19998e-07\tAbsError: 7.64063e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.80740e-05\tAbsError: 4.88620e+10\n", + " Region: \"zone_1\"\tRelError: 1.14716e-05\tAbsError: 6.01747e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14544e-05\tAbsError: 4.42564e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71588e-08\tAbsError: 5.97321e-06\n", + " Region: \"zone_3\"\tRelError: 3.66024e-05\tAbsError: 4.88620e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37844e-06\tAbsError: 1.78074e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.34110e-06\tAbsError: 3.10546e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78657e-05\tAbsError: 4.43686e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71664e-08\tAbsError: 5.97601e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:13\u001b[0m.\u001b[1;36m942\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:13\u001b[0m.\u001b[1;36m942\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.00256e+00\tAbsError: 6.29281e+12\n", + " Region: \"zone_1\"\tRelError: 7.36212e-04\tAbsError: 1.59319e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.90387e-04\tAbsError: 1.56092e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.58248e-05\tAbsError: 1.59163e-02\n", + " Region: \"zone_3\"\tRelError: 1.00182e+00\tAbsError: 6.29281e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99900e-01\tAbsError: 1.62050e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.58212e-03\tAbsError: 4.67230e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.95706e-04\tAbsError: 1.65113e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.58248e-05\tAbsError: 1.59163e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.00504e-02\tAbsError: 1.36312e+13\n", + " Region: \"zone_1\"\tRelError: 1.67906e-03\tAbsError: 2.32575e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61222e-03\tAbsError: 4.44749e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.68327e-05\tAbsError: 2.32131e-02\n", + " Region: \"zone_3\"\tRelError: 1.83714e-02\tAbsError: 1.36312e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46967e-02\tAbsError: 3.48400e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.86261e-03\tAbsError: 1.01472e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.45246e-04\tAbsError: 4.46143e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.68327e-05\tAbsError: 2.32131e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.61981e+00\tAbsError: 3.38008e+14\n", + " Region: \"zone_1\"\tRelError: 1.16883e-01\tAbsError: 9.15205e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16713e-01\tAbsError: 3.27224e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69163e-04\tAbsError: 5.87981e-02\n", + " Region: \"zone_3\"\tRelError: 1.50293e+00\tAbsError: 3.38008e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.63193e-01\tAbsError: 2.12677e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.58118e-01\tAbsError: 1.25331e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.14513e-02\tAbsError: 3.27228e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69163e-04\tAbsError: 5.87981e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 7.86748e-05\tAbsError: 7.06440e+10\n", + " Region: \"zone_1\"\tRelError: 1.77064e-05\tAbsError: 3.31365e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76970e-05\tAbsError: 6.14599e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.34205e-09\tAbsError: 3.25219e-06\n", + " Region: \"zone_3\"\tRelError: 6.09684e-05\tAbsError: 7.06440e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.30255e-06\tAbsError: 2.87455e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.24987e-06\tAbsError: 4.18985e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.84067e-05\tAbsError: 6.15954e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.34693e-09\tAbsError: 3.25397e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:15\u001b[0m.\u001b[1;36m252\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:15\u001b[0m.\u001b[1;36m252\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.3142857142857143\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 9.12538e-03\tAbsError: 8.29355e+12\n", + " Region: \"zone_1\"\tRelError: 2.08099e-03\tAbsError: 2.64686e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08026e-03\tAbsError: 1.04771e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.31107e-07\tAbsError: 2.54209e-04\n", + " Region: \"zone_3\"\tRelError: 7.04439e-03\tAbsError: 8.29355e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.92988e-04\tAbsError: 2.67109e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10434e-03\tAbsError: 5.62246e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.94633e-03\tAbsError: 1.05727e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.31107e-07\tAbsError: 2.54209e-04\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.29649e+01\tAbsError: 8.28032e+15\n", + " Region: \"zone_1\"\tRelError: 1.13261e+01\tAbsError: 4.09567e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13261e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.18696e-09\tAbsError: 2.49605e-06\n", + " Region: \"zone_3\"\tRelError: 1.63880e+00\tAbsError: 8.28032e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69633e-01\tAbsError: 4.77284e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.50748e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.95556e-02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.18788e-09\tAbsError: 2.49640e-06\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.34158e-02\tAbsError: 1.19582e+13\n", + " Region: \"zone_1\"\tRelError: 3.01432e-03\tAbsError: 2.59188e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.01362e-03\tAbsError: 1.51937e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.01730e-07\tAbsError: 2.43995e-04\n", + " Region: \"zone_3\"\tRelError: 1.04015e-02\tAbsError: 1.19582e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61556e-03\tAbsError: 3.90956e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.61419e-03\tAbsError: 8.04867e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.17105e-03\tAbsError: 1.53319e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.01730e-07\tAbsError: 2.43995e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.06676e+00\tAbsError: 5.12834e+13\n", + " Region: \"zone_1\"\tRelError: 6.50919e-02\tAbsError: 3.26334e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.50725e-02\tAbsError: 2.58998e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93722e-05\tAbsError: 6.73357e-03\n", + " Region: \"zone_3\"\tRelError: 1.00167e+00\tAbsError: 5.12834e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.79460e-01\tAbsError: 3.67676e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.56350e-01\tAbsError: 1.45158e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.58436e-02\tAbsError: 2.58998e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93722e-05\tAbsError: 6.73357e-03\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 7.21813e-04\tAbsError: 2.25467e+11\n", + " Region: \"zone_1\"\tRelError: 2.08779e-04\tAbsError: 5.42838e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07217e-04\tAbsError: 2.20109e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56221e-06\tAbsError: 5.42618e-04\n", + " Region: \"zone_3\"\tRelError: 5.13033e-04\tAbsError: 2.25467e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.86463e-05\tAbsError: 1.06489e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.23441e-05\tAbsError: 1.18978e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.40481e-04\tAbsError: 2.22554e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56221e-06\tAbsError: 5.42618e-04\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 9.02425e-04\tAbsError: 1.99437e+11\n", + " Region: \"zone_1\"\tRelError: 2.58845e-04\tAbsError: 7.78826e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.56603e-04\tAbsError: 2.13625e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24165e-06\tAbsError: 7.78612e-04\n", + " Region: \"zone_3\"\tRelError: 6.43580e-04\tAbsError: 1.99437e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.56078e-05\tAbsError: 9.74981e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.71798e-05\tAbsError: 1.01939e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.38550e-04\tAbsError: 2.16344e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24165e-06\tAbsError: 7.78612e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.07146e+01\tAbsError: 8.87010e+15\n", + " Region: \"zone_1\"\tRelError: 1.90470e+01\tAbsError: 4.23875e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90470e+01\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16096e-08\tAbsError: 4.03587e-06\n", + " Region: \"zone_3\"\tRelError: 1.66756e+00\tAbsError: 8.87010e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81640e-01\tAbsError: 5.12336e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.81621e-01\tAbsError: 3.74674e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04297e-01\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16105e-08\tAbsError: 4.03627e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.56865e+00\tAbsError: 2.86625e+14\n", + " Region: \"zone_1\"\tRelError: 1.21045e-01\tAbsError: 8.55195e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20888e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", + " Region: \"zone_3\"\tRelError: 1.44761e+00\tAbsError: 2.86625e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38556e-01\tAbsError: 1.75436e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32332e-01\tAbsError: 1.11189e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.65613e-02\tAbsError: 3.07640e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.56380e-01\tAbsError: 9.04740e+12\n", + " Region: \"zone_1\"\tRelError: 2.49262e-02\tAbsError: 1.46131e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49178e-02\tAbsError: 1.17194e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.32536e-06\tAbsError: 2.89371e-03\n", + " Region: \"zone_3\"\tRelError: 3.31454e-01\tAbsError: 9.04740e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.35521e-01\tAbsError: 4.40011e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.07755e-02\tAbsError: 4.64729e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51491e-02\tAbsError: 1.17194e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.32897e-06\tAbsError: 2.89505e-03\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 7.51484e-04\tAbsError: 5.30342e+11\n", + " Region: \"zone_1\"\tRelError: 1.98140e-04\tAbsError: 4.91935e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.98000e-04\tAbsError: 4.10646e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40303e-07\tAbsError: 4.87829e-05\n", + " Region: \"zone_3\"\tRelError: 5.53344e-04\tAbsError: 5.30342e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.26355e-05\tAbsError: 2.47265e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.22787e-05\tAbsError: 2.83078e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.48289e-04\tAbsError: 4.14967e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40344e-07\tAbsError: 4.87992e-05\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.07606e-03\tAbsError: 7.60704e+11\n", + " Region: \"zone_1\"\tRelError: 2.83483e-04\tAbsError: 6.31258e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83303e-04\tAbsError: 5.87620e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79864e-07\tAbsError: 6.25382e-05\n", + " Region: \"zone_3\"\tRelError: 7.92573e-04\tAbsError: 7.60704e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.55839e-05\tAbsError: 3.56391e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.50650e-05\tAbsError: 4.04313e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.41744e-04\tAbsError: 5.93824e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79923e-07\tAbsError: 6.25610e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.65224e+00\tAbsError: 3.30458e+14\n", + " Region: \"zone_1\"\tRelError: 1.57009e-01\tAbsError: 9.06724e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56841e-01\tAbsError: 3.24496e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67507e-04\tAbsError: 5.82228e-02\n", + " Region: \"zone_3\"\tRelError: 1.49523e+00\tAbsError: 3.30458e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.59966e-01\tAbsError: 2.07139e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.54489e-01\tAbsError: 1.23319e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.06062e-02\tAbsError: 3.24500e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67507e-04\tAbsError: 5.82228e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.63437e-01\tAbsError: 3.66677e+13\n", + " Region: \"zone_1\"\tRelError: 5.93231e-02\tAbsError: 3.16919e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.93064e-02\tAbsError: 2.58707e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", + " Region: \"zone_3\"\tRelError: 9.04114e-01\tAbsError: 3.66677e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40101e-01\tAbsError: 2.63702e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.04471e-01\tAbsError: 1.02975e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95256e-02\tAbsError: 2.58992e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 9.94176e-05\tAbsError: 4.63529e+10\n", + " Region: \"zone_1\"\tRelError: 2.82717e-05\tAbsError: 3.58236e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.81688e-05\tAbsError: 3.47638e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02932e-07\tAbsError: 3.57889e-05\n", + " Region: \"zone_3\"\tRelError: 7.11459e-05\tAbsError: 4.63529e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.74636e-06\tAbsError: 2.47913e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.72724e-06\tAbsError: 2.15617e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.15693e-05\tAbsError: 3.51735e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02964e-07\tAbsError: 3.58017e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.71858e-02\tAbsError: 2.48975e+12\n", + " Region: \"zone_1\"\tRelError: 4.95435e-04\tAbsError: 1.88796e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.90019e-04\tAbsError: 7.50834e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.41520e-06\tAbsError: 1.88045e-03\n", + " Region: \"zone_3\"\tRelError: 7.66904e-02\tAbsError: 2.48975e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.37927e-02\tAbsError: 1.70657e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.15461e-04\tAbsError: 7.83185e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.37684e-03\tAbsError: 8.21515e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.41520e-06\tAbsError: 1.88045e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:18\u001b[0m.\u001b[1;36m902\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.20625\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 1.31491e-04\tAbsError: 5.90327e+10\n", + " Region: \"zone_1\"\tRelError: 3.75774e-05\tAbsError: 5.09852e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74309e-05\tAbsError: 4.46319e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46509e-07\tAbsError: 5.09406e-05\n", + " Region: \"zone_3\"\tRelError: 9.39133e-05\tAbsError: 5.90327e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.09582e-06\tAbsError: 3.17063e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.07438e-06\tAbsError: 2.73264e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.15965e-05\tAbsError: 4.51622e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46557e-07\tAbsError: 5.09593e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.05263e+00\tAbsError: 4.89278e+13\n", + " Region: \"zone_1\"\tRelError: 6.39420e-02\tAbsError: 3.23900e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.39231e-02\tAbsError: 2.57993e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89612e-05\tAbsError: 6.59072e-03\n", + " Region: \"zone_3\"\tRelError: 9.88693e-01\tAbsError: 4.89278e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.74016e-01\tAbsError: 3.50971e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.49565e-01\tAbsError: 1.38306e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.50930e-02\tAbsError: 2.58802e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89612e-05\tAbsError: 6.59072e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.93334e-01\tAbsError: 6.56738e+12\n", + " Region: \"zone_1\"\tRelError: 1.86981e-02\tAbsError: 1.19586e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86900e-02\tAbsError: 9.16562e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03535e-06\tAbsError: 2.79297e-03\n", + " Region: \"zone_3\"\tRelError: 2.74636e-01\tAbsError: 6.56738e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11907e-01\tAbsError: 3.29549e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.38500e-02\tAbsError: 3.27189e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88710e-02\tAbsError: 9.16566e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03753e-06\tAbsError: 2.79381e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.10907e-04\tAbsError: 9.14094e+11\n", + " Region: \"zone_1\"\tRelError: 7.15278e-05\tAbsError: 1.30119e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.11580e-05\tAbsError: 1.37277e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.69875e-07\tAbsError: 1.28746e-04\n", + " Region: \"zone_3\"\tRelError: 4.39379e-04\tAbsError: 9.14094e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03940e-04\tAbsError: 2.24049e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.64320e-05\tAbsError: 6.90046e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38638e-04\tAbsError: 1.37888e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.70033e-07\tAbsError: 1.28803e-04\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 8.12362e-05\tAbsError: 4.99851e+10\n", + " Region: \"zone_1\"\tRelError: 2.21078e-05\tAbsError: 7.18095e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20873e-05\tAbsError: 3.43586e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.05530e-08\tAbsError: 7.14659e-06\n", + " Region: \"zone_3\"\tRelError: 5.91283e-05\tAbsError: 4.99851e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.81529e-06\tAbsError: 2.69257e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.77928e-06\tAbsError: 2.30594e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.95132e-05\tAbsError: 3.47436e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.05582e-08\tAbsError: 7.14842e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:20\u001b[0m.\u001b[1;36m634\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.2\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Iteration: 0\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 3.61409e+00\tAbsError: 8.87025e+15\n", + " Region: \"zone_1\"\tRelError: 1.96227e+00\tAbsError: 4.22144e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96227e+00\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53160e-08\tAbsError: 5.32561e-06\n", + " Region: \"zone_3\"\tRelError: 1.65183e+00\tAbsError: 8.87025e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80120e-01\tAbsError: 4.96206e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.80050e-01\tAbsError: 3.90819e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.16591e-02\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53200e-08\tAbsError: 5.32700e-06\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.43950e-01\tAbsError: 8.64627e+12\n", + " Region: \"zone_1\"\tRelError: 2.39638e-02\tAbsError: 1.42586e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39554e-02\tAbsError: 1.13362e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.40795e-06\tAbsError: 2.92243e-03\n", + " Region: \"zone_3\"\tRelError: 3.19986e-01\tAbsError: 8.64627e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.29295e-01\tAbsError: 4.22448e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.65001e-02\tAbsError: 4.42180e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41829e-02\tAbsError: 1.13362e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.41081e-06\tAbsError: 2.92350e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.00158e-02\tAbsError: 2.47729e+12\n", + " Region: \"zone_1\"\tRelError: 6.29744e-04\tAbsError: 1.66755e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.24968e-04\tAbsError: 8.94858e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", + " Region: \"zone_3\"\tRelError: 5.93860e-02\tAbsError: 2.47729e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.68115e-02\tAbsError: 1.70064e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.91678e-04\tAbsError: 7.76647e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27809e-03\tAbsError: 9.43816e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.52706e-04\tAbsError: 1.10689e+11\n", + " Region: \"zone_1\"\tRelError: 2.31976e-05\tAbsError: 5.03793e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30527e-05\tAbsError: 6.72451e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44875e-07\tAbsError: 5.03120e-05\n", + " Region: \"zone_3\"\tRelError: 1.29508e-04\tAbsError: 1.10689e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80539e-06\tAbsError: 7.67002e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.73296e-06\tAbsError: 3.39885e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13825e-04\tAbsError: 7.02938e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44875e-07\tAbsError: 5.03120e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.54654e+00\tAbsError: 3.28495e+14\n", + " Region: \"zone_1\"\tRelError: 7.19115e-02\tAbsError: 9.50734e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.17307e-02\tAbsError: 3.22436e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80731e-04\tAbsError: 6.28298e-02\n", + " Region: \"zone_3\"\tRelError: 1.47463e+00\tAbsError: 3.28495e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57124e-01\tAbsError: 1.69631e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.51422e-01\tAbsError: 1.58864e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.59065e-02\tAbsError: 3.22440e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80731e-04\tAbsError: 6.28298e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.71665e+00\tAbsError: 8.34849e+15\n", + " Region: \"zone_1\"\tRelError: 2.08783e+00\tAbsError: 4.09579e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08783e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04731e-08\tAbsError: 3.64165e-06\n", + " Region: \"zone_3\"\tRelError: 1.62882e+00\tAbsError: 8.34849e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69544e-01\tAbsError: 4.67018e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69471e-01\tAbsError: 3.67831e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.98079e-02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04757e-08\tAbsError: 3.64256e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.43999e-02\tAbsError: 2.50743e+12\n", + " Region: \"zone_1\"\tRelError: 5.75118e-04\tAbsError: 1.79845e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.69963e-04\tAbsError: 8.13347e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.15562e-06\tAbsError: 1.79032e-03\n", + " Region: \"zone_3\"\tRelError: 7.38248e-02\tAbsError: 2.50743e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.09416e-02\tAbsError: 1.74296e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.77666e-04\tAbsError: 7.64461e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.40034e-03\tAbsError: 8.85193e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.15562e-06\tAbsError: 1.79032e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.31240e-04\tAbsError: 7.97937e+11\n", + " Region: \"zone_1\"\tRelError: 7.54533e-05\tAbsError: 1.27890e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.50894e-05\tAbsError: 1.20855e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.63943e-07\tAbsError: 1.26681e-04\n", + " Region: \"zone_3\"\tRelError: 3.55787e-04\tAbsError: 7.97937e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.38045e-05\tAbsError: 1.92064e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.48742e-05\tAbsError: 6.05872e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76744e-04\tAbsError: 1.21338e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.64089e-07\tAbsError: 1.26735e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.67402e-05\tAbsError: 4.44671e+10\n", + " Region: \"zone_1\"\tRelError: 5.00968e-06\tAbsError: 5.56992e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.99380e-06\tAbsError: 4.22760e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58803e-08\tAbsError: 5.52764e-06\n", + " Region: \"zone_3\"\tRelError: 3.17305e-05\tAbsError: 4.44671e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.48788e-06\tAbsError: 1.56747e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.45722e-06\tAbsError: 2.87924e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.47695e-05\tAbsError: 4.23466e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58876e-08\tAbsError: 5.53032e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:23\u001b[0m.\u001b[1;36m243\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:23\u001b[0m.\u001b[1;36m243\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.42500000000000004\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.01137e+00\tAbsError: 4.02464e+13\n", + " Region: \"zone_1\"\tRelError: 5.08084e-02\tAbsError: 3.13392e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.07928e-02\tAbsError: 2.58948e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56605e-05\tAbsError: 5.44435e-03\n", + " Region: \"zone_3\"\tRelError: 9.60566e-01\tAbsError: 4.02464e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.69512e-01\tAbsError: 2.94578e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.40217e-01\tAbsError: 1.07885e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.08220e-02\tAbsError: 2.58948e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56605e-05\tAbsError: 5.44435e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.50135e+00\tAbsError: 2.91713e+14\n", + " Region: \"zone_1\"\tRelError: 6.56152e-02\tAbsError: 8.99315e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.54450e-02\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70196e-04\tAbsError: 5.91678e-02\n", + " Region: \"zone_3\"\tRelError: 1.43573e+00\tAbsError: 2.91713e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37692e-01\tAbsError: 1.49991e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32867e-01\tAbsError: 1.41722e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.50013e-02\tAbsError: 3.07641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70196e-04\tAbsError: 5.91678e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.87646e-04\tAbsError: 8.67749e+11\n", + " Region: \"zone_1\"\tRelError: 9.48770e-05\tAbsError: 1.33724e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.44966e-05\tAbsError: 1.30548e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.80432e-07\tAbsError: 1.32419e-04\n", + " Region: \"zone_3\"\tRelError: 3.92769e-04\tAbsError: 8.67749e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99341e-05\tAbsError: 2.09226e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.08980e-05\tAbsError: 6.58523e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01556e-04\tAbsError: 1.31118e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.80586e-07\tAbsError: 1.32476e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.53826e-04\tAbsError: 1.09912e+11\n", + " Region: \"zone_1\"\tRelError: 2.29821e-05\tAbsError: 4.27473e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.28592e-05\tAbsError: 6.65170e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", + " Region: \"zone_3\"\tRelError: 1.30844e-04\tAbsError: 1.09912e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.01681e-06\tAbsError: 7.52234e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94349e-06\tAbsError: 3.46881e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14760e-04\tAbsError: 6.98367e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.23075e-01\tAbsError: 3.16705e+12\n", + " Region: \"zone_1\"\tRelError: 1.84960e-02\tAbsError: 1.42995e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84867e-02\tAbsError: 1.10528e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.33912e-06\tAbsError: 3.24669e-03\n", + " Region: \"zone_3\"\tRelError: 3.04579e-01\tAbsError: 3.16705e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.25074e-01\tAbsError: 1.95756e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.07733e-02\tAbsError: 1.20949e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87230e-02\tAbsError: 1.10529e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.34182e-06\tAbsError: 3.24769e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.40360e+00\tAbsError: 8.93831e+15\n", + " Region: \"zone_1\"\tRelError: 3.72095e+00\tAbsError: 4.26165e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.72095e+00\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.53609e-09\tAbsError: 2.26975e-06\n", + " Region: \"zone_3\"\tRelError: 1.68266e+00\tAbsError: 8.93831e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83544e-01\tAbsError: 5.27519e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83519e-01\tAbsError: 3.66312e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15595e-01\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.53754e-09\tAbsError: 2.27028e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.34092e-01\tAbsError: 3.63177e+13\n", + " Region: \"zone_1\"\tRelError: 4.74090e-02\tAbsError: 3.08419e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.73947e-02\tAbsError: 2.58899e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42440e-05\tAbsError: 4.95195e-03\n", + " Region: \"zone_3\"\tRelError: 8.86683e-01\tAbsError: 3.63177e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40041e-01\tAbsError: 2.66179e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.98905e-01\tAbsError: 9.69979e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.77237e-02\tAbsError: 2.58388e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42440e-05\tAbsError: 4.95195e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.59899e-04\tAbsError: 1.14890e+11\n", + " Region: \"zone_1\"\tRelError: 2.42180e-05\tAbsError: 4.68879e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.40832e-05\tAbsError: 6.97131e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34814e-07\tAbsError: 4.68182e-05\n", + " Region: \"zone_3\"\tRelError: 1.35681e-04\tAbsError: 1.14890e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.20069e-06\tAbsError: 7.87113e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.12587e-06\tAbsError: 3.61787e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19220e-04\tAbsError: 7.29649e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34814e-07\tAbsError: 4.68182e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.84860e-05\tAbsError: 3.70987e+10\n", + " Region: \"zone_1\"\tRelError: 3.74711e-06\tAbsError: 5.87951e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.73032e-06\tAbsError: 3.58594e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67880e-08\tAbsError: 5.84365e-06\n", + " Region: \"zone_3\"\tRelError: 2.47389e-05\tAbsError: 3.70987e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96764e-06\tAbsError: 1.24118e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.94133e-06\tAbsError: 2.46869e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88131e-05\tAbsError: 3.59119e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67950e-08\tAbsError: 5.84625e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:25\u001b[0m.\u001b[1;36m679\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.4\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.22904e-02\tAbsError: 2.68712e+12\n", + " Region: \"zone_1\"\tRelError: 9.38094e-04\tAbsError: 2.50767e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.30878e-04\tAbsError: 1.54437e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.21623e-06\tAbsError: 2.50613e-03\n", + " Region: \"zone_3\"\tRelError: 7.13523e-02\tAbsError: 2.68712e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.87484e-02\tAbsError: 1.64198e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.60494e-04\tAbsError: 1.04514e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.43618e-03\tAbsError: 1.62292e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.21623e-06\tAbsError: 2.50613e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.63245e+00\tAbsError: 4.50331e+14\n", + " Region: \"zone_1\"\tRelError: 1.12831e-01\tAbsError: 8.29307e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12687e-01\tAbsError: 3.27223e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44470e-04\tAbsError: 5.02084e-02\n", + " Region: \"zone_3\"\tRelError: 1.51962e+00\tAbsError: 4.50331e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.64568e-01\tAbsError: 3.01705e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.56309e-01\tAbsError: 1.48626e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.85960e-02\tAbsError: 3.27226e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44470e-04\tAbsError: 5.02084e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.84661e-01\tAbsError: 3.60692e+12\n", + " Region: \"zone_1\"\tRelError: 1.51217e-02\tAbsError: 1.24488e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51123e-02\tAbsError: 9.16566e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.44377e-06\tAbsError: 3.28310e-03\n", + " Region: \"zone_3\"\tRelError: 2.69539e-01\tAbsError: 3.60692e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12296e-01\tAbsError: 2.19871e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.19182e-02\tAbsError: 1.40821e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53153e-02\tAbsError: 9.16570e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.44377e-06\tAbsError: 3.28310e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.21525e-05\tAbsError: 4.09265e+10\n", + " Region: \"zone_1\"\tRelError: 4.32183e-06\tAbsError: 6.02671e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.30463e-06\tAbsError: 3.93885e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72009e-08\tAbsError: 5.98732e-06\n", + " Region: \"zone_3\"\tRelError: 2.78307e-05\tAbsError: 4.09265e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.21775e-06\tAbsError: 1.39104e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.18932e-06\tAbsError: 2.70161e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.14064e-05\tAbsError: 3.94543e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72083e-08\tAbsError: 5.99004e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:26\u001b[0m.\u001b[1;36m874\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:26\u001b[0m.\u001b[1;36m874\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.4214285714285714\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.87618e+01\tAbsError: 8.25603e+15\n", + " Region: \"zone_1\"\tRelError: 2.71120e+01\tAbsError: 4.09561e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.71120e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.29384e-09\tAbsError: 1.83846e-06\n", + " Region: \"zone_3\"\tRelError: 1.64979e+00\tAbsError: 8.25603e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69658e-01\tAbsError: 4.86497e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69634e-01\tAbsError: 3.39106e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10500e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.29480e-09\tAbsError: 1.83875e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.39950e-04\tAbsError: 1.23354e+12\n", + " Region: \"zone_1\"\tRelError: 1.57429e-04\tAbsError: 1.24528e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57077e-04\tAbsError: 1.76859e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52644e-07\tAbsError: 1.22759e-04\n", + " Region: \"zone_3\"\tRelError: 7.82521e-04\tAbsError: 1.23354e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52512e-04\tAbsError: 3.33639e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.52950e-04\tAbsError: 8.99898e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.76706e-04\tAbsError: 1.76879e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52798e-07\tAbsError: 1.22816e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.11920e+00\tAbsError: 1.70835e+14\n", + " Region: \"zone_1\"\tRelError: 8.61460e-02\tAbsError: 3.38462e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.61230e-02\tAbsError: 2.58705e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29490e-05\tAbsError: 7.97577e-03\n", + " Region: \"zone_3\"\tRelError: 1.03306e+00\tAbsError: 1.70835e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.80607e-01\tAbsError: 1.02403e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.65100e-01\tAbsError: 6.84321e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.73272e-02\tAbsError: 2.58550e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29490e-05\tAbsError: 7.97577e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.15194e-02\tAbsError: 3.32536e+12\n", + " Region: \"zone_1\"\tRelError: 1.39864e-03\tAbsError: 2.06494e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39274e-03\tAbsError: 1.45908e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.90382e-06\tAbsError: 2.05035e-03\n", + " Region: \"zone_3\"\tRelError: 6.01208e-02\tAbsError: 3.32536e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.70408e-02\tAbsError: 2.05875e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.81903e-04\tAbsError: 1.26661e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49215e-03\tAbsError: 1.52370e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.90382e-06\tAbsError: 2.05035e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.87963e+00\tAbsError: 8.84093e+15\n", + " Region: \"zone_1\"\tRelError: 4.20217e+00\tAbsError: 4.23855e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.20217e+00\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.89716e-09\tAbsError: 2.04796e-06\n", + " Region: \"zone_3\"\tRelError: 1.67746e+00\tAbsError: 8.84093e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81663e-01\tAbsError: 5.21686e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.81639e-01\tAbsError: 3.62407e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14160e-01\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.89891e-09\tAbsError: 2.04851e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.69855e+00\tAbsError: 3.40458e+14\n", + " Region: \"zone_1\"\tRelError: 2.34470e-01\tAbsError: 7.85796e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34332e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", + " Region: \"zone_3\"\tRelError: 1.46408e+00\tAbsError: 3.40458e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39247e-01\tAbsError: 2.37038e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.31799e-01\tAbsError: 1.03420e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.29010e-02\tAbsError: 3.07639e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.47453e-04\tAbsError: 1.02312e+11\n", + " Region: \"zone_1\"\tRelError: 3.59361e-05\tAbsError: 7.27621e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.57268e-05\tAbsError: 5.90810e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.09330e-07\tAbsError: 7.27030e-05\n", + " Region: \"zone_3\"\tRelError: 1.11516e-04\tAbsError: 1.02312e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.91266e-06\tAbsError: 7.37581e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83718e-06\tAbsError: 2.85535e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.55573e-05\tAbsError: 6.21546e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.09397e-07\tAbsError: 7.27246e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.93271e-01\tAbsError: 6.53839e+13\n", + " Region: \"zone_1\"\tRelError: 3.24859e-02\tAbsError: 1.44118e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.24781e-02\tAbsError: 1.17193e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.75605e-06\tAbsError: 2.69257e-03\n", + " Region: \"zone_3\"\tRelError: 3.60785e-01\tAbsError: 6.53839e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.33638e-01\tAbsError: 2.83523e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.43002e-02\tAbsError: 3.70316e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.28392e-02\tAbsError: 1.17193e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.76255e-06\tAbsError: 2.69487e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.41555e-04\tAbsError: 9.91702e+11\n", + " Region: \"zone_1\"\tRelError: 9.96160e-05\tAbsError: 1.41223e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.92144e-05\tAbsError: 1.43594e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.01564e-07\tAbsError: 1.39787e-04\n", + " Region: \"zone_3\"\tRelError: 5.41939e-04\tAbsError: 9.91702e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33847e-04\tAbsError: 2.52734e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.19506e-04\tAbsError: 7.38968e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88185e-04\tAbsError: 1.43639e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.01719e-07\tAbsError: 1.39844e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.62508e+00\tAbsError: 4.33655e+14\n", + " Region: \"zone_1\"\tRelError: 1.12712e-01\tAbsError: 8.23385e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12568e-01\tAbsError: 3.24496e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43550e-04\tAbsError: 4.98890e-02\n", + " Region: \"zone_3\"\tRelError: 1.51236e+00\tAbsError: 4.33655e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.61271e-01\tAbsError: 2.92644e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.52818e-01\tAbsError: 1.41011e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.81319e-02\tAbsError: 3.24499e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43550e-04\tAbsError: 4.98890e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.10009e+00\tAbsError: 9.49766e+13\n", + " Region: \"zone_1\"\tRelError: 1.69910e-01\tAbsError: 3.26443e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69891e-01\tAbsError: 2.58991e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", + " Region: \"zone_3\"\tRelError: 9.30185e-01\tAbsError: 9.49766e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40985e-01\tAbsError: 5.67002e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.12174e-01\tAbsError: 3.82763e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.70066e-02\tAbsError: 2.58994e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 7.33267e-05\tAbsError: 6.68891e+10\n", + " Region: \"zone_1\"\tRelError: 1.66207e-05\tAbsError: 3.79072e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66100e-05\tAbsError: 5.85273e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07209e-08\tAbsError: 3.73220e-06\n", + " Region: \"zone_3\"\tRelError: 5.67059e-05\tAbsError: 6.68891e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.97072e-06\tAbsError: 2.68259e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.92076e-06\tAbsError: 4.00632e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.48037e-05\tAbsError: 5.86589e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07263e-08\tAbsError: 3.73415e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.06829e-02\tAbsError: 1.23607e+13\n", + " Region: \"zone_1\"\tRelError: 2.59544e-03\tAbsError: 2.08969e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58964e-03\tAbsError: 7.73904e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.79536e-06\tAbsError: 2.01230e-03\n", + " Region: \"zone_3\"\tRelError: 7.80875e-02\tAbsError: 1.23607e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.13217e-02\tAbsError: 6.44704e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.62937e-03\tAbsError: 5.91371e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13063e-03\tAbsError: 8.57603e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.79536e-06\tAbsError: 2.01230e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:30\u001b[0m.\u001b[1;36m695\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.3125\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Iteration: 6\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 1.93102e-04\tAbsError: 1.20961e+11\n", + " Region: \"zone_1\"\tRelError: 5.19826e-05\tAbsError: 5.49689e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.18246e-05\tAbsError: 7.13695e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58063e-07\tAbsError: 5.48975e-05\n", + " Region: \"zone_3\"\tRelError: 1.41120e-04\tAbsError: 1.20961e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98321e-06\tAbsError: 8.30767e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.89236e-06\tAbsError: 3.78842e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21086e-04\tAbsError: 7.51141e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58063e-07\tAbsError: 5.48975e-05\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.10442e+00\tAbsError: 1.57445e+14\n", + " Region: \"zone_1\"\tRelError: 8.48445e-02\tAbsError: 3.35487e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.48221e-02\tAbsError: 2.57873e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23322e-05\tAbsError: 7.76143e-03\n", + " Region: \"zone_3\"\tRelError: 1.01957e+00\tAbsError: 1.57445e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.75187e-01\tAbsError: 9.44436e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.58188e-01\tAbsError: 6.30009e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.61734e-02\tAbsError: 2.58679e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23322e-05\tAbsError: 7.76143e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.56252e-01\tAbsError: 3.42527e+13\n", + " Region: \"zone_1\"\tRelError: 6.41646e-02\tAbsError: 1.11813e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.41588e-02\tAbsError: 9.16555e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.79958e-06\tAbsError: 2.01571e-03\n", + " Region: \"zone_3\"\tRelError: 2.92088e-01\tAbsError: 3.42527e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07223e-01\tAbsError: 1.60452e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.07953e-02\tAbsError: 1.82076e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.40630e-02\tAbsError: 9.16559e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.80279e-06\tAbsError: 2.01683e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.14255e-04\tAbsError: 9.40247e+11\n", + " Region: \"zone_1\"\tRelError: 6.54694e-05\tAbsError: 1.40506e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.50689e-05\tAbsError: 1.28698e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.00564e-07\tAbsError: 1.39219e-04\n", + " Region: \"zone_3\"\tRelError: 5.48785e-04\tAbsError: 9.40247e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68628e-04\tAbsError: 2.33690e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.89618e-05\tAbsError: 7.06557e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.90795e-04\tAbsError: 1.29752e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.00564e-07\tAbsError: 1.39219e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.80758e-05\tAbsError: 4.88651e+10\n", + " Region: \"zone_1\"\tRelError: 1.14719e-05\tAbsError: 6.01780e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14548e-05\tAbsError: 4.42595e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71598e-08\tAbsError: 5.97354e-06\n", + " Region: \"zone_3\"\tRelError: 3.66039e-05\tAbsError: 4.88651e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37869e-06\tAbsError: 1.78080e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.34136e-06\tAbsError: 3.10571e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78667e-05\tAbsError: 4.43717e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71674e-08\tAbsError: 5.97634e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:32\u001b[0m.\u001b[1;36m303\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:32\u001b[0m.\u001b[1;36m303\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.94848e+01\tAbsError: 8.79639e+15\n", + " Region: \"zone_1\"\tRelError: 2.78194e+01\tAbsError: 4.22128e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78194e+01\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08286e-08\tAbsError: 3.76437e-06\n", + " Region: \"zone_3\"\tRelError: 1.66544e+00\tAbsError: 8.79639e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80208e-01\tAbsError: 5.07949e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.80189e-01\tAbsError: 3.71690e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05047e-01\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08292e-08\tAbsError: 3.76466e-06\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.79288e-01\tAbsError: 5.94006e+13\n", + " Region: \"zone_1\"\tRelError: 3.11470e-02\tAbsError: 1.39501e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.11395e-02\tAbsError: 1.13362e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.52960e-06\tAbsError: 2.61394e-03\n", + " Region: \"zone_3\"\tRelError: 3.48141e-01\tAbsError: 5.94006e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.27166e-01\tAbsError: 2.60599e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.94917e-02\tAbsError: 3.33408e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.14750e-02\tAbsError: 1.13362e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.53142e-06\tAbsError: 2.61458e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.59960e-02\tAbsError: 3.73217e+12\n", + " Region: \"zone_1\"\tRelError: 7.31305e-03\tAbsError: 2.21475e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.30674e-03\tAbsError: 2.57182e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", + " Region: \"zone_3\"\tRelError: 5.86829e-02\tAbsError: 3.73217e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.62142e-02\tAbsError: 2.07187e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.09163e-04\tAbsError: 1.66031e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65329e-03\tAbsError: 2.69578e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.54770e-04\tAbsError: 1.13894e+11\n", + " Region: \"zone_1\"\tRelError: 2.60304e-05\tAbsError: 5.37278e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58759e-05\tAbsError: 7.56671e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54506e-07\tAbsError: 5.36521e-05\n", + " Region: \"zone_3\"\tRelError: 1.28740e-04\tAbsError: 1.13894e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.44140e-06\tAbsError: 7.78465e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.36038e-06\tAbsError: 3.60472e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13783e-04\tAbsError: 7.90339e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54508e-07\tAbsError: 5.36521e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.70312e+00\tAbsError: 3.24971e+14\n", + " Region: \"zone_1\"\tRelError: 2.13361e-01\tAbsError: 9.00553e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13195e-01\tAbsError: 3.22435e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66324e-04\tAbsError: 5.78118e-02\n", + " Region: \"zone_3\"\tRelError: 1.48976e+00\tAbsError: 3.24971e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57266e-01\tAbsError: 2.03165e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.52075e-01\tAbsError: 1.21806e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.02559e-02\tAbsError: 3.22440e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66324e-04\tAbsError: 5.78118e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.29649e+01\tAbsError: 8.28032e+15\n", + " Region: \"zone_1\"\tRelError: 1.13261e+01\tAbsError: 4.09567e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13261e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.18741e-09\tAbsError: 2.49620e-06\n", + " Region: \"zone_3\"\tRelError: 1.63880e+00\tAbsError: 8.28032e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69633e-01\tAbsError: 4.77284e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.50748e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.95556e-02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.18833e-09\tAbsError: 2.49655e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.77930e-02\tAbsError: 1.08773e+13\n", + " Region: \"zone_1\"\tRelError: 2.79764e-03\tAbsError: 2.00488e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.79207e-03\tAbsError: 7.05910e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.57068e-06\tAbsError: 1.93429e-03\n", + " Region: \"zone_3\"\tRelError: 7.49953e-02\tAbsError: 1.08773e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.89446e-02\tAbsError: 5.71384e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.94604e-03\tAbsError: 5.16342e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09913e-03\tAbsError: 7.75298e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.57068e-06\tAbsError: 1.93429e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.14034e-04\tAbsError: 1.03618e+12\n", + " Region: \"zone_1\"\tRelError: 1.43803e-04\tAbsError: 7.79056e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43584e-04\tAbsError: 1.54074e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19396e-07\tAbsError: 7.63649e-05\n", + " Region: \"zone_3\"\tRelError: 6.70231e-04\tAbsError: 1.03618e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.21829e-04\tAbsError: 2.70793e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.05108e-04\tAbsError: 7.65387e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.43074e-04\tAbsError: 1.54210e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19498e-07\tAbsError: 7.64015e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.16247e-05\tAbsError: 4.79653e+10\n", + " Region: \"zone_1\"\tRelError: 6.49903e-06\tAbsError: 5.59951e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.48306e-06\tAbsError: 4.11129e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59698e-08\tAbsError: 5.55840e-06\n", + " Region: \"zone_3\"\tRelError: 3.51257e-05\tAbsError: 4.79653e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.26178e-06\tAbsError: 1.79967e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.23354e-06\tAbsError: 2.99686e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.86144e-05\tAbsError: 4.14042e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59764e-08\tAbsError: 5.56082e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:35\u001b[0m.\u001b[1;36m044\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:35\u001b[0m.\u001b[1;36m044\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5333333333333333\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.04226e+00\tAbsError: 4.65248e+13\n", + " Region: \"zone_1\"\tRelError: 6.41149e-02\tAbsError: 3.23680e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.40962e-02\tAbsError: 2.58547e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87385e-05\tAbsError: 6.51333e-03\n", + " Region: \"zone_3\"\tRelError: 9.78142e-01\tAbsError: 4.65248e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.70005e-01\tAbsError: 3.31907e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.43650e-01\tAbsError: 1.33341e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.44685e-02\tAbsError: 2.58526e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87385e-05\tAbsError: 6.51333e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.56865e+00\tAbsError: 2.86625e+14\n", + " Region: \"zone_1\"\tRelError: 1.21045e-01\tAbsError: 8.55195e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20888e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", + " Region: \"zone_3\"\tRelError: 1.44761e+00\tAbsError: 2.86625e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38556e-01\tAbsError: 1.75436e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32332e-01\tAbsError: 1.11189e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.65613e-02\tAbsError: 3.07640e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.68614e-04\tAbsError: 9.03974e+11\n", + " Region: \"zone_1\"\tRelError: 6.02979e-05\tAbsError: 1.34982e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.99131e-05\tAbsError: 1.25892e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.84749e-07\tAbsError: 1.33723e-04\n", + " Region: \"zone_3\"\tRelError: 5.08317e-04\tAbsError: 9.03974e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53674e-04\tAbsError: 2.22199e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.53101e-05\tAbsError: 6.81775e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.68948e-04\tAbsError: 1.27221e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.84749e-07\tAbsError: 1.33723e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.61312e-05\tAbsError: 5.74046e+10\n", + " Region: \"zone_1\"\tRelError: 1.61849e-05\tAbsError: 6.45313e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59991e-05\tAbsError: 3.79845e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85726e-07\tAbsError: 6.44934e-05\n", + " Region: \"zone_3\"\tRelError: 5.99464e-05\tAbsError: 5.74046e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.77906e-06\tAbsError: 4.68633e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.20461e-06\tAbsError: 1.05413e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.27769e-05\tAbsError: 3.95532e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85828e-07\tAbsError: 6.45281e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:35\u001b[0m.\u001b[1;36m884\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.5\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.35039e-01\tAbsError: 8.34092e+12\n", + " Region: \"zone_1\"\tRelError: 2.32576e-02\tAbsError: 1.39026e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32494e-02\tAbsError: 1.10528e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.19887e-06\tAbsError: 2.84976e-03\n", + " Region: \"zone_3\"\tRelError: 3.11781e-01\tAbsError: 8.34092e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.24826e-01\tAbsError: 4.08239e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.34727e-02\tAbsError: 4.25852e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34740e-02\tAbsError: 1.10529e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.20247e-06\tAbsError: 2.85110e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.52881e+00\tAbsError: 8.92759e+15\n", + " Region: \"zone_1\"\tRelError: 5.80811e+00\tAbsError: 4.26167e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.80811e+00\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.06999e-09\tAbsError: 2.45528e-06\n", + " Region: \"zone_3\"\tRelError: 1.72070e+00\tAbsError: 8.92759e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83546e-01\tAbsError: 5.11626e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83479e-01\tAbsError: 3.81133e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53672e-01\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.07027e-09\tAbsError: 2.45528e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.63437e-01\tAbsError: 3.66677e+13\n", + " Region: \"zone_1\"\tRelError: 5.93231e-02\tAbsError: 3.16919e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.93064e-02\tAbsError: 2.58707e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", + " Region: \"zone_3\"\tRelError: 9.04114e-01\tAbsError: 3.66677e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40101e-01\tAbsError: 2.63702e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.04471e-01\tAbsError: 1.02975e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95256e-02\tAbsError: 2.58992e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.51065e-04\tAbsError: 1.10507e+11\n", + " Region: \"zone_1\"\tRelError: 2.53464e-05\tAbsError: 5.14009e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51986e-05\tAbsError: 7.31456e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47812e-07\tAbsError: 5.13278e-05\n", + " Region: \"zone_3\"\tRelError: 1.25719e-04\tAbsError: 1.10507e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.19999e-06\tAbsError: 7.57136e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.12194e-06\tAbsError: 3.47937e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11249e-04\tAbsError: 7.63909e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47812e-07\tAbsError: 5.13278e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.60199e+01\tAbsError: 8.22903e+15\n", + " Region: \"zone_1\"\tRelError: 3.43433e+01\tAbsError: 4.09555e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.43433e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.48443e-09\tAbsError: 1.21289e-06\n", + " Region: \"zone_3\"\tRelError: 1.67662e+00\tAbsError: 8.22903e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.78919e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.43984e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37338e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.48691e-09\tAbsError: 1.21378e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.26265e-02\tAbsError: 2.44693e+12\n", + " Region: \"zone_1\"\tRelError: 7.79806e-04\tAbsError: 1.84272e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.74522e-04\tAbsError: 7.80818e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.28403e-06\tAbsError: 1.83491e-03\n", + " Region: \"zone_3\"\tRelError: 7.18467e-02\tAbsError: 2.44693e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90853e-02\tAbsError: 1.70837e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.19951e-04\tAbsError: 7.38555e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.33617e-03\tAbsError: 8.48436e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.28403e-06\tAbsError: 1.83491e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.86275e+00\tAbsError: 1.87242e+15\n", + " Region: \"zone_1\"\tRelError: 3.28371e-01\tAbsError: 7.13797e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.28260e-01\tAbsError: 3.27222e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11244e-04\tAbsError: 3.86575e-02\n", + " Region: \"zone_3\"\tRelError: 1.53438e+00\tAbsError: 1.87242e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.65737e-01\tAbsError: 1.02772e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.45622e-01\tAbsError: 8.44695e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22910e-01\tAbsError: 3.27223e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11244e-04\tAbsError: 3.86575e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.91536e-05\tAbsError: 4.57180e+10\n", + " Region: \"zone_1\"\tRelError: 6.07239e-06\tAbsError: 5.48720e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.05674e-06\tAbsError: 3.96083e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56514e-08\tAbsError: 5.44759e-06\n", + " Region: \"zone_3\"\tRelError: 3.30812e-05\tAbsError: 4.57180e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.12546e-06\tAbsError: 1.69379e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.09842e-06\tAbsError: 2.87802e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.68416e-05\tAbsError: 3.98463e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56579e-08\tAbsError: 5.44996e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.93334e-01\tAbsError: 6.56738e+12\n", + " Region: \"zone_1\"\tRelError: 1.86981e-02\tAbsError: 1.19586e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86900e-02\tAbsError: 9.16562e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03535e-06\tAbsError: 2.79297e-03\n", + " Region: \"zone_3\"\tRelError: 2.74636e-01\tAbsError: 6.56738e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11907e-01\tAbsError: 3.29549e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.38500e-02\tAbsError: 3.27189e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88710e-02\tAbsError: 9.16566e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03753e-06\tAbsError: 2.79381e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:38\u001b[0m.\u001b[1;36m413\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:38\u001b[0m.\u001b[1;36m413\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5285714285714286\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.73485e+00\tAbsError: 1.08973e+15\n", + " Region: \"zone_1\"\tRelError: 2.25350e+00\tAbsError: 6.85700e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25339e+00\tAbsError: 3.07635e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", + " Region: \"zone_3\"\tRelError: 1.48136e+00\tAbsError: 1.08973e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41054e-01\tAbsError: 6.25022e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.24005e-01\tAbsError: 4.64711e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16189e-01\tAbsError: 3.07637e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.64470e-04\tAbsError: 8.92718e+11\n", + " Region: \"zone_1\"\tRelError: 1.30265e-04\tAbsError: 1.28166e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29900e-04\tAbsError: 1.33995e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.64363e-07\tAbsError: 1.26826e-04\n", + " Region: \"zone_3\"\tRelError: 4.34205e-04\tAbsError: 8.92718e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03626e-04\tAbsError: 2.20233e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.48863e-05\tAbsError: 6.72486e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.35329e-04\tAbsError: 1.34586e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.64517e-07\tAbsError: 1.26883e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.13601e+00\tAbsError: 1.24388e+15\n", + " Region: \"zone_1\"\tRelError: 1.09882e-01\tAbsError: 3.47156e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09856e-01\tAbsError: 2.56729e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.60523e-05\tAbsError: 9.04266e-03\n", + " Region: \"zone_3\"\tRelError: 1.02613e+00\tAbsError: 1.24388e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.82293e-01\tAbsError: 5.50846e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.31304e-01\tAbsError: 6.93036e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12504e-01\tAbsError: 2.57603e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.60534e-05\tAbsError: 9.04329e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.00158e-02\tAbsError: 2.47729e+12\n", + " Region: \"zone_1\"\tRelError: 6.29744e-04\tAbsError: 1.66755e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.24968e-04\tAbsError: 8.94858e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", + " Region: \"zone_3\"\tRelError: 5.93860e-02\tAbsError: 2.47729e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.68115e-02\tAbsError: 1.70064e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.91678e-04\tAbsError: 7.76647e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27809e-03\tAbsError: 9.43816e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 9.33438e+00\tAbsError: 8.82623e+15\n", + " Region: \"zone_1\"\tRelError: 7.61981e+00\tAbsError: 4.23858e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.61981e+00\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.72531e-09\tAbsError: 2.33527e-06\n", + " Region: \"zone_3\"\tRelError: 1.71457e+00\tAbsError: 8.82623e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81667e-01\tAbsError: 5.07130e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.81602e-01\tAbsError: 3.75493e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51306e-01\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.72588e-09\tAbsError: 2.33550e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.38677e+00\tAbsError: 6.38966e+14\n", + " Region: \"zone_1\"\tRelError: 4.51470e-01\tAbsError: 3.37904e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.51448e-01\tAbsError: 2.58448e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", + " Region: \"zone_3\"\tRelError: 9.35299e-01\tAbsError: 6.38966e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42607e-01\tAbsError: 3.02038e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.95795e-01\tAbsError: 3.36928e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.68743e-02\tAbsError: 2.57679e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.50492e-04\tAbsError: 1.09226e+11\n", + " Region: \"zone_1\"\tRelError: 2.27622e-05\tAbsError: 4.91789e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.26208e-05\tAbsError: 6.61807e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41421e-07\tAbsError: 4.91127e-05\n", + " Region: \"zone_3\"\tRelError: 1.27730e-04\tAbsError: 1.09226e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.75259e-06\tAbsError: 7.55320e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.67996e-06\tAbsError: 3.36940e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12156e-04\tAbsError: 6.92520e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41421e-07\tAbsError: 4.91127e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.43445e-01\tAbsError: 4.90706e+14\n", + " Region: \"zone_1\"\tRelError: 3.97550e-02\tAbsError: 2.48451e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.97172e-02\tAbsError: 1.17195e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.78171e-05\tAbsError: 1.31257e-02\n", + " Region: \"zone_3\"\tRelError: 4.03690e-01\tAbsError: 4.90706e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.31740e-01\tAbsError: 2.41635e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.31153e-01\tAbsError: 2.49071e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.07598e-02\tAbsError: 1.17195e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.78263e-05\tAbsError: 1.31292e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.31240e-04\tAbsError: 7.97937e+11\n", + " Region: \"zone_1\"\tRelError: 7.54533e-05\tAbsError: 1.27890e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.50894e-05\tAbsError: 1.20855e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.63943e-07\tAbsError: 1.26681e-04\n", + " Region: \"zone_3\"\tRelError: 3.55787e-04\tAbsError: 7.97937e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.38045e-05\tAbsError: 1.92064e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.48742e-05\tAbsError: 6.05872e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76744e-04\tAbsError: 1.21338e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.64089e-07\tAbsError: 1.26735e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.89616e+00\tAbsError: 1.73726e+15\n", + " Region: \"zone_1\"\tRelError: 3.68926e-01\tAbsError: 7.09892e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.68815e-01\tAbsError: 3.24494e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10905e-04\tAbsError: 3.85398e-02\n", + " Region: \"zone_3\"\tRelError: 1.52723e+00\tAbsError: 1.73726e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.62498e-01\tAbsError: 9.60875e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.42645e-01\tAbsError: 7.76385e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21979e-01\tAbsError: 3.24495e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10905e-04\tAbsError: 3.85398e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.41554e-01\tAbsError: 2.20715e+14\n", + " Region: \"zone_1\"\tRelError: 2.89595e-02\tAbsError: 1.67352e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.89377e-02\tAbsError: 9.16565e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18085e-05\tAbsError: 7.56954e-03\n", + " Region: \"zone_3\"\tRelError: 3.12594e-01\tAbsError: 2.20715e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94155e-01\tAbsError: 1.01533e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.87246e-02\tAbsError: 1.19182e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96932e-02\tAbsError: 9.16570e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18152e-05\tAbsError: 7.57200e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.59511e-05\tAbsError: 4.34369e+10\n", + " Region: \"zone_1\"\tRelError: 4.88152e-06\tAbsError: 5.50573e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.86582e-06\tAbsError: 4.12400e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56988e-08\tAbsError: 5.46449e-06\n", + " Region: \"zone_3\"\tRelError: 3.10696e-05\tAbsError: 4.34369e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.42525e-06\tAbsError: 1.53634e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.39498e-06\tAbsError: 2.80735e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42337e-05\tAbsError: 4.13073e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57060e-08\tAbsError: 5.46711e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:42\u001b[0m.\u001b[1;36m394\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:42\u001b[0m.\u001b[1;36m394\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.41874999999999996\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.20911e-02\tAbsError: 9.08236e+13\n", + " Region: \"zone_1\"\tRelError: 8.36257e-03\tAbsError: 7.34644e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.34207e-03\tAbsError: 2.31528e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.04921e-05\tAbsError: 7.11491e-03\n", + " Region: \"zone_3\"\tRelError: 8.37285e-02\tAbsError: 9.08236e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.66541e-02\tAbsError: 5.29767e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.08300e-02\tAbsError: 3.78468e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.22394e-03\tAbsError: 2.32655e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.04921e-05\tAbsError: 7.11491e-03\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.53826e-04\tAbsError: 1.09912e+11\n", + " Region: \"zone_1\"\tRelError: 2.29821e-05\tAbsError: 4.27473e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.28592e-05\tAbsError: 6.65170e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", + " Region: \"zone_3\"\tRelError: 1.30844e-04\tAbsError: 1.09912e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.01681e-06\tAbsError: 7.52234e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94349e-06\tAbsError: 3.46881e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14760e-04\tAbsError: 6.98367e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.12115e+00\tAbsError: 1.12368e+15\n", + " Region: \"zone_1\"\tRelError: 1.07753e-01\tAbsError: 3.45134e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07728e-01\tAbsError: 2.56568e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.55163e-05\tAbsError: 8.85665e-03\n", + " Region: \"zone_3\"\tRelError: 1.01340e+00\tAbsError: 1.12368e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.76839e-01\tAbsError: 5.03019e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.25192e-01\tAbsError: 6.20662e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11342e-01\tAbsError: 2.58854e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.55171e-05\tAbsError: 8.85707e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.19808e-02\tAbsError: 3.06344e+13\n", + " Region: \"zone_1\"\tRelError: 2.04251e-02\tAbsError: 4.10278e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04136e-02\tAbsError: 1.00349e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", + " Region: \"zone_3\"\tRelError: 6.15557e-02\tAbsError: 3.06344e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38926e-02\tAbsError: 1.71938e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.73234e-03\tAbsError: 1.34406e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.91920e-03\tAbsError: 1.01109e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.16827e-03\tAbsError: 3.42905e+12\n", + " Region: \"zone_1\"\tRelError: 5.05049e-04\tAbsError: 4.91012e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.03646e-04\tAbsError: 3.47475e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40302e-06\tAbsError: 4.87537e-04\n", + " Region: \"zone_3\"\tRelError: 2.66322e-03\tAbsError: 3.42905e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.95349e-04\tAbsError: 1.21352e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.81812e-04\tAbsError: 2.21554e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.98465e-03\tAbsError: 3.54752e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40328e-06\tAbsError: 4.87636e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.84860e-05\tAbsError: 3.70987e+10\n", + " Region: \"zone_1\"\tRelError: 3.74711e-06\tAbsError: 5.87951e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.73032e-06\tAbsError: 3.58594e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67880e-08\tAbsError: 5.84365e-06\n", + " Region: \"zone_3\"\tRelError: 2.47389e-05\tAbsError: 3.70987e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96764e-06\tAbsError: 1.24118e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.94133e-06\tAbsError: 2.46869e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88131e-05\tAbsError: 3.59119e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67950e-08\tAbsError: 5.84625e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:44\u001b[0m.\u001b[1;36m074\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.4\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Iteration: 0\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 6.33754e+00\tAbsError: 8.76787e+15\n", + " Region: \"zone_1\"\tRelError: 4.66402e+00\tAbsError: 4.22113e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.66402e+00\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.37385e-09\tAbsError: 2.21342e-06\n", + " Region: \"zone_3\"\tRelError: 1.67352e+00\tAbsError: 8.76787e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80231e-01\tAbsError: 5.17304e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.80207e-01\tAbsError: 3.59483e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13080e-01\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.37521e-09\tAbsError: 2.21392e-06\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.26825e-01\tAbsError: 4.37760e+14\n", + " Region: \"zone_1\"\tRelError: 3.80907e-02\tAbsError: 2.35516e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.80555e-02\tAbsError: 1.13363e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.51940e-05\tAbsError: 1.22153e-02\n", + " Region: \"zone_3\"\tRelError: 3.88734e-01\tAbsError: 4.37760e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.24657e-01\tAbsError: 2.14324e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24964e-01\tAbsError: 2.23436e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.90785e-02\tAbsError: 1.13364e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.51963e-05\tAbsError: 1.22163e-02\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.53920e-03\tAbsError: 1.84314e+12\n", + " Region: \"zone_1\"\tRelError: 2.29752e-04\tAbsError: 2.41443e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29064e-04\tAbsError: 2.20702e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", + " Region: \"zone_3\"\tRelError: 1.30944e-03\tAbsError: 1.84314e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11485e-04\tAbsError: 5.81096e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.63190e-04\tAbsError: 1.26205e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.34079e-04\tAbsError: 2.25011e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.52226e-04\tAbsError: 3.81978e+11\n", + " Region: \"zone_1\"\tRelError: 8.36528e-05\tAbsError: 2.05703e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.30610e-05\tAbsError: 2.27394e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.91803e-07\tAbsError: 2.05476e-04\n", + " Region: \"zone_3\"\tRelError: 3.68573e-04\tAbsError: 3.81978e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16126e-05\tAbsError: 2.47156e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.13261e-05\tAbsError: 1.34821e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.25043e-04\tAbsError: 2.38613e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.91803e-07\tAbsError: 2.05476e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.95597e-02\tAbsError: 7.71424e+13\n", + " Region: \"zone_1\"\tRelError: 8.97757e-03\tAbsError: 6.57471e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.95924e-03\tAbsError: 2.10468e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83299e-05\tAbsError: 6.36424e-03\n", + " Region: \"zone_3\"\tRelError: 8.05821e-02\tAbsError: 7.71424e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.51160e-02\tAbsError: 4.59722e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.55840e-03\tAbsError: 3.11702e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.88934e-03\tAbsError: 2.11417e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83299e-05\tAbsError: 6.36424e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.61701e+00\tAbsError: 4.21474e+14\n", + " Region: \"zone_1\"\tRelError: 1.10816e-01\tAbsError: 8.18878e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10673e-01\tAbsError: 3.22435e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42846e-04\tAbsError: 4.96444e-02\n", + " Region: \"zone_3\"\tRelError: 1.50619e+00\tAbsError: 4.21474e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.58762e-01\tAbsError: 2.85907e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.50146e-01\tAbsError: 1.35567e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.71388e-02\tAbsError: 3.22438e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42846e-04\tAbsError: 4.96444e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.87618e+01\tAbsError: 8.25603e+15\n", + " Region: \"zone_1\"\tRelError: 2.71120e+01\tAbsError: 4.09561e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.71120e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.29384e-09\tAbsError: 1.83846e-06\n", + " Region: \"zone_3\"\tRelError: 1.64979e+00\tAbsError: 8.25603e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69658e-01\tAbsError: 4.86497e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69634e-01\tAbsError: 3.39106e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10500e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.29480e-09\tAbsError: 1.83875e-06\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.51045e-04\tAbsError: 2.02519e+11\n", + " Region: \"zone_1\"\tRelError: 4.54891e-05\tAbsError: 1.12868e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.51644e-05\tAbsError: 1.25671e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.24705e-07\tAbsError: 1.12743e-04\n", + " Region: \"zone_3\"\tRelError: 2.05556e-04\tAbsError: 2.02519e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12163e-05\tAbsError: 1.36505e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10724e-05\tAbsError: 6.60139e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82943e-04\tAbsError: 1.30848e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.24777e-07\tAbsError: 1.12769e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.16205e-04\tAbsError: 1.96223e+11\n", + " Region: \"zone_1\"\tRelError: 3.93698e-05\tAbsError: 1.48004e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.93276e-05\tAbsError: 1.21385e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.21780e-08\tAbsError: 1.46790e-05\n", + " Region: \"zone_3\"\tRelError: 1.76835e-04\tAbsError: 1.96223e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12231e-05\tAbsError: 9.36536e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11384e-05\tAbsError: 1.02569e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54432e-04\tAbsError: 1.24837e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.21943e-08\tAbsError: 1.46850e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.09334e+00\tAbsError: 1.47862e+14\n", + " Region: \"zone_1\"\tRelError: 8.41951e-02\tAbsError: 3.34998e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.41732e-02\tAbsError: 2.58874e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19032e-05\tAbsError: 7.61236e-03\n", + " Region: \"zone_3\"\tRelError: 1.00915e+00\tAbsError: 1.47862e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.70939e-01\tAbsError: 8.86673e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.53155e-01\tAbsError: 5.91945e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.50295e-02\tAbsError: 2.57870e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19032e-05\tAbsError: 7.61236e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.76323e-03\tAbsError: 3.04208e+12\n", + " Region: \"zone_1\"\tRelError: 4.34764e-04\tAbsError: 4.50535e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.33477e-04\tAbsError: 3.15266e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28745e-06\tAbsError: 4.47383e-04\n", + " Region: \"zone_3\"\tRelError: 2.32847e-03\tAbsError: 3.04208e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.58402e-04\tAbsError: 1.05932e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.52573e-04\tAbsError: 1.98276e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.71621e-03\tAbsError: 3.22876e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28792e-06\tAbsError: 4.47554e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.69855e+00\tAbsError: 3.40458e+14\n", + " Region: \"zone_1\"\tRelError: 2.34470e-01\tAbsError: 7.85796e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34332e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", + " Region: \"zone_3\"\tRelError: 1.46408e+00\tAbsError: 3.40458e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39247e-01\tAbsError: 2.37038e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.31799e-01\tAbsError: 1.03420e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.29010e-02\tAbsError: 3.07639e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.09882e-04\tAbsError: 1.05387e+11\n", + " Region: \"zone_1\"\tRelError: 1.91896e-05\tAbsError: 8.11152e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91665e-05\tAbsError: 7.26801e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.30974e-08\tAbsError: 8.03884e-06\n", + " Region: \"zone_3\"\tRelError: 9.06925e-05\tAbsError: 1.05387e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41210e-06\tAbsError: 4.74044e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.36012e-06\tAbsError: 5.79823e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.78972e-05\tAbsError: 7.44246e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.31071e-08\tAbsError: 8.04242e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.29328e-05\tAbsError: 1.28315e+10\n", + " Region: \"zone_1\"\tRelError: 2.39931e-06\tAbsError: 1.11358e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36728e-06\tAbsError: 7.12558e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.20267e-08\tAbsError: 1.11287e-05\n", + " Region: \"zone_3\"\tRelError: 1.05335e-05\tAbsError: 1.28315e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.59775e-07\tAbsError: 9.09417e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.08523e-07\tAbsError: 3.73735e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.23314e-06\tAbsError: 7.44346e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.20347e-08\tAbsError: 1.11318e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:48\u001b[0m.\u001b[1;36m096\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:48\u001b[0m.\u001b[1;36m096\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6416666666666667\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.68709e-01\tAbsError: 5.55679e+13\n", + " Region: \"zone_1\"\tRelError: 3.01660e-02\tAbsError: 1.36189e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.01586e-02\tAbsError: 1.10528e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.39180e-06\tAbsError: 2.56611e-03\n", + " Region: \"zone_3\"\tRelError: 3.38543e-01\tAbsError: 5.55679e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.22734e-01\tAbsError: 2.45809e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.53253e-02\tAbsError: 3.09871e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.04764e-02\tAbsError: 1.10528e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.39597e-06\tAbsError: 2.56763e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.28398e-04\tAbsError: 3.56399e+11\n", + " Region: \"zone_1\"\tRelError: 7.90313e-05\tAbsError: 1.82266e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.85070e-05\tAbsError: 2.13360e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.24338e-07\tAbsError: 1.82053e-04\n", + " Region: \"zone_3\"\tRelError: 3.49366e-04\tAbsError: 3.56399e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01607e-05\tAbsError: 2.30451e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.98999e-05\tAbsError: 1.25949e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.08781e-04\tAbsError: 2.23060e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.24338e-07\tAbsError: 1.82053e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.10009e+00\tAbsError: 9.49766e+13\n", + " Region: \"zone_1\"\tRelError: 1.69910e-01\tAbsError: 3.26443e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69891e-01\tAbsError: 2.58991e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", + " Region: \"zone_3\"\tRelError: 9.30185e-01\tAbsError: 9.49766e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40985e-01\tAbsError: 5.67002e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.12174e-01\tAbsError: 3.82763e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.70066e-02\tAbsError: 2.58994e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 7.21635e-06\tAbsError: 6.66070e+09\n", + " Region: \"zone_1\"\tRelError: 1.30608e-06\tAbsError: 5.92265e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28905e-06\tAbsError: 4.03393e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70320e-08\tAbsError: 5.91862e-06\n", + " Region: \"zone_3\"\tRelError: 5.91027e-06\tAbsError: 6.66070e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61854e-07\tAbsError: 4.98332e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.27195e-07\tAbsError: 1.67738e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.20418e-06\tAbsError: 4.19235e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70346e-08\tAbsError: 5.91965e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:49\u001b[0m.\u001b[1;36m098\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.6\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.55074e-02\tAbsError: 9.90968e+12\n", + " Region: \"zone_1\"\tRelError: 2.96123e-03\tAbsError: 1.94388e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.95582e-03\tAbsError: 6.53231e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.41016e-06\tAbsError: 1.87856e-03\n", + " Region: \"zone_3\"\tRelError: 7.25461e-02\tAbsError: 9.90968e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.69484e-02\tAbsError: 5.15392e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.51045e-03\tAbsError: 4.75576e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08189e-03\tAbsError: 7.13022e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.41016e-06\tAbsError: 1.87856e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.87899e-04\tAbsError: 1.73082e+11\n", + " Region: \"zone_1\"\tRelError: 3.39934e-05\tAbsError: 1.43686e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.39525e-05\tAbsError: 1.08946e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.09731e-08\tAbsError: 1.42597e-05\n", + " Region: \"zone_3\"\tRelError: 1.53906e-04\tAbsError: 1.73082e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98939e-06\tAbsError: 8.17885e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.91188e-06\tAbsError: 9.12938e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33963e-04\tAbsError: 1.11897e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.09888e-08\tAbsError: 1.42655e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.75131e+01\tAbsError: 1.04832e+16\n", + " Region: \"zone_1\"\tRelError: 2.57460e+01\tAbsError: 4.26144e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57460e+01\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.25795e-10\tAbsError: 2.17804e-07\n", + " Region: \"zone_3\"\tRelError: 1.76714e+00\tAbsError: 1.04832e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83363e-01\tAbsError: 5.41685e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83175e-01\tAbsError: 5.06630e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.00598e-01\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.26134e-10\tAbsError: 2.17927e-07\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.56252e-01\tAbsError: 3.42527e+13\n", + " Region: \"zone_1\"\tRelError: 6.41646e-02\tAbsError: 1.11813e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.41588e-02\tAbsError: 9.16555e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.79958e-06\tAbsError: 2.01571e-03\n", + " Region: \"zone_3\"\tRelError: 2.92088e-01\tAbsError: 3.42527e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07223e-01\tAbsError: 1.60452e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.07953e-02\tAbsError: 1.82076e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.40630e-02\tAbsError: 9.16559e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.80279e-06\tAbsError: 2.01683e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.57743e+01\tAbsError: 8.48667e+15\n", + " Region: \"zone_1\"\tRelError: 1.40602e+01\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40602e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57556e-10\tAbsError: 1.24451e-07\n", + " Region: \"zone_3\"\tRelError: 1.71408e+00\tAbsError: 8.48667e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69582e-01\tAbsError: 4.51146e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69441e-01\tAbsError: 3.97521e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75053e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57765e-10\tAbsError: 1.24526e-07\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.35924e-04\tAbsError: 8.77699e+11\n", + " Region: \"zone_1\"\tRelError: 5.65341e-05\tAbsError: 1.31717e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.61586e-05\tAbsError: 1.24204e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.75403e-07\tAbsError: 1.30475e-04\n", + " Region: \"zone_3\"\tRelError: 4.79390e-04\tAbsError: 8.77699e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43239e-04\tAbsError: 2.14015e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.28226e-05\tAbsError: 6.63684e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52952e-04\tAbsError: 1.25007e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.75403e-07\tAbsError: 1.30475e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.33017e-05\tAbsError: 1.25250e+10\n", + " Region: \"zone_1\"\tRelError: 2.46569e-06\tAbsError: 9.72458e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.43772e-06\tAbsError: 7.05981e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.79653e-08\tAbsError: 9.71752e-06\n", + " Region: \"zone_3\"\tRelError: 1.08360e-05\tAbsError: 1.25250e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37872e-07\tAbsError: 8.80212e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.06618e-07\tAbsError: 3.72290e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.56353e-06\tAbsError: 7.35679e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.79715e-08\tAbsError: 9.71990e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.19195e+00\tAbsError: 1.07579e+16\n", + " Region: \"zone_1\"\tRelError: 6.33495e-01\tAbsError: 8.81214e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.33336e-01\tAbsError: 3.27220e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59452e-04\tAbsError: 5.53993e-02\n", + " Region: \"zone_3\"\tRelError: 1.55845e+00\tAbsError: 1.07579e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.62844e-01\tAbsError: 5.18589e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32311e-01\tAbsError: 5.57203e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63136e-01\tAbsError: 3.27221e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59452e-04\tAbsError: 5.53993e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:51\u001b[0m.\u001b[1;36m255\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:51\u001b[0m.\u001b[1;36m255\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6357142857142857\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.59960e-02\tAbsError: 3.73217e+12\n", + " Region: \"zone_1\"\tRelError: 7.31305e-03\tAbsError: 2.21475e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.30674e-03\tAbsError: 2.57182e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", + " Region: \"zone_3\"\tRelError: 5.86829e-02\tAbsError: 3.73217e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.62142e-02\tAbsError: 2.07187e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.09163e-04\tAbsError: 1.66031e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65329e-03\tAbsError: 2.69578e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.55570e+00\tAbsError: 5.16331e+15\n", + " Region: \"zone_1\"\tRelError: 3.06111e+00\tAbsError: 6.97364e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.06100e+00\tAbsError: 3.07634e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12162e-04\tAbsError: 3.89730e-02\n", + " Region: \"zone_3\"\tRelError: 1.49459e+00\tAbsError: 5.16331e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38938e-01\tAbsError: 2.46191e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.11412e-01\tAbsError: 2.70140e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44124e-01\tAbsError: 3.07634e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12162e-04\tAbsError: 3.89730e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.49173e-04\tAbsError: 1.08665e+11\n", + " Region: \"zone_1\"\tRelError: 2.49796e-05\tAbsError: 4.96969e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.48367e-05\tAbsError: 7.16851e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42909e-07\tAbsError: 4.96252e-05\n", + " Region: \"zone_3\"\tRelError: 1.24193e-04\tAbsError: 1.08665e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.07162e-06\tAbsError: 7.44871e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.99576e-06\tAbsError: 3.41777e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09983e-04\tAbsError: 7.48608e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42909e-07\tAbsError: 4.96252e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.20212e+00\tAbsError: 7.47831e+15\n", + " Region: \"zone_1\"\tRelError: 1.32597e-01\tAbsError: 3.89759e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32557e-01\tAbsError: 2.52828e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.94599e-05\tAbsError: 1.36931e-02\n", + " Region: \"zone_3\"\tRelError: 1.06952e+00\tAbsError: 7.47831e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.83767e-01\tAbsError: 3.66669e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.39313e-01\tAbsError: 3.81162e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46404e-01\tAbsError: 2.54085e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.05332e-05\tAbsError: 1.40654e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.14034e-04\tAbsError: 1.03618e+12\n", + " Region: \"zone_1\"\tRelError: 1.43803e-04\tAbsError: 7.79056e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43584e-04\tAbsError: 1.54074e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19396e-07\tAbsError: 7.63649e-05\n", + " Region: \"zone_3\"\tRelError: 6.70231e-04\tAbsError: 1.03618e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.21829e-04\tAbsError: 2.70793e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.05108e-04\tAbsError: 7.65387e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.43074e-04\tAbsError: 1.54210e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19498e-07\tAbsError: 7.64015e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.84879e+02\tAbsError: 9.85047e+15\n", + " Region: \"zone_1\"\tRelError: 2.83120e+02\tAbsError: 4.23838e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83120e+02\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.02987e-10\tAbsError: 2.79472e-07\n", + " Region: \"zone_3\"\tRelError: 1.75959e+00\tAbsError: 9.85047e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81501e-01\tAbsError: 5.21342e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.81322e-01\tAbsError: 4.63704e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96768e-01\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03413e-10\tAbsError: 2.79627e-07\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.13964e+00\tAbsError: 3.47644e+15\n", + " Region: \"zone_1\"\tRelError: 1.85284e-01\tAbsError: 3.50197e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85258e-01\tAbsError: 2.58979e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.62526e-05\tAbsError: 9.12177e-03\n", + " Region: \"zone_3\"\tRelError: 9.54354e-01\tAbsError: 3.47644e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46208e-01\tAbsError: 1.62778e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.89583e-01\tAbsError: 1.84866e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18536e-01\tAbsError: 2.53855e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.62526e-05\tAbsError: 9.12177e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.73047e-05\tAbsError: 4.40670e+10\n", + " Region: \"zone_1\"\tRelError: 5.75467e-06\tAbsError: 5.44475e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.73914e-06\tAbsError: 3.84897e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55326e-08\tAbsError: 5.40626e-06\n", + " Region: \"zone_3\"\tRelError: 3.15501e-05\tAbsError: 4.40670e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.02445e-06\tAbsError: 1.61588e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.99827e-06\tAbsError: 2.79082e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.55118e-05\tAbsError: 3.86967e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55391e-08\tAbsError: 5.40861e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:53\u001b[0m.\u001b[1;36m949\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.525\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 9.70347e-01\tAbsError: 2.72553e+15\n", + " Region: \"zone_1\"\tRelError: 5.51720e-01\tAbsError: 7.40138e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.51541e-01\tAbsError: 1.17200e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79546e-04\tAbsError: 6.22938e-02\n", + " Region: \"zone_3\"\tRelError: 4.18627e-01\tAbsError: 2.72553e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.23799e-01\tAbsError: 1.44536e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.44218e-01\tAbsError: 1.28017e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.04299e-02\tAbsError: 1.17201e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79839e-04\tAbsError: 6.23947e-02\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.61312e-05\tAbsError: 5.74046e+10\n", + " Region: \"zone_1\"\tRelError: 1.61849e-05\tAbsError: 6.45313e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59991e-05\tAbsError: 3.79845e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85726e-07\tAbsError: 6.44934e-05\n", + " Region: \"zone_3\"\tRelError: 5.99464e-05\tAbsError: 5.74046e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.77906e-06\tAbsError: 4.68633e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.20461e-06\tAbsError: 1.05413e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.27769e-05\tAbsError: 3.95532e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85828e-07\tAbsError: 6.45281e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:54\u001b[0m.\u001b[1;36m293\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.5\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.40036e+00\tAbsError: 9.59182e+15\n", + " Region: \"zone_1\"\tRelError: 8.50865e-01\tAbsError: 8.47022e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.50714e-01\tAbsError: 3.24493e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50393e-04\tAbsError: 5.22529e-02\n", + " Region: \"zone_3\"\tRelError: 1.54950e+00\tAbsError: 9.59182e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.59657e-01\tAbsError: 4.65942e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.29505e-01\tAbsError: 4.93240e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60188e-01\tAbsError: 3.24493e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50393e-04\tAbsError: 5.22529e-02\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 8.24095e-01\tAbsError: 1.04537e+15\n", + " Region: \"zone_1\"\tRelError: 4.93544e-01\tAbsError: 2.65000e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.93494e-01\tAbsError: 9.16559e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.98913e-05\tAbsError: 1.73344e-02\n", + " Region: \"zone_3\"\tRelError: 3.30551e-01\tAbsError: 1.04537e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84640e-01\tAbsError: 5.55503e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10521e-01\tAbsError: 4.89866e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53403e-02\tAbsError: 9.16565e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.98913e-05\tAbsError: 1.73344e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.33935e-01\tAbsError: 4.64555e+14\n", + " Region: \"zone_1\"\tRelError: 2.94732e-02\tAbsError: 5.29433e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.93213e-02\tAbsError: 2.44798e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51832e-04\tAbsError: 5.26985e-02\n", + " Region: \"zone_3\"\tRelError: 1.04462e-01\tAbsError: 4.64555e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.87627e-02\tAbsError: 2.71658e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.26664e-02\tAbsError: 1.92897e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.28808e-02\tAbsError: 2.61363e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51991e-04\tAbsError: 5.27520e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.17170e+01\tAbsError: 8.75063e+15\n", + " Region: \"zone_1\"\tRelError: 1.00071e+01\tAbsError: 4.22113e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00071e+01\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.46569e-09\tAbsError: 2.24513e-06\n", + " Region: \"zone_3\"\tRelError: 1.70995e+00\tAbsError: 8.75063e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80236e-01\tAbsError: 5.03722e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.80173e-01\tAbsError: 3.71341e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49543e-01\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.46650e-09\tAbsError: 2.24544e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.18426e+00\tAbsError: 6.71886e+15\n", + " Region: \"zone_1\"\tRelError: 1.30280e-01\tAbsError: 3.66340e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30249e-01\tAbsError: 2.57139e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.14700e-05\tAbsError: 1.09200e-02\n", + " Region: \"zone_3\"\tRelError: 1.05398e+00\tAbsError: 6.71886e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.78717e-01\tAbsError: 3.28141e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.32598e-01\tAbsError: 3.43745e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42637e-01\tAbsError: 2.54415e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.23852e-05\tAbsError: 1.12379e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.60199e+01\tAbsError: 8.22903e+15\n", + " Region: \"zone_1\"\tRelError: 3.43433e+01\tAbsError: 4.09555e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.43433e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.48443e-09\tAbsError: 1.21289e-06\n", + " Region: \"zone_3\"\tRelError: 1.67662e+00\tAbsError: 8.22903e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.78919e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.43984e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37338e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.48691e-09\tAbsError: 1.21378e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.23262e-02\tAbsError: 1.95138e+14\n", + " Region: \"zone_1\"\tRelError: 2.57438e-02\tAbsError: 3.23382e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.56511e-02\tAbsError: 1.67807e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.26701e-05\tAbsError: 3.21704e-02\n", + " Region: \"zone_3\"\tRelError: 6.65824e-02\tAbsError: 1.95138e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.49682e-02\tAbsError: 6.65802e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.06072e-03\tAbsError: 1.28558e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.46071e-03\tAbsError: 1.74923e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.26947e-05\tAbsError: 3.21777e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.87196e-02\tAbsError: 3.13816e+13\n", + " Region: \"zone_1\"\tRelError: 6.85396e-03\tAbsError: 6.84082e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.85204e-03\tAbsError: 1.95230e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91475e-06\tAbsError: 6.64559e-04\n", + " Region: \"zone_3\"\tRelError: 2.18657e-02\tAbsError: 3.13816e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74111e-03\tAbsError: 1.46062e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.58712e-03\tAbsError: 1.67754e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85355e-02\tAbsError: 2.02101e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.92269e-06\tAbsError: 6.67317e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.93208e+00\tAbsError: 1.64182e+15\n", + " Region: \"zone_1\"\tRelError: 4.10297e-01\tAbsError: 7.07022e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.10186e-01\tAbsError: 3.22434e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10672e-04\tAbsError: 3.84588e-02\n", + " Region: \"zone_3\"\tRelError: 1.52179e+00\tAbsError: 1.64182e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.60022e-01\tAbsError: 9.13086e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.40366e-01\tAbsError: 7.28733e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21289e-01\tAbsError: 3.22435e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10672e-04\tAbsError: 3.84588e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.81103e+00\tAbsError: 2.38656e+15\n", + " Region: \"zone_1\"\tRelError: 3.40562e+00\tAbsError: 6.61836e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40546e+00\tAbsError: 1.13368e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58076e-04\tAbsError: 5.48468e-02\n", + " Region: \"zone_3\"\tRelError: 4.05411e-01\tAbsError: 2.38656e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17600e-01\tAbsError: 1.25698e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.39569e-01\tAbsError: 1.12958e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.80838e-02\tAbsError: 1.13370e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58243e-04\tAbsError: 5.49035e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.73485e+00\tAbsError: 1.08973e+15\n", + " Region: \"zone_1\"\tRelError: 2.25350e+00\tAbsError: 6.85700e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25339e+00\tAbsError: 3.07635e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", + " Region: \"zone_3\"\tRelError: 1.48136e+00\tAbsError: 1.08973e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41054e-01\tAbsError: 6.25022e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.24005e-01\tAbsError: 4.64711e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16189e-01\tAbsError: 3.07637e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.13427e-02\tAbsError: 1.62210e+13\n", + " Region: \"zone_1\"\tRelError: 1.73710e-02\tAbsError: 1.21679e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73676e-02\tAbsError: 1.36050e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.46587e-06\tAbsError: 1.20318e-03\n", + " Region: \"zone_3\"\tRelError: 1.39717e-02\tAbsError: 1.62210e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19687e-03\tAbsError: 6.47584e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09668e-03\tAbsError: 9.74512e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16747e-02\tAbsError: 1.39577e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.46587e-06\tAbsError: 1.20318e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.36574e-04\tAbsError: 6.20350e+11\n", + " Region: \"zone_1\"\tRelError: 5.71508e-05\tAbsError: 1.58969e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.25718e-05\tAbsError: 4.29208e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.57892e-06\tAbsError: 1.58926e-03\n", + " Region: \"zone_3\"\tRelError: 1.79423e-04\tAbsError: 6.20350e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.81023e-05\tAbsError: 4.31262e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.16006e-05\tAbsError: 1.89089e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35142e-04\tAbsError: 4.34629e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.57892e-06\tAbsError: 1.58926e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.10894e+00\tAbsError: 1.04098e+15\n", + " Region: \"zone_1\"\tRelError: 1.06086e-01\tAbsError: 3.49118e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06060e-01\tAbsError: 2.58908e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.59896e-05\tAbsError: 9.02095e-03\n", + " Region: \"zone_3\"\tRelError: 1.00285e+00\tAbsError: 1.04098e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.72685e-01\tAbsError: 4.70486e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.20681e-01\tAbsError: 5.70489e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09459e-01\tAbsError: 2.57724e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.59942e-05\tAbsError: 9.02254e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.95854e-01\tAbsError: 4.01780e+14\n", + " Region: \"zone_1\"\tRelError: 2.97435e-01\tAbsError: 4.83384e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97297e-01\tAbsError: 2.29736e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38604e-04\tAbsError: 4.81087e-02\n", + " Region: \"zone_3\"\tRelError: 9.84191e-02\tAbsError: 4.01780e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.66330e-02\tAbsError: 2.31666e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.17536e-02\tAbsError: 1.70115e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.98938e-02\tAbsError: 2.43734e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38761e-04\tAbsError: 4.81621e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.38677e+00\tAbsError: 6.38966e+14\n", + " Region: \"zone_1\"\tRelError: 4.51470e-01\tAbsError: 3.37904e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.51448e-01\tAbsError: 2.58448e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", + " Region: \"zone_3\"\tRelError: 9.35299e-01\tAbsError: 6.38966e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42607e-01\tAbsError: 3.02038e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.95795e-01\tAbsError: 3.36928e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.68743e-02\tAbsError: 2.57679e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.53065e-03\tAbsError: 7.24481e+11\n", + " Region: \"zone_1\"\tRelError: 1.49459e-03\tAbsError: 1.07639e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49149e-03\tAbsError: 6.55190e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.09641e-06\tAbsError: 1.07573e-03\n", + " Region: \"zone_3\"\tRelError: 1.03606e-03\tAbsError: 7.24481e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73129e-05\tAbsError: 2.45596e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.81580e-05\tAbsError: 4.78885e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.37490e-04\tAbsError: 6.76708e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.09642e-06\tAbsError: 1.07576e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.16659e-03\tAbsError: 1.56179e+12\n", + " Region: \"zone_1\"\tRelError: 5.49118e-04\tAbsError: 8.25361e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.48882e-04\tAbsError: 7.56127e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.35610e-07\tAbsError: 8.17800e-05\n", + " Region: \"zone_3\"\tRelError: 1.61747e-03\tAbsError: 1.56179e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.04155e-05\tAbsError: 7.80826e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.99233e-05\tAbsError: 7.80963e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47689e-03\tAbsError: 7.63501e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.35622e-07\tAbsError: 8.17818e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.15048e-01\tAbsError: 4.01161e+14\n", + " Region: \"zone_1\"\tRelError: 3.68701e-02\tAbsError: 2.28829e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.68361e-02\tAbsError: 1.10529e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.40835e-05\tAbsError: 1.18299e-02\n", + " Region: \"zone_3\"\tRelError: 3.78178e-01\tAbsError: 4.01161e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.20081e-01\tAbsError: 1.95045e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.20222e-01\tAbsError: 2.06116e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.78403e-02\tAbsError: 1.10530e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.40894e-05\tAbsError: 1.18320e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.32002e-02\tAbsError: 2.72995e+13\n", + " Region: \"zone_1\"\tRelError: 2.32135e-02\tAbsError: 6.74833e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32116e-02\tAbsError: 1.80346e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89232e-06\tAbsError: 6.56799e-04\n", + " Region: \"zone_3\"\tRelError: 1.99868e-02\tAbsError: 2.72995e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.62006e-03\tAbsError: 1.26801e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.47679e-03\tAbsError: 1.46193e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68880e-02\tAbsError: 1.87805e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89880e-06\tAbsError: 6.59049e-04\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.41554e-01\tAbsError: 2.20715e+14\n", + " Region: \"zone_1\"\tRelError: 2.89595e-02\tAbsError: 1.67352e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.89377e-02\tAbsError: 9.16565e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18085e-05\tAbsError: 7.56954e-03\n", + " Region: \"zone_3\"\tRelError: 3.12594e-01\tAbsError: 2.20715e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94155e-01\tAbsError: 1.01533e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.87246e-02\tAbsError: 1.19182e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96932e-02\tAbsError: 9.16570e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18152e-05\tAbsError: 7.57200e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.69038e-03\tAbsError: 1.04370e+12\n", + " Region: \"zone_1\"\tRelError: 1.58975e-03\tAbsError: 1.04879e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58945e-03\tAbsError: 5.38488e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.00336e-07\tAbsError: 1.04341e-04\n", + " Region: \"zone_3\"\tRelError: 1.10063e-03\tAbsError: 1.04370e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.23814e-05\tAbsError: 5.26651e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.22994e-05\tAbsError: 5.17045e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.95649e-04\tAbsError: 5.63224e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.00360e-07\tAbsError: 1.04351e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.73714e-04\tAbsError: 7.72899e+10\n", + " Region: \"zone_1\"\tRelError: 4.49573e-05\tAbsError: 9.55178e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.46825e-05\tAbsError: 4.77093e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.74854e-07\tAbsError: 9.54700e-05\n", + " Region: \"zone_3\"\tRelError: 1.28757e-04\tAbsError: 7.72899e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.96964e-06\tAbsError: 3.45890e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.00987e-06\tAbsError: 4.27008e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20503e-04\tAbsError: 4.78699e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.74949e-07\tAbsError: 9.55032e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.89721e-02\tAbsError: 6.93237e+13\n", + " Region: \"zone_1\"\tRelError: 1.12555e-02\tAbsError: 6.08752e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12385e-02\tAbsError: 1.96047e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69682e-05\tAbsError: 5.89147e-03\n", + " Region: \"zone_3\"\tRelError: 7.77166e-02\tAbsError: 6.93237e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.31797e-02\tAbsError: 4.13510e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.75730e-03\tAbsError: 2.79727e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.76262e-03\tAbsError: 1.97204e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69682e-05\tAbsError: 5.89147e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.00874e-04\tAbsError: 5.54848e+11\n", + " Region: \"zone_1\"\tRelError: 3.62392e-04\tAbsError: 1.46665e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.58171e-04\tAbsError: 4.14226e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.22130e-06\tAbsError: 1.46624e-03\n", + " Region: \"zone_3\"\tRelError: 2.38482e-04\tAbsError: 5.54848e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38984e-05\tAbsError: 3.56593e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.33198e-05\tAbsError: 1.98255e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97042e-04\tAbsError: 4.18018e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.22137e-06\tAbsError: 1.46629e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.19808e-02\tAbsError: 3.06344e+13\n", + " Region: \"zone_1\"\tRelError: 2.04251e-02\tAbsError: 4.10278e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04136e-02\tAbsError: 1.00349e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", + " Region: \"zone_3\"\tRelError: 6.15557e-02\tAbsError: 3.06344e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38926e-02\tAbsError: 1.71938e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.73234e-03\tAbsError: 1.34406e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.91920e-03\tAbsError: 1.01109e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.67954e-04\tAbsError: 1.01821e+11\n", + " Region: \"zone_1\"\tRelError: 2.21136e-04\tAbsError: 6.97280e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20936e-04\tAbsError: 5.57180e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00534e-07\tAbsError: 6.96723e-05\n", + " Region: \"zone_3\"\tRelError: 1.46817e-04\tAbsError: 1.01821e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.39462e-06\tAbsError: 5.27392e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.41727e-06\tAbsError: 4.90816e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35805e-04\tAbsError: 5.79583e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00607e-07\tAbsError: 6.96980e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.51642e-04\tAbsError: 9.55059e+10\n", + " Region: \"zone_1\"\tRelError: 3.88744e-05\tAbsError: 1.03918e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.88446e-05\tAbsError: 4.18646e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.97970e-08\tAbsError: 1.03499e-05\n", + " Region: \"zone_3\"\tRelError: 1.12767e-04\tAbsError: 9.55059e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.17880e-06\tAbsError: 5.35381e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.13971e-06\tAbsError: 4.19677e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04419e-04\tAbsError: 4.29182e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.98061e-08\tAbsError: 1.03531e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.48729e-03\tAbsError: 2.79154e+12\n", + " Region: \"zone_1\"\tRelError: 3.87179e-04\tAbsError: 4.35466e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85934e-04\tAbsError: 2.95614e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24460e-06\tAbsError: 4.32510e-04\n", + " Region: \"zone_3\"\tRelError: 2.10011e-03\tAbsError: 2.79154e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.31175e-04\tAbsError: 9.56489e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.34157e-04\tAbsError: 1.83505e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53353e-03\tAbsError: 3.02108e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24504e-06\tAbsError: 4.32656e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.79283e-03\tAbsError: 1.43848e+12\n", + " Region: \"zone_1\"\tRelError: 3.30611e-03\tAbsError: 7.95001e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.30588e-03\tAbsError: 7.04439e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27004e-07\tAbsError: 7.87957e-05\n", + " Region: \"zone_3\"\tRelError: 1.48671e-03\tAbsError: 1.43848e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.59255e-05\tAbsError: 7.19874e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.55139e-05\tAbsError: 7.18608e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35505e-03\tAbsError: 7.16273e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27048e-07\tAbsError: 7.88086e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.53920e-03\tAbsError: 1.84314e+12\n", + " Region: \"zone_1\"\tRelError: 2.29752e-04\tAbsError: 2.41443e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29064e-04\tAbsError: 2.20702e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", + " Region: \"zone_3\"\tRelError: 1.30944e-03\tAbsError: 1.84314e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11485e-04\tAbsError: 5.81096e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.63190e-04\tAbsError: 1.26205e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.34079e-04\tAbsError: 2.25011e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.02562e-04\tAbsError: 6.84436e+10\n", + " Region: \"zone_1\"\tRelError: 1.21040e-04\tAbsError: 1.06970e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21010e-04\tAbsError: 3.27450e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.06942e-08\tAbsError: 1.06642e-05\n", + " Region: \"zone_3\"\tRelError: 8.15214e-05\tAbsError: 6.84436e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.33271e-06\tAbsError: 3.86457e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.32148e-06\tAbsError: 2.97979e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.48365e-05\tAbsError: 3.43670e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.07019e-08\tAbsError: 1.06669e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.08772e-05\tAbsError: 1.00314e+10\n", + " Region: \"zone_1\"\tRelError: 5.40787e-06\tAbsError: 6.34084e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.38963e-06\tAbsError: 4.94059e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82408e-08\tAbsError: 6.33590e-06\n", + " Region: \"zone_3\"\tRelError: 1.54694e-05\tAbsError: 1.00314e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.74768e-07\tAbsError: 5.64810e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.74551e-07\tAbsError: 4.38331e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45018e-05\tAbsError: 5.07095e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82431e-08\tAbsError: 6.33672e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:03\u001b[0m.\u001b[1;36m771\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: 0.75\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.25466e-04\tAbsError: 3.48774e+11\n", + " Region: \"zone_1\"\tRelError: 7.83109e-05\tAbsError: 1.66659e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.78315e-05\tAbsError: 2.09453e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.79396e-07\tAbsError: 1.66449e-04\n", + " Region: \"zone_3\"\tRelError: 3.47155e-04\tAbsError: 3.48774e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98014e-05\tAbsError: 2.24608e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.95539e-05\tAbsError: 1.24166e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.07320e-04\tAbsError: 2.18500e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.79412e-07\tAbsError: 1.66457e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.62391e-04\tAbsError: 7.31803e+10\n", + " Region: \"zone_1\"\tRelError: 3.39031e-04\tAbsError: 8.88123e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.38775e-04\tAbsError: 4.59725e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.55543e-07\tAbsError: 8.87663e-05\n", + " Region: \"zone_3\"\tRelError: 1.23361e-04\tAbsError: 7.31803e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.89040e-06\tAbsError: 3.23307e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.92637e-06\tAbsError: 4.08496e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15288e-04\tAbsError: 4.64206e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.55633e-07\tAbsError: 8.87978e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.51045e-04\tAbsError: 2.02519e+11\n", + " Region: \"zone_1\"\tRelError: 4.54891e-05\tAbsError: 1.12868e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.51644e-05\tAbsError: 1.25671e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.24705e-07\tAbsError: 1.12743e-04\n", + " Region: \"zone_3\"\tRelError: 2.05556e-04\tAbsError: 2.02519e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12163e-05\tAbsError: 1.36505e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10724e-05\tAbsError: 6.60139e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82943e-04\tAbsError: 1.30848e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.24777e-07\tAbsError: 1.12769e-04\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.67619e-05\tAbsError: 1.02422e+10\n", + " Region: \"zone_1\"\tRelError: 2.21445e-05\tAbsError: 4.91320e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21303e-05\tAbsError: 5.33976e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41260e-08\tAbsError: 4.90786e-06\n", + " Region: \"zone_3\"\tRelError: 1.46175e-05\tAbsError: 1.02422e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.20200e-07\tAbsError: 5.93794e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.20801e-07\tAbsError: 4.30423e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35623e-05\tAbsError: 5.58038e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41284e-08\tAbsError: 4.90869e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:04\u001b[0m.\u001b[1;36m706\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.7000000000000001\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.68185e-04\tAbsError: 1.57528e+11\n", + " Region: \"zone_1\"\tRelError: 3.02594e-05\tAbsError: 1.46953e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.02175e-05\tAbsError: 1.00508e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.19359e-08\tAbsError: 1.45948e-05\n", + " Region: \"zone_3\"\tRelError: 1.37926e-04\tAbsError: 1.57528e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.15139e-06\tAbsError: 7.37040e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.07858e-06\tAbsError: 8.38241e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19654e-04\tAbsError: 1.03331e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.19521e-08\tAbsError: 1.46007e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.04368e+00\tAbsError: 5.76399e+16\n", + " Region: \"zone_1\"\tRelError: 6.20216e+00\tAbsError: 4.26152e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.20216e+00\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.91158e-09\tAbsError: 1.01133e-06\n", + " Region: \"zone_3\"\tRelError: 1.84152e+00\tAbsError: 5.76399e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81952e-01\tAbsError: 2.86549e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.81071e-01\tAbsError: 2.89849e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78493e-01\tAbsError: 4.26142e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.91186e-09\tAbsError: 1.01143e-06\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 3.62519e-04\tAbsError: 8.85487e+10\n", + " Region: \"zone_1\"\tRelError: 2.58264e-04\tAbsError: 9.90724e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58235e-04\tAbsError: 3.93706e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.84079e-08\tAbsError: 9.86787e-06\n", + " Region: \"zone_3\"\tRelError: 1.04255e-04\tAbsError: 8.85487e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.93727e-06\tAbsError: 4.96723e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.90392e-06\tAbsError: 3.88764e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.63857e-05\tAbsError: 4.02462e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.84165e-08\tAbsError: 9.87086e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.09882e-04\tAbsError: 1.05387e+11\n", + " Region: \"zone_1\"\tRelError: 1.91896e-05\tAbsError: 8.11152e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91665e-05\tAbsError: 7.26801e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.30974e-08\tAbsError: 8.03884e-06\n", + " Region: \"zone_3\"\tRelError: 9.06925e-05\tAbsError: 1.05387e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41210e-06\tAbsError: 4.74044e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.36012e-06\tAbsError: 5.79823e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.78972e-05\tAbsError: 7.44246e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.31071e-08\tAbsError: 8.04242e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.11982e+00\tAbsError: 2.71568e+16\n", + " Region: \"zone_1\"\tRelError: 3.35178e+00\tAbsError: 4.09552e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35178e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75560e-09\tAbsError: 9.57391e-07\n", + " Region: \"zone_3\"\tRelError: 1.76804e+00\tAbsError: 2.71568e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68907e-01\tAbsError: 1.36090e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.68433e-01\tAbsError: 1.35478e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30705e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75592e-09\tAbsError: 9.57503e-07\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 5.47840e-05\tAbsError: 9.54711e+09\n", + " Region: \"zone_1\"\tRelError: 4.01920e-05\tAbsError: 5.92982e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.01749e-05\tAbsError: 4.76008e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70572e-08\tAbsError: 5.92506e-06\n", + " Region: \"zone_3\"\tRelError: 1.45920e-05\tAbsError: 9.54711e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.57614e-07\tAbsError: 5.39303e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.57465e-07\tAbsError: 4.15407e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36599e-05\tAbsError: 4.87161e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70596e-08\tAbsError: 5.92588e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:06\u001b[0m.\u001b[1;36m793\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:06\u001b[0m.\u001b[1;36m793\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7428571428571428\u001b[0m \n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.44388e-05\tAbsError: 1.29327e+10\n", + " Region: \"zone_1\"\tRelError: 2.67541e-06\tAbsError: 8.73025e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.65031e-06\tAbsError: 7.36577e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.51027e-08\tAbsError: 8.72289e-06\n", + " Region: \"zone_3\"\tRelError: 1.17634e-05\tAbsError: 1.29327e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.52706e-07\tAbsError: 8.97101e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.39977e-07\tAbsError: 3.96172e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04456e-05\tAbsError: 7.66709e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.51079e-08\tAbsError: 8.72483e-06\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.86890e+00\tAbsError: 6.02920e+16\n", + " Region: \"zone_1\"\tRelError: 2.42910e-01\tAbsError: 2.38352e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42317e-01\tAbsError: 3.27219e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.92373e-04\tAbsError: 2.05630e-01\n", + " Region: \"zone_3\"\tRelError: 1.62599e+00\tAbsError: 6.02920e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.58106e-01\tAbsError: 3.05392e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.16845e-01\tAbsError: 2.97528e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.50451e-01\tAbsError: 3.27220e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.92373e-04\tAbsError: 2.05630e-01\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:06\u001b[0m.\u001b[1;36m903\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.63125\u001b[0m \n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "number of equations 31816\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 7.21635e-06\tAbsError: 6.66070e+09\n", + " Region: \"zone_1\"\tRelError: 1.30608e-06\tAbsError: 5.92265e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28905e-06\tAbsError: 4.03393e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70320e-08\tAbsError: 5.91862e-06\n", + " Region: \"zone_3\"\tRelError: 5.91027e-06\tAbsError: 6.66070e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61854e-07\tAbsError: 4.98332e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.27195e-07\tAbsError: 1.67738e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.20418e-06\tAbsError: 4.19235e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70346e-08\tAbsError: 5.91965e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:07\u001b[0m.\u001b[1;36m421\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.6\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.73275e+00\tAbsError: 2.68838e+16\n", + " Region: \"zone_1\"\tRelError: 1.92080e-01\tAbsError: 1.46306e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91747e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32681e-04\tAbsError: 1.15542e-01\n", + " Region: \"zone_3\"\tRelError: 1.54067e+00\tAbsError: 2.68838e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.36324e-01\tAbsError: 1.35736e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.01335e-01\tAbsError: 1.33102e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02681e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32681e-04\tAbsError: 1.15542e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.88825e+00\tAbsError: 3.66092e+16\n", + " Region: \"zone_1\"\tRelError: 5.83989e-01\tAbsError: 1.20812e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.83715e-01\tAbsError: 2.58680e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.73592e-04\tAbsError: 9.49436e-02\n", + " Region: \"zone_3\"\tRelError: 1.30426e+00\tAbsError: 3.66092e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.65737e-01\tAbsError: 1.87328e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.12024e-01\tAbsError: 1.78764e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.26225e-01\tAbsError: 2.44271e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.73592e-04\tAbsError: 9.49436e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.15149e+01\tAbsError: 5.17173e+16\n", + " Region: \"zone_1\"\tRelError: 9.68451e+00\tAbsError: 4.23844e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.68451e+00\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.76263e-09\tAbsError: 9.59637e-07\n", + " Region: \"zone_3\"\tRelError: 1.83044e+00\tAbsError: 5.17173e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80233e-01\tAbsError: 2.56822e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.79429e-01\tAbsError: 2.60351e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.70776e-01\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.76291e-09\tAbsError: 9.59736e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.41152e+01\tAbsError: 9.50503e+15\n", + " Region: \"zone_1\"\tRelError: 2.23613e+01\tAbsError: 4.22094e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23613e+01\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04249e-09\tAbsError: 3.62828e-07\n", + " Region: \"zone_3\"\tRelError: 1.75392e+00\tAbsError: 9.50503e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80082e-01\tAbsError: 5.07100e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.79909e-01\tAbsError: 4.43403e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93931e-01\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04297e-09\tAbsError: 3.63001e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.57743e+01\tAbsError: 8.48667e+15\n", + " Region: \"zone_1\"\tRelError: 1.40602e+01\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40602e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57556e-10\tAbsError: 1.24451e-07\n", + " Region: \"zone_3\"\tRelError: 1.71408e+00\tAbsError: 8.48667e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69582e-01\tAbsError: 4.51146e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69441e-01\tAbsError: 3.97521e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75053e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57765e-10\tAbsError: 1.24526e-07\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.12307e+00\tAbsError: 1.60442e+16\n", + " Region: \"zone_1\"\tRelError: 1.49907e-01\tAbsError: 9.31426e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49713e-01\tAbsError: 2.58569e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93773e-04\tAbsError: 6.72856e-02\n", + " Region: \"zone_3\"\tRelError: 9.73164e-01\tAbsError: 1.60442e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39500e-01\tAbsError: 8.04160e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.83757e-01\tAbsError: 8.00261e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49713e-01\tAbsError: 2.43087e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93773e-04\tAbsError: 6.72856e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.05061e+00\tAbsError: 1.23556e+16\n", + " Region: \"zone_1\"\tRelError: 5.12291e-01\tAbsError: 5.29221e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.12172e-01\tAbsError: 1.17189e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18739e-04\tAbsError: 4.12032e-02\n", + " Region: \"zone_3\"\tRelError: 5.38316e-01\tAbsError: 1.23556e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01621e-01\tAbsError: 6.29025e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.14930e-01\tAbsError: 6.06537e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21646e-01\tAbsError: 1.17190e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18771e-04\tAbsError: 4.12145e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.84618e+00\tAbsError: 5.28715e+16\n", + " Region: \"zone_1\"\tRelError: 2.36818e-01\tAbsError: 2.22968e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36269e-01\tAbsError: 3.24492e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.48791e-04\tAbsError: 1.90518e-01\n", + " Region: \"zone_3\"\tRelError: 1.60937e+00\tAbsError: 5.28715e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.54300e-01\tAbsError: 2.70880e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.18083e-01\tAbsError: 2.57835e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36434e-01\tAbsError: 3.24492e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.48791e-04\tAbsError: 1.90518e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.85845e+00\tAbsError: 8.90679e+15\n", + " Region: \"zone_1\"\tRelError: 3.16258e-01\tAbsError: 8.25488e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.16114e-01\tAbsError: 3.22432e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44787e-04\tAbsError: 5.03056e-02\n", + " Region: \"zone_3\"\tRelError: 1.54219e+00\tAbsError: 8.90679e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57509e-01\tAbsError: 4.31699e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.26535e-01\tAbsError: 4.58980e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57998e-01\tAbsError: 3.22433e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44787e-04\tAbsError: 5.03056e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.55570e+00\tAbsError: 5.16331e+15\n", + " Region: \"zone_1\"\tRelError: 3.06111e+00\tAbsError: 6.97364e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.06100e+00\tAbsError: 3.07634e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12162e-04\tAbsError: 3.89730e-02\n", + " Region: \"zone_3\"\tRelError: 1.49459e+00\tAbsError: 5.16331e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38938e-01\tAbsError: 2.46191e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.11412e-01\tAbsError: 2.70140e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44124e-01\tAbsError: 3.07634e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12162e-04\tAbsError: 3.89730e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.25010e-01\tAbsError: 4.83168e+15\n", + " Region: \"zone_1\"\tRelError: 9.35029e-02\tAbsError: 6.02167e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.33558e-02\tAbsError: 9.16529e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47066e-04\tAbsError: 5.10514e-02\n", + " Region: \"zone_3\"\tRelError: 3.31507e-01\tAbsError: 4.83168e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74852e-01\tAbsError: 2.44485e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.96161e-02\tAbsError: 2.38683e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.68922e-02\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47066e-04\tAbsError: 5.10514e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.04879e-01\tAbsError: 2.54878e+15\n", + " Region: \"zone_1\"\tRelError: 1.27217e-02\tAbsError: 2.65399e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19572e-02\tAbsError: 3.55247e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.64526e-04\tAbsError: 2.65044e-01\n", + " Region: \"zone_3\"\tRelError: 9.21577e-02\tAbsError: 2.54878e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.96473e-02\tAbsError: 1.41994e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.63665e-02\tAbsError: 1.12884e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.53794e-02\tAbsError: 3.55247e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.64526e-04\tAbsError: 2.65044e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.52308e+00\tAbsError: 3.28495e+16\n", + " Region: \"zone_1\"\tRelError: 3.42407e-01\tAbsError: 1.19297e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.42138e-01\tAbsError: 2.58048e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69384e-04\tAbsError: 9.34920e-02\n", + " Region: \"zone_3\"\tRelError: 1.18068e+00\tAbsError: 3.28495e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.63948e-01\tAbsError: 1.69253e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.02911e-01\tAbsError: 1.59242e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.13548e-01\tAbsError: 2.45952e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69384e-04\tAbsError: 9.34920e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.17207e+00\tAbsError: 6.17482e+15\n", + " Region: \"zone_1\"\tRelError: 1.28422e-01\tAbsError: 3.49522e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28396e-01\tAbsError: 2.58694e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.61752e-05\tAbsError: 9.08277e-03\n", + " Region: \"zone_3\"\tRelError: 1.04365e+00\tAbsError: 6.17482e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.74587e-01\tAbsError: 3.00441e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.29308e-01\tAbsError: 3.17042e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39725e-01\tAbsError: 2.54349e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.70096e-05\tAbsError: 9.37260e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.13964e+00\tAbsError: 3.47644e+15\n", + " Region: \"zone_1\"\tRelError: 1.85284e-01\tAbsError: 3.50197e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85258e-01\tAbsError: 2.58979e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.62526e-05\tAbsError: 9.12177e-03\n", + " Region: \"zone_3\"\tRelError: 9.54354e-01\tAbsError: 3.47644e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46208e-01\tAbsError: 1.62778e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.89583e-01\tAbsError: 1.84866e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18536e-01\tAbsError: 2.53855e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.62526e-05\tAbsError: 9.12177e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.30868e-01\tAbsError: 1.08442e+15\n", + " Region: \"zone_1\"\tRelError: 2.27753e-02\tAbsError: 2.15920e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21537e-02\tAbsError: 2.84606e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.21607e-04\tAbsError: 2.15635e-01\n", + " Region: \"zone_3\"\tRelError: 1.08092e-01\tAbsError: 1.08442e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.76472e-02\tAbsError: 4.26455e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.43864e-02\tAbsError: 6.57964e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54371e-02\tAbsError: 2.84606e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.21607e-04\tAbsError: 2.15635e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.96665e-01\tAbsError: 5.16423e+14\n", + " Region: \"zone_1\"\tRelError: 3.51283e-01\tAbsError: 1.69820e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.51234e-01\tAbsError: 6.58454e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.87925e-05\tAbsError: 1.69161e-02\n", + " Region: \"zone_3\"\tRelError: 2.45382e-01\tAbsError: 5.16423e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89150e-03\tAbsError: 2.57999e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.81653e-03\tAbsError: 2.58423e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.35626e-01\tAbsError: 7.03970e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.87939e-05\tAbsError: 1.69169e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.62225e-01\tAbsError: 1.05010e+16\n", + " Region: \"zone_1\"\tRelError: 2.83844e-01\tAbsError: 4.59930e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83744e-01\tAbsError: 1.13358e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.98633e-05\tAbsError: 3.46572e-02\n", + " Region: \"zone_3\"\tRelError: 4.78382e-01\tAbsError: 1.05010e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.99385e-01\tAbsError: 5.29788e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.14439e-01\tAbsError: 5.20316e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64458e-01\tAbsError: 1.13359e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.98633e-05\tAbsError: 3.46572e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.26645e-01\tAbsError: 2.15278e+15\n", + " Region: \"zone_1\"\tRelError: 3.31433e-01\tAbsError: 6.05991e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.31290e-01\tAbsError: 1.10534e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42795e-04\tAbsError: 4.95458e-02\n", + " Region: \"zone_3\"\tRelError: 3.95212e-01\tAbsError: 2.15278e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12816e-01\tAbsError: 1.12567e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.35891e-01\tAbsError: 1.02711e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.63622e-02\tAbsError: 1.10535e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42916e-04\tAbsError: 4.95873e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 8.24095e-01\tAbsError: 1.04537e+15\n", + " Region: \"zone_1\"\tRelError: 4.93544e-01\tAbsError: 2.65000e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.93494e-01\tAbsError: 9.16559e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.98913e-05\tAbsError: 1.73344e-02\n", + " Region: \"zone_3\"\tRelError: 3.30551e-01\tAbsError: 1.04537e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84640e-01\tAbsError: 5.55503e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10521e-01\tAbsError: 4.89866e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53403e-02\tAbsError: 9.16565e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.98913e-05\tAbsError: 1.73344e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.55617e-01\tAbsError: 2.35794e+14\n", + " Region: \"zone_1\"\tRelError: 4.99367e-02\tAbsError: 1.38607e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.98970e-02\tAbsError: 6.98741e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.97528e-05\tAbsError: 1.37908e-02\n", + " Region: \"zone_3\"\tRelError: 1.05680e-01\tAbsError: 2.35794e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.27300e-03\tAbsError: 1.18548e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.21148e-03\tAbsError: 1.17246e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.51557e-02\tAbsError: 7.06637e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.97528e-05\tAbsError: 1.37908e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.15967e-01\tAbsError: 2.31425e+15\n", + " Region: \"zone_1\"\tRelError: 1.78760e-02\tAbsError: 2.59537e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.71284e-02\tAbsError: 3.48918e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.47562e-04\tAbsError: 2.59188e-01\n", + " Region: \"zone_3\"\tRelError: 9.80906e-02\tAbsError: 2.31425e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.02699e-02\tAbsError: 1.24901e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.64089e-02\tAbsError: 1.06525e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.06641e-02\tAbsError: 3.48918e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.47562e-04\tAbsError: 2.59188e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.23535e-02\tAbsError: 4.12264e+13\n", + " Region: \"zone_1\"\tRelError: 4.26477e-02\tAbsError: 7.52812e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.26260e-02\tAbsError: 5.04964e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16985e-05\tAbsError: 7.52307e-03\n", + " Region: \"zone_3\"\tRelError: 2.97057e-02\tAbsError: 4.12264e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.92264e-04\tAbsError: 2.07706e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.00613e-04\tAbsError: 2.04559e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88912e-02\tAbsError: 5.61722e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17073e-05\tAbsError: 7.52586e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.16517e-01\tAbsError: 3.59072e+14\n", + " Region: \"zone_1\"\tRelError: 2.25771e-02\tAbsError: 4.51359e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24477e-02\tAbsError: 2.19008e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29405e-04\tAbsError: 4.49169e-02\n", + " Region: \"zone_3\"\tRelError: 9.39396e-02\tAbsError: 3.59072e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.49211e-02\tAbsError: 2.04313e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11023e-02\tAbsError: 1.54759e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77866e-02\tAbsError: 2.31053e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29562e-04\tAbsError: 4.49702e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.23262e-02\tAbsError: 1.95138e+14\n", + " Region: \"zone_1\"\tRelError: 2.57438e-02\tAbsError: 3.23382e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.56511e-02\tAbsError: 1.67807e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.26701e-05\tAbsError: 3.21704e-02\n", + " Region: \"zone_3\"\tRelError: 6.65824e-02\tAbsError: 1.95138e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.49682e-02\tAbsError: 6.65802e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.06072e-03\tAbsError: 1.28558e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.46071e-03\tAbsError: 1.74923e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.26947e-05\tAbsError: 3.21777e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.12114e-02\tAbsError: 1.98754e+13\n", + " Region: \"zone_1\"\tRelError: 7.04172e-03\tAbsError: 6.58751e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.02275e-03\tAbsError: 5.51750e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89733e-05\tAbsError: 6.58199e-03\n", + " Region: \"zone_3\"\tRelError: 1.41697e-02\tAbsError: 1.98754e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43525e-04\tAbsError: 1.00008e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.47254e-04\tAbsError: 9.87467e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32599e-02\tAbsError: 5.78756e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89775e-05\tAbsError: 6.58354e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.78541e-01\tAbsError: 4.65128e+14\n", + " Region: \"zone_1\"\tRelError: 1.82836e-01\tAbsError: 1.66511e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82788e-01\tAbsError: 6.74606e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.78290e-05\tAbsError: 1.65836e-02\n", + " Region: \"zone_3\"\tRelError: 1.95705e-01\tAbsError: 4.65128e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.02898e-03\tAbsError: 2.34869e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.93659e-03\tAbsError: 2.30259e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85691e-01\tAbsError: 7.16761e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.78290e-05\tAbsError: 1.65838e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.63082e-02\tAbsError: 2.31107e+13\n", + " Region: \"zone_1\"\tRelError: 2.74677e-02\tAbsError: 9.69805e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74649e-02\tAbsError: 2.62228e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.78862e-06\tAbsError: 9.67182e-04\n", + " Region: \"zone_3\"\tRelError: 1.88405e-02\tAbsError: 2.31107e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.28188e-04\tAbsError: 1.16873e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.22003e-04\tAbsError: 1.14235e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83875e-02\tAbsError: 2.74324e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.78980e-06\tAbsError: 9.67608e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.42280e-02\tAbsError: 2.47518e+13\n", + " Region: \"zone_1\"\tRelError: 5.53796e-03\tAbsError: 6.73994e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.53607e-03\tAbsError: 1.69800e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89289e-06\tAbsError: 6.57014e-04\n", + " Region: \"zone_3\"\tRelError: 1.86900e-02\tAbsError: 2.47518e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53333e-03\tAbsError: 1.14134e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.39823e-03\tAbsError: 1.33384e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57566e-02\tAbsError: 1.77535e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89838e-06\tAbsError: 6.58918e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.13427e-02\tAbsError: 1.62210e+13\n", + " Region: \"zone_1\"\tRelError: 1.73710e-02\tAbsError: 1.21679e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73676e-02\tAbsError: 1.36050e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.46587e-06\tAbsError: 1.20318e-03\n", + " Region: \"zone_3\"\tRelError: 1.39717e-02\tAbsError: 1.62210e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19687e-03\tAbsError: 6.47584e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09668e-03\tAbsError: 9.74512e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16747e-02\tAbsError: 1.39577e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.46587e-06\tAbsError: 1.20318e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.24258e-02\tAbsError: 1.10918e+13\n", + " Region: \"zone_1\"\tRelError: 4.12899e-03\tAbsError: 9.16825e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.12635e-03\tAbsError: 2.69238e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.63359e-06\tAbsError: 9.14133e-04\n", + " Region: \"zone_3\"\tRelError: 8.29681e-03\tAbsError: 1.10918e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.48339e-04\tAbsError: 5.58229e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.46113e-04\tAbsError: 5.50951e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.79972e-03\tAbsError: 2.89698e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.63458e-06\tAbsError: 9.14508e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.69761e-02\tAbsError: 3.74524e+13\n", + " Region: \"zone_1\"\tRelError: 2.29430e-02\tAbsError: 7.42886e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29216e-02\tAbsError: 5.18656e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.14100e-05\tAbsError: 7.42368e-03\n", + " Region: \"zone_3\"\tRelError: 2.40331e-02\tAbsError: 3.74524e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.05669e-04\tAbsError: 1.90492e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.13087e-04\tAbsError: 1.84032e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31929e-02\tAbsError: 5.75912e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.14194e-05\tAbsError: 7.42671e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.70521e-04\tAbsError: 5.09113e+11\n", + " Region: \"zone_1\"\tRelError: 8.68892e-05\tAbsError: 1.38144e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.29133e-05\tAbsError: 4.07789e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.97587e-06\tAbsError: 1.38103e-03\n", + " Region: \"zone_3\"\tRelError: 2.83632e-04\tAbsError: 5.09113e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.08586e-05\tAbsError: 3.02120e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.47789e-05\tAbsError: 2.06993e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.44019e-04\tAbsError: 4.12158e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.97592e-06\tAbsError: 1.38107e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 7.66909e-03\tAbsError: 3.14704e+12\n", + " Region: \"zone_1\"\tRelError: 4.55516e-03\tAbsError: 4.55926e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.55385e-03\tAbsError: 3.50181e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31037e-06\tAbsError: 4.55576e-04\n", + " Region: \"zone_3\"\tRelError: 3.11393e-03\tAbsError: 3.14704e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.10265e-05\tAbsError: 1.59250e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.05073e-05\tAbsError: 1.55454e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.05109e-03\tAbsError: 3.58954e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31089e-06\tAbsError: 4.55760e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.53065e-03\tAbsError: 7.24481e+11\n", + " Region: \"zone_1\"\tRelError: 1.49459e-03\tAbsError: 1.07639e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49149e-03\tAbsError: 6.55190e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.09641e-06\tAbsError: 1.07573e-03\n", + " Region: \"zone_3\"\tRelError: 1.03606e-03\tAbsError: 7.24481e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73129e-05\tAbsError: 2.45596e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.81580e-05\tAbsError: 4.78885e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.37490e-04\tAbsError: 6.76708e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.09642e-06\tAbsError: 1.07576e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.18008e-03\tAbsError: 1.59787e+12\n", + " Region: \"zone_1\"\tRelError: 7.30404e-04\tAbsError: 4.14536e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.29211e-04\tAbsError: 3.64518e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19313e-06\tAbsError: 4.14171e-04\n", + " Region: \"zone_3\"\tRelError: 1.44968e-03\tAbsError: 1.59787e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.59026e-05\tAbsError: 8.02763e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.55751e-05\tAbsError: 7.95108e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37700e-03\tAbsError: 3.97752e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19336e-06\tAbsError: 4.14251e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.95048e-02\tAbsError: 2.09949e+13\n", + " Region: \"zone_1\"\tRelError: 1.44604e-02\tAbsError: 9.66419e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44577e-02\tAbsError: 2.58958e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.77866e-06\tAbsError: 9.63829e-04\n", + " Region: \"zone_3\"\tRelError: 1.50444e-02\tAbsError: 2.09949e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.32276e-04\tAbsError: 1.06900e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.27944e-04\tAbsError: 1.03050e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45814e-02\tAbsError: 2.79912e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.77982e-06\tAbsError: 9.64263e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.84577e-03\tAbsError: 1.35231e+12\n", + " Region: \"zone_1\"\tRelError: 4.49302e-04\tAbsError: 7.76287e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.49080e-04\tAbsError: 6.67565e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.21714e-07\tAbsError: 7.69611e-05\n", + " Region: \"zone_3\"\tRelError: 1.39647e-03\tAbsError: 1.35231e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.27210e-05\tAbsError: 6.77214e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.23713e-05\tAbsError: 6.75091e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27115e-03\tAbsError: 6.82002e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.21783e-07\tAbsError: 7.69826e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 3.25810e-03\tAbsError: 1.38433e+12\n", + " Region: \"zone_1\"\tRelError: 1.93579e-03\tAbsError: 8.23265e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93556e-03\tAbsError: 1.42317e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36383e-07\tAbsError: 8.21841e-05\n", + " Region: \"zone_3\"\tRelError: 1.32231e-03\tAbsError: 1.38433e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38095e-05\tAbsError: 7.00620e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.33622e-05\tAbsError: 6.83707e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29490e-03\tAbsError: 1.51943e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36475e-07\tAbsError: 8.22170e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.69038e-03\tAbsError: 1.04370e+12\n", + " Region: \"zone_1\"\tRelError: 1.58975e-03\tAbsError: 1.04879e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58945e-03\tAbsError: 5.38488e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.00336e-07\tAbsError: 1.04341e-04\n", + " Region: \"zone_3\"\tRelError: 1.10063e-03\tAbsError: 1.04370e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.23814e-05\tAbsError: 5.26651e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.22994e-05\tAbsError: 5.17045e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.95649e-04\tAbsError: 5.63224e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.00360e-07\tAbsError: 1.04351e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 9.04358e-04\tAbsError: 6.91618e+11\n", + " Region: \"zone_1\"\tRelError: 3.02587e-04\tAbsError: 7.78938e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.02363e-04\tAbsError: 1.55785e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23501e-07\tAbsError: 7.77380e-05\n", + " Region: \"zone_3\"\tRelError: 6.01772e-04\tAbsError: 6.91618e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.55559e-05\tAbsError: 3.47877e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.53466e-05\tAbsError: 3.43741e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.70646e-04\tAbsError: 1.69595e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23586e-07\tAbsError: 7.77681e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 6.48585e-04\tAbsError: 2.47337e+11\n", + " Region: \"zone_1\"\tRelError: 3.85704e-04\tAbsError: 3.12578e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85614e-04\tAbsError: 2.70859e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.98278e-08\tAbsError: 3.12307e-05\n", + " Region: \"zone_3\"\tRelError: 2.62881e-04\tAbsError: 2.47337e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.45149e-06\tAbsError: 1.25219e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.39340e-06\tAbsError: 1.22119e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57946e-04\tAbsError: 2.86540e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.98642e-08\tAbsError: 3.12442e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.92425e-03\tAbsError: 2.88808e+12\n", + " Region: \"zone_1\"\tRelError: 2.42079e-03\tAbsError: 4.51314e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41950e-03\tAbsError: 3.48348e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29703e-06\tAbsError: 4.50966e-04\n", + " Region: \"zone_3\"\tRelError: 2.50346e-03\tAbsError: 2.88808e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.20028e-05\tAbsError: 1.46758e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.15452e-05\tAbsError: 1.42050e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.43861e-03\tAbsError: 3.69507e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29753e-06\tAbsError: 4.51145e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.59664e-04\tAbsError: 7.21850e+10\n", + " Region: \"zone_1\"\tRelError: 3.97219e-05\tAbsError: 8.40966e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.94799e-05\tAbsError: 4.48581e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.41963e-07\tAbsError: 8.40517e-05\n", + " Region: \"zone_3\"\tRelError: 1.19942e-04\tAbsError: 7.21850e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.84724e-06\tAbsError: 3.25063e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.88000e-06\tAbsError: 3.96787e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11972e-04\tAbsError: 4.54967e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.42049e-07\tAbsError: 8.40819e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.87260e-04\tAbsError: 1.29403e+11\n", + " Region: \"zone_1\"\tRelError: 6.28801e-05\tAbsError: 2.91909e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.27963e-05\tAbsError: 3.06059e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.38368e-08\tAbsError: 2.91603e-05\n", + " Region: \"zone_3\"\tRelError: 1.24379e-04\tAbsError: 1.29403e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91169e-06\tAbsError: 6.49895e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.87741e-06\tAbsError: 6.44135e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18506e-04\tAbsError: 3.32307e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.38700e-08\tAbsError: 2.91722e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.67954e-04\tAbsError: 1.01821e+11\n", + " Region: \"zone_1\"\tRelError: 2.21136e-04\tAbsError: 6.97280e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20936e-04\tAbsError: 5.57180e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00534e-07\tAbsError: 6.96723e-05\n", + " Region: \"zone_3\"\tRelError: 1.46817e-04\tAbsError: 1.01821e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.39462e-06\tAbsError: 5.27392e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.41727e-06\tAbsError: 4.90816e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35805e-04\tAbsError: 5.79583e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00607e-07\tAbsError: 6.96980e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.27080e-04\tAbsError: 8.95041e+10\n", + " Region: \"zone_1\"\tRelError: 1.35033e-04\tAbsError: 6.56420e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35014e-04\tAbsError: 9.85787e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88520e-08\tAbsError: 6.55434e-06\n", + " Region: \"zone_3\"\tRelError: 9.20470e-05\tAbsError: 8.95041e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.93785e-07\tAbsError: 4.53123e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.63978e-07\tAbsError: 4.41918e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.02704e-05\tAbsError: 1.05718e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88598e-08\tAbsError: 6.55724e-06\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.08379e-03\tAbsError: 1.26566e+12\n", + " Region: \"zone_1\"\tRelError: 1.02437e-03\tAbsError: 8.20169e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02414e-03\tAbsError: 1.43461e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.35475e-07\tAbsError: 8.18735e-05\n", + " Region: \"zone_3\"\tRelError: 1.05941e-03\tAbsError: 1.26566e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.41101e-05\tAbsError: 6.43548e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.37336e-05\tAbsError: 6.22113e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03133e-03\tAbsError: 1.56834e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.35568e-07\tAbsError: 8.19066e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.30527e-04\tAbsError: 8.36755e+10\n", + " Region: \"zone_1\"\tRelError: 3.21528e-05\tAbsError: 9.58256e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.21253e-05\tAbsError: 3.75795e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.74775e-08\tAbsError: 9.54498e-06\n", + " Region: \"zone_3\"\tRelError: 9.83741e-05\tAbsError: 8.36755e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.76469e-06\tAbsError: 4.69627e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.73544e-06\tAbsError: 3.67128e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.08464e-05\tAbsError: 3.83355e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.74857e-08\tAbsError: 9.54784e-06\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 6.51617e-05\tAbsError: 4.65398e+10\n", + " Region: \"zone_1\"\tRelError: 2.18609e-05\tAbsError: 6.36014e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18427e-05\tAbsError: 1.11819e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82534e-08\tAbsError: 6.34896e-06\n", + " Region: \"zone_3\"\tRelError: 4.33008e-05\tAbsError: 4.65398e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04809e-06\tAbsError: 2.33986e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03254e-06\tAbsError: 2.31412e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.12019e-05\tAbsError: 1.20844e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82605e-08\tAbsError: 6.35150e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:21\u001b[0m.\u001b[1;36m511\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.8\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.02562e-04\tAbsError: 6.84436e+10\n", + " Region: \"zone_1\"\tRelError: 1.21040e-04\tAbsError: 1.06970e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21010e-04\tAbsError: 3.27450e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.06942e-08\tAbsError: 1.06642e-05\n", + " Region: \"zone_3\"\tRelError: 8.15214e-05\tAbsError: 6.84436e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.33271e-06\tAbsError: 3.86456e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.32148e-06\tAbsError: 2.97979e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.48365e-05\tAbsError: 3.43670e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.07019e-08\tAbsError: 1.06669e-05\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 5.05688e-05\tAbsError: 1.87400e+10\n", + " Region: \"zone_1\"\tRelError: 3.00855e-05\tAbsError: 2.16282e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.00793e-05\tAbsError: 2.13512e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.21457e-09\tAbsError: 2.16069e-06\n", + " Region: \"zone_3\"\tRelError: 2.04834e-05\tAbsError: 1.87400e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.86175e-07\tAbsError: 9.48899e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.81057e-07\tAbsError: 9.25103e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01099e-05\tAbsError: 2.27669e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.21717e-09\tAbsError: 2.16162e-06\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 4.16846e-04\tAbsError: 2.27990e+11\n", + " Region: \"zone_1\"\tRelError: 2.05214e-04\tAbsError: 3.10681e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05125e-04\tAbsError: 2.73539e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.92758e-08\tAbsError: 3.10408e-05\n", + " Region: \"zone_3\"\tRelError: 2.11632e-04\tAbsError: 2.27990e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.53498e-06\tAbsError: 1.15719e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.48133e-06\tAbsError: 1.12271e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06527e-04\tAbsError: 2.97043e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.93115e-08\tAbsError: 3.10540e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.86463e-05\tAbsError: 9.22316e+09\n", + " Region: \"zone_1\"\tRelError: 4.64280e-06\tAbsError: 5.64037e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62657e-06\tAbsError: 4.63704e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62238e-08\tAbsError: 5.63573e-06\n", + " Region: \"zone_3\"\tRelError: 1.40035e-05\tAbsError: 9.22316e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46099e-07\tAbsError: 5.22327e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.46153e-07\tAbsError: 3.99989e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30950e-05\tAbsError: 4.73572e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62261e-08\tAbsError: 5.63655e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:22\u001b[0m.\u001b[1;36m518\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:22\u001b[0m.\u001b[1;36m518\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7374999999999999\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.67619e-05\tAbsError: 1.02422e+10\n", + " Region: \"zone_1\"\tRelError: 2.21445e-05\tAbsError: 4.91320e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21303e-05\tAbsError: 5.33976e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41260e-08\tAbsError: 4.90786e-06\n", + " Region: \"zone_3\"\tRelError: 1.46175e-05\tAbsError: 1.02422e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.20200e-07\tAbsError: 5.93794e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.20801e-07\tAbsError: 4.30421e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35623e-05\tAbsError: 5.58038e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41284e-08\tAbsError: 4.90869e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:23\u001b[0m.\u001b[1;36m083\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.7000000000000001\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.97502e+01\tAbsError: 1.32808e+17\n", + " Region: \"zone_1\"\tRelError: 2.76074e+01\tAbsError: 4.09563e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76074e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.00798e-09\tAbsError: 2.08971e-06\n", + " Region: \"zone_3\"\tRelError: 2.14284e+00\tAbsError: 1.32808e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.64512e-01\tAbsError: 6.68287e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.62033e-01\tAbsError: 6.59795e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.16298e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.01029e-09\tAbsError: 2.09057e-06\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.45746e-04\tAbsError: 8.22905e+10\n", + " Region: \"zone_1\"\tRelError: 7.17400e-05\tAbsError: 6.55605e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.17211e-05\tAbsError: 9.99739e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88270e-08\tAbsError: 6.54605e-06\n", + " Region: \"zone_3\"\tRelError: 7.40064e-05\tAbsError: 8.22905e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.17218e-07\tAbsError: 4.18049e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.91845e-07\tAbsError: 4.04856e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.21785e-05\tAbsError: 1.09283e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88347e-08\tAbsError: 6.54890e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.04546e+01\tAbsError: 4.76402e+16\n", + " Region: \"zone_1\"\tRelError: 1.86325e+01\tAbsError: 4.22100e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86325e+01\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.66022e-09\tAbsError: 9.24093e-07\n", + " Region: \"zone_3\"\tRelError: 1.82215e+00\tAbsError: 4.76402e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78912e-01\tAbsError: 2.36618e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.78161e-01\tAbsError: 2.39784e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.65074e-01\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.66050e-09\tAbsError: 9.24192e-07\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 3.25825e-05\tAbsError: 1.73376e+10\n", + " Region: \"zone_1\"\tRelError: 1.60497e-05\tAbsError: 2.15828e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60435e-05\tAbsError: 2.16924e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.20100e-09\tAbsError: 2.15611e-06\n", + " Region: \"zone_3\"\tRelError: 1.65328e-05\tAbsError: 1.73376e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.93034e-07\tAbsError: 8.79661e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.88292e-07\tAbsError: 8.54099e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61453e-05\tAbsError: 2.36237e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.20362e-09\tAbsError: 2.15705e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 8.61535e+00\tAbsError: 1.17905e+17\n", + " Region: \"zone_1\"\tRelError: 7.44285e-01\tAbsError: 3.38569e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.43397e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.87545e-04\tAbsError: 3.07806e-01\n", + " Region: \"zone_3\"\tRelError: 7.87107e+00\tAbsError: 1.17905e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17750e-01\tAbsError: 5.81639e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.67341e-01\tAbsError: 5.97408e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.58509e+00\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.87924e-04\tAbsError: 3.07944e-01\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:24\u001b[0m.\u001b[1;36m622\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:24\u001b[0m.\u001b[1;36m654\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: 0.85\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:24\u001b[0m.\u001b[1;36m656\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.0 bias\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:24\u001b[0m.\u001b[1;36m687\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.1\u001b[0m \n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 0\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 5.11982e+00\tAbsError: 2.71568e+16\n", + " Region: \"zone_1\"\tRelError: 3.35178e+00\tAbsError: 4.09552e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35178e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75560e-09\tAbsError: 9.57391e-07\n", + " Region: \"zone_3\"\tRelError: 1.76804e+00\tAbsError: 2.71568e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68907e-01\tAbsError: 1.36090e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.68433e-01\tAbsError: 1.35478e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30705e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75592e-09\tAbsError: 9.57503e-07\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.08204e+00\tAbsError: 4.87885e+16\n", + " Region: \"zone_1\"\tRelError: 4.80662e-01\tAbsError: 2.12907e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.80142e-01\tAbsError: 3.22431e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.20374e-04\tAbsError: 1.80664e-01\n", + " Region: \"zone_3\"\tRelError: 1.60138e+00\tAbsError: 4.87885e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.52649e-01\tAbsError: 2.49201e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.15413e-01\tAbsError: 2.38684e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32794e-01\tAbsError: 3.22432e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.20374e-04\tAbsError: 1.80664e-01\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.28132e+02\tAbsError: 1.34002e+18\n", + " Region: \"zone_1\"\tRelError: 4.00745e+01\tAbsError: 8.44811e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.00745e+01\tAbsError: 8.44806e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43106e-09\tAbsError: 4.97552e-07\n", + " Region: \"zone_3\"\tRelError: 1.88058e+02\tAbsError: 1.34002e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 6.46807e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.21124e+02\tAbsError: 6.93209e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 5.79337e+01\tAbsError: 8.44807e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43165e-09\tAbsError: 4.97767e-07\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 6.05251e+00\tAbsError: 7.12298e+16\n", + " Region: \"zone_1\"\tRelError: 9.54106e-01\tAbsError: 5.37894e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.54025e-01\tAbsError: 2.58886e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.04593e-05\tAbsError: 2.79009e-02\n", + " Region: \"zone_3\"\tRelError: 5.09841e+00\tAbsError: 7.12298e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.89784e-01\tAbsError: 3.67872e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.99659e-01\tAbsError: 3.44425e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.40888e+00\tAbsError: 2.58912e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.04593e-05\tAbsError: 2.79009e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.73275e+00\tAbsError: 2.68838e+16\n", + " Region: \"zone_1\"\tRelError: 1.92080e-01\tAbsError: 1.46306e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91747e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32681e-04\tAbsError: 1.15542e-01\n", + " Region: \"zone_3\"\tRelError: 1.54067e+00\tAbsError: 2.68838e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.36324e-01\tAbsError: 1.35736e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.01335e-01\tAbsError: 1.33102e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02681e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32681e-04\tAbsError: 1.15542e-01\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.64105e+01\tAbsError: 2.59446e+17\n", + " Region: \"zone_1\"\tRelError: 2.00842e+01\tAbsError: 4.23839e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.00842e+01\tAbsError: 4.23834e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43343e-09\tAbsError: 4.98409e-07\n", + " Region: \"zone_3\"\tRelError: 6.32622e+00\tAbsError: 2.59446e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.70010e-01\tAbsError: 1.32083e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.64985e-01\tAbsError: 1.27363e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.79123e+00\tAbsError: 4.23835e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43403e-09\tAbsError: 4.98625e-07\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.37739e+00\tAbsError: 3.01043e+16\n", + " Region: \"zone_1\"\tRelError: 2.54827e-01\tAbsError: 1.16608e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54565e-01\tAbsError: 2.57918e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.61657e-04\tAbsError: 9.08165e-02\n", + " Region: \"zone_3\"\tRelError: 1.12257e+00\tAbsError: 3.01043e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.61101e-01\tAbsError: 1.54576e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.03577e-01\tAbsError: 1.46466e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57626e-01\tAbsError: 2.46829e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.61657e-04\tAbsError: 9.08165e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 7.68784e+01\tAbsError: 1.04367e+18\n", + " Region: \"zone_1\"\tRelError: 5.24013e+01\tAbsError: 5.04750e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.24001e+01\tAbsError: 8.10225e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22364e-03\tAbsError: 4.23727e-01\n", + " Region: \"zone_3\"\tRelError: 2.44771e+01\tAbsError: 1.04367e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 5.28959e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 5.14715e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 6.47589e+00\tAbsError: 8.10225e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22533e-03\tAbsError: 4.24299e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.96439e+00\tAbsError: 2.12374e+16\n", + " Region: \"zone_1\"\tRelError: 1.45967e+00\tAbsError: 2.87618e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45886e+00\tAbsError: 9.16520e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03570e-04\tAbsError: 2.78453e-01\n", + " Region: \"zone_3\"\tRelError: 2.50473e+00\tAbsError: 2.12374e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31487e-01\tAbsError: 1.07624e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.30649e-02\tAbsError: 1.04749e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30937e+00\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03570e-04\tAbsError: 2.78453e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.12307e+00\tAbsError: 1.60442e+16\n", + " Region: \"zone_1\"\tRelError: 1.49907e-01\tAbsError: 9.31426e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49713e-01\tAbsError: 2.58569e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93773e-04\tAbsError: 6.72856e-02\n", + " Region: \"zone_3\"\tRelError: 9.73164e-01\tAbsError: 1.60442e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39500e-01\tAbsError: 8.04160e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.83757e-01\tAbsError: 8.00261e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49713e-01\tAbsError: 2.43087e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93773e-04\tAbsError: 6.72856e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.02422e+02\tAbsError: 2.63778e+17\n", + " Region: \"zone_1\"\tRelError: 1.85685e+01\tAbsError: 2.99586e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85677e+01\tAbsError: 3.24491e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.70680e-04\tAbsError: 2.67137e-01\n", + " Region: \"zone_3\"\tRelError: 8.38537e+01\tAbsError: 2.63778e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.13259e-01\tAbsError: 1.33280e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.36876e-01\tAbsError: 1.30499e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 8.26028e+01\tAbsError: 3.24492e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.70680e-04\tAbsError: 2.67137e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.51142e-01\tAbsError: 9.33113e+15\n", + " Region: \"zone_1\"\tRelError: 3.05947e-01\tAbsError: 4.02202e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.05863e-01\tAbsError: 1.10524e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.40386e-05\tAbsError: 2.91677e-02\n", + " Region: \"zone_3\"\tRelError: 4.45195e-01\tAbsError: 9.33113e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.96551e-01\tAbsError: 4.72172e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.12941e-01\tAbsError: 4.60941e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35620e-01\tAbsError: 1.10525e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.40386e-05\tAbsError: 2.91677e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.75488e+03\tAbsError: 2.44334e+17\n", + " Region: \"zone_1\"\tRelError: 1.41546e+00\tAbsError: 3.55507e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40553e+00\tAbsError: 7.72108e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.93410e-03\tAbsError: 3.47786e+00\n", + " Region: \"zone_3\"\tRelError: 1.75347e+03\tAbsError: 2.44334e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.63420e+03\tAbsError: 1.25816e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11660e+02\tAbsError: 1.18518e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 7.59442e+00\tAbsError: 7.72134e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.93410e-03\tAbsError: 3.47786e+00\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.06736e+00\tAbsError: 1.67079e+15\n", + " Region: \"zone_1\"\tRelError: 1.87002e-01\tAbsError: 2.94468e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86917e-01\tAbsError: 5.45669e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.47563e-05\tAbsError: 2.93922e-02\n", + " Region: \"zone_3\"\tRelError: 1.88036e+00\tAbsError: 1.67079e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95806e-02\tAbsError: 8.61655e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.32450e-03\tAbsError: 8.09135e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85737e+00\tAbsError: 5.47236e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.50770e-05\tAbsError: 2.95046e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.25010e-01\tAbsError: 4.83168e+15\n", + " Region: \"zone_1\"\tRelError: 9.35029e-02\tAbsError: 6.02167e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.33558e-02\tAbsError: 9.16529e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47066e-04\tAbsError: 5.10514e-02\n", + " Region: \"zone_3\"\tRelError: 3.31507e-01\tAbsError: 4.83168e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74852e-01\tAbsError: 2.44485e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.96161e-02\tAbsError: 2.38683e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.68922e-02\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47066e-04\tAbsError: 5.10514e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.63527e+01\tAbsError: 1.33800e+17\n", + " Region: \"zone_1\"\tRelError: 1.09015e+00\tAbsError: 1.41262e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08982e+00\tAbsError: 2.56418e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.33266e-04\tAbsError: 1.15620e-01\n", + " Region: \"zone_3\"\tRelError: 1.52625e+01\tAbsError: 1.33800e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.58876e-01\tAbsError: 6.72557e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.58560e-01\tAbsError: 6.65448e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46448e+01\tAbsError: 2.58450e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.33331e-04\tAbsError: 1.15642e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.33797e-01\tAbsError: 2.13738e+15\n", + " Region: \"zone_1\"\tRelError: 3.22000e-02\tAbsError: 2.54939e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.14658e-02\tAbsError: 3.42748e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.34268e-04\tAbsError: 2.54597e-01\n", + " Region: \"zone_3\"\tRelError: 1.01597e-01\tAbsError: 2.13738e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.03029e-02\tAbsError: 1.12451e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.62975e-02\tAbsError: 1.01287e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.42622e-02\tAbsError: 3.42748e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.34268e-04\tAbsError: 2.54597e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.18948e+02\tAbsError: 4.94328e+16\n", + " Region: \"zone_1\"\tRelError: 5.73987e+00\tAbsError: 1.84809e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.73478e+00\tAbsError: 7.29586e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.09631e-03\tAbsError: 1.77513e+00\n", + " Region: \"zone_3\"\tRelError: 1.13208e+02\tAbsError: 4.94328e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.23685e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03096e+02\tAbsError: 2.70644e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10704e+00\tAbsError: 7.29586e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.09631e-03\tAbsError: 1.77513e+00\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.99757e-02\tAbsError: 6.03219e+13\n", + " Region: \"zone_1\"\tRelError: 5.28092e-03\tAbsError: 6.07421e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.26342e-03\tAbsError: 6.43272e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75062e-05\tAbsError: 6.06778e-03\n", + " Region: \"zone_3\"\tRelError: 2.46948e-02\tAbsError: 6.03219e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52421e-04\tAbsError: 2.92320e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.21852e-04\tAbsError: 3.10899e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41030e-02\tAbsError: 6.47112e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75095e-05\tAbsError: 6.06885e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.30868e-01\tAbsError: 1.08442e+15\n", + " Region: \"zone_1\"\tRelError: 2.27753e-02\tAbsError: 2.15920e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21537e-02\tAbsError: 2.84606e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.21607e-04\tAbsError: 2.15635e-01\n", + " Region: \"zone_3\"\tRelError: 1.08092e-01\tAbsError: 1.08442e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.76472e-02\tAbsError: 4.26455e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.43864e-02\tAbsError: 6.57964e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54371e-02\tAbsError: 2.84606e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.21607e-04\tAbsError: 2.15635e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.85212e+00\tAbsError: 2.60146e+16\n", + " Region: \"zone_1\"\tRelError: 1.52146e-01\tAbsError: 2.92736e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51334e-01\tAbsError: 1.13356e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.12031e-04\tAbsError: 2.81400e-01\n", + " Region: \"zone_3\"\tRelError: 2.69997e+00\tAbsError: 2.60146e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.83870e-02\tAbsError: 1.30339e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.80323e-02\tAbsError: 1.29807e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.56274e+00\tAbsError: 1.13359e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.12031e-04\tAbsError: 2.81400e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.09062e-01\tAbsError: 4.29859e+14\n", + " Region: \"zone_1\"\tRelError: 1.36304e-01\tAbsError: 1.63400e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36257e-01\tAbsError: 6.84743e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.69255e-05\tAbsError: 1.62715e-02\n", + " Region: \"zone_3\"\tRelError: 1.72757e-01\tAbsError: 4.29859e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.11437e-03\tAbsError: 2.18144e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.01341e-03\tAbsError: 2.11715e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62583e-01\tAbsError: 7.23727e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.69255e-05\tAbsError: 1.62715e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.23517e+03\tAbsError: 7.85419e+15\n", + " Region: \"zone_1\"\tRelError: 2.90624e+00\tAbsError: 9.08322e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.90382e+00\tAbsError: 6.81818e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.41775e-03\tAbsError: 8.40141e-01\n", + " Region: \"zone_3\"\tRelError: 1.23227e+03\tAbsError: 7.85419e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.21294e+02\tAbsError: 4.15991e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.10398e+02\tAbsError: 3.69428e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.73661e-01\tAbsError: 6.81819e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.41775e-03\tAbsError: 8.40141e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.10405e-01\tAbsError: 3.12560e+13\n", + " Region: \"zone_1\"\tRelError: 1.08840e-02\tAbsError: 4.61195e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08827e-02\tAbsError: 1.71511e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32204e-06\tAbsError: 4.59479e-04\n", + " Region: \"zone_3\"\tRelError: 9.95213e-02\tAbsError: 3.12560e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34947e-04\tAbsError: 1.52362e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.27748e-04\tAbsError: 1.60198e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.92573e-02\tAbsError: 1.72813e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32271e-06\tAbsError: 4.59705e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.55617e-01\tAbsError: 2.35794e+14\n", + " Region: \"zone_1\"\tRelError: 4.99367e-02\tAbsError: 1.38607e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.98970e-02\tAbsError: 6.98741e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.97528e-05\tAbsError: 1.37908e-02\n", + " Region: \"zone_3\"\tRelError: 1.05680e-01\tAbsError: 2.35794e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.27300e-03\tAbsError: 1.18548e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.21148e-03\tAbsError: 1.17246e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.51557e-02\tAbsError: 7.06637e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.97528e-05\tAbsError: 1.37908e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.37163e-01\tAbsError: 2.74535e+15\n", + " Region: \"zone_1\"\tRelError: 4.29834e-02\tAbsError: 3.88215e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.28716e-02\tAbsError: 5.15121e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11776e-04\tAbsError: 3.87699e-02\n", + " Region: \"zone_3\"\tRelError: 5.94179e-01\tAbsError: 2.74535e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.22686e-02\tAbsError: 1.41321e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.01916e-03\tAbsError: 1.33214e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.79780e-01\tAbsError: 5.22069e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11776e-04\tAbsError: 3.87699e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.88220e-02\tAbsError: 3.48889e+13\n", + " Region: \"zone_1\"\tRelError: 1.73872e-02\tAbsError: 7.35021e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73660e-02\tAbsError: 5.27671e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.11825e-05\tAbsError: 7.34493e-03\n", + " Region: \"zone_3\"\tRelError: 2.14348e-02\tAbsError: 3.48889e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.14000e-04\tAbsError: 1.77623e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.20581e-04\tAbsError: 1.71267e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05790e-02\tAbsError: 5.82302e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.11913e-05\tAbsError: 7.34810e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.76205e+03\tAbsError: 5.21427e+15\n", + " Region: \"zone_1\"\tRelError: 2.12718e+00\tAbsError: 1.73590e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12686e+00\tAbsError: 6.27474e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.18881e-04\tAbsError: 1.10843e-01\n", + " Region: \"zone_3\"\tRelError: 1.75993e+03\tAbsError: 5.21427e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.86052e+01\tAbsError: 3.34252e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.73093e+03\tAbsError: 1.87175e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.93221e-01\tAbsError: 6.27475e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.18881e-04\tAbsError: 1.10843e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.63047e-03\tAbsError: 9.09027e+11\n", + " Region: \"zone_1\"\tRelError: 4.56990e-04\tAbsError: 3.44629e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.55999e-04\tAbsError: 1.41300e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.91190e-07\tAbsError: 3.44488e-04\n", + " Region: \"zone_3\"\tRelError: 4.17348e-03\tAbsError: 9.09027e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33335e-06\tAbsError: 4.38047e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02288e-05\tAbsError: 4.70980e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.15793e-03\tAbsError: 1.42246e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.91601e-07\tAbsError: 3.44637e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.12114e-02\tAbsError: 1.98754e+13\n", + " Region: \"zone_1\"\tRelError: 7.04172e-03\tAbsError: 6.58751e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.02275e-03\tAbsError: 5.51750e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89733e-05\tAbsError: 6.58199e-03\n", + " Region: \"zone_3\"\tRelError: 1.41697e-02\tAbsError: 1.98754e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43525e-04\tAbsError: 1.00008e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.47254e-04\tAbsError: 9.87467e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32599e-02\tAbsError: 5.78756e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89775e-05\tAbsError: 6.58354e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.12610e-03\tAbsError: 1.23500e+14\n", + " Region: \"zone_1\"\tRelError: 9.58048e-04\tAbsError: 4.98507e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.43691e-04\tAbsError: 9.96836e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43564e-05\tAbsError: 4.97510e-03\n", + " Region: \"zone_3\"\tRelError: 7.16806e-03\tAbsError: 1.23500e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.59288e-04\tAbsError: 6.07343e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.92957e-04\tAbsError: 6.27659e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.60145e-03\tAbsError: 1.00518e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43584e-05\tAbsError: 4.97565e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.41308e-02\tAbsError: 1.96068e+13\n", + " Region: \"zone_1\"\tRelError: 1.08376e-02\tAbsError: 9.63415e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08348e-02\tAbsError: 2.59318e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.76972e-06\tAbsError: 9.60822e-04\n", + " Region: \"zone_3\"\tRelError: 1.32932e-02\tAbsError: 1.96068e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.35702e-04\tAbsError: 9.96822e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.31894e-04\tAbsError: 9.63862e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28228e-02\tAbsError: 2.83052e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.77088e-06\tAbsError: 9.61249e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.14565e+04\tAbsError: 9.14413e+14\n", + " Region: \"zone_1\"\tRelError: 1.39595e-01\tAbsError: 7.87478e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39531e-01\tAbsError: 5.64826e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.40500e-05\tAbsError: 2.22652e-02\n", + " Region: \"zone_3\"\tRelError: 1.14564e+04\tAbsError: 9.14413e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33345e+02\tAbsError: 5.59104e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13229e+04\tAbsError: 3.55309e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.59181e-02\tAbsError: 5.64827e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.40500e-05\tAbsError: 2.22652e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.49771e-03\tAbsError: 1.64940e+12\n", + " Region: \"zone_1\"\tRelError: 6.42053e-04\tAbsError: 1.77929e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.42002e-04\tAbsError: 9.99896e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.09050e-08\tAbsError: 1.76929e-05\n", + " Region: \"zone_3\"\tRelError: 5.85566e-03\tAbsError: 1.64940e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16109e-06\tAbsError: 8.03293e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.70130e-06\tAbsError: 8.46106e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.84174e-03\tAbsError: 1.00703e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.09341e-08\tAbsError: 1.77035e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.24258e-02\tAbsError: 1.10918e+13\n", + " Region: \"zone_1\"\tRelError: 4.12899e-03\tAbsError: 9.16825e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.12635e-03\tAbsError: 2.69238e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.63359e-06\tAbsError: 9.14133e-04\n", + " Region: \"zone_3\"\tRelError: 8.29681e-03\tAbsError: 1.10918e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.48339e-04\tAbsError: 5.58229e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.46113e-04\tAbsError: 5.50951e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.79972e-03\tAbsError: 2.89698e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.63458e-06\tAbsError: 9.14508e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.19304e-02\tAbsError: 3.37625e+13\n", + " Region: \"zone_1\"\tRelError: 2.21148e-03\tAbsError: 9.26970e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20882e-03\tAbsError: 1.29677e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.66313e-06\tAbsError: 9.25674e-04\n", + " Region: \"zone_3\"\tRelError: 2.97189e-02\tAbsError: 3.37625e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.98425e-05\tAbsError: 1.66919e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.50345e-05\tAbsError: 1.70706e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.95814e-02\tAbsError: 1.31036e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.66438e-06\tAbsError: 9.26102e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.04917e-03\tAbsError: 2.71056e+12\n", + " Region: \"zone_1\"\tRelError: 1.82570e-03\tAbsError: 4.47863e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82441e-03\tAbsError: 3.48647e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28704e-06\tAbsError: 4.47514e-04\n", + " Region: \"zone_3\"\tRelError: 2.22347e-03\tAbsError: 2.71056e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.27242e-05\tAbsError: 1.37539e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.22424e-05\tAbsError: 1.33517e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.15721e-03\tAbsError: 3.75577e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28753e-06\tAbsError: 4.47690e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.80714e+02\tAbsError: 5.90884e+14\n", + " Region: \"zone_1\"\tRelError: 1.77888e-01\tAbsError: 6.36192e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77846e-01\tAbsError: 4.91583e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.16492e-05\tAbsError: 1.44608e-02\n", + " Region: \"zone_3\"\tRelError: 6.80536e+02\tAbsError: 5.90884e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.80589e+02\tAbsError: 3.66469e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.99871e+02\tAbsError: 2.24415e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.58870e-02\tAbsError: 4.91584e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.16492e-05\tAbsError: 1.44608e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 5.44825e-04\tAbsError: 5.87780e+10\n", + " Region: \"zone_1\"\tRelError: 5.39394e-05\tAbsError: 2.02429e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.38812e-05\tAbsError: 6.87611e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.82246e-08\tAbsError: 2.02360e-05\n", + " Region: \"zone_3\"\tRelError: 4.90886e-04\tAbsError: 5.87780e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46411e-07\tAbsError: 2.85251e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.30809e-07\tAbsError: 3.02529e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.90250e-04\tAbsError: 6.91269e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.82487e-08\tAbsError: 2.02448e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.18008e-03\tAbsError: 1.59787e+12\n", + " Region: \"zone_1\"\tRelError: 7.30404e-04\tAbsError: 4.14536e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.29211e-04\tAbsError: 3.64518e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19313e-06\tAbsError: 4.14171e-04\n", + " Region: \"zone_3\"\tRelError: 1.44968e-03\tAbsError: 1.59787e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.59026e-05\tAbsError: 8.02763e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.55751e-05\tAbsError: 7.95108e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37700e-03\tAbsError: 3.97752e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19336e-06\tAbsError: 4.14251e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.90227e-04\tAbsError: 3.92351e+12\n", + " Region: \"zone_1\"\tRelError: 2.72528e-05\tAbsError: 2.64592e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64923e-05\tAbsError: 2.92098e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.60517e-07\tAbsError: 2.64299e-04\n", + " Region: \"zone_3\"\tRelError: 1.62974e-04\tAbsError: 3.92351e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.77297e-06\tAbsError: 1.93410e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.01457e-05\tAbsError: 1.98941e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43295e-04\tAbsError: 2.94818e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.60830e-07\tAbsError: 2.64413e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.70902e-03\tAbsError: 1.18602e+12\n", + " Region: \"zone_1\"\tRelError: 7.70426e-04\tAbsError: 8.17764e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.70191e-04\tAbsError: 1.44392e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.34769e-07\tAbsError: 8.16320e-05\n", + " Region: \"zone_3\"\tRelError: 9.38599e-04\tAbsError: 1.18602e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43307e-05\tAbsError: 6.02246e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.40177e-05\tAbsError: 5.83770e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.10015e-04\tAbsError: 1.60170e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.34863e-07\tAbsError: 8.16654e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.92595e-04\tAbsError: 9.49473e+10\n", + " Region: \"zone_1\"\tRelError: 3.87978e-05\tAbsError: 2.02444e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87920e-05\tAbsError: 5.96621e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.80757e-09\tAbsError: 2.01847e-06\n", + " Region: \"zone_3\"\tRelError: 3.53797e-04\tAbsError: 9.49473e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.10989e-07\tAbsError: 4.62324e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.83783e-07\tAbsError: 4.87150e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52997e-04\tAbsError: 6.00786e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.81025e-09\tAbsError: 2.01943e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.62289e+03\tAbsError: 1.35295e+14\n", + " Region: \"zone_1\"\tRelError: 5.75586e-02\tAbsError: 5.58816e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.75143e-02\tAbsError: 4.04895e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.43294e-05\tAbsError: 1.53921e-02\n", + " Region: \"zone_3\"\tRelError: 6.62283e+03\tAbsError: 1.35295e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.47649e+03\tAbsError: 7.04604e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.14628e+03\tAbsError: 6.48349e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.78569e-02\tAbsError: 4.04896e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.43426e-05\tAbsError: 1.53969e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 9.04358e-04\tAbsError: 6.91618e+11\n", + " Region: \"zone_1\"\tRelError: 3.02587e-04\tAbsError: 7.78938e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.02363e-04\tAbsError: 1.55785e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23501e-07\tAbsError: 7.77380e-05\n", + " Region: \"zone_3\"\tRelError: 6.01772e-04\tAbsError: 6.91618e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.55559e-05\tAbsError: 3.47877e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.53466e-05\tAbsError: 3.43741e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.70646e-04\tAbsError: 1.69595e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23586e-07\tAbsError: 7.77681e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.75434e-03\tAbsError: 1.68359e+12\n", + " Region: \"zone_1\"\tRelError: 1.21747e-04\tAbsError: 2.56631e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21674e-04\tAbsError: 7.10609e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.36274e-08\tAbsError: 2.55920e-05\n", + " Region: \"zone_3\"\tRelError: 1.63259e-03\tAbsError: 1.68359e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.52476e-06\tAbsError: 8.33155e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.22622e-06\tAbsError: 8.50439e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62577e-03\tAbsError: 7.17605e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.36655e-08\tAbsError: 2.56055e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.43139e-04\tAbsError: 2.14557e+11\n", + " Region: \"zone_1\"\tRelError: 1.54959e-04\tAbsError: 3.09318e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54870e-04\tAbsError: 2.76396e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.88786e-08\tAbsError: 3.09042e-05\n", + " Region: \"zone_3\"\tRelError: 1.88179e-04\tAbsError: 2.14557e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.59423e-06\tAbsError: 1.08761e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.54319e-06\tAbsError: 1.05796e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82953e-04\tAbsError: 3.04381e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.89137e-08\tAbsError: 3.09172e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 5.03275e-05\tAbsError: 9.08763e+09\n", + " Region: \"zone_1\"\tRelError: 4.97773e-06\tAbsError: 1.23989e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.97416e-06\tAbsError: 6.85123e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.56554e-09\tAbsError: 1.23921e-06\n", + " Region: \"zone_3\"\tRelError: 4.53497e-05\tAbsError: 9.08763e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.78500e-08\tAbsError: 4.42118e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.59273e-08\tAbsError: 4.66645e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.52724e-05\tAbsError: 6.89457e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.56702e-09\tAbsError: 1.23975e-06\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.07738e+00\tAbsError: 5.24938e+13\n", + " Region: \"zone_1\"\tRelError: 4.20260e-02\tAbsError: 5.38334e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.19580e-02\tAbsError: 3.02166e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.80118e-05\tAbsError: 2.36168e-02\n", + " Region: \"zone_3\"\tRelError: 2.03535e+00\tAbsError: 5.24938e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99267e-01\tAbsError: 7.06322e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.93883e-01\tAbsError: 4.54306e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.21368e-02\tAbsError: 3.02167e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.80118e-05\tAbsError: 2.36168e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.87260e-04\tAbsError: 1.29403e+11\n", + " Region: \"zone_1\"\tRelError: 6.28801e-05\tAbsError: 2.91909e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.27963e-05\tAbsError: 3.06059e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.38368e-08\tAbsError: 2.91603e-05\n", + " Region: \"zone_3\"\tRelError: 1.24379e-04\tAbsError: 1.29403e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91169e-06\tAbsError: 6.49895e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.87741e-06\tAbsError: 6.44135e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18506e-04\tAbsError: 3.32307e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.38700e-08\tAbsError: 2.91722e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.80245e-05\tAbsError: 9.30200e+10\n", + " Region: \"zone_1\"\tRelError: 3.43660e-06\tAbsError: 1.44112e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.39515e-06\tAbsError: 7.79802e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14454e-08\tAbsError: 1.44034e-05\n", + " Region: \"zone_3\"\tRelError: 4.45879e-05\tAbsError: 9.30200e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.20234e-07\tAbsError: 4.57981e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.97102e-07\tAbsError: 4.72219e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.39291e-05\tAbsError: 7.86903e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14632e-08\tAbsError: 1.44099e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.19883e-04\tAbsError: 7.73891e+10\n", + " Region: \"zone_1\"\tRelError: 5.41255e-05\tAbsError: 6.55072e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.41067e-05\tAbsError: 1.00869e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88105e-08\tAbsError: 6.54063e-06\n", + " Region: \"zone_3\"\tRelError: 6.57577e-05\tAbsError: 7.73891e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.36349e-07\tAbsError: 3.92657e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.13567e-07\tAbsError: 3.81234e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.38890e-05\tAbsError: 1.11778e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88181e-08\tAbsError: 6.54345e-06\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.81503e+00\tAbsError: 4.93850e+13\n", + " Region: \"zone_1\"\tRelError: 3.33651e-02\tAbsError: 5.43994e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.32830e-02\tAbsError: 2.58915e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.20906e-05\tAbsError: 2.85079e-02\n", + " Region: \"zone_3\"\tRelError: 2.78166e+00\tAbsError: 4.93850e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.72297e+00\tAbsError: 8.45730e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.53292e-02\tAbsError: 4.09277e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.32830e-02\tAbsError: 2.51005e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.20906e-05\tAbsError: 2.85079e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 6.51617e-05\tAbsError: 4.65398e+10\n", + " Region: \"zone_1\"\tRelError: 2.18609e-05\tAbsError: 6.36014e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18427e-05\tAbsError: 1.11819e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82534e-08\tAbsError: 6.34896e-06\n", + " Region: \"zone_3\"\tRelError: 4.33008e-05\tAbsError: 4.65398e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04809e-06\tAbsError: 2.33986e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03254e-06\tAbsError: 2.31412e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.12019e-05\tAbsError: 1.20844e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82605e-08\tAbsError: 6.35150e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:39\u001b[0m.\u001b[1;36m943\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.8\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.68795e-05\tAbsError: 1.63620e+10\n", + " Region: \"zone_1\"\tRelError: 1.21466e-05\tAbsError: 2.15576e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21404e-05\tAbsError: 2.19556e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.19338e-09\tAbsError: 2.15356e-06\n", + " Region: \"zone_3\"\tRelError: 1.47329e-05\tAbsError: 1.63620e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98044e-07\tAbsError: 8.29145e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.93539e-07\tAbsError: 8.07050e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43351e-05\tAbsError: 2.42330e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.19602e-09\tAbsError: 2.15451e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:40\u001b[0m.\u001b[1;36m358\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.84375\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 6.22571e-01\tAbsError: 4.56857e+14\n", + " Region: \"zone_1\"\tRelError: 1.62060e-02\tAbsError: 1.05814e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59258e-02\tAbsError: 8.53133e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.80210e-04\tAbsError: 9.72823e-02\n", + " Region: \"zone_3\"\tRelError: 6.06365e-01\tAbsError: 4.56857e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.73228e-01\tAbsError: 1.16314e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.46418e-03\tAbsError: 4.45226e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.53932e-02\tAbsError: 8.53142e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.80210e-04\tAbsError: 9.72823e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:40\u001b[0m.\u001b[1;36m916\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:40\u001b[0m.\u001b[1;36m958\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.05 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:40\u001b[0m.\u001b[1;36m999\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.97502e+01\tAbsError: 1.32808e+17\n", + " Region: \"zone_1\"\tRelError: 2.76074e+01\tAbsError: 4.09563e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76074e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.00798e-09\tAbsError: 2.08971e-06\n", + " Region: \"zone_3\"\tRelError: 2.14284e+00\tAbsError: 1.32808e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.64512e-01\tAbsError: 6.68287e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.62033e-01\tAbsError: 6.59795e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.16298e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.01029e-09\tAbsError: 2.09057e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:41\u001b[0m.\u001b[1;36m721\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:41\u001b[0m.\u001b[1;36m771\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.1 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:41\u001b[0m.\u001b[1;36m807\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.43642e-01\tAbsError: 4.53193e+14\n", + " Region: \"zone_1\"\tRelError: 3.32872e-02\tAbsError: 1.60168e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.28268e-02\tAbsError: 2.34656e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.60457e-04\tAbsError: 1.59933e-01\n", + " Region: \"zone_3\"\tRelError: 2.10355e-01\tAbsError: 4.53193e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.41955e-01\tAbsError: 2.34411e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.91718e-03\tAbsError: 4.29752e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.20225e-02\tAbsError: 2.41034e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.60457e-04\tAbsError: 1.59933e-01\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.05327e+02\tAbsError: 2.40340e+17\n", + " Region: \"zone_1\"\tRelError: 8.42457e+01\tAbsError: 4.22095e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.42457e+01\tAbsError: 4.22090e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43581e-09\tAbsError: 4.99261e-07\n", + " Region: \"zone_3\"\tRelError: 2.10810e+01\tAbsError: 2.40340e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69705e-01\tAbsError: 1.22173e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.65105e-01\tAbsError: 1.18167e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95462e+01\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43642e-09\tAbsError: 4.99480e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.41602e+03\tAbsError: 3.06873e+18\n", + " Region: \"zone_1\"\tRelError: 1.78720e+03\tAbsError: 8.63291e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78720e+03\tAbsError: 8.63289e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.16236e-10\tAbsError: 1.79418e-07\n", + " Region: \"zone_3\"\tRelError: 6.28825e+02\tAbsError: 3.06873e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49638e+01\tAbsError: 1.38375e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.90759e+02\tAbsError: 1.68499e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23103e+02\tAbsError: 8.63291e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.16460e-10\tAbsError: 1.79501e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 9.37033e+02\tAbsError: 4.27377e+18\n", + " Region: \"zone_1\"\tRelError: 3.36757e+02\tAbsError: 8.80545e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.36757e+02\tAbsError: 8.80540e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28124e-09\tAbsError: 4.45311e-07\n", + " Region: \"zone_3\"\tRelError: 6.00276e+02\tAbsError: 4.27377e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.41012e+02\tAbsError: 2.14036e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.34799e+02\tAbsError: 2.13341e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24465e+02\tAbsError: 8.80543e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28210e-09\tAbsError: 4.45624e-07\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 8.61535e+00\tAbsError: 1.17905e+17\n", + " Region: \"zone_1\"\tRelError: 7.44285e-01\tAbsError: 3.38569e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.43397e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.87545e-04\tAbsError: 3.07806e-01\n", + " Region: \"zone_3\"\tRelError: 7.87107e+00\tAbsError: 1.17905e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17750e-01\tAbsError: 5.81639e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.67341e-01\tAbsError: 5.97408e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.58509e+00\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.87924e-04\tAbsError: 3.07944e-01\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 9.86343e-02\tAbsError: 8.08179e+13\n", + " Region: \"zone_1\"\tRelError: 2.27654e-02\tAbsError: 5.27781e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27505e-02\tAbsError: 1.02870e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48829e-05\tAbsError: 5.17494e-03\n", + " Region: \"zone_3\"\tRelError: 7.58690e-02\tAbsError: 8.08179e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13342e-02\tAbsError: 2.81884e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10914e-02\tAbsError: 5.26295e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.34284e-02\tAbsError: 1.03806e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48829e-05\tAbsError: 5.17494e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.09455e+01\tAbsError: 2.40473e+17\n", + " Region: \"zone_1\"\tRelError: 4.86841e+00\tAbsError: 3.09883e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.86761e+00\tAbsError: 3.22430e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.00931e-04\tAbsError: 2.77640e-01\n", + " Region: \"zone_3\"\tRelError: 6.07711e+00\tAbsError: 2.40473e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.15444e-01\tAbsError: 1.20661e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.41229e-01\tAbsError: 1.19812e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.81963e+00\tAbsError: 3.22432e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.00931e-04\tAbsError: 2.77640e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.09721e+02\tAbsError: 2.60473e+18\n", + " Region: \"zone_1\"\tRelError: 7.91237e+01\tAbsError: 5.60850e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.91223e+01\tAbsError: 8.30497e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38072e-03\tAbsError: 4.77800e-01\n", + " Region: \"zone_3\"\tRelError: 3.05977e+01\tAbsError: 2.60473e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.22649e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.37824e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25964e+01\tAbsError: 8.30498e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38072e-03\tAbsError: 4.77800e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.87054e+02\tAbsError: 3.69608e+18\n", + " Region: \"zone_1\"\tRelError: 2.66785e+01\tAbsError: 9.63796e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66760e+01\tAbsError: 8.49343e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.53527e-03\tAbsError: 8.78861e-01\n", + " Region: \"zone_3\"\tRelError: 1.60376e+02\tAbsError: 3.69608e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.85943e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.43347e+01\tAbsError: 1.83665e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 9.70387e+01\tAbsError: 8.49344e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.53674e-03\tAbsError: 8.79382e-01\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.20075e-02\tAbsError: 5.18518e+12\n", + " Region: \"zone_1\"\tRelError: 3.52721e-03\tAbsError: 5.58056e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.51116e-03\tAbsError: 3.17947e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60410e-05\tAbsError: 5.57738e-03\n", + " Region: \"zone_3\"\tRelError: 8.48034e-03\tAbsError: 5.18518e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.41100e-04\tAbsError: 2.88203e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.22185e-04\tAbsError: 2.30315e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.60101e-03\tAbsError: 3.31547e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60410e-05\tAbsError: 5.57738e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 6.05251e+00\tAbsError: 7.12298e+16\n", + " Region: \"zone_1\"\tRelError: 9.54106e-01\tAbsError: 5.37894e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.54025e-01\tAbsError: 2.58886e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.04593e-05\tAbsError: 2.79009e-02\n", + " Region: \"zone_3\"\tRelError: 5.09841e+00\tAbsError: 7.12298e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.89784e-01\tAbsError: 3.67872e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.99659e-01\tAbsError: 3.44425e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.40888e+00\tAbsError: 2.58912e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.04593e-05\tAbsError: 2.79009e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 4.98539e+00\tAbsError: 1.26295e+17\n", + " Region: \"zone_1\"\tRelError: 2.24304e+00\tAbsError: 1.18280e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24277e+00\tAbsError: 2.58625e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.66362e-04\tAbsError: 9.24173e-02\n", + " Region: \"zone_3\"\tRelError: 2.74235e+00\tAbsError: 1.26295e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.63874e-01\tAbsError: 6.36874e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.67792e-01\tAbsError: 6.26079e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.11042e+00\tAbsError: 2.58990e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.66406e-04\tAbsError: 9.24296e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.06185e+01\tAbsError: 4.23532e+17\n", + " Region: \"zone_1\"\tRelError: 8.20322e-01\tAbsError: 5.01433e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 8.06267e-01\tAbsError: 7.94496e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40542e-02\tAbsError: 4.93488e+00\n", + " Region: \"zone_3\"\tRelError: 2.97982e+01\tAbsError: 4.23532e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.06356e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.17176e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17841e+01\tAbsError: 7.94512e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40542e-02\tAbsError: 4.93488e+00\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 8.10308e-03\tAbsError: 5.43438e+12\n", + " Region: \"zone_1\"\tRelError: 2.15894e-03\tAbsError: 6.82302e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.15699e-03\tAbsError: 4.13314e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.95036e-06\tAbsError: 6.78169e-04\n", + " Region: \"zone_3\"\tRelError: 5.94415e-03\tAbsError: 5.43438e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.41785e-04\tAbsError: 2.63367e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.38178e-04\tAbsError: 2.80072e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.86223e-03\tAbsError: 4.17705e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.95089e-06\tAbsError: 6.78355e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.08699e+02\tAbsError: 6.01534e+17\n", + " Region: \"zone_1\"\tRelError: 8.57260e+00\tAbsError: 4.30788e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 8.56054e+00\tAbsError: 8.15209e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20604e-02\tAbsError: 4.22635e+00\n", + " Region: \"zone_3\"\tRelError: 3.00127e+02\tAbsError: 6.01534e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.88214e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.42861e+02\tAbsError: 3.13321e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.82531e+01\tAbsError: 8.15210e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20783e-02\tAbsError: 4.23287e+00\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.96439e+00\tAbsError: 2.12374e+16\n", + " Region: \"zone_1\"\tRelError: 1.45967e+00\tAbsError: 2.87618e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45886e+00\tAbsError: 9.16520e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03570e-04\tAbsError: 2.78453e-01\n", + " Region: \"zone_3\"\tRelError: 2.50473e+00\tAbsError: 2.12374e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31487e-01\tAbsError: 1.07624e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.30649e-02\tAbsError: 1.04749e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30937e+00\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03570e-04\tAbsError: 2.78453e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.12900e-01\tAbsError: 2.65152e+16\n", + " Region: \"zone_1\"\tRelError: 2.51915e-01\tAbsError: 2.84686e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51125e-01\tAbsError: 1.10522e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.89640e-04\tAbsError: 2.73634e-01\n", + " Region: \"zone_3\"\tRelError: 4.60986e-01\tAbsError: 2.65152e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02169e-01\tAbsError: 1.32909e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.08802e-02\tAbsError: 1.32243e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.17147e-01\tAbsError: 1.10525e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.89640e-04\tAbsError: 2.73634e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.06736e+03\tAbsError: 8.87050e+16\n", + " Region: \"zone_1\"\tRelError: 1.23696e+00\tAbsError: 1.85167e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23188e+00\tAbsError: 7.54578e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.08395e-03\tAbsError: 1.77622e+00\n", + " Region: \"zone_3\"\tRelError: 3.06612e+03\tAbsError: 8.87050e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.99485e+03\tAbsError: 5.55600e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.99885e+01\tAbsError: 3.31450e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27295e+00\tAbsError: 7.54578e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.09190e-03\tAbsError: 1.77902e+00\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 1.33093e-03\tAbsError: 6.47227e+11\n", + " Region: \"zone_1\"\tRelError: 3.76552e-04\tAbsError: 3.83474e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.75451e-04\tAbsError: 4.53566e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10153e-06\tAbsError: 3.83020e-04\n", + " Region: \"zone_3\"\tRelError: 9.54375e-04\tAbsError: 6.47227e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.44244e-05\tAbsError: 3.63104e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.40917e-05\tAbsError: 2.84123e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.24757e-04\tAbsError: 4.58961e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10198e-06\tAbsError: 3.83177e-04\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.81005e+01\tAbsError: 1.51046e+17\n", + " Region: \"zone_1\"\tRelError: 2.47539e+01\tAbsError: 8.87921e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.47516e+01\tAbsError: 7.77584e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.31701e-03\tAbsError: 8.10163e-01\n", + " Region: \"zone_3\"\tRelError: 1.33466e+01\tAbsError: 1.51046e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.06614e+00\tAbsError: 1.02024e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.23401e+00\tAbsError: 4.90221e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04413e+00\tAbsError: 7.77584e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.31701e-03\tAbsError: 8.10163e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.06736e+00\tAbsError: 1.67079e+15\n", + " Region: \"zone_1\"\tRelError: 1.87002e-01\tAbsError: 2.94468e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86917e-01\tAbsError: 5.45669e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.47563e-05\tAbsError: 2.93922e-02\n", + " Region: \"zone_3\"\tRelError: 1.88036e+00\tAbsError: 1.67079e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95806e-02\tAbsError: 8.61655e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.32450e-03\tAbsError: 8.09135e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85737e+00\tAbsError: 5.47236e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.50770e-05\tAbsError: 2.95046e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.71203e-01\tAbsError: 2.64478e+15\n", + " Region: \"zone_1\"\tRelError: 7.37964e-02\tAbsError: 4.38243e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.36702e-02\tAbsError: 5.07687e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26208e-04\tAbsError: 4.37736e-02\n", + " Region: \"zone_3\"\tRelError: 1.97407e-01\tAbsError: 2.64478e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32945e-02\tAbsError: 1.36876e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.09641e-03\tAbsError: 1.27602e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81889e-01\tAbsError: 5.14090e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26670e-04\tAbsError: 4.39325e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.34773e+03\tAbsError: 2.46923e+16\n", + " Region: \"zone_1\"\tRelError: 5.61102e+00\tAbsError: 1.65414e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.60647e+00\tAbsError: 7.09984e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.55217e-03\tAbsError: 1.58314e+00\n", + " Region: \"zone_3\"\tRelError: 1.34212e+03\tAbsError: 2.46923e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.23183e+01\tAbsError: 1.45002e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.31944e+03\tAbsError: 1.01922e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52564e-01\tAbsError: 7.09985e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.55217e-03\tAbsError: 1.58314e+00\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 6.27078e-04\tAbsError: 3.72961e+11\n", + " Region: \"zone_1\"\tRelError: 1.71680e-04\tAbsError: 6.72679e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.71487e-04\tAbsError: 2.54116e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.92726e-07\tAbsError: 6.70138e-05\n", + " Region: \"zone_3\"\tRelError: 4.55398e-04\tAbsError: 3.72961e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.60431e-05\tAbsError: 2.04507e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.57839e-05\tAbsError: 1.68455e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.83378e-04\tAbsError: 2.56993e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.92766e-07\tAbsError: 6.70275e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.59577e+02\tAbsError: 7.82143e+16\n", + " Region: \"zone_1\"\tRelError: 2.03812e+02\tAbsError: 2.08058e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03806e+02\tAbsError: 7.35754e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.77336e-03\tAbsError: 2.00701e+00\n", + " Region: \"zone_3\"\tRelError: 2.55765e+02\tAbsError: 7.82143e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.13137e+00\tAbsError: 4.66961e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.46425e+02\tAbsError: 3.15182e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03151e-01\tAbsError: 7.35755e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.77445e-03\tAbsError: 2.00753e+00\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.99757e-02\tAbsError: 6.03219e+13\n", + " Region: \"zone_1\"\tRelError: 5.28092e-03\tAbsError: 6.07421e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.26342e-03\tAbsError: 6.43272e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75062e-05\tAbsError: 6.06778e-03\n", + " Region: \"zone_3\"\tRelError: 2.46948e-02\tAbsError: 6.03219e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52421e-04\tAbsError: 2.92320e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.21852e-04\tAbsError: 3.10899e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41030e-02\tAbsError: 6.47112e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75095e-05\tAbsError: 6.06885e-03\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 1.26073e-04\tAbsError: 6.34613e+10\n", + " Region: \"zone_1\"\tRelError: 3.54567e-05\tAbsError: 2.82723e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53755e-05\tAbsError: 4.27763e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.11860e-08\tAbsError: 2.82296e-05\n", + " Region: \"zone_3\"\tRelError: 9.06159e-05\tAbsError: 6.34613e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.26251e-06\tAbsError: 3.67455e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.22962e-06\tAbsError: 2.67158e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.80425e-05\tAbsError: 4.32836e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.12039e-08\tAbsError: 2.82359e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.02394e-03\tAbsError: 1.42075e+14\n", + " Region: \"zone_1\"\tRelError: 1.02173e-03\tAbsError: 4.60762e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00847e-03\tAbsError: 1.08220e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32649e-05\tAbsError: 4.59680e-03\n", + " Region: \"zone_3\"\tRelError: 4.00220e-03\tAbsError: 1.42075e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14122e-04\tAbsError: 6.97525e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.15155e-04\tAbsError: 7.23226e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35966e-03\tAbsError: 1.09108e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32665e-05\tAbsError: 4.59729e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.21180e+03\tAbsError: 2.42164e+15\n", + " Region: \"zone_1\"\tRelError: 6.49855e-01\tAbsError: 2.64728e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.49283e-01\tAbsError: 6.59600e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.71867e-04\tAbsError: 1.98768e-01\n", + " Region: \"zone_3\"\tRelError: 1.21115e+03\tAbsError: 2.42164e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.79812e+02\tAbsError: 1.29139e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.30741e+02\tAbsError: 1.13025e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.93252e-01\tAbsError: 6.59600e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.71867e-04\tAbsError: 1.98768e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.17213e+02\tAbsError: 1.25554e+16\n", + " Region: \"zone_1\"\tRelError: 2.19150e+00\tAbsError: 1.09716e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19139e+00\tAbsError: 6.88787e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17693e-04\tAbsError: 4.08372e-02\n", + " Region: \"zone_3\"\tRelError: 3.15021e+02\tAbsError: 1.25554e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 5.86596e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.05049e+02\tAbsError: 6.68940e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.71668e-01\tAbsError: 6.88788e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17693e-04\tAbsError: 4.08372e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.10405e-01\tAbsError: 3.12560e+13\n", + " Region: \"zone_1\"\tRelError: 1.08840e-02\tAbsError: 4.61195e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08827e-02\tAbsError: 1.71511e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32204e-06\tAbsError: 4.59479e-04\n", + " Region: \"zone_3\"\tRelError: 9.95213e-02\tAbsError: 3.12560e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34947e-04\tAbsError: 1.52362e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.27748e-04\tAbsError: 1.60198e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.92573e-02\tAbsError: 1.72813e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32271e-06\tAbsError: 4.59705e-04\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 4.83955e-05\tAbsError: 2.70607e+10\n", + " Region: \"zone_1\"\tRelError: 1.33880e-05\tAbsError: 6.01952e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33708e-05\tAbsError: 1.77378e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72607e-08\tAbsError: 6.00179e-06\n", + " Region: \"zone_3\"\tRelError: 3.50075e-05\tAbsError: 2.70607e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.61535e-06\tAbsError: 1.56370e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.59676e-06\tAbsError: 1.14238e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97781e-05\tAbsError: 1.79440e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72632e-08\tAbsError: 6.00268e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:50\u001b[0m.\u001b[1;36m234\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.2\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.28731e-02\tAbsError: 3.02293e+13\n", + " Region: \"zone_1\"\tRelError: 3.52908e-03\tAbsError: 1.06265e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52602e-03\tAbsError: 1.19751e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.05388e-06\tAbsError: 1.06145e-03\n", + " Region: \"zone_3\"\tRelError: 9.34401e-03\tAbsError: 3.02293e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.79799e-05\tAbsError: 1.49185e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.36191e-05\tAbsError: 1.53108e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.20936e-03\tAbsError: 1.20971e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.05536e-06\tAbsError: 1.06195e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.65504e+03\tAbsError: 6.16435e+14\n", + " Region: \"zone_1\"\tRelError: 1.90949e-01\tAbsError: 9.65343e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90844e-01\tAbsError: 6.01966e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04401e-04\tAbsError: 3.63377e-02\n", + " Region: \"zone_3\"\tRelError: 2.65485e+03\tAbsError: 6.16435e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.90035e+03\tAbsError: 4.15710e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.54397e+02\tAbsError: 2.00726e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04014e-01\tAbsError: 6.01966e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04442e-04\tAbsError: 3.63528e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.04629e+04\tAbsError: 2.37437e+15\n", + " Region: \"zone_1\"\tRelError: 4.74917e-01\tAbsError: 2.24943e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.74453e-01\tAbsError: 6.35445e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.64520e-04\tAbsError: 1.61399e-01\n", + " Region: \"zone_3\"\tRelError: 1.04625e+04\tAbsError: 2.37437e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07391e+01\tAbsError: 1.41468e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04516e+04\tAbsError: 9.59690e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42411e-01\tAbsError: 6.35445e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.64913e-04\tAbsError: 1.61539e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.63047e-03\tAbsError: 9.09027e+11\n", + " Region: \"zone_1\"\tRelError: 4.56990e-04\tAbsError: 3.44629e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.55999e-04\tAbsError: 1.41300e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.91190e-07\tAbsError: 3.44488e-04\n", + " Region: \"zone_3\"\tRelError: 4.17348e-03\tAbsError: 9.09027e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33335e-06\tAbsError: 4.38047e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02288e-05\tAbsError: 4.70980e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.15793e-03\tAbsError: 1.42246e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.91601e-07\tAbsError: 3.44637e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.87539e-04\tAbsError: 5.02822e+12\n", + " Region: \"zone_1\"\tRelError: 1.19584e-04\tAbsError: 2.34142e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18911e-04\tAbsError: 3.38653e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.72773e-07\tAbsError: 2.33803e-04\n", + " Region: \"zone_3\"\tRelError: 3.67955e-04\tAbsError: 5.02822e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18819e-05\tAbsError: 2.47643e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.05162e-05\tAbsError: 2.55180e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.44883e-04\tAbsError: 3.41809e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.73051e-07\tAbsError: 2.33906e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.71665e+00\tAbsError: 8.34849e+15\n", + " Region: \"zone_1\"\tRelError: 2.08783e+00\tAbsError: 4.09564e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08783e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.19011e-09\tAbsError: 2.15239e-06\n", + " Region: \"zone_3\"\tRelError: 1.62882e+00\tAbsError: 8.34849e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69544e-01\tAbsError: 4.67018e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69471e-01\tAbsError: 3.67831e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.98079e-02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.19102e-09\tAbsError: 2.15271e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.39969e+02\tAbsError: 2.18179e+14\n", + " Region: \"zone_1\"\tRelError: 8.33405e-02\tAbsError: 7.51246e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.32783e-02\tAbsError: 5.35128e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.22639e-05\tAbsError: 2.16117e-02\n", + " Region: \"zone_3\"\tRelError: 1.39885e+02\tAbsError: 2.18179e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.25875e+01\tAbsError: 9.31122e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.27214e+02\tAbsError: 1.25067e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.35329e-02\tAbsError: 5.35129e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.22639e-05\tAbsError: 2.16117e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.10179e+04\tAbsError: 1.16660e+15\n", + " Region: \"zone_1\"\tRelError: 3.25898e-01\tAbsError: 7.98044e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.25833e-01\tAbsError: 5.74069e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.45576e-05\tAbsError: 2.23976e-02\n", + " Region: \"zone_3\"\tRelError: 3.10176e+04\tAbsError: 1.16660e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39601e+03\tAbsError: 7.27993e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.66214e+04\tAbsError: 4.38604e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21043e-01\tAbsError: 5.74070e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.45735e-05\tAbsError: 2.24025e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.49771e-03\tAbsError: 1.64940e+12\n", + " Region: \"zone_1\"\tRelError: 6.42053e-04\tAbsError: 1.77929e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.42002e-04\tAbsError: 9.99896e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.09050e-08\tAbsError: 1.76929e-05\n", + " Region: \"zone_3\"\tRelError: 5.85566e-03\tAbsError: 1.64940e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16109e-06\tAbsError: 8.03293e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.70130e-06\tAbsError: 8.46106e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.84174e-03\tAbsError: 1.00703e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.09341e-08\tAbsError: 1.77035e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.72996e-04\tAbsError: 1.42516e+12\n", + " Region: \"zone_1\"\tRelError: 1.84920e-04\tAbsError: 3.38943e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84823e-04\tAbsError: 6.24884e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.73397e-08\tAbsError: 3.38318e-05\n", + " Region: \"zone_3\"\tRelError: 4.88075e-04\tAbsError: 1.42516e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.24640e-06\tAbsError: 7.04060e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.97985e-06\tAbsError: 7.21095e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.81752e-04\tAbsError: 6.30893e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.73857e-08\tAbsError: 3.38479e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 5.53468e+02\tAbsError: 1.83800e+14\n", + " Region: \"zone_1\"\tRelError: 6.52479e-02\tAbsError: 6.97119e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.51786e-02\tAbsError: 4.56537e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93074e-05\tAbsError: 2.40582e-02\n", + " Region: \"zone_3\"\tRelError: 5.53402e+02\tAbsError: 1.83800e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.44590e+02\tAbsError: 3.99742e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.74701e+00\tAbsError: 1.43826e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.56062e-02\tAbsError: 4.56538e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93074e-05\tAbsError: 2.40582e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.50135e+00\tAbsError: 2.91712e+14\n", + " Region: \"zone_1\"\tRelError: 6.56152e-02\tAbsError: 8.99313e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.54450e-02\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70195e-04\tAbsError: 5.91677e-02\n", + " Region: \"zone_3\"\tRelError: 1.43573e+00\tAbsError: 2.91712e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37692e-01\tAbsError: 1.49991e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32867e-01\tAbsError: 1.41722e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.50013e-02\tAbsError: 3.07641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70195e-04\tAbsError: 5.91677e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 5.52298e+03\tAbsError: 2.95926e+14\n", + " Region: \"zone_1\"\tRelError: 8.12337e-02\tAbsError: 8.96310e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.11201e-02\tAbsError: 5.02451e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13516e-04\tAbsError: 3.93859e-02\n", + " Region: \"zone_3\"\tRelError: 5.52289e+03\tAbsError: 2.95926e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32970e+03\tAbsError: 4.16430e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.19311e+03\tAbsError: 2.54283e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.54394e-02\tAbsError: 5.02452e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13516e-04\tAbsError: 3.93859e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 5.44825e-04\tAbsError: 5.87780e+10\n", + " Region: \"zone_1\"\tRelError: 5.39394e-05\tAbsError: 2.02429e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.38812e-05\tAbsError: 6.87611e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.82246e-08\tAbsError: 2.02360e-05\n", + " Region: \"zone_3\"\tRelError: 4.90886e-04\tAbsError: 5.87780e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46411e-07\tAbsError: 2.85251e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.30809e-07\tAbsError: 3.02529e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.90250e-04\tAbsError: 6.91269e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.82487e-08\tAbsError: 2.02448e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.68662e-05\tAbsError: 1.68112e+11\n", + " Region: \"zone_1\"\tRelError: 4.17110e-06\tAbsError: 1.20331e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.13651e-06\tAbsError: 1.05474e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.45951e-08\tAbsError: 1.20225e-05\n", + " Region: \"zone_3\"\tRelError: 1.26951e-05\tAbsError: 1.68112e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.02854e-07\tAbsError: 8.28209e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.89403e-07\tAbsError: 8.52907e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18682e-05\tAbsError: 1.06472e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.46105e-08\tAbsError: 1.20282e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:54\u001b[0m.\u001b[1;36m620\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.95\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.34092e-01\tAbsError: 3.63176e+13\n", + " Region: \"zone_1\"\tRelError: 4.74090e-02\tAbsError: 3.08418e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.73947e-02\tAbsError: 2.58899e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42438e-05\tAbsError: 4.95187e-03\n", + " Region: \"zone_3\"\tRelError: 8.86683e-01\tAbsError: 3.63176e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40041e-01\tAbsError: 2.66178e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.98904e-01\tAbsError: 9.69976e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.77237e-02\tAbsError: 2.58388e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42438e-05\tAbsError: 4.95187e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.06872e+01\tAbsError: 1.51429e+14\n", + " Region: \"zone_1\"\tRelError: 4.87097e-02\tAbsError: 6.88565e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.86160e-02\tAbsError: 3.63251e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.37085e-05\tAbsError: 3.25314e-02\n", + " Region: \"zone_3\"\tRelError: 4.06385e+01\tAbsError: 1.51429e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.01309e+01\tAbsError: 4.50003e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.58697e-01\tAbsError: 1.46929e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.87811e-02\tAbsError: 3.63252e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.37085e-05\tAbsError: 3.25314e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.43220e+02\tAbsError: 2.99755e+14\n", + " Region: \"zone_1\"\tRelError: 5.65647e-02\tAbsError: 8.60901e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.64370e-02\tAbsError: 4.17803e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27691e-04\tAbsError: 4.43098e-02\n", + " Region: \"zone_3\"\tRelError: 1.43164e+02\tAbsError: 2.99755e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.02854e+01\tAbsError: 6.91875e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.28172e+01\tAbsError: 2.92836e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.08944e-02\tAbsError: 4.17805e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27747e-04\tAbsError: 4.43292e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.92595e-04\tAbsError: 9.49473e+10\n", + " Region: \"zone_1\"\tRelError: 3.87978e-05\tAbsError: 2.02444e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87920e-05\tAbsError: 5.96621e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.80757e-09\tAbsError: 2.01847e-06\n", + " Region: \"zone_3\"\tRelError: 3.53797e-04\tAbsError: 9.49473e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.10989e-07\tAbsError: 4.62324e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.83783e-07\tAbsError: 4.87150e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52997e-04\tAbsError: 6.00786e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.81025e-09\tAbsError: 2.01943e-06\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.10412e+00\tAbsError: 1.49221e+14\n", + " Region: \"zone_1\"\tRelError: 3.55745e-02\tAbsError: 6.71415e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.54542e-02\tAbsError: 2.53668e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20320e-04\tAbsError: 4.17747e-02\n", + " Region: \"zone_3\"\tRelError: 1.06855e+00\tAbsError: 1.49221e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.63379e-01\tAbsError: 1.22026e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.75653e-02\tAbsError: 1.37018e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74841e-02\tAbsError: 2.57075e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20320e-04\tAbsError: 4.17747e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.84661e-01\tAbsError: 3.60686e+12\n", + " Region: \"zone_1\"\tRelError: 1.51217e-02\tAbsError: 1.24487e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51123e-02\tAbsError: 9.16566e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.44373e-06\tAbsError: 3.28309e-03\n", + " Region: \"zone_3\"\tRelError: 2.69539e-01\tAbsError: 3.60686e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12296e-01\tAbsError: 2.19866e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.19182e-02\tAbsError: 1.40820e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53153e-02\tAbsError: 9.16570e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.44373e-06\tAbsError: 3.28309e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.50413e+02\tAbsError: 1.00117e+18\n", + " Region: \"zone_1\"\tRelError: 2.24824e+02\tAbsError: 4.22098e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24824e+02\tAbsError: 4.22089e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.80922e-09\tAbsError: 9.76412e-07\n", + " Region: \"zone_3\"\tRelError: 2.55890e+01\tAbsError: 1.00117e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.19984e-01\tAbsError: 4.87971e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.98829e-01\tAbsError: 5.13196e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41702e+01\tAbsError: 4.22091e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.81054e-09\tAbsError: 9.76858e-07\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.24163e+03\tAbsError: 3.12356e+14\n", + " Region: \"zone_1\"\tRelError: 4.63736e-02\tAbsError: 9.00220e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62056e-02\tAbsError: 3.17369e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67936e-04\tAbsError: 5.82850e-02\n", + " Region: \"zone_3\"\tRelError: 3.24159e+03\tAbsError: 3.12356e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.24035e+03\tAbsError: 1.81390e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.18548e+00\tAbsError: 2.94217e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.76331e-02\tAbsError: 3.17371e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67973e-04\tAbsError: 5.82975e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 5.03275e-05\tAbsError: 9.08763e+09\n", + " Region: \"zone_1\"\tRelError: 4.97773e-06\tAbsError: 1.23989e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.97416e-06\tAbsError: 6.85123e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.56554e-09\tAbsError: 1.23921e-06\n", + " Region: \"zone_3\"\tRelError: 4.53497e-05\tAbsError: 9.08763e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.78500e-08\tAbsError: 4.42118e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.59273e-08\tAbsError: 4.66645e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.52724e-05\tAbsError: 6.89457e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.56702e-09\tAbsError: 1.23975e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:56\u001b[0m.\u001b[1;36m819\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.9\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 5.25803e-01\tAbsError: 1.09345e+14\n", + " Region: \"zone_1\"\tRelError: 2.16781e-02\tAbsError: 6.89999e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.15304e-02\tAbsError: 1.77021e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47726e-04\tAbsError: 5.12977e-02\n", + " Region: \"zone_3\"\tRelError: 5.04125e-01\tAbsError: 1.09345e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.76084e-01\tAbsError: 8.19390e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.13922e-03\tAbsError: 1.01152e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17546e-02\tAbsError: 1.77023e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47726e-04\tAbsError: 5.12977e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.11827e+00\tAbsError: 2.77763e+14\n", + " Region: \"zone_1\"\tRelError: 3.25038e-02\tAbsError: 1.01854e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.22849e-02\tAbsError: 2.58441e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18958e-04\tAbsError: 7.60097e-02\n", + " Region: \"zone_3\"\tRelError: 1.08576e+00\tAbsError: 2.77763e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99187e-01\tAbsError: 1.92358e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.41534e-02\tAbsError: 2.58528e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.22056e-02\tAbsError: 2.42935e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18972e-04\tAbsError: 7.60143e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.15194e-02\tAbsError: 3.32535e+12\n", + " Region: \"zone_1\"\tRelError: 1.39864e-03\tAbsError: 2.06495e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39273e-03\tAbsError: 1.45908e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.90384e-06\tAbsError: 2.05036e-03\n", + " Region: \"zone_3\"\tRelError: 6.01208e-02\tAbsError: 3.32535e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.70408e-02\tAbsError: 2.05874e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.81904e-04\tAbsError: 1.26661e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49213e-03\tAbsError: 1.52370e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.90384e-06\tAbsError: 2.05036e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.17999e+04\tAbsError: 5.10978e+17\n", + " Region: \"zone_1\"\tRelError: 5.03027e+02\tAbsError: 1.04768e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.03024e+02\tAbsError: 3.22427e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.92198e-03\tAbsError: 1.01544e+00\n", + " Region: \"zone_3\"\tRelError: 1.12969e+04\tAbsError: 5.10978e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.85509e-01\tAbsError: 2.56157e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.59104e-01\tAbsError: 2.54821e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12959e+04\tAbsError: 3.22432e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.92235e-03\tAbsError: 1.01559e+00\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 6.87726e-02\tAbsError: 8.38083e+13\n", + " Region: \"zone_1\"\tRelError: 6.67215e-03\tAbsError: 8.75624e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.42056e-03\tAbsError: 1.74141e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.51596e-04\tAbsError: 8.73883e-02\n", + " Region: \"zone_3\"\tRelError: 6.21005e-02\tAbsError: 8.38083e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.18225e-02\tAbsError: 1.20575e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.74554e-03\tAbsError: 7.17508e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80774e-04\tAbsError: 1.76570e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.51596e-04\tAbsError: 8.73883e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.75731e+01\tAbsError: 5.68784e+17\n", + " Region: \"zone_1\"\tRelError: 3.83859e+01\tAbsError: 4.09543e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.83859e+01\tAbsError: 4.09541e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.16236e-10\tAbsError: 1.79418e-07\n", + " Region: \"zone_3\"\tRelError: 1.91873e+01\tAbsError: 5.68784e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.35377e-01\tAbsError: 2.75826e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.22188e-01\tAbsError: 2.92959e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77297e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.16460e-10\tAbsError: 1.79501e-07\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.61096e+00\tAbsError: 5.27748e+14\n", + " Region: \"zone_1\"\tRelError: 1.33610e-02\tAbsError: 2.72747e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33123e-02\tAbsError: 1.03781e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.86757e-05\tAbsError: 1.68966e-02\n", + " Region: \"zone_3\"\tRelError: 2.59760e+00\tAbsError: 5.27748e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.56561e+00\tAbsError: 1.59867e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.17779e-03\tAbsError: 5.11762e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67637e-02\tAbsError: 1.03782e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.86757e-05\tAbsError: 1.68966e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.41567e-04\tAbsError: 9.91707e+11\n", + " Region: \"zone_1\"\tRelError: 9.96191e-05\tAbsError: 1.41222e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.92175e-05\tAbsError: 1.43594e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.01560e-07\tAbsError: 1.39786e-04\n", + " Region: \"zone_3\"\tRelError: 5.41948e-04\tAbsError: 9.91707e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33847e-04\tAbsError: 2.52735e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.19507e-04\tAbsError: 7.38971e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88192e-04\tAbsError: 1.43639e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.01715e-07\tAbsError: 1.39842e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 4.09005e+04\tAbsError: 1.09186e+17\n", + " Region: \"zone_1\"\tRelError: 3.89562e+04\tAbsError: 4.08435e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.89562e+04\tAbsError: 2.58909e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10194e-03\tAbsError: 3.82544e-01\n", + " Region: \"zone_3\"\tRelError: 1.94429e+03\tAbsError: 1.09186e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74831e-01\tAbsError: 5.48441e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.82033e-02\tAbsError: 5.43417e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.94402e+03\tAbsError: 2.58839e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10598e-03\tAbsError: 3.83947e-01\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 5.03731e-02\tAbsError: 4.41514e+13\n", + " Region: \"zone_1\"\tRelError: 1.13318e-02\tAbsError: 7.63919e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13298e-02\tAbsError: 5.65882e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03424e-06\tAbsError: 7.07331e-04\n", + " Region: \"zone_3\"\tRelError: 3.90413e-02\tAbsError: 4.41514e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.03515e-03\tAbsError: 1.47172e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.05565e-03\tAbsError: 2.94343e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.69485e-02\tAbsError: 5.71003e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03424e-06\tAbsError: 7.07331e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.10779e+01\tAbsError: 4.06443e+17\n", + " Region: \"zone_1\"\tRelError: 1.97168e+01\tAbsError: 4.69738e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97155e+01\tAbsError: 3.07629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26517e-03\tAbsError: 4.38975e-01\n", + " Region: \"zone_3\"\tRelError: 1.13612e+01\tAbsError: 4.06443e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.26663e-01\tAbsError: 2.03016e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.10593e-01\tAbsError: 2.03427e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03227e+01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26614e-03\tAbsError: 4.39294e-01\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 4.70060e-01\tAbsError: 6.21356e+14\n", + " Region: \"zone_1\"\tRelError: 2.85732e-02\tAbsError: 2.05963e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.79813e-02\tAbsError: 3.65489e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.91933e-04\tAbsError: 2.05597e-01\n", + " Region: \"zone_3\"\tRelError: 4.41487e-01\tAbsError: 6.21356e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.81692e-01\tAbsError: 1.55850e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.38602e-02\tAbsError: 6.05771e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.53431e-02\tAbsError: 3.74070e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.91933e-04\tAbsError: 2.05597e-01\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 3.33365e-03\tAbsError: 6.06204e+11\n", + " Region: \"zone_1\"\tRelError: 9.58438e-04\tAbsError: 2.88131e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.50144e-04\tAbsError: 6.03756e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.29366e-06\tAbsError: 2.88071e-03\n", + " Region: \"zone_3\"\tRelError: 2.37521e-03\tAbsError: 6.06204e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05456e-04\tAbsError: 3.54398e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.77946e-04\tAbsError: 2.51806e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.98352e-03\tAbsError: 6.23154e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.29366e-06\tAbsError: 2.88071e-03\n", + "Iteration: 3\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.74454e+02\tAbsError: 8.01333e+15\n", + " Region: \"zone_1\"\tRelError: 6.80372e+01\tAbsError: 4.04598e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.80361e+01\tAbsError: 1.10518e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12846e-03\tAbsError: 3.93546e-01\n", + " Region: \"zone_3\"\tRelError: 7.06417e+02\tAbsError: 8.01333e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.62890e-02\tAbsError: 4.02354e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06950e-02\tAbsError: 3.98978e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.06379e+02\tAbsError: 1.10525e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12877e-03\tAbsError: 3.93649e-01\n", + " Device: \"device\"\tRelError: 1.93100e-04\tAbsError: 1.20960e+11\n", + " Region: \"zone_1\"\tRelError: 5.19820e-05\tAbsError: 5.49694e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.18239e-05\tAbsError: 7.13688e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58064e-07\tAbsError: 5.48980e-05\n", + " Region: \"zone_3\"\tRelError: 1.41118e-04\tAbsError: 1.20960e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98311e-06\tAbsError: 8.30760e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.89226e-06\tAbsError: 3.78838e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21085e-04\tAbsError: 7.51134e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58064e-07\tAbsError: 5.48980e-05\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.22495e-01\tAbsError: 1.04521e+14\n", + " Region: \"zone_1\"\tRelError: 2.79563e-02\tAbsError: 3.74050e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.79459e-02\tAbsError: 1.32552e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03633e-05\tAbsError: 3.60795e-03\n", + " Region: \"zone_3\"\tRelError: 9.45386e-02\tAbsError: 1.04521e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42087e-02\tAbsError: 3.56076e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.42360e-02\tAbsError: 6.89134e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.60836e-02\tAbsError: 1.33749e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03685e-05\tAbsError: 3.60983e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 4.48960e+02\tAbsError: 9.69691e+16\n", + " Region: \"zone_1\"\tRelError: 4.44741e+02\tAbsError: 1.46848e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44741e+02\tAbsError: 2.58943e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47880e-04\tAbsError: 1.20954e-01\n", + " Region: \"zone_3\"\tRelError: 4.21888e+00\tAbsError: 9.69691e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.30659e-01\tAbsError: 4.85459e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34310e-01\tAbsError: 4.84232e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85356e+00\tAbsError: 2.58906e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.48053e-04\tAbsError: 1.21009e-01\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 4.00677e-03\tAbsError: 2.81686e+12\n", + " Region: \"zone_1\"\tRelError: 1.05646e-03\tAbsError: 2.25120e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05582e-03\tAbsError: 2.16769e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.41193e-07\tAbsError: 2.22952e-04\n", + " Region: \"zone_3\"\tRelError: 2.95031e-03\tAbsError: 2.81686e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.80261e-04\tAbsError: 1.33088e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.78330e-04\tAbsError: 1.48598e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39107e-03\tAbsError: 2.19067e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.41428e-07\tAbsError: 2.23034e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.80767e-05\tAbsError: 4.88656e+10\n", + " Region: \"zone_1\"\tRelError: 1.14722e-05\tAbsError: 6.01770e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14550e-05\tAbsError: 4.42598e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71595e-08\tAbsError: 5.97344e-06\n", + " Region: \"zone_3\"\tRelError: 3.66045e-05\tAbsError: 4.88656e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37873e-06\tAbsError: 1.78083e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.34140e-06\tAbsError: 3.10573e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78672e-05\tAbsError: 4.43720e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71671e-08\tAbsError: 5.97623e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.12975e+01\tAbsError: 3.16208e+15\n", + " Region: \"zone_1\"\tRelError: 2.83893e+01\tAbsError: 5.80956e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83876e+01\tAbsError: 1.69468e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66814e-03\tAbsError: 5.80787e-01\n", + " Region: \"zone_3\"\tRelError: 2.90821e+00\tAbsError: 3.16208e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12918e-02\tAbsError: 1.46803e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.97509e-03\tAbsError: 1.69405e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.89227e+00\tAbsError: 1.70953e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66892e-03\tAbsError: 5.81053e-01\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 1.08908e-02\tAbsError: 3.13154e+12\n", + " Region: \"zone_1\"\tRelError: 3.20242e-03\tAbsError: 6.92103e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.18252e-03\tAbsError: 2.37467e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98986e-05\tAbsError: 6.91866e-03\n", + " Region: \"zone_3\"\tRelError: 7.68840e-03\tAbsError: 3.13154e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.85378e-04\tAbsError: 2.02508e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.32251e-04\tAbsError: 1.10645e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.75087e-03\tAbsError: 2.45496e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98986e-05\tAbsError: 6.91866e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:02\u001b[0m.\u001b[1;36m208\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:02\u001b[0m.\u001b[1;36m208\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.03712e+00\tAbsError: 1.21527e+16\n", + " Region: \"zone_1\"\tRelError: 1.00977e+00\tAbsError: 5.07362e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00834e+00\tAbsError: 9.16487e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42992e-03\tAbsError: 4.98197e-01\n", + " Region: \"zone_3\"\tRelError: 4.02736e+00\tAbsError: 1.21527e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.24782e-02\tAbsError: 5.84262e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.44637e-02\tAbsError: 6.31012e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.96898e+00\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43302e-03\tAbsError: 4.99291e-01\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 4.78745e-04\tAbsError: 2.09883e+11\n", + " Region: \"zone_1\"\tRelError: 1.37276e-04\tAbsError: 1.88799e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36733e-04\tAbsError: 1.56735e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.42550e-07\tAbsError: 1.88642e-04\n", + " Region: \"zone_3\"\tRelError: 3.41469e-04\tAbsError: 2.09883e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16342e-05\tAbsError: 1.14769e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.15603e-05\tAbsError: 9.51147e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97732e-04\tAbsError: 1.58619e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.42742e-07\tAbsError: 1.88719e-04\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 9.83445e-03\tAbsError: 6.77712e+12\n", + " Region: \"zone_1\"\tRelError: 2.60543e-03\tAbsError: 6.40859e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.60360e-03\tAbsError: 5.17337e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82818e-06\tAbsError: 6.35685e-04\n", + " Region: \"zone_3\"\tRelError: 7.22901e-03\tAbsError: 6.77712e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.73598e-04\tAbsError: 3.24417e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.69049e-04\tAbsError: 3.53295e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.88454e-03\tAbsError: 5.22825e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82857e-06\tAbsError: 6.35821e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.88061e+01\tAbsError: 2.85079e+15\n", + " Region: \"zone_1\"\tRelError: 6.73862e+00\tAbsError: 3.55831e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.73852e+00\tAbsError: 1.64420e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01700e-04\tAbsError: 3.54187e-02\n", + " Region: \"zone_3\"\tRelError: 1.20674e+01\tAbsError: 2.85079e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.00192e-03\tAbsError: 1.41980e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.87415e-03\tAbsError: 1.43099e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20605e+01\tAbsError: 1.65854e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01744e-04\tAbsError: 3.54336e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.29649e+01\tAbsError: 8.28032e+15\n", + " Region: \"zone_1\"\tRelError: 1.13261e+01\tAbsError: 4.09567e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13261e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.18750e-09\tAbsError: 2.49624e-06\n", + " Region: \"zone_3\"\tRelError: 1.63880e+00\tAbsError: 8.28032e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69633e-01\tAbsError: 4.77284e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.50748e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.95556e-02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.18842e-09\tAbsError: 2.49659e-06\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 3.00999e-04\tAbsError: 1.84846e+11\n", + " Region: \"zone_1\"\tRelError: 8.19378e-05\tAbsError: 2.60922e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.18632e-05\tAbsError: 1.26660e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.46747e-08\tAbsError: 2.59655e-05\n", + " Region: \"zone_3\"\tRelError: 2.19061e-04\tAbsError: 1.84846e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.78055e-05\tAbsError: 9.99668e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.76719e-05\tAbsError: 8.48788e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83509e-04\tAbsError: 1.28081e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.46923e-08\tAbsError: 2.59717e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.22708e-01\tAbsError: 3.87768e+15\n", + " Region: \"zone_1\"\tRelError: 1.91968e-01\tAbsError: 6.75386e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90026e-01\tAbsError: 2.52604e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94152e-03\tAbsError: 6.75134e-01\n", + " Region: \"zone_3\"\tRelError: 7.30741e-01\tAbsError: 3.87768e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.56619e-03\tAbsError: 1.77246e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.53274e-03\tAbsError: 2.10521e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.16698e-01\tAbsError: 2.55458e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94389e-03\tAbsError: 6.75970e-01\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 1.33464e-03\tAbsError: 6.01865e+11\n", + " Region: \"zone_1\"\tRelError: 3.81615e-04\tAbsError: 4.62510e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.80286e-04\tAbsError: 4.26302e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32891e-06\tAbsError: 4.62083e-04\n", + " Region: \"zone_3\"\tRelError: 9.53024e-04\tAbsError: 6.01865e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.06082e-05\tAbsError: 3.41244e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.03411e-05\tAbsError: 2.60621e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.30746e-04\tAbsError: 4.31478e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32948e-06\tAbsError: 4.62282e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.17130e+00\tAbsError: 2.53243e+14\n", + " Region: \"zone_1\"\tRelError: 8.02048e-01\tAbsError: 2.24613e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.01984e-01\tAbsError: 1.17020e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.44660e-05\tAbsError: 2.24496e-02\n", + " Region: \"zone_3\"\tRelError: 2.36925e+00\tAbsError: 2.53243e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.56971e-04\tAbsError: 1.26152e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.59164e-04\tAbsError: 1.27091e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36817e+00\tAbsError: 1.17921e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.44925e-05\tAbsError: 2.24588e-02\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 5.05814e-05\tAbsError: 2.45283e+10\n", + " Region: \"zone_1\"\tRelError: 1.43034e-05\tAbsError: 1.34689e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42647e-05\tAbsError: 1.69134e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.86869e-08\tAbsError: 1.34520e-05\n", + " Region: \"zone_3\"\tRelError: 3.62781e-05\tAbsError: 2.45283e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.44583e-06\tAbsError: 1.40482e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.43514e-06\tAbsError: 1.04801e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.13584e-05\tAbsError: 1.71147e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.86964e-08\tAbsError: 1.34553e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.56865e+00\tAbsError: 2.86625e+14\n", + " Region: \"zone_1\"\tRelError: 1.21045e-01\tAbsError: 8.55195e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20888e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", + " Region: \"zone_3\"\tRelError: 1.44761e+00\tAbsError: 2.86625e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38556e-01\tAbsError: 1.75436e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32332e-01\tAbsError: 1.11189e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.65613e-02\tAbsError: 3.07640e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:05\u001b[0m.\u001b[1;36m386\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:05\u001b[0m.\u001b[1;36m386\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.20555555555555557\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 7.45304e-04\tAbsError: 4.51516e+11\n", + " Region: \"zone_1\"\tRelError: 2.03387e-04\tAbsError: 6.97949e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03187e-04\tAbsError: 3.08050e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99839e-07\tAbsError: 6.94869e-05\n", + " Region: \"zone_3\"\tRelError: 5.41916e-04\tAbsError: 4.51516e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.35288e-05\tAbsError: 2.46048e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.32078e-05\tAbsError: 2.05469e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54980e-04\tAbsError: 3.11521e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99878e-07\tAbsError: 6.95007e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.39826e+00\tAbsError: 3.43096e+15\n", + " Region: \"zone_1\"\tRelError: 2.04849e-01\tAbsError: 4.45309e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04721e-01\tAbsError: 2.05839e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27433e-04\tAbsError: 4.43251e-02\n", + " Region: \"zone_3\"\tRelError: 2.19341e+00\tAbsError: 3.43096e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46827e-03\tAbsError: 1.70482e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.46042e-03\tAbsError: 1.72614e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18535e+00\tAbsError: 2.07760e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27493e-04\tAbsError: 4.43450e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 8.76689e+00\tAbsError: 1.50647e+14\n", + " Region: \"zone_1\"\tRelError: 3.16473e-01\tAbsError: 2.47908e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.16466e-01\tAbsError: 6.52205e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.12020e-06\tAbsError: 2.47256e-03\n", + " Region: \"zone_3\"\tRelError: 8.45042e+00\tAbsError: 1.50647e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01195e-04\tAbsError: 7.50093e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10297e-04\tAbsError: 7.56382e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.45010e+00\tAbsError: 6.57560e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.12020e-06\tAbsError: 2.47256e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.63437e-01\tAbsError: 3.66677e+13\n", + " Region: \"zone_1\"\tRelError: 5.93231e-02\tAbsError: 3.16919e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.93064e-02\tAbsError: 2.58707e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", + " Region: \"zone_3\"\tRelError: 9.04114e-01\tAbsError: 3.66677e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40101e-01\tAbsError: 2.63702e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.04471e-01\tAbsError: 1.02975e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95256e-02\tAbsError: 2.58992e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 1.33987e-04\tAbsError: 6.55810e+10\n", + " Region: \"zone_1\"\tRelError: 3.78368e-05\tAbsError: 3.33798e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.77409e-05\tAbsError: 4.45468e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.58696e-08\tAbsError: 3.33353e-05\n", + " Region: \"zone_3\"\tRelError: 9.61507e-05\tAbsError: 6.55810e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.50926e-06\tAbsError: 3.79987e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.47837e-06\tAbsError: 2.75823e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.30672e-05\tAbsError: 4.50780e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.58918e-08\tAbsError: 3.33430e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.62369e+00\tAbsError: 8.81229e+15\n", + " Region: \"zone_1\"\tRelError: 1.97477e+00\tAbsError: 4.20751e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97477e+00\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.14730e-09\tAbsError: 2.48522e-06\n", + " Region: \"zone_3\"\tRelError: 1.64892e+00\tAbsError: 8.81229e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78993e-01\tAbsError: 4.92963e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.78922e-01\tAbsError: 3.88266e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.10055e-02\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.14845e-09\tAbsError: 2.48562e-06\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.26801e-01\tAbsError: 3.21780e+14\n", + " Region: \"zone_1\"\tRelError: 1.55999e-02\tAbsError: 2.70060e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55223e-02\tAbsError: 1.53596e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.76036e-05\tAbsError: 2.69907e-02\n", + " Region: \"zone_3\"\tRelError: 3.11201e-01\tAbsError: 3.21780e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.63679e-04\tAbsError: 1.60119e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.88527e-04\tAbsError: 1.61661e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.10171e-01\tAbsError: 1.54896e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.76380e-05\tAbsError: 2.70022e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.51438e-01\tAbsError: 2.02395e+13\n", + " Region: \"zone_1\"\tRelError: 3.57663e-02\tAbsError: 1.10130e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.57631e-02\tAbsError: 7.62074e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.16921e-06\tAbsError: 1.10054e-03\n", + " Region: \"zone_3\"\tRelError: 6.15671e-01\tAbsError: 2.02395e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.51143e-05\tAbsError: 1.00841e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.17050e-05\tAbsError: 1.01554e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.15601e-01\tAbsError: 7.68131e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.16965e-06\tAbsError: 1.10064e-03\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 5.65881e-05\tAbsError: 3.20218e+10\n", + " Region: \"zone_1\"\tRelError: 1.56237e-05\tAbsError: 6.50398e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56051e-05\tAbsError: 2.09852e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.86446e-08\tAbsError: 6.48299e-06\n", + " Region: \"zone_3\"\tRelError: 4.09644e-05\tAbsError: 3.20218e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.08913e-06\tAbsError: 1.84508e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.06663e-06\tAbsError: 1.35710e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.47900e-05\tAbsError: 2.12285e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.86473e-08\tAbsError: 6.48396e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:08\u001b[0m.\u001b[1;36m114\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.2\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.93334e-01\tAbsError: 6.56738e+12\n", + " Region: \"zone_1\"\tRelError: 1.86981e-02\tAbsError: 1.19586e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86900e-02\tAbsError: 9.16562e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03535e-06\tAbsError: 2.79297e-03\n", + " Region: \"zone_3\"\tRelError: 2.74636e-01\tAbsError: 6.56738e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11907e-01\tAbsError: 3.29549e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.38500e-02\tAbsError: 3.27189e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88710e-02\tAbsError: 9.16566e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03753e-06\tAbsError: 2.79381e-03\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.54137e+00\tAbsError: 3.24375e+14\n", + " Region: \"zone_1\"\tRelError: 7.11295e-02\tAbsError: 9.45006e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.09500e-02\tAbsError: 3.20824e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79547e-04\tAbsError: 6.24182e-02\n", + " Region: \"zone_3\"\tRelError: 1.47024e+00\tAbsError: 3.24375e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.55196e-01\tAbsError: 1.67449e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.49237e-01\tAbsError: 1.56926e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.56262e-02\tAbsError: 3.20828e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79547e-04\tAbsError: 6.24182e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.06749e-01\tAbsError: 1.86094e+14\n", + " Region: \"zone_1\"\tRelError: 8.34420e-03\tAbsError: 3.03935e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.33549e-03\tAbsError: 8.31449e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.71533e-06\tAbsError: 3.03103e-03\n", + " Region: \"zone_3\"\tRelError: 1.98405e-01\tAbsError: 1.86094e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.28032e-04\tAbsError: 9.25440e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.88076e-04\tAbsError: 9.35503e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97980e-01\tAbsError: 8.38945e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.71848e-06\tAbsError: 3.03213e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 3.40943e-01\tAbsError: 8.80988e+12\n", + " Region: \"zone_1\"\tRelError: 1.44364e-02\tAbsError: 1.94211e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44358e-02\tAbsError: 3.09686e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.57362e-07\tAbsError: 1.93901e-04\n", + " Region: \"zone_3\"\tRelError: 3.26507e-01\tAbsError: 8.80988e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.53349e-06\tAbsError: 4.38892e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.69254e-06\tAbsError: 4.42096e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.26487e-01\tAbsError: 3.12212e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.57570e-07\tAbsError: 1.93974e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.00158e-02\tAbsError: 2.47729e+12\n", + " Region: \"zone_1\"\tRelError: 6.29744e-04\tAbsError: 1.66755e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.24968e-04\tAbsError: 8.94858e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", + " Region: \"zone_3\"\tRelError: 5.93860e-02\tAbsError: 2.47729e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.68115e-02\tAbsError: 1.70064e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.91678e-04\tAbsError: 7.76647e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27809e-03\tAbsError: 9.43816e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.71665e+00\tAbsError: 8.34849e+15\n", + " Region: \"zone_1\"\tRelError: 2.08783e+00\tAbsError: 4.09567e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08783e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.19938e-09\tAbsError: 2.50333e-06\n", + " Region: \"zone_3\"\tRelError: 1.62882e+00\tAbsError: 8.34849e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69544e-01\tAbsError: 4.67018e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69471e-01\tAbsError: 3.67831e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.98079e-02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.20047e-09\tAbsError: 2.50372e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.00350e+00\tAbsError: 3.97769e+13\n", + " Region: \"zone_1\"\tRelError: 5.04291e-02\tAbsError: 3.12685e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.04136e-02\tAbsError: 2.58872e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54792e-05\tAbsError: 5.38132e-03\n", + " Region: \"zone_3\"\tRelError: 9.53067e-01\tAbsError: 3.97769e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.66315e-01\tAbsError: 2.91166e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.36187e-01\tAbsError: 1.06602e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.05491e-02\tAbsError: 2.58931e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54792e-05\tAbsError: 5.38132e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.88896e-02\tAbsError: 2.58485e+13\n", + " Region: \"zone_1\"\tRelError: 1.63690e-03\tAbsError: 1.31710e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63310e-03\tAbsError: 9.88963e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.79528e-06\tAbsError: 1.31612e-03\n", + " Region: \"zone_3\"\tRelError: 3.72527e-02\tAbsError: 2.58485e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.09818e-05\tAbsError: 1.28647e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.53496e-05\tAbsError: 1.29838e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.71926e-02\tAbsError: 9.97598e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.79540e-06\tAbsError: 1.31620e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 6.52134e-02\tAbsError: 1.52515e+12\n", + " Region: \"zone_1\"\tRelError: 2.21558e-03\tAbsError: 7.17045e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21537e-03\tAbsError: 5.18562e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.05963e-07\tAbsError: 7.16526e-05\n", + " Region: \"zone_3\"\tRelError: 6.29978e-02\tAbsError: 1.52515e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01859e-06\tAbsError: 7.60051e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.48154e-06\tAbsError: 7.65095e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.29931e-02\tAbsError: 5.24017e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.06040e-07\tAbsError: 7.16803e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.31240e-04\tAbsError: 7.97937e+11\n", + " Region: \"zone_1\"\tRelError: 7.54533e-05\tAbsError: 1.27890e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.50894e-05\tAbsError: 1.20855e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.63943e-07\tAbsError: 1.26681e-04\n", + " Region: \"zone_3\"\tRelError: 3.55787e-04\tAbsError: 7.97937e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.38045e-05\tAbsError: 1.92064e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.48742e-05\tAbsError: 6.05872e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76744e-04\tAbsError: 1.21338e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.64089e-07\tAbsError: 1.26735e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.50135e+00\tAbsError: 2.91712e+14\n", + " Region: \"zone_1\"\tRelError: 6.56152e-02\tAbsError: 8.99313e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.54450e-02\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70195e-04\tAbsError: 5.91677e-02\n", + " Region: \"zone_3\"\tRelError: 1.43573e+00\tAbsError: 2.91712e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37692e-01\tAbsError: 1.49991e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32867e-01\tAbsError: 1.41722e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.50013e-02\tAbsError: 3.07641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70195e-04\tAbsError: 5.91677e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.16475e-01\tAbsError: 3.15522e+12\n", + " Region: \"zone_1\"\tRelError: 1.81031e-02\tAbsError: 1.40659e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80938e-02\tAbsError: 1.08348e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.29419e-06\tAbsError: 3.23108e-03\n", + " Region: \"zone_3\"\tRelError: 2.98372e-01\tAbsError: 3.15522e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21375e-01\tAbsError: 1.95194e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.86610e-02\tAbsError: 1.20327e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83264e-02\tAbsError: 1.08348e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.29673e-06\tAbsError: 3.23201e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.59304e-02\tAbsError: 1.10975e+13\n", + " Region: \"zone_1\"\tRelError: 6.60647e-04\tAbsError: 2.32906e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.59978e-04\tAbsError: 3.98553e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.68839e-07\tAbsError: 2.32508e-04\n", + " Region: \"zone_3\"\tRelError: 1.52698e-02\tAbsError: 1.10975e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32236e-05\tAbsError: 5.52234e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.14382e-05\tAbsError: 5.57521e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52444e-02\tAbsError: 4.02224e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.69094e-07\tAbsError: 2.32596e-04\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.27591e-02\tAbsError: 5.50028e+11\n", + " Region: \"zone_1\"\tRelError: 7.57810e-04\tAbsError: 1.50159e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.57766e-04\tAbsError: 1.82199e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31100e-08\tAbsError: 1.49977e-05\n", + " Region: \"zone_3\"\tRelError: 2.20013e-02\tAbsError: 5.50028e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.28023e-07\tAbsError: 2.74093e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.25450e-07\tAbsError: 2.75935e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20000e-02\tAbsError: 1.84174e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31264e-08\tAbsError: 1.50038e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.53826e-04\tAbsError: 1.09912e+11\n", + " Region: \"zone_1\"\tRelError: 2.29821e-05\tAbsError: 4.27473e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.28592e-05\tAbsError: 6.65170e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", + " Region: \"zone_3\"\tRelError: 1.30844e-04\tAbsError: 1.09912e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.01681e-06\tAbsError: 7.52234e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94349e-06\tAbsError: 3.46881e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14760e-04\tAbsError: 6.98367e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.34092e-01\tAbsError: 3.63176e+13\n", + " Region: \"zone_1\"\tRelError: 4.74090e-02\tAbsError: 3.08418e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.73947e-02\tAbsError: 2.58899e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42439e-05\tAbsError: 4.95189e-03\n", + " Region: \"zone_3\"\tRelError: 8.86683e-01\tAbsError: 3.63176e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40041e-01\tAbsError: 2.66178e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.98904e-01\tAbsError: 9.69977e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.77237e-02\tAbsError: 2.58388e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42439e-05\tAbsError: 4.95189e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.34486e-03\tAbsError: 1.97182e+12\n", + " Region: \"zone_1\"\tRelError: 1.39485e-04\tAbsError: 8.65138e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39236e-04\tAbsError: 6.47581e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.48683e-07\tAbsError: 8.64490e-05\n", + " Region: \"zone_3\"\tRelError: 3.20538e-03\tAbsError: 1.97182e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.27846e-06\tAbsError: 9.81632e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.12485e-06\tAbsError: 9.90188e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.20072e-03\tAbsError: 6.54815e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.48776e-07\tAbsError: 8.64826e-05\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 5.01087e-03\tAbsError: 1.11391e+11\n", + " Region: \"zone_1\"\tRelError: 1.44411e-04\tAbsError: 4.88363e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44397e-04\tAbsError: 3.97189e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40263e-08\tAbsError: 4.87966e-06\n", + " Region: \"zone_3\"\tRelError: 4.86646e-03\tAbsError: 1.11391e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24940e-07\tAbsError: 5.55183e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.83217e-07\tAbsError: 5.58731e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.86614e-03\tAbsError: 4.01386e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40317e-08\tAbsError: 4.88166e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.06954e-02\tAbsError: 2.66197e+12\n", + " Region: \"zone_1\"\tRelError: 9.55650e-04\tAbsError: 2.48145e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.48509e-04\tAbsError: 1.57463e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.14062e-06\tAbsError: 2.47987e-03\n", + " Region: \"zone_3\"\tRelError: 6.97397e-02\tAbsError: 2.66197e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.71718e-02\tAbsError: 1.64482e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.35073e-04\tAbsError: 1.01715e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42575e-03\tAbsError: 1.64454e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.14062e-06\tAbsError: 2.47987e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.84860e-05\tAbsError: 3.70987e+10\n", + " Region: \"zone_1\"\tRelError: 3.74711e-06\tAbsError: 5.87951e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.73032e-06\tAbsError: 3.58594e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67880e-08\tAbsError: 5.84365e-06\n", + " Region: \"zone_3\"\tRelError: 2.47389e-05\tAbsError: 3.70987e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96764e-06\tAbsError: 1.24118e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.94133e-06\tAbsError: 2.46869e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88131e-05\tAbsError: 3.59119e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67950e-08\tAbsError: 5.84625e-06\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.15137e-03\tAbsError: 7.06680e+11\n", + " Region: \"zone_1\"\tRelError: 4.79513e-05\tAbsError: 1.84347e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.78983e-05\tAbsError: 2.30046e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.29631e-08\tAbsError: 1.84117e-05\n", + " Region: \"zone_3\"\tRelError: 1.10342e-03\tAbsError: 7.06680e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.28767e-07\tAbsError: 3.51782e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.37241e-07\tAbsError: 3.54898e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10180e-03\tAbsError: 2.32700e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.29832e-08\tAbsError: 1.84191e-05\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.55548e-03\tAbsError: 3.57700e+10\n", + " Region: \"zone_1\"\tRelError: 4.47196e-05\tAbsError: 1.10628e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.47164e-05\tAbsError: 1.25298e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.17634e-09\tAbsError: 1.10503e-06\n", + " Region: \"zone_3\"\tRelError: 1.51077e-03\tAbsError: 3.57700e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.25221e-08\tAbsError: 1.78277e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.16249e-08\tAbsError: 1.79424e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51068e-03\tAbsError: 1.26647e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.17764e-09\tAbsError: 1.10551e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:13\u001b[0m.\u001b[1;36m829\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.4\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Iteration: 3\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 2.84661e-01\tAbsError: 3.60687e+12\n", + " Region: \"zone_1\"\tRelError: 1.51217e-02\tAbsError: 1.24488e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51123e-02\tAbsError: 9.16566e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.44375e-06\tAbsError: 3.28309e-03\n", + " Region: \"zone_3\"\tRelError: 2.69539e-01\tAbsError: 3.60687e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12296e-01\tAbsError: 2.19867e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.19182e-02\tAbsError: 1.40820e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53153e-02\tAbsError: 9.16570e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.44375e-06\tAbsError: 3.28309e-03\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.26628e-04\tAbsError: 1.21933e+12\n", + " Region: \"zone_1\"\tRelError: 1.56167e-04\tAbsError: 1.24459e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55815e-04\tAbsError: 1.74943e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52501e-07\tAbsError: 1.22710e-04\n", + " Region: \"zone_3\"\tRelError: 7.70461e-04\tAbsError: 1.21933e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.51322e-04\tAbsError: 3.29136e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.51151e-04\tAbsError: 8.90191e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.67636e-04\tAbsError: 1.74963e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52654e-07\tAbsError: 1.22766e-04\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.60636e-04\tAbsError: 1.46372e+11\n", + " Region: \"zone_1\"\tRelError: 1.08690e-05\tAbsError: 6.03090e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08517e-05\tAbsError: 5.09600e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73339e-08\tAbsError: 6.02581e-06\n", + " Region: \"zone_3\"\tRelError: 2.49767e-04\tAbsError: 1.46372e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68311e-07\tAbsError: 7.29196e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.63262e-07\tAbsError: 7.34528e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49418e-04\tAbsError: 5.15309e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73406e-08\tAbsError: 6.02830e-06\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 3.64915e-04\tAbsError: 7.98660e+09\n", + " Region: \"zone_1\"\tRelError: 9.72642e-06\tAbsError: 3.32542e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 9.72547e-06\tAbsError: 2.90945e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.55034e-10\tAbsError: 3.32251e-07\n", + " Region: \"zone_3\"\tRelError: 3.55189e-04\tAbsError: 7.98660e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.14142e-09\tAbsError: 3.98083e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.31282e-08\tAbsError: 4.00578e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.55167e-04\tAbsError: 2.94028e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.55427e-10\tAbsError: 3.32397e-07\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.15194e-02\tAbsError: 3.32535e+12\n", + " Region: \"zone_1\"\tRelError: 1.39864e-03\tAbsError: 2.06495e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39273e-03\tAbsError: 1.45908e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.90384e-06\tAbsError: 2.05036e-03\n", + " Region: \"zone_3\"\tRelError: 6.01208e-02\tAbsError: 3.32535e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.70408e-02\tAbsError: 2.05874e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.81904e-04\tAbsError: 1.26661e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49214e-03\tAbsError: 1.52370e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.90384e-06\tAbsError: 2.05036e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.87618e+01\tAbsError: 8.25603e+15\n", + " Region: \"zone_1\"\tRelError: 2.71120e+01\tAbsError: 4.09561e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.71120e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.29384e-09\tAbsError: 1.83846e-06\n", + " Region: \"zone_3\"\tRelError: 1.64979e+00\tAbsError: 8.25603e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69658e-01\tAbsError: 4.86497e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69634e-01\tAbsError: 3.39106e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10500e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.29480e-09\tAbsError: 1.83875e-06\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.48517e-04\tAbsError: 1.02383e+11\n", + " Region: \"zone_1\"\tRelError: 3.65622e-05\tAbsError: 7.18044e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.63556e-05\tAbsError: 5.91894e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.06572e-07\tAbsError: 7.17452e-05\n", + " Region: \"zone_3\"\tRelError: 1.11955e-04\tAbsError: 1.02383e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94379e-06\tAbsError: 7.36990e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.86830e-06\tAbsError: 2.86838e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.59358e-05\tAbsError: 6.22686e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.06635e-07\tAbsError: 7.17655e-05\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 1.06447e-04\tAbsError: 2.38457e+09\n", + " Region: \"zone_1\"\tRelError: 2.83901e-06\tAbsError: 7.94085e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83878e-06\tAbsError: 8.58058e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28004e-10\tAbsError: 7.93227e-08\n", + " Region: \"zone_3\"\tRelError: 1.03608e-04\tAbsError: 2.38457e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12667e-09\tAbsError: 1.18855e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.60756e-09\tAbsError: 1.19603e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03602e-04\tAbsError: 8.67255e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28098e-10\tAbsError: 7.93566e-08\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 8.12930e-05\tAbsError: 4.69072e+10\n", + " Region: \"zone_1\"\tRelError: 3.38946e-06\tAbsError: 1.38742e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.38548e-06\tAbsError: 1.62196e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.98640e-09\tAbsError: 1.38580e-06\n", + " Region: \"zone_3\"\tRelError: 7.79035e-05\tAbsError: 4.69072e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.45193e-08\tAbsError: 2.33605e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.92263e-08\tAbsError: 2.35467e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.77958e-05\tAbsError: 1.64038e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.98804e-09\tAbsError: 1.38641e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.41565e-04\tAbsError: 9.91706e+11\n", + " Region: \"zone_1\"\tRelError: 9.96184e-05\tAbsError: 1.41222e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.92169e-05\tAbsError: 1.43594e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.01561e-07\tAbsError: 1.39787e-04\n", + " Region: \"zone_3\"\tRelError: 5.41946e-04\tAbsError: 9.91706e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33847e-04\tAbsError: 2.52735e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.19507e-04\tAbsError: 7.38971e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88191e-04\tAbsError: 1.43639e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.01716e-07\tAbsError: 1.39843e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.69855e+00\tAbsError: 3.40458e+14\n", + " Region: \"zone_1\"\tRelError: 2.34470e-01\tAbsError: 7.85796e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34332e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", + " Region: \"zone_3\"\tRelError: 1.46408e+00\tAbsError: 3.40458e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39247e-01\tAbsError: 2.37038e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.31799e-01\tAbsError: 1.03420e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.29010e-02\tAbsError: 3.07639e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 7.22553e-05\tAbsError: 6.59420e+10\n", + " Region: \"zone_1\"\tRelError: 1.65241e-05\tAbsError: 3.84626e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65132e-05\tAbsError: 5.77443e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08827e-08\tAbsError: 3.78852e-06\n", + " Region: \"zone_3\"\tRelError: 5.57311e-05\tAbsError: 6.59420e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.89013e-06\tAbsError: 2.63777e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.84086e-06\tAbsError: 3.95643e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.39893e-05\tAbsError: 5.78772e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08882e-08\tAbsError: 3.79051e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:17\u001b[0m.\u001b[1;36m160\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:17\u001b[0m.\u001b[1;36m160\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.3111111111111111\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "Iteration: 16\n", + "number of equations 31816\n", + " Device: \"device\"\tRelError: 2.60018e-05\tAbsError: 5.65889e+08\n", + " Region: \"zone_1\"\tRelError: 6.67181e-07\tAbsError: 2.27233e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 6.67116e-07\tAbsError: 2.08086e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.52555e-11\tAbsError: 2.27025e-08\n", + " Region: \"zone_3\"\tRelError: 2.53346e-05\tAbsError: 5.65889e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.46746e-10\tAbsError: 2.82069e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.26145e-10\tAbsError: 2.83820e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.53331e-05\tAbsError: 2.10295e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.52825e-11\tAbsError: 2.27122e-08\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.93101e-04\tAbsError: 1.20960e+11\n", + " Region: \"zone_1\"\tRelError: 5.19822e-05\tAbsError: 5.49693e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.18241e-05\tAbsError: 7.13690e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58064e-07\tAbsError: 5.48979e-05\n", + " Region: \"zone_3\"\tRelError: 1.41119e-04\tAbsError: 1.20960e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98314e-06\tAbsError: 8.30762e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.89229e-06\tAbsError: 3.78839e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21085e-04\tAbsError: 7.51136e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58064e-07\tAbsError: 5.48979e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.10009e+00\tAbsError: 9.49766e+13\n", + " Region: \"zone_1\"\tRelError: 1.69910e-01\tAbsError: 3.26443e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69891e-01\tAbsError: 2.58991e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", + " Region: \"zone_3\"\tRelError: 9.30185e-01\tAbsError: 9.49766e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40985e-01\tAbsError: 5.67002e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.12174e-01\tAbsError: 3.82763e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.70066e-02\tAbsError: 2.58994e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.53796e+01\tAbsError: 8.73906e+15\n", + " Region: \"zone_1\"\tRelError: 4.37173e+01\tAbsError: 4.20763e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.37173e+01\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06476e-08\tAbsError: 3.70148e-06\n", + " Region: \"zone_3\"\tRelError: 1.66235e+00\tAbsError: 8.73906e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.79081e-01\tAbsError: 5.04538e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.79062e-01\tAbsError: 3.69368e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04209e-01\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06482e-08\tAbsError: 3.70175e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:18\u001b[0m.\u001b[1;36m772\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:18\u001b[0m.\u001b[1;36m813\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.15 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:18\u001b[0m.\u001b[1;36m859\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.80765e-05\tAbsError: 4.88655e+10\n", + " Region: \"zone_1\"\tRelError: 1.14721e-05\tAbsError: 6.01773e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14550e-05\tAbsError: 4.42598e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71595e-08\tAbsError: 5.97347e-06\n", + " Region: \"zone_3\"\tRelError: 3.66044e-05\tAbsError: 4.88655e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37873e-06\tAbsError: 1.78083e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.34139e-06\tAbsError: 3.10572e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78671e-05\tAbsError: 4.43720e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71671e-08\tAbsError: 5.97626e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:19\u001b[0m.\u001b[1;36m525\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:19\u001b[0m.\u001b[1;36m525\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.56252e-01\tAbsError: 3.42527e+13\n", + " Region: \"zone_1\"\tRelError: 6.41646e-02\tAbsError: 1.11813e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.41588e-02\tAbsError: 9.16555e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.79958e-06\tAbsError: 2.01571e-03\n", + " Region: \"zone_3\"\tRelError: 2.92088e-01\tAbsError: 3.42527e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07223e-01\tAbsError: 1.60452e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.07953e-02\tAbsError: 1.82076e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.40630e-02\tAbsError: 9.16559e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.80279e-06\tAbsError: 2.01683e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.90027e+03\tAbsError: 5.37118e+18\n", + " Region: \"zone_1\"\tRelError: 4.52123e+02\tAbsError: 8.96717e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.52123e+02\tAbsError: 8.96713e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20641e-09\tAbsError: 4.19390e-07\n", + " Region: \"zone_3\"\tRelError: 1.44814e+03\tAbsError: 5.37118e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05875e+03\tAbsError: 2.27129e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.72871e+01\tAbsError: 3.09989e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 3.02108e+02\tAbsError: 8.96718e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20691e-09\tAbsError: 4.19574e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:19\u001b[0m.\u001b[1;36m874\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:19\u001b[0m.\u001b[1;36m903\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.2 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:19\u001b[0m.\u001b[1;36m941\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.78353e+00\tAbsError: 3.20634e+14\n", + " Region: \"zone_1\"\tRelError: 2.98373e-01\tAbsError: 8.95563e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.98208e-01\tAbsError: 3.20823e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65352e-04\tAbsError: 5.74740e-02\n", + " Region: \"zone_3\"\tRelError: 1.48516e+00\tAbsError: 3.20634e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.55334e-01\tAbsError: 2.00005e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.49888e-01\tAbsError: 1.20629e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.97682e-02\tAbsError: 3.20828e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65352e-04\tAbsError: 5.74740e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.00258e+03\tAbsError: 8.62732e+18\n", + " Region: \"zone_1\"\tRelError: 2.86622e+02\tAbsError: 9.11935e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.86622e+02\tAbsError: 9.11935e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61299e-11\tAbsError: 5.61160e-09\n", + " Region: \"zone_3\"\tRelError: 7.15961e+02\tAbsError: 8.62732e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.81333e+02\tAbsError: 3.52151e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.81580e+02\tAbsError: 5.10581e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53049e+02\tAbsError: 9.11941e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61365e-11\tAbsError: 5.61401e-09\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.29649e+01\tAbsError: 8.28032e+15\n", + " Region: \"zone_1\"\tRelError: 1.13261e+01\tAbsError: 4.09567e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13261e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.18749e-09\tAbsError: 2.49623e-06\n", + " Region: \"zone_3\"\tRelError: 1.63880e+00\tAbsError: 8.28032e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69633e-01\tAbsError: 4.77284e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.50748e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.95556e-02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.18841e-09\tAbsError: 2.49658e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.59960e-02\tAbsError: 3.73217e+12\n", + " Region: \"zone_1\"\tRelError: 7.31305e-03\tAbsError: 2.21475e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.30674e-03\tAbsError: 2.57182e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", + " Region: \"zone_3\"\tRelError: 5.86829e-02\tAbsError: 3.73217e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.62142e-02\tAbsError: 2.07187e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.09163e-04\tAbsError: 1.66031e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65329e-03\tAbsError: 2.69578e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.46925e+02\tAbsError: 4.60507e+18\n", + " Region: \"zone_1\"\tRelError: 9.01379e+01\tAbsError: 2.15512e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 9.01319e+01\tAbsError: 8.66949e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.98322e-03\tAbsError: 2.06842e+00\n", + " Region: \"zone_3\"\tRelError: 1.56787e+02\tAbsError: 4.60507e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.98090e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.08643e+01\tAbsError: 2.62417e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06917e+02\tAbsError: 8.66950e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.98604e-03\tAbsError: 2.06939e+00\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.03427e+00\tAbsError: 4.51977e+13\n", + " Region: \"zone_1\"\tRelError: 6.36974e-02\tAbsError: 3.23235e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.36789e-02\tAbsError: 2.58918e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85036e-05\tAbsError: 6.43172e-03\n", + " Region: \"zone_3\"\tRelError: 9.70572e-01\tAbsError: 4.51977e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.66780e-01\tAbsError: 3.22363e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.39601e-01\tAbsError: 1.29614e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.41727e-02\tAbsError: 2.58956e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85036e-05\tAbsError: 6.43172e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.48404e+03\tAbsError: 7.29201e+18\n", + " Region: \"zone_1\"\tRelError: 6.70547e+02\tAbsError: 2.86307e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 6.70539e+02\tAbsError: 8.83464e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.90934e-03\tAbsError: 2.77472e+00\n", + " Region: \"zone_3\"\tRelError: 8.13489e+02\tAbsError: 7.29201e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.04808e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.08013e+02\tAbsError: 4.24393e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 9.64677e+01\tAbsError: 8.83466e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.92313e-03\tAbsError: 2.77963e+00\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.56865e+00\tAbsError: 2.86625e+14\n", + " Region: \"zone_1\"\tRelError: 1.21045e-01\tAbsError: 8.55195e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20888e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", + " Region: \"zone_3\"\tRelError: 1.44761e+00\tAbsError: 2.86625e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38556e-01\tAbsError: 1.75436e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32332e-01\tAbsError: 1.11189e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.65613e-02\tAbsError: 3.07640e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.14034e-04\tAbsError: 1.03618e+12\n", + " Region: \"zone_1\"\tRelError: 1.43803e-04\tAbsError: 7.79056e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43584e-04\tAbsError: 1.54074e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19396e-07\tAbsError: 7.63649e-05\n", + " Region: \"zone_3\"\tRelError: 6.70231e-04\tAbsError: 1.03618e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.21829e-04\tAbsError: 2.70793e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.05108e-04\tAbsError: 7.65387e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.43074e-04\tAbsError: 1.54210e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19498e-07\tAbsError: 7.64015e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.62556e+02\tAbsError: 6.63850e+17\n", + " Region: \"zone_1\"\tRelError: 1.41773e+01\tAbsError: 3.02150e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41689e+01\tAbsError: 8.34500e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.43572e-03\tAbsError: 2.93805e+00\n", + " Region: \"zone_3\"\tRelError: 1.48378e+02\tAbsError: 6.63850e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.28198e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.21851e+02\tAbsError: 3.35652e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75188e+01\tAbsError: 8.34501e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.43572e-03\tAbsError: 2.93805e+00\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.28178e-01\tAbsError: 8.08491e+12\n", + " Region: \"zone_1\"\tRelError: 2.27182e-02\tAbsError: 1.36097e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27102e-02\tAbsError: 1.08347e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.98363e-06\tAbsError: 2.77500e-03\n", + " Region: \"zone_3\"\tRelError: 3.05460e-01\tAbsError: 8.08491e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21319e-01\tAbsError: 3.95150e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.12011e-02\tAbsError: 4.13341e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29316e-02\tAbsError: 1.08348e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.98817e-06\tAbsError: 2.77667e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.14776e+02\tAbsError: 1.71822e+18\n", + " Region: \"zone_1\"\tRelError: 1.56981e+01\tAbsError: 2.79470e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56903e+01\tAbsError: 8.52528e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78337e-03\tAbsError: 2.70944e+00\n", + " Region: \"zone_3\"\tRelError: 9.90783e+01\tAbsError: 1.71822e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.15408e+01\tAbsError: 8.21769e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 8.96453e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 7.85297e+01\tAbsError: 8.52530e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.79850e-03\tAbsError: 2.71474e+00\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.63437e-01\tAbsError: 3.66677e+13\n", + " Region: \"zone_1\"\tRelError: 5.93231e-02\tAbsError: 3.16919e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.93064e-02\tAbsError: 2.58707e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", + " Region: \"zone_3\"\tRelError: 9.04114e-01\tAbsError: 3.66677e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40101e-01\tAbsError: 2.63702e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.04471e-01\tAbsError: 1.02975e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95256e-02\tAbsError: 2.58992e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.61312e-05\tAbsError: 5.74046e+10\n", + " Region: \"zone_1\"\tRelError: 1.61849e-05\tAbsError: 6.45313e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59991e-05\tAbsError: 3.79845e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85726e-07\tAbsError: 6.44934e-05\n", + " Region: \"zone_3\"\tRelError: 5.99464e-05\tAbsError: 5.74046e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.77906e-06\tAbsError: 4.68633e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.20461e-06\tAbsError: 1.05413e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.27769e-05\tAbsError: 3.95532e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85828e-07\tAbsError: 6.45281e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.92816e+01\tAbsError: 2.74112e+17\n", + " Region: \"zone_1\"\tRelError: 3.85174e+01\tAbsError: 8.02176e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85153e+01\tAbsError: 7.98884e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.07534e-03\tAbsError: 7.22287e-01\n", + " Region: \"zone_3\"\tRelError: 1.07642e+01\tAbsError: 2.74112e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.66332e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.94250e-01\tAbsError: 1.07780e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 7.67905e-01\tAbsError: 7.98885e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.07726e-03\tAbsError: 7.22960e-01\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:24\u001b[0m.\u001b[1;36m137\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.5\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.10167e-02\tAbsError: 2.38578e+12\n", + " Region: \"zone_1\"\tRelError: 1.03176e-03\tAbsError: 1.89283e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02633e-03\tAbsError: 7.31748e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.42975e-06\tAbsError: 1.88552e-03\n", + " Region: \"zone_3\"\tRelError: 6.99850e-02\tAbsError: 2.38578e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.73342e-02\tAbsError: 1.66489e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.74130e-04\tAbsError: 7.20890e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27127e-03\tAbsError: 7.80004e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.42975e-06\tAbsError: 1.88552e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.23062e+03\tAbsError: 2.01573e+18\n", + " Region: \"zone_1\"\tRelError: 5.83577e+01\tAbsError: 5.52378e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.83563e+01\tAbsError: 8.18705e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35598e-03\tAbsError: 4.70508e-01\n", + " Region: \"zone_3\"\tRelError: 4.17227e+03\tAbsError: 2.01573e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.67371e+01\tAbsError: 1.02135e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.06151e+03\tAbsError: 9.94376e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40204e+01\tAbsError: 8.18706e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35728e-03\tAbsError: 4.70981e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.93334e-01\tAbsError: 6.56738e+12\n", + " Region: \"zone_1\"\tRelError: 1.86981e-02\tAbsError: 1.19586e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86900e-02\tAbsError: 9.16562e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03535e-06\tAbsError: 2.79297e-03\n", + " Region: \"zone_3\"\tRelError: 2.74636e-01\tAbsError: 6.56738e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11907e-01\tAbsError: 3.29549e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.38500e-02\tAbsError: 3.27189e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88710e-02\tAbsError: 9.16566e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03753e-06\tAbsError: 2.79381e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.41920e+01\tAbsError: 8.92286e+16\n", + " Region: \"zone_1\"\tRelError: 1.34180e+01\tAbsError: 2.47057e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34176e+01\tAbsError: 7.59482e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.93256e-04\tAbsError: 1.71108e-01\n", + " Region: \"zone_3\"\tRelError: 8.07740e+01\tAbsError: 8.92286e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.11407e+01\tAbsError: 4.48730e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.88068e+01\tAbsError: 4.43556e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 8.26014e-01\tAbsError: 7.59483e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.93256e-04\tAbsError: 1.71108e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.61567e-04\tAbsError: 9.20598e+11\n", + " Region: \"zone_1\"\tRelError: 1.84125e-04\tAbsError: 1.22381e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83778e-04\tAbsError: 1.37878e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47625e-07\tAbsError: 1.21002e-04\n", + " Region: \"zone_3\"\tRelError: 4.77442e-04\tAbsError: 9.20598e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07278e-04\tAbsError: 2.31855e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.91369e-05\tAbsError: 6.88743e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.70679e-04\tAbsError: 1.38492e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47770e-07\tAbsError: 1.21055e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.60199e+01\tAbsError: 8.22903e+15\n", + " Region: \"zone_1\"\tRelError: 3.43433e+01\tAbsError: 4.09555e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.43433e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.48443e-09\tAbsError: 1.21289e-06\n", + " Region: \"zone_3\"\tRelError: 1.67662e+00\tAbsError: 8.22903e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.78919e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.43984e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37338e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.48691e-09\tAbsError: 1.21378e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.70269e+02\tAbsError: 3.15415e+17\n", + " Region: \"zone_1\"\tRelError: 3.97348e+01\tAbsError: 1.66973e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.97302e+01\tAbsError: 7.81451e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.56613e-03\tAbsError: 1.59158e+00\n", + " Region: \"zone_3\"\tRelError: 2.30534e+02\tAbsError: 3.15415e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.16146e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.20185e+02\tAbsError: 1.99269e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34469e+00\tAbsError: 7.81452e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.56613e-03\tAbsError: 1.59158e+00\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.00158e-02\tAbsError: 2.47729e+12\n", + " Region: \"zone_1\"\tRelError: 6.29744e-04\tAbsError: 1.66755e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.24968e-04\tAbsError: 8.94858e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", + " Region: \"zone_3\"\tRelError: 5.93860e-02\tAbsError: 2.47729e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.68115e-02\tAbsError: 1.70064e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.91678e-04\tAbsError: 7.76647e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27809e-03\tAbsError: 9.43816e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.61868e+04\tAbsError: 2.45821e+16\n", + " Region: \"zone_1\"\tRelError: 5.96186e+01\tAbsError: 2.86664e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.96180e+01\tAbsError: 7.15490e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.18929e-04\tAbsError: 2.15115e-01\n", + " Region: \"zone_3\"\tRelError: 3.61271e+04\tAbsError: 2.45821e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.91378e+01\tAbsError: 1.52565e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.60678e+04\tAbsError: 9.32566e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90477e-01\tAbsError: 7.15491e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.23341e-04\tAbsError: 2.16649e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.40659e-04\tAbsError: 1.03289e+11\n", + " Region: \"zone_1\"\tRelError: 2.12574e-05\tAbsError: 5.16744e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.11088e-05\tAbsError: 6.24908e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48618e-07\tAbsError: 5.16119e-05\n", + " Region: \"zone_3\"\tRelError: 1.19402e-04\tAbsError: 1.03289e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.27254e-06\tAbsError: 7.22229e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.20253e-06\tAbsError: 3.10661e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04778e-04\tAbsError: 6.53626e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48618e-07\tAbsError: 5.16119e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.73485e+00\tAbsError: 1.08973e+15\n", + " Region: \"zone_1\"\tRelError: 2.25350e+00\tAbsError: 6.85700e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25339e+00\tAbsError: 3.07635e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", + " Region: \"zone_3\"\tRelError: 1.48136e+00\tAbsError: 1.08973e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41054e-01\tAbsError: 6.25022e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.24005e-01\tAbsError: 4.64711e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16189e-01\tAbsError: 3.07637e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.23073e+02\tAbsError: 2.54941e+16\n", + " Region: \"zone_1\"\tRelError: 4.95529e+00\tAbsError: 3.09553e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.95461e+00\tAbsError: 7.40071e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.76242e-04\tAbsError: 2.35546e-01\n", + " Region: \"zone_3\"\tRelError: 1.18117e+02\tAbsError: 2.54941e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04760e+01\tAbsError: 1.58057e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.70604e+01\tAbsError: 9.68846e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.80403e-01\tAbsError: 7.40073e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.78155e-04\tAbsError: 2.36212e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.31240e-04\tAbsError: 7.97937e+11\n", + " Region: \"zone_1\"\tRelError: 7.54533e-05\tAbsError: 1.27890e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.50894e-05\tAbsError: 1.20855e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.63943e-07\tAbsError: 1.26681e-04\n", + " Region: \"zone_3\"\tRelError: 3.55787e-04\tAbsError: 7.97937e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.38045e-05\tAbsError: 1.92064e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.48742e-05\tAbsError: 6.05872e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76744e-04\tAbsError: 1.21338e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.64089e-07\tAbsError: 1.26735e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 9.92388e+02\tAbsError: 7.05220e+15\n", + " Region: \"zone_1\"\tRelError: 1.96893e+00\tAbsError: 2.66104e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96836e+00\tAbsError: 6.65853e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.74410e-04\tAbsError: 1.99519e-01\n", + " Region: \"zone_3\"\tRelError: 9.90419e+02\tAbsError: 7.05220e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46081e+01\tAbsError: 3.87813e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.75648e+02\tAbsError: 3.17407e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62802e-01\tAbsError: 6.65854e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.74742e-04\tAbsError: 1.99639e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.99773e-05\tAbsError: 4.61446e+10\n", + " Region: \"zone_1\"\tRelError: 5.47446e-06\tAbsError: 4.95784e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.46034e-06\tAbsError: 4.32646e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41187e-08\tAbsError: 4.91458e-06\n", + " Region: \"zone_3\"\tRelError: 3.45029e-05\tAbsError: 4.61446e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.64729e-06\tAbsError: 1.69007e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.61509e-06\tAbsError: 2.92439e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.72264e-05\tAbsError: 4.33338e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41253e-08\tAbsError: 4.91694e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:28\u001b[0m.\u001b[1;36m636\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:28\u001b[0m.\u001b[1;36m636\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.41666666666666674\u001b[0m \n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.38677e+00\tAbsError: 6.38966e+14\n", + " Region: \"zone_1\"\tRelError: 4.51470e-01\tAbsError: 3.37904e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.51448e-01\tAbsError: 2.58448e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", + " Region: \"zone_3\"\tRelError: 9.35299e-01\tAbsError: 6.38966e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42607e-01\tAbsError: 3.02038e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.95795e-01\tAbsError: 3.36928e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.68743e-02\tAbsError: 2.57679e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.67495e+02\tAbsError: 1.22523e+16\n", + " Region: \"zone_1\"\tRelError: 7.25799e+00\tAbsError: 1.33943e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 7.25433e+00\tAbsError: 6.93658e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.65903e-03\tAbsError: 1.27006e+00\n", + " Region: \"zone_3\"\tRelError: 6.60237e+02\tAbsError: 1.22523e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.16281e+01\tAbsError: 8.36742e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.28467e+02\tAbsError: 3.88490e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37665e-01\tAbsError: 6.93660e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.66331e-03\tAbsError: 1.27164e+00\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.53826e-04\tAbsError: 1.09912e+11\n", + " Region: \"zone_1\"\tRelError: 2.29821e-05\tAbsError: 4.27473e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.28592e-05\tAbsError: 6.65170e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", + " Region: \"zone_3\"\tRelError: 1.30844e-04\tAbsError: 1.09912e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.01681e-06\tAbsError: 7.52234e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94349e-06\tAbsError: 3.46881e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14760e-04\tAbsError: 6.98367e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.07565e+03\tAbsError: 2.97831e+15\n", + " Region: \"zone_1\"\tRelError: 7.88747e-01\tAbsError: 7.97100e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.88692e-01\tAbsError: 6.09159e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.42014e-05\tAbsError: 1.87941e-02\n", + " Region: \"zone_3\"\tRelError: 2.07486e+03\tAbsError: 2.97831e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.62931e+03\tAbsError: 1.45076e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.45419e+02\tAbsError: 1.52755e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31609e-01\tAbsError: 6.09160e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.42014e-05\tAbsError: 1.87941e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.41554e-01\tAbsError: 2.20715e+14\n", + " Region: \"zone_1\"\tRelError: 2.89595e-02\tAbsError: 1.67352e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.89377e-02\tAbsError: 9.16565e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18085e-05\tAbsError: 7.56954e-03\n", + " Region: \"zone_3\"\tRelError: 3.12594e-01\tAbsError: 2.20715e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94155e-01\tAbsError: 1.01533e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.87246e-02\tAbsError: 1.19182e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96932e-02\tAbsError: 9.16570e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18152e-05\tAbsError: 7.57200e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.78015e+00\tAbsError: 8.71104e+15\n", + " Region: \"zone_1\"\tRelError: 5.10762e+00\tAbsError: 4.20750e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.10762e+00\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.88726e-09\tAbsError: 2.39171e-06\n", + " Region: \"zone_3\"\tRelError: 1.67253e+00\tAbsError: 8.71104e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.79105e-01\tAbsError: 5.13893e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.79081e-01\tAbsError: 3.57211e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14344e-01\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.88765e-09\tAbsError: 2.39188e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.07056e+03\tAbsError: 2.63900e+15\n", + " Region: \"zone_1\"\tRelError: 5.09026e-01\tAbsError: 3.20040e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.08290e-01\tAbsError: 6.41007e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.36815e-04\tAbsError: 2.55940e-01\n", + " Region: \"zone_3\"\tRelError: 6.07005e+03\tAbsError: 2.63900e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.91925e+02\tAbsError: 1.14350e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.27722e+03\tAbsError: 1.49550e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.02237e-01\tAbsError: 6.41009e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.36815e-04\tAbsError: 2.55940e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.84860e-05\tAbsError: 3.70987e+10\n", + " Region: \"zone_1\"\tRelError: 3.74711e-06\tAbsError: 5.87951e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.73032e-06\tAbsError: 3.58594e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67880e-08\tAbsError: 5.84365e-06\n", + " Region: \"zone_3\"\tRelError: 2.47389e-05\tAbsError: 3.70987e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96764e-06\tAbsError: 1.24118e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.94133e-06\tAbsError: 2.46869e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88131e-05\tAbsError: 3.59119e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67950e-08\tAbsError: 5.84625e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:30\u001b[0m.\u001b[1;36m918\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.4\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.49636e+02\tAbsError: 4.51750e+14\n", + " Region: \"zone_1\"\tRelError: 1.00276e-01\tAbsError: 1.10034e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00116e-01\tAbsError: 5.43521e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60564e-04\tAbsError: 5.56816e-02\n", + " Region: \"zone_3\"\tRelError: 4.49536e+02\tAbsError: 4.51750e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.26716e+01\tAbsError: 5.47094e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.06762e+02\tAbsError: 3.97041e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02347e-01\tAbsError: 5.43523e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60564e-04\tAbsError: 5.56816e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.19808e-02\tAbsError: 3.06344e+13\n", + " Region: \"zone_1\"\tRelError: 2.04251e-02\tAbsError: 4.10278e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04136e-02\tAbsError: 1.00349e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", + " Region: \"zone_3\"\tRelError: 6.15557e-02\tAbsError: 3.06344e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38926e-02\tAbsError: 1.71938e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.73234e-03\tAbsError: 1.34406e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.91920e-03\tAbsError: 1.01109e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.61144e+00\tAbsError: 4.09484e+14\n", + " Region: \"zone_1\"\tRelError: 1.09378e-01\tAbsError: 8.14870e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09236e-01\tAbsError: 3.20823e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42156e-04\tAbsError: 4.94047e-02\n", + " Region: \"zone_3\"\tRelError: 1.50206e+00\tAbsError: 4.09484e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.56231e-01\tAbsError: 2.78101e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.48983e-01\tAbsError: 1.31383e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.67091e-02\tAbsError: 3.20827e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42156e-04\tAbsError: 4.94047e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.85182e+03\tAbsError: 1.09273e+15\n", + " Region: \"zone_1\"\tRelError: 2.54667e-01\tAbsError: 9.80021e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54552e-01\tAbsError: 5.80508e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14819e-04\tAbsError: 3.99513e-02\n", + " Region: \"zone_3\"\tRelError: 2.85157e+03\tAbsError: 1.09273e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.67991e+03\tAbsError: 5.50437e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.71484e+02\tAbsError: 5.42289e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74947e-01\tAbsError: 5.80510e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14878e-04\tAbsError: 3.99728e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.37289e+02\tAbsError: 6.00976e+14\n", + " Region: \"zone_1\"\tRelError: 7.57511e-02\tAbsError: 9.88774e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.56005e-02\tAbsError: 4.66459e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50592e-04\tAbsError: 5.22315e-02\n", + " Region: \"zone_3\"\tRelError: 4.37214e+02\tAbsError: 6.00976e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.45336e+02\tAbsError: 8.47462e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.17993e+01\tAbsError: 5.16230e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.77179e-02\tAbsError: 4.66461e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50762e-04\tAbsError: 5.22909e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.87618e+01\tAbsError: 8.25603e+15\n", + " Region: \"zone_1\"\tRelError: 2.71120e+01\tAbsError: 4.09561e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.71120e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.29384e-09\tAbsError: 1.83846e-06\n", + " Region: \"zone_3\"\tRelError: 1.64979e+00\tAbsError: 8.25603e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69658e-01\tAbsError: 4.86497e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69634e-01\tAbsError: 3.39106e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10500e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.29480e-09\tAbsError: 1.83875e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.53920e-03\tAbsError: 1.84314e+12\n", + " Region: \"zone_1\"\tRelError: 2.29752e-04\tAbsError: 2.41443e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29064e-04\tAbsError: 2.20702e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", + " Region: \"zone_3\"\tRelError: 1.30944e-03\tAbsError: 1.84314e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11485e-04\tAbsError: 5.81096e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.63190e-04\tAbsError: 1.26205e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.34079e-04\tAbsError: 2.25011e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.08321e+00\tAbsError: 1.41299e+14\n", + " Region: \"zone_1\"\tRelError: 8.35316e-02\tAbsError: 3.33734e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.35101e-02\tAbsError: 2.58986e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.15071e-05\tAbsError: 7.47472e-03\n", + " Region: \"zone_3\"\tRelError: 9.99677e-01\tAbsError: 1.41299e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.67960e-01\tAbsError: 8.48978e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.47194e-01\tAbsError: 5.64012e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.45021e-02\tAbsError: 2.58966e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.15071e-05\tAbsError: 7.47472e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.62477e+02\tAbsError: 5.89812e+14\n", + " Region: \"zone_1\"\tRelError: 7.13628e-02\tAbsError: 1.06744e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.12020e-02\tAbsError: 5.10011e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60747e-04\tAbsError: 5.57429e-02\n", + " Region: \"zone_3\"\tRelError: 4.62405e+02\tAbsError: 5.89812e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.02675e+02\tAbsError: 1.03408e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.59659e+02\tAbsError: 4.86405e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.13133e-02\tAbsError: 5.10013e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60928e-04\tAbsError: 5.58062e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 4.32712e+03\tAbsError: 5.18829e+14\n", + " Region: \"zone_1\"\tRelError: 5.29324e-02\tAbsError: 1.07188e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.27316e-02\tAbsError: 3.75038e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00872e-04\tAbsError: 6.96844e-02\n", + " Region: \"zone_3\"\tRelError: 4.32706e+03\tAbsError: 5.18829e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.69765e+03\tAbsError: 1.02592e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.29359e+02\tAbsError: 5.08570e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.53905e-02\tAbsError: 3.75040e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.01052e-04\tAbsError: 6.97476e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.69855e+00\tAbsError: 3.40458e+14\n", + " Region: \"zone_1\"\tRelError: 2.34470e-01\tAbsError: 7.85796e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34332e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", + " Region: \"zone_3\"\tRelError: 1.46408e+00\tAbsError: 3.40458e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39247e-01\tAbsError: 2.37038e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.31799e-01\tAbsError: 1.03420e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.29010e-02\tAbsError: 3.07639e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.51045e-04\tAbsError: 2.02519e+11\n", + " Region: \"zone_1\"\tRelError: 4.54891e-05\tAbsError: 1.12868e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.51644e-05\tAbsError: 1.25671e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.24705e-07\tAbsError: 1.12743e-04\n", + " Region: \"zone_3\"\tRelError: 2.05556e-04\tAbsError: 2.02519e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12163e-05\tAbsError: 1.36505e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10724e-05\tAbsError: 6.60139e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82943e-04\tAbsError: 1.30848e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.24777e-07\tAbsError: 1.12769e-04\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.61508e-01\tAbsError: 5.27550e+13\n", + " Region: \"zone_1\"\tRelError: 2.94145e-02\tAbsError: 1.33202e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.94073e-02\tAbsError: 1.08347e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.15182e-06\tAbsError: 2.48551e-03\n", + " Region: \"zone_3\"\tRelError: 3.32093e-01\tAbsError: 5.27550e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.19610e-01\tAbsError: 2.36056e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.27630e-02\tAbsError: 2.91494e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97131e-02\tAbsError: 1.08347e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.15458e-06\tAbsError: 2.48651e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.09883e+00\tAbsError: 5.25102e+14\n", + " Region: \"zone_1\"\tRelError: 5.64206e-02\tAbsError: 1.09629e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.62276e-02\tAbsError: 4.26776e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93033e-04\tAbsError: 6.69518e-02\n", + " Region: \"zone_3\"\tRelError: 2.04241e+00\tAbsError: 5.25102e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99889e-01\tAbsError: 4.07884e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.86014e-01\tAbsError: 4.84314e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.63142e-02\tAbsError: 4.26779e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93295e-04\tAbsError: 6.70436e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.08201e+00\tAbsError: 5.20386e+14\n", + " Region: \"zone_1\"\tRelError: 4.27554e-02\tAbsError: 1.19970e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.24867e-02\tAbsError: 2.67288e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.68705e-04\tAbsError: 9.32414e-02\n", + " Region: \"zone_3\"\tRelError: 2.03925e+00\tAbsError: 5.20386e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99075e-01\tAbsError: 3.26587e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.95085e-01\tAbsError: 4.87727e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.48223e-02\tAbsError: 2.67290e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.68907e-04\tAbsError: 9.33127e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.10009e+00\tAbsError: 9.49766e+13\n", + " Region: \"zone_1\"\tRelError: 1.69910e-01\tAbsError: 3.26443e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69891e-01\tAbsError: 2.58991e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", + " Region: \"zone_3\"\tRelError: 9.30185e-01\tAbsError: 9.49766e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40985e-01\tAbsError: 5.67002e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.12174e-01\tAbsError: 3.82763e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.70066e-02\tAbsError: 2.58994e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.09882e-04\tAbsError: 1.05387e+11\n", + " Region: \"zone_1\"\tRelError: 1.91896e-05\tAbsError: 8.11152e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91665e-05\tAbsError: 7.26801e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.30974e-08\tAbsError: 8.03884e-06\n", + " Region: \"zone_3\"\tRelError: 9.06925e-05\tAbsError: 1.05387e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41210e-06\tAbsError: 4.74044e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.36012e-06\tAbsError: 5.79823e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.78972e-05\tAbsError: 7.44246e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.31071e-08\tAbsError: 8.04242e-06\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.05544e+04\tAbsError: 5.11096e+14\n", + " Region: \"zone_1\"\tRelError: 4.16734e-02\tAbsError: 1.22443e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.14150e-02\tAbsError: 3.27969e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58397e-04\tAbsError: 8.96461e-02\n", + " Region: \"zone_3\"\tRelError: 2.05544e+04\tAbsError: 5.11096e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05540e+04\tAbsError: 2.67910e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.81524e-01\tAbsError: 4.84305e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.14810e-02\tAbsError: 3.27973e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58690e-04\tAbsError: 8.97486e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.43219e-02\tAbsError: 8.92461e+12\n", + " Region: \"zone_1\"\tRelError: 3.17549e-03\tAbsError: 1.97067e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.16999e-03\tAbsError: 6.21400e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.49648e-06\tAbsError: 1.90853e-03\n", + " Region: \"zone_3\"\tRelError: 7.11465e-02\tAbsError: 8.92461e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.59529e-02\tAbsError: 4.79040e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.16358e-03\tAbsError: 4.13421e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02452e-03\tAbsError: 6.75565e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.49648e-06\tAbsError: 1.90853e-03\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.41006e+03\tAbsError: 3.66092e+14\n", + " Region: \"zone_1\"\tRelError: 2.46352e-02\tAbsError: 1.36306e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.43003e-02\tAbsError: 2.00640e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34877e-04\tAbsError: 1.16242e-01\n", + " Region: \"zone_3\"\tRelError: 1.41003e+03\tAbsError: 3.66092e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.40999e+03\tAbsError: 1.95915e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.08043e-02\tAbsError: 3.46501e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.43534e-02\tAbsError: 2.00645e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.35242e-04\tAbsError: 1.16370e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.56252e-01\tAbsError: 3.42527e+13\n", + " Region: \"zone_1\"\tRelError: 6.41646e-02\tAbsError: 1.11813e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.41588e-02\tAbsError: 9.16555e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.79958e-06\tAbsError: 2.01571e-03\n", + " Region: \"zone_3\"\tRelError: 2.92088e-01\tAbsError: 3.42527e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07223e-01\tAbsError: 1.60452e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.07953e-02\tAbsError: 1.82076e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.40630e-02\tAbsError: 9.16559e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.80279e-06\tAbsError: 2.01683e-03\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.07439e+00\tAbsError: 4.50827e+14\n", + " Region: \"zone_1\"\tRelError: 3.23408e-02\tAbsError: 1.43038e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.20031e-02\tAbsError: 2.58285e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.37733e-04\tAbsError: 1.17210e-01\n", + " Region: \"zone_3\"\tRelError: 1.04205e+00\tAbsError: 4.50827e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99839e-01\tAbsError: 2.39300e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03729e-02\tAbsError: 4.26898e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.14983e-02\tAbsError: 2.48472e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.38088e-04\tAbsError: 1.17334e-01\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 7.21635e-06\tAbsError: 6.66070e+09\n", + " Region: \"zone_1\"\tRelError: 1.30608e-06\tAbsError: 5.92265e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28905e-06\tAbsError: 4.03393e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70320e-08\tAbsError: 5.91862e-06\n", + " Region: \"zone_3\"\tRelError: 5.91027e-06\tAbsError: 6.66070e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61854e-07\tAbsError: 4.98332e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.27195e-07\tAbsError: 1.67738e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.20418e-06\tAbsError: 4.19235e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70346e-08\tAbsError: 5.91965e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:37\u001b[0m.\u001b[1;36m149\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.6\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.04005e+00\tAbsError: 3.08997e+14\n", + " Region: \"zone_1\"\tRelError: 1.65306e-02\tAbsError: 2.11910e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59217e-02\tAbsError: 4.23946e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.08889e-04\tAbsError: 2.11486e-01\n", + " Region: \"zone_3\"\tRelError: 1.02352e+00\tAbsError: 3.08997e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.97860e-01\tAbsError: 2.83986e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.30303e-02\tAbsError: 2.80599e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02464e-03\tAbsError: 4.31042e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.09325e-04\tAbsError: 2.11636e-01\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.70071e-04\tAbsError: 8.96392e+11\n", + " Region: \"zone_1\"\tRelError: 6.25886e-05\tAbsError: 1.24071e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.22353e-05\tAbsError: 1.27887e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.53296e-07\tAbsError: 1.22792e-04\n", + " Region: \"zone_3\"\tRelError: 5.07482e-04\tAbsError: 8.96392e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.41319e-04\tAbsError: 2.22546e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.52685e-05\tAbsError: 6.73846e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80541e-04\tAbsError: 1.28523e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.53296e-07\tAbsError: 1.22792e-04\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 5.68541e-01\tAbsError: 7.02334e+14\n", + " Region: \"zone_1\"\tRelError: 1.54198e-02\tAbsError: 2.11319e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53930e-02\tAbsError: 1.18259e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.68150e-05\tAbsError: 9.30596e-03\n", + " Region: \"zone_3\"\tRelError: 5.53122e-01\tAbsError: 7.02334e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.05728e-01\tAbsError: 1.92390e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.12305e-03\tAbsError: 6.83095e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.82429e-02\tAbsError: 1.18264e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.73828e-05\tAbsError: 9.50321e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.59960e-02\tAbsError: 3.73217e+12\n", + " Region: \"zone_1\"\tRelError: 7.31305e-03\tAbsError: 2.21475e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.30674e-03\tAbsError: 2.57182e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", + " Region: \"zone_3\"\tRelError: 5.86829e-02\tAbsError: 3.73217e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.62142e-02\tAbsError: 2.07187e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.09163e-04\tAbsError: 1.66031e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65329e-03\tAbsError: 2.69578e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.21559e-01\tAbsError: 1.10756e+14\n", + " Region: \"zone_1\"\tRelError: 2.72340e-02\tAbsError: 1.44568e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.72302e-02\tAbsError: 1.38679e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.75405e-06\tAbsError: 1.30700e-03\n", + " Region: \"zone_3\"\tRelError: 9.43255e-02\tAbsError: 1.10756e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46517e-02\tAbsError: 3.54716e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.47228e-02\tAbsError: 7.52840e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.49472e-02\tAbsError: 1.39930e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.75631e-06\tAbsError: 1.30781e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.39312e-04\tAbsError: 1.02416e+11\n", + " Region: \"zone_1\"\tRelError: 2.32943e-05\tAbsError: 5.15110e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31462e-05\tAbsError: 6.75166e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48145e-07\tAbsError: 5.14435e-05\n", + " Region: \"zone_3\"\tRelError: 1.16018e-04\tAbsError: 1.02416e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.61621e-06\tAbsError: 7.10207e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.54305e-06\tAbsError: 3.13952e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02711e-04\tAbsError: 7.04991e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48150e-07\tAbsError: 5.14440e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.57743e+01\tAbsError: 8.48667e+15\n", + " Region: \"zone_1\"\tRelError: 1.40602e+01\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40602e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57556e-10\tAbsError: 1.24451e-07\n", + " Region: \"zone_3\"\tRelError: 1.71408e+00\tAbsError: 8.48667e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69582e-01\tAbsError: 4.51146e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69441e-01\tAbsError: 3.97521e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75053e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57765e-10\tAbsError: 1.24526e-07\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 2.35931e-01\tAbsError: 5.99701e+14\n", + " Region: \"zone_1\"\tRelError: 3.40560e-02\tAbsError: 2.88091e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.32274e-02\tAbsError: 2.88427e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.28612e-04\tAbsError: 2.87802e-01\n", + " Region: \"zone_3\"\tRelError: 2.01875e-01\tAbsError: 5.99701e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.30353e-01\tAbsError: 1.08748e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09805e-02\tAbsError: 5.88826e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.97122e-02\tAbsError: 2.98244e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.28690e-04\tAbsError: 2.87826e-01\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 7.61787e-03\tAbsError: 9.86476e+11\n", + " Region: \"zone_1\"\tRelError: 2.17871e-03\tAbsError: 7.09517e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.15829e-03\tAbsError: 1.18681e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.04238e-05\tAbsError: 7.09399e-03\n", + " Region: \"zone_3\"\tRelError: 5.43916e-03\tAbsError: 9.86476e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.18505e-04\tAbsError: 6.62872e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.39063e-04\tAbsError: 3.23604e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.46117e-03\tAbsError: 1.21591e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.04238e-05\tAbsError: 7.09399e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.14034e-04\tAbsError: 1.03618e+12\n", + " Region: \"zone_1\"\tRelError: 1.43803e-04\tAbsError: 7.79056e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43584e-04\tAbsError: 1.54074e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19396e-07\tAbsError: 7.63649e-05\n", + " Region: \"zone_3\"\tRelError: 6.70231e-04\tAbsError: 1.03618e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.21829e-04\tAbsError: 2.70793e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.05108e-04\tAbsError: 7.65387e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.43074e-04\tAbsError: 1.54210e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19498e-07\tAbsError: 7.64015e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.04978e-05\tAbsError: 4.60868e+10\n", + " Region: \"zone_1\"\tRelError: 6.27408e-06\tAbsError: 4.91709e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.26006e-06\tAbsError: 3.99684e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40124e-08\tAbsError: 4.87713e-06\n", + " Region: \"zone_3\"\tRelError: 3.42237e-05\tAbsError: 4.60868e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.17357e-06\tAbsError: 1.73419e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.14611e-06\tAbsError: 2.87449e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78900e-05\tAbsError: 4.01687e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40185e-08\tAbsError: 4.87937e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.55570e+00\tAbsError: 5.16331e+15\n", + " Region: \"zone_1\"\tRelError: 3.06111e+00\tAbsError: 6.97364e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.06100e+00\tAbsError: 3.07634e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12162e-04\tAbsError: 3.89730e-02\n", + " Region: \"zone_3\"\tRelError: 1.49459e+00\tAbsError: 5.16331e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38938e-01\tAbsError: 2.46191e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.11412e-01\tAbsError: 2.70140e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44124e-01\tAbsError: 3.07634e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12162e-04\tAbsError: 3.89730e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:40\u001b[0m.\u001b[1;36m216\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:40\u001b[0m.\u001b[1;36m216\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5222222222222223\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 1.70543e-01\tAbsError: 1.53613e+14\n", + " Region: \"zone_1\"\tRelError: 3.87769e-02\tAbsError: 4.70916e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87639e-02\tAbsError: 1.90017e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29805e-05\tAbsError: 4.51914e-03\n", + " Region: \"zone_3\"\tRelError: 1.31767e-01\tAbsError: 1.53613e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.99046e-02\tAbsError: 4.95216e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.98996e-02\tAbsError: 1.04092e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.19493e-02\tAbsError: 1.91751e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29871e-05\tAbsError: 4.52153e-03\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 9.70203e-03\tAbsError: 6.93690e+12\n", + " Region: \"zone_1\"\tRelError: 2.55139e-03\tAbsError: 5.07427e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54994e-03\tAbsError: 5.36335e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44390e-06\tAbsError: 5.02063e-04\n", + " Region: \"zone_3\"\tRelError: 7.15064e-03\tAbsError: 6.93690e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.86533e-04\tAbsError: 3.22511e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.81873e-04\tAbsError: 3.71179e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.78079e-03\tAbsError: 5.41986e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44435e-06\tAbsError: 5.02223e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.61312e-05\tAbsError: 5.74046e+10\n", + " Region: \"zone_1\"\tRelError: 1.61849e-05\tAbsError: 6.45313e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59991e-05\tAbsError: 3.79845e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85726e-07\tAbsError: 6.44934e-05\n", + " Region: \"zone_3\"\tRelError: 5.99464e-05\tAbsError: 5.74046e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.77906e-06\tAbsError: 4.68633e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.20461e-06\tAbsError: 1.05413e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.27769e-05\tAbsError: 3.95532e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85828e-07\tAbsError: 6.45281e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:41\u001b[0m.\u001b[1;36m131\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.5\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.13964e+00\tAbsError: 3.47644e+15\n", + " Region: \"zone_1\"\tRelError: 1.85284e-01\tAbsError: 3.50197e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85258e-01\tAbsError: 2.58979e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.62526e-05\tAbsError: 9.12177e-03\n", + " Region: \"zone_3\"\tRelError: 9.54354e-01\tAbsError: 3.47644e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46208e-01\tAbsError: 1.62778e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.89583e-01\tAbsError: 1.84866e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18536e-01\tAbsError: 2.53855e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.62526e-05\tAbsError: 9.12177e-03\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 1.46078e-02\tAbsError: 3.77706e+12\n", + " Region: \"zone_1\"\tRelError: 4.27318e-03\tAbsError: 9.90979e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.24466e-03\tAbsError: 3.01565e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.85219e-05\tAbsError: 9.90677e-03\n", + " Region: \"zone_3\"\tRelError: 1.03346e-02\tAbsError: 3.77706e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16204e-04\tAbsError: 2.52925e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.13632e-04\tAbsError: 1.24782e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.97622e-03\tAbsError: 3.10988e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.85219e-05\tAbsError: 9.90677e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.50028e+01\tAbsError: 8.69204e+15\n", + " Region: \"zone_1\"\tRelError: 1.32965e+01\tAbsError: 4.20750e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32965e+01\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.88775e-09\tAbsError: 2.39373e-06\n", + " Region: \"zone_3\"\tRelError: 1.70633e+00\tAbsError: 8.69204e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.79110e-01\tAbsError: 5.01048e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.79048e-01\tAbsError: 3.68156e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48173e-01\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.88775e-09\tAbsError: 2.39373e-06\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 1.10960e-03\tAbsError: 4.73055e+11\n", + " Region: \"zone_1\"\tRelError: 3.19443e-04\tAbsError: 4.59195e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.18123e-04\tAbsError: 3.53097e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31966e-06\tAbsError: 4.58842e-04\n", + " Region: \"zone_3\"\tRelError: 7.90154e-04\tAbsError: 4.73055e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.87591e-05\tAbsError: 2.60324e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.85853e-05\tAbsError: 2.12731e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.91489e-04\tAbsError: 3.57389e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32008e-06\tAbsError: 4.59002e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.60199e+01\tAbsError: 8.22903e+15\n", + " Region: \"zone_1\"\tRelError: 3.43433e+01\tAbsError: 4.09555e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.43433e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.48443e-09\tAbsError: 1.21289e-06\n", + " Region: \"zone_3\"\tRelError: 1.67662e+00\tAbsError: 8.22903e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.78919e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.43984e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37338e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.48691e-09\tAbsError: 1.21378e-06\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 1.38450e-02\tAbsError: 9.74863e+12\n", + " Region: \"zone_1\"\tRelError: 3.65570e-03\tAbsError: 8.68864e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.65323e-03\tAbsError: 7.50160e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.47721e-06\tAbsError: 8.61362e-04\n", + " Region: \"zone_3\"\tRelError: 1.01893e-02\tAbsError: 9.74863e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.63103e-04\tAbsError: 4.56281e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.56704e-04\tAbsError: 5.18582e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.26705e-03\tAbsError: 7.58052e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.47776e-06\tAbsError: 8.61555e-04\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 8.24095e-01\tAbsError: 1.04537e+15\n", + " Region: \"zone_1\"\tRelError: 4.93544e-01\tAbsError: 2.65000e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.93494e-01\tAbsError: 9.16559e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.98913e-05\tAbsError: 1.73344e-02\n", + " Region: \"zone_3\"\tRelError: 3.30551e-01\tAbsError: 1.04537e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84640e-01\tAbsError: 5.55503e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10521e-01\tAbsError: 4.89866e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53403e-02\tAbsError: 9.16565e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.98913e-05\tAbsError: 1.73344e-02\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 7.28348e-04\tAbsError: 4.51092e+11\n", + " Region: \"zone_1\"\tRelError: 1.97998e-04\tAbsError: 6.10956e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97823e-04\tAbsError: 3.10291e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74814e-07\tAbsError: 6.07853e-05\n", + " Region: \"zone_3\"\tRelError: 5.30351e-04\tAbsError: 4.51092e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.34024e-05\tAbsError: 2.42281e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.30773e-05\tAbsError: 2.08811e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.43696e-04\tAbsError: 3.13762e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74855e-07\tAbsError: 6.07996e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.05847e+00\tAbsError: 1.57080e+15\n", + " Region: \"zone_1\"\tRelError: 5.40974e-01\tAbsError: 7.04816e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.40864e-01\tAbsError: 3.20822e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10500e-04\tAbsError: 3.83994e-02\n", + " Region: \"zone_3\"\tRelError: 1.51749e+00\tAbsError: 1.57080e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.58067e-01\tAbsError: 8.77233e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.38564e-01\tAbsError: 6.93563e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20752e-01\tAbsError: 3.20823e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10500e-04\tAbsError: 3.83994e-02\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 1.82717e-03\tAbsError: 8.17722e+11\n", + " Region: \"zone_1\"\tRelError: 5.23067e-04\tAbsError: 6.56535e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.21181e-04\tAbsError: 5.84430e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88656e-06\tAbsError: 6.55950e-04\n", + " Region: \"zone_3\"\tRelError: 1.30410e-03\tAbsError: 8.17722e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.24609e-05\tAbsError: 4.60486e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.20813e-05\tAbsError: 3.57236e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13767e-03\tAbsError: 5.91533e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88721e-06\tAbsError: 6.56204e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.73485e+00\tAbsError: 1.08973e+15\n", + " Region: \"zone_1\"\tRelError: 2.25350e+00\tAbsError: 6.85700e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25339e+00\tAbsError: 3.07635e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", + " Region: \"zone_3\"\tRelError: 1.48136e+00\tAbsError: 1.08973e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41054e-01\tAbsError: 6.25022e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.24005e-01\tAbsError: 4.64711e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16189e-01\tAbsError: 3.07637e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 1.19276e-04\tAbsError: 5.73966e+10\n", + " Region: \"zone_1\"\tRelError: 3.37665e-05\tAbsError: 3.26250e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.36728e-05\tAbsError: 3.96778e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.37128e-08\tAbsError: 3.25853e-05\n", + " Region: \"zone_3\"\tRelError: 8.55093e-05\tAbsError: 5.73966e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.73159e-06\tAbsError: 3.28659e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.70707e-06\tAbsError: 2.45307e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.39769e-05\tAbsError: 4.01507e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.37366e-08\tAbsError: 3.25937e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.23262e-02\tAbsError: 1.95138e+14\n", + " Region: \"zone_1\"\tRelError: 2.57438e-02\tAbsError: 3.23382e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.56511e-02\tAbsError: 1.67807e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.26701e-05\tAbsError: 3.21704e-02\n", + " Region: \"zone_3\"\tRelError: 6.65824e-02\tAbsError: 1.95138e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.49682e-02\tAbsError: 6.65802e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.06072e-03\tAbsError: 1.28558e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.46071e-03\tAbsError: 1.74923e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.26947e-05\tAbsError: 3.21777e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.13949e+00\tAbsError: 9.80441e+14\n", + " Region: \"zone_1\"\tRelError: 1.44938e-01\tAbsError: 3.48926e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44912e-01\tAbsError: 2.57892e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.62274e-05\tAbsError: 9.10345e-03\n", + " Region: \"zone_3\"\tRelError: 9.94556e-01\tAbsError: 9.80441e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.69397e-01\tAbsError: 4.46559e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.17171e-01\tAbsError: 5.33882e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07961e-01\tAbsError: 2.56709e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.62374e-05\tAbsError: 9.10715e-03\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 1.05186e-03\tAbsError: 6.43794e+11\n", + " Region: \"zone_1\"\tRelError: 2.86577e-04\tAbsError: 9.66109e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.86301e-04\tAbsError: 4.41981e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.76574e-07\tAbsError: 9.61689e-05\n", + " Region: \"zone_3\"\tRelError: 7.65285e-04\tAbsError: 6.43794e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.19983e-05\tAbsError: 3.47387e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.15429e-05\tAbsError: 2.96408e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.41467e-04\tAbsError: 4.46942e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.76632e-07\tAbsError: 9.61892e-05\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 5.47743e-05\tAbsError: 3.14060e+10\n", + " Region: \"zone_1\"\tRelError: 1.50907e-05\tAbsError: 5.90998e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50738e-05\tAbsError: 2.06583e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69372e-08\tAbsError: 5.88932e-06\n", + " Region: \"zone_3\"\tRelError: 3.96836e-05\tAbsError: 3.14060e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.02542e-06\tAbsError: 1.79710e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.00299e-06\tAbsError: 1.34350e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.36383e-05\tAbsError: 2.08968e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69400e-08\tAbsError: 5.89028e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.38677e+00\tAbsError: 6.38966e+14\n", + " Region: \"zone_1\"\tRelError: 4.51470e-01\tAbsError: 3.37904e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.51448e-01\tAbsError: 2.58448e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", + " Region: \"zone_3\"\tRelError: 9.35299e-01\tAbsError: 6.38966e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42607e-01\tAbsError: 3.02038e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.95795e-01\tAbsError: 3.36928e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.68743e-02\tAbsError: 2.57679e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:45\u001b[0m.\u001b[1;36m645\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 0.205\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.13427e-02\tAbsError: 1.62210e+13\n", + " Region: \"zone_1\"\tRelError: 1.73710e-02\tAbsError: 1.21679e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73676e-02\tAbsError: 1.36050e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.46587e-06\tAbsError: 1.20318e-03\n", + " Region: \"zone_3\"\tRelError: 1.39717e-02\tAbsError: 1.62210e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19687e-03\tAbsError: 6.47584e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09668e-03\tAbsError: 9.74512e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16747e-02\tAbsError: 1.39577e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.46587e-06\tAbsError: 1.20318e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.05949e-01\tAbsError: 3.74511e+14\n", + " Region: \"zone_1\"\tRelError: 3.59347e-02\tAbsError: 2.23497e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59015e-02\tAbsError: 1.08348e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.31757e-05\tAbsError: 1.15148e-02\n", + " Region: \"zone_3\"\tRelError: 3.70014e-01\tAbsError: 3.74511e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16593e-01\tAbsError: 1.81213e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.16499e-01\tAbsError: 1.93297e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.68890e-02\tAbsError: 1.08349e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.31840e-05\tAbsError: 1.15180e-02\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 1.85934e-04\tAbsError: 9.08573e+10\n", + " Region: \"zone_1\"\tRelError: 5.25212e-05\tAbsError: 4.72565e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.23854e-05\tAbsError: 6.20121e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35728e-07\tAbsError: 4.71945e-05\n", + " Region: \"zone_3\"\tRelError: 1.33413e-04\tAbsError: 9.08573e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.02696e-06\tAbsError: 5.24312e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.98446e-06\tAbsError: 3.84261e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15266e-04\tAbsError: 6.27511e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35761e-07\tAbsError: 4.72061e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.41554e-01\tAbsError: 2.20715e+14\n", + " Region: \"zone_1\"\tRelError: 2.89595e-02\tAbsError: 1.67352e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.89377e-02\tAbsError: 9.16565e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18085e-05\tAbsError: 7.56954e-03\n", + " Region: \"zone_3\"\tRelError: 3.12594e-01\tAbsError: 2.20715e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94155e-01\tAbsError: 1.01533e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.87246e-02\tAbsError: 1.19182e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96932e-02\tAbsError: 9.16570e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18152e-05\tAbsError: 7.57200e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.53065e-03\tAbsError: 7.24481e+11\n", + " Region: \"zone_1\"\tRelError: 1.49459e-03\tAbsError: 1.07639e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49149e-03\tAbsError: 6.55190e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.09641e-06\tAbsError: 1.07573e-03\n", + " Region: \"zone_3\"\tRelError: 1.03606e-03\tAbsError: 7.24481e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73129e-05\tAbsError: 2.45596e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.81580e-05\tAbsError: 4.78885e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.37490e-04\tAbsError: 6.76708e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.09642e-06\tAbsError: 1.07576e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.63329e+00\tAbsError: 8.76591e+15\n", + " Region: \"zone_1\"\tRelError: 1.98501e+00\tAbsError: 4.19653e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.98501e+00\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.95648e-09\tAbsError: 2.41887e-06\n", + " Region: \"zone_3\"\tRelError: 1.64829e+00\tAbsError: 8.76591e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78082e-01\tAbsError: 4.90369e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.78012e-01\tAbsError: 3.86222e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.21916e-02\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.95760e-09\tAbsError: 2.41927e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.20098e-02\tAbsError: 6.36915e+13\n", + " Region: \"zone_1\"\tRelError: 1.64825e-02\tAbsError: 5.73455e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64665e-02\tAbsError: 1.85410e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59822e-05\tAbsError: 5.54914e-03\n", + " Region: \"zone_3\"\tRelError: 7.55273e-02\tAbsError: 6.36915e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.16855e-02\tAbsError: 3.79951e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.17477e-03\tAbsError: 2.56964e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.65102e-03\tAbsError: 1.86769e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59822e-05\tAbsError: 5.54914e-03\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 7.98541e-05\tAbsError: 4.54186e+10\n", + " Region: \"zone_1\"\tRelError: 2.20300e-05\tAbsError: 9.07155e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20040e-05\tAbsError: 2.98550e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.60032e-08\tAbsError: 9.04169e-06\n", + " Region: \"zone_3\"\tRelError: 5.78241e-05\tAbsError: 4.54186e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37976e-06\tAbsError: 2.60573e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.34782e-06\tAbsError: 1.93613e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.90705e-05\tAbsError: 3.02004e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.60072e-08\tAbsError: 9.04309e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:47\u001b[0m.\u001b[1;36m660\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.21\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.19808e-02\tAbsError: 3.06344e+13\n", + " Region: \"zone_1\"\tRelError: 2.04251e-02\tAbsError: 4.10278e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04136e-02\tAbsError: 1.00349e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", + " Region: \"zone_3\"\tRelError: 6.15557e-02\tAbsError: 3.06344e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38926e-02\tAbsError: 1.71938e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.73234e-03\tAbsError: 1.34406e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.91920e-03\tAbsError: 1.01109e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.69038e-03\tAbsError: 1.04370e+12\n", + " Region: \"zone_1\"\tRelError: 1.58975e-03\tAbsError: 1.04879e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58945e-03\tAbsError: 5.38488e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.00336e-07\tAbsError: 1.04341e-04\n", + " Region: \"zone_3\"\tRelError: 1.10063e-03\tAbsError: 1.04370e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.23814e-05\tAbsError: 5.26651e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.22994e-05\tAbsError: 5.17045e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.95649e-04\tAbsError: 5.63224e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.00360e-07\tAbsError: 1.04351e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.53740e+00\tAbsError: 3.20837e+14\n", + " Region: \"zone_1\"\tRelError: 7.05045e-02\tAbsError: 9.40579e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.03259e-02\tAbsError: 3.19529e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78646e-04\tAbsError: 6.21050e-02\n", + " Region: \"zone_3\"\tRelError: 1.46689e+00\tAbsError: 3.20837e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53121e-01\tAbsError: 1.65481e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.48279e-01\tAbsError: 1.55355e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.53121e-02\tAbsError: 3.19533e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78646e-04\tAbsError: 6.21050e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.29067e-03\tAbsError: 2.61140e+12\n", + " Region: \"zone_1\"\tRelError: 3.53522e-04\tAbsError: 4.23373e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52311e-04\tAbsError: 2.81142e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21022e-06\tAbsError: 4.20562e-04\n", + " Region: \"zone_3\"\tRelError: 1.93715e-03\tAbsError: 2.61140e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.11236e-04\tAbsError: 8.82953e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.20779e-04\tAbsError: 1.72845e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40392e-03\tAbsError: 2.86772e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21055e-06\tAbsError: 4.20672e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.56709e+00\tAbsError: 9.18334e+15\n", + " Region: \"zone_1\"\tRelError: 1.89994e+00\tAbsError: 4.29373e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89994e+00\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01691e-08\tAbsError: 3.53594e-06\n", + " Region: \"zone_3\"\tRelError: 1.66716e+00\tAbsError: 9.18334e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86011e-01\tAbsError: 5.13720e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.85942e-01\tAbsError: 4.04614e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.52021e-02\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01707e-08\tAbsError: 3.53650e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.53920e-03\tAbsError: 1.84314e+12\n", + " Region: \"zone_1\"\tRelError: 2.29752e-04\tAbsError: 2.41443e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29064e-04\tAbsError: 2.20702e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", + " Region: \"zone_3\"\tRelError: 1.30944e-03\tAbsError: 1.84314e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11485e-04\tAbsError: 5.81096e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.63190e-04\tAbsError: 1.26205e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.34079e-04\tAbsError: 2.25011e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.67954e-04\tAbsError: 1.01821e+11\n", + " Region: \"zone_1\"\tRelError: 2.21136e-04\tAbsError: 6.97280e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20936e-04\tAbsError: 5.57180e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00534e-07\tAbsError: 6.96723e-05\n", + " Region: \"zone_3\"\tRelError: 1.46817e-04\tAbsError: 1.01821e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.39462e-06\tAbsError: 5.27392e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.41727e-06\tAbsError: 4.90816e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35805e-04\tAbsError: 5.79583e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00607e-07\tAbsError: 6.96980e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.95713e-01\tAbsError: 3.95001e+13\n", + " Region: \"zone_1\"\tRelError: 5.02856e-02\tAbsError: 3.12537e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.02701e-02\tAbsError: 2.58959e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54113e-05\tAbsError: 5.35772e-03\n", + " Region: \"zone_3\"\tRelError: 9.45427e-01\tAbsError: 3.95001e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.63975e-01\tAbsError: 2.89237e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.31137e-01\tAbsError: 1.05765e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.02993e-02\tAbsError: 2.58992e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54113e-05\tAbsError: 5.35772e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.21506e-04\tAbsError: 3.42031e+11\n", + " Region: \"zone_1\"\tRelError: 7.74355e-05\tAbsError: 1.55466e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.69883e-05\tAbsError: 2.05924e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.47168e-07\tAbsError: 1.55260e-04\n", + " Region: \"zone_3\"\tRelError: 3.44070e-04\tAbsError: 3.42031e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94758e-05\tAbsError: 2.19652e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.92382e-05\tAbsError: 1.22379e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.04909e-04\tAbsError: 2.14465e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.47202e-07\tAbsError: 1.55274e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.57053e+00\tAbsError: 3.51169e+14\n", + " Region: \"zone_1\"\tRelError: 7.27979e-02\tAbsError: 9.81640e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.26108e-02\tAbsError: 3.31004e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87158e-04\tAbsError: 6.50636e-02\n", + " Region: \"zone_3\"\tRelError: 1.49773e+00\tAbsError: 3.51169e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67194e-01\tAbsError: 1.81651e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.62787e-01\tAbsError: 1.69517e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.75645e-02\tAbsError: 3.31009e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87158e-04\tAbsError: 6.50636e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.51045e-04\tAbsError: 2.02519e+11\n", + " Region: \"zone_1\"\tRelError: 4.54891e-05\tAbsError: 1.12868e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.51644e-05\tAbsError: 1.25671e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.24705e-07\tAbsError: 1.12743e-04\n", + " Region: \"zone_3\"\tRelError: 2.05556e-04\tAbsError: 2.02519e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12163e-05\tAbsError: 1.36505e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10724e-05\tAbsError: 6.60139e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82943e-04\tAbsError: 1.30848e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.24777e-07\tAbsError: 1.12769e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.02562e-04\tAbsError: 6.84436e+10\n", + " Region: \"zone_1\"\tRelError: 1.21040e-04\tAbsError: 1.06970e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21010e-04\tAbsError: 3.27450e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.06942e-08\tAbsError: 1.06642e-05\n", + " Region: \"zone_3\"\tRelError: 8.15214e-05\tAbsError: 6.84436e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.33271e-06\tAbsError: 3.86456e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.32148e-06\tAbsError: 2.97979e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.48365e-05\tAbsError: 3.43670e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.07019e-08\tAbsError: 1.06669e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.11842e-01\tAbsError: 3.16076e+12\n", + " Region: \"zone_1\"\tRelError: 1.77920e-02\tAbsError: 1.38281e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77828e-02\tAbsError: 1.06618e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.10787e-06\tAbsError: 3.16630e-03\n", + " Region: \"zone_3\"\tRelError: 2.94050e-01\tAbsError: 3.16076e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.19046e-01\tAbsError: 1.95134e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.69828e-02\tAbsError: 1.20942e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80124e-02\tAbsError: 1.06619e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.11145e-06\tAbsError: 3.16760e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.54214e-04\tAbsError: 1.46404e+11\n", + " Region: \"zone_1\"\tRelError: 2.76236e-05\tAbsError: 1.48453e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.75812e-05\tAbsError: 9.43789e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.23843e-08\tAbsError: 1.47509e-05\n", + " Region: \"zone_3\"\tRelError: 1.26590e-04\tAbsError: 1.46404e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.54821e-06\tAbsError: 6.79464e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.47893e-06\tAbsError: 7.84580e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09521e-04\tAbsError: 9.70963e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.24007e-08\tAbsError: 1.47569e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.05165e+00\tAbsError: 4.28494e+13\n", + " Region: \"zone_1\"\tRelError: 5.19381e-02\tAbsError: 3.16775e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.19214e-02\tAbsError: 2.58745e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66923e-05\tAbsError: 5.80302e-03\n", + " Region: \"zone_3\"\tRelError: 9.99707e-01\tAbsError: 4.28494e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.86538e-01\tAbsError: 3.13497e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.61055e-01\tAbsError: 1.14997e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.20976e-02\tAbsError: 2.58960e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66923e-05\tAbsError: 5.80302e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.09882e-04\tAbsError: 1.05387e+11\n", + " Region: \"zone_1\"\tRelError: 1.91896e-05\tAbsError: 8.11152e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91665e-05\tAbsError: 7.26801e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.30974e-08\tAbsError: 8.03884e-06\n", + " Region: \"zone_3\"\tRelError: 9.06925e-05\tAbsError: 1.05387e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41210e-06\tAbsError: 4.74044e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.36012e-06\tAbsError: 5.79823e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.78972e-05\tAbsError: 7.44246e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.31071e-08\tAbsError: 8.04242e-06\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.67619e-05\tAbsError: 1.02422e+10\n", + " Region: \"zone_1\"\tRelError: 2.21445e-05\tAbsError: 4.91320e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21303e-05\tAbsError: 5.33976e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41260e-08\tAbsError: 4.90786e-06\n", + " Region: \"zone_3\"\tRelError: 1.46175e-05\tAbsError: 1.02422e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.20200e-07\tAbsError: 5.93794e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.20801e-07\tAbsError: 4.30423e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35623e-05\tAbsError: 5.58038e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41284e-08\tAbsError: 4.90869e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:52\u001b[0m.\u001b[1;36m686\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.7000000000000001\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.96216e-02\tAbsError: 2.61141e+12\n", + " Region: \"zone_1\"\tRelError: 9.45920e-04\tAbsError: 2.53689e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.38620e-04\tAbsError: 1.55354e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.30033e-06\tAbsError: 2.53534e-03\n", + " Region: \"zone_3\"\tRelError: 6.86757e-02\tAbsError: 2.61141e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.61725e-02\tAbsError: 1.62602e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.25124e-04\tAbsError: 9.85396e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.37081e-03\tAbsError: 1.62129e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.30033e-06\tAbsError: 2.53534e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.51422e-05\tAbsError: 1.31444e+10\n", + " Region: \"zone_1\"\tRelError: 2.80105e-06\tAbsError: 8.02449e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.77798e-06\tAbsError: 7.54204e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.30711e-08\tAbsError: 8.01695e-06\n", + " Region: \"zone_3\"\tRelError: 1.23412e-05\tAbsError: 1.31444e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.72219e-07\tAbsError: 9.04197e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.59854e-07\tAbsError: 4.10243e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09860e-05\tAbsError: 7.84254e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.30755e-08\tAbsError: 8.01862e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:53\u001b[0m.\u001b[1;36m150\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:53\u001b[0m.\u001b[1;36m150\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6277777777777779\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.59925e-01\tAbsError: 3.29836e+12\n", + " Region: \"zone_1\"\tRelError: 2.06968e-02\tAbsError: 1.57227e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06868e-02\tAbsError: 1.22658e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.94394e-06\tAbsError: 3.45693e-03\n", + " Region: \"zone_3\"\tRelError: 3.39228e-01\tAbsError: 3.29836e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.44822e-01\tAbsError: 2.09132e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.34529e-02\tAbsError: 1.20705e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09440e-02\tAbsError: 1.22658e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.94500e-06\tAbsError: 3.45736e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 7.21635e-06\tAbsError: 6.66072e+09\n", + " Region: \"zone_1\"\tRelError: 1.30608e-06\tAbsError: 5.92265e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28905e-06\tAbsError: 4.03393e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70320e-08\tAbsError: 5.91862e-06\n", + " Region: \"zone_3\"\tRelError: 5.91027e-06\tAbsError: 6.66072e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61854e-07\tAbsError: 4.98334e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.27195e-07\tAbsError: 1.67738e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.20418e-06\tAbsError: 4.19235e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70346e-08\tAbsError: 5.91965e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:53\u001b[0m.\u001b[1;36m909\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.6\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.79272e-04\tAbsError: 1.24789e+12\n", + " Region: \"zone_1\"\tRelError: 1.69378e-04\tAbsError: 1.19504e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69039e-04\tAbsError: 1.78974e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.38150e-07\tAbsError: 1.17714e-04\n", + " Region: \"zone_3\"\tRelError: 8.09894e-04\tAbsError: 1.24789e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.56091e-04\tAbsError: 3.40106e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.55755e-04\tAbsError: 9.07785e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.97709e-04\tAbsError: 1.78994e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.38303e-07\tAbsError: 1.17770e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.11982e+00\tAbsError: 2.71568e+16\n", + " Region: \"zone_1\"\tRelError: 3.35178e+00\tAbsError: 4.09552e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35178e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75560e-09\tAbsError: 9.57391e-07\n", + " Region: \"zone_3\"\tRelError: 1.76804e+00\tAbsError: 2.71568e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68907e-01\tAbsError: 1.36090e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.68433e-01\tAbsError: 1.35478e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30705e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75592e-09\tAbsError: 9.57503e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.47130e+01\tAbsError: 9.34749e+15\n", + " Region: \"zone_1\"\tRelError: 1.29635e+01\tAbsError: 4.20730e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29635e+01\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19790e-09\tAbsError: 4.16910e-07\n", + " Region: \"zone_3\"\tRelError: 1.74948e+00\tAbsError: 9.34749e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78965e-01\tAbsError: 4.96596e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.78797e-01\tAbsError: 4.38153e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91722e-01\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19845e-09\tAbsError: 4.17112e-07\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.15556e-02\tAbsError: 2.83277e+12\n", + " Region: \"zone_1\"\tRelError: 9.61766e-04\tAbsError: 2.53657e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.54467e-04\tAbsError: 1.76904e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.29883e-06\tAbsError: 2.53480e-03\n", + " Region: \"zone_3\"\tRelError: 8.05939e-02\tAbsError: 2.83277e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77894e-02\tAbsError: 1.76360e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.00698e-04\tAbsError: 1.06917e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.59647e-03\tAbsError: 1.83630e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.29883e-06\tAbsError: 2.53480e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.57743e+01\tAbsError: 8.48667e+15\n", + " Region: \"zone_1\"\tRelError: 1.40602e+01\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40602e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57556e-10\tAbsError: 1.24451e-07\n", + " Region: \"zone_3\"\tRelError: 1.71408e+00\tAbsError: 8.48667e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69582e-01\tAbsError: 4.51146e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69441e-01\tAbsError: 3.97521e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75053e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57765e-10\tAbsError: 1.24526e-07\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.39118e-04\tAbsError: 9.70617e+10\n", + " Region: \"zone_1\"\tRelError: 3.44334e-05\tAbsError: 7.42120e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.42198e-05\tAbsError: 5.61163e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.13513e-07\tAbsError: 7.41559e-05\n", + " Region: \"zone_3\"\tRelError: 1.04685e-04\tAbsError: 9.70617e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.45419e-06\tAbsError: 7.08787e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.38136e-06\tAbsError: 2.61830e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.96357e-05\tAbsError: 5.90320e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.13597e-07\tAbsError: 7.41831e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.73275e+00\tAbsError: 2.68838e+16\n", + " Region: \"zone_1\"\tRelError: 1.92080e-01\tAbsError: 1.46306e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91747e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32681e-04\tAbsError: 1.15542e-01\n", + " Region: \"zone_3\"\tRelError: 1.54067e+00\tAbsError: 2.68838e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.36324e-01\tAbsError: 1.35736e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.01335e-01\tAbsError: 1.33102e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02681e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32681e-04\tAbsError: 1.15542e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.79022e+00\tAbsError: 8.31075e+15\n", + " Region: \"zone_1\"\tRelError: 2.52292e-01\tAbsError: 8.08004e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52152e-01\tAbsError: 3.20821e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40217e-04\tAbsError: 4.87183e-02\n", + " Region: \"zone_3\"\tRelError: 1.53793e+00\tAbsError: 8.31075e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.54947e-01\tAbsError: 4.05111e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.26465e-01\tAbsError: 4.25964e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56377e-01\tAbsError: 3.20821e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40217e-04\tAbsError: 4.87183e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.98909e-04\tAbsError: 1.24657e+12\n", + " Region: \"zone_1\"\tRelError: 1.38349e-04\tAbsError: 1.35913e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37964e-04\tAbsError: 1.78869e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.85293e-07\tAbsError: 1.34125e-04\n", + " Region: \"zone_3\"\tRelError: 7.60560e-04\tAbsError: 1.24657e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53737e-04\tAbsError: 3.31798e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.52329e-04\tAbsError: 9.14768e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54109e-04\tAbsError: 1.78889e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.85453e-07\tAbsError: 1.34183e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.55570e+00\tAbsError: 5.16331e+15\n", + " Region: \"zone_1\"\tRelError: 3.06111e+00\tAbsError: 6.97364e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.06100e+00\tAbsError: 3.07634e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12162e-04\tAbsError: 3.89730e-02\n", + " Region: \"zone_3\"\tRelError: 1.49459e+00\tAbsError: 5.16331e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38938e-01\tAbsError: 2.46191e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.11412e-01\tAbsError: 2.70140e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44124e-01\tAbsError: 3.07634e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12162e-04\tAbsError: 3.89730e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 7.65717e-05\tAbsError: 6.84700e+10\n", + " Region: \"zone_1\"\tRelError: 1.77384e-05\tAbsError: 3.36342e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77290e-05\tAbsError: 5.96230e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.49029e-09\tAbsError: 3.30380e-06\n", + " Region: \"zone_3\"\tRelError: 5.88333e-05\tAbsError: 6.84700e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.12243e-06\tAbsError: 2.77477e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.07134e-06\tAbsError: 4.07222e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.66300e-05\tAbsError: 5.97642e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.49511e-09\tAbsError: 3.30555e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:57\u001b[0m.\u001b[1;36m242\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:57\u001b[0m.\u001b[1;36m242\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30999999999999994\u001b[0m \n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.12307e+00\tAbsError: 1.60442e+16\n", + " Region: \"zone_1\"\tRelError: 1.49907e-01\tAbsError: 9.31426e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49713e-01\tAbsError: 2.58569e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93773e-04\tAbsError: 6.72856e-02\n", + " Region: \"zone_3\"\tRelError: 9.73164e-01\tAbsError: 1.60442e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39500e-01\tAbsError: 8.04160e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.83757e-01\tAbsError: 8.00261e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49713e-01\tAbsError: 2.43087e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93773e-04\tAbsError: 6.72856e-02\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.15814e+00\tAbsError: 5.80361e+15\n", + " Region: \"zone_1\"\tRelError: 1.26863e-01\tAbsError: 3.43366e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26839e-01\tAbsError: 2.58230e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45030e-05\tAbsError: 8.51362e-03\n", + " Region: \"zone_3\"\tRelError: 1.03128e+00\tAbsError: 5.80361e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.72077e-01\tAbsError: 2.80851e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.21781e-01\tAbsError: 2.99509e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37397e-01\tAbsError: 2.54077e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45030e-05\tAbsError: 8.51362e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.63415e-04\tAbsError: 1.13123e+11\n", + " Region: \"zone_1\"\tRelError: 3.79718e-05\tAbsError: 7.25317e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.77632e-05\tAbsError: 6.55707e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08649e-07\tAbsError: 7.24662e-05\n", + " Region: \"zone_3\"\tRelError: 1.25443e-04\tAbsError: 1.13123e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.83965e-06\tAbsError: 8.03487e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.75746e-06\tAbsError: 3.27748e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07637e-04\tAbsError: 6.89964e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08694e-07\tAbsError: 7.24802e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.13964e+00\tAbsError: 3.47644e+15\n", + " Region: \"zone_1\"\tRelError: 1.85284e-01\tAbsError: 3.50197e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85258e-01\tAbsError: 2.58979e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.62526e-05\tAbsError: 9.12177e-03\n", + " Region: \"zone_3\"\tRelError: 9.54354e-01\tAbsError: 3.47644e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46208e-01\tAbsError: 1.62778e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.89583e-01\tAbsError: 1.84866e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18536e-01\tAbsError: 2.53855e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.62526e-05\tAbsError: 9.12177e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.25010e-01\tAbsError: 4.83168e+15\n", + " Region: \"zone_1\"\tRelError: 9.35029e-02\tAbsError: 6.02167e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.33558e-02\tAbsError: 9.16529e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47066e-04\tAbsError: 5.10514e-02\n", + " Region: \"zone_3\"\tRelError: 3.31507e-01\tAbsError: 4.83168e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74852e-01\tAbsError: 2.44485e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.96161e-02\tAbsError: 2.38683e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.68922e-02\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47066e-04\tAbsError: 5.10514e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.30180e+01\tAbsError: 8.69319e+15\n", + " Region: \"zone_1\"\tRelError: 8.13582e+01\tAbsError: 4.19668e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.13582e+01\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12128e-08\tAbsError: 3.89796e-06\n", + " Region: \"zone_3\"\tRelError: 1.65986e+00\tAbsError: 8.69319e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78172e-01\tAbsError: 5.01810e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.78152e-01\tAbsError: 3.67509e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03541e-01\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12137e-08\tAbsError: 3.89832e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.77709e-01\tAbsError: 1.99046e+15\n", + " Region: \"zone_1\"\tRelError: 1.89574e-01\tAbsError: 5.36432e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89451e-01\tAbsError: 1.08352e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23374e-04\tAbsError: 4.28080e-02\n", + " Region: \"zone_3\"\tRelError: 3.88135e-01\tAbsError: 1.99046e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.09762e-01\tAbsError: 1.04397e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.33212e-01\tAbsError: 9.46486e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.50372e-02\tAbsError: 1.08353e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23409e-04\tAbsError: 4.28198e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.96510e-05\tAbsError: 6.62345e+10\n", + " Region: \"zone_1\"\tRelError: 1.48805e-05\tAbsError: 4.57579e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48675e-05\tAbsError: 5.85229e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29763e-08\tAbsError: 4.51726e-06\n", + " Region: \"zone_3\"\tRelError: 5.47705e-05\tAbsError: 6.62345e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.88319e-06\tAbsError: 2.60340e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.83380e-06\tAbsError: 4.02005e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.30405e-05\tAbsError: 5.86366e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29828e-08\tAbsError: 4.51964e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:59\u001b[0m.\u001b[1;36m373\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:59\u001b[0m.\u001b[1;36m373\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.31999999999999995\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 8.24095e-01\tAbsError: 1.04537e+15\n", + " Region: \"zone_1\"\tRelError: 4.93544e-01\tAbsError: 2.65000e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.93494e-01\tAbsError: 9.16559e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.98913e-05\tAbsError: 1.73344e-02\n", + " Region: \"zone_3\"\tRelError: 3.30551e-01\tAbsError: 1.04537e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84640e-01\tAbsError: 5.55503e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10521e-01\tAbsError: 4.89866e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53403e-02\tAbsError: 9.16565e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.98913e-05\tAbsError: 1.73344e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.30868e-01\tAbsError: 1.08442e+15\n", + " Region: \"zone_1\"\tRelError: 2.27753e-02\tAbsError: 2.15920e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21537e-02\tAbsError: 2.84606e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.21607e-04\tAbsError: 2.15635e-01\n", + " Region: \"zone_3\"\tRelError: 1.08092e-01\tAbsError: 1.08442e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.76472e-02\tAbsError: 4.26455e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.43864e-02\tAbsError: 6.57964e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54371e-02\tAbsError: 2.84606e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.21607e-04\tAbsError: 2.15635e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.92283e+00\tAbsError: 3.17185e+14\n", + " Region: \"zone_1\"\tRelError: 4.41326e-01\tAbsError: 8.91561e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.41161e-01\tAbsError: 3.19528e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64573e-04\tAbsError: 5.72033e-02\n", + " Region: \"zone_3\"\tRelError: 1.48150e+00\tAbsError: 3.17185e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53774e-01\tAbsError: 1.97498e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.48120e-01\tAbsError: 1.19687e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.94425e-02\tAbsError: 3.19533e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64573e-04\tAbsError: 5.72033e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.01956e-01\tAbsError: 3.30280e+14\n", + " Region: \"zone_1\"\tRelError: 1.23511e-02\tAbsError: 4.29826e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22278e-02\tAbsError: 2.11230e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23221e-04\tAbsError: 4.27714e-02\n", + " Region: \"zone_3\"\tRelError: 8.96046e-02\tAbsError: 3.30280e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38647e-02\tAbsError: 1.85641e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06846e-02\tAbsError: 1.44639e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49319e-02\tAbsError: 2.22573e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23378e-04\tAbsError: 4.28245e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.23262e-02\tAbsError: 1.95138e+14\n", + " Region: \"zone_1\"\tRelError: 2.57438e-02\tAbsError: 3.23382e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.56511e-02\tAbsError: 1.67807e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.26701e-05\tAbsError: 3.21704e-02\n", + " Region: \"zone_3\"\tRelError: 6.65824e-02\tAbsError: 1.95138e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.49682e-02\tAbsError: 6.65802e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.06072e-03\tAbsError: 1.28558e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.46071e-03\tAbsError: 1.74923e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.26947e-05\tAbsError: 3.21777e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.13208e+01\tAbsError: 9.10596e+15\n", + " Region: \"zone_1\"\tRelError: 9.64710e+00\tAbsError: 4.29375e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.64710e+00\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05103e-08\tAbsError: 3.65373e-06\n", + " Region: \"zone_3\"\tRelError: 1.67375e+00\tAbsError: 9.10596e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86100e-01\tAbsError: 5.26385e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.86081e-01\tAbsError: 3.84211e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01565e-01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05107e-08\tAbsError: 3.65390e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.55617e-01\tAbsError: 2.35794e+14\n", + " Region: \"zone_1\"\tRelError: 4.99367e-02\tAbsError: 1.38607e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.98970e-02\tAbsError: 6.98741e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.97528e-05\tAbsError: 1.37908e-02\n", + " Region: \"zone_3\"\tRelError: 1.05680e-01\tAbsError: 2.35794e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.27300e-03\tAbsError: 1.18548e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.21148e-03\tAbsError: 1.17246e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.51557e-02\tAbsError: 7.06637e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.97528e-05\tAbsError: 1.37908e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.02753e+00\tAbsError: 4.41602e+13\n", + " Region: \"zone_1\"\tRelError: 6.32910e-02\tAbsError: 3.22538e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.32727e-02\tAbsError: 2.58901e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83078e-05\tAbsError: 6.36365e-03\n", + " Region: \"zone_3\"\tRelError: 9.64244e-01\tAbsError: 4.41602e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.64145e-01\tAbsError: 3.14880e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.36393e-01\tAbsError: 1.26721e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.36877e-02\tAbsError: 2.58901e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83078e-05\tAbsError: 6.36365e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.32647e-02\tAbsError: 2.33464e+13\n", + " Region: \"zone_1\"\tRelError: 5.25069e-03\tAbsError: 7.72764e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.24852e-03\tAbsError: 1.62921e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17940e-06\tAbsError: 7.56472e-04\n", + " Region: \"zone_3\"\tRelError: 1.80140e-02\tAbsError: 2.33464e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47882e-03\tAbsError: 1.05981e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34887e-03\tAbsError: 1.27483e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51841e-02\tAbsError: 1.70811e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18436e-06\tAbsError: 7.58194e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.13427e-02\tAbsError: 1.62210e+13\n", + " Region: \"zone_1\"\tRelError: 1.73710e-02\tAbsError: 1.21679e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73676e-02\tAbsError: 1.36050e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.46587e-06\tAbsError: 1.20318e-03\n", + " Region: \"zone_3\"\tRelError: 1.39717e-02\tAbsError: 1.62210e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19687e-03\tAbsError: 6.47584e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09668e-03\tAbsError: 9.74512e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16747e-02\tAbsError: 1.39577e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.46587e-06\tAbsError: 1.20318e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.60555e+00\tAbsError: 3.49070e+14\n", + " Region: \"zone_1\"\tRelError: 9.22733e-02\tAbsError: 9.26848e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.21018e-02\tAbsError: 3.31004e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71426e-04\tAbsError: 5.95845e-02\n", + " Region: \"zone_3\"\tRelError: 1.51327e+00\tAbsError: 3.49070e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67916e-01\tAbsError: 2.20940e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.62728e-01\tAbsError: 1.28130e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.24571e-02\tAbsError: 3.31008e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71426e-04\tAbsError: 5.95845e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.12114e-02\tAbsError: 1.98754e+13\n", + " Region: \"zone_1\"\tRelError: 7.04172e-03\tAbsError: 6.58751e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.02275e-03\tAbsError: 5.51750e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89733e-05\tAbsError: 6.58199e-03\n", + " Region: \"zone_3\"\tRelError: 1.41697e-02\tAbsError: 1.98754e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43525e-04\tAbsError: 1.00008e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.47254e-04\tAbsError: 9.87467e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32599e-02\tAbsError: 5.78756e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89775e-05\tAbsError: 6.58354e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.22606e-01\tAbsError: 7.84939e+12\n", + " Region: \"zone_1\"\tRelError: 2.22941e-02\tAbsError: 1.32945e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.22866e-02\tAbsError: 1.06618e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.57416e-06\tAbsError: 2.63278e-03\n", + " Region: \"zone_3\"\tRelError: 3.00312e-01\tAbsError: 7.84939e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.18420e-01\tAbsError: 3.81260e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.93810e-02\tAbsError: 4.03679e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25037e-02\tAbsError: 1.06618e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.57783e-06\tAbsError: 2.63407e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 5.71129e-04\tAbsError: 4.64479e+11\n", + " Region: \"zone_1\"\tRelError: 1.36872e-04\tAbsError: 1.33677e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33025e-04\tAbsError: 4.45593e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.84708e-06\tAbsError: 1.33633e-03\n", + " Region: \"zone_3\"\tRelError: 4.34257e-04\tAbsError: 4.64479e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.87135e-05\tAbsError: 2.05740e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.04630e-05\tAbsError: 2.58739e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.91233e-04\tAbsError: 4.55558e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.84714e-06\tAbsError: 1.33637e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.53065e-03\tAbsError: 7.24481e+11\n", + " Region: \"zone_1\"\tRelError: 1.49459e-03\tAbsError: 1.07639e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49149e-03\tAbsError: 6.55190e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.09641e-06\tAbsError: 1.07573e-03\n", + " Region: \"zone_3\"\tRelError: 1.03606e-03\tAbsError: 7.24481e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73129e-05\tAbsError: 2.45596e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.81580e-05\tAbsError: 4.78885e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.37490e-04\tAbsError: 6.76708e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.09642e-06\tAbsError: 1.07576e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.08576e+00\tAbsError: 5.42272e+13\n", + " Region: \"zone_1\"\tRelError: 6.57302e-02\tAbsError: 3.25935e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.57103e-02\tAbsError: 2.56636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99371e-05\tAbsError: 6.92989e-03\n", + " Region: \"zone_3\"\tRelError: 1.02003e+00\tAbsError: 5.42272e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.86826e-01\tAbsError: 3.87041e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.66488e-01\tAbsError: 1.55232e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.66923e-02\tAbsError: 2.58213e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99371e-05\tAbsError: 6.92989e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.24258e-02\tAbsError: 1.10918e+13\n", + " Region: \"zone_1\"\tRelError: 4.12899e-03\tAbsError: 9.16825e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.12635e-03\tAbsError: 2.69238e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.63359e-06\tAbsError: 9.14133e-04\n", + " Region: \"zone_3\"\tRelError: 8.29681e-03\tAbsError: 1.10918e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.48339e-04\tAbsError: 5.58229e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.46113e-04\tAbsError: 5.50951e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.79972e-03\tAbsError: 2.89698e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.63458e-06\tAbsError: 9.14508e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.78415e-03\tAbsError: 1.30628e+12\n", + " Region: \"zone_1\"\tRelError: 4.28818e-04\tAbsError: 8.25926e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.28582e-04\tAbsError: 6.47778e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36078e-07\tAbsError: 8.19448e-05\n", + " Region: \"zone_3\"\tRelError: 1.35533e-03\tAbsError: 1.30628e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.11544e-05\tAbsError: 6.56040e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.08446e-05\tAbsError: 6.50242e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23310e-03\tAbsError: 6.64003e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36136e-07\tAbsError: 8.19661e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.99142e-02\tAbsError: 2.26296e+12\n", + " Region: \"zone_1\"\tRelError: 1.29118e-03\tAbsError: 2.02776e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28536e-03\tAbsError: 6.01525e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.82204e-06\tAbsError: 2.02174e-03\n", + " Region: \"zone_3\"\tRelError: 6.86230e-02\tAbsError: 2.26296e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.61419e-02\tAbsError: 1.56909e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.27666e-04\tAbsError: 6.93869e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.14763e-03\tAbsError: 6.34080e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.82204e-06\tAbsError: 2.02174e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.69038e-03\tAbsError: 1.04370e+12\n", + " Region: \"zone_1\"\tRelError: 1.58975e-03\tAbsError: 1.04879e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58945e-03\tAbsError: 5.38488e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.00336e-07\tAbsError: 1.04341e-04\n", + " Region: \"zone_3\"\tRelError: 1.10063e-03\tAbsError: 1.04370e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.23814e-05\tAbsError: 5.26651e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.22994e-05\tAbsError: 5.17045e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.95649e-04\tAbsError: 5.63224e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.00360e-07\tAbsError: 1.04351e-04\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.73642e-01\tAbsError: 9.69815e+12\n", + " Region: \"zone_1\"\tRelError: 2.63134e-02\tAbsError: 1.52684e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.63048e-02\tAbsError: 1.22657e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.63884e-06\tAbsError: 3.00266e-03\n", + " Region: \"zone_3\"\tRelError: 3.47328e-01\tAbsError: 9.69815e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.43903e-01\tAbsError: 4.70596e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.68748e-02\tAbsError: 4.99219e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.65414e-02\tAbsError: 1.22658e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.64176e-06\tAbsError: 3.00375e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.18008e-03\tAbsError: 1.59787e+12\n", + " Region: \"zone_1\"\tRelError: 7.30404e-04\tAbsError: 4.14536e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.29211e-04\tAbsError: 3.64518e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19313e-06\tAbsError: 4.14171e-04\n", + " Region: \"zone_3\"\tRelError: 1.44968e-03\tAbsError: 1.59787e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.59026e-05\tAbsError: 8.02763e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.55751e-05\tAbsError: 7.95108e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37700e-03\tAbsError: 3.97752e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19336e-06\tAbsError: 4.14251e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.55127e-04\tAbsError: 9.93238e+11\n", + " Region: \"zone_1\"\tRelError: 2.79859e-04\tAbsError: 1.10574e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.79545e-04\tAbsError: 1.48236e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.13406e-07\tAbsError: 1.09091e-04\n", + " Region: \"zone_3\"\tRelError: 5.75269e-04\tAbsError: 9.93238e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.15795e-04\tAbsError: 2.59345e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09339e-04\tAbsError: 7.33893e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.49821e-04\tAbsError: 1.48909e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.13540e-07\tAbsError: 1.09141e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.67945e-04\tAbsError: 7.85934e+10\n", + " Region: \"zone_1\"\tRelError: 4.12351e-05\tAbsError: 8.21508e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.09987e-05\tAbsError: 4.70612e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36350e-07\tAbsError: 8.21038e-05\n", + " Region: \"zone_3\"\tRelError: 1.26710e-04\tAbsError: 7.85934e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.14413e-06\tAbsError: 3.68644e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.17345e-06\tAbsError: 4.17290e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18156e-04\tAbsError: 4.78948e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36434e-07\tAbsError: 8.21331e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.67954e-04\tAbsError: 1.01821e+11\n", + " Region: \"zone_1\"\tRelError: 2.21136e-04\tAbsError: 6.97280e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20936e-04\tAbsError: 5.57180e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00534e-07\tAbsError: 6.96723e-05\n", + " Region: \"zone_3\"\tRelError: 1.46817e-04\tAbsError: 1.01821e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.39462e-06\tAbsError: 5.27392e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.41727e-06\tAbsError: 4.90816e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35805e-04\tAbsError: 5.79583e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00607e-07\tAbsError: 6.96980e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.13764e-02\tAbsError: 2.60011e+12\n", + " Region: \"zone_1\"\tRelError: 5.15644e-04\tAbsError: 1.86139e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.10306e-04\tAbsError: 7.73509e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.33805e-06\tAbsError: 1.85366e-03\n", + " Region: \"zone_3\"\tRelError: 8.08607e-02\tAbsError: 2.60011e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77471e-02\tAbsError: 1.74501e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.39413e-04\tAbsError: 8.55098e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.46890e-03\tAbsError: 8.53513e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.33805e-06\tAbsError: 1.85366e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 9.04358e-04\tAbsError: 6.91618e+11\n", + " Region: \"zone_1\"\tRelError: 3.02587e-04\tAbsError: 7.78938e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.02363e-04\tAbsError: 1.55785e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23501e-07\tAbsError: 7.77380e-05\n", + " Region: \"zone_3\"\tRelError: 6.01772e-04\tAbsError: 6.91618e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.55559e-05\tAbsError: 3.47877e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.53466e-05\tAbsError: 3.43741e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.70646e-04\tAbsError: 1.69595e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23586e-07\tAbsError: 7.77681e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.20053e-04\tAbsError: 9.08394e+10\n", + " Region: \"zone_1\"\tRelError: 1.81544e-05\tAbsError: 5.77969e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79881e-05\tAbsError: 5.48804e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66269e-07\tAbsError: 5.77420e-05\n", + " Region: \"zone_3\"\tRelError: 1.01899e-04\tAbsError: 9.08394e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.23512e-06\tAbsError: 6.54956e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.17106e-06\tAbsError: 2.53438e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.93263e-05\tAbsError: 5.73246e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66303e-07\tAbsError: 5.77524e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.27074e-04\tAbsError: 8.15536e+10\n", + " Region: \"zone_1\"\tRelError: 3.09063e-05\tAbsError: 9.88116e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.08780e-05\tAbsError: 3.69812e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.83382e-08\tAbsError: 9.84418e-06\n", + " Region: \"zone_3\"\tRelError: 9.61679e-05\tAbsError: 8.15536e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.70448e-06\tAbsError: 4.58581e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.67779e-06\tAbsError: 3.56955e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.87573e-05\tAbsError: 3.76646e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.83462e-08\tAbsError: 9.84698e-06\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.02562e-04\tAbsError: 6.84436e+10\n", + " Region: \"zone_1\"\tRelError: 1.21040e-04\tAbsError: 1.06970e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21010e-04\tAbsError: 3.27450e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.06942e-08\tAbsError: 1.06642e-05\n", + " Region: \"zone_3\"\tRelError: 8.15214e-05\tAbsError: 6.84436e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.33271e-06\tAbsError: 3.86457e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.32148e-06\tAbsError: 2.97979e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.48365e-05\tAbsError: 3.43670e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.07019e-08\tAbsError: 1.06669e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.48966e-04\tAbsError: 8.96566e+11\n", + " Region: \"zone_1\"\tRelError: 5.28566e-05\tAbsError: 1.37320e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.24660e-05\tAbsError: 1.35084e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.90631e-07\tAbsError: 1.35969e-04\n", + " Region: \"zone_3\"\tRelError: 3.96109e-04\tAbsError: 8.96566e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98545e-05\tAbsError: 2.13909e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.29182e-05\tAbsError: 6.82656e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02946e-04\tAbsError: 1.35679e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.90791e-07\tAbsError: 1.36028e-04\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.87260e-04\tAbsError: 1.29403e+11\n", + " Region: \"zone_1\"\tRelError: 6.28801e-05\tAbsError: 2.91909e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.27963e-05\tAbsError: 3.06059e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.38368e-08\tAbsError: 2.91603e-05\n", + " Region: \"zone_3\"\tRelError: 1.24379e-04\tAbsError: 1.29403e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91169e-06\tAbsError: 6.49895e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.87741e-06\tAbsError: 6.44135e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18506e-04\tAbsError: 3.32307e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.38700e-08\tAbsError: 2.91722e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.89211e-05\tAbsError: 9.50180e+09\n", + " Region: \"zone_1\"\tRelError: 4.65037e-06\tAbsError: 5.55191e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.63440e-06\tAbsError: 4.80136e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59683e-08\tAbsError: 5.54711e-06\n", + " Region: \"zone_3\"\tRelError: 1.42707e-05\tAbsError: 9.50180e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.61313e-07\tAbsError: 5.41394e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.61345e-07\tAbsError: 4.08786e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33321e-05\tAbsError: 4.89497e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59706e-08\tAbsError: 5.54792e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:08\u001b[0m.\u001b[1;36m665\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:08\u001b[0m.\u001b[1;36m665\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7333333333333334\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.92305e-05\tAbsError: 5.26360e+10\n", + " Region: \"zone_1\"\tRelError: 6.83936e-06\tAbsError: 3.78015e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.82864e-06\tAbsError: 4.82672e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07211e-08\tAbsError: 3.73188e-06\n", + " Region: \"zone_3\"\tRelError: 4.23911e-05\tAbsError: 5.26360e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.17044e-06\tAbsError: 2.04349e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.13380e-06\tAbsError: 3.22010e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40762e-05\tAbsError: 4.83420e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07265e-08\tAbsError: 3.73386e-06\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:08\u001b[0m.\u001b[1;36m840\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:08\u001b[0m.\u001b[1;36m840\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.4149999999999999\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.67619e-05\tAbsError: 1.02422e+10\n", + " Region: \"zone_1\"\tRelError: 2.21445e-05\tAbsError: 4.91320e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21303e-05\tAbsError: 5.33976e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41260e-08\tAbsError: 4.90786e-06\n", + " Region: \"zone_3\"\tRelError: 1.46175e-05\tAbsError: 1.02422e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.20200e-07\tAbsError: 5.93796e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.20801e-07\tAbsError: 4.30421e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35623e-05\tAbsError: 5.58038e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41284e-08\tAbsError: 4.90869e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:09\u001b[0m.\u001b[1;36m165\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.7000000000000001\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 6.51617e-05\tAbsError: 4.65398e+10\n", + " Region: \"zone_1\"\tRelError: 2.18609e-05\tAbsError: 6.36014e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18427e-05\tAbsError: 1.11819e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82534e-08\tAbsError: 6.34896e-06\n", + " Region: \"zone_3\"\tRelError: 4.33008e-05\tAbsError: 4.65398e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04809e-06\tAbsError: 2.33986e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03254e-06\tAbsError: 2.31412e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.12019e-05\tAbsError: 1.20844e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82605e-08\tAbsError: 6.35150e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:09\u001b[0m.\u001b[1;36m620\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.8\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Iteration: 6\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 1.64329e-04\tAbsError: 1.17757e+11\n", + " Region: \"zone_1\"\tRelError: 2.50373e-05\tAbsError: 4.84121e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.48981e-05\tAbsError: 7.17289e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39198e-07\tAbsError: 4.83403e-05\n", + " Region: \"zone_3\"\tRelError: 1.39291e-04\tAbsError: 1.17757e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.33650e-06\tAbsError: 8.08468e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.26154e-06\tAbsError: 3.69104e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22554e-04\tAbsError: 7.49738e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39198e-07\tAbsError: 4.83403e-05\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.05900e+01\tAbsError: 4.46557e+16\n", + " Region: \"zone_1\"\tRelError: 6.87743e+01\tAbsError: 4.20735e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.87743e+01\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.70008e-09\tAbsError: 9.37962e-07\n", + " Region: \"zone_3\"\tRelError: 1.81571e+00\tAbsError: 4.46557e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77865e-01\tAbsError: 2.21789e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.77152e-01\tAbsError: 2.24768e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.60688e-01\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.70036e-09\tAbsError: 9.38061e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.20408e+00\tAbsError: 8.66556e+15\n", + " Region: \"zone_1\"\tRelError: 5.53406e+00\tAbsError: 4.19658e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.53406e+00\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.30170e-09\tAbsError: 2.88550e-06\n", + " Region: \"zone_3\"\tRelError: 1.67003e+00\tAbsError: 8.66556e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78195e-01\tAbsError: 5.11161e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.78171e-01\tAbsError: 3.55395e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13660e-01\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.30183e-09\tAbsError: 2.88560e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.11982e+00\tAbsError: 2.71568e+16\n", + " Region: \"zone_1\"\tRelError: 3.35178e+00\tAbsError: 4.09552e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35178e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75560e-09\tAbsError: 9.57391e-07\n", + " Region: \"zone_3\"\tRelError: 1.76804e+00\tAbsError: 2.71568e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68907e-01\tAbsError: 1.36090e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.68433e-01\tAbsError: 1.35478e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30705e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75592e-09\tAbsError: 9.57503e-07\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.29104e-05\tAbsError: 4.21734e+10\n", + " Region: \"zone_1\"\tRelError: 4.44495e-06\tAbsError: 6.18426e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.42730e-06\tAbsError: 4.07074e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76498e-08\tAbsError: 6.14355e-06\n", + " Region: \"zone_3\"\tRelError: 2.84655e-05\tAbsError: 4.21734e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.29169e-06\tAbsError: 1.42178e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.26285e-06\tAbsError: 2.79556e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18933e-05\tAbsError: 4.07772e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76574e-08\tAbsError: 6.14636e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:11\u001b[0m.\u001b[1;36m152\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:11\u001b[0m.\u001b[1;36m152\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.42999999999999994\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.97502e+01\tAbsError: 1.32808e+17\n", + " Region: \"zone_1\"\tRelError: 2.76074e+01\tAbsError: 4.09563e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76074e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.00798e-09\tAbsError: 2.08971e-06\n", + " Region: \"zone_3\"\tRelError: 2.14284e+00\tAbsError: 1.32808e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.64512e-01\tAbsError: 6.68287e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.62033e-01\tAbsError: 6.59795e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.16298e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.01029e-09\tAbsError: 2.09057e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 7.17594e+00\tAbsError: 4.58261e+16\n", + " Region: \"zone_1\"\tRelError: 5.57923e+00\tAbsError: 2.03711e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.57873e+00\tAbsError: 3.20819e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.94325e-04\tAbsError: 1.71629e-01\n", + " Region: \"zone_3\"\tRelError: 1.59671e+00\tAbsError: 4.58261e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.50864e-01\tAbsError: 2.32601e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.14248e-01\tAbsError: 2.25660e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31103e-01\tAbsError: 3.20820e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.94325e-04\tAbsError: 1.71629e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.60672e+00\tAbsError: 4.02263e+14\n", + " Region: \"zone_1\"\tRelError: 1.08205e-01\tAbsError: 8.12031e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08064e-01\tAbsError: 3.19528e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41712e-04\tAbsError: 4.92503e-02\n", + " Region: \"zone_3\"\tRelError: 1.49852e+00\tAbsError: 4.02263e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.54640e-01\tAbsError: 2.74026e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.47272e-01\tAbsError: 1.28237e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.64644e-02\tAbsError: 3.19531e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41712e-04\tAbsError: 4.92503e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.73275e+00\tAbsError: 2.68838e+16\n", + " Region: \"zone_1\"\tRelError: 1.92080e-01\tAbsError: 1.46306e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91747e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32681e-04\tAbsError: 1.15542e-01\n", + " Region: \"zone_3\"\tRelError: 1.54067e+00\tAbsError: 2.68838e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.36324e-01\tAbsError: 1.35736e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.01335e-01\tAbsError: 1.33102e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02681e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32681e-04\tAbsError: 1.15542e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 8.61535e+00\tAbsError: 1.17905e+17\n", + " Region: \"zone_1\"\tRelError: 7.44285e-01\tAbsError: 3.38569e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.43397e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.87545e-04\tAbsError: 3.07806e-01\n", + " Region: \"zone_3\"\tRelError: 7.87107e+00\tAbsError: 1.17905e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17750e-01\tAbsError: 5.81639e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.67341e-01\tAbsError: 5.97408e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.58509e+00\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.87924e-04\tAbsError: 3.07944e-01\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.99434e+00\tAbsError: 9.07460e+15\n", + " Region: \"zone_1\"\tRelError: 3.30452e+00\tAbsError: 4.29359e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.30452e+00\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.08442e-09\tAbsError: 2.11298e-06\n", + " Region: \"zone_3\"\tRelError: 1.68981e+00\tAbsError: 9.07460e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86122e-01\tAbsError: 5.35667e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.86097e-01\tAbsError: 3.71793e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17595e-01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.08597e-09\tAbsError: 2.11346e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.35530e+00\tAbsError: 2.87948e+16\n", + " Region: \"zone_1\"\tRelError: 2.27290e+00\tAbsError: 1.15223e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27265e+00\tAbsError: 2.57661e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.57720e-04\tAbsError: 8.94567e-02\n", + " Region: \"zone_3\"\tRelError: 1.08240e+00\tAbsError: 2.87948e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.59123e-01\tAbsError: 1.44061e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.01637e-01\tAbsError: 1.43888e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21384e-01\tAbsError: 2.47220e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.57720e-04\tAbsError: 8.94567e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.07637e+00\tAbsError: 1.35812e+14\n", + " Region: \"zone_1\"\tRelError: 8.30797e-02\tAbsError: 3.32939e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.30584e-02\tAbsError: 2.58851e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.13173e-05\tAbsError: 7.40875e-03\n", + " Region: \"zone_3\"\tRelError: 9.93286e-01\tAbsError: 1.35812e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.65266e-01\tAbsError: 8.15592e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.44014e-01\tAbsError: 5.42533e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.39844e-02\tAbsError: 2.58851e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.13173e-05\tAbsError: 7.40875e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.12307e+00\tAbsError: 1.60442e+16\n", + " Region: \"zone_1\"\tRelError: 1.49907e-01\tAbsError: 9.31426e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49713e-01\tAbsError: 2.58569e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93773e-04\tAbsError: 6.72856e-02\n", + " Region: \"zone_3\"\tRelError: 9.73164e-01\tAbsError: 1.60442e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39500e-01\tAbsError: 8.04160e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.83757e-01\tAbsError: 8.00261e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49713e-01\tAbsError: 2.43087e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93773e-04\tAbsError: 6.72856e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 6.05251e+00\tAbsError: 7.12298e+16\n", + " Region: \"zone_1\"\tRelError: 9.54106e-01\tAbsError: 5.37894e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.54025e-01\tAbsError: 2.58886e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.04593e-05\tAbsError: 2.79009e-02\n", + " Region: \"zone_3\"\tRelError: 5.09841e+00\tAbsError: 7.12298e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.89784e-01\tAbsError: 3.67872e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.99659e-01\tAbsError: 3.44425e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.40888e+00\tAbsError: 2.58912e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.04593e-05\tAbsError: 2.79009e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.64725e+00\tAbsError: 4.74556e+14\n", + " Region: \"zone_1\"\tRelError: 1.16564e-01\tAbsError: 8.37432e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16418e-01\tAbsError: 3.31003e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45721e-04\tAbsError: 5.06428e-02\n", + " Region: \"zone_3\"\tRelError: 1.53069e+00\tAbsError: 4.74556e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.69093e-01\tAbsError: 3.14532e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.61063e-01\tAbsError: 1.60024e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00388e-01\tAbsError: 3.31007e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45721e-04\tAbsError: 5.06428e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.48868e+00\tAbsError: 8.66364e+15\n", + " Region: \"zone_1\"\tRelError: 1.06272e+00\tAbsError: 3.63205e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06265e+00\tAbsError: 1.08343e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.34266e-05\tAbsError: 2.54862e-02\n", + " Region: \"zone_3\"\tRelError: 4.25956e-01\tAbsError: 8.66364e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94615e-01\tAbsError: 4.46596e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11861e-01\tAbsError: 4.19767e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19407e-01\tAbsError: 1.08344e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.34266e-05\tAbsError: 2.54862e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.54994e-01\tAbsError: 5.06788e+13\n", + " Region: \"zone_1\"\tRelError: 2.88221e-02\tAbsError: 1.30680e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88152e-02\tAbsError: 1.06617e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.92395e-06\tAbsError: 2.40632e-03\n", + " Region: \"zone_3\"\tRelError: 3.26172e-01\tAbsError: 5.06788e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16815e-01\tAbsError: 2.27548e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.02389e-02\tAbsError: 2.79240e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.91117e-02\tAbsError: 1.06618e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.92713e-06\tAbsError: 2.40746e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.25010e-01\tAbsError: 4.83168e+15\n", + " Region: \"zone_1\"\tRelError: 9.35029e-02\tAbsError: 6.02167e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.33558e-02\tAbsError: 9.16529e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47066e-04\tAbsError: 5.10514e-02\n", + " Region: \"zone_3\"\tRelError: 3.31507e-01\tAbsError: 4.83168e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74852e-01\tAbsError: 2.44485e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.96161e-02\tAbsError: 2.38683e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.68922e-02\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47066e-04\tAbsError: 5.10514e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.96439e+00\tAbsError: 2.12374e+16\n", + " Region: \"zone_1\"\tRelError: 1.45967e+00\tAbsError: 2.87618e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45886e+00\tAbsError: 9.16520e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03570e-04\tAbsError: 2.78453e-01\n", + " Region: \"zone_3\"\tRelError: 2.50473e+00\tAbsError: 2.12374e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31487e-01\tAbsError: 1.07624e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.30649e-02\tAbsError: 1.04749e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30937e+00\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03570e-04\tAbsError: 2.78453e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.13875e+00\tAbsError: 1.91429e+14\n", + " Region: \"zone_1\"\tRelError: 8.72362e-02\tAbsError: 3.41775e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.72123e-02\tAbsError: 2.58950e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.38317e-05\tAbsError: 8.28251e-03\n", + " Region: \"zone_3\"\tRelError: 1.05151e+00\tAbsError: 1.91429e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.88183e-01\tAbsError: 1.14582e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.74391e-01\tAbsError: 7.68472e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.89114e-02\tAbsError: 2.58546e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.38317e-05\tAbsError: 8.28251e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.05269e-01\tAbsError: 2.00168e+15\n", + " Region: \"zone_1\"\tRelError: 1.01873e-01\tAbsError: 2.51091e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01150e-01\tAbsError: 3.37405e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.23145e-04\tAbsError: 2.50754e-01\n", + " Region: \"zone_3\"\tRelError: 1.03396e-01\tAbsError: 2.00168e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.03281e-02\tAbsError: 1.03044e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.61663e-02\tAbsError: 9.71243e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.61783e-02\tAbsError: 3.37405e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.23145e-04\tAbsError: 2.50754e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.30726e-02\tAbsError: 8.23927e+12\n", + " Region: \"zone_1\"\tRelError: 3.37848e-03\tAbsError: 2.02621e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.37281e-03\tAbsError: 5.95073e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.66400e-06\tAbsError: 1.96670e-03\n", + " Region: \"zone_3\"\tRelError: 6.96941e-02\tAbsError: 8.23927e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.48256e-02\tAbsError: 4.47787e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.90463e-03\tAbsError: 3.76140e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95818e-03\tAbsError: 6.43767e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.66400e-06\tAbsError: 1.96670e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.30868e-01\tAbsError: 1.08442e+15\n", + " Region: \"zone_1\"\tRelError: 2.27753e-02\tAbsError: 2.15920e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21537e-02\tAbsError: 2.84606e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.21607e-04\tAbsError: 2.15635e-01\n", + " Region: \"zone_3\"\tRelError: 1.08092e-01\tAbsError: 1.08442e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.76472e-02\tAbsError: 4.26455e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.43864e-02\tAbsError: 6.57964e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54371e-02\tAbsError: 2.84606e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.21607e-04\tAbsError: 2.15635e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.06736e+00\tAbsError: 1.67079e+15\n", + " Region: \"zone_1\"\tRelError: 1.87002e-01\tAbsError: 2.94468e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86917e-01\tAbsError: 5.45669e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.47563e-05\tAbsError: 2.93922e-02\n", + " Region: \"zone_3\"\tRelError: 1.88036e+00\tAbsError: 1.67079e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95806e-02\tAbsError: 8.61655e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.32450e-03\tAbsError: 8.09135e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85737e+00\tAbsError: 5.47236e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.50770e-05\tAbsError: 2.95046e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.13297e-01\tAbsError: 7.52929e+13\n", + " Region: \"zone_1\"\tRelError: 3.44170e-02\tAbsError: 1.51248e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.44088e-02\tAbsError: 1.22657e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.23601e-06\tAbsError: 2.85918e-03\n", + " Region: \"zone_3\"\tRelError: 3.78880e-01\tAbsError: 7.52929e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.42275e-01\tAbsError: 3.28684e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.01785e-01\tAbsError: 4.24245e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.48113e-02\tAbsError: 1.22657e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.23601e-06\tAbsError: 2.85918e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.73594e-01\tAbsError: 4.04568e+14\n", + " Region: \"zone_1\"\tRelError: 1.14252e-01\tAbsError: 1.60779e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14206e-01\tAbsError: 6.91107e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.61654e-05\tAbsError: 1.60088e-02\n", + " Region: \"zone_3\"\tRelError: 1.59342e-01\tAbsError: 4.04568e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.16744e-03\tAbsError: 2.05385e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.06128e-03\tAbsError: 1.99183e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49067e-01\tAbsError: 7.27188e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.61654e-05\tAbsError: 1.60088e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.22575e-04\tAbsError: 9.29075e+11\n", + " Region: \"zone_1\"\tRelError: 7.12288e-05\tAbsError: 1.15614e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.09000e-05\tAbsError: 1.32871e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.28820e-07\tAbsError: 1.14285e-04\n", + " Region: \"zone_3\"\tRelError: 5.51346e-04\tAbsError: 9.29075e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42058e-04\tAbsError: 2.36026e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.92710e-05\tAbsError: 6.93050e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.19689e-04\tAbsError: 1.33393e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.28820e-07\tAbsError: 1.14285e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.55617e-01\tAbsError: 2.35794e+14\n", + " Region: \"zone_1\"\tRelError: 4.99367e-02\tAbsError: 1.38607e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.98970e-02\tAbsError: 6.98741e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.97528e-05\tAbsError: 1.37908e-02\n", + " Region: \"zone_3\"\tRelError: 1.05680e-01\tAbsError: 2.35794e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.27300e-03\tAbsError: 1.18548e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.21148e-03\tAbsError: 1.17246e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.51557e-02\tAbsError: 7.06637e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.97528e-05\tAbsError: 1.37908e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.99757e-02\tAbsError: 6.03219e+13\n", + " Region: \"zone_1\"\tRelError: 5.28092e-03\tAbsError: 6.07421e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.26342e-03\tAbsError: 6.43272e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75062e-05\tAbsError: 6.06778e-03\n", + " Region: \"zone_3\"\tRelError: 2.46948e-02\tAbsError: 6.03219e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52421e-04\tAbsError: 2.92320e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.21852e-04\tAbsError: 3.10899e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41030e-02\tAbsError: 6.47112e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75095e-05\tAbsError: 6.06885e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.55296e-02\tAbsError: 1.46785e+13\n", + " Region: \"zone_1\"\tRelError: 2.49644e-03\tAbsError: 2.18616e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49041e-03\tAbsError: 9.01307e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.03652e-06\tAbsError: 2.09603e-03\n", + " Region: \"zone_3\"\tRelError: 8.30332e-02\tAbsError: 1.46785e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.51171e-02\tAbsError: 7.64842e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.70344e-03\tAbsError: 7.03012e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20658e-03\tAbsError: 1.00679e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.03652e-06\tAbsError: 2.09603e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.46364e-02\tAbsError: 3.29563e+13\n", + " Region: \"zone_1\"\tRelError: 1.47274e-02\tAbsError: 7.28157e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47064e-02\tAbsError: 5.33486e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.09833e-05\tAbsError: 7.27623e-03\n", + " Region: \"zone_3\"\tRelError: 1.99090e-02\tAbsError: 3.29563e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.19292e-04\tAbsError: 1.67682e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.25236e-04\tAbsError: 1.61881e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90434e-02\tAbsError: 5.85649e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.09915e-05\tAbsError: 7.27922e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.27650e-04\tAbsError: 9.52408e+10\n", + " Region: \"zone_1\"\tRelError: 2.13213e-05\tAbsError: 5.43725e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.11649e-05\tAbsError: 6.28014e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56399e-07\tAbsError: 5.43097e-05\n", + " Region: \"zone_3\"\tRelError: 1.06329e-04\tAbsError: 9.52408e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.09144e-06\tAbsError: 6.70989e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.02116e-06\tAbsError: 2.81420e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.40598e-05\tAbsError: 6.55661e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56426e-07\tAbsError: 5.43178e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.12114e-02\tAbsError: 1.98754e+13\n", + " Region: \"zone_1\"\tRelError: 7.04172e-03\tAbsError: 6.58751e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.02275e-03\tAbsError: 5.51750e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89733e-05\tAbsError: 6.58199e-03\n", + " Region: \"zone_3\"\tRelError: 1.41697e-02\tAbsError: 1.98754e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43525e-04\tAbsError: 1.00008e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.47254e-04\tAbsError: 9.87467e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32599e-02\tAbsError: 5.78756e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89775e-05\tAbsError: 6.58354e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.10405e-01\tAbsError: 3.12560e+13\n", + " Region: \"zone_1\"\tRelError: 1.08840e-02\tAbsError: 4.61195e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08827e-02\tAbsError: 1.71511e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32204e-06\tAbsError: 4.59479e-04\n", + " Region: \"zone_3\"\tRelError: 9.95213e-02\tAbsError: 3.12560e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34947e-04\tAbsError: 1.52362e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.27748e-04\tAbsError: 1.60198e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.92573e-02\tAbsError: 1.72813e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32271e-06\tAbsError: 4.59705e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.58436e-04\tAbsError: 9.76197e+11\n", + " Region: \"zone_1\"\tRelError: 6.87963e-05\tAbsError: 1.52764e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.83606e-05\tAbsError: 1.30863e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.35775e-07\tAbsError: 1.51456e-04\n", + " Region: \"zone_3\"\tRelError: 5.89639e-04\tAbsError: 9.76197e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.93148e-04\tAbsError: 2.43686e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.21484e-05\tAbsError: 7.32511e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.03907e-04\tAbsError: 1.33351e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.35775e-07\tAbsError: 1.51456e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.13924e-02\tAbsError: 1.85414e+13\n", + " Region: \"zone_1\"\tRelError: 9.11864e-03\tAbsError: 9.59661e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.11588e-03\tAbsError: 2.59243e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75871e-06\tAbsError: 9.57068e-04\n", + " Region: \"zone_3\"\tRelError: 1.22737e-02\tAbsError: 1.85414e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38572e-04\tAbsError: 9.41604e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.34475e-04\tAbsError: 9.12538e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17979e-02\tAbsError: 2.84729e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75985e-06\tAbsError: 9.57492e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.50840e-05\tAbsError: 4.91699e+10\n", + " Region: \"zone_1\"\tRelError: 7.02249e-06\tAbsError: 4.27319e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.01033e-06\tAbsError: 4.22210e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21557e-08\tAbsError: 4.23096e-06\n", + " Region: \"zone_3\"\tRelError: 3.80615e-05\tAbsError: 4.91699e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.39542e-06\tAbsError: 1.90691e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.36606e-06\tAbsError: 3.01008e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.12878e-05\tAbsError: 4.24207e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21614e-08\tAbsError: 4.23302e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:20\u001b[0m.\u001b[1;36m551\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:20\u001b[0m.\u001b[1;36m551\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5199999999999999\u001b[0m \n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.24258e-02\tAbsError: 1.10918e+13\n", + " Region: \"zone_1\"\tRelError: 4.12899e-03\tAbsError: 9.16825e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.12635e-03\tAbsError: 2.69238e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.63359e-06\tAbsError: 9.14133e-04\n", + " Region: \"zone_3\"\tRelError: 8.29681e-03\tAbsError: 1.10918e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.48339e-04\tAbsError: 5.58229e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.46113e-04\tAbsError: 5.50951e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.79972e-03\tAbsError: 2.89698e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.63458e-06\tAbsError: 9.14508e-04\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.63047e-03\tAbsError: 9.09027e+11\n", + " Region: \"zone_1\"\tRelError: 4.56990e-04\tAbsError: 3.44629e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.55999e-04\tAbsError: 1.41300e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.91190e-07\tAbsError: 3.44488e-04\n", + " Region: \"zone_3\"\tRelError: 4.17348e-03\tAbsError: 9.09027e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33335e-06\tAbsError: 4.38047e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02288e-05\tAbsError: 4.70980e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.15793e-03\tAbsError: 1.42246e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.91601e-07\tAbsError: 3.44637e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.65798e-04\tAbsError: 1.22174e+11\n", + " Region: \"zone_1\"\tRelError: 2.79805e-05\tAbsError: 5.56854e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78204e-05\tAbsError: 8.16520e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60127e-07\tAbsError: 5.56037e-05\n", + " Region: \"zone_3\"\tRelError: 1.37818e-04\tAbsError: 1.22174e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.04045e-06\tAbsError: 8.28593e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.95339e-06\tAbsError: 3.93150e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21664e-04\tAbsError: 8.53009e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60129e-07\tAbsError: 5.56037e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.60352e-03\tAbsError: 2.57243e+12\n", + " Region: \"zone_1\"\tRelError: 1.54297e-03\tAbsError: 4.44694e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54169e-03\tAbsError: 3.49758e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27787e-06\tAbsError: 4.44344e-04\n", + " Region: \"zone_3\"\tRelError: 2.06056e-03\tAbsError: 2.57243e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.32361e-05\tAbsError: 1.30390e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.27108e-05\tAbsError: 1.26853e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.99333e-03\tAbsError: 3.79227e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27835e-06\tAbsError: 4.44517e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.18008e-03\tAbsError: 1.59787e+12\n", + " Region: \"zone_1\"\tRelError: 7.30404e-04\tAbsError: 4.14536e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.29211e-04\tAbsError: 3.64518e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19313e-06\tAbsError: 4.14171e-04\n", + " Region: \"zone_3\"\tRelError: 1.44968e-03\tAbsError: 1.59787e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.59026e-05\tAbsError: 8.02763e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.55751e-05\tAbsError: 7.95108e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37700e-03\tAbsError: 3.97752e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19336e-06\tAbsError: 4.14251e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.98221e+01\tAbsError: 8.64531e+15\n", + " Region: \"zone_1\"\tRelError: 1.81187e+01\tAbsError: 4.19656e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81187e+01\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.58846e-09\tAbsError: 2.63725e-06\n", + " Region: \"zone_3\"\tRelError: 1.70342e+00\tAbsError: 8.64531e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78201e-01\tAbsError: 4.98895e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.78139e-01\tAbsError: 3.65636e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47079e-01\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.58846e-09\tAbsError: 2.63727e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.49771e-03\tAbsError: 1.64940e+12\n", + " Region: \"zone_1\"\tRelError: 6.42053e-04\tAbsError: 1.77929e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.42002e-04\tAbsError: 9.99896e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.09050e-08\tAbsError: 1.76929e-05\n", + " Region: \"zone_3\"\tRelError: 5.85566e-03\tAbsError: 1.64940e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16109e-06\tAbsError: 8.03293e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.70130e-06\tAbsError: 8.46106e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.84174e-03\tAbsError: 1.00703e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.09341e-08\tAbsError: 1.77035e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.29840e-05\tAbsError: 4.97114e+10\n", + " Region: \"zone_1\"\tRelError: 6.74775e-06\tAbsError: 6.07457e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.73042e-06\tAbsError: 4.22286e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73315e-08\tAbsError: 6.03234e-06\n", + " Region: \"zone_3\"\tRelError: 3.62362e-05\tAbsError: 4.97114e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.35448e-06\tAbsError: 1.86949e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.32535e-06\tAbsError: 3.10165e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.95390e-05\tAbsError: 4.25647e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73388e-08\tAbsError: 6.03496e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:22\u001b[0m.\u001b[1;36m766\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.5399999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.51864e-03\tAbsError: 1.12473e+12\n", + " Region: \"zone_1\"\tRelError: 6.50046e-04\tAbsError: 8.14798e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.49813e-04\tAbsError: 1.44801e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.33906e-07\tAbsError: 8.13350e-05\n", + " Region: \"zone_3\"\tRelError: 8.68591e-04\tAbsError: 1.12473e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.45444e-05\tAbsError: 5.70557e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.42123e-05\tAbsError: 5.54169e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.39600e-04\tAbsError: 1.62373e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.34000e-07\tAbsError: 8.13686e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 9.04358e-04\tAbsError: 6.91618e+11\n", + " Region: \"zone_1\"\tRelError: 3.02587e-04\tAbsError: 7.78938e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.02363e-04\tAbsError: 1.55785e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23501e-07\tAbsError: 7.77380e-05\n", + " Region: \"zone_3\"\tRelError: 6.01772e-04\tAbsError: 6.91618e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.55559e-05\tAbsError: 3.47877e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.53466e-05\tAbsError: 3.43741e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.70646e-04\tAbsError: 1.69595e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23586e-07\tAbsError: 7.77681e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.39508e+00\tAbsError: 1.51600e+15\n", + " Region: \"zone_1\"\tRelError: 8.81064e-01\tAbsError: 7.03064e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.80954e-01\tAbsError: 3.19527e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10369e-04\tAbsError: 3.83537e-02\n", + " Region: \"zone_3\"\tRelError: 1.51402e+00\tAbsError: 1.51600e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.56486e-01\tAbsError: 8.49352e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.37103e-01\tAbsError: 6.66645e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20319e-01\tAbsError: 3.19528e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10369e-04\tAbsError: 3.83537e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 5.44825e-04\tAbsError: 5.87780e+10\n", + " Region: \"zone_1\"\tRelError: 5.39394e-05\tAbsError: 2.02429e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.38812e-05\tAbsError: 6.87611e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.82246e-08\tAbsError: 2.02360e-05\n", + " Region: \"zone_3\"\tRelError: 4.90886e-04\tAbsError: 5.87780e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46411e-07\tAbsError: 2.85251e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.30809e-07\tAbsError: 3.02529e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.90250e-04\tAbsError: 6.91269e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.82487e-08\tAbsError: 2.02448e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.05747e-04\tAbsError: 2.04109e+11\n", + " Region: \"zone_1\"\tRelError: 1.31137e-04\tAbsError: 3.07956e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31048e-04\tAbsError: 2.77993e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.84829e-08\tAbsError: 3.07678e-05\n", + " Region: \"zone_3\"\tRelError: 1.74610e-04\tAbsError: 2.04109e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.64104e-06\tAbsError: 1.03365e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.58639e-06\tAbsError: 1.00744e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69295e-04\tAbsError: 3.09340e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.85176e-08\tAbsError: 3.07806e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.79935e+00\tAbsError: 9.07065e+15\n", + " Region: \"zone_1\"\tRelError: 6.07018e+00\tAbsError: 4.29363e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.07018e+00\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.28179e-09\tAbsError: 2.52849e-06\n", + " Region: \"zone_3\"\tRelError: 1.72916e+00\tAbsError: 9.07065e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86123e-01\tAbsError: 5.17830e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.86053e-01\tAbsError: 3.89234e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56989e-01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.28214e-09\tAbsError: 2.52864e-06\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.87260e-04\tAbsError: 1.29403e+11\n", + " Region: \"zone_1\"\tRelError: 6.28801e-05\tAbsError: 2.91909e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.27963e-05\tAbsError: 3.06059e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.38368e-08\tAbsError: 2.91603e-05\n", + " Region: \"zone_3\"\tRelError: 1.24379e-04\tAbsError: 1.29403e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91169e-06\tAbsError: 6.49895e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.87741e-06\tAbsError: 6.44135e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18506e-04\tAbsError: 3.32307e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.38700e-08\tAbsError: 2.91722e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.26009e+00\tAbsError: 9.34620e+14\n", + " Region: \"zone_1\"\tRelError: 2.72242e-01\tAbsError: 3.47960e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.72216e-01\tAbsError: 2.58901e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.56581e-05\tAbsError: 8.90586e-03\n", + " Region: \"zone_3\"\tRelError: 9.87851e-01\tAbsError: 9.34620e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.66784e-01\tAbsError: 4.28739e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.14300e-01\tAbsError: 5.05881e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06741e-01\tAbsError: 2.58901e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.56594e-05\tAbsError: 8.90651e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.92595e-04\tAbsError: 9.49473e+10\n", + " Region: \"zone_1\"\tRelError: 3.87978e-05\tAbsError: 2.02444e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87920e-05\tAbsError: 5.96621e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.80757e-09\tAbsError: 2.01847e-06\n", + " Region: \"zone_3\"\tRelError: 3.53797e-04\tAbsError: 9.49473e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.10989e-07\tAbsError: 4.62324e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.83783e-07\tAbsError: 4.87150e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52997e-04\tAbsError: 6.00786e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.81025e-09\tAbsError: 2.01943e-06\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.06787e-04\tAbsError: 7.36056e+10\n", + " Region: \"zone_1\"\tRelError: 4.57872e-05\tAbsError: 6.53937e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.57685e-05\tAbsError: 1.01369e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87770e-08\tAbsError: 6.52923e-06\n", + " Region: \"zone_3\"\tRelError: 6.10000e-05\tAbsError: 7.36056e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.53086e-07\tAbsError: 3.73114e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.28982e-07\tAbsError: 3.62943e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.90992e-05\tAbsError: 1.13481e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87845e-08\tAbsError: 6.53202e-06\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 6.51617e-05\tAbsError: 4.65398e+10\n", + " Region: \"zone_1\"\tRelError: 2.18609e-05\tAbsError: 6.36014e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18427e-05\tAbsError: 1.11819e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82534e-08\tAbsError: 6.34896e-06\n", + " Region: \"zone_3\"\tRelError: 4.33008e-05\tAbsError: 4.65398e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04809e-06\tAbsError: 2.33986e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03254e-06\tAbsError: 2.31412e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.12019e-05\tAbsError: 1.20844e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82605e-08\tAbsError: 6.35150e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:25\u001b[0m.\u001b[1;36m809\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.8\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.87726e+00\tAbsError: 2.07784e+15\n", + " Region: \"zone_1\"\tRelError: 3.30726e-01\tAbsError: 7.19464e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.30614e-01\tAbsError: 3.31002e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11788e-04\tAbsError: 3.88462e-02\n", + " Region: \"zone_3\"\tRelError: 1.54653e+00\tAbsError: 2.07784e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.70151e-01\tAbsError: 1.12779e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.49677e-01\tAbsError: 9.50051e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26591e-01\tAbsError: 3.31003e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11788e-04\tAbsError: 3.88462e-02\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 5.03275e-05\tAbsError: 9.08763e+09\n", + " Region: \"zone_1\"\tRelError: 4.97773e-06\tAbsError: 1.23989e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.97416e-06\tAbsError: 6.85123e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.56554e-09\tAbsError: 1.23921e-06\n", + " Region: \"zone_3\"\tRelError: 4.53497e-05\tAbsError: 9.08763e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.78500e-08\tAbsError: 4.42118e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.59273e-08\tAbsError: 4.66645e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.52724e-05\tAbsError: 6.89457e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.56702e-09\tAbsError: 1.23975e-06\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.39966e-05\tAbsError: 1.56028e+10\n", + " Region: \"zone_1\"\tRelError: 1.02996e-05\tAbsError: 2.15196e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02934e-05\tAbsError: 2.21173e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.18226e-09\tAbsError: 2.14975e-06\n", + " Region: \"zone_3\"\tRelError: 1.36971e-05\tAbsError: 1.56028e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.02027e-07\tAbsError: 7.89960e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.97311e-07\tAbsError: 7.70324e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32915e-05\tAbsError: 2.46563e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.18487e-09\tAbsError: 2.15070e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:26\u001b[0m.\u001b[1;36m431\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.9\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:26\u001b[0m.\u001b[1;36m492\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:26\u001b[0m.\u001b[1;36m492\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.8388888888888889\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Iteration: 3\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 4.15200e-01\tAbsError: 3.54843e+14\n", + " Region: \"zone_1\"\tRelError: 5.18783e-02\tAbsError: 2.16460e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.18467e-02\tAbsError: 1.06619e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.16468e-05\tAbsError: 1.09842e-02\n", + " Region: \"zone_3\"\tRelError: 3.63322e-01\tAbsError: 3.54843e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13274e-01\tAbsError: 1.70567e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13884e-01\tAbsError: 1.84276e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.61323e-02\tAbsError: 1.06619e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.16468e-05\tAbsError: 1.09846e-02\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.15795e+00\tAbsError: 1.43317e+15\n", + " Region: \"zone_1\"\tRelError: 1.12652e-01\tAbsError: 3.52450e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12625e-01\tAbsError: 2.58896e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69531e-05\tAbsError: 9.35535e-03\n", + " Region: \"zone_3\"\tRelError: 1.04530e+00\tAbsError: 1.43317e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89809e-01\tAbsError: 6.27661e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.39858e-01\tAbsError: 8.05511e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15604e-01\tAbsError: 2.58543e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69724e-05\tAbsError: 9.36224e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.97502e+01\tAbsError: 1.32808e+17\n", + " Region: \"zone_1\"\tRelError: 2.76074e+01\tAbsError: 4.09563e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76074e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.00798e-09\tAbsError: 2.08971e-06\n", + " Region: \"zone_3\"\tRelError: 2.14284e+00\tAbsError: 1.32808e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.64512e-01\tAbsError: 6.68287e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.62033e-01\tAbsError: 6.59795e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.16298e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.01029e-09\tAbsError: 2.09057e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.01228e-01\tAbsError: 6.23996e+13\n", + " Region: \"zone_1\"\tRelError: 2.72826e-02\tAbsError: 5.51066e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.72672e-02\tAbsError: 1.71694e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53768e-05\tAbsError: 5.33897e-03\n", + " Region: \"zone_3\"\tRelError: 7.39455e-02\tAbsError: 6.23996e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.10935e-02\tAbsError: 3.59735e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.41458e-03\tAbsError: 2.64261e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.42212e-03\tAbsError: 1.72806e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53768e-05\tAbsError: 5.33897e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.75731e+01\tAbsError: 5.68784e+17\n", + " Region: \"zone_1\"\tRelError: 3.83859e+01\tAbsError: 4.09543e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.83859e+01\tAbsError: 4.09541e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.16236e-10\tAbsError: 1.79418e-07\n", + " Region: \"zone_3\"\tRelError: 1.91873e+01\tAbsError: 5.68784e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.35377e-01\tAbsError: 2.75826e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.22188e-01\tAbsError: 2.92959e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77297e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.16460e-10\tAbsError: 1.79501e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.99733e+01\tAbsError: 2.26128e+17\n", + " Region: \"zone_1\"\tRelError: 2.03845e+01\tAbsError: 4.20731e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03845e+01\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43640e-09\tAbsError: 4.99480e-07\n", + " Region: \"zone_3\"\tRelError: 9.58886e+00\tAbsError: 2.26128e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69382e-01\tAbsError: 1.14820e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.65088e-01\tAbsError: 1.11307e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 8.05439e+00\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43701e-09\tAbsError: 4.99700e-07\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.66101e-01\tAbsError: 5.71776e+14\n", + " Region: \"zone_1\"\tRelError: 4.21342e-02\tAbsError: 2.70003e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.20918e-02\tAbsError: 1.22659e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.24522e-05\tAbsError: 1.47344e-02\n", + " Region: \"zone_3\"\tRelError: 4.23967e-01\tAbsError: 5.71776e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.40635e-01\tAbsError: 2.83777e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.40006e-01\tAbsError: 2.87999e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.32840e-02\tAbsError: 1.22660e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.24816e-05\tAbsError: 1.47449e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 8.61535e+00\tAbsError: 1.17905e+17\n", + " Region: \"zone_1\"\tRelError: 7.44285e-01\tAbsError: 3.38569e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.43397e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.87545e-04\tAbsError: 3.07806e-01\n", + " Region: \"zone_3\"\tRelError: 7.87107e+00\tAbsError: 1.17905e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17750e-01\tAbsError: 5.81639e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.67341e-01\tAbsError: 5.97408e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.58509e+00\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.87924e-04\tAbsError: 3.07944e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.18909e-03\tAbsError: 2.50797e+12\n", + " Region: \"zone_1\"\tRelError: 3.37136e-04\tAbsError: 3.99230e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35995e-04\tAbsError: 2.73321e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14096e-06\tAbsError: 3.96496e-04\n", + " Region: \"zone_3\"\tRelError: 1.85195e-03\tAbsError: 2.50797e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.95361e-04\tAbsError: 8.43932e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.13660e-04\tAbsError: 1.66404e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34179e-03\tAbsError: 2.78356e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14125e-06\tAbsError: 3.96599e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.10779e+01\tAbsError: 4.06443e+17\n", + " Region: \"zone_1\"\tRelError: 1.97168e+01\tAbsError: 4.69738e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97155e+01\tAbsError: 3.07629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26517e-03\tAbsError: 4.38975e-01\n", + " Region: \"zone_3\"\tRelError: 1.13612e+01\tAbsError: 4.06443e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.26663e-01\tAbsError: 2.03016e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.10593e-01\tAbsError: 2.03427e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03227e+01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26614e-03\tAbsError: 4.39294e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 6.24242e+01\tAbsError: 2.24081e+17\n", + " Region: \"zone_1\"\tRelError: 2.85577e+00\tAbsError: 3.14825e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.85496e+00\tAbsError: 3.20819e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.15607e-04\tAbsError: 2.82743e-01\n", + " Region: \"zone_3\"\tRelError: 5.95684e+01\tAbsError: 2.24081e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.16910e-01\tAbsError: 1.12507e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.44277e-01\tAbsError: 1.11574e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 5.83064e+01\tAbsError: 3.20820e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.15607e-04\tAbsError: 2.82743e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.84053e-02\tAbsError: 1.08690e+14\n", + " Region: \"zone_1\"\tRelError: 8.68078e-03\tAbsError: 8.41083e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.65731e-03\tAbsError: 2.61591e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.34713e-05\tAbsError: 8.14923e-03\n", + " Region: \"zone_3\"\tRelError: 8.97245e-02\tAbsError: 1.08690e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.02382e-02\tAbsError: 6.26697e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.25943e-02\tAbsError: 4.60204e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.86852e-03\tAbsError: 2.62736e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.34713e-05\tAbsError: 8.14923e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 6.05251e+00\tAbsError: 7.12298e+16\n", + " Region: \"zone_1\"\tRelError: 9.54106e-01\tAbsError: 5.37894e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.54025e-01\tAbsError: 2.58886e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.04593e-05\tAbsError: 2.79009e-02\n", + " Region: \"zone_3\"\tRelError: 5.09841e+00\tAbsError: 7.12298e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.89784e-01\tAbsError: 3.67872e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.99659e-01\tAbsError: 3.44425e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.40888e+00\tAbsError: 2.58912e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.04593e-05\tAbsError: 2.79009e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.99123e-04\tAbsError: 3.24565e+11\n", + " Region: \"zone_1\"\tRelError: 7.31805e-05\tAbsError: 1.49703e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.27499e-05\tAbsError: 1.95433e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.30598e-07\tAbsError: 1.49507e-04\n", + " Region: \"zone_3\"\tRelError: 3.25943e-04\tAbsError: 3.24565e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84790e-05\tAbsError: 2.08597e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.82567e-05\tAbsError: 1.15968e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88776e-04\tAbsError: 2.03345e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.30635e-07\tAbsError: 1.49522e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 4.48960e+02\tAbsError: 9.69691e+16\n", + " Region: \"zone_1\"\tRelError: 4.44741e+02\tAbsError: 1.46848e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44741e+02\tAbsError: 2.58943e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47880e-04\tAbsError: 1.20954e-01\n", + " Region: \"zone_3\"\tRelError: 4.21888e+00\tAbsError: 9.69691e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.30659e-01\tAbsError: 4.85459e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34310e-01\tAbsError: 4.84232e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85356e+00\tAbsError: 2.58906e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.48053e-04\tAbsError: 1.21009e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.41397e+01\tAbsError: 1.19776e+17\n", + " Region: \"zone_1\"\tRelError: 1.71543e+01\tAbsError: 1.01229e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.71541e+01\tAbsError: 2.58798e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17159e-04\tAbsError: 7.53489e-02\n", + " Region: \"zone_3\"\tRelError: 6.98541e+00\tAbsError: 1.19776e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.67463e-01\tAbsError: 6.05237e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.74800e-01\tAbsError: 5.92520e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.34293e+00\tAbsError: 2.58798e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17199e-04\tAbsError: 7.53648e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.70865e-03\tAbsError: 3.95368e+12\n", + " Region: \"zone_1\"\tRelError: 5.98822e-04\tAbsError: 5.60907e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.97219e-04\tAbsError: 3.89502e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60297e-06\tAbsError: 5.57012e-04\n", + " Region: \"zone_3\"\tRelError: 3.10982e-03\tAbsError: 3.95368e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.50396e-04\tAbsError: 1.41982e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.19860e-04\tAbsError: 2.53386e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.33796e-03\tAbsError: 3.96587e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60304e-06\tAbsError: 5.57046e-04\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.96439e+00\tAbsError: 2.12374e+16\n", + " Region: \"zone_1\"\tRelError: 1.45967e+00\tAbsError: 2.87618e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45886e+00\tAbsError: 9.16520e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03570e-04\tAbsError: 2.78453e-01\n", + " Region: \"zone_3\"\tRelError: 2.50473e+00\tAbsError: 2.12374e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31487e-01\tAbsError: 1.07624e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.30649e-02\tAbsError: 1.04749e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30937e+00\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03570e-04\tAbsError: 2.78453e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.48281e-04\tAbsError: 1.40879e+11\n", + " Region: \"zone_1\"\tRelError: 2.64953e-05\tAbsError: 1.39788e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64554e-05\tAbsError: 9.13637e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.99031e-08\tAbsError: 1.38874e-05\n", + " Region: \"zone_3\"\tRelError: 1.21785e-04\tAbsError: 1.40879e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.26051e-06\tAbsError: 6.52185e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.19355e-06\tAbsError: 7.56605e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05291e-04\tAbsError: 9.40395e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.99185e-08\tAbsError: 1.38930e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.03712e+00\tAbsError: 1.21527e+16\n", + " Region: \"zone_1\"\tRelError: 1.00977e+00\tAbsError: 5.07362e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00834e+00\tAbsError: 9.16487e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42992e-03\tAbsError: 4.98197e-01\n", + " Region: \"zone_3\"\tRelError: 4.02736e+00\tAbsError: 1.21527e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.24782e-02\tAbsError: 5.84262e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.44637e-02\tAbsError: 6.31012e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.96898e+00\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43302e-03\tAbsError: 4.99291e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.35007e+00\tAbsError: 2.67006e+16\n", + " Region: \"zone_1\"\tRelError: 7.34338e-01\tAbsError: 2.86457e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.33542e-01\tAbsError: 1.08342e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.95408e-04\tAbsError: 2.75623e-01\n", + " Region: \"zone_3\"\tRelError: 6.15729e-01\tAbsError: 2.67006e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04981e-01\tAbsError: 1.33915e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.31768e-02\tAbsError: 1.33091e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.66775e-01\tAbsError: 1.08344e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.95408e-04\tAbsError: 2.75623e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 5.03905e-04\tAbsError: 4.29222e+11\n", + " Region: \"zone_1\"\tRelError: 9.36879e-05\tAbsError: 2.36804e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.30066e-05\tAbsError: 2.54166e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.81308e-07\tAbsError: 2.36550e-04\n", + " Region: \"zone_3\"\tRelError: 4.10217e-04\tAbsError: 4.29222e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.41988e-05\tAbsError: 2.77763e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.38677e-05\tAbsError: 1.51459e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.61470e-04\tAbsError: 2.67086e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.81308e-07\tAbsError: 2.36550e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.06736e+00\tAbsError: 1.67079e+15\n", + " Region: \"zone_1\"\tRelError: 1.87002e-01\tAbsError: 2.94468e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86917e-01\tAbsError: 5.45669e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.47563e-05\tAbsError: 2.93922e-02\n", + " Region: \"zone_3\"\tRelError: 1.88036e+00\tAbsError: 1.67079e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95806e-02\tAbsError: 8.61655e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.32450e-03\tAbsError: 8.09135e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85737e+00\tAbsError: 5.47236e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.50770e-05\tAbsError: 2.95046e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.41293e-05\tAbsError: 1.23437e+10\n", + " Region: \"zone_1\"\tRelError: 2.60795e-06\tAbsError: 7.73969e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58570e-06\tAbsError: 7.10643e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.22527e-08\tAbsError: 7.73258e-06\n", + " Region: \"zone_3\"\tRelError: 1.15214e-05\tAbsError: 1.23437e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.31680e-07\tAbsError: 8.51809e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.19940e-07\tAbsError: 3.82564e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02475e-05\tAbsError: 7.37729e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.22569e-08\tAbsError: 7.73418e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:33\u001b[0m.\u001b[1;36m460\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:33\u001b[0m.\u001b[1;36m460\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6249999999999999\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.86687e-01\tAbsError: 2.60316e+15\n", + " Region: \"zone_1\"\tRelError: 1.88189e-01\tAbsError: 3.83312e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88079e-01\tAbsError: 5.27222e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10379e-04\tAbsError: 3.82785e-02\n", + " Region: \"zone_3\"\tRelError: 1.98497e-01\tAbsError: 2.60316e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.41703e-02\tAbsError: 1.34666e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.26131e-03\tAbsError: 1.25651e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81955e-01\tAbsError: 5.32997e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10741e-04\tAbsError: 3.84054e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.22708e-01\tAbsError: 3.87768e+15\n", + " Region: \"zone_1\"\tRelError: 1.91968e-01\tAbsError: 6.75386e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90026e-01\tAbsError: 2.52604e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94152e-03\tAbsError: 6.75134e-01\n", + " Region: \"zone_3\"\tRelError: 7.30741e-01\tAbsError: 3.87768e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.56619e-03\tAbsError: 1.77246e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.53274e-03\tAbsError: 2.10521e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.16698e-01\tAbsError: 2.55458e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94389e-03\tAbsError: 6.75970e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.52598e-04\tAbsError: 2.26713e+11\n", + " Region: \"zone_1\"\tRelError: 4.63661e-05\tAbsError: 1.62759e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.63197e-05\tAbsError: 1.37060e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.63731e-08\tAbsError: 1.61389e-05\n", + " Region: \"zone_3\"\tRelError: 2.06232e-04\tAbsError: 2.26713e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28007e-05\tAbsError: 1.09151e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.27071e-05\tAbsError: 1.17562e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80678e-04\tAbsError: 1.41716e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.63910e-08\tAbsError: 1.61454e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.99757e-02\tAbsError: 6.03219e+13\n", + " Region: \"zone_1\"\tRelError: 5.28092e-03\tAbsError: 6.07421e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.26342e-03\tAbsError: 6.43272e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75062e-05\tAbsError: 6.06778e-03\n", + " Region: \"zone_3\"\tRelError: 2.46948e-02\tAbsError: 6.03219e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52421e-04\tAbsError: 2.92320e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.21852e-04\tAbsError: 3.10899e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41030e-02\tAbsError: 6.47112e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75095e-05\tAbsError: 6.06885e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.14246e+01\tAbsError: 9.22518e+15\n", + " Region: \"zone_1\"\tRelError: 9.67873e+00\tAbsError: 4.19633e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.67873e+00\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09432e-09\tAbsError: 3.80869e-07\n", + " Region: \"zone_3\"\tRelError: 1.74591e+00\tAbsError: 9.22518e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78063e-01\tAbsError: 4.88541e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.77898e-01\tAbsError: 4.33977e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89954e-01\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09484e-09\tAbsError: 3.81056e-07\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.68613e-03\tAbsError: 1.19599e+14\n", + " Region: \"zone_1\"\tRelError: 1.18191e-03\tAbsError: 4.76234e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16819e-03\tAbsError: 9.37959e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37156e-05\tAbsError: 4.75296e-03\n", + " Region: \"zone_3\"\tRelError: 2.50423e-03\tAbsError: 1.19599e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.83643e-04\tAbsError: 5.86149e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.96793e-04\tAbsError: 6.09836e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91007e-03\tAbsError: 9.45545e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37174e-05\tAbsError: 4.75351e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.39826e+00\tAbsError: 3.43096e+15\n", + " Region: \"zone_1\"\tRelError: 2.04849e-01\tAbsError: 4.45309e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04721e-01\tAbsError: 2.05839e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27433e-04\tAbsError: 4.43251e-02\n", + " Region: \"zone_3\"\tRelError: 2.19341e+00\tAbsError: 3.43096e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46827e-03\tAbsError: 1.70482e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.46042e-03\tAbsError: 1.72614e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18535e+00\tAbsError: 2.07760e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27493e-04\tAbsError: 4.43450e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.37529e-05\tAbsError: 1.40904e+10\n", + " Region: \"zone_1\"\tRelError: 2.56157e-06\tAbsError: 1.29255e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52440e-06\tAbsError: 7.69838e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.71758e-08\tAbsError: 1.29178e-05\n", + " Region: \"zone_3\"\tRelError: 1.11914e-05\tAbsError: 1.40904e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.24225e-07\tAbsError: 1.00189e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.55953e-07\tAbsError: 4.07148e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.77400e-06\tAbsError: 8.06496e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.71861e-08\tAbsError: 1.29217e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:35\u001b[0m.\u001b[1;36m723\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.6499999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.10405e-01\tAbsError: 3.12560e+13\n", + " Region: \"zone_1\"\tRelError: 1.08840e-02\tAbsError: 4.61195e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08827e-02\tAbsError: 1.71511e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32204e-06\tAbsError: 4.59479e-04\n", + " Region: \"zone_3\"\tRelError: 9.95213e-02\tAbsError: 3.12560e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34947e-04\tAbsError: 1.52362e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.27748e-04\tAbsError: 1.60198e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.92573e-02\tAbsError: 1.72813e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32271e-06\tAbsError: 4.59705e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.76420e+00\tAbsError: 7.94231e+15\n", + " Region: \"zone_1\"\tRelError: 2.30780e-01\tAbsError: 7.95917e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30643e-01\tAbsError: 3.19526e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37110e-04\tAbsError: 4.76392e-02\n", + " Region: \"zone_3\"\tRelError: 1.53342e+00\tAbsError: 7.94231e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53576e-01\tAbsError: 3.86093e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.24579e-01\tAbsError: 4.08137e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55124e-01\tAbsError: 3.19526e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37110e-04\tAbsError: 4.76392e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.86896e-02\tAbsError: 3.12437e+13\n", + " Region: \"zone_1\"\tRelError: 9.26093e-03\tAbsError: 8.84290e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.25839e-03\tAbsError: 1.24238e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54067e-06\tAbsError: 8.83047e-04\n", + " Region: \"zone_3\"\tRelError: 9.42871e-03\tAbsError: 3.12437e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.49244e-05\tAbsError: 1.53952e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.98149e-05\tAbsError: 1.58486e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.28143e-03\tAbsError: 1.25479e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54187e-06\tAbsError: 8.83452e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.26801e-01\tAbsError: 3.21780e+14\n", + " Region: \"zone_1\"\tRelError: 1.55999e-02\tAbsError: 2.70060e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55223e-02\tAbsError: 1.53596e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.76036e-05\tAbsError: 2.69907e-02\n", + " Region: \"zone_3\"\tRelError: 3.11201e-01\tAbsError: 3.21780e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.63679e-04\tAbsError: 1.60119e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.88527e-04\tAbsError: 1.61661e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.10171e-01\tAbsError: 1.54896e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.76380e-05\tAbsError: 2.70022e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.63047e-03\tAbsError: 9.09027e+11\n", + " Region: \"zone_1\"\tRelError: 4.56990e-04\tAbsError: 3.44629e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.55999e-04\tAbsError: 1.41300e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.91190e-07\tAbsError: 3.44488e-04\n", + " Region: \"zone_3\"\tRelError: 4.17348e-03\tAbsError: 9.09027e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33335e-06\tAbsError: 4.38047e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02288e-05\tAbsError: 4.70980e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.15793e-03\tAbsError: 1.42246e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.91601e-07\tAbsError: 3.44637e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.52664e+01\tAbsError: 1.16964e+16\n", + " Region: \"zone_1\"\tRelError: 5.34885e+01\tAbsError: 4.29340e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.34885e+01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.65399e-10\tAbsError: 1.96786e-07\n", + " Region: \"zone_3\"\tRelError: 1.77791e+00\tAbsError: 1.16964e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.85913e-01\tAbsError: 5.96599e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.85711e-01\tAbsError: 5.73044e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06286e-01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.65730e-10\tAbsError: 1.96905e-07\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.15026e+00\tAbsError: 5.50806e+15\n", + " Region: \"zone_1\"\tRelError: 1.25602e-01\tAbsError: 3.46873e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25576e-01\tAbsError: 2.58319e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54865e-05\tAbsError: 8.85540e-03\n", + " Region: \"zone_3\"\tRelError: 1.02466e+00\tAbsError: 5.50806e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.69453e-01\tAbsError: 2.66067e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.19655e-01\tAbsError: 2.84739e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35522e-01\tAbsError: 2.53767e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54865e-05\tAbsError: 8.85540e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.70169e-04\tAbsError: 3.89103e+12\n", + " Region: \"zone_1\"\tRelError: 1.11728e-04\tAbsError: 2.48812e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11013e-04\tAbsError: 2.80731e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.15158e-07\tAbsError: 2.48531e-04\n", + " Region: \"zone_3\"\tRelError: 1.58440e-04\tAbsError: 3.89103e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.86956e-06\tAbsError: 1.91259e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.01000e-05\tAbsError: 1.97844e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37755e-04\tAbsError: 2.83260e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.15453e-07\tAbsError: 2.48639e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.06749e-01\tAbsError: 1.86094e+14\n", + " Region: \"zone_1\"\tRelError: 8.34420e-03\tAbsError: 3.03935e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.33549e-03\tAbsError: 8.31449e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.71533e-06\tAbsError: 3.03103e-03\n", + " Region: \"zone_3\"\tRelError: 1.98405e-01\tAbsError: 1.86094e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.28032e-04\tAbsError: 9.25440e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.88076e-04\tAbsError: 9.35503e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97980e-01\tAbsError: 8.38945e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.71848e-06\tAbsError: 3.03213e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.49771e-03\tAbsError: 1.64940e+12\n", + " Region: \"zone_1\"\tRelError: 6.42053e-04\tAbsError: 1.77929e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.42002e-04\tAbsError: 9.99896e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.09050e-08\tAbsError: 1.76929e-05\n", + " Region: \"zone_3\"\tRelError: 5.85566e-03\tAbsError: 1.64940e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16109e-06\tAbsError: 8.03293e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.70130e-06\tAbsError: 8.46106e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.84174e-03\tAbsError: 1.00703e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.09341e-08\tAbsError: 1.77035e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 6.33878e+00\tAbsError: 1.22675e+16\n", + " Region: \"zone_1\"\tRelError: 4.76725e+00\tAbsError: 9.34106e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.76707e+00\tAbsError: 3.31000e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73592e-04\tAbsError: 6.03106e-02\n", + " Region: \"zone_3\"\tRelError: 1.57153e+00\tAbsError: 1.22675e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67129e-01\tAbsError: 5.98252e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.36794e-01\tAbsError: 6.28496e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67430e-01\tAbsError: 3.31000e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73592e-04\tAbsError: 6.03106e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.20405e-01\tAbsError: 1.87055e+15\n", + " Region: \"zone_1\"\tRelError: 1.38535e-01\tAbsError: 5.00612e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38421e-01\tAbsError: 1.06622e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13548e-04\tAbsError: 3.93990e-02\n", + " Region: \"zone_3\"\tRelError: 3.81870e-01\tAbsError: 1.87055e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.06828e-01\tAbsError: 9.86809e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.30929e-01\tAbsError: 8.83740e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.39995e-02\tAbsError: 1.06623e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13572e-04\tAbsError: 3.94072e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.01858e-03\tAbsError: 1.52771e+12\n", + " Region: \"zone_1\"\tRelError: 5.05888e-04\tAbsError: 2.54426e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.05815e-04\tAbsError: 6.73730e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.30089e-08\tAbsError: 2.53753e-05\n", + " Region: \"zone_3\"\tRelError: 5.12693e-04\tAbsError: 1.52771e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.70016e-06\tAbsError: 7.53515e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.39004e-06\tAbsError: 7.74190e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.05530e-04\tAbsError: 6.80114e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.30427e-08\tAbsError: 2.53868e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.88896e-02\tAbsError: 2.58485e+13\n", + " Region: \"zone_1\"\tRelError: 1.63690e-03\tAbsError: 1.31710e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63310e-03\tAbsError: 9.88963e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.79528e-06\tAbsError: 1.31612e-03\n", + " Region: \"zone_3\"\tRelError: 3.72527e-02\tAbsError: 2.58485e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.09818e-05\tAbsError: 1.28647e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.53496e-05\tAbsError: 1.29838e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.71926e-02\tAbsError: 9.97598e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.79540e-06\tAbsError: 1.31620e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 5.44825e-04\tAbsError: 5.87780e+10\n", + " Region: \"zone_1\"\tRelError: 5.39394e-05\tAbsError: 2.02429e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.38812e-05\tAbsError: 6.87611e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.82246e-08\tAbsError: 2.02360e-05\n", + " Region: \"zone_3\"\tRelError: 4.90886e-04\tAbsError: 5.87780e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46411e-07\tAbsError: 2.85251e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.30809e-07\tAbsError: 3.02529e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.90250e-04\tAbsError: 6.91269e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.82487e-08\tAbsError: 2.02448e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.27823e+00\tAbsError: 8.68356e+15\n", + " Region: \"zone_1\"\tRelError: 1.88988e-01\tAbsError: 4.08652e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88944e-01\tAbsError: 2.57034e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.36930e-05\tAbsError: 1.51618e-02\n", + " Region: \"zone_3\"\tRelError: 1.08924e+00\tAbsError: 8.68356e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.90758e-01\tAbsError: 4.26881e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.47066e-01\tAbsError: 4.41475e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51374e-01\tAbsError: 2.52748e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.47625e-05\tAbsError: 1.55328e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.56859e-02\tAbsError: 3.07403e+14\n", + " Region: \"zone_1\"\tRelError: 8.91573e-03\tAbsError: 4.12176e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.79758e-03\tAbsError: 2.04906e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18153e-04\tAbsError: 4.10127e-02\n", + " Region: \"zone_3\"\tRelError: 8.67701e-02\tAbsError: 3.07403e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.27638e-02\tAbsError: 1.70944e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03232e-02\tAbsError: 1.36458e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35648e-02\tAbsError: 2.15801e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18309e-04\tAbsError: 4.10657e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.11187e-05\tAbsError: 1.04011e+11\n", + " Region: \"zone_1\"\tRelError: 5.62860e-06\tAbsError: 1.33801e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.59012e-06\tAbsError: 7.79374e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.84793e-08\tAbsError: 1.33723e-05\n", + " Region: \"zone_3\"\tRelError: 5.49015e-06\tAbsError: 1.04011e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.73835e-07\tAbsError: 5.10986e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.84056e-07\tAbsError: 5.29122e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.79376e-06\tAbsError: 7.86425e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.84956e-08\tAbsError: 1.33784e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.59304e-02\tAbsError: 1.10975e+13\n", + " Region: \"zone_1\"\tRelError: 6.60647e-04\tAbsError: 2.32906e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.59978e-04\tAbsError: 3.98553e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.68839e-07\tAbsError: 2.32508e-04\n", + " Region: \"zone_3\"\tRelError: 1.52698e-02\tAbsError: 1.10975e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32236e-05\tAbsError: 5.52234e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.14382e-05\tAbsError: 5.57521e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52444e-02\tAbsError: 4.02224e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.69094e-07\tAbsError: 2.32596e-04\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:40\u001b[0m.\u001b[1;36m977\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:40\u001b[0m.\u001b[1;36m977\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.9444444444444445\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.92595e-04\tAbsError: 9.49473e+10\n", + " Region: \"zone_1\"\tRelError: 3.87978e-05\tAbsError: 2.02444e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87920e-05\tAbsError: 5.96621e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.80757e-09\tAbsError: 2.01847e-06\n", + " Region: \"zone_3\"\tRelError: 3.53797e-04\tAbsError: 9.49473e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.10989e-07\tAbsError: 4.62324e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.83783e-07\tAbsError: 4.87150e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52997e-04\tAbsError: 6.00786e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.81025e-09\tAbsError: 2.01943e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.24591e+00\tAbsError: 3.26346e+15\n", + " Region: \"zone_1\"\tRelError: 1.80867e+00\tAbsError: 8.31621e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80847e+00\tAbsError: 1.22663e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.04347e-04\tAbsError: 7.08958e-02\n", + " Region: \"zone_3\"\tRelError: 4.37234e-01\tAbsError: 3.26346e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.32552e-01\tAbsError: 1.73554e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.50687e-01\tAbsError: 1.52791e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.37915e-02\tAbsError: 1.22664e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.04553e-04\tAbsError: 7.09655e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.23155e-02\tAbsError: 2.21938e+13\n", + " Region: \"zone_1\"\tRelError: 4.98263e-03\tAbsError: 7.88142e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.98041e-03\tAbsError: 1.57019e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.22537e-06\tAbsError: 7.72440e-04\n", + " Region: \"zone_3\"\tRelError: 1.73329e-02\tAbsError: 2.21938e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42994e-03\tAbsError: 9.94824e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.30496e-03\tAbsError: 1.22456e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45957e-02\tAbsError: 1.65306e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.22982e-06\tAbsError: 7.73986e-04\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.34486e-03\tAbsError: 1.97182e+12\n", + " Region: \"zone_1\"\tRelError: 1.39485e-04\tAbsError: 8.65138e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39236e-04\tAbsError: 6.47581e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.48683e-07\tAbsError: 8.64490e-05\n", + " Region: \"zone_3\"\tRelError: 3.20538e-03\tAbsError: 1.97182e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.27846e-06\tAbsError: 9.81632e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.12485e-06\tAbsError: 9.90188e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.20072e-03\tAbsError: 6.54815e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.48776e-07\tAbsError: 8.64826e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 5.03275e-05\tAbsError: 9.08763e+09\n", + " Region: \"zone_1\"\tRelError: 4.97773e-06\tAbsError: 1.23989e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.97416e-06\tAbsError: 6.85123e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.56554e-09\tAbsError: 1.23921e-06\n", + " Region: \"zone_3\"\tRelError: 4.53498e-05\tAbsError: 9.08763e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.78500e-08\tAbsError: 4.42118e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.59273e-08\tAbsError: 4.66645e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.52724e-05\tAbsError: 6.89457e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.56702e-09\tAbsError: 1.23975e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:42\u001b[0m.\u001b[1;36m573\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.9\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.22369e+02\tAbsError: 9.43638e+17\n", + " Region: \"zone_1\"\tRelError: 2.81696e+02\tAbsError: 4.20729e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.81696e+02\tAbsError: 4.20724e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48401e-09\tAbsError: 5.15814e-07\n", + " Region: \"zone_3\"\tRelError: 4.06736e+01\tAbsError: 9.43638e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.21983e-01\tAbsError: 4.58740e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.01626e-01\tAbsError: 4.84898e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 3.92499e+01\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48495e-09\tAbsError: 5.16134e-07\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.09725e-01\tAbsError: 5.66844e+14\n", + " Region: \"zone_1\"\tRelError: 9.74944e-02\tAbsError: 6.02281e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.73217e-02\tAbsError: 2.69090e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72760e-04\tAbsError: 5.99590e-02\n", + " Region: \"zone_3\"\tRelError: 1.12230e-01\tAbsError: 5.66844e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16841e-02\tAbsError: 3.36059e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.40653e-02\tAbsError: 2.30785e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.63081e-02\tAbsError: 2.86751e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72917e-04\tAbsError: 6.00120e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.15137e-03\tAbsError: 7.06680e+11\n", + " Region: \"zone_1\"\tRelError: 4.79513e-05\tAbsError: 1.84347e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.78983e-05\tAbsError: 2.30046e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.29631e-08\tAbsError: 1.84117e-05\n", + " Region: \"zone_3\"\tRelError: 1.10342e-03\tAbsError: 7.06680e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.28767e-07\tAbsError: 3.51782e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.37241e-07\tAbsError: 3.54898e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10180e-03\tAbsError: 2.32700e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.29832e-08\tAbsError: 1.84191e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.30610e-04\tAbsError: 4.37226e+11\n", + " Region: \"zone_1\"\tRelError: 1.49974e-04\tAbsError: 1.29107e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46259e-04\tAbsError: 4.50181e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.71544e-06\tAbsError: 1.29062e-03\n", + " Region: \"zone_3\"\tRelError: 4.80636e-04\tAbsError: 4.37226e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05631e-05\tAbsError: 1.66427e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.21073e-05\tAbsError: 2.70799e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.34250e-04\tAbsError: 4.61483e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.71550e-06\tAbsError: 1.29067e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.46572e+02\tAbsError: 5.04463e+17\n", + " Region: \"zone_1\"\tRelError: 1.07438e+02\tAbsError: 9.56605e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07435e+02\tAbsError: 3.20815e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.66107e-03\tAbsError: 9.24524e-01\n", + " Region: \"zone_3\"\tRelError: 2.39134e+02\tAbsError: 5.04463e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.90578e-01\tAbsError: 2.52980e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.63428e-01\tAbsError: 2.51483e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38177e+02\tAbsError: 3.20820e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.66135e-03\tAbsError: 9.24642e-01\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.75731e+01\tAbsError: 5.68784e+17\n", + " Region: \"zone_1\"\tRelError: 3.83859e+01\tAbsError: 4.09543e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.83859e+01\tAbsError: 4.09541e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.16236e-10\tAbsError: 1.79418e-07\n", + " Region: \"zone_3\"\tRelError: 1.91873e+01\tAbsError: 5.68784e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.35377e-01\tAbsError: 2.75826e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.22188e-01\tAbsError: 2.92959e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77297e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.16460e-10\tAbsError: 1.79501e-07\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.32859e-02\tAbsError: 3.83563e+13\n", + " Region: \"zone_1\"\tRelError: 8.24035e-03\tAbsError: 7.96612e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.23812e-03\tAbsError: 2.18441e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23240e-06\tAbsError: 7.74768e-04\n", + " Region: \"zone_3\"\tRelError: 2.50456e-02\tAbsError: 3.83563e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.92826e-03\tAbsError: 1.79088e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.76021e-03\tAbsError: 2.04475e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13549e-02\tAbsError: 2.23899e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24276e-06\tAbsError: 7.78349e-04\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.60636e-04\tAbsError: 1.46372e+11\n", + " Region: \"zone_1\"\tRelError: 1.08690e-05\tAbsError: 6.03090e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08517e-05\tAbsError: 5.09600e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73339e-08\tAbsError: 6.02581e-06\n", + " Region: \"zone_3\"\tRelError: 2.49767e-04\tAbsError: 1.46372e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68311e-07\tAbsError: 7.29196e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.63262e-07\tAbsError: 7.34528e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49418e-04\tAbsError: 5.15309e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73406e-08\tAbsError: 6.02830e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.71714e-03\tAbsError: 1.26020e+12\n", + " Region: \"zone_1\"\tRelError: 4.08492e-04\tAbsError: 8.25373e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.08256e-04\tAbsError: 6.27594e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.35973e-07\tAbsError: 8.19097e-05\n", + " Region: \"zone_3\"\tRelError: 1.30864e-03\tAbsError: 1.26020e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94254e-05\tAbsError: 6.33437e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.91447e-05\tAbsError: 6.26764e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18984e-03\tAbsError: 6.44970e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36012e-07\tAbsError: 8.19244e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.60262e+03\tAbsError: 1.07930e+17\n", + " Region: \"zone_1\"\tRelError: 1.36612e+02\tAbsError: 3.37833e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36611e+02\tAbsError: 2.58874e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.98630e-04\tAbsError: 3.11946e-01\n", + " Region: \"zone_3\"\tRelError: 3.46601e+03\tAbsError: 1.07930e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.81165e-01\tAbsError: 5.42175e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02149e-01\tAbsError: 5.37124e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.46573e+03\tAbsError: 2.58951e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.02058e-04\tAbsError: 3.13136e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.10779e+01\tAbsError: 4.06443e+17\n", + " Region: \"zone_1\"\tRelError: 1.97168e+01\tAbsError: 4.69738e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97155e+01\tAbsError: 3.07629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26517e-03\tAbsError: 4.38975e-01\n", + " Region: \"zone_3\"\tRelError: 1.13612e+01\tAbsError: 4.06443e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.26663e-01\tAbsError: 2.03016e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.10593e-01\tAbsError: 2.03427e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03227e+01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26614e-03\tAbsError: 4.39294e-01\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 8.12930e-05\tAbsError: 4.69072e+10\n", + " Region: \"zone_1\"\tRelError: 3.38946e-06\tAbsError: 1.38742e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.38548e-06\tAbsError: 1.62196e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.98640e-09\tAbsError: 1.38580e-06\n", + " Region: \"zone_3\"\tRelError: 7.79035e-05\tAbsError: 4.69072e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.45193e-08\tAbsError: 2.33605e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.92263e-08\tAbsError: 2.35467e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.77958e-05\tAbsError: 1.64038e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.98804e-09\tAbsError: 1.38641e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:45\u001b[0m.\u001b[1;36m754\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 1.0\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.77352e-04\tAbsError: 7.13394e+11\n", + " Region: \"zone_1\"\tRelError: 2.80569e-04\tAbsError: 1.79321e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.75403e-04\tAbsError: 4.87828e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.16541e-06\tAbsError: 1.79273e-03\n", + " Region: \"zone_3\"\tRelError: 1.96783e-04\tAbsError: 7.13394e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.19881e-05\tAbsError: 4.92944e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.32443e-05\tAbsError: 2.20450e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46385e-04\tAbsError: 4.93945e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.16541e-06\tAbsError: 1.79273e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.66725e-04\tAbsError: 7.91368e+10\n", + " Region: \"zone_1\"\tRelError: 4.05183e-05\tAbsError: 7.96892e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.02890e-05\tAbsError: 4.69103e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29260e-07\tAbsError: 7.96423e-05\n", + " Region: \"zone_3\"\tRelError: 1.26207e-04\tAbsError: 7.91368e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.17347e-06\tAbsError: 3.76121e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.20199e-06\tAbsError: 4.15247e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17602e-04\tAbsError: 4.78638e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29342e-07\tAbsError: 7.96708e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 4.48960e+02\tAbsError: 9.69691e+16\n", + " Region: \"zone_1\"\tRelError: 4.44741e+02\tAbsError: 1.46848e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44741e+02\tAbsError: 2.58943e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47880e-04\tAbsError: 1.20954e-01\n", + " Region: \"zone_3\"\tRelError: 4.21888e+00\tAbsError: 9.69691e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.30659e-01\tAbsError: 4.85459e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34310e-01\tAbsError: 4.84232e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85356e+00\tAbsError: 2.58906e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.48053e-04\tAbsError: 1.21009e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.81757e+03\tAbsError: 8.17376e+15\n", + " Region: \"zone_1\"\tRelError: 7.13883e+01\tAbsError: 4.06377e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.13872e+01\tAbsError: 1.08337e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13430e-03\tAbsError: 3.95543e-01\n", + " Region: \"zone_3\"\tRelError: 1.74618e+03\tAbsError: 8.17376e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.73025e-02\tAbsError: 4.10350e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.12778e-02\tAbsError: 4.07026e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74614e+03\tAbsError: 1.08344e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13497e-03\tAbsError: 3.95788e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.49838e-03\tAbsError: 1.76569e+12\n", + " Region: \"zone_1\"\tRelError: 6.54941e-04\tAbsError: 9.30889e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.54675e-04\tAbsError: 8.39400e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.65787e-07\tAbsError: 9.22495e-05\n", + " Region: \"zone_3\"\tRelError: 1.84344e-03\tAbsError: 1.76569e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77494e-05\tAbsError: 8.82777e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.71860e-05\tAbsError: 8.82910e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68824e-03\tAbsError: 8.40369e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.65787e-07\tAbsError: 9.22495e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.58363e+04\tAbsError: 1.47473e+18\n", + " Region: \"zone_1\"\tRelError: 6.98536e+03\tAbsError: 4.09543e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.98536e+03\tAbsError: 4.09539e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20641e-09\tAbsError: 4.19390e-07\n", + " Region: \"zone_3\"\tRelError: 2.88509e+04\tAbsError: 1.47473e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.64637e-01\tAbsError: 7.31003e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.38568e-01\tAbsError: 7.43726e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88496e+04\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20691e-09\tAbsError: 4.19574e-07\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.22730e-04\tAbsError: 7.90058e+10\n", + " Region: \"zone_1\"\tRelError: 2.95470e-05\tAbsError: 9.77951e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.95189e-05\tAbsError: 3.60460e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.80478e-08\tAbsError: 9.74347e-06\n", + " Region: \"zone_3\"\tRelError: 9.31834e-05\tAbsError: 7.90058e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61463e-06\tAbsError: 4.44513e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.59003e-06\tAbsError: 3.45545e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.59506e-05\tAbsError: 3.66667e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.80556e-08\tAbsError: 9.74620e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.03712e+00\tAbsError: 1.21527e+16\n", + " Region: \"zone_1\"\tRelError: 1.00977e+00\tAbsError: 5.07362e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00834e+00\tAbsError: 9.16487e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42992e-03\tAbsError: 4.98197e-01\n", + " Region: \"zone_3\"\tRelError: 4.02736e+00\tAbsError: 1.21527e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.24782e-02\tAbsError: 5.84262e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.44637e-02\tAbsError: 6.31012e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.96898e+00\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43302e-03\tAbsError: 4.99291e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.54793e+00\tAbsError: 3.30288e+15\n", + " Region: \"zone_1\"\tRelError: 4.07651e-01\tAbsError: 6.07886e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.05905e-01\tAbsError: 1.75242e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74578e-03\tAbsError: 6.07711e-01\n", + " Region: \"zone_3\"\tRelError: 1.14027e+00\tAbsError: 3.30288e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.14712e-02\tAbsError: 1.50798e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.76038e-03\tAbsError: 1.79491e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12430e+00\tAbsError: 1.77365e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74637e-03\tAbsError: 6.07935e-01\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.85627e-05\tAbsError: 9.39763e+09\n", + " Region: \"zone_1\"\tRelError: 4.51595e-06\tAbsError: 5.40487e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.50041e-06\tAbsError: 4.76968e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55448e-08\tAbsError: 5.40010e-06\n", + " Region: \"zone_3\"\tRelError: 1.40468e-05\tAbsError: 9.39763e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.58508e-07\tAbsError: 5.36588e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.58619e-07\tAbsError: 4.03174e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31141e-05\tAbsError: 4.85651e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55471e-08\tAbsError: 5.40090e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.99060e-04\tAbsError: 9.07144e+10\n", + " Region: \"zone_1\"\tRelError: 5.32122e-05\tAbsError: 1.06982e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.29043e-05\tAbsError: 5.30299e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.07864e-07\tAbsError: 1.06929e-04\n", + " Region: \"zone_3\"\tRelError: 1.45848e-04\tAbsError: 9.07144e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37854e-06\tAbsError: 4.24042e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.42241e-06\tAbsError: 4.83102e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36739e-04\tAbsError: 5.34823e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.07966e-07\tAbsError: 1.06964e-04\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:48\u001b[0m.\u001b[1;36m797\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:48\u001b[0m.\u001b[1;36m797\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7299999999999999\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 8.73385e+02\tAbsError: 4.80817e+17\n", + " Region: \"zone_1\"\tRelError: 4.36320e+02\tAbsError: 1.19061e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.36317e+02\tAbsError: 3.07626e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.33293e-03\tAbsError: 1.15985e+00\n", + " Region: \"zone_3\"\tRelError: 4.37065e+02\tAbsError: 4.80817e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.79759e-01\tAbsError: 2.41402e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.64874e-01\tAbsError: 2.39414e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.36317e+02\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.33331e-03\tAbsError: 1.15994e+00\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.22708e-01\tAbsError: 3.87768e+15\n", + " Region: \"zone_1\"\tRelError: 1.91968e-01\tAbsError: 6.75386e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90026e-01\tAbsError: 2.52604e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94152e-03\tAbsError: 6.75134e-01\n", + " Region: \"zone_3\"\tRelError: 7.30741e-01\tAbsError: 3.87768e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.56619e-03\tAbsError: 1.77246e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.53274e-03\tAbsError: 2.10521e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.16698e-01\tAbsError: 2.55458e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94389e-03\tAbsError: 6.75970e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.59463e+01\tAbsError: 2.98114e+15\n", + " Region: \"zone_1\"\tRelError: 2.97245e-01\tAbsError: 3.65177e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97140e-01\tAbsError: 1.73243e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04375e-04\tAbsError: 3.63445e-02\n", + " Region: \"zone_3\"\tRelError: 4.56490e+01\tAbsError: 2.98114e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.10791e-03\tAbsError: 1.48408e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.01404e-03\tAbsError: 1.49706e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.56418e+01\tAbsError: 1.74736e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04419e-04\tAbsError: 3.63588e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.73943e-04\tAbsError: 1.07365e+11\n", + " Region: \"zone_1\"\tRelError: 4.60985e-05\tAbsError: 1.16082e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.60652e-05\tAbsError: 4.61233e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32888e-08\tAbsError: 1.15620e-05\n", + " Region: \"zone_3\"\tRelError: 1.27845e-04\tAbsError: 1.07365e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.59108e-06\tAbsError: 6.01847e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.54678e-06\tAbsError: 4.71802e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18674e-04\tAbsError: 4.74794e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32988e-08\tAbsError: 1.15655e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.66204e+03\tAbsError: 6.93474e+16\n", + " Region: \"zone_1\"\tRelError: 8.76338e+02\tAbsError: 4.68048e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.76336e+02\tAbsError: 2.58614e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26825e-03\tAbsError: 4.42186e-01\n", + " Region: \"zone_3\"\tRelError: 7.85702e+02\tAbsError: 6.93474e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.33245e-02\tAbsError: 3.47970e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.15582e-02\tAbsError: 3.45503e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.85556e+02\tAbsError: 2.58778e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26845e-03\tAbsError: 4.42250e-01\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.02177e+01\tAbsError: 4.24857e+16\n", + " Region: \"zone_1\"\tRelError: 5.84071e+01\tAbsError: 4.19638e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.84071e+01\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.65927e-09\tAbsError: 9.23800e-07\n", + " Region: \"zone_3\"\tRelError: 1.81056e+00\tAbsError: 4.24857e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77015e-01\tAbsError: 2.10830e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.76332e-01\tAbsError: 2.14027e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57212e-01\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.65955e-09\tAbsError: 9.23899e-07\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.30314e+00\tAbsError: 2.60062e+14\n", + " Region: \"zone_1\"\tRelError: 5.30757e-02\tAbsError: 2.35199e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.30082e-02\tAbsError: 1.21066e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.75164e-05\tAbsError: 2.35078e-02\n", + " Region: \"zone_3\"\tRelError: 6.25006e+00\tAbsError: 2.60062e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.72969e-04\tAbsError: 1.29545e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.51490e-04\tAbsError: 1.30517e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.24897e+00\tAbsError: 1.22004e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.75445e-05\tAbsError: 2.35175e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.39826e+00\tAbsError: 3.43096e+15\n", + " Region: \"zone_1\"\tRelError: 2.04849e-01\tAbsError: 4.45309e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04721e-01\tAbsError: 2.05839e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27433e-04\tAbsError: 4.43251e-02\n", + " Region: \"zone_3\"\tRelError: 2.19341e+00\tAbsError: 3.43096e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46827e-03\tAbsError: 1.70482e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.46042e-03\tAbsError: 1.72614e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18535e+00\tAbsError: 2.07760e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27493e-04\tAbsError: 4.43450e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.42423e-05\tAbsError: 1.13845e+10\n", + " Region: \"zone_1\"\tRelError: 6.77172e-06\tAbsError: 7.06656e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.75139e-06\tAbsError: 5.42330e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03301e-08\tAbsError: 7.06113e-06\n", + " Region: \"zone_3\"\tRelError: 1.74705e-05\tAbsError: 1.13845e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.20454e-07\tAbsError: 6.31989e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.20087e-07\tAbsError: 5.06458e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64097e-05\tAbsError: 5.58892e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03324e-08\tAbsError: 7.06195e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:51\u001b[0m.\u001b[1;36m386\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.7599999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.46324e+03\tAbsError: 5.14576e+15\n", + " Region: \"zone_1\"\tRelError: 6.87978e+02\tAbsError: 7.78255e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.87976e+02\tAbsError: 9.16449e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19704e-03\tAbsError: 7.69091e-01\n", + " Region: \"zone_3\"\tRelError: 7.75259e+02\tAbsError: 5.14576e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52317e-02\tAbsError: 2.57522e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.85097e-03\tAbsError: 2.57054e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.75237e+02\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19704e-03\tAbsError: 7.69091e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.09627e+00\tAbsError: 4.36555e+16\n", + " Region: \"zone_1\"\tRelError: 5.02975e-01\tAbsError: 1.96470e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.02501e-01\tAbsError: 3.19524e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73827e-04\tAbsError: 1.64518e-01\n", + " Region: \"zone_3\"\tRelError: 1.59330e+00\tAbsError: 4.36555e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.49345e-01\tAbsError: 2.19735e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.13383e-01\tAbsError: 2.16820e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30094e-01\tAbsError: 3.19525e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73827e-04\tAbsError: 1.64518e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.26801e-01\tAbsError: 3.21780e+14\n", + " Region: \"zone_1\"\tRelError: 1.55999e-02\tAbsError: 2.70060e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55223e-02\tAbsError: 1.53596e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.76036e-05\tAbsError: 2.69907e-02\n", + " Region: \"zone_3\"\tRelError: 3.11201e-01\tAbsError: 3.21780e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.63679e-04\tAbsError: 1.60119e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.88527e-04\tAbsError: 1.61661e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.10171e-01\tAbsError: 1.54896e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.76380e-05\tAbsError: 2.70022e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.68467e+00\tAbsError: 1.58417e+14\n", + " Region: \"zone_1\"\tRelError: 2.74530e-02\tAbsError: 2.54276e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74457e-02\tAbsError: 6.86415e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.30395e-06\tAbsError: 2.53589e-03\n", + " Region: \"zone_3\"\tRelError: 3.65721e+00\tAbsError: 1.58417e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.03404e-04\tAbsError: 7.88728e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.05406e-04\tAbsError: 7.95438e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.65690e+00\tAbsError: 6.92132e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.30395e-06\tAbsError: 2.53589e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.96023e+00\tAbsError: 5.32372e+15\n", + " Region: \"zone_1\"\tRelError: 4.54639e+00\tAbsError: 1.02863e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54344e+00\tAbsError: 2.66559e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94644e-03\tAbsError: 1.02837e+00\n", + " Region: \"zone_3\"\tRelError: 2.41384e+00\tAbsError: 5.32372e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.51219e-02\tAbsError: 2.60450e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.65403e-03\tAbsError: 2.71922e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38011e+00\tAbsError: 2.68000e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.95139e-03\tAbsError: 1.03011e+00\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.66197e+01\tAbsError: 6.69458e+16\n", + " Region: \"zone_1\"\tRelError: 1.47623e+01\tAbsError: 4.29349e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47623e+01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.23687e-09\tAbsError: 1.12425e-06\n", + " Region: \"zone_3\"\tRelError: 1.85742e+00\tAbsError: 6.69458e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.84273e-01\tAbsError: 3.33953e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83269e-01\tAbsError: 3.35506e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.89878e-01\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.23715e-09\tAbsError: 1.12434e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.23598e+00\tAbsError: 2.71916e+16\n", + " Region: \"zone_1\"\tRelError: 1.81508e-01\tAbsError: 1.13965e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81254e-01\tAbsError: 2.57850e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54037e-04\tAbsError: 8.81803e-02\n", + " Region: \"zone_3\"\tRelError: 1.05447e+00\tAbsError: 2.71916e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.57503e-01\tAbsError: 1.35855e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.99712e-01\tAbsError: 1.36061e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97001e-01\tAbsError: 2.47369e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54037e-04\tAbsError: 8.81803e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.06749e-01\tAbsError: 1.86094e+14\n", + " Region: \"zone_1\"\tRelError: 8.34420e-03\tAbsError: 3.03935e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.33549e-03\tAbsError: 8.31449e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.71533e-06\tAbsError: 3.03103e-03\n", + " Region: \"zone_3\"\tRelError: 1.98405e-01\tAbsError: 1.86094e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.28032e-04\tAbsError: 9.25440e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.88076e-04\tAbsError: 9.35503e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97980e-01\tAbsError: 8.38945e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.71848e-06\tAbsError: 3.03213e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.06513e-01\tAbsError: 2.09865e+13\n", + " Region: \"zone_1\"\tRelError: 5.18521e-03\tAbsError: 1.14757e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.18190e-03\tAbsError: 7.90884e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.30299e-06\tAbsError: 1.14677e-03\n", + " Region: \"zone_3\"\tRelError: 3.01328e-01\tAbsError: 2.09865e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.56136e-05\tAbsError: 1.04559e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.15612e-05\tAbsError: 1.05307e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.01257e-01\tAbsError: 7.97233e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.30324e-06\tAbsError: 1.14681e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.90017e+00\tAbsError: 6.90569e+16\n", + " Region: \"zone_1\"\tRelError: 2.57152e-01\tAbsError: 2.59228e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.56500e-01\tAbsError: 3.31000e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.51506e-04\tAbsError: 2.26128e-01\n", + " Region: \"zone_3\"\tRelError: 1.64302e+00\tAbsError: 6.90569e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.60822e-01\tAbsError: 3.53198e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.20888e-01\tAbsError: 3.37371e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.60656e-01\tAbsError: 3.31000e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.51506e-04\tAbsError: 2.26128e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.07732e+01\tAbsError: 5.66142e+15\n", + " Region: \"zone_1\"\tRelError: 6.09549e-01\tAbsError: 6.00187e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.09378e-01\tAbsError: 2.72034e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71203e-04\tAbsError: 5.97467e-02\n", + " Region: \"zone_3\"\tRelError: 6.01636e+01\tAbsError: 5.66142e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13691e-02\tAbsError: 2.75447e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.48872e-03\tAbsError: 2.90695e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.01496e+01\tAbsError: 2.74039e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71270e-04\tAbsError: 5.97699e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.40788e+00\tAbsError: 8.15212e+15\n", + " Region: \"zone_1\"\tRelError: 9.95059e-01\tAbsError: 3.32770e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.94994e-01\tAbsError: 1.06614e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.51530e-05\tAbsError: 2.26155e-02\n", + " Region: \"zone_3\"\tRelError: 4.12819e-01\tAbsError: 8.15212e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.93063e-01\tAbsError: 4.25836e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10930e-01\tAbsError: 3.89376e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08761e-01\tAbsError: 1.06615e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.51530e-05\tAbsError: 2.26155e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.88896e-02\tAbsError: 2.58485e+13\n", + " Region: \"zone_1\"\tRelError: 1.63690e-03\tAbsError: 1.31710e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63310e-03\tAbsError: 9.88963e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.79528e-06\tAbsError: 1.31612e-03\n", + " Region: \"zone_3\"\tRelError: 3.72527e-02\tAbsError: 2.58485e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.09818e-05\tAbsError: 1.28647e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.53496e-05\tAbsError: 1.29838e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.71926e-02\tAbsError: 9.97598e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.79540e-06\tAbsError: 1.31620e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.41465e-01\tAbsError: 9.26962e+12\n", + " Region: \"zone_1\"\tRelError: 2.09965e-03\tAbsError: 1.99365e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09908e-03\tAbsError: 3.25300e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.72195e-07\tAbsError: 1.99040e-04\n", + " Region: \"zone_3\"\tRelError: 1.39366e-01\tAbsError: 9.26962e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.52741e-06\tAbsError: 4.61773e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.59504e-06\tAbsError: 4.65189e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39346e-01\tAbsError: 3.27986e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.72409e-07\tAbsError: 1.99115e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.51587e+00\tAbsError: 4.22581e+16\n", + " Region: \"zone_1\"\tRelError: 1.92551e+00\tAbsError: 1.21029e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92524e+00\tAbsError: 2.58362e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.74346e-04\tAbsError: 9.51931e-02\n", + " Region: \"zone_3\"\tRelError: 1.59036e+00\tAbsError: 4.22581e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.69859e-01\tAbsError: 2.15299e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.09624e-01\tAbsError: 2.07282e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.10598e-01\tAbsError: 2.40553e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.74346e-04\tAbsError: 9.51931e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.18137e+00\tAbsError: 3.71256e+14\n", + " Region: \"zone_1\"\tRelError: 8.31734e-02\tAbsError: 3.74686e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.30661e-02\tAbsError: 1.92544e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07324e-04\tAbsError: 3.74493e-02\n", + " Region: \"zone_3\"\tRelError: 1.09819e+00\tAbsError: 3.71256e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23962e-03\tAbsError: 1.84907e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.91184e-04\tAbsError: 1.86349e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09615e+00\tAbsError: 1.93888e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07368e-04\tAbsError: 3.74645e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.21400e-01\tAbsError: 1.89468e+15\n", + " Region: \"zone_1\"\tRelError: 1.16917e-01\tAbsError: 2.47871e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16203e-01\tAbsError: 3.32836e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.13838e-04\tAbsError: 2.47538e-01\n", + " Region: \"zone_3\"\tRelError: 1.04483e-01\tAbsError: 1.89468e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.02995e-02\tAbsError: 9.56907e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.60325e-02\tAbsError: 9.37771e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74370e-02\tAbsError: 3.32836e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.13838e-04\tAbsError: 2.47538e-01\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.23651e-02\tAbsError: 1.59153e+12\n", + " Region: \"zone_1\"\tRelError: 4.30371e-04\tAbsError: 7.45029e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.30157e-04\tAbsError: 5.34684e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.14025e-07\tAbsError: 7.44495e-05\n", + " Region: \"zone_3\"\tRelError: 2.19347e-02\tAbsError: 1.59153e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.02759e-06\tAbsError: 7.93109e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.49227e-06\tAbsError: 7.98425e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19300e-02\tAbsError: 5.40337e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.14105e-07\tAbsError: 7.44781e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.59304e-02\tAbsError: 1.10975e+13\n", + " Region: \"zone_1\"\tRelError: 6.60647e-04\tAbsError: 2.32906e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.59978e-04\tAbsError: 3.98553e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.68839e-07\tAbsError: 2.32508e-04\n", + " Region: \"zone_3\"\tRelError: 1.52698e-02\tAbsError: 1.10975e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32236e-05\tAbsError: 5.52234e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.14382e-05\tAbsError: 5.57521e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52444e-02\tAbsError: 4.02224e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.69094e-07\tAbsError: 2.32596e-04\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.78234e+01\tAbsError: 1.53845e+16\n", + " Region: \"zone_1\"\tRelError: 2.71002e+01\tAbsError: 6.40599e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.71001e+01\tAbsError: 1.22653e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49294e-04\tAbsError: 5.17946e-02\n", + " Region: \"zone_3\"\tRelError: 7.23191e-01\tAbsError: 1.53845e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05690e-01\tAbsError: 7.89233e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.16443e-01\tAbsError: 7.49218e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.00908e-01\tAbsError: 1.22654e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49294e-04\tAbsError: 5.17946e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.46007e+00\tAbsError: 2.29640e+14\n", + " Region: \"zone_1\"\tRelError: 4.03111e-02\tAbsError: 3.94907e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.02998e-02\tAbsError: 1.05545e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13173e-05\tAbsError: 3.93851e-03\n", + " Region: \"zone_3\"\tRelError: 1.41976e+00\tAbsError: 2.29640e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16328e-04\tAbsError: 1.14327e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.52600e-04\tAbsError: 1.15314e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41908e+00\tAbsError: 1.06317e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13180e-05\tAbsError: 3.93853e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.51782e-01\tAbsError: 3.85189e+14\n", + " Region: \"zone_1\"\tRelError: 1.01301e-01\tAbsError: 1.58596e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01255e-01\tAbsError: 6.95270e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.55327e-05\tAbsError: 1.57901e-02\n", + " Region: \"zone_3\"\tRelError: 1.50482e-01\tAbsError: 3.85189e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.20144e-03\tAbsError: 1.95375e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.09233e-03\tAbsError: 1.89813e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40142e-01\tAbsError: 7.28790e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.55327e-05\tAbsError: 1.57901e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 7.73891e-03\tAbsError: 5.79413e+11\n", + " Region: \"zone_1\"\tRelError: 1.48362e-04\tAbsError: 1.55214e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48317e-04\tAbsError: 1.89932e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.45655e-08\tAbsError: 1.55024e-05\n", + " Region: \"zone_3\"\tRelError: 7.59054e-03\tAbsError: 5.79413e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.23531e-07\tAbsError: 2.88725e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.27579e-07\tAbsError: 2.90688e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.58925e-03\tAbsError: 1.92003e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.45824e-08\tAbsError: 1.55087e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.34486e-03\tAbsError: 1.97182e+12\n", + " Region: \"zone_1\"\tRelError: 1.39485e-04\tAbsError: 8.65138e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39236e-04\tAbsError: 6.47581e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.48683e-07\tAbsError: 8.64490e-05\n", + " Region: \"zone_3\"\tRelError: 3.20538e-03\tAbsError: 1.97182e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.27846e-06\tAbsError: 9.81632e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.12485e-06\tAbsError: 9.90188e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.20072e-03\tAbsError: 6.54815e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.48776e-07\tAbsError: 8.64826e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 5.78429e-01\tAbsError: 3.07251e+15\n", + " Region: \"zone_1\"\tRelError: 5.04734e-01\tAbsError: 2.71742e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.03951e-01\tAbsError: 3.65281e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.82895e-04\tAbsError: 2.71377e-01\n", + " Region: \"zone_3\"\tRelError: 7.36955e-02\tAbsError: 3.07251e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.87825e-02\tAbsError: 1.69644e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.61675e-02\tAbsError: 1.37607e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.96264e-03\tAbsError: 3.65281e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.82895e-04\tAbsError: 2.71377e-01\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.11111e-01\tAbsError: 2.79827e+13\n", + " Region: \"zone_1\"\tRelError: 7.25122e-03\tAbsError: 1.74217e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.24621e-03\tAbsError: 1.19347e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.00326e-06\tAbsError: 1.74098e-03\n", + " Region: \"zone_3\"\tRelError: 2.03859e-01\tAbsError: 2.79827e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67617e-05\tAbsError: 1.39372e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.89481e-05\tAbsError: 1.40455e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03729e-01\tAbsError: 1.20196e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.00391e-06\tAbsError: 1.74126e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.20699e-02\tAbsError: 3.14591e+13\n", + " Region: \"zone_1\"\tRelError: 1.31625e-02\tAbsError: 7.22224e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31417e-02\tAbsError: 5.37434e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08111e-05\tAbsError: 7.21687e-03\n", + " Region: \"zone_3\"\tRelError: 1.89074e-02\tAbsError: 3.14591e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.22927e-04\tAbsError: 1.59868e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.28367e-04\tAbsError: 1.54723e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80353e-02\tAbsError: 5.87419e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08190e-05\tAbsError: 7.21971e-03\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.51790e-03\tAbsError: 1.16805e+11\n", + " Region: \"zone_1\"\tRelError: 3.28893e-05\tAbsError: 5.08720e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.28747e-05\tAbsError: 4.12395e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46125e-08\tAbsError: 5.08307e-06\n", + " Region: \"zone_3\"\tRelError: 1.48501e-03\tAbsError: 1.16805e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24655e-07\tAbsError: 5.82147e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.85069e-07\tAbsError: 5.85901e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48469e-03\tAbsError: 4.16773e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46182e-08\tAbsError: 5.08516e-06\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.15137e-03\tAbsError: 7.06680e+11\n", + " Region: \"zone_1\"\tRelError: 4.79513e-05\tAbsError: 1.84347e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.78983e-05\tAbsError: 2.30046e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.29631e-08\tAbsError: 1.84117e-05\n", + " Region: \"zone_3\"\tRelError: 1.10342e-03\tAbsError: 7.06680e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.28767e-07\tAbsError: 3.51782e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.37241e-07\tAbsError: 3.54898e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10180e-03\tAbsError: 2.32700e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.29832e-08\tAbsError: 1.84191e-05\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 4.72898e-04\tAbsError: 3.77480e+10\n", + " Region: \"zone_1\"\tRelError: 1.02547e-05\tAbsError: 1.14933e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02514e-05\tAbsError: 1.31017e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.30027e-09\tAbsError: 1.14802e-06\n", + " Region: \"zone_3\"\tRelError: 4.62644e-04\tAbsError: 3.77480e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.21419e-08\tAbsError: 1.88129e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.21462e-08\tAbsError: 1.89351e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62556e-04\tAbsError: 1.32435e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.30162e-09\tAbsError: 1.14852e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.28286e+00\tAbsError: 5.88773e+14\n", + " Region: \"zone_1\"\tRelError: 8.55347e-01\tAbsError: 1.74049e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.55297e-01\tAbsError: 6.30266e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.00269e-05\tAbsError: 1.73418e-02\n", + " Region: \"zone_3\"\tRelError: 4.27508e-01\tAbsError: 5.88773e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.63052e-03\tAbsError: 2.89838e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.58578e-03\tAbsError: 2.98935e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.18242e-01\tAbsError: 6.77930e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.00342e-05\tAbsError: 1.73447e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.60636e-04\tAbsError: 1.46372e+11\n", + " Region: \"zone_1\"\tRelError: 1.08690e-05\tAbsError: 6.03090e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08517e-05\tAbsError: 5.09600e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73339e-08\tAbsError: 6.02581e-06\n", + " Region: \"zone_3\"\tRelError: 2.49767e-04\tAbsError: 1.46372e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68311e-07\tAbsError: 7.29196e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.63262e-07\tAbsError: 7.34528e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49418e-04\tAbsError: 5.15309e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73406e-08\tAbsError: 6.02830e-06\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 9.24879e-02\tAbsError: 1.23871e+13\n", + " Region: \"zone_1\"\tRelError: 2.93353e-03\tAbsError: 2.91323e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.93269e-03\tAbsError: 4.76030e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.36559e-07\tAbsError: 2.90847e-04\n", + " Region: \"zone_3\"\tRelError: 8.95543e-02\tAbsError: 1.23871e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95573e-05\tAbsError: 6.16953e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.91930e-05\tAbsError: 6.21758e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.95147e-02\tAbsError: 4.79468e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.36647e-07\tAbsError: 2.90878e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.97135e-02\tAbsError: 1.77017e+13\n", + " Region: \"zone_1\"\tRelError: 8.10974e-03\tAbsError: 9.56061e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.10699e-03\tAbsError: 2.58822e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.74820e-06\tAbsError: 9.53472e-04\n", + " Region: \"zone_3\"\tRelError: 1.16038e-02\tAbsError: 1.77017e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.40550e-04\tAbsError: 8.98186e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.36238e-04\tAbsError: 8.71985e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11242e-02\tAbsError: 2.86154e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.74933e-06\tAbsError: 9.53894e-04\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.04494e-04\tAbsError: 8.40909e+09\n", + " Region: \"zone_1\"\tRelError: 2.40898e-06\tAbsError: 3.47308e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.40799e-06\tAbsError: 3.03615e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.97547e-10\tAbsError: 3.47005e-07\n", + " Region: \"zone_3\"\tRelError: 1.02085e-04\tAbsError: 8.40909e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09555e-09\tAbsError: 4.19130e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.33180e-08\tAbsError: 4.21779e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02063e-04\tAbsError: 3.06848e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.97958e-10\tAbsError: 3.47157e-07\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 8.12930e-05\tAbsError: 4.69072e+10\n", + " Region: \"zone_1\"\tRelError: 3.38946e-06\tAbsError: 1.38742e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.38548e-06\tAbsError: 1.62196e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.98640e-09\tAbsError: 1.38580e-06\n", + " Region: \"zone_3\"\tRelError: 7.79035e-05\tAbsError: 4.69072e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.45193e-08\tAbsError: 2.33605e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.92263e-08\tAbsError: 2.35467e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.77958e-05\tAbsError: 1.64038e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.98804e-09\tAbsError: 1.38641e-06\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.79957e-02\tAbsError: 2.00241e+12\n", + " Region: \"zone_1\"\tRelError: 5.80226e-04\tAbsError: 1.06766e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.79919e-04\tAbsError: 7.62075e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.06294e-07\tAbsError: 1.06690e-04\n", + " Region: \"zone_3\"\tRelError: 1.74155e-02\tAbsError: 2.00241e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.83435e-06\tAbsError: 9.97535e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.43171e-06\tAbsError: 1.00487e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74069e-02\tAbsError: 7.69605e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.06408e-07\tAbsError: 1.06730e-04\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:01\u001b[0m.\u001b[1;36m462\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 1.0\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.69760e-01\tAbsError: 4.68334e+13\n", + " Region: \"zone_1\"\tRelError: 1.19569e-01\tAbsError: 7.61832e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19547e-01\tAbsError: 4.95901e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19618e-05\tAbsError: 7.61337e-03\n", + " Region: \"zone_3\"\tRelError: 5.01907e-02\tAbsError: 4.68334e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.70213e-04\tAbsError: 2.32020e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.79865e-04\tAbsError: 2.36314e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.94186e-02\tAbsError: 5.44228e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19693e-05\tAbsError: 7.61572e-03\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.33124e-03\tAbsError: 2.46309e+12\n", + " Region: \"zone_1\"\tRelError: 1.37719e-03\tAbsError: 4.41878e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37593e-03\tAbsError: 3.50170e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26973e-06\tAbsError: 4.41528e-04\n", + " Region: \"zone_3\"\tRelError: 1.95405e-03\tAbsError: 2.46309e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.36051e-05\tAbsError: 1.24745e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.30473e-05\tAbsError: 1.21564e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88613e-03\tAbsError: 3.81559e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27021e-06\tAbsError: 4.41698e-04\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 3.06417e-05\tAbsError: 2.52206e+09\n", + " Region: \"zone_1\"\tRelError: 7.05538e-07\tAbsError: 8.28433e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 7.05300e-07\tAbsError: 8.99798e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.37890e-10\tAbsError: 8.27533e-08\n", + " Region: \"zone_3\"\tRelError: 2.99361e-05\tAbsError: 2.52206e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10205e-09\tAbsError: 1.25704e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.66190e-09\tAbsError: 1.26502e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.99301e-05\tAbsError: 9.09499e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.37988e-10\tAbsError: 8.27887e-08\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 6.16882e-03\tAbsError: 7.25783e+11\n", + " Region: \"zone_1\"\tRelError: 1.98056e-04\tAbsError: 2.16951e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97994e-04\tAbsError: 2.65471e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.22079e-08\tAbsError: 2.16685e-05\n", + " Region: \"zone_3\"\tRelError: 5.97077e-03\tAbsError: 7.25783e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06142e-06\tAbsError: 3.61574e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.32785e-06\tAbsError: 3.64210e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.96832e-03\tAbsError: 2.68167e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.22311e-08\tAbsError: 2.16771e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:02\u001b[0m.\u001b[1;36m607\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: 1.05\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.03310e-01\tAbsError: 2.63271e+13\n", + " Region: \"zone_1\"\tRelError: 7.05840e-02\tAbsError: 9.69314e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.05812e-02\tAbsError: 2.64907e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.78758e-06\tAbsError: 9.66665e-04\n", + " Region: \"zone_3\"\tRelError: 3.27258e-02\tAbsError: 2.63271e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.20183e-04\tAbsError: 1.30792e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.13005e-04\tAbsError: 1.32480e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.22898e-02\tAbsError: 2.66390e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.78870e-06\tAbsError: 9.67064e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.58363e+04\tAbsError: 1.47473e+18\n", + " Region: \"zone_1\"\tRelError: 6.98536e+03\tAbsError: 4.09543e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.98536e+03\tAbsError: 4.09539e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20641e-09\tAbsError: 4.19390e-07\n", + " Region: \"zone_3\"\tRelError: 2.88509e+04\tAbsError: 1.47473e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.64637e-01\tAbsError: 7.31003e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.38568e-01\tAbsError: 7.43726e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88496e+04\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20691e-09\tAbsError: 4.19574e-07\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.40229e-03\tAbsError: 1.07633e+12\n", + " Region: \"zone_1\"\tRelError: 5.79486e-04\tAbsError: 8.11928e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.79253e-04\tAbsError: 1.44943e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.33074e-07\tAbsError: 8.10479e-05\n", + " Region: \"zone_3\"\tRelError: 8.22800e-04\tAbsError: 1.07633e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46984e-05\tAbsError: 5.45591e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.43521e-05\tAbsError: 5.30742e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.93516e-04\tAbsError: 1.63890e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.33168e-07\tAbsError: 8.10816e-05\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.32512e-03\tAbsError: 1.39840e+11\n", + " Region: \"zone_1\"\tRelError: 4.25623e-05\tAbsError: 6.99519e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.25422e-05\tAbsError: 5.61701e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00663e-08\tAbsError: 6.98958e-06\n", + " Region: \"zone_3\"\tRelError: 1.28256e-03\tAbsError: 1.39840e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.35090e-07\tAbsError: 6.96726e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.14577e-07\tAbsError: 7.01672e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28199e-03\tAbsError: 5.67287e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00739e-08\tAbsError: 6.99239e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.21198e+03\tAbsError: 1.97975e+18\n", + " Region: \"zone_1\"\tRelError: 5.40129e+03\tAbsError: 4.20722e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.40129e+03\tAbsError: 4.20722e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.83456e-11\tAbsError: 2.37750e-08\n", + " Region: \"zone_3\"\tRelError: 8.10687e+02\tAbsError: 1.97975e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39347e-01\tAbsError: 9.86517e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.18133e-01\tAbsError: 9.93237e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 8.09430e+02\tAbsError: 4.20726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.83739e-11\tAbsError: 2.37852e-08\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.82959e-04\tAbsError: 1.95824e+11\n", + " Region: \"zone_1\"\tRelError: 1.17187e-04\tAbsError: 3.06697e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17099e-04\tAbsError: 2.78943e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.81182e-08\tAbsError: 3.06418e-05\n", + " Region: \"zone_3\"\tRelError: 1.65772e-04\tAbsError: 1.95824e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.67567e-06\tAbsError: 9.90968e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.61832e-06\tAbsError: 9.67276e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60389e-04\tAbsError: 3.12886e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.81525e-08\tAbsError: 3.06545e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.71612e-02\tAbsError: 3.55945e+12\n", + " Region: \"zone_1\"\tRelError: 1.18000e-02\tAbsError: 4.59042e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17987e-02\tAbsError: 3.51306e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31945e-06\tAbsError: 4.58691e-04\n", + " Region: \"zone_3\"\tRelError: 5.36119e-03\tAbsError: 3.55945e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.95552e-05\tAbsError: 1.76936e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.88055e-05\tAbsError: 1.79009e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.30151e-03\tAbsError: 3.53210e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31997e-06\tAbsError: 4.58880e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 8.73385e+02\tAbsError: 4.80817e+17\n", + " Region: \"zone_1\"\tRelError: 4.36320e+02\tAbsError: 1.19061e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.36317e+02\tAbsError: 3.07626e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.33293e-03\tAbsError: 1.15985e+00\n", + " Region: \"zone_3\"\tRelError: 4.37065e+02\tAbsError: 4.80817e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.79759e-01\tAbsError: 2.41402e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.64874e-01\tAbsError: 2.39414e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.36317e+02\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.33331e-03\tAbsError: 1.15994e+00\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 4.07310e-04\tAbsError: 4.47841e+10\n", + " Region: \"zone_1\"\tRelError: 1.30926e-05\tAbsError: 1.54205e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30881e-05\tAbsError: 1.75011e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.42203e-09\tAbsError: 1.54030e-06\n", + " Region: \"zone_3\"\tRelError: 3.94218e-04\tAbsError: 4.47841e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.33915e-08\tAbsError: 2.23135e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.92263e-08\tAbsError: 2.24706e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.94061e-04\tAbsError: 1.76782e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.42382e-09\tAbsError: 1.54097e-06\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 9.88095e-05\tAbsError: 7.06114e+10\n", + " Region: \"zone_1\"\tRelError: 4.09067e-05\tAbsError: 6.52689e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.08879e-05\tAbsError: 1.01656e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87404e-08\tAbsError: 6.51672e-06\n", + " Region: \"zone_3\"\tRelError: 5.79028e-05\tAbsError: 7.06114e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.65522e-07\tAbsError: 3.57680e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.40427e-07\tAbsError: 3.48434e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.59781e-05\tAbsError: 1.14697e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87479e-08\tAbsError: 6.51948e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:05\u001b[0m.\u001b[1;36m605\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:05\u001b[0m.\u001b[1;36m605\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.8349999999999999\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Iteration: 1\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + " Device: \"device\"\tRelError: 1.42901e+02\tAbsError: 5.66273e+17\n", + " Region: \"zone_1\"\tRelError: 1.35535e+01\tAbsError: 1.67685e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35488e+01\tAbsError: 3.20812e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.71225e-03\tAbsError: 1.64477e+00\n", + " Region: \"zone_3\"\tRelError: 1.29347e+02\tAbsError: 5.66273e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.34240e-01\tAbsError: 2.83703e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.33762e-01\tAbsError: 2.82571e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28675e+02\tAbsError: 3.20820e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.71256e-03\tAbsError: 1.64494e+00\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 7.29149e-03\tAbsError: 1.57099e+12\n", + " Region: \"zone_1\"\tRelError: 5.00283e-03\tAbsError: 8.22643e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.00259e-03\tAbsError: 1.42637e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36225e-07\tAbsError: 8.21216e-05\n", + " Region: \"zone_3\"\tRelError: 2.28866e-03\tAbsError: 1.57099e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32701e-05\tAbsError: 7.81015e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.27720e-05\tAbsError: 7.89977e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.26238e-03\tAbsError: 1.43454e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36315e-07\tAbsError: 8.21544e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.66204e+03\tAbsError: 6.93474e+16\n", + " Region: \"zone_1\"\tRelError: 8.76338e+02\tAbsError: 4.68048e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.76336e+02\tAbsError: 2.58614e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26825e-03\tAbsError: 4.42186e-01\n", + " Region: \"zone_3\"\tRelError: 7.85702e+02\tAbsError: 6.93474e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.33245e-02\tAbsError: 3.47970e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.15582e-02\tAbsError: 3.45503e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.85556e+02\tAbsError: 2.58778e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26845e-03\tAbsError: 4.42250e-01\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 9.30929e-05\tAbsError: 9.62198e+09\n", + " Region: \"zone_1\"\tRelError: 2.99044e-06\tAbsError: 4.57774e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.98913e-06\tAbsError: 3.95789e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31308e-09\tAbsError: 4.57379e-07\n", + " Region: \"zone_3\"\tRelError: 9.01025e-05\tAbsError: 9.62198e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50292e-08\tAbsError: 4.79430e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.16874e-08\tAbsError: 4.82769e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.00644e-05\tAbsError: 3.99741e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31362e-09\tAbsError: 4.57578e-07\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.44483e-03\tAbsError: 2.78794e+11\n", + " Region: \"zone_1\"\tRelError: 9.92254e-04\tAbsError: 3.13341e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.92164e-04\tAbsError: 2.69105e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.00557e-08\tAbsError: 3.13071e-05\n", + " Region: \"zone_3\"\tRelError: 4.52576e-04\tAbsError: 2.78794e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.33571e-06\tAbsError: 1.38640e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.25733e-06\tAbsError: 1.40155e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.47893e-04\tAbsError: 2.70655e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.00927e-08\tAbsError: 3.13209e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 8.75970e+00\tAbsError: 5.63764e+16\n", + " Region: \"zone_1\"\tRelError: 6.92610e+00\tAbsError: 3.03076e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 6.91755e+00\tAbsError: 2.58876e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.55205e-03\tAbsError: 3.00487e+00\n", + " Region: \"zone_3\"\tRelError: 1.83361e+00\tAbsError: 5.63764e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.50579e-02\tAbsError: 2.82845e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.12026e-02\tAbsError: 2.80919e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68878e+00\tAbsError: 2.58755e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.56303e-03\tAbsError: 3.00881e+00\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 9.05392e+01\tAbsError: 2.15165e+17\n", + " Region: \"zone_1\"\tRelError: 8.45050e+01\tAbsError: 4.19650e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.45050e+01\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.17054e-09\tAbsError: 2.14572e-06\n", + " Region: \"zone_3\"\tRelError: 6.03424e+00\tAbsError: 2.15165e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69072e-01\tAbsError: 1.09160e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.65008e-01\tAbsError: 1.06006e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.50016e+00\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.17312e-09\tAbsError: 2.14667e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.46324e+03\tAbsError: 5.14576e+15\n", + " Region: \"zone_1\"\tRelError: 6.87978e+02\tAbsError: 7.78255e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.87976e+02\tAbsError: 9.16449e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19704e-03\tAbsError: 7.69091e-01\n", + " Region: \"zone_3\"\tRelError: 7.75259e+02\tAbsError: 5.14576e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52317e-02\tAbsError: 2.57522e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.85097e-03\tAbsError: 2.57054e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.75237e+02\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19704e-03\tAbsError: 7.69091e-01\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 5.06646e-04\tAbsError: 1.01086e+11\n", + " Region: \"zone_1\"\tRelError: 3.47894e-04\tAbsError: 6.54239e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.47875e-04\tAbsError: 9.81295e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87909e-08\tAbsError: 6.53257e-06\n", + " Region: \"zone_3\"\tRelError: 1.58752e-04\tAbsError: 1.01086e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.54559e-07\tAbsError: 5.02676e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.21808e-07\tAbsError: 5.08185e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57057e-04\tAbsError: 9.96756e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87988e-08\tAbsError: 6.53547e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.51142e+01\tAbsError: 2.01718e+16\n", + " Region: \"zone_1\"\tRelError: 3.62794e+00\tAbsError: 1.96542e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.62235e+00\tAbsError: 1.08333e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.59401e-03\tAbsError: 1.95458e+00\n", + " Region: \"zone_3\"\tRelError: 2.14863e+01\tAbsError: 2.01718e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53811e-02\tAbsError: 1.01125e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.94421e-02\tAbsError: 1.00593e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.14358e+01\tAbsError: 1.08344e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.60311e-03\tAbsError: 1.95781e+00\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:08\u001b[0m.\u001b[1;36m726\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 6.86875e+01\tAbsError: 2.11173e+17\n", + " Region: \"zone_1\"\tRelError: 6.09541e+01\tAbsError: 3.17091e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.09532e+01\tAbsError: 3.19523e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.22478e-04\tAbsError: 2.85139e-01\n", + " Region: \"zone_3\"\tRelError: 7.73346e+00\tAbsError: 2.11173e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17930e-01\tAbsError: 1.06081e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.46503e-01\tAbsError: 1.05092e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 6.46820e+00\tAbsError: 3.19525e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.22478e-04\tAbsError: 2.85139e-01\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:08\u001b[0m.\u001b[1;36m754\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.25 bias\u001b[0m \n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.96023e+00\tAbsError: 5.32372e+15\n", + " Region: \"zone_1\"\tRelError: 4.54639e+00\tAbsError: 1.02863e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54344e+00\tAbsError: 2.66559e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94644e-03\tAbsError: 1.02837e+00\n", + " Region: \"zone_3\"\tRelError: 2.41384e+00\tAbsError: 5.32372e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.51219e-02\tAbsError: 2.60450e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.65403e-03\tAbsError: 2.71922e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38011e+00\tAbsError: 2.68000e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.95139e-03\tAbsError: 1.03011e+00\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:08\u001b[0m.\u001b[1;36m778\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.12327e-04\tAbsError: 2.10463e+10\n", + " Region: \"zone_1\"\tRelError: 7.71522e-05\tAbsError: 2.15853e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.71460e-05\tAbsError: 2.11540e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.20283e-09\tAbsError: 2.15642e-06\n", + " Region: \"zone_3\"\tRelError: 3.51752e-05\tAbsError: 2.10463e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.76939e-07\tAbsError: 1.04674e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.70744e-07\tAbsError: 1.05789e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.48213e-05\tAbsError: 2.13769e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.20541e-09\tAbsError: 2.15735e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.45067e+01\tAbsError: 1.87553e+16\n", + " Region: \"zone_1\"\tRelError: 2.46370e+00\tAbsError: 1.47436e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.45948e+00\tAbsError: 1.97736e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.21275e-03\tAbsError: 1.47416e+00\n", + " Region: \"zone_3\"\tRelError: 1.20431e+01\tAbsError: 1.87553e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.15213e-02\tAbsError: 9.01113e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.31331e-03\tAbsError: 9.74413e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20100e+01\tAbsError: 1.98904e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.21492e-03\tAbsError: 1.47492e+00\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.19880e+03\tAbsError: 1.25545e+19\n", + " Region: \"zone_1\"\tRelError: 5.00629e+02\tAbsError: 9.26313e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.00629e+02\tAbsError: 9.26312e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.05730e-10\tAbsError: 1.06495e-07\n", + " Region: \"zone_3\"\tRelError: 6.98175e+02\tAbsError: 1.25545e+19\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32269e+02\tAbsError: 5.15576e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.45517e+02\tAbsError: 7.39872e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20389e+02\tAbsError: 9.26320e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.05855e-10\tAbsError: 1.06540e-07\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.07732e+01\tAbsError: 5.66142e+15\n", + " Region: \"zone_1\"\tRelError: 6.09549e-01\tAbsError: 6.00187e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.09378e-01\tAbsError: 2.72034e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71203e-04\tAbsError: 5.97467e-02\n", + " Region: \"zone_3\"\tRelError: 6.01636e+01\tAbsError: 5.66142e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13691e-02\tAbsError: 2.75447e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.48872e-03\tAbsError: 2.90695e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.01496e+01\tAbsError: 2.74039e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71270e-04\tAbsError: 5.97699e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.23338e+01\tAbsError: 1.14319e+17\n", + " Region: \"zone_1\"\tRelError: 9.07204e+00\tAbsError: 8.83948e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.07186e+00\tAbsError: 2.58559e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80215e-04\tAbsError: 6.25389e-02\n", + " Region: \"zone_3\"\tRelError: 1.32617e+01\tAbsError: 1.14319e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.70133e-01\tAbsError: 5.77957e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.80255e-01\tAbsError: 5.65233e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26112e+01\tAbsError: 2.58311e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80264e-04\tAbsError: 6.25548e-02\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 3.52975e-05\tAbsError: 6.76967e+09\n", + " Region: \"zone_1\"\tRelError: 2.42437e-05\tAbsError: 4.94954e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42423e-05\tAbsError: 6.80309e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42175e-09\tAbsError: 4.94273e-07\n", + " Region: \"zone_3\"\tRelError: 1.10538e-05\tAbsError: 6.76967e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.72210e-08\tAbsError: 3.36682e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.50231e-08\tAbsError: 3.40285e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09401e-05\tAbsError: 6.93709e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42234e-09\tAbsError: 4.94487e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:10\u001b[0m.\u001b[1;36m530\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.8699999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.24072e+00\tAbsError: 9.43976e+15\n", + " Region: \"zone_1\"\tRelError: 5.40200e+00\tAbsError: 5.25342e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.40185e+00\tAbsError: 3.80157e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49014e-04\tAbsError: 5.21540e-02\n", + " Region: \"zone_3\"\tRelError: 8.38724e-01\tAbsError: 9.43976e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52880e-02\tAbsError: 4.61247e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.01775e-03\tAbsError: 4.82729e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.20269e-01\tAbsError: 3.82769e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49095e-04\tAbsError: 5.21821e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.64735e+02\tAbsError: 1.04135e+19\n", + " Region: \"zone_1\"\tRelError: 5.00518e+01\tAbsError: 4.83021e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.00380e+01\tAbsError: 8.99016e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37870e-02\tAbsError: 4.74031e+00\n", + " Region: \"zone_3\"\tRelError: 3.14684e+02\tAbsError: 1.04135e+19\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 4.33275e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.73820e+02\tAbsError: 6.08074e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31850e+02\tAbsError: 8.99018e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37888e-02\tAbsError: 4.74083e+00\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.18137e+00\tAbsError: 3.71256e+14\n", + " Region: \"zone_1\"\tRelError: 8.31734e-02\tAbsError: 3.74686e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.30661e-02\tAbsError: 1.92544e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07324e-04\tAbsError: 3.74493e-02\n", + " Region: \"zone_3\"\tRelError: 1.09819e+00\tAbsError: 3.71256e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23962e-03\tAbsError: 1.84907e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.91184e-04\tAbsError: 1.86349e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09615e+00\tAbsError: 1.93888e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07368e-04\tAbsError: 3.74645e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.56211e+00\tAbsError: 2.66918e+16\n", + " Region: \"zone_1\"\tRelError: 1.69107e+00\tAbsError: 2.89241e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69026e+00\tAbsError: 1.06612e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03961e-04\tAbsError: 2.78580e-01\n", + " Region: \"zone_3\"\tRelError: 3.87104e+00\tAbsError: 2.66918e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07163e-01\tAbsError: 1.33931e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.50486e-02\tAbsError: 1.32988e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.71803e+00\tAbsError: 1.06615e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03961e-04\tAbsError: 2.78580e-01\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.78693e+01\tAbsError: 3.39789e+17\n", + " Region: \"zone_1\"\tRelError: 6.85783e+01\tAbsError: 4.29339e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.85783e+01\tAbsError: 4.29337e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31349e-10\tAbsError: 1.49959e-07\n", + " Region: \"zone_3\"\tRelError: 9.29095e+00\tAbsError: 3.39789e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.70074e-01\tAbsError: 1.69409e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.63422e-01\tAbsError: 1.70379e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 7.75745e+00\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31527e-10\tAbsError: 1.50023e-07\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.06185e-01\tAbsError: 3.08037e+14\n", + " Region: \"zone_1\"\tRelError: 1.71268e-01\tAbsError: 4.84174e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.71130e-01\tAbsError: 1.73950e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38313e-04\tAbsError: 4.84000e-02\n", + " Region: \"zone_3\"\tRelError: 3.49170e-02\tAbsError: 3.08037e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42050e-03\tAbsError: 1.49668e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.55604e-04\tAbsError: 1.58369e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.29026e-02\tAbsError: 1.74981e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38368e-04\tAbsError: 4.84192e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.29490e+02\tAbsError: 3.51023e+18\n", + " Region: \"zone_1\"\tRelError: 1.98238e+01\tAbsError: 4.32385e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.98116e+01\tAbsError: 8.69446e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21421e-02\tAbsError: 4.23691e+00\n", + " Region: \"zone_3\"\tRelError: 9.09666e+02\tAbsError: 3.51023e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.82099e+01\tAbsError: 1.78518e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.52423e+02\tAbsError: 1.72505e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 2.89021e+02\tAbsError: 8.69449e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21450e-02\tAbsError: 4.23806e+00\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.46007e+00\tAbsError: 2.29640e+14\n", + " Region: \"zone_1\"\tRelError: 4.03111e-02\tAbsError: 3.94907e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.02998e-02\tAbsError: 1.05545e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13173e-05\tAbsError: 3.93851e-03\n", + " Region: \"zone_3\"\tRelError: 1.41976e+00\tAbsError: 2.29640e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16328e-04\tAbsError: 1.14327e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.52600e-04\tAbsError: 1.15314e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41908e+00\tAbsError: 1.06317e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13180e-05\tAbsError: 3.93853e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.83788e+00\tAbsError: 2.55334e+15\n", + " Region: \"zone_1\"\tRelError: 1.17954e+00\tAbsError: 3.25510e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17945e+00\tAbsError: 5.46819e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.37076e-05\tAbsError: 3.24963e-02\n", + " Region: \"zone_3\"\tRelError: 6.58336e-01\tAbsError: 2.55334e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.48841e-02\tAbsError: 1.31730e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.42693e-03\tAbsError: 1.23604e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.40932e-01\tAbsError: 5.52119e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.38423e-05\tAbsError: 3.25425e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.56499e+01\tAbsError: 3.39345e+17\n", + " Region: \"zone_1\"\tRelError: 1.75628e+00\tAbsError: 2.28368e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75572e+00\tAbsError: 3.30998e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.63387e-04\tAbsError: 1.95268e-01\n", + " Region: \"zone_3\"\tRelError: 2.38936e+01\tAbsError: 3.39345e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.04191e-01\tAbsError: 1.72005e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.19865e-01\tAbsError: 1.67340e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.26690e+01\tAbsError: 3.31000e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.63387e-04\tAbsError: 1.95268e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 7.52589e-01\tAbsError: 2.90021e+14\n", + " Region: \"zone_1\"\tRelError: 6.78925e-01\tAbsError: 3.33813e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.78915e-01\tAbsError: 1.33213e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.50121e-06\tAbsError: 3.32481e-03\n", + " Region: \"zone_3\"\tRelError: 7.36636e-02\tAbsError: 2.90021e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.74372e-04\tAbsError: 1.44443e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.19813e-04\tAbsError: 1.45579e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.27599e-02\tAbsError: 1.34085e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.50505e-06\tAbsError: 3.32614e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.72759e+02\tAbsError: 3.80692e+18\n", + " Region: \"zone_1\"\tRelError: 4.22886e+01\tAbsError: 1.58295e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22843e+01\tAbsError: 8.37231e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31494e-03\tAbsError: 1.49922e+00\n", + " Region: \"zone_3\"\tRelError: 1.30470e+02\tAbsError: 3.80692e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.29125e+01\tAbsError: 1.92102e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.31882e+01\tAbsError: 1.88590e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 6.43655e+01\tAbsError: 8.37233e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31623e-03\tAbsError: 1.49970e+00\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.11111e-01\tAbsError: 2.79827e+13\n", + " Region: \"zone_1\"\tRelError: 7.25122e-03\tAbsError: 1.74217e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.24621e-03\tAbsError: 1.19347e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.00326e-06\tAbsError: 1.74098e-03\n", + " Region: \"zone_3\"\tRelError: 2.03859e-01\tAbsError: 2.79827e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67617e-05\tAbsError: 1.39372e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.89481e-05\tAbsError: 1.40455e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03729e-01\tAbsError: 1.20196e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.00391e-06\tAbsError: 1.74126e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.44853e-03\tAbsError: 9.65526e+13\n", + " Region: \"zone_1\"\tRelError: 5.54449e-03\tAbsError: 4.95915e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.53020e-03\tAbsError: 7.89077e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42878e-05\tAbsError: 4.95125e-03\n", + " Region: \"zone_3\"\tRelError: 9.04033e-04\tAbsError: 9.65526e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.44309e-04\tAbsError: 4.72399e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.72867e-04\tAbsError: 4.93127e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.72567e-04\tAbsError: 7.95387e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42898e-05\tAbsError: 4.95186e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.42340e+01\tAbsError: 1.51712e+17\n", + " Region: \"zone_1\"\tRelError: 8.67693e+00\tAbsError: 2.15109e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.67638e+00\tAbsError: 2.58904e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.45520e-04\tAbsError: 1.89218e-01\n", + " Region: \"zone_3\"\tRelError: 5.55710e+00\tAbsError: 1.51712e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.40518e-01\tAbsError: 7.62921e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.28757e-01\tAbsError: 7.54196e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.98728e+00\tAbsError: 2.58830e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.45609e-04\tAbsError: 1.89245e-01\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.95001e-02\tAbsError: 1.96145e+13\n", + " Region: \"zone_1\"\tRelError: 6.19508e-02\tAbsError: 1.94459e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.19452e-02\tAbsError: 1.07047e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.56869e-06\tAbsError: 1.94352e-03\n", + " Region: \"zone_3\"\tRelError: 7.54931e-03\tAbsError: 1.96145e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16796e-05\tAbsError: 9.76745e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.02449e-05\tAbsError: 9.84707e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.42181e-03\tAbsError: 1.07732e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.56990e-06\tAbsError: 1.94402e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 9.24879e-02\tAbsError: 1.23871e+13\n", + " Region: \"zone_1\"\tRelError: 2.93353e-03\tAbsError: 2.91323e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.93269e-03\tAbsError: 4.76030e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.36559e-07\tAbsError: 2.90847e-04\n", + " Region: \"zone_3\"\tRelError: 8.95543e-02\tAbsError: 1.23871e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95573e-05\tAbsError: 6.16953e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.91930e-05\tAbsError: 6.21758e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.95147e-02\tAbsError: 4.79468e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.36647e-07\tAbsError: 2.90878e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.70615e+03\tAbsError: 4.52231e+17\n", + " Region: \"zone_1\"\tRelError: 4.09008e+01\tAbsError: 7.77968e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.08988e+01\tAbsError: 8.01892e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.01232e-03\tAbsError: 6.97779e-01\n", + " Region: \"zone_3\"\tRelError: 1.66525e+03\tAbsError: 4.52231e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.99679e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.65067e+03\tAbsError: 2.52552e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 5.57927e+00\tAbsError: 8.01894e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.01232e-03\tAbsError: 6.97779e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 9.75163e-02\tAbsError: 3.25390e+13\n", + " Region: \"zone_1\"\tRelError: 6.42969e-02\tAbsError: 6.98099e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.42949e-02\tAbsError: 1.30012e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00484e-06\tAbsError: 6.96799e-04\n", + " Region: \"zone_3\"\tRelError: 3.32194e-02\tAbsError: 3.25390e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.22317e-05\tAbsError: 1.60110e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.63713e-05\tAbsError: 1.65281e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.30588e-02\tAbsError: 1.31290e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00578e-06\tAbsError: 6.97121e-04\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.13410e+02\tAbsError: 2.22863e+16\n", + " Region: \"zone_1\"\tRelError: 1.13012e+02\tAbsError: 2.95028e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13011e+02\tAbsError: 1.22650e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.15806e-04\tAbsError: 2.82763e-01\n", + " Region: \"zone_3\"\tRelError: 3.97767e-01\tAbsError: 2.22863e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.56928e-02\tAbsError: 1.11657e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.97555e-02\tAbsError: 1.11206e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.81503e-01\tAbsError: 1.22654e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.15806e-04\tAbsError: 2.82763e-01\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.70469e-02\tAbsError: 1.30475e+13\n", + " Region: \"zone_1\"\tRelError: 4.22512e-02\tAbsError: 2.14289e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22506e-02\tAbsError: 5.27007e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.13323e-07\tAbsError: 2.13762e-04\n", + " Region: \"zone_3\"\tRelError: 4.79561e-03\tAbsError: 1.30475e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.37860e-05\tAbsError: 6.50229e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.14826e-05\tAbsError: 6.54518e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.74973e-03\tAbsError: 5.30379e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.13323e-07\tAbsError: 2.13762e-04\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.79957e-02\tAbsError: 2.00241e+12\n", + " Region: \"zone_1\"\tRelError: 5.80226e-04\tAbsError: 1.06766e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.79919e-04\tAbsError: 7.62075e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.06294e-07\tAbsError: 1.06690e-04\n", + " Region: \"zone_3\"\tRelError: 1.74155e-02\tAbsError: 2.00241e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.83435e-06\tAbsError: 9.97535e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.43171e-06\tAbsError: 1.00487e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74069e-02\tAbsError: 7.69605e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.06408e-07\tAbsError: 1.06730e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.37479e+02\tAbsError: 4.65758e+16\n", + " Region: \"zone_1\"\tRelError: 6.64495e+00\tAbsError: 3.31762e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.64421e+00\tAbsError: 7.62823e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.36217e-04\tAbsError: 2.55480e-01\n", + " Region: \"zone_3\"\tRelError: 2.30834e+02\tAbsError: 4.65758e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.28075e+02\tAbsError: 3.44923e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.30645e+00\tAbsError: 1.20835e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.52764e-01\tAbsError: 7.62825e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.36217e-04\tAbsError: 2.55480e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.13157e-03\tAbsError: 2.71555e+12\n", + " Region: \"zone_1\"\tRelError: 7.85615e-04\tAbsError: 2.66866e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.84848e-04\tAbsError: 2.19182e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.67288e-07\tAbsError: 2.66647e-04\n", + " Region: \"zone_3\"\tRelError: 3.45960e-04\tAbsError: 2.71555e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.38252e-06\tAbsError: 1.33180e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.48145e-06\tAbsError: 1.38375e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.28328e-04\tAbsError: 2.21071e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.67607e-07\tAbsError: 2.66762e-04\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 6.50941e-03\tAbsError: 1.40933e+12\n", + " Region: \"zone_1\"\tRelError: 5.82453e-03\tAbsError: 1.02397e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.82424e-03\tAbsError: 6.23406e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.93614e-07\tAbsError: 1.02335e-04\n", + " Region: \"zone_3\"\tRelError: 6.84879e-04\tAbsError: 1.40933e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.79459e-06\tAbsError: 7.02415e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.91114e-06\tAbsError: 7.06915e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.76879e-04\tAbsError: 6.27266e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.93670e-07\tAbsError: 1.02355e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.61604e+00\tAbsError: 2.71406e+15\n", + " Region: \"zone_1\"\tRelError: 1.44549e+00\tAbsError: 4.95422e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44535e+00\tAbsError: 4.48303e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42647e-04\tAbsError: 4.94973e-02\n", + " Region: \"zone_3\"\tRelError: 1.70549e-01\tAbsError: 2.71406e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.01740e-03\tAbsError: 1.39529e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.58382e-03\tAbsError: 1.31876e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59805e-01\tAbsError: 4.55618e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42858e-04\tAbsError: 4.95718e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 6.16882e-03\tAbsError: 7.25783e+11\n", + " Region: \"zone_1\"\tRelError: 1.98056e-04\tAbsError: 2.16951e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97994e-04\tAbsError: 2.65471e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.22079e-08\tAbsError: 2.16685e-05\n", + " Region: \"zone_3\"\tRelError: 5.97077e-03\tAbsError: 7.25783e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06142e-06\tAbsError: 3.61574e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.32785e-06\tAbsError: 3.64210e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.96832e-03\tAbsError: 2.68167e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.22311e-08\tAbsError: 2.16771e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.74025e+02\tAbsError: 3.37469e+16\n", + " Region: \"zone_1\"\tRelError: 1.68589e+01\tAbsError: 1.25546e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68588e+01\tAbsError: 7.19237e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54526e-04\tAbsError: 5.36225e-02\n", + " Region: \"zone_3\"\tRelError: 7.57166e+02\tAbsError: 3.37469e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.78798e+02\tAbsError: 1.89188e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.78203e+02\tAbsError: 1.48281e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65070e-01\tAbsError: 7.19239e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54982e-04\tAbsError: 5.37834e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 5.55248e-03\tAbsError: 1.64976e+12\n", + " Region: \"zone_1\"\tRelError: 3.67085e-03\tAbsError: 1.64025e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.67080e-03\tAbsError: 7.32464e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.69818e-08\tAbsError: 1.63293e-05\n", + " Region: \"zone_3\"\tRelError: 1.88163e-03\tAbsError: 1.64976e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.20100e-06\tAbsError: 8.12537e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.84601e-06\tAbsError: 8.37224e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87354e-03\tAbsError: 7.39315e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.70059e-08\tAbsError: 1.63376e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.83782e-03\tAbsError: 6.55135e+11\n", + " Region: \"zone_1\"\tRelError: 2.54483e-03\tAbsError: 1.58738e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54479e-03\tAbsError: 2.47047e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.54187e-08\tAbsError: 1.58491e-05\n", + " Region: \"zone_3\"\tRelError: 2.92993e-04\tAbsError: 6.55135e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.14183e-06\tAbsError: 3.26636e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34656e-06\tAbsError: 3.28499e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.90460e-04\tAbsError: 2.49353e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.54356e-08\tAbsError: 1.58552e-05\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.32512e-03\tAbsError: 1.39840e+11\n", + " Region: \"zone_1\"\tRelError: 4.25623e-05\tAbsError: 6.99519e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.25422e-05\tAbsError: 5.61701e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00663e-08\tAbsError: 6.98958e-06\n", + " Region: \"zone_3\"\tRelError: 1.28256e-03\tAbsError: 1.39840e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.35090e-07\tAbsError: 6.96726e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.14577e-07\tAbsError: 7.01672e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28199e-03\tAbsError: 5.67287e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00739e-08\tAbsError: 6.99239e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.39978e-01\tAbsError: 1.73686e+14\n", + " Region: \"zone_1\"\tRelError: 4.36730e-01\tAbsError: 5.01253e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.36716e-01\tAbsError: 1.35366e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43838e-05\tAbsError: 4.99899e-03\n", + " Region: \"zone_3\"\tRelError: 3.24796e-03\tAbsError: 1.73686e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.93699e-04\tAbsError: 8.57881e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.16982e-04\tAbsError: 8.78978e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.62289e-03\tAbsError: 1.36588e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43893e-05\tAbsError: 5.00091e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.10144e+04\tAbsError: 6.94366e+15\n", + " Region: \"zone_1\"\tRelError: 2.97996e-01\tAbsError: 3.02085e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97319e-01\tAbsError: 6.70102e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.76859e-04\tAbsError: 2.35075e-01\n", + " Region: \"zone_3\"\tRelError: 1.10141e+04\tAbsError: 6.94366e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.37954e+02\tAbsError: 2.52596e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04760e+04\tAbsError: 4.41770e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29582e-01\tAbsError: 6.70105e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.76859e-04\tAbsError: 2.35075e-01\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.41098e-04\tAbsError: 3.70638e+10\n", + " Region: \"zone_1\"\tRelError: 1.60736e-04\tAbsError: 1.49732e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60693e-04\tAbsError: 4.79644e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.30721e-08\tAbsError: 1.49684e-05\n", + " Region: \"zone_3\"\tRelError: 8.03619e-05\tAbsError: 3.70638e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16860e-07\tAbsError: 1.81925e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.69346e-07\tAbsError: 1.88712e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.98326e-05\tAbsError: 4.83644e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.30899e-08\tAbsError: 1.49749e-05\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 4.86432e-04\tAbsError: 9.58669e+10\n", + " Region: \"zone_1\"\tRelError: 4.35367e-04\tAbsError: 6.01843e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.35349e-04\tAbsError: 4.20846e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72349e-08\tAbsError: 6.01422e-06\n", + " Region: \"zone_3\"\tRelError: 5.10657e-05\tAbsError: 9.58669e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16308e-07\tAbsError: 4.78066e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.72686e-07\tAbsError: 4.80603e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.05595e-05\tAbsError: 4.24652e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72414e-08\tAbsError: 6.01658e-06\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 4.07310e-04\tAbsError: 4.47841e+10\n", + " Region: \"zone_1\"\tRelError: 1.30926e-05\tAbsError: 1.54205e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30881e-05\tAbsError: 1.75011e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.42203e-09\tAbsError: 1.54030e-06\n", + " Region: \"zone_3\"\tRelError: 3.94218e-04\tAbsError: 4.47841e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.33915e-08\tAbsError: 2.23135e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.92263e-08\tAbsError: 2.24706e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.94061e-04\tAbsError: 1.76782e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.42382e-09\tAbsError: 1.54097e-06\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 5.52811e-02\tAbsError: 3.34954e+13\n", + " Region: \"zone_1\"\tRelError: 4.72342e-02\tAbsError: 1.34444e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.72304e-02\tAbsError: 1.28454e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.86347e-06\tAbsError: 1.34316e-03\n", + " Region: \"zone_3\"\tRelError: 8.04684e-03\tAbsError: 3.34954e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.41615e-05\tAbsError: 1.66223e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.16688e-05\tAbsError: 1.68731e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.93715e-03\tAbsError: 1.29905e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.86527e-06\tAbsError: 1.34377e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.20598e-04\tAbsError: 9.09573e+10\n", + " Region: \"zone_1\"\tRelError: 2.12041e-04\tAbsError: 7.95285e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12039e-04\tAbsError: 4.17842e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27632e-09\tAbsError: 7.91107e-07\n", + " Region: \"zone_3\"\tRelError: 1.08557e-04\tAbsError: 9.09573e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.30667e-07\tAbsError: 4.48081e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.10381e-07\tAbsError: 4.61492e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08113e-04\tAbsError: 4.21673e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27757e-09\tAbsError: 7.91562e-07\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.70591e-04\tAbsError: 3.56847e+10\n", + " Region: \"zone_1\"\tRelError: 1.52882e-04\tAbsError: 1.12241e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52879e-04\tAbsError: 1.48688e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.21221e-09\tAbsError: 1.12092e-06\n", + " Region: \"zone_3\"\tRelError: 1.77094e-05\tAbsError: 3.56847e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.12857e-08\tAbsError: 1.77986e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.30410e-08\tAbsError: 1.78861e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75618e-05\tAbsError: 1.50077e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.21347e-09\tAbsError: 1.12138e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.75750e+03\tAbsError: 1.37117e+15\n", + " Region: \"zone_1\"\tRelError: 2.98702e-01\tAbsError: 1.04404e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.98578e-01\tAbsError: 6.14041e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24025e-04\tAbsError: 4.29995e-02\n", + " Region: \"zone_3\"\tRelError: 1.75720e+03\tAbsError: 1.37117e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.49632e+01\tAbsError: 7.96171e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.71211e+03\tAbsError: 5.74998e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27908e-01\tAbsError: 6.14044e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24152e-04\tAbsError: 4.30433e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 9.30929e-05\tAbsError: 9.62198e+09\n", + " Region: \"zone_1\"\tRelError: 2.99044e-06\tAbsError: 4.57774e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.98912e-06\tAbsError: 3.95789e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31308e-09\tAbsError: 4.57379e-07\n", + " Region: \"zone_3\"\tRelError: 9.01024e-05\tAbsError: 9.62198e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50292e-08\tAbsError: 4.79430e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.16874e-08\tAbsError: 4.82769e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.00644e-05\tAbsError: 3.99740e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31362e-09\tAbsError: 4.57578e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:21\u001b[0m.\u001b[1;36m631\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 1.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.15711e-02\tAbsError: 6.36169e+12\n", + " Region: \"zone_1\"\tRelError: 1.14125e-02\tAbsError: 2.54396e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14118e-02\tAbsError: 4.20700e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.30748e-07\tAbsError: 2.53975e-04\n", + " Region: \"zone_3\"\tRelError: 1.58593e-04\tAbsError: 6.36169e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12626e-05\tAbsError: 3.14963e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04677e-05\tAbsError: 3.21206e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36131e-04\tAbsError: 4.24482e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.31084e-07\tAbsError: 2.54099e-04\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.75135e-05\tAbsError: 3.73693e+09\n", + " Region: \"zone_1\"\tRelError: 1.82469e-05\tAbsError: 8.76012e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82444e-05\tAbsError: 2.95833e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.51991e-09\tAbsError: 8.75716e-07\n", + " Region: \"zone_3\"\tRelError: 9.26653e-06\tAbsError: 3.73693e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.40675e-09\tAbsError: 1.84743e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.59836e-08\tAbsError: 1.88950e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.23962e-06\tAbsError: 2.97952e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.52095e-09\tAbsError: 8.76100e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:22\u001b[0m.\u001b[1;36m518\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:22\u001b[0m.\u001b[1;36m518\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.9399999999999998\u001b[0m \n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 3.34213e-05\tAbsError: 6.34810e+09\n", + " Region: \"zone_1\"\tRelError: 2.99161e-05\tAbsError: 3.62915e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.99150e-05\tAbsError: 2.90104e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03917e-09\tAbsError: 3.62625e-07\n", + " Region: \"zone_3\"\tRelError: 3.50522e-06\tAbsError: 6.34810e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.29546e-08\tAbsError: 3.16684e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.80776e-08\tAbsError: 3.18126e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.47315e-06\tAbsError: 2.92745e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03959e-09\tAbsError: 3.62778e-07\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.36485e+03\tAbsError: 5.29564e+14\n", + " Region: \"zone_1\"\tRelError: 7.97414e-02\tAbsError: 1.00536e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.96098e-02\tAbsError: 5.49210e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31553e-04\tAbsError: 4.56155e-02\n", + " Region: \"zone_3\"\tRelError: 1.36477e+03\tAbsError: 5.29564e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.77527e+01\tAbsError: 1.11987e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34694e+03\tAbsError: 4.17577e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.97382e-02\tAbsError: 5.49213e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31589e-04\tAbsError: 4.56279e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.20731e+02\tAbsError: 2.29552e+18\n", + " Region: \"zone_1\"\tRelError: 1.41155e+02\tAbsError: 4.09537e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41155e+02\tAbsError: 4.09536e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.05730e-10\tAbsError: 1.06495e-07\n", + " Region: \"zone_3\"\tRelError: 7.95757e+01\tAbsError: 2.29552e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.78600e-01\tAbsError: 1.14566e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.65499e-01\tAbsError: 1.14986e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 7.84316e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.05855e-10\tAbsError: 1.06540e-07\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.83911e-03\tAbsError: 1.58905e+12\n", + " Region: \"zone_1\"\tRelError: 2.42692e-03\tAbsError: 4.33674e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42679e-03\tAbsError: 6.60095e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24553e-07\tAbsError: 4.33014e-05\n", + " Region: \"zone_3\"\tRelError: 4.12192e-04\tAbsError: 1.58905e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.62381e-06\tAbsError: 7.89358e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.44568e-06\tAbsError: 7.99689e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.06997e-04\tAbsError: 6.67114e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24610e-07\tAbsError: 4.33209e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.69832e+03\tAbsError: 4.26164e+14\n", + " Region: \"zone_1\"\tRelError: 6.43653e-02\tAbsError: 1.10643e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.41827e-02\tAbsError: 4.73176e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82596e-04\tAbsError: 6.33253e-02\n", + " Region: \"zone_3\"\tRelError: 1.69826e+03\tAbsError: 4.26164e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.64637e+03\tAbsError: 3.14969e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.18213e+01\tAbsError: 3.94667e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.42828e-02\tAbsError: 4.73180e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82818e-04\tAbsError: 6.34031e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.30223e+01\tAbsError: 9.02224e+17\n", + " Region: \"zone_1\"\tRelError: 1.21751e+01\tAbsError: 4.19628e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21751e+01\tAbsError: 4.19627e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54552e-10\tAbsError: 8.84641e-08\n", + " Region: \"zone_3\"\tRelError: 4.08472e+01\tAbsError: 9.02224e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.23540e-01\tAbsError: 4.39797e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.03855e-01\tAbsError: 4.62427e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 3.94198e+01\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54670e-10\tAbsError: 8.85062e-08\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.75350e+01\tAbsError: 4.89721e+17\n", + " Region: \"zone_1\"\tRelError: 1.04844e+01\tAbsError: 2.18917e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04782e+01\tAbsError: 3.07622e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.15763e-03\tAbsError: 2.15840e+00\n", + " Region: \"zone_3\"\tRelError: 2.70506e+01\tAbsError: 4.89721e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.63139e-01\tAbsError: 2.45322e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.63561e-01\tAbsError: 2.44399e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.65177e+01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.15822e-03\tAbsError: 2.15862e+00\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 3.37999e-04\tAbsError: 2.19561e+11\n", + " Region: \"zone_1\"\tRelError: 3.30295e-04\tAbsError: 1.28810e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.30258e-04\tAbsError: 1.32795e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.70226e-08\tAbsError: 1.28677e-05\n", + " Region: \"zone_3\"\tRelError: 7.70331e-06\tAbsError: 2.19561e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.91687e-07\tAbsError: 1.08742e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.84773e-07\tAbsError: 1.10819e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.88981e-06\tAbsError: 1.34007e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.70399e-08\tAbsError: 1.28739e-05\n", + "Iteration: 11\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:25\u001b[0m.\u001b[1;36m205\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + " Device: \"device\"\tRelError: 5.20273e+00\tAbsError: 4.35026e+14\n", + " Region: \"zone_1\"\tRelError: 4.96120e-02\tAbsError: 1.17626e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.93834e-02\tAbsError: 3.83021e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28674e-04\tAbsError: 7.93235e-02\n", + " Region: \"zone_3\"\tRelError: 5.15312e+00\tAbsError: 4.35026e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.11960e+00\tAbsError: 2.44354e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.83833e-01\tAbsError: 4.10591e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.94610e-02\tAbsError: 3.83026e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28965e-04\tAbsError: 7.94253e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:25\u001b[0m.\u001b[1;36m240\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.3 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:25\u001b[0m.\u001b[1;36m273\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.1\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 6.87971e+02\tAbsError: 4.98361e+17\n", + " Region: \"zone_1\"\tRelError: 5.59464e+01\tAbsError: 8.86546e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.59439e+01\tAbsError: 3.19520e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.46028e-03\tAbsError: 8.54594e-01\n", + " Region: \"zone_3\"\tRelError: 6.32024e+02\tAbsError: 4.98361e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.94559e-01\tAbsError: 2.49995e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.67050e-01\tAbsError: 2.48366e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 6.31060e+02\tAbsError: 3.19525e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.46050e-03\tAbsError: 8.54692e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 8.28645e+00\tAbsError: 2.11022e+16\n", + " Region: \"zone_1\"\tRelError: 5.89404e-01\tAbsError: 1.45838e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.85324e-01\tAbsError: 2.58807e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.07995e-03\tAbsError: 1.43250e+00\n", + " Region: \"zone_3\"\tRelError: 7.69704e+00\tAbsError: 2.11022e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.08442e-02\tAbsError: 1.06070e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.62030e-02\tAbsError: 1.04952e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.63591e+00\tAbsError: 2.58945e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.08866e-03\tAbsError: 1.43560e+00\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.45915e-04\tAbsError: 8.08391e+10\n", + " Region: \"zone_1\"\tRelError: 1.24746e-04\tAbsError: 1.31713e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24742e-04\tAbsError: 3.37234e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77890e-09\tAbsError: 1.31375e-06\n", + " Region: \"zone_3\"\tRelError: 2.11692e-05\tAbsError: 8.08391e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33248e-07\tAbsError: 4.01619e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.22615e-07\tAbsError: 4.06772e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09096e-05\tAbsError: 3.40780e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.78064e-09\tAbsError: 1.31434e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.16272e+04\tAbsError: 1.65651e+19\n", + " Region: \"zone_1\"\tRelError: 5.47132e+03\tAbsError: 9.39932e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.47132e+03\tAbsError: 9.39932e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.14944e-10\tAbsError: 7.50065e-08\n", + " Region: \"zone_3\"\tRelError: 6.15585e+03\tAbsError: 1.65651e+19\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46920e+02\tAbsError: 6.83449e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.37613e+02\tAbsError: 9.73060e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 5.47132e+03\tAbsError: 9.39941e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.15031e-10\tAbsError: 7.50384e-08\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.29573e+02\tAbsError: 4.13765e+14\n", + " Region: \"zone_1\"\tRelError: 3.52781e-02\tAbsError: 1.30848e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.49807e-02\tAbsError: 2.76565e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.97391e-04\tAbsError: 1.03191e-01\n", + " Region: \"zone_3\"\tRelError: 1.29538e+02\tAbsError: 4.13765e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.29495e+02\tAbsError: 2.36393e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.96741e-03\tAbsError: 3.90126e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.44822e-02\tAbsError: 2.76571e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.97727e-04\tAbsError: 1.03308e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 6.68715e+03\tAbsError: 1.06709e+17\n", + " Region: \"zone_1\"\tRelError: 9.31135e+02\tAbsError: 3.18177e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.31134e+02\tAbsError: 2.58394e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.42262e-04\tAbsError: 2.92337e-01\n", + " Region: \"zone_3\"\tRelError: 5.75601e+03\tAbsError: 1.06709e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.85918e-01\tAbsError: 5.35954e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04848e-01\tAbsError: 5.31133e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.75572e+03\tAbsError: 2.58980e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.45507e-04\tAbsError: 2.93463e-01\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.20617e-05\tAbsError: 6.32499e+09\n", + " Region: \"zone_1\"\tRelError: 1.19314e-05\tAbsError: 6.73382e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19294e-05\tAbsError: 3.90152e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93636e-09\tAbsError: 6.72992e-07\n", + " Region: \"zone_3\"\tRelError: 1.30317e-07\tAbsError: 6.32499e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16766e-08\tAbsError: 3.13129e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.61351e-08\tAbsError: 3.19370e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00568e-07\tAbsError: 3.93788e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93725e-09\tAbsError: 6.73321e-07\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.26646e+01\tAbsError: 1.05374e+16\n", + " Region: \"zone_1\"\tRelError: 1.63183e+01\tAbsError: 9.50748e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63156e+01\tAbsError: 9.16413e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.68897e-03\tAbsError: 9.41583e-01\n", + " Region: \"zone_3\"\tRelError: 1.63463e+01\tAbsError: 1.05374e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31069e-02\tAbsError: 5.23674e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.49207e-02\tAbsError: 5.30063e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63156e+01\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69706e-03\tAbsError: 9.44437e-01\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:27\u001b[0m.\u001b[1;36m531\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.9799999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.05780e+00\tAbsError: 3.05662e+14\n", + " Region: \"zone_1\"\tRelError: 2.67418e-02\tAbsError: 1.45754e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.63846e-02\tAbsError: 2.17874e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57135e-04\tAbsError: 1.23966e-01\n", + " Region: \"zone_3\"\tRelError: 1.03105e+00\tAbsError: 3.05662e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.94911e-01\tAbsError: 1.68377e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.34032e-03\tAbsError: 2.88825e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64454e-02\tAbsError: 2.17884e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57674e-04\tAbsError: 1.24155e-01\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.41894e+03\tAbsError: 1.35937e+19\n", + " Region: \"zone_1\"\tRelError: 1.85742e+02\tAbsError: 6.38901e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85724e+02\tAbsError: 9.13709e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83513e-02\tAbsError: 6.29764e+00\n", + " Region: \"zone_3\"\tRelError: 1.23320e+03\tAbsError: 1.35937e+19\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01893e+01\tAbsError: 5.66687e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02727e+03\tAbsError: 7.92686e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85724e+02\tAbsError: 9.13711e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83531e-02\tAbsError: 6.29836e+00\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.21987e+03\tAbsError: 8.24482e+15\n", + " Region: \"zone_1\"\tRelError: 3.00138e+01\tAbsError: 4.30823e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.00126e+01\tAbsError: 1.06608e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20499e-03\tAbsError: 4.20162e-01\n", + " Region: \"zone_3\"\tRelError: 1.18986e+03\tAbsError: 8.24482e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87149e-02\tAbsError: 4.14039e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24213e-02\tAbsError: 4.10443e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18981e+03\tAbsError: 1.06615e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20811e-03\tAbsError: 4.21255e-01\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 6.32323e-01\tAbsError: 2.46877e+14\n", + " Region: \"zone_1\"\tRelError: 1.44271e-02\tAbsError: 2.19080e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37974e-02\tAbsError: 3.60850e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.29714e-04\tAbsError: 2.18720e-01\n", + " Region: \"zone_3\"\tRelError: 6.17896e-01\tAbsError: 2.46877e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.96130e-01\tAbsError: 2.65737e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.01118e-02\tAbsError: 2.20303e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02356e-03\tAbsError: 3.67196e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.30442e-04\tAbsError: 2.18971e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.58482e+00\tAbsError: 6.34667e+15\n", + " Region: \"zone_1\"\tRelError: 2.32125e+00\tAbsError: 4.26139e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32004e+00\tAbsError: 1.24165e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21533e-03\tAbsError: 4.26014e-01\n", + " Region: \"zone_3\"\tRelError: 7.26357e+00\tAbsError: 6.34667e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94984e-03\tAbsError: 3.16660e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.69319e-03\tAbsError: 3.18007e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.25171e+00\tAbsError: 1.24217e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21533e-03\tAbsError: 4.26014e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 6.42571e+03\tAbsError: 3.63018e+18\n", + " Region: \"zone_1\"\tRelError: 1.34190e+02\tAbsError: 5.02469e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34176e+02\tAbsError: 8.85378e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41527e-02\tAbsError: 4.93615e+00\n", + " Region: \"zone_3\"\tRelError: 6.29152e+03\tAbsError: 3.63018e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.08475e+01\tAbsError: 1.83022e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.01410e+03\tAbsError: 1.79996e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 2.26563e+02\tAbsError: 8.85383e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41605e-02\tAbsError: 4.93901e+00\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.93301e+02\tAbsError: 1.31505e+18\n", + " Region: \"zone_1\"\tRelError: 1.95954e+02\tAbsError: 4.29335e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95954e+02\tAbsError: 4.29335e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.68896e-11\tAbsError: 3.02084e-08\n", + " Region: \"zone_3\"\tRelError: 1.97347e+02\tAbsError: 1.31505e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.08391e-01\tAbsError: 6.47452e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.84050e-01\tAbsError: 6.67602e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95954e+02\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.69341e-11\tAbsError: 3.02237e-08\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.32324e+01\tAbsError: 3.47658e+15\n", + " Region: \"zone_1\"\tRelError: 1.40157e+00\tAbsError: 6.21297e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39978e+00\tAbsError: 1.87854e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78446e-03\tAbsError: 6.21109e-01\n", + " Region: \"zone_3\"\tRelError: 1.18308e+01\tAbsError: 3.47658e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16646e-02\tAbsError: 1.57709e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.67921e-03\tAbsError: 1.89949e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18147e+01\tAbsError: 1.89642e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78707e-03\tAbsError: 6.22021e-01\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 1.29115e-01\tAbsError: 1.32053e+14\n", + " Region: \"zone_1\"\tRelError: 2.82697e-02\tAbsError: 1.98958e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.82644e-02\tAbsError: 1.53505e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.28053e-06\tAbsError: 1.83608e-03\n", + " Region: \"zone_3\"\tRelError: 1.00845e-01\tAbsError: 1.32053e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.75059e-02\tAbsError: 3.65219e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.55584e-02\tAbsError: 9.55313e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.77759e-02\tAbsError: 1.54907e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.28053e-06\tAbsError: 1.83608e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.10109e-01\tAbsError: 2.49944e+15\n", + " Region: \"zone_1\"\tRelError: 2.73036e-01\tAbsError: 9.44224e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73009e-01\tAbsError: 7.54274e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.67762e-05\tAbsError: 9.36682e-03\n", + " Region: \"zone_3\"\tRelError: 5.37074e-01\tAbsError: 2.49944e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.44605e-03\tAbsError: 1.22669e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.58618e-04\tAbsError: 1.27274e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.30942e-01\tAbsError: 7.59068e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.67897e-05\tAbsError: 9.37175e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.56234e+02\tAbsError: 3.86174e+18\n", + " Region: \"zone_1\"\tRelError: 9.84721e+01\tAbsError: 1.34442e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 9.84684e+01\tAbsError: 8.54615e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.62295e-03\tAbsError: 1.25896e+00\n", + " Region: \"zone_3\"\tRelError: 1.57762e+02\tAbsError: 3.86174e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.90968e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.54700e+01\tAbsError: 1.95206e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33289e+02\tAbsError: 8.54619e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.62534e-03\tAbsError: 1.25982e+00\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.56288e+04\tAbsError: 5.38567e+17\n", + " Region: \"zone_1\"\tRelError: 1.76987e+04\tAbsError: 1.13670e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76987e+04\tAbsError: 3.30995e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.17394e-03\tAbsError: 1.10360e+00\n", + " Region: \"zone_3\"\tRelError: 7.93012e+03\tAbsError: 5.38567e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.56981e-01\tAbsError: 2.69605e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.34515e-01\tAbsError: 2.68963e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 7.92923e+03\tAbsError: 3.31000e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.17480e-03\tAbsError: 1.10385e+00\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 8.88619e-03\tAbsError: 1.78189e+12\n", + " Region: \"zone_1\"\tRelError: 2.52826e-03\tAbsError: 8.16927e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.50475e-03\tAbsError: 1.59088e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.35150e-05\tAbsError: 8.16768e-03\n", + " Region: \"zone_3\"\tRelError: 6.35793e-03\tAbsError: 1.78189e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.21800e-04\tAbsError: 9.23827e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.70720e-04\tAbsError: 8.58065e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.24188e-03\tAbsError: 1.64521e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.35243e-05\tAbsError: 8.17101e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.69926e+01\tAbsError: 3.06470e+15\n", + " Region: \"zone_1\"\tRelError: 3.61874e+00\tAbsError: 3.80545e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.61863e+00\tAbsError: 1.78178e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08789e-04\tAbsError: 3.78763e-02\n", + " Region: \"zone_3\"\tRelError: 1.33739e+01\tAbsError: 3.06470e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.13423e-03\tAbsError: 1.52459e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.10898e-03\tAbsError: 1.54011e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33665e+01\tAbsError: 1.79720e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08834e-04\tAbsError: 3.78912e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.50361e-02\tAbsError: 6.78895e+13\n", + " Region: \"zone_1\"\tRelError: 2.37122e-02\tAbsError: 9.45855e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36853e-02\tAbsError: 1.50946e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69242e-05\tAbsError: 9.45704e-03\n", + " Region: \"zone_3\"\tRelError: 5.13239e-02\tAbsError: 6.78895e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.92168e-04\tAbsError: 3.35710e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.54573e-05\tAbsError: 3.43185e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.10793e-02\tAbsError: 1.52419e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69352e-05\tAbsError: 9.46083e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 5.50347e+01\tAbsError: 5.37694e+17\n", + " Region: \"zone_1\"\tRelError: 3.46780e+01\tAbsError: 2.34127e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.46715e+01\tAbsError: 8.20994e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.49885e-03\tAbsError: 2.25917e+00\n", + " Region: \"zone_3\"\tRelError: 2.03567e+01\tAbsError: 5.37694e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.66469e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.48157e+00\tAbsError: 2.71225e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86864e+00\tAbsError: 8.20997e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.49885e-03\tAbsError: 2.25917e+00\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.05630e+03\tAbsError: 1.09979e+17\n", + " Region: \"zone_1\"\tRelError: 6.84710e+01\tAbsError: 1.43360e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 6.84670e+01\tAbsError: 2.58653e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.03563e-03\tAbsError: 1.40773e+00\n", + " Region: \"zone_3\"\tRelError: 9.87830e+02\tAbsError: 1.09979e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53181e-01\tAbsError: 5.51560e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.23559e-02\tAbsError: 5.48228e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 9.87580e+02\tAbsError: 2.58990e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.03726e-03\tAbsError: 1.40831e+00\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 1.06506e-02\tAbsError: 7.97564e+12\n", + " Region: \"zone_1\"\tRelError: 2.78167e-03\tAbsError: 6.19119e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.77991e-03\tAbsError: 6.29442e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76249e-06\tAbsError: 6.12825e-04\n", + " Region: \"zone_3\"\tRelError: 7.86894e-03\tAbsError: 7.97564e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77812e-04\tAbsError: 3.49434e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.72807e-04\tAbsError: 4.48130e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.31656e-03\tAbsError: 6.35969e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76291e-06\tAbsError: 6.12981e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.03191e-01\tAbsError: 2.72789e+14\n", + " Region: \"zone_1\"\tRelError: 2.06386e-01\tAbsError: 2.41437e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06317e-01\tAbsError: 1.26354e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93158e-05\tAbsError: 2.41310e-02\n", + " Region: \"zone_3\"\tRelError: 4.96805e-01\tAbsError: 2.72789e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.84659e-04\tAbsError: 1.35879e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.50454e-04\tAbsError: 1.36910e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.95700e-01\tAbsError: 1.27340e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93447e-05\tAbsError: 2.41410e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.59505e-02\tAbsError: 5.66225e+13\n", + " Region: \"zone_1\"\tRelError: 1.83279e-02\tAbsError: 3.54044e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83269e-02\tAbsError: 2.54887e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00068e-06\tAbsError: 3.51495e-04\n", + " Region: \"zone_3\"\tRelError: 3.76225e-02\tAbsError: 5.66225e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.14084e-04\tAbsError: 2.81906e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.55711e-05\tAbsError: 2.84319e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74519e-02\tAbsError: 2.56399e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00120e-06\tAbsError: 3.51676e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.54457e+01\tAbsError: 6.07481e+17\n", + " Region: \"zone_1\"\tRelError: 1.68554e+01\tAbsError: 9.24586e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68529e+01\tAbsError: 7.90690e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.42851e-03\tAbsError: 8.45517e-01\n", + " Region: \"zone_3\"\tRelError: 1.85903e+01\tAbsError: 6.07481e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.48424e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.59058e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 5.87875e-01\tAbsError: 7.97171e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.42851e-03\tAbsError: 8.45517e-01\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 1.29712e-03\tAbsError: 5.87386e+11\n", + " Region: \"zone_1\"\tRelError: 3.70662e-04\tAbsError: 5.19442e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.69169e-04\tAbsError: 4.49040e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49266e-06\tAbsError: 5.18993e-04\n", + " Region: \"zone_3\"\tRelError: 9.26462e-04\tAbsError: 5.87386e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.02618e-05\tAbsError: 3.09222e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.99825e-05\tAbsError: 2.78164e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.04725e-04\tAbsError: 4.54374e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49297e-06\tAbsError: 5.19109e-04\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.81032e+02\tAbsError: 1.06939e+16\n", + " Region: \"zone_1\"\tRelError: 3.59115e+01\tAbsError: 1.10074e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59084e+01\tAbsError: 1.22645e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.13015e-03\tAbsError: 1.08847e+00\n", + " Region: \"zone_3\"\tRelError: 2.45121e+02\tAbsError: 1.06939e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.93839e-03\tAbsError: 5.35877e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.63056e-03\tAbsError: 5.33515e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.45104e+02\tAbsError: 1.22654e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.13222e-03\tAbsError: 1.08919e+00\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.03284e-01\tAbsError: 1.63576e+14\n", + " Region: \"zone_1\"\tRelError: 1.28869e-01\tAbsError: 2.63492e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28862e-01\tAbsError: 7.07903e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.56988e-06\tAbsError: 2.62784e-03\n", + " Region: \"zone_3\"\tRelError: 3.74414e-01\tAbsError: 1.63576e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.03440e-04\tAbsError: 8.14376e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09112e-04\tAbsError: 8.21383e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74094e-01\tAbsError: 7.13869e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.56988e-06\tAbsError: 2.62784e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 7.88395e-04\tAbsError: 2.50647e+12\n", + " Region: \"zone_1\"\tRelError: 2.67678e-04\tAbsError: 3.14356e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66781e-04\tAbsError: 1.15072e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.96866e-07\tAbsError: 3.14241e-04\n", + " Region: \"zone_3\"\tRelError: 5.20717e-04\tAbsError: 2.50647e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.42005e-06\tAbsError: 1.25767e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.70094e-06\tAbsError: 1.24880e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.06699e-04\tAbsError: 1.15714e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.97159e-07\tAbsError: 3.14358e-04\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 8.17397e-04\tAbsError: 5.15616e+11\n", + " Region: \"zone_1\"\tRelError: 2.21585e-04\tAbsError: 7.19865e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21379e-04\tAbsError: 3.60966e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.05989e-07\tAbsError: 7.16255e-05\n", + " Region: \"zone_3\"\tRelError: 5.95812e-04\tAbsError: 5.15616e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.95401e-05\tAbsError: 2.69910e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.91786e-05\tAbsError: 2.45706e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.96887e-04\tAbsError: 3.64971e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.06048e-07\tAbsError: 7.16460e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.84121e+02\tAbsError: 1.44265e+17\n", + " Region: \"zone_1\"\tRelError: 5.71048e+00\tAbsError: 1.11506e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.70750e+00\tAbsError: 7.53891e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.97769e-03\tAbsError: 1.03967e+00\n", + " Region: \"zone_3\"\tRelError: 1.78411e+02\tAbsError: 1.44265e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.76628e+02\tAbsError: 8.85546e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29644e+00\tAbsError: 5.57103e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.83668e-01\tAbsError: 7.54990e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.98423e-03\tAbsError: 1.04201e+00\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.53710e+00\tAbsError: 2.54910e+15\n", + " Region: \"zone_1\"\tRelError: 5.24107e+00\tAbsError: 6.37323e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.23924e+00\tAbsError: 8.89899e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82814e-03\tAbsError: 6.37234e-01\n", + " Region: \"zone_3\"\tRelError: 1.29603e+00\tAbsError: 2.54910e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.24987e-03\tAbsError: 1.26463e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.60265e-03\tAbsError: 1.28447e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28435e+00\tAbsError: 8.97922e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82881e-03\tAbsError: 6.37461e-01\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 5.72516e-02\tAbsError: 2.19421e+13\n", + " Region: \"zone_1\"\tRelError: 1.48305e-02\tAbsError: 1.17957e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48271e-02\tAbsError: 8.22812e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.39557e-06\tAbsError: 1.17875e-03\n", + " Region: \"zone_3\"\tRelError: 4.24210e-02\tAbsError: 2.19421e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.59385e-05\tAbsError: 1.09315e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.17160e-05\tAbsError: 1.10106e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.23500e-02\tAbsError: 8.29477e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.39575e-06\tAbsError: 1.17875e-03\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 1.38505e-04\tAbsError: 6.81064e+10\n", + " Region: \"zone_1\"\tRelError: 3.90974e-05\tAbsError: 3.71466e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.89907e-05\tAbsError: 4.75526e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06694e-07\tAbsError: 3.70991e-05\n", + " Region: \"zone_3\"\tRelError: 9.94077e-05\tAbsError: 6.81064e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.78802e-06\tAbsError: 3.83732e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.75686e-06\tAbsError: 2.97332e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.57561e-05\tAbsError: 4.81148e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06725e-07\tAbsError: 3.71098e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 3.01493e-03\tAbsError: 2.03887e+12\n", + " Region: \"zone_1\"\tRelError: 9.68351e-04\tAbsError: 1.94584e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.68295e-04\tAbsError: 8.45891e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.51588e-08\tAbsError: 1.93738e-05\n", + " Region: \"zone_3\"\tRelError: 2.04658e-03\tAbsError: 2.03887e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.90840e-06\tAbsError: 1.01569e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.17272e-06\tAbsError: 1.02318e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03944e-03\tAbsError: 8.50612e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.51787e-08\tAbsError: 1.93808e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.75152e+01\tAbsError: 2.34147e+16\n", + " Region: \"zone_1\"\tRelError: 6.77463e+00\tAbsError: 1.30865e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 6.77107e+00\tAbsError: 7.09390e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.55708e-03\tAbsError: 1.23771e+00\n", + " Region: \"zone_3\"\tRelError: 6.07405e+01\tAbsError: 2.34147e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50402e+01\tAbsError: 1.47845e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.51639e+01\tAbsError: 8.63024e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.32943e-01\tAbsError: 7.10042e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.55708e-03\tAbsError: 1.23771e+00\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.35415e+01\tAbsError: 3.06408e+15\n", + " Region: \"zone_1\"\tRelError: 6.18020e-01\tAbsError: 1.25350e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.17985e-01\tAbsError: 1.70751e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.54599e-05\tAbsError: 1.23642e-02\n", + " Region: \"zone_3\"\tRelError: 1.29235e+01\tAbsError: 3.06408e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.52438e-03\tAbsError: 1.48406e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.62072e-03\tAbsError: 1.58001e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29163e+01\tAbsError: 1.72074e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.54833e-05\tAbsError: 1.23722e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.35289e-02\tAbsError: 9.60642e+12\n", + " Region: \"zone_1\"\tRelError: 6.04878e-03\tAbsError: 2.06342e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.04819e-03\tAbsError: 3.36274e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.92268e-07\tAbsError: 2.06006e-04\n", + " Region: \"zone_3\"\tRelError: 1.74801e-02\tAbsError: 9.60642e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.46802e-06\tAbsError: 4.78532e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.53648e-06\tAbsError: 4.82110e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74605e-02\tAbsError: 3.39077e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.92490e-07\tAbsError: 2.06084e-04\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 6.21763e-05\tAbsError: 3.59047e+10\n", + " Region: \"zone_1\"\tRelError: 1.71124e-05\tAbsError: 6.88377e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70927e-05\tAbsError: 2.38408e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.97286e-08\tAbsError: 6.85993e-06\n", + " Region: \"zone_3\"\tRelError: 4.50639e-05\tAbsError: 3.59047e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.45923e-06\tAbsError: 2.03147e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.43392e-06\tAbsError: 1.55900e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.81510e-05\tAbsError: 2.41148e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.97322e-08\tAbsError: 6.86120e-06\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.13878e-04\tAbsError: 1.24488e+11\n", + " Region: \"zone_1\"\tRelError: 6.77267e-05\tAbsError: 1.32659e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.76887e-05\tAbsError: 6.49775e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.79174e-08\tAbsError: 1.32594e-05\n", + " Region: \"zone_3\"\tRelError: 1.46151e-04\tAbsError: 1.24488e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.41336e-07\tAbsError: 6.10291e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.66825e-07\tAbsError: 6.34588e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45305e-04\tAbsError: 6.53401e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.79209e-08\tAbsError: 1.32605e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:37\u001b[0m.\u001b[1;36m142\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:37\u001b[0m.\u001b[1;36m142\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.20454545454545453\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.21566e-01\tAbsError: 5.27559e+13\n", + " Region: \"zone_1\"\tRelError: 4.28919e-02\tAbsError: 2.15949e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.28300e-02\tAbsError: 5.21547e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.19265e-05\tAbsError: 2.15897e-02\n", + " Region: \"zone_3\"\tRelError: 3.78674e-01\tAbsError: 5.27559e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.23521e-04\tAbsError: 2.51687e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13347e-04\tAbsError: 2.75872e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.77975e-01\tAbsError: 5.24851e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.19510e-05\tAbsError: 2.15981e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.97994e+03\tAbsError: 8.66817e+15\n", + " Region: \"zone_1\"\tRelError: 2.91022e+01\tAbsError: 2.56799e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.91016e+01\tAbsError: 6.59200e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.48255e-04\tAbsError: 1.90879e-01\n", + " Region: \"zone_3\"\tRelError: 1.95083e+03\tAbsError: 8.66817e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.96768e+01\tAbsError: 6.38297e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.91041e+03\tAbsError: 2.28521e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.45092e-01\tAbsError: 6.60324e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.48255e-04\tAbsError: 1.90879e-01\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.77929e-03\tAbsError: 1.66332e+12\n", + " Region: \"zone_1\"\tRelError: 9.67169e-04\tAbsError: 7.67803e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.66948e-04\tAbsError: 5.54707e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20584e-07\tAbsError: 7.67248e-05\n", + " Region: \"zone_3\"\tRelError: 2.81212e-03\tAbsError: 1.66332e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.03133e-06\tAbsError: 8.28853e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.51523e-06\tAbsError: 8.34464e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80736e-03\tAbsError: 5.60597e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20667e-07\tAbsError: 7.67544e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.56196e-04\tAbsError: 8.22099e+10\n", + " Region: \"zone_1\"\tRelError: 4.96683e-05\tAbsError: 1.29947e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.96646e-05\tAbsError: 3.20602e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.70688e-09\tAbsError: 1.29627e-06\n", + " Region: \"zone_3\"\tRelError: 1.06527e-04\tAbsError: 8.22099e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53254e-07\tAbsError: 4.09765e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.71613e-07\tAbsError: 4.12334e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06199e-04\tAbsError: 3.22381e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.70726e-09\tAbsError: 1.29639e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.63989e+00\tAbsError: 8.72797e+15\n", + " Region: \"zone_1\"\tRelError: 1.99354e+00\tAbsError: 4.18756e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.99354e+00\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.95179e-09\tAbsError: 2.76495e-06\n", + " Region: \"zone_3\"\tRelError: 1.64635e+00\tAbsError: 8.72797e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77333e-01\tAbsError: 4.88246e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.77262e-01\tAbsError: 3.84551e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.17559e-02\tAbsError: 4.18729e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.95320e-09\tAbsError: 2.76545e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.73598e-01\tAbsError: 1.28371e+14\n", + " Region: \"zone_1\"\tRelError: 4.88547e-02\tAbsError: 1.14618e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.88514e-02\tAbsError: 6.07608e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.27013e-06\tAbsError: 1.14010e-03\n", + " Region: \"zone_3\"\tRelError: 4.24743e-01\tAbsError: 1.28371e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05203e-04\tAbsError: 6.39050e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.33691e-05\tAbsError: 6.44661e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.24451e-01\tAbsError: 6.12305e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.27164e-06\tAbsError: 1.14062e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.40040e+02\tAbsError: 5.95948e+15\n", + " Region: \"zone_1\"\tRelError: 2.06907e+00\tAbsError: 2.31345e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06858e+00\tAbsError: 6.01974e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.91826e-04\tAbsError: 1.71148e-01\n", + " Region: \"zone_3\"\tRelError: 4.37971e+02\tAbsError: 5.95948e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.55213e+01\tAbsError: 3.45726e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.72283e+02\tAbsError: 2.50222e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66656e-01\tAbsError: 6.02962e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.91826e-04\tAbsError: 1.71148e-01\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.29708e-03\tAbsError: 6.02455e+11\n", + " Region: \"zone_1\"\tRelError: 3.31625e-04\tAbsError: 1.60822e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.31578e-04\tAbsError: 1.96446e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.61796e-08\tAbsError: 1.60626e-05\n", + " Region: \"zone_3\"\tRelError: 9.65457e-04\tAbsError: 6.02455e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.18009e-07\tAbsError: 3.00196e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.30394e-07\tAbsError: 3.02259e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.64162e-04\tAbsError: 1.98596e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.61970e-08\tAbsError: 1.60691e-05\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.81376e-05\tAbsError: 8.11356e+09\n", + " Region: \"zone_1\"\tRelError: 5.70565e-06\tAbsError: 6.56313e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 5.70378e-06\tAbsError: 3.58334e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87514e-09\tAbsError: 6.55955e-07\n", + " Region: \"zone_3\"\tRelError: 1.24320e-05\tAbsError: 8.11356e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21600e-08\tAbsError: 4.01059e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.61223e-08\tAbsError: 4.10296e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23818e-05\tAbsError: 3.60254e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87583e-09\tAbsError: 6.56203e-07\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.53407e+00\tAbsError: 3.18169e+14\n", + " Region: \"zone_1\"\tRelError: 6.99964e-02\tAbsError: 9.36813e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.98185e-02\tAbsError: 3.18465e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77869e-04\tAbsError: 6.18348e-02\n", + " Region: \"zone_3\"\tRelError: 1.46407e+00\tAbsError: 3.18169e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.51841e-01\tAbsError: 1.64071e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.46818e-01\tAbsError: 1.54098e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.52372e-02\tAbsError: 3.18470e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77869e-04\tAbsError: 6.18348e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.63959e+02\tAbsError: 1.06048e+15\n", + " Region: \"zone_1\"\tRelError: 9.17504e-02\tAbsError: 8.49421e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.16600e-02\tAbsError: 5.35062e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.03724e-05\tAbsError: 3.14360e-02\n", + " Region: \"zone_3\"\tRelError: 1.63867e+02\tAbsError: 1.06048e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.53923e+01\tAbsError: 1.86773e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83587e+01\tAbsError: 8.73706e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16150e-01\tAbsError: 5.36223e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.03724e-05\tAbsError: 3.14360e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.54373e-04\tAbsError: 1.22168e+11\n", + " Region: \"zone_1\"\tRelError: 6.48326e-05\tAbsError: 5.25902e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.48175e-05\tAbsError: 4.28577e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51072e-08\tAbsError: 5.25473e-06\n", + " Region: \"zone_3\"\tRelError: 1.89541e-04\tAbsError: 1.22168e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24254e-07\tAbsError: 6.08856e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.87334e-07\tAbsError: 6.12822e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89214e-04\tAbsError: 4.33147e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51130e-08\tAbsError: 5.25689e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.70154e-02\tAbsError: 6.56308e+12\n", + " Region: \"zone_1\"\tRelError: 3.74108e-03\tAbsError: 9.10726e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.73847e-03\tAbsError: 3.93340e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.61130e-06\tAbsError: 9.10333e-04\n", + " Region: \"zone_3\"\tRelError: 3.32743e-02\tAbsError: 6.56308e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.73442e-05\tAbsError: 3.26782e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.61080e-05\tAbsError: 3.29526e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.32282e-02\tAbsError: 3.96200e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.61223e-06\tAbsError: 9.10648e-04\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.35968e+03\tAbsError: 8.04495e+14\n", + " Region: \"zone_1\"\tRelError: 1.05973e-01\tAbsError: 1.37456e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05709e-01\tAbsError: 4.55960e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.64157e-04\tAbsError: 9.18597e-02\n", + " Region: \"zone_3\"\tRelError: 1.35957e+03\tAbsError: 8.04495e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12114e+03\tAbsError: 1.80902e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.38360e+02\tAbsError: 6.23593e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.02014e-02\tAbsError: 4.57362e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.64791e-04\tAbsError: 9.20824e-02\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 7.91529e-05\tAbsError: 3.93684e+10\n", + " Region: \"zone_1\"\tRelError: 2.01610e-05\tAbsError: 1.19278e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01576e-05\tAbsError: 1.35948e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.42530e-09\tAbsError: 1.19142e-06\n", + " Region: \"zone_3\"\tRelError: 5.89918e-05\tAbsError: 3.93684e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.17561e-08\tAbsError: 1.96198e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.26426e-08\tAbsError: 1.97486e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.89040e-05\tAbsError: 1.37428e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.42670e-09\tAbsError: 1.19194e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:41\u001b[0m.\u001b[1;36m745\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 1.045\u001b[0m \n", + "Iteration: 2\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 9.90613e-01\tAbsError: 3.91910e+13\n", + " Region: \"zone_1\"\tRelError: 5.00658e-02\tAbsError: 3.12049e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.00505e-02\tAbsError: 2.58893e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52900e-05\tAbsError: 5.31555e-03\n", + " Region: \"zone_3\"\tRelError: 9.40548e-01\tAbsError: 3.91910e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.61768e-01\tAbsError: 2.86987e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.28623e-01\tAbsError: 1.04923e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.01413e-02\tAbsError: 2.58992e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52900e-05\tAbsError: 5.31555e-03\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.15775e-02\tAbsError: 6.52841e+12\n", + " Region: \"zone_1\"\tRelError: 3.74768e-03\tAbsError: 8.41878e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74744e-03\tAbsError: 2.54753e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.41414e-07\tAbsError: 8.39331e-05\n", + " Region: \"zone_3\"\tRelError: 1.78298e-02\tAbsError: 6.52841e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.81966e-06\tAbsError: 3.25375e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.17497e-06\tAbsError: 3.27466e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78136e-02\tAbsError: 2.56699e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.41425e-07\tAbsError: 8.39331e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:42\u001b[0m.\u001b[1;36m083\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.34511e+00\tAbsError: 5.09621e+14\n", + " Region: \"zone_1\"\tRelError: 5.20380e-02\tAbsError: 1.31206e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.17648e-02\tAbsError: 3.62022e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.73274e-04\tAbsError: 9.50040e-02\n", + " Region: \"zone_3\"\tRelError: 2.29307e+00\tAbsError: 5.09621e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98977e-01\tAbsError: 4.50759e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24154e+00\tAbsError: 4.64545e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.22861e-02\tAbsError: 3.63670e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.74013e-04\tAbsError: 9.52636e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.60801e-03\tAbsError: 6.28400e+11\n", + " Region: \"zone_1\"\tRelError: 4.80017e-04\tAbsError: 4.99622e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.79873e-04\tAbsError: 2.63411e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43739e-07\tAbsError: 4.99359e-05\n", + " Region: \"zone_3\"\tRelError: 2.12799e-03\tAbsError: 6.28400e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.51440e-06\tAbsError: 3.13250e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.43803e-06\tAbsError: 3.15151e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12490e-03\tAbsError: 2.65357e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43764e-07\tAbsError: 4.99433e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.07403e-01\tAbsError: 3.15404e+12\n", + " Region: \"zone_1\"\tRelError: 1.75397e-02\tAbsError: 1.36790e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75306e-02\tAbsError: 1.05213e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.08309e-06\tAbsError: 3.15769e-03\n", + " Region: \"zone_3\"\tRelError: 2.89863e-01\tAbsError: 3.15404e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16679e-01\tAbsError: 1.94159e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.54178e-02\tAbsError: 1.21245e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77577e-02\tAbsError: 1.05213e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.08653e-06\tAbsError: 3.15894e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.34610e+03\tAbsError: 1.92933e+18\n", + " Region: \"zone_1\"\tRelError: 4.26264e+03\tAbsError: 4.19628e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.26264e+03\tAbsError: 4.19625e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03425e-09\tAbsError: 3.59742e-07\n", + " Region: \"zone_3\"\tRelError: 4.08345e+03\tAbsError: 1.92933e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41966e-01\tAbsError: 9.61208e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.20078e-01\tAbsError: 9.68119e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.08219e+03\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03467e-09\tAbsError: 3.59900e-07\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 3.52788e+03\tAbsError: 4.32630e+14\n", + " Region: \"zone_1\"\tRelError: 4.01861e-02\tAbsError: 1.26360e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.98969e-02\tAbsError: 2.58372e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89232e-04\tAbsError: 1.00523e-01\n", + " Region: \"zone_3\"\tRelError: 3.52784e+03\tAbsError: 4.32630e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.52743e+03\tAbsError: 2.30095e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.69800e-01\tAbsError: 4.09620e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.98969e-02\tAbsError: 2.58297e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89995e-04\tAbsError: 1.00791e-01\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.13819e-03\tAbsError: 3.64637e+11\n", + " Region: \"zone_1\"\tRelError: 2.54157e-04\tAbsError: 7.12832e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54137e-04\tAbsError: 1.24280e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.04405e-08\tAbsError: 7.11590e-06\n", + " Region: \"zone_3\"\tRelError: 8.84029e-04\tAbsError: 3.64637e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46080e-07\tAbsError: 1.81784e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.16766e-07\tAbsError: 1.82853e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.83046e-04\tAbsError: 1.25227e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.04481e-08\tAbsError: 7.11864e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.87045e-02\tAbsError: 2.59902e+12\n", + " Region: \"zone_1\"\tRelError: 9.55560e-04\tAbsError: 2.51710e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.48317e-04\tAbsError: 1.56340e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.24331e-06\tAbsError: 2.51554e-03\n", + " Region: \"zone_3\"\tRelError: 6.77490e-02\tAbsError: 2.59902e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.52595e-02\tAbsError: 1.62510e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.16575e-04\tAbsError: 9.73920e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36568e-03\tAbsError: 1.63021e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.24331e-06\tAbsError: 2.51554e-03\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.05564e+00\tAbsError: 3.23529e+14\n", + " Region: \"zone_1\"\tRelError: 2.30958e-02\tAbsError: 1.15810e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.28120e-02\tAbsError: 1.72033e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.83799e-04\tAbsError: 9.86067e-02\n", + " Region: \"zone_3\"\tRelError: 1.03254e+00\tAbsError: 3.23529e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99080e-01\tAbsError: 2.28336e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.47263e-03\tAbsError: 3.00696e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.37034e-02\tAbsError: 1.75137e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.84528e-04\tAbsError: 9.88623e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.65476e+02\tAbsError: 5.59439e+17\n", + " Region: \"zone_1\"\tRelError: 2.09387e+02\tAbsError: 1.61986e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09383e+02\tAbsError: 3.19517e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.55078e-03\tAbsError: 1.58791e+00\n", + " Region: \"zone_3\"\tRelError: 5.60883e+01\tAbsError: 5.59439e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.38234e-01\tAbsError: 2.80542e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.36773e-01\tAbsError: 2.78897e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 5.54088e+01\tAbsError: 3.19525e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.55115e-03\tAbsError: 1.58798e+00\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.81704e-04\tAbsError: 5.07534e+10\n", + " Region: \"zone_1\"\tRelError: 4.22123e-05\tAbsError: 3.15701e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22032e-05\tAbsError: 1.92390e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.06297e-09\tAbsError: 3.15509e-06\n", + " Region: \"zone_3\"\tRelError: 1.39492e-04\tAbsError: 5.07534e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.09178e-08\tAbsError: 2.53054e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11487e-07\tAbsError: 2.54481e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39280e-04\tAbsError: 1.94322e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.06645e-09\tAbsError: 3.15634e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.67688e-04\tAbsError: 1.23705e+12\n", + " Region: \"zone_1\"\tRelError: 1.68013e-04\tAbsError: 1.19594e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67674e-04\tAbsError: 1.77521e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.38451e-07\tAbsError: 1.17819e-04\n", + " Region: \"zone_3\"\tRelError: 7.99675e-04\tAbsError: 1.23705e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54849e-04\tAbsError: 3.36529e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.54324e-04\tAbsError: 9.00523e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.90164e-04\tAbsError: 1.77541e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.38603e-07\tAbsError: 1.17875e-04\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 3.12813e-01\tAbsError: 1.66549e+14\n", + " Region: \"zone_1\"\tRelError: 4.25373e-03\tAbsError: 1.24404e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.89579e-03\tAbsError: 8.19650e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57939e-04\tAbsError: 1.24322e-01\n", + " Region: \"zone_3\"\tRelError: 3.08559e-01\tAbsError: 1.66549e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.97543e-01\tAbsError: 2.07326e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.99228e-03\tAbsError: 1.45816e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.66473e-03\tAbsError: 8.31001e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.58829e-04\tAbsError: 1.24634e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.87295e+01\tAbsError: 5.78845e+16\n", + " Region: \"zone_1\"\tRelError: 1.56484e+00\tAbsError: 2.87198e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55673e+00\tAbsError: 2.57917e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.10568e-03\tAbsError: 2.84619e+00\n", + " Region: \"zone_3\"\tRelError: 1.71646e+01\tAbsError: 5.78845e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.63325e-02\tAbsError: 2.90346e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.16626e-02\tAbsError: 2.88498e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70185e+01\tAbsError: 2.58445e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.13005e-03\tAbsError: 2.85483e+00\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 6.62313e-05\tAbsError: 2.17613e+10\n", + " Region: \"zone_1\"\tRelError: 1.67469e-05\tAbsError: 5.67281e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67453e-05\tAbsError: 7.83574e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62726e-09\tAbsError: 5.66497e-07\n", + " Region: \"zone_3\"\tRelError: 4.94844e-05\tAbsError: 2.17613e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.55855e-08\tAbsError: 1.08504e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.54124e-08\tAbsError: 1.09109e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.94217e-05\tAbsError: 7.91795e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62789e-09\tAbsError: 5.66732e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:46\u001b[0m.\u001b[1;36m247\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 1.0899999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 7.10114e-02\tAbsError: 5.29987e+13\n", + " Region: \"zone_1\"\tRelError: 1.65212e-02\tAbsError: 3.86093e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65102e-02\tAbsError: 6.43187e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09308e-05\tAbsError: 3.79661e-03\n", + " Region: \"zone_3\"\tRelError: 5.44903e-02\tAbsError: 5.29987e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.03260e-03\tAbsError: 2.14256e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.99838e-03\tAbsError: 3.15731e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.84483e-02\tAbsError: 6.48297e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09464e-05\tAbsError: 3.80212e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.40125e-04\tAbsError: 9.72535e+10\n", + " Region: \"zone_1\"\tRelError: 3.49219e-05\tAbsError: 7.34639e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.47105e-05\tAbsError: 5.62705e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.11358e-07\tAbsError: 7.34076e-05\n", + " Region: \"zone_3\"\tRelError: 1.05203e-04\tAbsError: 9.72535e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.48707e-06\tAbsError: 7.09164e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.41428e-06\tAbsError: 2.63371e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.00902e-05\tAbsError: 5.91937e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.11437e-07\tAbsError: 7.34332e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.00400e+01\tAbsError: 1.94504e+16\n", + " Region: \"zone_1\"\tRelError: 5.83181e+00\tAbsError: 1.79058e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.82672e+00\tAbsError: 1.06604e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.09493e-03\tAbsError: 1.77992e+00\n", + " Region: \"zone_3\"\tRelError: 4.20814e+00\tAbsError: 1.94504e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31217e-02\tAbsError: 9.68151e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.63990e-02\tAbsError: 9.76891e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.16350e+00\tAbsError: 1.06615e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.12059e-03\tAbsError: 1.78891e+00\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 5.34056e-03\tAbsError: 2.07454e+12\n", + " Region: \"zone_1\"\tRelError: 1.49812e-03\tAbsError: 3.37903e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48841e-03\tAbsError: 2.66958e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.71068e-06\tAbsError: 3.37636e-03\n", + " Region: \"zone_3\"\tRelError: 3.84243e-03\tAbsError: 2.07454e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.06191e-04\tAbsError: 8.27083e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.14714e-04\tAbsError: 1.24746e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.21181e-03\tAbsError: 2.69702e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.71398e-06\tAbsError: 3.37760e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.15381e+03\tAbsError: 2.37220e+18\n", + " Region: \"zone_1\"\tRelError: 6.51804e+02\tAbsError: 4.29334e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.51804e+02\tAbsError: 4.29332e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.86751e-10\tAbsError: 2.04266e-07\n", + " Region: \"zone_3\"\tRelError: 5.02007e+02\tAbsError: 2.37220e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.18418e-01\tAbsError: 1.18342e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.02784e-01\tAbsError: 1.18878e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 5.00786e+02\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.86983e-10\tAbsError: 2.04352e-07\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 7.56709e-05\tAbsError: 6.77210e+10\n", + " Region: \"zone_1\"\tRelError: 1.76311e-05\tAbsError: 3.41657e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76214e-05\tAbsError: 5.90161e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.64471e-09\tAbsError: 3.35756e-06\n", + " Region: \"zone_3\"\tRelError: 5.80398e-05\tAbsError: 6.77210e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.05802e-06\tAbsError: 2.73831e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.00749e-06\tAbsError: 4.03378e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.59647e-05\tAbsError: 5.91576e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.64956e-09\tAbsError: 3.35932e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:48\u001b[0m.\u001b[1;36m289\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:48\u001b[0m.\u001b[1;36m289\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.3090909090909091\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 5.29647e+00\tAbsError: 1.75873e+16\n", + " Region: \"zone_1\"\tRelError: 2.79182e+00\tAbsError: 1.48863e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78757e+00\tAbsError: 1.73604e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.25501e-03\tAbsError: 1.48846e+00\n", + " Region: \"zone_3\"\tRelError: 2.50465e+00\tAbsError: 1.75873e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.28043e-02\tAbsError: 8.38773e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.83546e-03\tAbsError: 9.19953e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.47175e+00\tAbsError: 1.74563e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.25799e-03\tAbsError: 1.48951e+00\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 5.03612e-03\tAbsError: 2.83265e+12\n", + " Region: \"zone_1\"\tRelError: 1.36798e-03\tAbsError: 3.45924e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36699e-03\tAbsError: 1.97871e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.89159e-07\tAbsError: 3.43945e-04\n", + " Region: \"zone_3\"\tRelError: 3.66814e-03\tAbsError: 2.83265e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.03983e-04\tAbsError: 1.71027e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.01328e-04\tAbsError: 1.12238e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.06184e-03\tAbsError: 2.00125e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.89570e-07\tAbsError: 3.44089e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.27235e+02\tAbsError: 6.01131e+17\n", + " Region: \"zone_1\"\tRelError: 6.37236e+01\tAbsError: 2.15555e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 6.37175e+01\tAbsError: 3.30990e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.06216e-03\tAbsError: 2.12245e+00\n", + " Region: \"zone_3\"\tRelError: 6.35112e+01\tAbsError: 6.01131e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.07135e-01\tAbsError: 3.01236e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.10530e-01\tAbsError: 2.99895e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 6.28874e+01\tAbsError: 3.31000e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.06277e-03\tAbsError: 2.12266e+00\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 6.84071e-04\tAbsError: 3.16352e+11\n", + " Region: \"zone_1\"\tRelError: 1.94288e-04\tAbsError: 2.17034e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93664e-04\tAbsError: 2.29632e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.23513e-07\tAbsError: 2.16805e-04\n", + " Region: \"zone_3\"\tRelError: 4.89784e-04\tAbsError: 3.16352e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.26466e-05\tAbsError: 1.76971e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.25924e-05\tAbsError: 1.39381e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.23921e-04\tAbsError: 2.32333e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.23623e-07\tAbsError: 2.16843e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.83500e+02\tAbsError: 8.65566e+15\n", + " Region: \"zone_1\"\tRelError: 2.81843e+02\tAbsError: 4.18767e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.81843e+02\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10669e-08\tAbsError: 3.84725e-06\n", + " Region: \"zone_3\"\tRelError: 1.65782e+00\tAbsError: 8.65566e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77422e-01\tAbsError: 4.99578e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.77402e-01\tAbsError: 3.65988e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02995e-01\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10677e-08\tAbsError: 3.84759e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.16935e+01\tAbsError: 9.40991e+15\n", + " Region: \"zone_1\"\tRelError: 5.40803e-01\tAbsError: 5.56761e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.40645e-01\tAbsError: 3.86146e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58024e-04\tAbsError: 5.52900e-02\n", + " Region: \"zone_3\"\tRelError: 1.11527e+01\tAbsError: 9.40991e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54329e-02\tAbsError: 4.59548e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.04663e-03\tAbsError: 4.81443e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11341e+01\tAbsError: 3.88837e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58109e-04\tAbsError: 5.53189e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 4.46534e+01\tAbsError: 4.26935e+16\n", + " Region: \"zone_1\"\tRelError: 4.31929e+01\tAbsError: 3.34889e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.31834e+01\tAbsError: 2.58895e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.42928e-03\tAbsError: 3.32300e+00\n", + " Region: \"zone_3\"\tRelError: 1.46059e+00\tAbsError: 4.26935e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.12272e-02\tAbsError: 2.14191e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.32369e-02\tAbsError: 2.12744e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33669e+00\tAbsError: 2.58962e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.43739e-03\tAbsError: 3.32593e+00\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 3.63414e-04\tAbsError: 2.02249e+11\n", + " Region: \"zone_1\"\tRelError: 1.00386e-04\tAbsError: 3.49527e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00286e-04\tAbsError: 1.28886e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00150e-07\tAbsError: 3.48238e-05\n", + " Region: \"zone_3\"\tRelError: 2.63028e-04\tAbsError: 2.02249e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97081e-05\tAbsError: 1.21339e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.95483e-05\tAbsError: 8.09100e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23671e-04\tAbsError: 1.30395e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00167e-07\tAbsError: 3.48297e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.48557e+00\tAbsError: 3.20270e+14\n", + " Region: \"zone_1\"\tRelError: 3.05154e-02\tAbsError: 4.95864e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.03737e-02\tAbsError: 1.84386e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41696e-04\tAbsError: 4.95679e-02\n", + " Region: \"zone_3\"\tRelError: 1.45505e+00\tAbsError: 3.20270e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47383e-03\tAbsError: 1.55510e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.13814e-04\tAbsError: 1.64760e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45293e+00\tAbsError: 1.85478e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41753e-04\tAbsError: 4.95877e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.21069e+00\tAbsError: 3.14375e+14\n", + " Region: \"zone_1\"\tRelError: 7.32124e-01\tAbsError: 8.88279e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.31960e-01\tAbsError: 3.18465e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63935e-04\tAbsError: 5.69815e-02\n", + " Region: \"zone_3\"\tRelError: 1.47857e+00\tAbsError: 3.14375e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.52488e-01\tAbsError: 1.95459e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.46660e-01\tAbsError: 1.18916e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.92560e-02\tAbsError: 3.18469e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63935e-04\tAbsError: 5.69815e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.06957e+01\tAbsError: 2.39287e+16\n", + " Region: \"zone_1\"\tRelError: 2.18674e+01\tAbsError: 2.38118e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18606e+01\tAbsError: 1.22639e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.76748e-03\tAbsError: 2.36892e+00\n", + " Region: \"zone_3\"\tRelError: 3.88283e+01\tAbsError: 2.39287e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.22362e-02\tAbsError: 1.20542e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.10394e-02\tAbsError: 1.18745e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87582e+01\tAbsError: 1.22654e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.77515e-03\tAbsError: 2.37164e+00\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 6.67627e-05\tAbsError: 3.26147e+10\n", + " Region: \"zone_1\"\tRelError: 1.88501e-05\tAbsError: 1.56670e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88051e-05\tAbsError: 2.18141e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.49944e-08\tAbsError: 1.56452e-05\n", + " Region: \"zone_3\"\tRelError: 4.79126e-05\tAbsError: 3.26147e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.23517e-06\tAbsError: 1.91761e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.22128e-06\tAbsError: 1.34386e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.14111e-05\tAbsError: 2.20748e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.49994e-08\tAbsError: 1.56470e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:52\u001b[0m.\u001b[1;36m013\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.2\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.02209e+00\tAbsError: 4.33246e+13\n", + " Region: \"zone_1\"\tRelError: 6.28792e-02\tAbsError: 3.21867e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.28610e-02\tAbsError: 2.58707e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.81707e-05\tAbsError: 6.31601e-03\n", + " Region: \"zone_3\"\tRelError: 9.59212e-01\tAbsError: 4.33246e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.62006e-01\tAbsError: 3.08852e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.33712e-01\tAbsError: 1.24394e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.34763e-02\tAbsError: 2.58963e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.81707e-05\tAbsError: 6.31601e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 7.70029e-01\tAbsError: 2.97081e+14\n", + " Region: \"zone_1\"\tRelError: 4.96016e-02\tAbsError: 3.55497e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.95915e-02\tAbsError: 1.36673e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01232e-05\tAbsError: 3.54131e-03\n", + " Region: \"zone_3\"\tRelError: 7.20428e-01\tAbsError: 2.97081e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.85363e-04\tAbsError: 1.47966e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.28655e-04\tAbsError: 1.49115e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.19504e-01\tAbsError: 1.37577e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01271e-05\tAbsError: 3.54267e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.78067e+01\tAbsError: 2.47144e+16\n", + " Region: \"zone_1\"\tRelError: 1.44384e+01\tAbsError: 1.28516e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44348e+01\tAbsError: 2.79036e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.66119e-03\tAbsError: 1.28488e+00\n", + " Region: \"zone_3\"\tRelError: 3.36829e+00\tAbsError: 2.47144e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53457e-02\tAbsError: 1.23209e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.28668e-02\tAbsError: 1.23934e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.33641e+00\tAbsError: 2.81211e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.66490e-03\tAbsError: 1.28619e+00\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.71665e+00\tAbsError: 8.34849e+15\n", + " Region: \"zone_1\"\tRelError: 2.08783e+00\tAbsError: 4.09574e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08783e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.12481e-09\tAbsError: 3.17283e-06\n", + " Region: \"zone_3\"\tRelError: 1.62882e+00\tAbsError: 8.34849e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69544e-01\tAbsError: 4.67018e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69471e-01\tAbsError: 3.67831e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.98080e-02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.12585e-09\tAbsError: 3.17320e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.18153e-01\tAbsError: 7.69318e+12\n", + " Region: \"zone_1\"\tRelError: 2.19507e-02\tAbsError: 1.30281e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19435e-02\tAbsError: 1.05212e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.21201e-06\tAbsError: 2.50690e-03\n", + " Region: \"zone_3\"\tRelError: 2.96202e-01\tAbsError: 7.69318e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16081e-01\tAbsError: 3.71910e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.79572e-02\tAbsError: 3.97407e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21572e-02\tAbsError: 1.05213e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.21469e-06\tAbsError: 2.50784e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 9.06918e-02\tAbsError: 2.13818e+13\n", + " Region: \"zone_1\"\tRelError: 5.41321e-03\tAbsError: 2.02187e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.40742e-03\tAbsError: 1.13615e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.79189e-06\tAbsError: 2.02073e-03\n", + " Region: \"zone_3\"\tRelError: 8.52786e-02\tAbsError: 2.13818e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.50647e-05\tAbsError: 1.06492e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.41669e-05\tAbsError: 1.07325e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.51436e-02\tAbsError: 1.14349e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.79312e-06\tAbsError: 2.02124e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.32287e+00\tAbsError: 9.07118e+15\n", + " Region: \"zone_1\"\tRelError: 1.41239e+00\tAbsError: 4.08445e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41227e+00\tAbsError: 3.17019e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15460e-04\tAbsError: 4.05275e-02\n", + " Region: \"zone_3\"\tRelError: 4.91049e+00\tAbsError: 9.07118e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.35706e-02\tAbsError: 4.44589e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.94902e-03\tAbsError: 4.62529e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.89385e+00\tAbsError: 3.18982e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15534e-04\tAbsError: 4.05531e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.50135e+00\tAbsError: 2.91713e+14\n", + " Region: \"zone_1\"\tRelError: 6.56152e-02\tAbsError: 8.99319e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.54450e-02\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70197e-04\tAbsError: 5.91682e-02\n", + " Region: \"zone_3\"\tRelError: 1.43573e+00\tAbsError: 2.91713e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37692e-01\tAbsError: 1.49991e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32867e-01\tAbsError: 1.41722e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.50013e-02\tAbsError: 3.07641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70197e-04\tAbsError: 5.91682e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.93773e-02\tAbsError: 2.16739e+12\n", + " Region: \"zone_1\"\tRelError: 1.94704e-03\tAbsError: 2.16033e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.94083e-03\tAbsError: 5.39856e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.20559e-06\tAbsError: 2.15493e-03\n", + " Region: \"zone_3\"\tRelError: 6.74303e-02\tAbsError: 2.16739e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.50959e-02\tAbsError: 1.50592e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.92088e-04\tAbsError: 6.61468e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03608e-03\tAbsError: 5.64194e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.20559e-06\tAbsError: 2.15493e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 5.23204e-02\tAbsError: 1.36111e+13\n", + " Region: \"zone_1\"\tRelError: 3.25743e-03\tAbsError: 2.33620e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.25676e-03\tAbsError: 5.48360e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.68920e-07\tAbsError: 2.33072e-04\n", + " Region: \"zone_3\"\tRelError: 4.90630e-02\tAbsError: 1.36111e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46005e-05\tAbsError: 6.78353e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.23853e-05\tAbsError: 6.82756e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.90154e-02\tAbsError: 5.51914e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.68941e-07\tAbsError: 2.33078e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.37835e-02\tAbsError: 3.06207e+14\n", + " Region: \"zone_1\"\tRelError: 1.75914e-02\tAbsError: 3.79806e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74832e-02\tAbsError: 1.26171e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08186e-04\tAbsError: 3.79680e-02\n", + " Region: \"zone_3\"\tRelError: 4.61921e-02\tAbsError: 3.06207e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09564e-03\tAbsError: 1.49901e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.92419e-04\tAbsError: 1.56306e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.47958e-02\tAbsError: 1.26817e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08228e-04\tAbsError: 3.79829e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.34092e-01\tAbsError: 3.63180e+13\n", + " Region: \"zone_1\"\tRelError: 4.74089e-02\tAbsError: 3.08418e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.73947e-02\tAbsError: 2.58899e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42440e-05\tAbsError: 4.95193e-03\n", + " Region: \"zone_3\"\tRelError: 8.86683e-01\tAbsError: 3.63180e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40041e-01\tAbsError: 2.66182e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.98904e-01\tAbsError: 9.69984e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.77236e-02\tAbsError: 2.58388e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42440e-05\tAbsError: 4.95193e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 7.80215e-03\tAbsError: 1.53595e+12\n", + " Region: \"zone_1\"\tRelError: 4.80636e-04\tAbsError: 1.08236e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.80325e-04\tAbsError: 6.67270e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.10441e-07\tAbsError: 1.08169e-04\n", + " Region: \"zone_3\"\tRelError: 7.32151e-03\tAbsError: 1.53595e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.01724e-06\tAbsError: 7.65591e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.19179e-06\tAbsError: 7.70356e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.31299e-03\tAbsError: 6.71457e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.10496e-07\tAbsError: 1.08189e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.14583e-03\tAbsError: 1.06368e+12\n", + " Region: \"zone_1\"\tRelError: 4.77108e-04\tAbsError: 9.99144e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.76825e-04\tAbsError: 1.58343e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.82488e-07\tAbsError: 9.83309e-05\n", + " Region: \"zone_3\"\tRelError: 6.68723e-04\tAbsError: 1.06368e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24784e-04\tAbsError: 2.85656e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.19154e-04\tAbsError: 7.78029e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.24501e-04\tAbsError: 1.59076e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.82620e-07\tAbsError: 9.83784e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.91540e-01\tAbsError: 2.30901e+14\n", + " Region: \"zone_1\"\tRelError: 9.68543e-02\tAbsError: 2.30691e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.68477e-02\tAbsError: 1.04073e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.54344e-06\tAbsError: 2.29650e-03\n", + " Region: \"zone_3\"\tRelError: 5.94685e-01\tAbsError: 2.30901e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73544e-04\tAbsError: 1.14971e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.60432e-04\tAbsError: 1.15930e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.93945e-01\tAbsError: 1.04696e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.54610e-06\tAbsError: 2.29743e-03\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 3.24839e-03\tAbsError: 6.94914e+11\n", + " Region: \"zone_1\"\tRelError: 2.00839e-04\tAbsError: 1.73175e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.00789e-04\tAbsError: 2.61827e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.95620e-08\tAbsError: 1.72913e-05\n", + " Region: \"zone_3\"\tRelError: 3.04755e-03\tAbsError: 6.94914e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19854e-06\tAbsError: 3.46484e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.41935e-06\tAbsError: 3.48429e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.04488e-03\tAbsError: 2.64294e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.95807e-08\tAbsError: 1.72981e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.84661e-01\tAbsError: 3.60691e+12\n", + " Region: \"zone_1\"\tRelError: 1.51217e-02\tAbsError: 1.24488e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51123e-02\tAbsError: 9.16566e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.44392e-06\tAbsError: 3.28315e-03\n", + " Region: \"zone_3\"\tRelError: 2.69539e-01\tAbsError: 3.60691e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12296e-01\tAbsError: 2.19870e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.19182e-02\tAbsError: 1.40820e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53153e-02\tAbsError: 9.16570e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.44392e-06\tAbsError: 3.28315e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.01321e-04\tAbsError: 7.94947e+10\n", + " Region: \"zone_1\"\tRelError: 1.53281e-05\tAbsError: 6.36624e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51449e-05\tAbsError: 4.80125e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83179e-07\tAbsError: 6.36144e-05\n", + " Region: \"zone_3\"\tRelError: 8.59926e-05\tAbsError: 7.94947e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.36957e-06\tAbsError: 5.94263e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.23031e-06\tAbsError: 2.00684e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.52095e-05\tAbsError: 5.01215e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83260e-07\tAbsError: 6.36408e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.26812e-02\tAbsError: 1.20947e+13\n", + " Region: \"zone_1\"\tRelError: 6.40537e-03\tAbsError: 1.38235e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.40142e-03\tAbsError: 7.35377e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.94662e-06\tAbsError: 1.38161e-03\n", + " Region: \"zone_3\"\tRelError: 3.62758e-02\tAbsError: 1.20947e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.08131e-05\tAbsError: 6.01724e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.02534e-05\tAbsError: 6.07742e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.61908e-02\tAbsError: 7.39578e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.94693e-06\tAbsError: 1.38178e-03\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 5.79766e-04\tAbsError: 1.04851e+11\n", + " Region: \"zone_1\"\tRelError: 3.57298e-05\tAbsError: 6.44419e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.57113e-05\tAbsError: 4.57262e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84578e-08\tAbsError: 6.43961e-06\n", + " Region: \"zone_3\"\tRelError: 5.44036e-04\tAbsError: 1.04851e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.31216e-07\tAbsError: 5.22891e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.92773e-07\tAbsError: 5.25616e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.43493e-04\tAbsError: 4.61453e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84647e-08\tAbsError: 6.44213e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.15194e-02\tAbsError: 3.32539e+12\n", + " Region: \"zone_1\"\tRelError: 1.39866e-03\tAbsError: 2.06500e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39275e-03\tAbsError: 1.45908e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.90398e-06\tAbsError: 2.05041e-03\n", + " Region: \"zone_3\"\tRelError: 6.01208e-02\tAbsError: 3.32539e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.70408e-02\tAbsError: 2.05877e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.81898e-04\tAbsError: 1.26662e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49218e-03\tAbsError: 1.52369e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.90398e-06\tAbsError: 2.05041e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.79799e-05\tAbsError: 5.88284e+10\n", + " Region: \"zone_1\"\tRelError: 8.12709e-06\tAbsError: 2.69739e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.11950e-06\tAbsError: 5.30618e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.59657e-09\tAbsError: 2.64433e-06\n", + " Region: \"zone_3\"\tRelError: 4.98528e-05\tAbsError: 5.88284e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.66980e-06\tAbsError: 2.37822e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.62891e-06\tAbsError: 3.50462e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.05465e-05\tAbsError: 5.31420e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.60077e-09\tAbsError: 2.64586e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:58\u001b[0m.\u001b[1;36m982\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:58\u001b[0m.\u001b[1;36m982\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.4136363636363636\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 3.80030e-02\tAbsError: 9.01767e+12\n", + " Region: \"zone_1\"\tRelError: 5.48386e-03\tAbsError: 1.27682e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.48349e-03\tAbsError: 3.71300e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.63667e-07\tAbsError: 1.27311e-04\n", + " Region: \"zone_3\"\tRelError: 3.25191e-02\tAbsError: 9.01767e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.75047e-05\tAbsError: 4.49288e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.54817e-05\tAbsError: 4.52478e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.24858e-02\tAbsError: 3.73422e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.63688e-07\tAbsError: 1.27324e-04\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.98524e-04\tAbsError: 3.83891e+10\n", + " Region: \"zone_1\"\tRelError: 1.22506e-05\tAbsError: 1.22488e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22471e-05\tAbsError: 1.59287e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.50629e-09\tAbsError: 1.22328e-06\n", + " Region: \"zone_3\"\tRelError: 1.86273e-04\tAbsError: 3.83891e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.51745e-08\tAbsError: 1.91479e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.84174e-08\tAbsError: 1.92412e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86116e-04\tAbsError: 1.60789e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.50766e-09\tAbsError: 1.22379e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.41584e-04\tAbsError: 9.91747e+11\n", + " Region: \"zone_1\"\tRelError: 9.96217e-05\tAbsError: 1.41225e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.92201e-05\tAbsError: 1.43599e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.01567e-07\tAbsError: 1.39789e-04\n", + " Region: \"zone_3\"\tRelError: 5.41962e-04\tAbsError: 9.91747e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33850e-04\tAbsError: 2.52742e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.19510e-04\tAbsError: 7.39006e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88200e-04\tAbsError: 1.43643e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.01722e-07\tAbsError: 1.39845e-04\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 4.19075e-03\tAbsError: 7.89543e+11\n", + " Region: \"zone_1\"\tRelError: 6.21903e-04\tAbsError: 6.47135e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.21718e-04\tAbsError: 3.87952e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85083e-07\tAbsError: 6.46747e-05\n", + " Region: \"zone_3\"\tRelError: 3.56885e-03\tAbsError: 7.89543e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.42620e-06\tAbsError: 3.93310e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.36465e-06\tAbsError: 3.96233e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.56387e-03\tAbsError: 3.90104e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85135e-07\tAbsError: 6.46926e-05\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 3.99229e-05\tAbsError: 6.97672e+09\n", + " Region: \"zone_1\"\tRelError: 2.45928e-06\tAbsError: 3.92297e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.45815e-06\tAbsError: 3.16056e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12353e-09\tAbsError: 3.91981e-07\n", + " Region: \"zone_3\"\tRelError: 3.74636e-05\tAbsError: 6.97672e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.39643e-08\tAbsError: 3.48049e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.94984e-08\tAbsError: 3.49623e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74291e-05\tAbsError: 3.18973e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12398e-09\tAbsError: 3.92148e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:00\u001b[0m.\u001b[1;36m481\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 1.15\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.61224e+00\tAbsError: 8.62836e+15\n", + " Region: \"zone_1\"\tRelError: 5.94427e+00\tAbsError: 4.18762e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.94427e+00\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.66010e-09\tAbsError: 3.35766e-06\n", + " Region: \"zone_3\"\tRelError: 1.66797e+00\tAbsError: 8.62836e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77445e-01\tAbsError: 5.08925e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.77421e-01\tAbsError: 3.53911e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13100e-01\tAbsError: 4.18729e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.66084e-09\tAbsError: 3.35797e-06\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.04888e-03\tAbsError: 3.95899e+11\n", + " Region: \"zone_1\"\tRelError: 3.00068e-04\tAbsError: 8.61802e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.00043e-04\tAbsError: 1.55122e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.46182e-08\tAbsError: 8.60250e-06\n", + " Region: \"zone_3\"\tRelError: 1.74881e-03\tAbsError: 3.95899e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.45561e-07\tAbsError: 1.97350e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.77697e-07\tAbsError: 1.98549e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74716e-03\tAbsError: 1.56449e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.46222e-08\tAbsError: 8.60394e-06\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.93103e-04\tAbsError: 1.20962e+11\n", + " Region: \"zone_1\"\tRelError: 5.19828e-05\tAbsError: 5.49714e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.18247e-05\tAbsError: 7.13700e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58070e-07\tAbsError: 5.49001e-05\n", + " Region: \"zone_3\"\tRelError: 1.41120e-04\tAbsError: 1.20962e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98328e-06\tAbsError: 8.30775e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.89243e-06\tAbsError: 3.78845e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21087e-04\tAbsError: 7.51147e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58070e-07\tAbsError: 5.49001e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.60249e+00\tAbsError: 3.96429e+14\n", + " Region: \"zone_1\"\tRelError: 1.07248e-01\tAbsError: 8.09693e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07107e-01\tAbsError: 3.18464e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41344e-04\tAbsError: 4.91228e-02\n", + " Region: \"zone_3\"\tRelError: 1.49524e+00\tAbsError: 3.96429e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53329e-01\tAbsError: 2.70708e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.45859e-01\tAbsError: 1.25720e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.59117e-02\tAbsError: 3.18468e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41344e-04\tAbsError: 4.91228e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.83148e+01\tAbsError: 2.68702e+18\n", + " Region: \"zone_1\"\tRelError: 2.03151e+01\tAbsError: 4.19622e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03151e+01\tAbsError: 4.19622e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.35537e-10\tAbsError: 8.21757e-08\n", + " Region: \"zone_3\"\tRelError: 3.79998e+01\tAbsError: 2.68702e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.54751e-01\tAbsError: 1.34192e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.46027e-01\tAbsError: 1.34511e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 3.68990e+01\tAbsError: 4.19629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.35633e-10\tAbsError: 8.22106e-08\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 3.03214e-04\tAbsError: 4.92871e+10\n", + " Region: \"zone_1\"\tRelError: 4.51218e-05\tAbsError: 3.43658e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.51120e-05\tAbsError: 2.30653e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.82274e-09\tAbsError: 3.43427e-06\n", + " Region: \"zone_3\"\tRelError: 2.58092e-04\tAbsError: 4.92871e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.25663e-07\tAbsError: 2.45763e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.58064e-07\tAbsError: 2.47109e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57799e-04\tAbsError: 2.32525e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.82653e-09\tAbsError: 3.43564e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.80784e-05\tAbsError: 4.88675e+10\n", + " Region: \"zone_1\"\tRelError: 1.14726e-05\tAbsError: 6.01777e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14554e-05\tAbsError: 4.42616e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71596e-08\tAbsError: 5.97350e-06\n", + " Region: \"zone_3\"\tRelError: 3.66059e-05\tAbsError: 4.88675e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37889e-06\tAbsError: 1.78089e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.34156e-06\tAbsError: 3.10586e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78682e-05\tAbsError: 4.43738e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71672e-08\tAbsError: 5.97630e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:02\u001b[0m.\u001b[1;36m635\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.3\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.11857e-04\tAbsError: 1.91944e+10\n", + " Region: \"zone_1\"\tRelError: 1.64982e-05\tAbsError: 5.77398e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64966e-05\tAbsError: 8.51680e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64906e-09\tAbsError: 5.76547e-07\n", + " Region: \"zone_3\"\tRelError: 9.53587e-05\tAbsError: 1.91944e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.58573e-08\tAbsError: 9.57503e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.95353e-08\tAbsError: 9.61942e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.52717e-05\tAbsError: 8.59043e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64968e-09\tAbsError: 5.76776e-07\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.07043e+00\tAbsError: 1.31538e+14\n", + " Region: \"zone_1\"\tRelError: 8.24569e-02\tAbsError: 3.32321e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.24358e-02\tAbsError: 2.58877e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.11320e-05\tAbsError: 7.34439e-03\n", + " Region: \"zone_3\"\tRelError: 9.87970e-01\tAbsError: 1.31538e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.63108e-01\tAbsError: 7.89650e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.41314e-01\tAbsError: 5.25731e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.35277e-02\tAbsError: 2.58940e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.11320e-05\tAbsError: 7.34439e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.02099e+00\tAbsError: 4.94342e+17\n", + " Region: \"zone_1\"\tRelError: 7.12206e-01\tAbsError: 2.83587e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 7.04244e-01\tAbsError: 3.19512e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.96131e-03\tAbsError: 2.80392e+00\n", + " Region: \"zone_3\"\tRelError: 1.30878e+00\tAbsError: 4.94342e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47535e-01\tAbsError: 2.47513e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.43748e-01\tAbsError: 2.46828e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 8.09539e-01\tAbsError: 3.19525e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.96220e-03\tAbsError: 2.80430e+00\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.97623e-05\tAbsError: 3.02692e+09\n", + " Region: \"zone_1\"\tRelError: 2.94371e-06\tAbsError: 1.91382e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.94316e-06\tAbsError: 1.50936e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.46965e-10\tAbsError: 1.91231e-07\n", + " Region: \"zone_3\"\tRelError: 1.68186e-05\tAbsError: 3.02692e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91444e-09\tAbsError: 1.51040e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.89961e-09\tAbsError: 1.51652e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68012e-05\tAbsError: 1.52167e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.47183e-10\tAbsError: 1.91311e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.29649e+01\tAbsError: 8.28032e+15\n", + " Region: \"zone_1\"\tRelError: 1.13261e+01\tAbsError: 4.09567e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13261e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.18781e-09\tAbsError: 2.49634e-06\n", + " Region: \"zone_3\"\tRelError: 1.63880e+00\tAbsError: 8.28032e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69633e-01\tAbsError: 4.77284e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.50748e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.95556e-02\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.18873e-09\tAbsError: 2.49669e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:04\u001b[0m.\u001b[1;36m321\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 1.2\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.49932e-01\tAbsError: 4.88492e+13\n", + " Region: \"zone_1\"\tRelError: 2.83428e-02\tAbsError: 1.27049e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83365e-02\tAbsError: 1.05212e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.28298e-06\tAbsError: 2.18369e-03\n", + " Region: \"zone_3\"\tRelError: 3.21589e-01\tAbsError: 4.88492e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14470e-01\tAbsError: 2.20257e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.84871e-02\tAbsError: 2.68235e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.86258e-02\tAbsError: 1.05212e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.28763e-06\tAbsError: 2.18531e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 4.51056e-01\tAbsError: 2.05364e+16\n", + " Region: \"zone_1\"\tRelError: 2.00144e-01\tAbsError: 2.42988e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93339e-01\tAbsError: 2.58995e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.80518e-03\tAbsError: 2.40398e+00\n", + " Region: \"zone_3\"\tRelError: 2.50912e-01\tAbsError: 2.05364e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.66526e-02\tAbsError: 1.02176e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.39299e-02\tAbsError: 1.03188e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93523e-01\tAbsError: 2.58382e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.80635e-03\tAbsError: 2.40440e+00\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.56865e+00\tAbsError: 2.86625e+14\n", + " Region: \"zone_1\"\tRelError: 1.21045e-01\tAbsError: 8.55195e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20888e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", + " Region: \"zone_3\"\tRelError: 1.44761e+00\tAbsError: 2.86625e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38556e-01\tAbsError: 1.75436e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32332e-01\tAbsError: 1.11189e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.65613e-02\tAbsError: 3.07640e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.18685e-02\tAbsError: 7.74299e+12\n", + " Region: \"zone_1\"\tRelError: 3.51475e-03\tAbsError: 2.24246e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.50846e-03\tAbsError: 5.73988e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.29286e-06\tAbsError: 2.18506e-03\n", + " Region: \"zone_3\"\tRelError: 6.83538e-02\tAbsError: 7.74299e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38946e-02\tAbsError: 4.23379e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.68308e-03\tAbsError: 3.50920e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76980e-03\tAbsError: 6.12737e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.29286e-06\tAbsError: 2.18506e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.21968e+01\tAbsError: 3.03714e+18\n", + " Region: \"zone_1\"\tRelError: 9.28674e+00\tAbsError: 4.29329e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.28674e+00\tAbsError: 4.29329e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04601e-10\tAbsError: 3.65708e-08\n", + " Region: \"zone_3\"\tRelError: 2.91002e+00\tAbsError: 3.03714e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.35154e-01\tAbsError: 1.51734e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.27699e-01\tAbsError: 1.51980e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84717e+00\tAbsError: 4.29338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04643e-10\tAbsError: 3.65865e-08\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.67468e-01\tAbsError: 2.46843e+16\n", + " Region: \"zone_1\"\tRelError: 2.30517e-01\tAbsError: 1.62585e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25924e-01\tAbsError: 1.06599e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.59329e-03\tAbsError: 1.61519e+00\n", + " Region: \"zone_3\"\tRelError: 3.36951e-01\tAbsError: 2.46843e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21049e-02\tAbsError: 1.22878e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.07419e-02\tAbsError: 1.23965e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.79509e-01\tAbsError: 1.06615e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.59568e-03\tAbsError: 1.61602e+00\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.63437e-01\tAbsError: 3.66677e+13\n", + " Region: \"zone_1\"\tRelError: 5.93231e-02\tAbsError: 3.16919e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.93064e-02\tAbsError: 2.58707e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", + " Region: \"zone_3\"\tRelError: 9.04114e-01\tAbsError: 3.66677e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40101e-01\tAbsError: 2.63702e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.04471e-01\tAbsError: 1.02975e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95256e-02\tAbsError: 2.58992e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.99896e-04\tAbsError: 1.04663e+12\n", + " Region: \"zone_1\"\tRelError: 9.91619e-05\tAbsError: 9.43866e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.88950e-05\tAbsError: 1.48652e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.66917e-07\tAbsError: 9.29001e-05\n", + " Region: \"zone_3\"\tRelError: 7.00734e-04\tAbsError: 1.04663e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52150e-04\tAbsError: 2.81168e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02994e-04\tAbsError: 7.65464e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.45323e-04\tAbsError: 1.48982e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.67024e-07\tAbsError: 9.29392e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.02943e+00\tAbsError: 4.87297e+17\n", + " Region: \"zone_1\"\tRelError: 2.94499e-01\tAbsError: 3.54798e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.84574e-01\tAbsError: 3.30986e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.92456e-03\tAbsError: 3.51488e+00\n", + " Region: \"zone_3\"\tRelError: 7.34931e-01\tAbsError: 4.87297e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.40933e-01\tAbsError: 2.43918e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.31212e-01\tAbsError: 2.43379e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52860e-01\tAbsError: 3.31000e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.92599e-03\tAbsError: 3.51524e+00\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.37043e-01\tAbsError: 1.75835e+16\n", + " Region: \"zone_1\"\tRelError: 9.99402e-02\tAbsError: 6.83854e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.80013e-02\tAbsError: 2.45416e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93890e-03\tAbsError: 6.83608e-01\n", + " Region: \"zone_3\"\tRelError: 1.37102e-01\tAbsError: 1.75835e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.69191e-03\tAbsError: 8.79303e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.90089e-03\tAbsError: 8.79044e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18571e-01\tAbsError: 2.45694e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93890e-03\tAbsError: 6.83676e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.93334e-01\tAbsError: 6.56738e+12\n", + " Region: \"zone_1\"\tRelError: 1.86981e-02\tAbsError: 1.19586e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86900e-02\tAbsError: 9.16562e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03535e-06\tAbsError: 2.79297e-03\n", + " Region: \"zone_3\"\tRelError: 2.74636e-01\tAbsError: 6.56738e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11907e-01\tAbsError: 3.29549e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.38500e-02\tAbsError: 3.27189e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88710e-02\tAbsError: 9.16566e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03753e-06\tAbsError: 2.79381e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 9.49822e-05\tAbsError: 7.54263e+10\n", + " Region: \"zone_1\"\tRelError: 1.58303e-05\tAbsError: 6.41477e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56457e-05\tAbsError: 5.00952e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84592e-07\tAbsError: 6.40976e-05\n", + " Region: \"zone_3\"\tRelError: 7.91520e-05\tAbsError: 7.54263e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.86789e-06\tAbsError: 5.64456e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.57072e-06\tAbsError: 1.89807e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.95287e-05\tAbsError: 5.22726e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84689e-07\tAbsError: 6.41318e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:08\u001b[0m.\u001b[1;36m373\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:08\u001b[0m.\u001b[1;36m373\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5181818181818182\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.06598e-01\tAbsError: 2.94721e+16\n", + " Region: \"zone_1\"\tRelError: 1.45043e-01\tAbsError: 1.82604e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39960e-01\tAbsError: 2.58619e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.08227e-03\tAbsError: 1.80018e+00\n", + " Region: \"zone_3\"\tRelError: 1.61555e-01\tAbsError: 2.94721e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.33714e-02\tAbsError: 1.46903e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.75328e-03\tAbsError: 1.47818e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24339e-01\tAbsError: 2.58957e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.09128e-03\tAbsError: 1.80342e+00\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.89351e-02\tAbsError: 5.69657e+15\n", + " Region: \"zone_1\"\tRelError: 1.78144e-02\tAbsError: 2.12673e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77545e-02\tAbsError: 1.45761e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.98502e-05\tAbsError: 2.11215e-02\n", + " Region: \"zone_3\"\tRelError: 3.11207e-02\tAbsError: 5.69657e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.04402e-03\tAbsError: 2.80640e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.66054e-03\tAbsError: 2.89016e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13562e-02\tAbsError: 1.46554e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.98901e-05\tAbsError: 2.11355e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.00158e-02\tAbsError: 2.47729e+12\n", + " Region: \"zone_1\"\tRelError: 6.29744e-04\tAbsError: 1.66755e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.24968e-04\tAbsError: 8.94858e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", + " Region: \"zone_3\"\tRelError: 5.93860e-02\tAbsError: 2.47729e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.68115e-02\tAbsError: 1.70064e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.91678e-04\tAbsError: 7.76647e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27809e-03\tAbsError: 9.43816e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.63007e-01\tAbsError: 3.52970e+16\n", + " Region: \"zone_1\"\tRelError: 6.71069e-02\tAbsError: 1.93853e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 6.17159e-02\tAbsError: 1.22632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.39099e-03\tAbsError: 1.92627e+00\n", + " Region: \"zone_3\"\tRelError: 9.59006e-02\tAbsError: 3.52970e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68566e-02\tAbsError: 1.57552e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.19087e-02\tAbsError: 1.95418e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.17335e-02\tAbsError: 1.22654e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.40172e-03\tAbsError: 1.93013e+00\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.81665e-03\tAbsError: 2.73535e+14\n", + " Region: \"zone_1\"\tRelError: 5.85407e-04\tAbsError: 1.66466e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.38239e-04\tAbsError: 5.18612e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.71682e-05\tAbsError: 1.66414e-02\n", + " Region: \"zone_3\"\tRelError: 1.23124e-03\tAbsError: 2.73535e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.87007e-04\tAbsError: 1.35327e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.35619e-05\tAbsError: 1.38209e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.53493e-04\tAbsError: 5.21633e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.71777e-05\tAbsError: 1.66444e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.75723e+01\tAbsError: 8.60719e+15\n", + " Region: \"zone_1\"\tRelError: 2.58712e+01\tAbsError: 4.18752e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58712e+01\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.78795e-09\tAbsError: 2.36269e-06\n", + " Region: \"zone_3\"\tRelError: 1.70103e+00\tAbsError: 8.60719e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77451e-01\tAbsError: 4.97125e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.77390e-01\tAbsError: 3.63594e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46185e-01\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.79151e-09\tAbsError: 2.36399e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.31240e-04\tAbsError: 7.97937e+11\n", + " Region: \"zone_1\"\tRelError: 7.54533e-05\tAbsError: 1.27890e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.50894e-05\tAbsError: 1.20855e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.63943e-07\tAbsError: 1.26681e-04\n", + " Region: \"zone_3\"\tRelError: 3.55787e-04\tAbsError: 7.97937e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.38045e-05\tAbsError: 1.92064e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.48742e-05\tAbsError: 6.05872e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76744e-04\tAbsError: 1.21338e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.64089e-07\tAbsError: 1.26735e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.47662e-01\tAbsError: 3.16243e+16\n", + " Region: \"zone_1\"\tRelError: 3.98076e-02\tAbsError: 2.53120e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.26748e-02\tAbsError: 5.98930e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.13283e-03\tAbsError: 2.53060e+00\n", + " Region: \"zone_3\"\tRelError: 1.07855e-01\tAbsError: 3.16243e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.60729e-02\tAbsError: 1.56428e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.59129e-02\tAbsError: 1.59815e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87247e-02\tAbsError: 6.01846e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.14424e-03\tAbsError: 2.53465e+00\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.81145e-03\tAbsError: 1.18428e+14\n", + " Region: \"zone_1\"\tRelError: 1.12103e-03\tAbsError: 1.02830e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11813e-03\tAbsError: 4.60822e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.90087e-06\tAbsError: 1.02370e-03\n", + " Region: \"zone_3\"\tRelError: 1.69042e-03\tAbsError: 1.18428e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.20860e-04\tAbsError: 5.74187e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.20476e-04\tAbsError: 6.10095e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34619e-03\tAbsError: 4.63235e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.90208e-06\tAbsError: 1.02411e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.41217e+00\tAbsError: 1.46955e+15\n", + " Region: \"zone_1\"\tRelError: 1.90056e+00\tAbsError: 7.00012e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90045e+00\tAbsError: 3.18463e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09797e-04\tAbsError: 3.81549e-02\n", + " Region: \"zone_3\"\tRelError: 1.51161e+00\tAbsError: 1.46955e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.54837e-01\tAbsError: 8.24639e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.36560e-01\tAbsError: 6.44909e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20103e-01\tAbsError: 3.18464e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09797e-04\tAbsError: 3.81549e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.53826e-04\tAbsError: 1.09912e+11\n", + " Region: \"zone_1\"\tRelError: 2.29821e-05\tAbsError: 4.27473e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.28592e-05\tAbsError: 6.65170e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", + " Region: \"zone_3\"\tRelError: 1.30844e-04\tAbsError: 1.09912e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.01681e-06\tAbsError: 7.52234e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94349e-06\tAbsError: 3.46881e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14760e-04\tAbsError: 6.98367e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.29504e-02\tAbsError: 2.02898e+16\n", + " Region: \"zone_1\"\tRelError: 2.42374e-02\tAbsError: 1.35837e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38563e-02\tAbsError: 5.99628e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.81112e-04\tAbsError: 1.35237e-01\n", + " Region: \"zone_3\"\tRelError: 6.87131e-02\tAbsError: 2.02898e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.13966e-02\tAbsError: 9.99359e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.26787e-02\tAbsError: 1.02962e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42566e-02\tAbsError: 6.02384e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.81172e-04\tAbsError: 1.35256e-01\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.53154e-04\tAbsError: 8.06031e+12\n", + " Region: \"zone_1\"\tRelError: 5.59360e-05\tAbsError: 5.13628e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.44781e-05\tAbsError: 3.07943e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45792e-06\tAbsError: 5.13320e-04\n", + " Region: \"zone_3\"\tRelError: 9.72179e-05\tAbsError: 8.06031e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01846e-05\tAbsError: 4.02722e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.01144e-05\tAbsError: 4.03309e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.54610e-05\tAbsError: 3.09481e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45792e-06\tAbsError: 5.13320e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.91173e+00\tAbsError: 9.44487e+14\n", + " Region: \"zone_1\"\tRelError: 9.30696e-01\tAbsError: 3.44982e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.30671e-01\tAbsError: 2.57987e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.50635e-05\tAbsError: 8.69950e-03\n", + " Region: \"zone_3\"\tRelError: 9.81030e-01\tAbsError: 9.44487e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.64864e-01\tAbsError: 4.17722e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.10409e-01\tAbsError: 5.26765e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05732e-01\tAbsError: 2.57987e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.50635e-05\tAbsError: 8.69950e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.84860e-05\tAbsError: 3.70987e+10\n", + " Region: \"zone_1\"\tRelError: 3.74711e-06\tAbsError: 5.87951e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.73032e-06\tAbsError: 3.58594e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67880e-08\tAbsError: 5.84365e-06\n", + " Region: \"zone_3\"\tRelError: 2.47389e-05\tAbsError: 3.70987e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96764e-06\tAbsError: 1.24118e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.94133e-06\tAbsError: 2.46869e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88131e-05\tAbsError: 3.59119e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67950e-08\tAbsError: 5.84625e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:13\u001b[0m.\u001b[1;36m144\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.4\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 9.94238e-03\tAbsError: 1.75530e+15\n", + " Region: \"zone_1\"\tRelError: 2.72108e-03\tAbsError: 6.51934e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.53712e-03\tAbsError: 4.37532e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83960e-04\tAbsError: 6.51496e-02\n", + " Region: \"zone_3\"\tRelError: 7.22130e-03\tAbsError: 1.75530e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.68752e-03\tAbsError: 8.73995e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.71657e-03\tAbsError: 8.81305e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.63317e-03\tAbsError: 4.39323e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84040e-04\tAbsError: 6.51817e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.22471e-04\tAbsError: 4.45531e+12\n", + " Region: \"zone_1\"\tRelError: 4.99766e-05\tAbsError: 4.36982e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.98529e-05\tAbsError: 1.36252e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23724e-07\tAbsError: 4.35619e-05\n", + " Region: \"zone_3\"\tRelError: 7.24948e-05\tAbsError: 4.45531e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.55059e-06\tAbsError: 2.20957e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.76525e-06\tAbsError: 2.24574e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.00552e-05\tAbsError: 1.36901e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23756e-07\tAbsError: 4.35755e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.03756e-01\tAbsError: 3.40533e+14\n", + " Region: \"zone_1\"\tRelError: 1.45274e-01\tAbsError: 2.12309e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45243e-01\tAbsError: 1.05213e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.08557e-05\tAbsError: 1.07096e-02\n", + " Region: \"zone_3\"\tRelError: 3.58482e-01\tAbsError: 3.40533e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11349e-01\tAbsError: 1.63183e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11582e-01\tAbsError: 1.77350e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.55205e-02\tAbsError: 1.05214e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.08557e-05\tAbsError: 1.07096e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.87618e+01\tAbsError: 8.25603e+15\n", + " Region: \"zone_1\"\tRelError: 2.71120e+01\tAbsError: 4.09561e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.71120e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.29384e-09\tAbsError: 1.83846e-06\n", + " Region: \"zone_3\"\tRelError: 1.64979e+00\tAbsError: 8.25603e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69658e-01\tAbsError: 4.86497e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69634e-01\tAbsError: 3.39106e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10500e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.29480e-09\tAbsError: 1.83875e-06\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.92011e-03\tAbsError: 8.10197e+14\n", + " Region: \"zone_1\"\tRelError: 1.17391e-03\tAbsError: 5.91365e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15725e-03\tAbsError: 1.80237e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66570e-05\tAbsError: 5.89563e-03\n", + " Region: \"zone_3\"\tRelError: 2.74620e-03\tAbsError: 8.10197e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.58915e-04\tAbsError: 4.03140e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.69237e-04\tAbsError: 4.07057e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20139e-03\tAbsError: 1.80976e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66578e-05\tAbsError: 5.89585e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.18840e-05\tAbsError: 4.54852e+11\n", + " Region: \"zone_1\"\tRelError: 4.72208e-06\tAbsError: 1.92624e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.66726e-06\tAbsError: 1.32255e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.48147e-08\tAbsError: 1.92492e-05\n", + " Region: \"zone_3\"\tRelError: 7.16189e-06\tAbsError: 4.54852e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.67326e-07\tAbsError: 2.25761e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.20704e-07\tAbsError: 2.29091e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.61904e-06\tAbsError: 1.32868e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.48217e-08\tAbsError: 1.92513e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.48050e-01\tAbsError: 5.89756e+13\n", + " Region: \"zone_1\"\tRelError: 7.54406e-02\tAbsError: 5.31011e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.54258e-02\tAbsError: 1.65561e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48169e-05\tAbsError: 5.14455e-03\n", + " Region: \"zone_3\"\tRelError: 7.26095e-02\tAbsError: 5.89756e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.02125e-02\tAbsError: 3.40063e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.08011e-03\tAbsError: 2.49693e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.30209e-03\tAbsError: 1.66795e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48169e-05\tAbsError: 5.14455e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.69855e+00\tAbsError: 3.40458e+14\n", + " Region: \"zone_1\"\tRelError: 2.34470e-01\tAbsError: 7.85796e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34332e-01\tAbsError: 3.07636e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", + " Region: \"zone_3\"\tRelError: 1.46408e+00\tAbsError: 3.40458e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39247e-01\tAbsError: 2.37038e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.31799e-01\tAbsError: 1.03420e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.29010e-02\tAbsError: 3.07639e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.70389e-04\tAbsError: 9.42013e+13\n", + " Region: \"zone_1\"\tRelError: 1.42301e-04\tAbsError: 1.88289e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36972e-04\tAbsError: 1.70810e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.32876e-06\tAbsError: 1.88118e-03\n", + " Region: \"zone_3\"\tRelError: 3.28088e-04\tAbsError: 9.42013e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.75156e-05\tAbsError: 4.70617e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.29791e-05\tAbsError: 4.71396e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42264e-04\tAbsError: 1.71441e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.32907e-06\tAbsError: 1.88126e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.65005e-03\tAbsError: 2.41163e+12\n", + " Region: \"zone_1\"\tRelError: 8.79965e-04\tAbsError: 3.88210e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.78855e-04\tAbsError: 2.64921e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10949e-06\tAbsError: 3.85561e-04\n", + " Region: \"zone_3\"\tRelError: 1.77009e-03\tAbsError: 2.41163e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.84226e-04\tAbsError: 8.06651e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.06220e-04\tAbsError: 1.60498e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27853e-03\tAbsError: 2.69927e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10977e-06\tAbsError: 3.85658e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.10009e+00\tAbsError: 9.49766e+13\n", + " Region: \"zone_1\"\tRelError: 1.69910e-01\tAbsError: 3.26443e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69891e-01\tAbsError: 2.58991e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", + " Region: \"zone_3\"\tRelError: 9.30185e-01\tAbsError: 9.49766e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40985e-01\tAbsError: 5.67002e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.12174e-01\tAbsError: 3.82763e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.70066e-02\tAbsError: 2.58994e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.34845e-04\tAbsError: 2.94286e+13\n", + " Region: \"zone_1\"\tRelError: 4.32006e-05\tAbsError: 2.52107e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.24876e-05\tAbsError: 4.63339e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.12954e-07\tAbsError: 2.51644e-04\n", + " Region: \"zone_3\"\tRelError: 9.16446e-05\tAbsError: 2.94286e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05158e-05\tAbsError: 1.46773e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.62690e-05\tAbsError: 1.47513e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.41466e-05\tAbsError: 4.64656e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.13167e-07\tAbsError: 2.51723e-04\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:17\u001b[0m.\u001b[1;36m277\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.13540e-04\tAbsError: 3.16813e+11\n", + " Region: \"zone_1\"\tRelError: 9.41932e-05\tAbsError: 1.43816e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.37795e-05\tAbsError: 1.91137e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.13656e-07\tAbsError: 1.43625e-04\n", + " Region: \"zone_3\"\tRelError: 3.19347e-04\tAbsError: 3.16813e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.80678e-05\tAbsError: 2.03480e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.78522e-05\tAbsError: 1.13333e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83013e-04\tAbsError: 1.98913e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.13699e-07\tAbsError: 1.43642e-04\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.94716e-05\tAbsError: 4.16395e+12\n", + " Region: \"zone_1\"\tRelError: 6.26797e-06\tAbsError: 6.64104e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.07999e-06\tAbsError: 6.50466e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87972e-07\tAbsError: 6.63453e-05\n", + " Region: \"zone_3\"\tRelError: 1.32037e-05\tAbsError: 4.16395e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.51497e-06\tAbsError: 2.07998e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.18689e-06\tAbsError: 2.08397e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.31380e-06\tAbsError: 6.54431e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87998e-07\tAbsError: 6.63553e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.56252e-01\tAbsError: 3.42527e+13\n", + " Region: \"zone_1\"\tRelError: 6.41646e-02\tAbsError: 1.11813e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.41588e-02\tAbsError: 9.16555e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.79958e-06\tAbsError: 2.01571e-03\n", + " Region: \"zone_3\"\tRelError: 2.92088e-01\tAbsError: 3.42527e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07223e-01\tAbsError: 1.60452e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.07953e-02\tAbsError: 1.82076e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.40630e-02\tAbsError: 9.16559e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.80279e-06\tAbsError: 2.01683e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.41492e-04\tAbsError: 1.35155e+11\n", + " Region: \"zone_1\"\tRelError: 2.52187e-05\tAbsError: 1.37752e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51794e-05\tAbsError: 8.81239e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.93274e-08\tAbsError: 1.36871e-05\n", + " Region: \"zone_3\"\tRelError: 1.16273e-04\tAbsError: 1.35155e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.95011e-06\tAbsError: 6.23423e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.88512e-06\tAbsError: 7.28125e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00399e-04\tAbsError: 9.07384e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.93425e-08\tAbsError: 1.36926e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.59960e-02\tAbsError: 3.73217e+12\n", + " Region: \"zone_1\"\tRelError: 7.31305e-03\tAbsError: 2.21475e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.30674e-03\tAbsError: 2.57182e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", + " Region: \"zone_3\"\tRelError: 5.86829e-02\tAbsError: 3.73217e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.62142e-02\tAbsError: 2.07187e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.09163e-04\tAbsError: 1.66031e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65329e-03\tAbsError: 2.69578e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.51133e-05\tAbsError: 1.21830e+10\n", + " Region: \"zone_1\"\tRelError: 3.62597e-06\tAbsError: 7.39674e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.60471e-06\tAbsError: 7.04171e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.12658e-08\tAbsError: 7.38970e-06\n", + " Region: \"zone_3\"\tRelError: 1.14873e-05\tAbsError: 1.21830e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.26936e-07\tAbsError: 8.38779e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.15498e-07\tAbsError: 3.79516e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02236e-05\tAbsError: 7.31166e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.12697e-08\tAbsError: 7.39118e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:19\u001b[0m.\u001b[1;36m974\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:19\u001b[0m.\u001b[1;36m974\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6227272727272727\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:20\u001b[0m.\u001b[1;36m349\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.14034e-04\tAbsError: 1.03618e+12\n", + " Region: \"zone_1\"\tRelError: 1.43803e-04\tAbsError: 7.79056e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43584e-04\tAbsError: 1.54074e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19396e-07\tAbsError: 7.63649e-05\n", + " Region: \"zone_3\"\tRelError: 6.70231e-04\tAbsError: 1.03618e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.21829e-04\tAbsError: 2.70793e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.05108e-04\tAbsError: 7.65387e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.43074e-04\tAbsError: 1.54210e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19498e-07\tAbsError: 7.64015e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 9.74930e+00\tAbsError: 9.12751e+15\n", + " Region: \"zone_1\"\tRelError: 8.00632e+00\tAbsError: 4.18732e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.00632e+00\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12025e-09\tAbsError: 3.89888e-07\n", + " Region: \"zone_3\"\tRelError: 1.74298e+00\tAbsError: 9.12751e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77319e-01\tAbsError: 4.82174e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.77156e-01\tAbsError: 4.30577e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88507e-01\tAbsError: 4.18729e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12077e-09\tAbsError: 3.90077e-07\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.61312e-05\tAbsError: 5.74046e+10\n", + " Region: \"zone_1\"\tRelError: 1.61849e-05\tAbsError: 6.45313e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59991e-05\tAbsError: 3.79845e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85726e-07\tAbsError: 6.44934e-05\n", + " Region: \"zone_3\"\tRelError: 5.99464e-05\tAbsError: 5.74046e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.77906e-06\tAbsError: 4.68633e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.20461e-06\tAbsError: 1.05413e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.27769e-05\tAbsError: 3.95532e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85828e-07\tAbsError: 6.45281e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:21\u001b[0m.\u001b[1;36m713\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.5\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.76014e+00\tAbsError: 7.64952e+15\n", + " Region: \"zone_1\"\tRelError: 2.30453e-01\tAbsError: 7.86318e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30319e-01\tAbsError: 3.18462e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34653e-04\tAbsError: 4.67856e-02\n", + " Region: \"zone_3\"\tRelError: 1.52969e+00\tAbsError: 7.64952e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.52442e-01\tAbsError: 3.70961e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.23039e-01\tAbsError: 3.93991e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54074e-01\tAbsError: 3.18463e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34653e-04\tAbsError: 4.67856e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.60199e+01\tAbsError: 8.22903e+15\n", + " Region: \"zone_1\"\tRelError: 3.43433e+01\tAbsError: 4.09555e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.43433e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.48443e-09\tAbsError: 1.21289e-06\n", + " Region: \"zone_3\"\tRelError: 1.67662e+00\tAbsError: 8.22903e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.78919e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.43984e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37338e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.48691e-09\tAbsError: 1.21378e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.14370e+00\tAbsError: 5.28119e+15\n", + " Region: \"zone_1\"\tRelError: 1.24540e-01\tAbsError: 3.42249e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24516e-01\tAbsError: 2.58826e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.40097e-05\tAbsError: 8.34232e-03\n", + " Region: \"zone_3\"\tRelError: 1.01916e+00\tAbsError: 5.28119e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.67272e-01\tAbsError: 2.54892e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.17893e-01\tAbsError: 2.73227e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33973e-01\tAbsError: 2.53440e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.40097e-05\tAbsError: 8.34232e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.73485e+00\tAbsError: 1.08973e+15\n", + " Region: \"zone_1\"\tRelError: 2.25350e+00\tAbsError: 6.85700e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25339e+00\tAbsError: 3.07635e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", + " Region: \"zone_3\"\tRelError: 1.48136e+00\tAbsError: 1.08973e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41054e-01\tAbsError: 6.25022e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.24005e-01\tAbsError: 4.64711e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16189e-01\tAbsError: 3.07637e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.95220e-01\tAbsError: 1.79561e+15\n", + " Region: \"zone_1\"\tRelError: 1.18421e-01\tAbsError: 4.83315e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18312e-01\tAbsError: 1.05217e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08967e-04\tAbsError: 3.78098e-02\n", + " Region: \"zone_3\"\tRelError: 3.76798e-01\tAbsError: 1.79561e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04475e-01\tAbsError: 9.41675e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29051e-01\tAbsError: 8.53937e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.31629e-02\tAbsError: 1.05218e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08989e-04\tAbsError: 3.78175e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.38677e+00\tAbsError: 6.38966e+14\n", + " Region: \"zone_1\"\tRelError: 4.51470e-01\tAbsError: 3.37904e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.51448e-01\tAbsError: 2.58448e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", + " Region: \"zone_3\"\tRelError: 9.35299e-01\tAbsError: 6.38966e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42607e-01\tAbsError: 3.02038e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.95795e-01\tAbsError: 3.36928e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.68743e-02\tAbsError: 2.57679e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.33633e-02\tAbsError: 2.89598e+14\n", + " Region: \"zone_1\"\tRelError: 8.40256e-03\tAbsError: 3.97616e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.28859e-03\tAbsError: 1.99593e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13973e-04\tAbsError: 3.95620e-02\n", + " Region: \"zone_3\"\tRelError: 8.49608e-02\tAbsError: 2.89598e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.18487e-02\tAbsError: 1.59566e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.99528e-03\tAbsError: 1.30032e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30026e-02\tAbsError: 2.10101e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14128e-04\tAbsError: 3.96148e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.41554e-01\tAbsError: 2.20715e+14\n", + " Region: \"zone_1\"\tRelError: 2.89595e-02\tAbsError: 1.67352e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.89377e-02\tAbsError: 9.16565e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18085e-05\tAbsError: 7.56954e-03\n", + " Region: \"zone_3\"\tRelError: 3.12594e-01\tAbsError: 2.20715e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94155e-01\tAbsError: 1.01533e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.87246e-02\tAbsError: 1.19182e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96932e-02\tAbsError: 9.16570e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18152e-05\tAbsError: 7.57200e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.14441e-02\tAbsError: 2.12438e+13\n", + " Region: \"zone_1\"\tRelError: 4.74421e-03\tAbsError: 7.64054e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.74205e-03\tAbsError: 1.52893e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.15714e-06\tAbsError: 7.48765e-04\n", + " Region: \"zone_3\"\tRelError: 1.66999e-02\tAbsError: 2.12438e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38752e-03\tAbsError: 9.42368e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.26682e-03\tAbsError: 1.18201e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40434e-02\tAbsError: 1.60606e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16115e-06\tAbsError: 7.50158e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.19808e-02\tAbsError: 3.06344e+13\n", + " Region: \"zone_1\"\tRelError: 2.04251e-02\tAbsError: 4.10278e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04136e-02\tAbsError: 1.00349e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", + " Region: \"zone_3\"\tRelError: 6.15557e-02\tAbsError: 3.06344e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38926e-02\tAbsError: 1.71938e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.73234e-03\tAbsError: 1.34406e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.91920e-03\tAbsError: 1.01109e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.16301e-04\tAbsError: 4.20516e+11\n", + " Region: \"zone_1\"\tRelError: 1.45428e-04\tAbsError: 1.24820e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41835e-04\tAbsError: 4.38423e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.59201e-06\tAbsError: 1.24776e-03\n", + " Region: \"zone_3\"\tRelError: 4.70873e-04\tAbsError: 4.20516e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.02345e-05\tAbsError: 1.56877e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.16841e-05\tAbsError: 2.63639e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.25363e-04\tAbsError: 4.49118e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.59205e-06\tAbsError: 1.24780e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.53920e-03\tAbsError: 1.84314e+12\n", + " Region: \"zone_1\"\tRelError: 2.29752e-04\tAbsError: 2.41443e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29064e-04\tAbsError: 2.20702e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", + " Region: \"zone_3\"\tRelError: 1.30944e-03\tAbsError: 1.84314e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11485e-04\tAbsError: 5.81096e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.63190e-04\tAbsError: 1.26205e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.34079e-04\tAbsError: 2.25011e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.65259e-03\tAbsError: 1.21744e+12\n", + " Region: \"zone_1\"\tRelError: 3.89816e-04\tAbsError: 8.01243e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.89587e-04\tAbsError: 6.08661e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29074e-07\tAbsError: 7.95156e-05\n", + " Region: \"zone_3\"\tRelError: 1.26277e-03\tAbsError: 1.21744e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.77440e-05\tAbsError: 6.11805e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.74827e-05\tAbsError: 6.05636e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14732e-03\tAbsError: 6.26783e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29108e-07\tAbsError: 7.95286e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.51045e-04\tAbsError: 2.02519e+11\n", + " Region: \"zone_1\"\tRelError: 4.54891e-05\tAbsError: 1.12868e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.51644e-05\tAbsError: 1.25671e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.24705e-07\tAbsError: 1.12743e-04\n", + " Region: \"zone_3\"\tRelError: 2.05556e-04\tAbsError: 2.02519e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12163e-05\tAbsError: 1.36505e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10724e-05\tAbsError: 6.60139e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82943e-04\tAbsError: 1.30848e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.24777e-07\tAbsError: 1.12769e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.61183e-04\tAbsError: 7.68860e+10\n", + " Region: \"zone_1\"\tRelError: 3.88511e-05\tAbsError: 7.71614e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.86291e-05\tAbsError: 4.56521e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.21984e-07\tAbsError: 7.71157e-05\n", + " Region: \"zone_3\"\tRelError: 1.22332e-04\tAbsError: 7.68860e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.07272e-06\tAbsError: 3.66037e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.10133e-06\tAbsError: 4.02822e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13936e-04\tAbsError: 4.66713e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.22064e-07\tAbsError: 7.71436e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.09882e-04\tAbsError: 1.05387e+11\n", + " Region: \"zone_1\"\tRelError: 1.91896e-05\tAbsError: 8.11152e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91665e-05\tAbsError: 7.26801e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.30974e-08\tAbsError: 8.03884e-06\n", + " Region: \"zone_3\"\tRelError: 9.06925e-05\tAbsError: 1.05387e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41210e-06\tAbsError: 4.74044e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.36012e-06\tAbsError: 5.79823e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.78972e-05\tAbsError: 7.44246e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.31071e-08\tAbsError: 8.04242e-06\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.18292e-04\tAbsError: 7.64415e+10\n", + " Region: \"zone_1\"\tRelError: 2.82416e-05\tAbsError: 9.49574e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.82143e-05\tAbsError: 3.50165e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.72335e-08\tAbsError: 9.46073e-06\n", + " Region: \"zone_3\"\tRelError: 9.00505e-05\tAbsError: 7.64415e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.51691e-06\tAbsError: 4.30037e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.49401e-06\tAbsError: 3.34378e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.30124e-05\tAbsError: 3.56592e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.72411e-08\tAbsError: 9.46340e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 7.21635e-06\tAbsError: 6.66072e+09\n", + " Region: \"zone_1\"\tRelError: 1.30608e-06\tAbsError: 5.92265e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28905e-06\tAbsError: 4.03393e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70320e-08\tAbsError: 5.91862e-06\n", + " Region: \"zone_3\"\tRelError: 5.91027e-06\tAbsError: 6.66072e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61854e-07\tAbsError: 4.98334e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.27195e-07\tAbsError: 1.67738e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.20418e-06\tAbsError: 4.19235e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70346e-08\tAbsError: 5.91965e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:31\u001b[0m.\u001b[1;36m388\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.6\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.79359e-05\tAbsError: 9.12029e+09\n", + " Region: \"zone_1\"\tRelError: 4.32768e-06\tAbsError: 5.24059e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.31261e-06\tAbsError: 4.64642e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50721e-08\tAbsError: 5.23594e-06\n", + " Region: \"zone_3\"\tRelError: 1.36082e-05\tAbsError: 9.12029e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.47236e-07\tAbsError: 5.20850e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.47461e-07\tAbsError: 3.91180e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26984e-05\tAbsError: 4.72645e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50744e-08\tAbsError: 5.23674e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:31\u001b[0m.\u001b[1;36m732\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:31\u001b[0m.\u001b[1;36m732\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7272727272727272\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.57743e+01\tAbsError: 8.48667e+15\n", + " Region: \"zone_1\"\tRelError: 1.40602e+01\tAbsError: 4.09544e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40602e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57556e-10\tAbsError: 1.24451e-07\n", + " Region: \"zone_3\"\tRelError: 1.71408e+00\tAbsError: 8.48667e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69582e-01\tAbsError: 4.51146e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69441e-01\tAbsError: 3.97521e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75053e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57765e-10\tAbsError: 1.24526e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.49189e+01\tAbsError: 4.08174e+16\n", + " Region: \"zone_1\"\tRelError: 2.31126e+01\tAbsError: 4.18737e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31126e+01\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58304e-09\tAbsError: 8.97333e-07\n", + " Region: \"zone_3\"\tRelError: 1.80635e+00\tAbsError: 4.08174e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.76313e-01\tAbsError: 2.02615e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.75653e-01\tAbsError: 2.05560e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54388e-01\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58332e-09\tAbsError: 8.97431e-07\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.55570e+00\tAbsError: 5.16331e+15\n", + " Region: \"zone_1\"\tRelError: 3.06111e+00\tAbsError: 6.97364e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.06100e+00\tAbsError: 3.07634e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12162e-04\tAbsError: 3.89730e-02\n", + " Region: \"zone_3\"\tRelError: 1.49459e+00\tAbsError: 5.16331e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38938e-01\tAbsError: 2.46191e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.11412e-01\tAbsError: 2.70140e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44124e-01\tAbsError: 3.07634e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12162e-04\tAbsError: 3.89730e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.86954e+00\tAbsError: 4.19041e+16\n", + " Region: \"zone_1\"\tRelError: 2.86521e-01\tAbsError: 1.91688e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.86060e-01\tAbsError: 3.18461e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.60347e-04\tAbsError: 1.59842e-01\n", + " Region: \"zone_3\"\tRelError: 1.58302e+00\tAbsError: 4.19041e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.48427e-01\tAbsError: 2.09916e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.11904e-01\tAbsError: 2.09125e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.22232e-01\tAbsError: 3.18461e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.60347e-04\tAbsError: 1.59842e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.13964e+00\tAbsError: 3.47644e+15\n", + " Region: \"zone_1\"\tRelError: 1.85284e-01\tAbsError: 3.50197e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85258e-01\tAbsError: 2.58979e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.62526e-05\tAbsError: 9.12177e-03\n", + " Region: \"zone_3\"\tRelError: 9.54354e-01\tAbsError: 3.47644e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46208e-01\tAbsError: 1.62778e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.89583e-01\tAbsError: 1.84866e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18536e-01\tAbsError: 2.53855e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.62526e-05\tAbsError: 9.12177e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.21420e+00\tAbsError: 2.59228e+16\n", + " Region: \"zone_1\"\tRelError: 1.78553e-01\tAbsError: 1.14359e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78297e-01\tAbsError: 2.55828e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.55742e-04\tAbsError: 8.87761e-02\n", + " Region: \"zone_3\"\tRelError: 1.03565e+00\tAbsError: 2.59228e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.56028e-01\tAbsError: 1.29282e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.99653e-01\tAbsError: 1.29946e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79713e-01\tAbsError: 2.47400e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.55742e-04\tAbsError: 8.87761e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 8.24095e-01\tAbsError: 1.04537e+15\n", + " Region: \"zone_1\"\tRelError: 4.93544e-01\tAbsError: 2.65000e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.93494e-01\tAbsError: 9.16559e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.98913e-05\tAbsError: 1.73344e-02\n", + " Region: \"zone_3\"\tRelError: 3.30551e-01\tAbsError: 1.04537e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84640e-01\tAbsError: 5.55503e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10521e-01\tAbsError: 4.89866e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53403e-02\tAbsError: 9.16565e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.98913e-05\tAbsError: 1.73344e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.80503e-01\tAbsError: 7.70857e+15\n", + " Region: \"zone_1\"\tRelError: 3.75236e-01\tAbsError: 3.59699e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.75163e-01\tAbsError: 1.05209e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.33305e-05\tAbsError: 2.54491e-02\n", + " Region: \"zone_3\"\tRelError: 4.05267e-01\tAbsError: 7.70857e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.91232e-01\tAbsError: 4.05990e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09957e-01\tAbsError: 3.64868e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04004e-01\tAbsError: 1.05209e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.33305e-05\tAbsError: 2.54491e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.23262e-02\tAbsError: 1.95138e+14\n", + " Region: \"zone_1\"\tRelError: 2.57438e-02\tAbsError: 3.23382e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.56511e-02\tAbsError: 1.67807e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.26701e-05\tAbsError: 3.21704e-02\n", + " Region: \"zone_3\"\tRelError: 6.65824e-02\tAbsError: 1.95138e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.49682e-02\tAbsError: 6.65802e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.06072e-03\tAbsError: 1.28558e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.46071e-03\tAbsError: 1.74923e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.26947e-05\tAbsError: 3.21777e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.49304e-01\tAbsError: 1.80910e+15\n", + " Region: \"zone_1\"\tRelError: 4.17844e-02\tAbsError: 2.45403e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.10777e-02\tAbsError: 3.29923e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.06706e-04\tAbsError: 2.45073e-01\n", + " Region: \"zone_3\"\tRelError: 1.07520e-01\tAbsError: 1.80910e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.01149e-02\tAbsError: 8.96543e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.60138e-02\tAbsError: 9.12557e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.06845e-02\tAbsError: 3.29923e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.06706e-04\tAbsError: 2.45073e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.13427e-02\tAbsError: 1.62210e+13\n", + " Region: \"zone_1\"\tRelError: 1.73710e-02\tAbsError: 1.21679e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73676e-02\tAbsError: 1.36050e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.46587e-06\tAbsError: 1.20318e-03\n", + " Region: \"zone_3\"\tRelError: 1.39717e-02\tAbsError: 1.62210e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19687e-03\tAbsError: 6.47584e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09668e-03\tAbsError: 9.74512e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16747e-02\tAbsError: 1.39577e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.46587e-06\tAbsError: 1.20318e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.37718e-01\tAbsError: 3.70307e+14\n", + " Region: \"zone_1\"\tRelError: 9.30668e-02\tAbsError: 1.58018e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.30214e-02\tAbsError: 6.99005e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.53632e-05\tAbsError: 1.57319e-02\n", + " Region: \"zone_3\"\tRelError: 1.44651e-01\tAbsError: 3.70307e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.23209e-03\tAbsError: 1.87637e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.12058e-03\tAbsError: 1.82670e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34253e-01\tAbsError: 7.30395e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.53632e-05\tAbsError: 1.57319e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.53065e-03\tAbsError: 7.24481e+11\n", + " Region: \"zone_1\"\tRelError: 1.49459e-03\tAbsError: 1.07639e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49149e-03\tAbsError: 6.55190e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.09641e-06\tAbsError: 1.07573e-03\n", + " Region: \"zone_3\"\tRelError: 1.03606e-03\tAbsError: 7.24481e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73129e-05\tAbsError: 2.45596e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.81580e-05\tAbsError: 4.78885e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.37490e-04\tAbsError: 6.76708e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.09642e-06\tAbsError: 1.07576e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.06829e-02\tAbsError: 3.05635e+13\n", + " Region: \"zone_1\"\tRelError: 1.22718e-02\tAbsError: 7.18985e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22511e-02\tAbsError: 5.44565e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.07168e-05\tAbsError: 7.18441e-03\n", + " Region: \"zone_3\"\tRelError: 1.84111e-02\tAbsError: 3.05635e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.29967e-04\tAbsError: 1.55164e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.34908e-04\tAbsError: 1.50471e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75255e-02\tAbsError: 5.93302e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.07242e-05\tAbsError: 7.18712e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.69038e-03\tAbsError: 1.04370e+12\n", + " Region: \"zone_1\"\tRelError: 1.58975e-03\tAbsError: 1.04879e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58945e-03\tAbsError: 5.38488e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.00336e-07\tAbsError: 1.04341e-04\n", + " Region: \"zone_3\"\tRelError: 1.10063e-03\tAbsError: 1.04370e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.23814e-05\tAbsError: 5.26651e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.22994e-05\tAbsError: 5.17045e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.95649e-04\tAbsError: 5.63224e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.00360e-07\tAbsError: 1.04351e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.86421e-02\tAbsError: 1.70748e+13\n", + " Region: \"zone_1\"\tRelError: 7.47202e-03\tAbsError: 9.61059e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.46926e-03\tAbsError: 2.58943e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.76244e-06\tAbsError: 9.58470e-04\n", + " Region: \"zone_3\"\tRelError: 1.11701e-02\tAbsError: 1.70748e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.42677e-04\tAbsError: 8.65778e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.38187e-04\tAbsError: 8.41703e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06865e-02\tAbsError: 2.88374e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.76358e-06\tAbsError: 9.58882e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.67954e-04\tAbsError: 1.01821e+11\n", + " Region: \"zone_1\"\tRelError: 2.21136e-04\tAbsError: 6.97280e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20936e-04\tAbsError: 5.57180e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00534e-07\tAbsError: 6.96723e-05\n", + " Region: \"zone_3\"\tRelError: 1.46817e-04\tAbsError: 1.01821e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.39462e-06\tAbsError: 5.27392e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.41727e-06\tAbsError: 4.90816e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35805e-04\tAbsError: 5.79583e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00607e-07\tAbsError: 6.96980e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.17252e-03\tAbsError: 2.39421e+12\n", + " Region: \"zone_1\"\tRelError: 1.27830e-03\tAbsError: 4.41120e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27703e-03\tAbsError: 3.52817e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26752e-06\tAbsError: 4.40767e-04\n", + " Region: \"zone_3\"\tRelError: 1.89422e-03\tAbsError: 2.39421e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.41609e-05\tAbsError: 1.21178e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.35709e-05\tAbsError: 1.18243e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82522e-03\tAbsError: 3.85960e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26800e-06\tAbsError: 4.40936e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.02562e-04\tAbsError: 6.84436e+10\n", + " Region: \"zone_1\"\tRelError: 1.21040e-04\tAbsError: 1.06970e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21010e-04\tAbsError: 3.27450e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.06942e-08\tAbsError: 1.06642e-05\n", + " Region: \"zone_3\"\tRelError: 8.15214e-05\tAbsError: 6.84436e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.33271e-06\tAbsError: 3.86456e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.32148e-06\tAbsError: 2.97979e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.48365e-05\tAbsError: 3.43670e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.07019e-08\tAbsError: 1.06669e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.32904e-03\tAbsError: 1.04115e+12\n", + " Region: \"zone_1\"\tRelError: 5.35241e-04\tAbsError: 8.15222e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.35007e-04\tAbsError: 1.45533e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.34015e-07\tAbsError: 8.13766e-05\n", + " Region: \"zone_3\"\tRelError: 7.93795e-04\tAbsError: 1.04115e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.48691e-05\tAbsError: 5.27432e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.45106e-05\tAbsError: 5.13716e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.64181e-04\tAbsError: 1.65639e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.34109e-07\tAbsError: 8.14107e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.67619e-05\tAbsError: 1.02422e+10\n", + " Region: \"zone_1\"\tRelError: 2.21445e-05\tAbsError: 4.91320e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21303e-05\tAbsError: 5.33976e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41260e-08\tAbsError: 4.90786e-06\n", + " Region: \"zone_3\"\tRelError: 1.46175e-05\tAbsError: 1.02422e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.20200e-07\tAbsError: 5.93794e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.20801e-07\tAbsError: 4.30423e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35623e-05\tAbsError: 5.58038e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41284e-08\tAbsError: 4.90869e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:42\u001b[0m.\u001b[1;36m989\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.7\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.69383e-04\tAbsError: 1.90424e+11\n", + " Region: \"zone_1\"\tRelError: 1.08741e-04\tAbsError: 3.06906e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08652e-04\tAbsError: 2.81501e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.81753e-08\tAbsError: 3.06624e-05\n", + " Region: \"zone_3\"\tRelError: 1.60642e-04\tAbsError: 1.90424e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.72095e-06\tAbsError: 9.63082e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.66101e-06\tAbsError: 9.41161e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55172e-04\tAbsError: 3.17766e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.82093e-08\tAbsError: 3.06751e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 9.38488e-05\tAbsError: 6.84833e+10\n", + " Region: \"zone_1\"\tRelError: 3.78678e-05\tAbsError: 6.55657e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.78490e-05\tAbsError: 1.02277e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88252e-08\tAbsError: 6.54634e-06\n", + " Region: \"zone_3\"\tRelError: 5.59810e-05\tAbsError: 6.84833e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.79292e-07\tAbsError: 3.46701e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.53325e-07\tAbsError: 3.38132e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.40295e-05\tAbsError: 1.16112e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88326e-08\tAbsError: 6.54910e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.11982e+00\tAbsError: 2.71568e+16\n", + " Region: \"zone_1\"\tRelError: 3.35178e+00\tAbsError: 4.09552e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35178e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75560e-09\tAbsError: 9.57391e-07\n", + " Region: \"zone_3\"\tRelError: 1.76804e+00\tAbsError: 2.71568e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68907e-01\tAbsError: 1.36090e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.68433e-01\tAbsError: 1.35478e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30705e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75592e-09\tAbsError: 9.57503e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:44\u001b[0m.\u001b[1;36m274\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:44\u001b[0m.\u001b[1;36m274\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.8318181818181818\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.73275e+00\tAbsError: 2.68838e+16\n", + " Region: \"zone_1\"\tRelError: 1.92080e-01\tAbsError: 1.46306e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91747e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32681e-04\tAbsError: 1.15542e-01\n", + " Region: \"zone_3\"\tRelError: 1.54067e+00\tAbsError: 2.68838e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.36324e-01\tAbsError: 1.35736e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.01335e-01\tAbsError: 1.33102e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02681e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32681e-04\tAbsError: 1.15542e-01\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.26409e+01\tAbsError: 2.06464e+17\n", + " Region: \"zone_1\"\tRelError: 5.29122e+01\tAbsError: 4.18750e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.29122e+01\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.18828e-09\tAbsError: 2.15194e-06\n", + " Region: \"zone_3\"\tRelError: 9.72871e+00\tAbsError: 2.06464e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68786e-01\tAbsError: 1.04673e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.64901e-01\tAbsError: 1.01791e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 8.19502e+00\tAbsError: 4.18729e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.19085e-09\tAbsError: 2.15289e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.12307e+00\tAbsError: 1.60442e+16\n", + " Region: \"zone_1\"\tRelError: 1.49907e-01\tAbsError: 9.31426e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49713e-01\tAbsError: 2.58569e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93773e-04\tAbsError: 6.72856e-02\n", + " Region: \"zone_3\"\tRelError: 9.73164e-01\tAbsError: 1.60442e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39500e-01\tAbsError: 8.04160e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.83757e-01\tAbsError: 8.00261e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49713e-01\tAbsError: 2.43087e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93773e-04\tAbsError: 6.72856e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.35511e+01\tAbsError: 2.00721e+17\n", + " Region: \"zone_1\"\tRelError: 9.05776e+00\tAbsError: 3.17953e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.05694e+00\tAbsError: 3.18460e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.25235e-04\tAbsError: 2.86107e-01\n", + " Region: \"zone_3\"\tRelError: 4.49330e+00\tAbsError: 2.00721e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.18665e-01\tAbsError: 1.00830e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.48184e-01\tAbsError: 9.98909e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.22562e+00\tAbsError: 3.18461e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.25235e-04\tAbsError: 2.86107e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.25010e-01\tAbsError: 4.83168e+15\n", + " Region: \"zone_1\"\tRelError: 9.35029e-02\tAbsError: 6.02167e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.33558e-02\tAbsError: 9.16529e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47066e-04\tAbsError: 5.10514e-02\n", + " Region: \"zone_3\"\tRelError: 3.31507e-01\tAbsError: 4.83168e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74852e-01\tAbsError: 2.44485e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.96161e-02\tAbsError: 2.38683e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.68922e-02\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47066e-04\tAbsError: 5.10514e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.64600e+01\tAbsError: 1.09755e+17\n", + " Region: \"zone_1\"\tRelError: 8.60535e+00\tAbsError: 7.85504e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.60519e+00\tAbsError: 2.58355e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51895e-04\tAbsError: 5.27150e-02\n", + " Region: \"zone_3\"\tRelError: 7.85464e+00\tAbsError: 1.09755e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.72183e-01\tAbsError: 5.54608e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.84598e-01\tAbsError: 5.42941e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.19770e+00\tAbsError: 2.58833e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51931e-04\tAbsError: 5.27291e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.30868e-01\tAbsError: 1.08442e+15\n", + " Region: \"zone_1\"\tRelError: 2.27753e-02\tAbsError: 2.15920e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21537e-02\tAbsError: 2.84606e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.21607e-04\tAbsError: 2.15635e-01\n", + " Region: \"zone_3\"\tRelError: 1.08092e-01\tAbsError: 1.08442e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.76472e-02\tAbsError: 4.26455e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.43864e-02\tAbsError: 6.57964e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54371e-02\tAbsError: 2.84606e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.21607e-04\tAbsError: 2.15635e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.39576e+01\tAbsError: 2.65299e+16\n", + " Region: \"zone_1\"\tRelError: 4.26722e+00\tAbsError: 2.88514e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.26642e+00\tAbsError: 1.05207e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.02275e-04\tAbsError: 2.77993e-01\n", + " Region: \"zone_3\"\tRelError: 9.69036e+00\tAbsError: 2.65299e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.08928e-01\tAbsError: 1.33171e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.65693e-02\tAbsError: 1.32128e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 9.53406e+00\tAbsError: 1.05209e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.02275e-04\tAbsError: 2.77993e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.55617e-01\tAbsError: 2.35794e+14\n", + " Region: \"zone_1\"\tRelError: 4.99367e-02\tAbsError: 1.38607e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.98970e-02\tAbsError: 6.98741e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.97528e-05\tAbsError: 1.37908e-02\n", + " Region: \"zone_3\"\tRelError: 1.05680e-01\tAbsError: 2.35794e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.27300e-03\tAbsError: 1.18548e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.21148e-03\tAbsError: 1.17246e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.51557e-02\tAbsError: 7.06637e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.97528e-05\tAbsError: 1.37908e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.42859e+00\tAbsError: 2.49911e+15\n", + " Region: \"zone_1\"\tRelError: 5.91891e-01\tAbsError: 3.18861e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.91799e-01\tAbsError: 5.49238e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.17909e-05\tAbsError: 3.18312e-02\n", + " Region: \"zone_3\"\tRelError: 8.36703e-01\tAbsError: 2.49911e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54401e-02\tAbsError: 1.28918e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.49463e-03\tAbsError: 1.20992e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.18676e-01\tAbsError: 5.54292e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.19256e-05\tAbsError: 3.18774e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.12114e-02\tAbsError: 1.98754e+13\n", + " Region: \"zone_1\"\tRelError: 7.04172e-03\tAbsError: 6.58751e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.02275e-03\tAbsError: 5.51750e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89733e-05\tAbsError: 6.58199e-03\n", + " Region: \"zone_3\"\tRelError: 1.41697e-02\tAbsError: 1.98754e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43525e-04\tAbsError: 1.00008e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.47254e-04\tAbsError: 9.87467e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32599e-02\tAbsError: 5.78756e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89775e-05\tAbsError: 6.58354e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.80948e-02\tAbsError: 9.31122e+13\n", + " Region: \"zone_1\"\tRelError: 2.56313e-02\tAbsError: 4.95623e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.56170e-02\tAbsError: 7.64802e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42800e-05\tAbsError: 4.94858e-03\n", + " Region: \"zone_3\"\tRelError: 2.46352e-03\tAbsError: 9.31122e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46073e-04\tAbsError: 4.55140e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.72001e-04\tAbsError: 4.75982e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93116e-03\tAbsError: 7.70864e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42820e-05\tAbsError: 4.94922e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.24258e-02\tAbsError: 1.10918e+13\n", + " Region: \"zone_1\"\tRelError: 4.12899e-03\tAbsError: 9.16825e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.12635e-03\tAbsError: 2.69238e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.63359e-06\tAbsError: 9.14133e-04\n", + " Region: \"zone_3\"\tRelError: 8.29681e-03\tAbsError: 1.10918e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.48339e-04\tAbsError: 5.58229e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.46113e-04\tAbsError: 5.50951e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.79972e-03\tAbsError: 2.89698e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.63458e-06\tAbsError: 9.14508e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.25345e-02\tAbsError: 3.21244e+13\n", + " Region: \"zone_1\"\tRelError: 3.04273e-02\tAbsError: 6.71597e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.04254e-02\tAbsError: 1.30196e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.92861e-06\tAbsError: 6.70295e-04\n", + " Region: \"zone_3\"\tRelError: 4.21072e-02\tAbsError: 3.21244e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.48791e-05\tAbsError: 1.57862e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.89246e-05\tAbsError: 1.63382e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.19414e-02\tAbsError: 1.31464e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.92951e-06\tAbsError: 6.70605e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.18008e-03\tAbsError: 1.59787e+12\n", + " Region: \"zone_1\"\tRelError: 7.30404e-04\tAbsError: 4.14536e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.29211e-04\tAbsError: 3.64518e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19313e-06\tAbsError: 4.14171e-04\n", + " Region: \"zone_3\"\tRelError: 1.44968e-03\tAbsError: 1.59787e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.59026e-05\tAbsError: 8.02763e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.55751e-05\tAbsError: 7.95108e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37700e-03\tAbsError: 3.97752e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19336e-06\tAbsError: 4.14251e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.17447e-03\tAbsError: 2.58043e+12\n", + " Region: \"zone_1\"\tRelError: 7.71621e-04\tAbsError: 2.66830e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.70854e-04\tAbsError: 2.10775e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.67206e-07\tAbsError: 2.66619e-04\n", + " Region: \"zone_3\"\tRelError: 4.02848e-04\tAbsError: 2.58043e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.32310e-06\tAbsError: 1.26387e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.42751e-06\tAbsError: 1.31656e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85330e-04\tAbsError: 2.12566e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.67527e-07\tAbsError: 2.66734e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 9.04358e-04\tAbsError: 6.91618e+11\n", + " Region: \"zone_1\"\tRelError: 3.02587e-04\tAbsError: 7.78938e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.02363e-04\tAbsError: 1.55785e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23501e-07\tAbsError: 7.77380e-05\n", + " Region: \"zone_3\"\tRelError: 6.01772e-04\tAbsError: 6.91618e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.55559e-05\tAbsError: 3.47877e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.53466e-05\tAbsError: 3.43741e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.70646e-04\tAbsError: 1.69595e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23586e-07\tAbsError: 7.77681e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.12184e-03\tAbsError: 1.62887e+12\n", + " Region: \"zone_1\"\tRelError: 1.73087e-03\tAbsError: 1.53873e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73082e-03\tAbsError: 7.35260e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.40606e-08\tAbsError: 1.53138e-05\n", + " Region: \"zone_3\"\tRelError: 2.39098e-03\tAbsError: 1.62887e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33503e-06\tAbsError: 8.01201e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.97355e-06\tAbsError: 8.27667e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38262e-03\tAbsError: 7.42067e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.40835e-08\tAbsError: 1.53217e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.87260e-04\tAbsError: 1.29403e+11\n", + " Region: \"zone_1\"\tRelError: 6.28801e-05\tAbsError: 2.91909e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.27963e-05\tAbsError: 3.06059e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.38368e-08\tAbsError: 2.91603e-05\n", + " Region: \"zone_3\"\tRelError: 1.24379e-04\tAbsError: 1.29403e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91169e-06\tAbsError: 6.49895e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.87741e-06\tAbsError: 6.44135e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18506e-04\tAbsError: 3.32307e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.38700e-08\tAbsError: 2.91722e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.79168e-04\tAbsError: 3.20906e+10\n", + " Region: \"zone_1\"\tRelError: 7.55189e-05\tAbsError: 1.50080e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.54758e-05\tAbsError: 4.46211e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31734e-08\tAbsError: 1.50036e-05\n", + " Region: \"zone_3\"\tRelError: 1.03649e-04\tAbsError: 3.20906e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07218e-07\tAbsError: 1.57169e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.64373e-07\tAbsError: 1.63737e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03134e-04\tAbsError: 4.49804e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31912e-08\tAbsError: 1.50100e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 6.51617e-05\tAbsError: 4.65398e+10\n", + " Region: \"zone_1\"\tRelError: 2.18609e-05\tAbsError: 6.36014e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18427e-05\tAbsError: 1.11819e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82534e-08\tAbsError: 6.34896e-06\n", + " Region: \"zone_3\"\tRelError: 4.33008e-05\tAbsError: 4.65398e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04809e-06\tAbsError: 2.33986e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03254e-06\tAbsError: 2.31412e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.12019e-05\tAbsError: 1.20844e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82605e-08\tAbsError: 6.35150e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:55\u001b[0m.\u001b[1;36m272\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.7999999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.38551e-04\tAbsError: 8.98512e+10\n", + " Region: \"zone_1\"\tRelError: 1.00201e-04\tAbsError: 8.19631e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00199e-04\tAbsError: 4.20573e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.34630e-09\tAbsError: 8.15425e-07\n", + " Region: \"zone_3\"\tRelError: 1.38350e-04\tAbsError: 8.98512e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38157e-07\tAbsError: 4.42059e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.17525e-07\tAbsError: 4.56453e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37892e-04\tAbsError: 4.24388e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.34751e-09\tAbsError: 8.15869e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.97502e+01\tAbsError: 1.32808e+17\n", + " Region: \"zone_1\"\tRelError: 2.76074e+01\tAbsError: 4.09563e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76074e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.00798e-09\tAbsError: 2.08971e-06\n", + " Region: \"zone_3\"\tRelError: 2.14284e+00\tAbsError: 1.32808e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.64512e-01\tAbsError: 6.68287e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.62033e-01\tAbsError: 6.59795e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.16298e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.01029e-09\tAbsError: 2.09057e-06\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.07212e-05\tAbsError: 3.92078e+09\n", + " Region: \"zone_1\"\tRelError: 8.71999e-06\tAbsError: 8.80168e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 8.71745e-06\tAbsError: 3.03329e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.53184e-09\tAbsError: 8.79864e-07\n", + " Region: \"zone_3\"\tRelError: 1.20013e-05\tAbsError: 3.92078e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.24810e-09\tAbsError: 1.93525e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.55241e-08\tAbsError: 1.98553e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19739e-05\tAbsError: 3.05503e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.53289e-09\tAbsError: 8.80250e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:56\u001b[0m.\u001b[1;36m825\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:56\u001b[0m.\u001b[1;36m825\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.9363636363636363\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 8.61535e+00\tAbsError: 1.17905e+17\n", + " Region: \"zone_1\"\tRelError: 7.44285e-01\tAbsError: 3.38569e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.43397e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.87545e-04\tAbsError: 3.07806e-01\n", + " Region: \"zone_3\"\tRelError: 7.87107e+00\tAbsError: 1.17905e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17750e-01\tAbsError: 5.81639e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.67341e-01\tAbsError: 5.97408e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.58509e+00\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.87924e-04\tAbsError: 3.07944e-01\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.48867e+01\tAbsError: 8.69121e+17\n", + " Region: \"zone_1\"\tRelError: 1.65971e+01\tAbsError: 4.18727e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65971e+01\tAbsError: 4.18726e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.60155e-10\tAbsError: 9.04112e-08\n", + " Region: \"zone_3\"\tRelError: 1.82897e+01\tAbsError: 8.69121e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.24787e-01\tAbsError: 4.24939e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.05667e-01\tAbsError: 4.44182e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68592e+01\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.60276e-10\tAbsError: 9.04544e-08\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 6.05251e+00\tAbsError: 7.12298e+16\n", + " Region: \"zone_1\"\tRelError: 9.54106e-01\tAbsError: 5.37894e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.54025e-01\tAbsError: 2.58886e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.04593e-05\tAbsError: 2.79009e-02\n", + " Region: \"zone_3\"\tRelError: 5.09841e+00\tAbsError: 7.12298e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.89784e-01\tAbsError: 3.67872e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.99659e-01\tAbsError: 3.44425e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.40888e+00\tAbsError: 2.58912e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.04593e-05\tAbsError: 2.79009e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.50101e+01\tAbsError: 4.92774e+17\n", + " Region: \"zone_1\"\tRelError: 2.38889e+01\tAbsError: 8.39239e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38866e+01\tAbsError: 3.18457e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.32486e-03\tAbsError: 8.07393e-01\n", + " Region: \"zone_3\"\tRelError: 1.11212e+01\tAbsError: 4.92774e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.97767e-01\tAbsError: 2.47241e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.70128e-01\tAbsError: 2.45533e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01510e+01\tAbsError: 3.18461e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.32553e-03\tAbsError: 8.07646e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.96439e+00\tAbsError: 2.12374e+16\n", + " Region: \"zone_1\"\tRelError: 1.45967e+00\tAbsError: 2.87618e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45886e+00\tAbsError: 9.16520e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03570e-04\tAbsError: 2.78453e-01\n", + " Region: \"zone_3\"\tRelError: 2.50473e+00\tAbsError: 2.12374e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31487e-01\tAbsError: 1.07624e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.30649e-02\tAbsError: 1.04749e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30937e+00\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03570e-04\tAbsError: 2.78453e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.35926e+03\tAbsError: 1.05438e+17\n", + " Region: \"zone_1\"\tRelError: 2.03313e+03\tAbsError: 2.96967e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03313e+03\tAbsError: 2.58401e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.81226e-04\tAbsError: 2.71127e-01\n", + " Region: \"zone_3\"\tRelError: 3.26125e+02\tAbsError: 1.05438e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.89823e-01\tAbsError: 5.29897e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.07843e-01\tAbsError: 5.24486e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.25827e+02\tAbsError: 2.58968e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.84277e-04\tAbsError: 2.72186e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.06736e+00\tAbsError: 1.67079e+15\n", + " Region: \"zone_1\"\tRelError: 1.87002e-01\tAbsError: 2.94468e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86917e-01\tAbsError: 5.45669e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.47563e-05\tAbsError: 2.93922e-02\n", + " Region: \"zone_3\"\tRelError: 1.88036e+00\tAbsError: 1.67079e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95806e-02\tAbsError: 8.61655e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.32450e-03\tAbsError: 8.09135e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85737e+00\tAbsError: 5.47236e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.50770e-05\tAbsError: 2.95046e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.39810e+03\tAbsError: 8.38928e+15\n", + " Region: \"zone_1\"\tRelError: 1.19903e+03\tAbsError: 3.97682e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19903e+03\tAbsError: 1.05203e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11056e-03\tAbsError: 3.87162e-01\n", + " Region: \"zone_3\"\tRelError: 1.19907e+03\tAbsError: 8.38928e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91275e-02\tAbsError: 4.21388e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.23084e-02\tAbsError: 4.17540e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19903e+03\tAbsError: 1.05209e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11347e-03\tAbsError: 3.88174e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.99757e-02\tAbsError: 6.03219e+13\n", + " Region: \"zone_1\"\tRelError: 5.28092e-03\tAbsError: 6.07421e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.26342e-03\tAbsError: 6.43272e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75062e-05\tAbsError: 6.06778e-03\n", + " Region: \"zone_3\"\tRelError: 2.46948e-02\tAbsError: 6.03219e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52421e-04\tAbsError: 2.92320e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.21852e-04\tAbsError: 3.10899e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41030e-02\tAbsError: 6.47112e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75095e-05\tAbsError: 6.06885e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 5.74169e+00\tAbsError: 3.25633e+15\n", + " Region: \"zone_1\"\tRelError: 4.07651e+00\tAbsError: 5.82288e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.07484e+00\tAbsError: 1.78290e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67256e-03\tAbsError: 5.82110e-01\n", + " Region: \"zone_3\"\tRelError: 1.66518e+00\tAbsError: 3.25633e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05814e-02\tAbsError: 1.48807e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.36399e-03\tAbsError: 1.76827e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65055e+00\tAbsError: 1.80419e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67601e-03\tAbsError: 5.83306e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.10405e-01\tAbsError: 3.12560e+13\n", + " Region: \"zone_1\"\tRelError: 1.08840e-02\tAbsError: 4.61195e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08827e-02\tAbsError: 1.71511e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32204e-06\tAbsError: 4.59479e-04\n", + " Region: \"zone_3\"\tRelError: 9.95213e-02\tAbsError: 3.12560e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34947e-04\tAbsError: 1.52362e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.27748e-04\tAbsError: 1.60198e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.92573e-02\tAbsError: 1.72813e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32271e-06\tAbsError: 4.59705e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.39772e+01\tAbsError: 2.88783e+15\n", + " Region: \"zone_1\"\tRelError: 1.07664e+01\tAbsError: 3.55558e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07663e+01\tAbsError: 1.67865e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01653e-04\tAbsError: 3.53879e-02\n", + " Region: \"zone_3\"\tRelError: 3.21075e+00\tAbsError: 2.88783e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.72695e-03\tAbsError: 1.43653e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.01817e-03\tAbsError: 1.45130e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.20390e+00\tAbsError: 1.69327e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01695e-04\tAbsError: 3.54018e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.63047e-03\tAbsError: 9.09027e+11\n", + " Region: \"zone_1\"\tRelError: 4.56990e-04\tAbsError: 3.44629e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.55999e-04\tAbsError: 1.41300e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.91190e-07\tAbsError: 3.44488e-04\n", + " Region: \"zone_3\"\tRelError: 4.17348e-03\tAbsError: 9.09027e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33335e-06\tAbsError: 4.38047e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02288e-05\tAbsError: 4.70980e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.15793e-03\tAbsError: 1.42246e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.91601e-07\tAbsError: 3.44637e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.54985e+00\tAbsError: 2.55969e+14\n", + " Region: \"zone_1\"\tRelError: 3.36029e+00\tAbsError: 2.26869e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.36022e+00\tAbsError: 1.18562e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.51403e-05\tAbsError: 2.26750e-02\n", + " Region: \"zone_3\"\tRelError: 1.89556e-01\tAbsError: 2.55969e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.34677e-04\tAbsError: 1.27496e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.19133e-04\tAbsError: 1.28473e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88537e-01\tAbsError: 1.19493e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.51674e-05\tAbsError: 2.26844e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.49771e-03\tAbsError: 1.64940e+12\n", + " Region: \"zone_1\"\tRelError: 6.42053e-04\tAbsError: 1.77929e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.42002e-04\tAbsError: 9.99896e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.09050e-08\tAbsError: 1.76929e-05\n", + " Region: \"zone_3\"\tRelError: 5.85566e-03\tAbsError: 1.64940e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16109e-06\tAbsError: 8.03293e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.70130e-06\tAbsError: 8.46106e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.84174e-03\tAbsError: 1.00703e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.09341e-08\tAbsError: 1.77035e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 7.69184e-01\tAbsError: 1.54336e+14\n", + " Region: \"zone_1\"\tRelError: 6.51898e-01\tAbsError: 2.46820e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.51891e-01\tAbsError: 6.67604e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.08303e-06\tAbsError: 2.46152e-03\n", + " Region: \"zone_3\"\tRelError: 1.17286e-01\tAbsError: 1.54336e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.86365e-04\tAbsError: 7.68336e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04654e-04\tAbsError: 7.75022e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16988e-01\tAbsError: 6.73289e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.08303e-06\tAbsError: 2.46238e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 5.44825e-04\tAbsError: 5.87780e+10\n", + " Region: \"zone_1\"\tRelError: 5.39394e-05\tAbsError: 2.02429e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.38812e-05\tAbsError: 6.87611e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.82246e-08\tAbsError: 2.02360e-05\n", + " Region: \"zone_3\"\tRelError: 4.90886e-04\tAbsError: 5.87780e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46411e-07\tAbsError: 2.85251e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.30809e-07\tAbsError: 3.02529e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.90250e-04\tAbsError: 6.91269e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.82487e-08\tAbsError: 2.02448e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.01432e-01\tAbsError: 2.06717e+13\n", + " Region: \"zone_1\"\tRelError: 8.22439e-02\tAbsError: 1.10802e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.22407e-02\tAbsError: 7.73664e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.18996e-06\tAbsError: 1.10725e-03\n", + " Region: \"zone_3\"\tRelError: 1.91883e-02\tAbsError: 2.06717e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.30941e-05\tAbsError: 1.02983e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.90681e-05\tAbsError: 1.03734e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91229e-02\tAbsError: 7.79971e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.19006e-06\tAbsError: 1.10725e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.92595e-04\tAbsError: 9.49473e+10\n", + " Region: \"zone_1\"\tRelError: 3.87978e-05\tAbsError: 2.02444e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87920e-05\tAbsError: 5.96621e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.80757e-09\tAbsError: 2.01847e-06\n", + " Region: \"zone_3\"\tRelError: 3.53797e-04\tAbsError: 9.49473e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.10989e-07\tAbsError: 4.62323e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.83783e-07\tAbsError: 4.87150e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52997e-04\tAbsError: 6.00786e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.81025e-09\tAbsError: 2.01944e-06\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.02759e-02\tAbsError: 9.07693e+12\n", + " Region: \"zone_1\"\tRelError: 3.24485e-02\tAbsError: 1.93405e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.24480e-02\tAbsError: 3.17337e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.55164e-07\tAbsError: 1.93088e-04\n", + " Region: \"zone_3\"\tRelError: 7.82740e-03\tAbsError: 9.07693e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.61255e-06\tAbsError: 4.52137e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.67188e-06\tAbsError: 4.55556e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.80956e-03\tAbsError: 3.20002e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.55372e-07\tAbsError: 1.93161e-04\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 5.03275e-05\tAbsError: 9.08763e+09\n", + " Region: \"zone_1\"\tRelError: 4.97773e-06\tAbsError: 1.23989e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.97416e-06\tAbsError: 6.85123e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.56554e-09\tAbsError: 1.23921e-06\n", + " Region: \"zone_3\"\tRelError: 4.53497e-05\tAbsError: 9.08763e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.78500e-08\tAbsError: 4.42118e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.59273e-08\tAbsError: 4.66645e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.52724e-05\tAbsError: 6.89457e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.56702e-09\tAbsError: 1.23975e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:42:07\u001b[0m.\u001b[1;36m715\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.8999999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 6.82510e-03\tAbsError: 1.57093e+12\n", + " Region: \"zone_1\"\tRelError: 5.21350e-03\tAbsError: 7.21717e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.21329e-03\tAbsError: 5.21383e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.07357e-07\tAbsError: 7.21195e-05\n", + " Region: \"zone_3\"\tRelError: 1.61160e-03\tAbsError: 1.57093e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.85877e-06\tAbsError: 7.82787e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.31443e-06\tAbsError: 7.88140e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60722e-03\tAbsError: 5.26937e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.07435e-07\tAbsError: 7.21474e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.75731e+01\tAbsError: 5.68784e+17\n", + " Region: \"zone_1\"\tRelError: 3.83859e+01\tAbsError: 4.09543e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.83859e+01\tAbsError: 4.09541e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.16236e-10\tAbsError: 1.79418e-07\n", + " Region: \"zone_3\"\tRelError: 1.91873e+01\tAbsError: 5.68784e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.35377e-01\tAbsError: 2.75826e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.22188e-01\tAbsError: 2.92959e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77297e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.16460e-10\tAbsError: 1.79501e-07\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.34680e-03\tAbsError: 5.70100e+11\n", + " Region: \"zone_1\"\tRelError: 1.79139e-03\tAbsError: 1.51124e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79135e-03\tAbsError: 1.85167e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.33973e-08\tAbsError: 1.50939e-05\n", + " Region: \"zone_3\"\tRelError: 5.55408e-04\tAbsError: 5.70100e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.68877e-07\tAbsError: 2.84063e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.69915e-07\tAbsError: 2.86037e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.54226e-04\tAbsError: 1.87202e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.34137e-08\tAbsError: 1.51000e-05\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 4.73793e-04\tAbsError: 1.15623e+11\n", + " Region: \"zone_1\"\tRelError: 3.50083e-04\tAbsError: 4.95174e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.50068e-04\tAbsError: 4.03930e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42254e-08\tAbsError: 4.94770e-06\n", + " Region: \"zone_3\"\tRelError: 1.23711e-04\tAbsError: 1.15623e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13155e-07\tAbsError: 5.76217e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.72856e-07\tAbsError: 5.80008e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23410e-04\tAbsError: 4.08249e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42309e-08\tAbsError: 4.94974e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.10779e+01\tAbsError: 4.06443e+17\n", + " Region: \"zone_1\"\tRelError: 1.97168e+01\tAbsError: 4.69738e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97155e+01\tAbsError: 3.07629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26517e-03\tAbsError: 4.38975e-01\n", + " Region: \"zone_3\"\tRelError: 1.13612e+01\tAbsError: 4.06443e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.26663e-01\tAbsError: 2.03016e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.10593e-01\tAbsError: 2.03427e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03227e+01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26614e-03\tAbsError: 4.39294e-01\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.47757e-04\tAbsError: 3.73129e+10\n", + " Region: \"zone_1\"\tRelError: 1.09182e-04\tAbsError: 1.12329e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09178e-04\tAbsError: 1.28385e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.22595e-09\tAbsError: 1.12201e-06\n", + " Region: \"zone_3\"\tRelError: 3.85756e-05\tAbsError: 3.73129e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96287e-08\tAbsError: 1.85947e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.85050e-08\tAbsError: 1.87182e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.84943e-05\tAbsError: 1.29789e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.22727e-09\tAbsError: 1.12250e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 4.48960e+02\tAbsError: 9.69691e+16\n", + " Region: \"zone_1\"\tRelError: 4.44741e+02\tAbsError: 1.46848e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44741e+02\tAbsError: 2.58943e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47880e-04\tAbsError: 1.20954e-01\n", + " Region: \"zone_3\"\tRelError: 4.21888e+00\tAbsError: 9.69691e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.30659e-01\tAbsError: 4.85459e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34310e-01\tAbsError: 4.84232e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85356e+00\tAbsError: 2.58906e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.48053e-04\tAbsError: 1.21009e-01\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 3.31804e-05\tAbsError: 8.35153e+09\n", + " Region: \"zone_1\"\tRelError: 2.40833e-05\tAbsError: 3.39599e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.40823e-05\tAbsError: 2.98627e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.75541e-10\tAbsError: 3.39301e-07\n", + " Region: \"zone_3\"\tRelError: 9.09711e-06\tAbsError: 8.35153e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.30953e-09\tAbsError: 4.16234e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24972e-08\tAbsError: 4.18919e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.07633e-06\tAbsError: 3.01836e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.75943e-10\tAbsError: 3.39450e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:42:11\u001b[0m.\u001b[1;36m695\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:42:11\u001b[0m.\u001b[1;36m695\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m1.0409090909090908\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.03712e+00\tAbsError: 1.21527e+16\n", + " Region: \"zone_1\"\tRelError: 1.00977e+00\tAbsError: 5.07362e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00834e+00\tAbsError: 9.16487e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42992e-03\tAbsError: 4.98197e-01\n", + " Region: \"zone_3\"\tRelError: 4.02736e+00\tAbsError: 1.21527e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.24782e-02\tAbsError: 5.84262e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.44637e-02\tAbsError: 6.31012e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.96898e+00\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43302e-03\tAbsError: 4.99291e-01\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.16228e+03\tAbsError: 1.88827e+18\n", + " Region: \"zone_1\"\tRelError: 1.58051e+03\tAbsError: 4.18725e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58051e+03\tAbsError: 4.18724e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.33433e-10\tAbsError: 8.11914e-08\n", + " Region: \"zone_3\"\tRelError: 1.58177e+03\tAbsError: 1.88827e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.44099e-01\tAbsError: 9.40408e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.21680e-01\tAbsError: 9.47859e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58051e+03\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.33530e-10\tAbsError: 8.12262e-08\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.22708e-01\tAbsError: 3.87768e+15\n", + " Region: \"zone_1\"\tRelError: 1.91968e-01\tAbsError: 6.75386e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90026e-01\tAbsError: 2.52604e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94152e-03\tAbsError: 6.75134e-01\n", + " Region: \"zone_3\"\tRelError: 7.30741e-01\tAbsError: 3.87768e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.56619e-03\tAbsError: 1.77246e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.53274e-03\tAbsError: 2.10521e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.16698e-01\tAbsError: 2.55458e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94389e-03\tAbsError: 6.75970e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.55529e+01\tAbsError: 5.53890e+17\n", + " Region: \"zone_1\"\tRelError: 5.41760e+00\tAbsError: 1.57448e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.41318e+00\tAbsError: 3.18453e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.42211e-03\tAbsError: 1.54263e+00\n", + " Region: \"zone_3\"\tRelError: 2.01353e+01\tAbsError: 5.53890e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.41602e-01\tAbsError: 2.77810e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.39263e-01\tAbsError: 2.76080e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.94500e+01\tAbsError: 3.18461e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.42270e-03\tAbsError: 1.54278e+00\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.39826e+00\tAbsError: 3.43096e+15\n", + " Region: \"zone_1\"\tRelError: 2.04849e-01\tAbsError: 4.45309e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04721e-01\tAbsError: 2.05839e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27433e-04\tAbsError: 4.43251e-02\n", + " Region: \"zone_3\"\tRelError: 2.19341e+00\tAbsError: 3.43096e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46827e-03\tAbsError: 1.70482e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.46042e-03\tAbsError: 1.72614e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18535e+00\tAbsError: 2.07760e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27493e-04\tAbsError: 4.43450e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 7.83305e+00\tAbsError: 5.91291e+16\n", + " Region: \"zone_1\"\tRelError: 1.19920e+00\tAbsError: 2.77579e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19136e+00\tAbsError: 2.58851e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.83491e-03\tAbsError: 2.74991e+00\n", + " Region: \"zone_3\"\tRelError: 6.63386e+00\tAbsError: 5.91291e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.76383e-02\tAbsError: 2.96632e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.22448e-02\tAbsError: 2.94659e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.48613e+00\tAbsError: 2.58913e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.84346e-03\tAbsError: 2.75299e+00\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.26801e-01\tAbsError: 3.21780e+14\n", + " Region: \"zone_1\"\tRelError: 1.55999e-02\tAbsError: 2.70060e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55223e-02\tAbsError: 1.53596e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.76036e-05\tAbsError: 2.69907e-02\n", + " Region: \"zone_3\"\tRelError: 3.11201e-01\tAbsError: 3.21780e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.63679e-04\tAbsError: 1.60119e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.88527e-04\tAbsError: 1.61661e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.10171e-01\tAbsError: 1.54896e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.76380e-05\tAbsError: 2.70022e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.82267e+01\tAbsError: 1.87951e+16\n", + " Region: \"zone_1\"\tRelError: 7.24256e-01\tAbsError: 1.62549e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 7.19633e-01\tAbsError: 1.05198e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.62256e-03\tAbsError: 1.61497e+00\n", + " Region: \"zone_3\"\tRelError: 1.75024e+01\tAbsError: 1.87951e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04520e-02\tAbsError: 9.32017e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.38432e-02\tAbsError: 9.47491e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74635e+01\tAbsError: 1.05209e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.62918e-03\tAbsError: 1.61732e+00\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.06749e-01\tAbsError: 1.86094e+14\n", + " Region: \"zone_1\"\tRelError: 8.34420e-03\tAbsError: 3.03935e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.33549e-03\tAbsError: 8.31449e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.71533e-06\tAbsError: 3.03103e-03\n", + " Region: \"zone_3\"\tRelError: 1.98405e-01\tAbsError: 1.86094e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.28032e-04\tAbsError: 9.25440e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.88076e-04\tAbsError: 9.35503e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97980e-01\tAbsError: 8.38945e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.71848e-06\tAbsError: 3.03213e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.42936e+00\tAbsError: 1.70570e+16\n", + " Region: \"zone_1\"\tRelError: 2.60997e-01\tAbsError: 1.59580e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.56434e-01\tAbsError: 1.61896e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.56257e-03\tAbsError: 1.59564e+00\n", + " Region: \"zone_3\"\tRelError: 1.16837e+00\tAbsError: 1.70570e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.62388e-02\tAbsError: 8.19423e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.33442e-03\tAbsError: 8.86273e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13323e+00\tAbsError: 1.64968e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.56346e-03\tAbsError: 1.59594e+00\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.88896e-02\tAbsError: 2.58485e+13\n", + " Region: \"zone_1\"\tRelError: 1.63690e-03\tAbsError: 1.31710e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63310e-03\tAbsError: 9.88963e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.79528e-06\tAbsError: 1.31612e-03\n", + " Region: \"zone_3\"\tRelError: 3.72527e-02\tAbsError: 2.58485e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.09818e-05\tAbsError: 1.28647e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.53496e-05\tAbsError: 1.29838e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.71926e-02\tAbsError: 9.97598e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.79540e-06\tAbsError: 1.31620e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.15862e+00\tAbsError: 9.93947e+15\n", + " Region: \"zone_1\"\tRelError: 1.49341e-01\tAbsError: 6.40088e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49159e-01\tAbsError: 4.15530e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.81803e-04\tAbsError: 6.35932e-02\n", + " Region: \"zone_3\"\tRelError: 1.00928e+00\tAbsError: 9.93947e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.65718e-02\tAbsError: 4.85353e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.35033e-03\tAbsError: 5.08594e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.89178e-01\tAbsError: 4.18389e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.81889e-04\tAbsError: 6.36236e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.59304e-02\tAbsError: 1.10975e+13\n", + " Region: \"zone_1\"\tRelError: 6.60647e-04\tAbsError: 2.32906e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.59978e-04\tAbsError: 3.98553e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.68839e-07\tAbsError: 2.32508e-04\n", + " Region: \"zone_3\"\tRelError: 1.52698e-02\tAbsError: 1.10975e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32236e-05\tAbsError: 5.52234e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.14382e-05\tAbsError: 5.57521e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52444e-02\tAbsError: 4.02224e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.69094e-07\tAbsError: 2.32596e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.98332e-02\tAbsError: 3.63196e+14\n", + " Region: \"zone_1\"\tRelError: 1.09015e-02\tAbsError: 5.38113e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07477e-02\tAbsError: 2.10916e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53806e-04\tAbsError: 5.37902e-02\n", + " Region: \"zone_3\"\tRelError: 6.89316e-02\tAbsError: 3.63196e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.63442e-03\tAbsError: 1.76292e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.28654e-04\tAbsError: 1.86904e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.65147e-02\tAbsError: 2.12170e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53867e-04\tAbsError: 5.38113e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.34486e-03\tAbsError: 1.97182e+12\n", + " Region: \"zone_1\"\tRelError: 1.39485e-04\tAbsError: 8.65138e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39236e-04\tAbsError: 6.47581e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.48683e-07\tAbsError: 8.64490e-05\n", + " Region: \"zone_3\"\tRelError: 3.20538e-03\tAbsError: 1.97182e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.27846e-06\tAbsError: 9.81632e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.12485e-06\tAbsError: 9.90188e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.20072e-03\tAbsError: 6.54815e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.48776e-07\tAbsError: 8.64826e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.15137e-03\tAbsError: 7.06680e+11\n", + " Region: \"zone_1\"\tRelError: 4.79513e-05\tAbsError: 1.84347e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.78983e-05\tAbsError: 2.30046e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.29631e-08\tAbsError: 1.84117e-05\n", + " Region: \"zone_3\"\tRelError: 1.10342e-03\tAbsError: 7.06680e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.28767e-07\tAbsError: 3.51782e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.37241e-07\tAbsError: 3.54898e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10180e-03\tAbsError: 2.32700e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.29832e-08\tAbsError: 1.84191e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.10734e-01\tAbsError: 3.23140e+14\n", + " Region: \"zone_1\"\tRelError: 1.41532e-02\tAbsError: 4.07427e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41415e-02\tAbsError: 1.48652e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16074e-05\tAbsError: 4.05941e-03\n", + " Region: \"zone_3\"\tRelError: 9.65805e-02\tAbsError: 3.23140e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.34482e-04\tAbsError: 1.60954e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.62448e-04\tAbsError: 1.62186e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.55720e-02\tAbsError: 1.49643e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16120e-05\tAbsError: 4.06102e-03\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.60636e-04\tAbsError: 1.46372e+11\n", + " Region: \"zone_1\"\tRelError: 1.08690e-05\tAbsError: 6.03090e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08517e-05\tAbsError: 5.09600e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73339e-08\tAbsError: 6.02581e-06\n", + " Region: \"zone_3\"\tRelError: 2.49767e-04\tAbsError: 1.46372e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68311e-07\tAbsError: 7.29196e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.63262e-07\tAbsError: 7.34528e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49418e-04\tAbsError: 5.15309e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73406e-08\tAbsError: 6.02830e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.30760e-02\tAbsError: 2.51950e+13\n", + " Region: \"zone_1\"\tRelError: 1.67509e-03\tAbsError: 2.23250e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66869e-03\tAbsError: 1.29509e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.39687e-06\tAbsError: 2.23120e-03\n", + " Region: \"zone_3\"\tRelError: 1.14009e-02\tAbsError: 2.51950e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.40076e-05\tAbsError: 1.25506e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.29176e-05\tAbsError: 1.26444e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12476e-02\tAbsError: 1.30350e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.39807e-06\tAbsError: 2.23171e-03\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 8.12930e-05\tAbsError: 4.69072e+10\n", + " Region: \"zone_1\"\tRelError: 3.38946e-06\tAbsError: 1.38742e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.38548e-06\tAbsError: 1.62196e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.98640e-09\tAbsError: 1.38580e-06\n", + " Region: \"zone_3\"\tRelError: 7.79035e-05\tAbsError: 4.69072e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.45193e-08\tAbsError: 2.33605e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.92263e-08\tAbsError: 2.35467e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.77958e-05\tAbsError: 1.64038e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.98804e-09\tAbsError: 1.38641e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:42:21\u001b[0m.\u001b[1;36m924\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.9999999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 7.34066e-03\tAbsError: 1.50746e+13\n", + " Region: \"zone_1\"\tRelError: 9.38378e-04\tAbsError: 2.73944e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.37593e-04\tAbsError: 6.05377e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.84664e-07\tAbsError: 2.73339e-04\n", + " Region: \"zone_3\"\tRelError: 6.40228e-03\tAbsError: 1.50746e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.70757e-05\tAbsError: 7.51334e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.49476e-05\tAbsError: 7.56129e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.34947e-03\tAbsError: 6.09341e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.84733e-07\tAbsError: 2.73360e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.58363e+04\tAbsError: 1.47473e+18\n", + " Region: \"zone_1\"\tRelError: 6.98536e+03\tAbsError: 4.09543e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.98536e+03\tAbsError: 4.09539e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20641e-09\tAbsError: 4.19390e-07\n", + " Region: \"zone_3\"\tRelError: 2.88509e+04\tAbsError: 1.47473e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.64637e-01\tAbsError: 7.31003e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.38568e-01\tAbsError: 7.43726e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88496e+04\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20691e-09\tAbsError: 4.19574e-07\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.13955e-03\tAbsError: 1.79629e+12\n", + " Region: \"zone_1\"\tRelError: 1.45110e-04\tAbsError: 1.21666e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44761e-04\tAbsError: 7.64701e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.49037e-07\tAbsError: 1.21590e-04\n", + " Region: \"zone_3\"\tRelError: 9.94436e-04\tAbsError: 1.79629e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.54025e-06\tAbsError: 8.95445e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.81841e-06\tAbsError: 9.00849e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.84728e-04\tAbsError: 7.69552e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.49092e-07\tAbsError: 1.21609e-04\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 4.58110e-04\tAbsError: 7.82252e+11\n", + " Region: \"zone_1\"\tRelError: 5.84708e-05\tAbsError: 2.02313e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.84129e-05\tAbsError: 2.95470e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.79137e-08\tAbsError: 2.02017e-05\n", + " Region: \"zone_3\"\tRelError: 3.99639e-04\tAbsError: 7.82252e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33892e-06\tAbsError: 3.90049e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.59692e-06\tAbsError: 3.92202e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.96645e-04\tAbsError: 2.98275e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.79359e-08\tAbsError: 2.02098e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 8.73385e+02\tAbsError: 4.80817e+17\n", + " Region: \"zone_1\"\tRelError: 4.36320e+02\tAbsError: 1.19061e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.36317e+02\tAbsError: 3.07626e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.33293e-03\tAbsError: 1.15985e+00\n", + " Region: \"zone_3\"\tRelError: 4.37065e+02\tAbsError: 4.80817e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.79759e-01\tAbsError: 2.41402e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.64874e-01\tAbsError: 2.39414e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.36317e+02\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.33331e-03\tAbsError: 1.15994e+00\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 8.41870e-05\tAbsError: 1.22496e+11\n", + " Region: \"zone_1\"\tRelError: 1.07138e-05\tAbsError: 7.33542e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06928e-05\tAbsError: 5.31771e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.10137e-08\tAbsError: 7.33011e-06\n", + " Region: \"zone_3\"\tRelError: 7.34732e-05\tAbsError: 1.22496e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.63500e-07\tAbsError: 6.10925e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.36093e-07\tAbsError: 6.14040e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.28525e-05\tAbsError: 5.36696e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.10216e-08\tAbsError: 7.33297e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:42:25\u001b[0m.\u001b[1;36m053\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:42:25\u001b[0m.\u001b[1;36m053\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m1.1454545454545455\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.66204e+03\tAbsError: 6.93474e+16\n", + " Region: \"zone_1\"\tRelError: 8.76338e+02\tAbsError: 4.68048e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.76336e+02\tAbsError: 2.58614e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26825e-03\tAbsError: 4.42186e-01\n", + " Region: \"zone_3\"\tRelError: 7.85702e+02\tAbsError: 6.93474e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.33245e-02\tAbsError: 3.47970e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.15582e-02\tAbsError: 3.45503e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.85556e+02\tAbsError: 2.58778e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26845e-03\tAbsError: 4.42250e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.46324e+03\tAbsError: 5.14576e+15\n", + " Region: \"zone_1\"\tRelError: 6.87978e+02\tAbsError: 7.78255e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.87976e+02\tAbsError: 9.16449e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19704e-03\tAbsError: 7.69091e-01\n", + " Region: \"zone_3\"\tRelError: 7.75259e+02\tAbsError: 5.14576e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52317e-02\tAbsError: 2.57522e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.85097e-03\tAbsError: 2.57054e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.75237e+02\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19704e-03\tAbsError: 7.69091e-01\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.59974e+03\tAbsError: 2.65317e+18\n", + " Region: \"zone_1\"\tRelError: 7.29760e+02\tAbsError: 4.18736e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.29760e+02\tAbsError: 4.18722e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.08424e-09\tAbsError: 1.42468e-06\n", + " Region: \"zone_3\"\tRelError: 2.86998e+03\tAbsError: 2.65317e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.56743e-01\tAbsError: 1.32495e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.47769e-01\tAbsError: 1.32822e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 2.86888e+03\tAbsError: 4.18730e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.08585e-09\tAbsError: 1.42528e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.96023e+00\tAbsError: 5.32372e+15\n", + " Region: \"zone_1\"\tRelError: 4.54639e+00\tAbsError: 1.02863e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54344e+00\tAbsError: 2.66559e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94644e-03\tAbsError: 1.02837e+00\n", + " Region: \"zone_3\"\tRelError: 2.41384e+00\tAbsError: 5.32372e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.51219e-02\tAbsError: 2.60450e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.65403e-03\tAbsError: 2.71922e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38011e+00\tAbsError: 2.68000e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.95139e-03\tAbsError: 1.03011e+00\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.84055e+00\tAbsError: 4.94765e+17\n", + " Region: \"zone_1\"\tRelError: 1.04493e+00\tAbsError: 2.77078e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03715e+00\tAbsError: 3.18450e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78051e-03\tAbsError: 2.73893e+00\n", + " Region: \"zone_3\"\tRelError: 1.79562e+00\tAbsError: 4.94765e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.48499e-01\tAbsError: 2.47705e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.45175e-01\tAbsError: 2.47060e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29416e+00\tAbsError: 3.18462e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78137e-03\tAbsError: 2.73932e+00\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.07732e+01\tAbsError: 5.66142e+15\n", + " Region: \"zone_1\"\tRelError: 6.09549e-01\tAbsError: 6.00187e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.09378e-01\tAbsError: 2.72034e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71203e-04\tAbsError: 5.97467e-02\n", + " Region: \"zone_3\"\tRelError: 6.01636e+01\tAbsError: 5.66142e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13691e-02\tAbsError: 2.75447e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.48872e-03\tAbsError: 2.90695e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.01496e+01\tAbsError: 2.74039e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71270e-04\tAbsError: 5.97699e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 4.62423e-01\tAbsError: 1.95408e+16\n", + " Region: \"zone_1\"\tRelError: 2.05320e-01\tAbsError: 2.35938e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.98710e-01\tAbsError: 2.58598e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.60950e-03\tAbsError: 2.33352e+00\n", + " Region: \"zone_3\"\tRelError: 2.57103e-01\tAbsError: 1.95408e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.71902e-02\tAbsError: 9.71912e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.43718e-02\tAbsError: 9.82163e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.98929e-01\tAbsError: 2.58489e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.61200e-03\tAbsError: 2.33442e+00\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.18137e+00\tAbsError: 3.71256e+14\n", + " Region: \"zone_1\"\tRelError: 8.31734e-02\tAbsError: 3.74686e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.30661e-02\tAbsError: 1.92544e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07324e-04\tAbsError: 3.74493e-02\n", + " Region: \"zone_3\"\tRelError: 1.09819e+00\tAbsError: 3.71256e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23962e-03\tAbsError: 1.84907e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.91184e-04\tAbsError: 1.86349e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09615e+00\tAbsError: 1.93888e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07368e-04\tAbsError: 3.74645e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 9.39209e-01\tAbsError: 2.29973e+16\n", + " Region: \"zone_1\"\tRelError: 3.62257e-01\tAbsError: 1.50539e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.58005e-01\tAbsError: 1.05196e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.25210e-03\tAbsError: 1.49487e+00\n", + " Region: \"zone_3\"\tRelError: 5.76952e-01\tAbsError: 2.29973e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88256e-02\tAbsError: 1.14448e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.88555e-02\tAbsError: 1.15525e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.25018e-01\tAbsError: 1.05211e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.25239e-03\tAbsError: 1.49497e+00\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.46007e+00\tAbsError: 2.29640e+14\n", + " Region: \"zone_1\"\tRelError: 4.03111e-02\tAbsError: 3.94907e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.02998e-02\tAbsError: 1.05545e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13173e-05\tAbsError: 3.93851e-03\n", + " Region: \"zone_3\"\tRelError: 1.41976e+00\tAbsError: 2.29640e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16328e-04\tAbsError: 1.14327e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.52600e-04\tAbsError: 1.15314e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41908e+00\tAbsError: 1.06317e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13180e-05\tAbsError: 3.93853e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.51822e-01\tAbsError: 1.66219e+16\n", + " Region: \"zone_1\"\tRelError: 1.40128e-01\tAbsError: 7.95313e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37872e-01\tAbsError: 2.26078e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.25603e-03\tAbsError: 7.95087e-01\n", + " Region: \"zone_3\"\tRelError: 2.11694e-01\tAbsError: 1.66219e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10115e-02\tAbsError: 8.31252e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.28653e-03\tAbsError: 8.30938e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90131e-01\tAbsError: 2.26461e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.26521e-03\tAbsError: 7.98211e-01\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.11111e-01\tAbsError: 2.79827e+13\n", + " Region: \"zone_1\"\tRelError: 7.25122e-03\tAbsError: 1.74217e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.24621e-03\tAbsError: 1.19347e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.00326e-06\tAbsError: 1.74098e-03\n", + " Region: \"zone_3\"\tRelError: 2.03859e-01\tAbsError: 2.79827e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67617e-05\tAbsError: 1.39372e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.89481e-05\tAbsError: 1.40455e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03729e-01\tAbsError: 1.20196e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.00391e-06\tAbsError: 1.74126e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.40066e-02\tAbsError: 6.30541e+15\n", + " Region: \"zone_1\"\tRelError: 3.48618e-02\tAbsError: 2.65888e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.47869e-02\tAbsError: 1.70704e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.48919e-05\tAbsError: 2.64181e-02\n", + " Region: \"zone_3\"\tRelError: 5.91448e-02\tAbsError: 6.30541e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.61160e-03\tAbsError: 3.10397e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.18077e-03\tAbsError: 3.20144e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.72775e-02\tAbsError: 1.71665e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.49375e-05\tAbsError: 2.64342e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 9.24879e-02\tAbsError: 1.23871e+13\n", + " Region: \"zone_1\"\tRelError: 2.93353e-03\tAbsError: 2.91323e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.93269e-03\tAbsError: 4.76030e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.36559e-07\tAbsError: 2.90847e-04\n", + " Region: \"zone_3\"\tRelError: 8.95543e-02\tAbsError: 1.23871e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95573e-05\tAbsError: 6.16953e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.91930e-05\tAbsError: 6.21758e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.95147e-02\tAbsError: 4.79468e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.36647e-07\tAbsError: 2.90878e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.30073e-03\tAbsError: 2.64584e+14\n", + " Region: \"zone_1\"\tRelError: 2.52092e-04\tAbsError: 1.96953e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96256e-04\tAbsError: 7.14084e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.58368e-05\tAbsError: 1.96882e-02\n", + " Region: \"zone_3\"\tRelError: 1.04864e-03\tAbsError: 2.64584e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.14833e-04\tAbsError: 1.30426e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.17855e-04\tAbsError: 1.34158e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.60109e-04\tAbsError: 7.17928e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.58455e-05\tAbsError: 1.96915e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.79957e-02\tAbsError: 2.00241e+12\n", + " Region: \"zone_1\"\tRelError: 5.80226e-04\tAbsError: 1.06766e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.79919e-04\tAbsError: 7.62075e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.06294e-07\tAbsError: 1.06690e-04\n", + " Region: \"zone_3\"\tRelError: 1.74155e-02\tAbsError: 2.00241e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.83435e-06\tAbsError: 9.97535e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.43171e-06\tAbsError: 1.00487e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74069e-02\tAbsError: 7.69605e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.06408e-07\tAbsError: 1.06730e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.57360e-03\tAbsError: 1.38202e+14\n", + " Region: \"zone_1\"\tRelError: 2.18644e-03\tAbsError: 1.28048e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18283e-03\tAbsError: 5.49178e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.61467e-06\tAbsError: 1.27499e-03\n", + " Region: \"zone_3\"\tRelError: 3.38715e-03\tAbsError: 1.38202e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.63180e-04\tAbsError: 6.70794e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.54114e-04\tAbsError: 7.11228e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96624e-03\tAbsError: 5.52045e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.61609e-06\tAbsError: 1.27549e-03\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 6.16882e-03\tAbsError: 7.25783e+11\n", + " Region: \"zone_1\"\tRelError: 1.98056e-04\tAbsError: 2.16951e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97994e-04\tAbsError: 2.65471e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.22079e-08\tAbsError: 2.16685e-05\n", + " Region: \"zone_3\"\tRelError: 5.97077e-03\tAbsError: 7.25783e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06142e-06\tAbsError: 3.61574e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.32785e-06\tAbsError: 3.64210e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.96832e-03\tAbsError: 2.68167e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.22311e-08\tAbsError: 2.16771e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.97838e-04\tAbsError: 1.04334e+13\n", + " Region: \"zone_1\"\tRelError: 1.51323e-04\tAbsError: 6.35179e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49519e-04\tAbsError: 4.00189e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80376e-06\tAbsError: 6.34779e-04\n", + " Region: \"zone_3\"\tRelError: 2.46515e-04\tAbsError: 1.04334e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.56648e-05\tAbsError: 5.11483e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.60654e-05\tAbsError: 5.31857e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02981e-04\tAbsError: 4.02172e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80376e-06\tAbsError: 6.34779e-04\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.32512e-03\tAbsError: 1.39840e+11\n", + " Region: \"zone_1\"\tRelError: 4.25623e-05\tAbsError: 6.99519e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.25422e-05\tAbsError: 5.61701e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00663e-08\tAbsError: 6.98958e-06\n", + " Region: \"zone_3\"\tRelError: 1.28256e-03\tAbsError: 1.39840e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.35090e-07\tAbsError: 6.96726e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.14577e-07\tAbsError: 7.01672e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28199e-03\tAbsError: 5.67287e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00739e-08\tAbsError: 6.99239e-06\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 4.07310e-04\tAbsError: 4.47841e+10\n", + " Region: \"zone_1\"\tRelError: 1.30926e-05\tAbsError: 1.54205e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30881e-05\tAbsError: 1.75011e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.42203e-09\tAbsError: 1.54030e-06\n", + " Region: \"zone_3\"\tRelError: 3.94218e-04\tAbsError: 4.47841e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.33915e-08\tAbsError: 2.23135e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.92263e-08\tAbsError: 2.24706e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.94061e-04\tAbsError: 1.76782e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.42382e-09\tAbsError: 1.54097e-06\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.53876e-04\tAbsError: 5.38820e+12\n", + " Region: \"zone_1\"\tRelError: 1.00966e-04\tAbsError: 5.99465e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00796e-04\tAbsError: 1.68312e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69863e-07\tAbsError: 5.97782e-05\n", + " Region: \"zone_3\"\tRelError: 1.52910e-04\tAbsError: 5.38820e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.12473e-06\tAbsError: 2.67156e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.57726e-06\tAbsError: 2.71664e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37038e-04\tAbsError: 1.69127e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69863e-07\tAbsError: 5.97782e-05\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 9.30929e-05\tAbsError: 9.62198e+09\n", + " Region: \"zone_1\"\tRelError: 2.99044e-06\tAbsError: 4.57774e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.98912e-06\tAbsError: 3.95789e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31308e-09\tAbsError: 4.57379e-07\n", + " Region: \"zone_3\"\tRelError: 9.01024e-05\tAbsError: 9.62198e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50292e-08\tAbsError: 4.79430e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.16874e-08\tAbsError: 4.82769e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.00644e-05\tAbsError: 3.99740e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31362e-09\tAbsError: 4.57578e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:42:36\u001b[0m.\u001b[1;36m668\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 1.0999999999999999\u001b[0m\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.83984e-05\tAbsError: 6.20494e+11\n", + " Region: \"zone_1\"\tRelError: 1.11685e-05\tAbsError: 2.54379e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10961e-05\tAbsError: 1.76630e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.24189e-08\tAbsError: 2.54203e-05\n", + " Region: \"zone_3\"\tRelError: 1.72299e-05\tAbsError: 6.20494e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01596e-06\tAbsError: 3.08474e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06157e-06\tAbsError: 3.12020e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50799e-05\tAbsError: 1.77456e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.24363e-08\tAbsError: 2.54264e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:42:36\u001b[0m.\u001b[1;36m888\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: 1.25\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.20731e+02\tAbsError: 2.29552e+18\n", + " Region: \"zone_1\"\tRelError: 1.41155e+02\tAbsError: 4.09537e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41155e+02\tAbsError: 4.09536e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.05730e-10\tAbsError: 1.06495e-07\n", + " Region: \"zone_3\"\tRelError: 7.95757e+01\tAbsError: 2.29552e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.78600e-01\tAbsError: 1.14566e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.65499e-01\tAbsError: 1.14986e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 7.84316e+01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.05855e-10\tAbsError: 1.06540e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.72551e+00\tAbsError: 3.07479e+18\n", + " Region: \"zone_1\"\tRelError: 5.80587e+00\tAbsError: 4.18750e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.80587e+00\tAbsError: 4.18717e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.52425e-09\tAbsError: 3.34314e-06\n", + " Region: \"zone_3\"\tRelError: 1.91964e+00\tAbsError: 3.07479e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.90381e-01\tAbsError: 1.53657e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.81658e-01\tAbsError: 1.53822e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 9.47601e-01\tAbsError: 4.18728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.52641e-09\tAbsError: 3.34393e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.75350e+01\tAbsError: 4.89721e+17\n", + " Region: \"zone_1\"\tRelError: 1.04844e+01\tAbsError: 2.18917e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04782e+01\tAbsError: 3.07622e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.15763e-03\tAbsError: 2.15840e+00\n", + " Region: \"zone_3\"\tRelError: 2.70506e+01\tAbsError: 4.89721e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.63139e-01\tAbsError: 2.45322e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.63561e-01\tAbsError: 2.44399e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.65177e+01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.15822e-03\tAbsError: 2.15862e+00\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 8.02267e-01\tAbsError: 3.87882e+17\n", + " Region: \"zone_1\"\tRelError: 1.96669e-01\tAbsError: 4.07465e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85330e-01\tAbsError: 3.18444e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13395e-02\tAbsError: 4.04281e+00\n", + " Region: \"zone_3\"\tRelError: 6.05597e-01\tAbsError: 3.87882e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.15311e-01\tAbsError: 1.94168e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.98435e-01\tAbsError: 1.93714e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80510e-01\tAbsError: 3.18460e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13406e-02\tAbsError: 4.04330e+00\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 8.28645e+00\tAbsError: 2.11022e+16\n", + " Region: \"zone_1\"\tRelError: 5.89404e-01\tAbsError: 1.45838e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.85324e-01\tAbsError: 2.58807e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.07995e-03\tAbsError: 1.43250e+00\n", + " Region: \"zone_3\"\tRelError: 7.69704e+00\tAbsError: 2.11022e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.08442e-02\tAbsError: 1.06070e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.62030e-02\tAbsError: 1.04952e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.63591e+00\tAbsError: 2.58945e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.08866e-03\tAbsError: 1.43560e+00\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.26028e-01\tAbsError: 5.52255e+16\n", + " Region: \"zone_1\"\tRelError: 1.30298e-01\tAbsError: 6.51520e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12331e-01\tAbsError: 2.58932e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79670e-02\tAbsError: 6.48931e+00\n", + " Region: \"zone_3\"\tRelError: 1.95730e-01\tAbsError: 5.52255e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.17944e-02\tAbsError: 2.75730e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.36243e-02\tAbsError: 2.76524e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12331e-01\tAbsError: 2.58932e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79798e-02\tAbsError: 6.49411e+00\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.26646e+01\tAbsError: 1.05374e+16\n", + " Region: \"zone_1\"\tRelError: 1.63183e+01\tAbsError: 9.50748e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63156e+01\tAbsError: 9.16413e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.68897e-03\tAbsError: 9.41583e-01\n", + " Region: \"zone_3\"\tRelError: 1.63463e+01\tAbsError: 1.05374e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31069e-02\tAbsError: 5.23674e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.49207e-02\tAbsError: 5.30063e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63156e+01\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69706e-03\tAbsError: 9.44437e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.01824e-01\tAbsError: 1.39289e+17\n", + " Region: \"zone_1\"\tRelError: 1.05892e-01\tAbsError: 5.70881e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 8.98624e-02\tAbsError: 1.05192e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60298e-02\tAbsError: 5.69829e+00\n", + " Region: \"zone_3\"\tRelError: 2.95932e-01\tAbsError: 1.39289e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.91152e-02\tAbsError: 6.95329e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10025e-01\tAbsError: 6.97560e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 8.07486e-02\tAbsError: 1.05208e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60433e-02\tAbsError: 5.70315e+00\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.58482e+00\tAbsError: 6.34667e+15\n", + " Region: \"zone_1\"\tRelError: 2.32125e+00\tAbsError: 4.26139e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32004e+00\tAbsError: 1.24165e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21533e-03\tAbsError: 4.26014e-01\n", + " Region: \"zone_3\"\tRelError: 7.26357e+00\tAbsError: 6.34667e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94984e-03\tAbsError: 3.16660e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.69319e-03\tAbsError: 3.18007e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.25171e+00\tAbsError: 1.24217e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21533e-03\tAbsError: 4.26014e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.91415e-01\tAbsError: 1.00021e+17\n", + " Region: \"zone_1\"\tRelError: 5.15868e-02\tAbsError: 4.56806e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.03019e-02\tAbsError: 1.18963e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28487e-03\tAbsError: 4.55616e-01\n", + " Region: \"zone_3\"\tRelError: 1.39828e-01\tAbsError: 1.00021e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.62230e-02\tAbsError: 4.99301e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.09910e-02\tAbsError: 5.00912e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.13235e-02\tAbsError: 1.18981e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29038e-03\tAbsError: 4.57437e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.10109e-01\tAbsError: 2.49944e+15\n", + " Region: \"zone_1\"\tRelError: 2.73036e-01\tAbsError: 9.44224e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73009e-01\tAbsError: 7.54274e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.67762e-05\tAbsError: 9.36682e-03\n", + " Region: \"zone_3\"\tRelError: 5.37074e-01\tAbsError: 2.49944e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.44605e-03\tAbsError: 1.22669e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.58618e-04\tAbsError: 1.27274e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.30942e-01\tAbsError: 7.59068e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.67897e-05\tAbsError: 9.37175e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.04251e-02\tAbsError: 8.30667e+15\n", + " Region: \"zone_1\"\tRelError: 2.75203e-03\tAbsError: 6.42693e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57122e-03\tAbsError: 6.56089e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80808e-04\tAbsError: 6.42037e-02\n", + " Region: \"zone_3\"\tRelError: 7.67309e-03\tAbsError: 8.30667e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.62570e-03\tAbsError: 4.13378e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11159e-03\tAbsError: 4.17290e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.54923e-04\tAbsError: 6.56149e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80878e-04\tAbsError: 6.42290e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.50361e-02\tAbsError: 6.78895e+13\n", + " Region: \"zone_1\"\tRelError: 2.37122e-02\tAbsError: 9.45855e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36853e-02\tAbsError: 1.50946e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69242e-05\tAbsError: 9.45704e-03\n", + " Region: \"zone_3\"\tRelError: 5.13239e-02\tAbsError: 6.78895e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.92168e-04\tAbsError: 3.35710e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.54573e-05\tAbsError: 3.43185e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.10793e-02\tAbsError: 1.52419e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69352e-05\tAbsError: 9.46083e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.43138e-03\tAbsError: 2.10283e+15\n", + " Region: \"zone_1\"\tRelError: 6.81118e-04\tAbsError: 9.31262e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.55096e-04\tAbsError: 1.84496e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.60224e-05\tAbsError: 9.29417e-03\n", + " Region: \"zone_3\"\tRelError: 1.75026e-03\tAbsError: 2.10283e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.38215e-04\tAbsError: 1.04835e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.17284e-04\tAbsError: 1.05448e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.68722e-04\tAbsError: 1.84544e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.60358e-05\tAbsError: 9.29887e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.59505e-02\tAbsError: 5.66225e+13\n", + " Region: \"zone_1\"\tRelError: 1.83279e-02\tAbsError: 3.54044e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83269e-02\tAbsError: 2.54887e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00068e-06\tAbsError: 3.51495e-04\n", + " Region: \"zone_3\"\tRelError: 3.76225e-02\tAbsError: 5.66225e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.14084e-04\tAbsError: 2.81906e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.55711e-05\tAbsError: 2.84319e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74519e-02\tAbsError: 2.56399e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00120e-06\tAbsError: 3.51676e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.03928e-04\tAbsError: 1.40333e+14\n", + " Region: \"zone_1\"\tRelError: 1.24164e-04\tAbsError: 2.26244e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17835e-04\tAbsError: 2.06645e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.32904e-06\tAbsError: 2.26038e-03\n", + " Region: \"zone_3\"\tRelError: 1.79764e-04\tAbsError: 1.40333e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.30254e-04\tAbsError: 6.96368e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.63288e-05\tAbsError: 7.06959e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68486e-05\tAbsError: 2.06703e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.33247e-06\tAbsError: 2.26161e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 7.88395e-04\tAbsError: 2.50647e+12\n", + " Region: \"zone_1\"\tRelError: 2.67678e-04\tAbsError: 3.14356e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66781e-04\tAbsError: 1.15072e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.96866e-07\tAbsError: 3.14241e-04\n", + " Region: \"zone_3\"\tRelError: 5.20717e-04\tAbsError: 2.50647e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.42005e-06\tAbsError: 1.25767e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.70094e-06\tAbsError: 1.24880e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.06699e-04\tAbsError: 1.15714e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.97159e-07\tAbsError: 3.14358e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 5.99632e-05\tAbsError: 4.11052e+13\n", + " Region: \"zone_1\"\tRelError: 2.28310e-05\tAbsError: 2.19806e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.22169e-05\tAbsError: 4.64136e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.14063e-07\tAbsError: 2.19342e-04\n", + " Region: \"zone_3\"\tRelError: 3.71322e-05\tAbsError: 4.11052e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38645e-05\tAbsError: 2.04271e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.71535e-06\tAbsError: 2.06782e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.93797e-06\tAbsError: 4.64170e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.14301e-07\tAbsError: 2.19426e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 3.01493e-03\tAbsError: 2.03887e+12\n", + " Region: \"zone_1\"\tRelError: 9.68351e-04\tAbsError: 1.94584e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.68295e-04\tAbsError: 8.45891e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.51588e-08\tAbsError: 1.93738e-05\n", + " Region: \"zone_3\"\tRelError: 2.04658e-03\tAbsError: 2.03887e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.90840e-06\tAbsError: 1.01569e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.17272e-06\tAbsError: 1.02318e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03944e-03\tAbsError: 8.50612e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.51787e-08\tAbsError: 1.93808e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.13878e-04\tAbsError: 1.24488e+11\n", + " Region: \"zone_1\"\tRelError: 6.77267e-05\tAbsError: 1.32659e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.76887e-05\tAbsError: 6.49775e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.79174e-08\tAbsError: 1.32594e-05\n", + " Region: \"zone_3\"\tRelError: 1.46151e-04\tAbsError: 1.24488e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.41336e-07\tAbsError: 6.10291e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.66825e-07\tAbsError: 6.34588e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45305e-04\tAbsError: 6.53401e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.79209e-08\tAbsError: 1.32605e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:42:48\u001b[0m.\u001b[1;36m551\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.56196e-04\tAbsError: 8.22099e+10\n", + " Region: \"zone_1\"\tRelError: 4.96683e-05\tAbsError: 1.29947e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.96646e-05\tAbsError: 3.20602e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.70688e-09\tAbsError: 1.29627e-06\n", + " Region: \"zone_3\"\tRelError: 1.06527e-04\tAbsError: 8.22099e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53254e-07\tAbsError: 4.09765e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.71613e-07\tAbsError: 4.12334e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06199e-04\tAbsError: 3.22381e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.70726e-09\tAbsError: 1.29639e-06\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.81376e-05\tAbsError: 8.11356e+09\n", + " Region: \"zone_1\"\tRelError: 5.70565e-06\tAbsError: 6.56313e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 5.70378e-06\tAbsError: 3.58334e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87514e-09\tAbsError: 6.55955e-07\n", + " Region: \"zone_3\"\tRelError: 1.24320e-05\tAbsError: 8.11356e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21600e-08\tAbsError: 4.01059e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.61223e-08\tAbsError: 4.10296e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23818e-05\tAbsError: 3.60254e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87583e-09\tAbsError: 6.56203e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:42:49\u001b[0m.\u001b[1;36m618\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 1.2\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.06075e+01\tAbsError: 2.79862e+18\n", + " Region: \"zone_1\"\tRelError: 7.94145e+00\tAbsError: 4.09534e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.94145e+00\tAbsError: 4.09533e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.59504e-10\tAbsError: 9.07782e-08\n", + " Region: \"zone_3\"\tRelError: 2.66604e+00\tAbsError: 2.79862e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.05077e-01\tAbsError: 1.39826e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.97560e-01\tAbsError: 1.40036e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66340e+00\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.59605e-10\tAbsError: 9.08149e-08\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 8.81850e-01\tAbsError: 3.97971e+17\n", + " Region: \"zone_1\"\tRelError: 2.47010e-01\tAbsError: 3.38007e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.37556e-01\tAbsError: 3.07618e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.45414e-03\tAbsError: 3.34931e+00\n", + " Region: \"zone_3\"\tRelError: 6.34840e-01\tAbsError: 3.97971e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14857e-01\tAbsError: 1.99270e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.03011e-01\tAbsError: 1.98701e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07516e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.45541e-03\tAbsError: 3.34965e+00\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.67895e-01\tAbsError: 4.72516e+16\n", + " Region: \"zone_1\"\tRelError: 1.50726e-01\tAbsError: 5.59199e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35198e-01\tAbsError: 2.58844e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55275e-02\tAbsError: 5.56611e+00\n", + " Region: \"zone_3\"\tRelError: 2.17169e-01\tAbsError: 4.72516e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.45897e-02\tAbsError: 2.35836e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.18017e-02\tAbsError: 2.36679e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35232e-01\tAbsError: 2.58775e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55454e-02\tAbsError: 5.57271e+00\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.33086e-01\tAbsError: 8.94267e+16\n", + " Region: \"zone_1\"\tRelError: 1.27506e-01\tAbsError: 5.03041e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13299e-01\tAbsError: 9.16402e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42065e-02\tAbsError: 5.02125e+00\n", + " Region: \"zone_3\"\tRelError: 3.05581e-01\tAbsError: 8.94267e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.77157e-02\tAbsError: 4.46015e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.56957e-02\tAbsError: 4.48253e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17945e-01\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42247e-02\tAbsError: 5.02775e+00\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.30726e-01\tAbsError: 6.72803e+16\n", + " Region: \"zone_1\"\tRelError: 7.35635e-02\tAbsError: 3.08358e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.26895e-02\tAbsError: 9.81454e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.74003e-04\tAbsError: 3.07376e-01\n", + " Region: \"zone_3\"\tRelError: 1.57162e-01\tAbsError: 6.72803e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.94071e-02\tAbsError: 3.35566e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.14449e-02\tAbsError: 3.37237e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.54322e-02\tAbsError: 9.82805e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.78127e-04\tAbsError: 3.08879e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.07982e-02\tAbsError: 4.75532e+15\n", + " Region: \"zone_1\"\tRelError: 2.87315e-03\tAbsError: 7.10545e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67193e-03\tAbsError: 3.42983e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.01215e-04\tAbsError: 7.10202e-02\n", + " Region: \"zone_3\"\tRelError: 7.92501e-03\tAbsError: 4.75532e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.99321e-03\tAbsError: 2.36925e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.95393e-03\tAbsError: 2.38607e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.77664e-03\tAbsError: 3.43025e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.01229e-04\tAbsError: 7.10259e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.25637e-03\tAbsError: 1.33088e+15\n", + " Region: \"zone_1\"\tRelError: 1.51076e-03\tAbsError: 5.63944e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49479e-03\tAbsError: 1.60161e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59642e-05\tAbsError: 5.62343e-03\n", + " Region: \"zone_3\"\tRelError: 2.74561e-03\tAbsError: 1.33088e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.72024e-04\tAbsError: 6.65349e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.04225e-04\tAbsError: 6.65530e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55339e-03\tAbsError: 1.61219e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59735e-05\tAbsError: 5.62680e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.40119e-04\tAbsError: 1.07870e+14\n", + " Region: \"zone_1\"\tRelError: 1.10130e-04\tAbsError: 1.99295e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04476e-04\tAbsError: 1.10955e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.65450e-06\tAbsError: 1.99184e-03\n", + " Region: \"zone_3\"\tRelError: 2.29988e-04\tAbsError: 1.07870e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.77399e-05\tAbsError: 5.36836e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.81953e-05\tAbsError: 5.41868e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08396e-04\tAbsError: 1.11836e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.65725e-06\tAbsError: 1.99285e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.15955e-04\tAbsError: 3.29274e+13\n", + " Region: \"zone_1\"\tRelError: 4.09483e-05\tAbsError: 2.57424e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.02187e-05\tAbsError: 4.28366e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.29581e-07\tAbsError: 2.56996e-04\n", + " Region: \"zone_3\"\tRelError: 7.50067e-05\tAbsError: 3.29274e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.50866e-06\tAbsError: 1.64259e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.70008e-05\tAbsError: 1.65016e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.17673e-05\tAbsError: 4.31616e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.29977e-07\tAbsError: 2.57139e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.48312e-05\tAbsError: 3.74352e+12\n", + " Region: \"zone_1\"\tRelError: 5.08968e-06\tAbsError: 7.35732e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.88096e-06\tAbsError: 5.18501e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08719e-07\tAbsError: 7.35214e-05\n", + " Region: \"zone_3\"\tRelError: 9.74149e-06\tAbsError: 3.74352e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.01215e-07\tAbsError: 1.86497e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.86664e-06\tAbsError: 1.87855e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.06480e-06\tAbsError: 5.22650e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08829e-07\tAbsError: 7.35626e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:42:59\u001b[0m.\u001b[1;36m266\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 1.3\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31816\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.95808e+00\tAbsError: 3.06192e+18\n", + " Region: \"zone_1\"\tRelError: 1.42698e+00\tAbsError: 4.09645e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42698e+00\tAbsError: 4.09530e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.26923e-08\tAbsError: 1.15159e-05\n", + " Region: \"zone_3\"\tRelError: 1.53110e+00\tAbsError: 3.06192e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.53961e-01\tAbsError: 1.53038e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.42414e-01\tAbsError: 1.53154e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 6.34728e-01\tAbsError: 4.09542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.27089e-08\tAbsError: 1.15220e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 6.86333e-01\tAbsError: 3.15984e+17\n", + " Region: \"zone_1\"\tRelError: 1.55509e-01\tAbsError: 4.51190e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43034e-01\tAbsError: 3.07615e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24749e-02\tAbsError: 4.48114e+00\n", + " Region: \"zone_3\"\tRelError: 5.30824e-01\tAbsError: 3.15984e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98537e-01\tAbsError: 1.58139e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.76751e-01\tAbsError: 1.57845e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43059e-01\tAbsError: 3.07632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24763e-02\tAbsError: 4.48157e+00\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.29936e-01\tAbsError: 6.93044e+16\n", + " Region: \"zone_1\"\tRelError: 9.97344e-02\tAbsError: 3.68280e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 8.96071e-02\tAbsError: 2.58695e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01274e-02\tAbsError: 3.65693e+00\n", + " Region: \"zone_3\"\tRelError: 1.30201e-01\tAbsError: 6.93044e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50308e-02\tAbsError: 3.46144e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.54055e-02\tAbsError: 3.46900e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 8.96375e-02\tAbsError: 2.58853e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01274e-02\tAbsError: 3.65693e+00\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.89249e-01\tAbsError: 9.05371e+16\n", + " Region: \"zone_1\"\tRelError: 3.84471e-02\tAbsError: 2.79280e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.06783e-02\tAbsError: 9.16366e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.76879e-03\tAbsError: 2.78363e+00\n", + " Region: \"zone_3\"\tRelError: 1.50802e-01\tAbsError: 9.05371e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.62900e-02\tAbsError: 4.52528e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.56716e-02\tAbsError: 4.52844e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.10713e-02\tAbsError: 9.16533e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.76879e-03\tAbsError: 2.78363e+00\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.05096e-02\tAbsError: 5.73831e+16\n", + " Region: \"zone_1\"\tRelError: 1.80246e-02\tAbsError: 2.55628e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73024e-02\tAbsError: 6.33722e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.22135e-04\tAbsError: 2.54994e-01\n", + " Region: \"zone_3\"\tRelError: 6.24850e-02\tAbsError: 5.73831e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05558e-02\tAbsError: 2.86776e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.36736e-02\tAbsError: 2.87055e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75308e-02\tAbsError: 6.33885e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.24828e-04\tAbsError: 2.55896e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.27575e-03\tAbsError: 4.47182e+15\n", + " Region: \"zone_1\"\tRelError: 7.50950e-04\tAbsError: 4.10991e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.36726e-04\tAbsError: 4.45500e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14224e-04\tAbsError: 4.10545e-02\n", + " Region: \"zone_3\"\tRelError: 4.52480e-03\tAbsError: 4.47182e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.81462e-03\tAbsError: 2.22587e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.36991e-04\tAbsError: 2.24595e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58880e-04\tAbsError: 4.45567e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14315e-04\tAbsError: 4.10905e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 7.81415e-04\tAbsError: 1.27438e+15\n", + " Region: \"zone_1\"\tRelError: 1.31156e-04\tAbsError: 4.99777e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17293e-04\tAbsError: 9.92832e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38636e-05\tAbsError: 4.98785e-03\n", + " Region: \"zone_3\"\tRelError: 6.50259e-04\tAbsError: 1.27438e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.49678e-04\tAbsError: 6.34942e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.67569e-04\tAbsError: 6.39442e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19142e-04\tAbsError: 9.93066e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38699e-05\tAbsError: 4.99010e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.35366e-04\tAbsError: 7.12812e+13\n", + " Region: \"zone_1\"\tRelError: 2.99971e-05\tAbsError: 1.51242e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57968e-05\tAbsError: 1.28730e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.20023e-06\tAbsError: 1.51114e-03\n", + " Region: \"zone_3\"\tRelError: 1.05369e-04\tAbsError: 7.12812e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.89869e-05\tAbsError: 3.53434e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.86099e-06\tAbsError: 3.59377e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23191e-05\tAbsError: 1.28770e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.20200e-06\tAbsError: 1.51177e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.58972e-05\tAbsError: 1.82475e+13\n", + " Region: \"zone_1\"\tRelError: 6.53529e-06\tAbsError: 1.30003e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.17481e-06\tAbsError: 3.11367e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.60483e-07\tAbsError: 1.29691e-04\n", + " Region: \"zone_3\"\tRelError: 2.93619e-05\tAbsError: 1.82475e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88247e-05\tAbsError: 9.03485e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.04072e-06\tAbsError: 9.21267e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.13603e-06\tAbsError: 3.12811e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.60523e-07\tAbsError: 1.29709e-04\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:09\u001b[0m.\u001b[1;36m742\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:11\u001b[0m.\u001b[1;36m095\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:11\u001b[0m.\u001b[1;36m104\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.0.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:11\u001b[0m.\u001b[1;36m218\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.5.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:11\u001b[0m.\u001b[1;36m350\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.55.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:11\u001b[0m.\u001b[1;36m479\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.6.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:11\u001b[0m.\u001b[1;36m602\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.65.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:11\u001b[0m.\u001b[1;36m740\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.7.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:11\u001b[0m.\u001b[1;36m839\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.75.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:11\u001b[0m.\u001b[1;36m971\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.8.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:12\u001b[0m.\u001b[1;36m100\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.85.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:12\u001b[0m.\u001b[1;36m234\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.9.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:12\u001b[0m.\u001b[1;36m394\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.95.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:12\u001b[0m.\u001b[1;36m529\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.0.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:12\u001b[0m.\u001b[1;36m660\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.05.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:12\u001b[0m.\u001b[1;36m789\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.1.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:12\u001b[0m.\u001b[1;36m913\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.15.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:13\u001b[0m.\u001b[1;36m042\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.2.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:13\u001b[0m.\u001b[1;36m174\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.25.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:13\u001b[0m.\u001b[1;36m306\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.3.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:13\u001b[0m.\u001b[1;36m436\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mFinished_reading devsim data\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:13\u001b[0m.\u001b[1;36m449\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading heat-charge solver CHARGE output.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:13\u001b[0m.\u001b[1;36m569\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor charge_global_mnt\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:14\u001b[0m.\u001b[1;36m815\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor potential_global_mnt\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:15\u001b[0m.\u001b[1;36m464\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor capacitance_global_mnt\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:16\u001b[0m.\u001b[1;36m790\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor temp_mnt\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:17\u001b[0m.\u001b[1;36m467\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mPostprocess time (s): 6.3579\u001b[0m \n" + ] + }, + { + "data": { + "text/plain": [ + "CompletedProcess(args=['cp', 'output/simulation_data.hdf5', 'tmp_B_example/'], returncode=0)" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "results = run_heat_sim(sim=sim, log_level=\"DEBUG\")\n", + "subprocess.run([\"cp\", \"-r\", \"tmp\", \"tmp_Ba_example\"]) \n", + "subprocess.run([\"cp\", \"output/simulation_data.hdf5\", \"tmp_Ba_example/\"]) " + ] + }, + { + "cell_type": "markdown", + "id": "cc76b0ee-ae0a-4e43-b81c-03fbcfac3aa6", + "metadata": {}, + "source": [ + "## Post-processing and Plotting\n", + "After the simulation is complete, this section processes the results and generates plots. The code reads the simulation data from the output files and plots:\n", + "- **Potential**: How the potential is distributed in the simulation region.\n", + "- **Temperature**: Same for temperature.\n", + "- **I-V Curve**: The current-voltage characteristic of the device." + ] + }, + { + "cell_type": "markdown", + "id": "1a6ea784-047c-4021-8a34-73795cca4b3f", + "metadata": {}, + "source": [ + "### Potential distribution" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "2eba199a-2240-4ca3-80e9-a417a19e94f4", + "metadata": {}, + "outputs": [], + "source": [ + "pot_05V = results[\"potential_global_mnt\"].potential.sel(voltage=0.5, z=0)\n", + "pot_12V = results[\"potential_global_mnt\"].potential.sel(voltage=1.2, z=0)\n", + "pot_05V_cst = results_cst[\"potential_global_mnt\"].potential.sel(voltage=0.5, z=0)\n", + "pot_12V_cst = results_cst[\"potential_global_mnt\"].potential.sel(voltage=1.2, z=0)\n", + "pot_05V_iso = results_iso[\"potential_global_mnt\"].potential.sel(voltage=0.5, z=0)\n", + "pot_12V_iso = results_iso[\"potential_global_mnt\"].potential.sel(voltage=1.2, z=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "5f0030ac-e615-4220-bbdd-6b94d3b37395", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABVYAAAGWCAYAAACTnti1AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8fJSN1AAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOx9aaAdRdH20+eS3IRsJJAQ1oTVgApBECSCgAJBQQwCr8QICQIuCL5sougnq4go66uyy6oRBAXBBVAEQUAEQUAUBQQUJAlbIBAg4Z76fkwvVdU9c+ace2/WfpJzZ7q7urt6melnarp7DBERMjIyMjIyMjIyMjIyMjIyMjIyMjIyaqOxuBXIyMjIyMjIyMjIyMjIyMjIyMjIyFjakA2rGRkZGRkZGRkZGRkZGRkZGRkZGRltIhtWMzIyMjIyMjIyMjIyMjIyMjIyMjLaRDasZmRkZGRkZGRkZGRkZGRkZGRkZGS0iWxYzcjIyMjIyMjIyMjIyMjIyMjIyMhoE9mwmpGRkZGRkZGRkZGRkZGRkZGRkZHRJrJhNSMjIyMjIyMjIyMjIyMjIyMjIyOjTWTDakZGRkZGRkZGRkZGRkZGRkZGRkZGm8iG1YyMjIyMjIyMjIyMjIyMjIyMjIyMNpENqxl9BmMMjj/++MWtRsZyiuOPPx7GmI7ibr/99th+++07zlv3/UsvvRTGGDz11FMdp1kXM2bMwPjx4737qaeegjEGp512Wr/nDfSu3pdU3HjjjZg4cSIGDRoEYwzmzp0LALjiiiswYcIEDBgwACuttNJi1TEjIyMjo3NkzpqxOHHbbbfBGIPbbrut7bi95V2a8zreeOmll3acZl2k+PH48eOx22679XveQO/qfUnFY489hp133hkjRoyAMQbXXXcdAODee+/FpEmTMGTIEBhj8Je//GWx6pmRsawjG1YzSuEGP/4bM2YMdthhB/z6179e3Or1C37wgx9go402wqBBg7DBBhvgu9/9bq14bqBO/f74xz+Wxlu4cCFWWWUVbLPNNqUyRIS11loL73nPe9ouTxnGjx8fteu2226La6+9tu20/va3v+H4449fJEbE+fPn4/jjj1+mCJHDkly2JVm3utB9nv922WUXL/fiiy/if/7nfzB48GB8//vfxxVXXIEhQ4bg0UcfxYwZM7DeeuvhwgsvxAUXXFA7b/cQ5H4rrrgi1l57bXz0ox/FJZdcgrfeeqs07i9+8QvssssuWHnllTFo0CBsuOGGOOqoo/Diiy8m5W+44QZst912GDNmDFZccUWsu+66+J//+R/ceOON9SsrIyMjYynD8sZZzz33XOy9995Ye+21YYzBjBkzasd99NFHcfTRR2PixIkYNmwYVlttNey666647777WsbdfffdseKKK2LevHmlMtOmTcPAgQNLx6l2MWPGDNGuw4cPx6abborTTz+9cvxMYVHzmXPOOWeRGCwXB5bksi3JutWB7vP8N2jQICE7ffp0PPzwwzj55JNxxRVXYIsttsDChQux995746WXXsKZZ56JK664AuPGjauVt36m7e7uxqqrrortt98e3/zmN/H888+Xxn3kkUfwqU99CmussQa6u7ux+uqrY9q0aXjkkUeS8g8//DD22msvjBs3DoMGDcIaa6yBnXbaqfbzd0bGkoQVFrcCGUs+TjzxRKyzzjogIsyePRuXXnopPvKRj+CGG24QbxjfeOMNrLDC0tulzj//fHzuc5/DnnvuiSOOOAJ33HEHvvjFL2L+/Pn48pe/XCuNL37xi3jve98r/NZff/1S+QEDBmDvvffG+eefj6effjo56N1+++145plncPjhh7dXoBaYOHEijjzySADAf//7X5x//vn4+Mc/jnPPPRef+9znaqfzt7/9DSeccAK23357MXOyPzB//nyccMIJABDNMP1//+//4Stf+Uq/5l8X++67L/bZZx90d3fXjlNVtipceOGFaDab7arYFpaWem8F3uc5Vl99dX9+7733Yt68eTjppJOw4447ev/bbrsNzWYTZ599duU1XYVzzz0XQ4cOxVtvvYVnn30WN910Ez796U/jrLPOwi9+8QustdZaQv6oo47C6aefjk033RRf/vKXMWrUKNx///343ve+hyuvvBK33HIL3vGOd3j50047DV/60pew3Xbb4ZhjjsGKK66Ixx9/HL/97W9x5ZVXCgNyRkZGxrKI5YWznnrqqZg3bx623HJLPPfcc23Fveiii/CDH/wAe+65Jw4++GC88sorOP/88/G+970PN954oxj7NKZNm4YbbrgB1157Lfbbb78ofP78+fj5z3/uXwj2Fbq7u3HRRRcBAObOnYuf/vSnOOqoo3DvvffiyiuvrJ1Op1yrU5xzzjlYZZVVIsP3Bz7wAbzxxhsYOHBg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JZdg7733xo033lh5XaXQbr1feuml2H///fHe974Xp5xyCmbPno2zzz4bd955Jx544AFh+Gv1rNLXSHHWgQMHYvjw4fj4xz+OlVZaCYcffjimTp2Kj3zkIxg6dChWXXVVrLHGGvjmN7/pl/O3w/tbwXH2m2++GSeffDKAYn//8ePHY9ttt03G+cAHPoDx48eLiUrjxo3D3Xffjb/+9a9417ve1Wf6ZfQOmbP2ApSRUYJLLrmEAES/7u5uuvTSSyN5AHTcccd59/z58yOZu+++mwDQ5Zdf7v023XRT2nXXXdvW78knn0zql/rdeuutlWl94QtfoK6urmTY6NGjaZ999qmMf+edd9Kee+5JP/jBD+jnP/85nXLKKbTyyivToEGD6P77729ZlkceeYQA0DHHHCP899lnHxo0aBC98sorLdNoB+PGjaOdd96Znn/+eXr++efpwQcfpH322YcA0KGHHkpERFOmTKGBAwfSE0884eP997//pWHDhtEHPvAB73f11Vcn63jevHm00kor0UEHHST8Z82aRSNGjBD+06dPJwB04oknCtnNNtuMNt98c+9+/vnno37mcNxxx5G+paX64OTJk2ndddcVfttttx1tt912kSzHX/7yFwJABx98sPD/5Cc/Genkrp0nn3ySiIiuvfZaAkD33ntvafpVZXP185WvfCUZNm7cOO9218XgwYPpmWee8f733HMPAaDDDz+8Zbl1mu3Uu6unAw88UMgdddRRBIB+97vfeb9x48YRALr99tu935w5c6i7u5uOPPLIKK/ewOWV+p1yyilezrWdbitXzueff77tvFvFffnllwkA7bHHHkREdN111xEAOvPMMyvTHT58OL3nPe/x7mOPPZYA0JAhQ+jDH/4wnXzyyfTnP/+5bX0z+g7NZpOe+uvD9MLzc3r1e/GFF6jZbC7u4mRkLLFYnjirxpAhQ2j69Olt68Rx++23kzGGvv71r7eUffvtt2m11VajrbfeWvifd955BIBuuummXumiMX36dBoyZIjnrI8//jh985vfJGMMbbLJJkREdNZZZxEA+uEPf+jjLViwgLbeemsaOnQovfrqq0RUzWc+9KEP0bvf/W568803vV+z2aRJkybRBhts4P1cX9txxx3Fffnwww+nrq4umjt3rvd75zvfmeRZt956a9TWqT54yimnkDGGnn76ae+X4rsaCxYsoDFjxtDEiRPprbfe8v4XXHABARA6ub55ySWXEFHgJN/5zncq8ygrm6ufbbbZht5+++1kmOPHRIGf/fSnP/V+r7zyCq222mq02WabtSx3Ks269e7q6V3vehe98cYbXu4Xv/gFAaBjjz3W+9V9VukLuLxSv8mTJ3s513a6rVw5r7766rbzrhN30003pZEjRxIR0dy5cwkAfexjH6tMd/fddycA/lq8+eabqauri7q6umjrrbemo48+mm666SZasGBB2zpn9A0yZ+0d8ozVjJb4/ve/jw033BAAMHv2bPzwhz/EgQceiGHDhvm3vSnwt9ULFy7Eq6++ivXXXx8rrbQS7r//fuy7774AimVajzzyCB577DFssMEGtfUaO3Zs7aVXm266aWV41UbmgwYNarkMZ9KkSZg0aZJ377777thrr72wySab4Jhjjmn5Re6NN94Ym222Ga688kp885vfBFDsR3T99ddjt912K5211hvcfPPNYrlGV1cX9t13X5x66qno6enBzTffjClTpvi9cABgtdVWwyc/+UlceOGFePXVVyv1+s1vfoO5c+di6tSp4o1rV1cXttpqK9x6661RHL2367bbbosrrrii4zLyPvjKK69g4cKF2G677XDTTTfhlVdewYgRI2qn9atf/QpAsZk7x2GHHZbcxoHDve3+xS9+gU033bTjmSjtvA2fMmUK1lhjDe/ecsstsdVWW+FXv/oVzjjjjI7yrwNXT0cccYTwP/LII3Haaafhl7/8JXbYYQfvv/HGG4s33KNHj8Y73vEO/Otf/+pz3bbaait84xvfiPzbue/0B9ySTPeVZXccNmxYZbxhw4bh1Vdf9e4TTjgBEyZMwDnnnIObbroJv/71r/G1r30Nm222GX70ox/5meQZiw5EhKGrroqLN98MCyq+ol2FgcOG4dN/fgBEtHzOAMjIaAPLA2fta8yZMwef/OQnsc466+Doo49uKd/V1YV99tkHZ555Jp566im/+mjmzJlYddVV8aEPfajPdXz99dejJcaTJk3yHPFXv/oVxo4di6lTp/rwAQMG4Itf/CKmTp2K3//+92KPXY2XXnoJv/vd73DiiSdi3rx5fhwGgMmTJ+O4447Ds88+K3jVZz7zGXFP3nbbbXHmmWfi6aef7mhVC++Dr7/+Ot544w1MmjQJRIQHHngAa6+9du207rvvPsyZMwcnnniieL6ZMWMGvvSlL7XUY+DAgbjttttwwAEH1PrGRAoHHXRQ7f1UV199dTEjePjw4dhvv/1w6qmnYtasWRg7dmxHOrSCq6fjjz9e7L266667YsKECfjlL3/pP3bm0NfPKmUYNGgQbrjhhsi/zqzy/sbQoUM74qwA8Oqrr2LYsGHYaaedcPfdd+OUU07BTTfdhLvvvhvf/va3MXr0aFx00UX9vp1IRozMWXuHbFjNaIktt9xSLGefOnUqNttsMxxyyCHYbbfdSg2Sb7zxBk455RRccsklePbZZ8W08ldeecWfn3jiifjYxz6GDTfcEO9617uwyy67YN99921JSgYNGlS5wX47GDx4MBYsWJAMe/PNNzta0rT++uvjYx/7GH72s5+hp6enJbmYNm0ajjrqKNx1112YNGkSrrvuOsyfP7/WNgDPP/+82N9n6NChLT9m4IxMxhisuOKK2GijjbwBcNasWZg/f7744rjDRhtthGazif/85z+VS7Ufe+wxAIi+GumgjbKDBg2KSPPIkSPx8ssvV5ajCnfeeSeOO+443H333Zg/f74Ia9ew+vTTT6PRaGC99dYT/qk60thuu+2w55574oQTTsCZZ56J7bffHlOmTMEnP/nJ2l9GXWGFFfweVXWQeuDbcMMN8ZOf/KR2Gp3A1dP6668v/MeOHYuVVloJTz/9tPBPPSjUafdO+vwqq6zSZ/eMvsRrr70GIJBOd5zXgtTMmzcv2odq6tSpmDp1Kl599VXcc889uPTSSzFz5kx89KMfxV//+tel5qMNyxrefm0eel5/rbO4yxcvzcjoFZYHztqXeP3117Hbbrth3rx5+MMf/lD7Q1jTpk3DmWeeiZkzZ+KrX/0qnnnmGdxxxx344he/2JLvvvLKK2LCwsCBA1tuX8ONTN3d3VhnnXUEJ3r66aexwQYboNGQnw9xLxQ199B4/PHHQUT4+te/jq9//etJmTlz5gjDquYvzgDZKW/997//jWOPPRbXX399lAbvg3Xgyqu54IABA8SEiRS6u7tx6qmn4sgjj8Sqq66K973vfdhtt92w3377tWXgXGeddWrLrr/++pERxr0geeqpp/rNsOrqKcXlJ0yYgD/84Q/Cr9NnlU76fFdX1xJ5zwAK3toJZ+XyQPE9g5/97GdYsGABHnzwQVx77bU488wzsddee+Evf/kLNt54434qQUYVMmftDNmwmtE2Go0GdthhB5x99tl47LHHSo1rhx56KC655BIcdthh2HrrrTFixAgYY7DPPvug2Wx6uQ984AN44okn8POf/xw333wzLrroIpx55pk477zzcOCBB5bq0dPTIzaJr8KoUaNKyTRQzMTs6enBnDlzhKFiwYIFePHFFzv+cNRaa62FBQsW4PXXX28563Tq1Kk4+uijMXPmTEyaNAkzZ87EyJEj8ZGPfKRlPu9973sFaTzuuONaflynv41Mro2vuOKKJCHSH5Lo66+EPvHEE/jQhz6ECRMm4IwzzsBaa62FgQMH4le/+hXOPPNM0Qf7G8YYXHPNNfjjH/+IG264ATfddBM+/elP4/TTT8cf//jHWg8y3d3d0QNDX+jFHx4d+mIT/rpvKcvaPaUXRyd9fkmF+6iYM0a7B8GHHnqoNM7TTz+NV199tZR0Dh8+HDvttBN22mknDBgwAJdddhnuuece/0GDjIyMjOUByyJn7SssWLAAH//4x/HQQw/hpptuamufw8033xwTJkzAj3/8Y3z1q1/Fj3/8YxBRrckA//u//ys+KrXddttFHxPS6G8jk2vjo446CpMnT07K6BfGnfKXFHp6erDTTjvhpZdewpe//GVMmDABQ4YMwbPPPosZM2YsUs4KFKuxPvrRj+K6667DTTfdhK9//es45ZRT8Lvf/Q6bbbZZrTT6ep/dMl65KD8c1emzSid9fknFwoUL8c9//tPfL0aMGIHVVlutkrMCBaddY401ks/DAwcOxHvf+168973vxYYbboj9998fV199tf9wbEbG0oBsWM3oCO6r926mVQrXXHMNpk+fjtNPP937vfnmm5g7d24kO2rUKOy///7+408f+MAHcPzxx1eS1P/85z+134beeuutlV9EnDhxIoBiSQg3ZN53331oNps+vF3861//wqBBg2oZzlZffXXssMMOuPrqq/H1r38dv/nNbzBjxoxa5PpHP/qReBPa6m10K4wePRorrrgi/vGPf0Rhjz76KBqNht/4vozouJmdY8aM6TMy3M6SghtuuAFvvfUWrr/+ejGrILUFQR2MGzcOzWYTTzzxhHiznaqjMrzvfe/D+973Ppx88smYOXMmpk2bhiuvvBIHHnhgny+XcDOGOf75z3+KD4aNHDkyueRez+xoRzdXT4899phYej579mzMnTvXf8G0t+jrPr844ZaQuYe5DTfcEBtuuCGuu+46nH322cnlVZdffjkAVC5tdNhiiy1w2WWX4bnnnutDrTPawQoGoA4v8RWW47f/GRl9gWWNs/YFms0m9ttvP9xyyy34yU9+0tFLt2nTpuHrX/86HnroIcycORMbbLAB3vve97aMd/TRR4uPiXW61Jxj3LhxeOihh9BsNsVL6EcffdSHA+V8xnGIAQMG9KkBty5/evjhh/HPf/4Tl112Gfbbbz/vX3f7CA1X3scee0ysHFu4cCGefPLJWttNrLfeejjyyCNx5JFH4rHHHsPEiRNx+umn44c//CGA9rhhK7gZwzzNf/7znwDgeavrJ3PnzhUflErNRq6rm6unf/zjH9EKu3/84x99xln7o88vLlxzzTV44403xAuI3XbbDRdeeCH+8Ic/YJtttoni3HHHHXjqqafw2c9+tmX6bsVB5qyLD5mzdoa+nf6UsVxg4cKFuPnmmzFw4MDKPfu6urqit7bf/e53ozeLL774onAPHToU66+/Pt56661KPdx+VXV+rQjEBz/4QYwaNQrnnnuu8D/33HOx4oorii+/v/DCC3j00UfF0vLULIQHH3wQ119/PXbeeefaMw2nTZuGOXPm4LOf/SwWLlxY680/ALz//e/Hjjvu6H+9NTJ1dXVh5513xs9//nM89dRT3n/27NmYOXMmttlmG//GcciQIQAQPXxMnjwZw4cPxze/+U0sXLgwyqPuzA0O91Xe1INOqgwAouV8l1xySdv5AsCHP/xhAMD//d//Cf+zzjqrZdyXX345uhacsd7183bKVgfXXXcdnn32We/+05/+hHvuuceXAyhI86OPPira4sEHH8Sdd94p0mpHN/diQteL29eVX0u9QV/3+U7wxBNP+K8Sd4qZM2fioosuwtZbby32pTv22GPx8ssv43Of+1x0z/zzn/+MU089Fe9617uw5557AgDmz5+Pu+++O5nHr3/9awD1tq3I6B90md79MjIyOsOyyFnbwSuvvIJHH300Wkp+6KGH4qqrrsI555xTufdsFRxHPfbYY/GXv/ylNmfdeOONxfi9+eabd5Q/x0c+8hHMmjULV111lfd7++238d3vfhdDhw71huMyPjNmzBhsv/32OP/885MGnU44K1Bw5E45KxHh7LPP7ijfLbbYAqNHj8Z5550ntjq79NJLW+ozf/58vPnmm8JvvfXWw7Bhw0Q/r1u2Ovjvf/+La6+91rtfffVVXH755Zg4caJf9eYmbNx+++1e7vXXXxczQdvVbYsttsCYMWNw3nnnibL9+te/xt///vc+46z90efbxXPPPYdHH300+UxWFw8++CAOO+wwjBw5El/4whe8/5e+9CUMHjwYn/3sZ6N75EsvvYTPfe5zWHHFFcX+vrfeemtydrf7VkPmrIsPmbN2hjxjNaMlfv3rX/s3vnPmzMHMmTPx2GOP4Stf+Url8vbddtsNV1xxBUaMGIGNN94Yd999N377299i5ZVXFnIbb7wxtt9+e2y++eYYNWoU7rvvPlxzzTU45JBDKvXq6z1WTzrpJHzhC1/A3nvvjcmTJ+OOO+7AD3/4Q5x88sliH5zvfe97OOGEE8SMgk984hMYPHgwJk2ahDFjxuBvf/sbLrjgAqy44or41re+VVuPPffcEwcffDB+/vOfY6211sIHPvCBPilfJ/jGN76B3/zmN9hmm21w8MEHY4UVVsD555+Pt956C9/+9re93MSJE9HV1YVTTz0Vr7zyCrq7u/HBD34QY8aMwbnnnot9990X73nPe7DPPvtg9OjR+Pe//41f/vKXeP/734/vfe97bek0ePBgbLzxxrjqqquw4YYbYtSoUXjXu96VXL628847Y+DAgfjoRz+Kz372s3jttddw4YUXYsyYMR29BZ04cSKmTp2Kc845B6+88gomTZqEW265BY8//njLuJdddhnOOecc7LHHHlhvvfUwb948XHjhhRg+fLg3RLZTtjpYf/31sc022+Dzn/883nrrLZx11llYeeWVxYcpPv3pT+OMM87A5MmTccABB2DOnDk477zz8M53vlN8FKkd3TbddFNMnz4dF1xwAebOnYvtttsOf/rTn3DZZZdhypQp4sNVixrPPvusn2nBMXToUEyZMqXt9JwhlL98qMI111yDoUOHYsGCBXj22Wdx00034c4778Smm26Kq6++WshOmzYN9957L84++2z87W9/w7Rp0zBy5Ejcf//9uPjii7Hyyivjmmuu8R9Cmz9/PiZNmoT3ve992GWXXbDWWmth7ty5uO6663DHHXdgypQptZfvZWRkZCytWB44K1CsynnwwQcBFMbjhx56yH+ccffdd/d7vl577bXYf//9cckll2DGjBkAihef55xzDrbeemusuOKK0bi4xx57+JfmVVhnnXUwadIk/PznPweA2obV/sBnPvMZnH/++ZgxYwb+/Oc/Y/z48bjmmmtw55134qyzzvIrP6r4zPe//31ss802ePe7342DDjoI6667LmbPno27774bzzzzjK/vdrD55pvj3HPPxTe+8Q2sv/76GDNmTPLbAxMmTMB6662Ho446Cs8++yyGDx+On/70px3v1zpgwAB84xvfwGc/+1l88IMfxCc+8Qk8+eSTuOSSS1q+iP7nP/+JD33oQ/if//kfbLzxxlhhhRVw7bXXYvbs2dhnn33aLlsdbLjhhjjggANw7733YtVVV8XFF1+M2bNni8kQO++8M9Zee20ccMAB+NKXvoSuri5cfPHF/tmCo65uAwYMwKmnnor9998f2223HaZOnYrZs2fj7LPPxvjx43H44Yd3VJ6+wNtvv53krED9a5TjmGOOwWWXXYYnn3xSrF4rwx133IE333wTPT09ePHFF3HnnXfi+uuvx4gRI3DttdeKbd422GADXHbZZZg2bRre/e5344ADDsA666yDp556Cj/4wQ/wwgsv4Mc//rH4TsWhhx6K+fPnY4899sCECROwYMEC3HXXXbjqqqswfvx47L///m2VLyNjsYMyMkpwySWXEADxGzRoEE2cOJHOPfdcajabQh4AHXfccd798ssv0/7770+rrLIKDR06lCZPnkyPPvoojRs3jqZPn+7lvvGNb9CWW25JK620Eg0ePJgmTJhAJ598Mi1YsGARlTTgggsuoHe84x00cOBAWm+99ejMM8+MynnccccRALr11lu939lnn01bbrkljRo1ilZYYQVabbXV6FOf+hQ99thjbeuw9957EwA6+uije1ucUowbN4523XXXlnL3338/TZ48mYYOHUorrrgi7bDDDnTXXXdFchdeeCGtu+661NXVFdXNrbfeSpMnT6YRI0bQoEGDaL311qMZM2bQfffd52WmT59OQ4YMidJ1dc1x11130eabb04DBw4UfS4le/3119Mmm2xCgwYNovHjx9Opp55KF198MQGgJ5980sttt912tN1227WsjzfeeIO++MUv0sorr0xDhgyhj370o/Sf//wn6vvu2nF53H///TR16lRae+21qbu7m8aMGUO77babqIOqspXVjwsbN26cdz/55JMEgL7zne/Q6aefTmuttRZ1d3fTtttuSw8++GAU/4c//CGtu+66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8Yxn0Ate8AJ605veRI899tiO6RkILEHw1cB+QnDWwEFGcNajj2OVsx7rCMPqAcSNN97Y7I1mf5/73OdUnHvvvZcuv/xyuuqqq+jaa6/dJc33Njap90AgENhuXHfddfTHf/zH9P73v3+3VTkwOPGkFZ14Im/2O2mgal/72tfoq1/9avk9/vjW97G6//776ayzzlJ+T3nKU+iMM84YvWH/gR/4AfrP//k/0+/8zu/Qm970Jvr1X/91+sEf/MEt6xMIIIKv7h6CswYCgWMBwVmPPraDsx5EPGW3FQgcfbzxjW+kq6++elTmvPPOK+777ruPXv7yl9NLX/pSeve7373D2u1fLK33wM7hGc94Bh133HH0wAMPKP8HHniADh06tEtaBQI7j+uvv54+/OEP0yc+8Qk655xzdludfY/BALGi93/iP20pnUcffZT+5nO/SRlT3/KWt9C//bf/1pW/8cYb6Wd+5mdG0/zsZz+7sT6ve93rivuFL3whPetZz6JLLrmEvvCFL9C3fMu3bJxuIIAIvrp7CM567CA4a+CgIjjr0cV2cVbmFTHzNmm1dxCG1QOIM888k84888xZsvfeey+9/OUvp/PPP5/e8573HLhNiLcTS+o9sLM4/vjj6fzzz6fbb7+9bEK/Xq/p9ttvp+uvv353lQsEdgAiQq9//evpgx/8IH3sYx+jc889d7dVOhBgZvrGM86grX4n9Buedkrz9ecTTjihKz/XKHLo0KEm3SeffJIefPDBRTfsF110ERENr2CHYTWwXQi+unsIznrsIDhr4KAhOOvuYLs4a36r4aAhDKuBLu6991562cteRt/8zd9Mb3/72+krX/lKCYsnpDuLe+65hx588EG655576MiRI3TXXXcREdG3fuu30tOe9rTdVW6f4IYbbqAf+qEfogsuuIAuvPBCuummm+jRRx+l1772tbut2r7GI488Qp///OfL+Z/+6Z/SXXfdRWeccQY9+9nP3kXN9jeuu+46uvXWW+m//bf/Rqecckp5zfu0006jk046aZe129/YDoJ54okn0oknnjhbfq5R5OKLL6aHHnqI7rzzTjr//POJiOijH/0ordfrYiydgzxHPetZz5odJxDYLgRf3V0EZ915BGfdHQRn3R0EZ909HFSj6HaAZasm6cC+xXvf+97uhB3dZmdx9dVX06/92q81/r/zO79DL3vZy46+QvsUv/ALv0A/+7M/S/fffz+9+MUvpne+852LjAmB5fjYxz5GL3/5yxv/H/qhH6L3vve9R1+hA4IeSXrPe94zubIxsL/xile8gh544AG65ZZb6PDhw/Ta176WLrjgArr11luJaDBaXXLJJfS+972PLrzwQvrCF75At956K73yla+kpz/96fSHf/iH9IY3vIHOOecc+vjHP77LpQkcRARf3V0EZz06CM569BGcdXcQnDWwFxGG1UAgEAgEAoEDigcffJCuv/56+tCHPkSr1YquvPJKeuc731lWmn3xi1+kc889txhJ/uzP/ox+8Ad/kP74j/+YHn30Ufqmb/om+r7v+z76sR/7MTr11FN3uTSBQCAQCAQCgcDRRRhWA4FAIBAIBAKBQCAQCAQCgUBgIWJn90AgEAgEAoFAIBAIBAKBQCAQWIgwrAYCgUAgEAgEAoFAIBAIBAKBwEKEYTUQCAQCgUAgEAgEAoFAIBAIBBYiDKuBQCAQCAQCgUAgEAgEAoFAILAQYVgNBAKBQCAQCAQCgUAgEAgEAoGFCMNqIBAIBAKBQCAQCAQCgUAgEAgsRBhWA4FAIBAIBAKBQCAQCAQCgUBgIcKwGggEAoFAIBAIBAKBQCAQCAQCCxGG1UAgEAgEAoFAIBAIBAKBQCAQWIgwrAYCgUAgEAgEAoFAIBAIBAKBwEKEYTUQCBw4fOUrX6FDhw7RT//0Txe/3/3d36Xjjz+ebr/99l3ULBAIBAKBQCAQGBCcNRAIBI59sIjIbisRCAQCRxu//du/TVdccQX97u/+Lj33uc+lF7/4xfSqV72Kfv7nf363VQsEAoFAIBAIBIgoOGsgEAgc6wjDaiAQOLC47rrr6H/+z/9JF1xwAf3RH/0RffrTn6YTTjhht9UKBAKBQCAQCAQKgrMGAoHAsYswrAYCgQOLv/7rv6YXvOAF9Gd/9md055130gtf+MLdVikQCAQCgUAgEFAIzhoIBALHLmKP1UAgcGDxhS98ge677z5ar9f0xS9+cbfVCQQCgUAgEAgEGgRnDQQCgWMXsWI1EAgcSDzxxBN04YUX0otf/GJ67nOfSzfddBP90R/9EZ111lm7rVogEAgEAoFAIEBEwVkDgUDgWEcYVgOBwIHEj/7oj9J//a//lf7P//k/9LSnPY2+67u+i0477TT68Ic/vNuqBQKBQCAQCAQCRBScNRAIBI51xFYAgUDgwOFjH/sY3XTTTfTrv/7rdOqpp9JqtaJf//Vfp//1v/4X/dIv/dJuqxcIBAKBQCAQCARnDQQCgT2AWLEaCAQCgUAgEAgEAoFAIBAIBAILEStWA4FAIBAIBAKBQCAQCAQCgUBgIcKwGggEAoFAIBAIBAKBQCAQCAQCCxGG1UAgEAgEAoFAIBAIBAKBQCAQWIgwrAYCgUAgEAgEAoFAIBAIBAKBwEKEYTUQCAQCgUAgEAgEAoFAIBAIBBYiDKuBQCAQCAQCgUAgEAgEAoFAILAQYVgNBAKBQCAQCAQCgUAgEAgEAoGFCMNqIBAIBAKBQCAQCAQCgUAgEAgsRBhWA4FAIBAIBAKBQCAQCAQCgUBgIcKwGggEAoFAIBAIBAKBQCAQCAQCCxGG1UAgEAgEAoFAIBAIBAKBQCAQWIgwrAYCgUAgEAgEAoFAIBAIBAKBwEL8fwG+Zc51JPHjAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "showGrid = False\n", + "\n", + "fig, (ax) = plt.subplots(1, 2, figsize=(14, 4))\n", + "\n", + "cont1 = pot_05V.plot(grid=showGrid, ax=ax[0], cmap=\"turbo\")\n", + "cont2 = pot_12V.plot(grid=showGrid, ax=ax[1], cmap=\"turbo\")\n", + "\n", + "_ = ax[0].set_title(f\"Bias = {0.5:.1f} V - Potential distribution - Eff. DOS\")\n", + "_ = ax[1].set_title(f\"Bias = {1.2:.1f} V - Potential distribution - Eff. DOS\")\n", + "\n", + "plt.tight_layout()" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "1c952c0a-6827-4c06-b3be-58da75f38b24", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABV4AAAGRCAYAAACdTKj5AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8fJSN1AAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOx9d9wdRfX+M/umdxJCkUBCJxQTOqElkRIERHqLEBABpUj5ahT40URApCNKr4GIhI5IJwoKIh0Fg6gUKYGEQApJSHL3/P7YKefMzO69b0ud5/3cd6ecqTs78+zZ2bOKiAgJCQkJCQkJCQkJCQkJCQkJCQkJCQlthmxRVyAhISEhISEhISEhISEhISEhISEhYWlDUrwmJCQkJCQkJCQkJCQkJCQkJCQkJLQxkuI1ISEhISEhISEhISEhISEhISEhIaGNkRSvCQkJCQkJCQkJCQkJCQkJCQkJCQltjKR4TUhISEhISEhISEhISEhISEhISEhoYyTFa0JCQkJCQkJCQkJCQkJCQkJCQkJCGyMpXhMSEhISEhISEhISEhISEhISEhIS2hhJ8ZqQkJCQkJCQkJCQkJCQkJCQkJCQ0MZIiteEhISEhISEhISEhISEhISEhISEhDZGUrwu4VBK4ayzzlrU1UhYRnDzzTdDKYV3331XhF944YVYY4010NTUhKFDhwIAFixYgLFjx2LVVVdFlmXYc889F3p9lzS8++67UErh5ptvrit72GGHYdCgQe1ep8UZZWNs1qxZ+N73voeVVloJSimceOKJi7SeCQkJCQn1kThtwsJEGed65JFHMHToUHTp0gVKKXzxxRcAgHHjxmG99dZDx44d0adPn4Ve3yURgwYNwmGHHVZXruz+YllD2RiL3WclJCQsWUiK18UMZuHhvxVWWAEjR47Eww8/vKir1y644YYbMHjwYHTp0gVrr702fvWrXzWU7o9//GPQV+b317/+tTTd/Pnzsfzyy2PbbbctlSEirLrqqthkk02a3Z4yDBo0KDiv2223He69995m5/Xmm2/irLPOahVB8fuvc+fOWHHFFTFixAicd955mDJlSkP5PPbYYxg7diy22WYb3HTTTTjvvPMAADfeeCMuvPBC7Lvvvrjllltw0kkntbiuSzLOOuus0nHKfyNGjFgo9ZkzZw6OOOIIbLjhhujduzd69OiBIUOG4PLLL8f8+fMr696tWzesttpq+Na3voWbbroJX331VZvXr+q6VkrhjjvusLJlY+y8887DzTffjB/84AcYN24cDjnkkIbL59dplmXo06cPNtpoIxx11FF4/vnnS9N9+eWXOOecc/D1r38d3bp1Q+/evbHddtvh1ltvBREF8rNmzcKZZ56JDTfcEN27d0e/fv0wdOhQnHDCCfjoo4+a0WONYcaMGTj77LMxZMgQ9OjRA127dsWGG26In/zkJ0F5Dz74IIYPH44VVlgB3bp1wxprrIH9998fjzzyCABgxIgRDY3ppEBJSFi2saxx2quuugr77bcfVlttNSilGlI4GUyaNAljx47F0KFD0bNnT6y88srYbbfd8OKLL9ZNu8cee6Bbt26YOXNmqczo0aPRqVMnfPbZZw3XqQqHHXaYOK+9evXCkCFDcPHFFzebG8yePRtnnXUW/vjHP7aqTrw+HTp0QN++fbHpppvihBNOwJtvvtlQHp999hn2339/dO3aFb/+9a8xbtw4dO/eHZMmTcJhhx2GNddcE9dddx2uvfbaVtV1SUU9jsZ/CwvnnXcettpqK/Tv39/eS5544onBfUxb3fc0F1V99P3vf9/KlY2xsvusRuBfpz169MAaa6yBfffdF3fffTfyPI+mIyKMGzcO22+/Pfr06YNu3bpho402ws9+9jN8+eWXgXye57j11lux5ZZbom/fvujZsyfWWWcdHHrooZX35C1FrVbDTTfdhBEjRqBv377o3LkzBg0ahMMPPzyYM//+979j3333xcCBA9GlSxesssoq2Gmnnay+YXG7T0tYetFhUVcgIY6f/exnWH311UFE+OSTT3DzzTdj1113xYMPPojdd9/dys2ZMwcdOiy5p/Gaa67B97//feyzzz44+eST8cwzz+CHP/whZs+ejZ/85CcN5fHDH/4Qm2++uQhba621SuU7duyI/fbbD9dccw3ee+89DBw4MJB5+umn8cEHH7S5snDo0KH4v//7PwDARx99hGuuuQZ77703rrrqKrH41sObb76Js88+GyNGjGj1rkfTf7VaDVOmTMGzzz6LM888E5dccgnuvPNOfOMb37CyhxxyCA488EB07tzZhj311FPIsgw33HADOnXqJMJXWWUVXHrppa2q35KOvffeW4zHWbNm4Qc/+AH22msv7L333jZ8xRVXxMCBAzFnzhx07Nix3eozZ84cvPHGG9h1110xaNAgZFmGZ599FieddBKef/55jB8/Pkhz1VVXoUePHvjqq6/w4Ycf4tFHH8V3v/tdXHbZZfj973+PVVddtc3rGbuuAWDYsGHWXTbGnnrqKWy11VY488wzW1Q2v05nzpyJf/7zn5gwYQKuu+46nHTSSbjkkkuE/CeffIIddtgB//znP3HggQfiuOOOw9y5c3H33XdjzJgx+MMf/oDbb78dTU1NAIqHP9tvvz0mTZqEMWPG4Pjjj8esWbPwxhtvYPz48dhrr73wta99rUV1j+G///0vdtxxR7z//vvYb7/9cNRRR6FTp054/fXXccMNN+Dee+/Fv/71LwDARRddhB//+McYPnw4TjnlFHTr1g3//ve/8cQTT+COO+7ALrvsgtNOOw3f+973bP4vvPACrrjiCpx66qkYPHiwDf/617/eZm1YXEFEUcV6c7Gwb1QTEhYmlhVOe8EFF2DmzJnYYost8PHHHzcr7fXXX48bbrgB++yzD4455hhMnz4d11xzDbbaais88sgj2HHHHUvTjh49Gg8++CDuvfdeHHrooUH87Nmzcf/992OXXXZBv379mt2uMnTu3BnXX389AOCLL77A3XffjR/96Ed44YUXxEPSepg9ezbOPvtsAGi1cmOnnXbCoYceCiLC9OnT8dprr+GWW27Bb37zG1xwwQU4+eSTrWyMc73wwguYOXMmzjnnHNHnf/zjH5HnOS6//PLKe4ylHYMHD8a4ceNE2CmnnIIePXrgtNNOC+TfeustZFn77vN66aWXMHToUBx44IHo2bMn/vnPf+K6667DQw89hFdffRXdu3cX8s2572krmHHpY5111rHusjFWdp/VKPh1OmfOHLz33nt48MEHse+++2LEiBG4//770atXLytfq9Vw8MEH484778R2222Hs846C926dcMzzzyDs88+GxMmTMATTzyBFVdc0ab54Q9/iF//+tf49re/jdGjR6NDhw5466238PDDD2ONNdbAVltt1ex6l2HOnDnYe++98cgjj2D77bfHqaeeir59++Ldd9/FnXfeiVtuuQXvv/8+BgwYgGeffRYjR47EaquthiOPPBIrrbQS/ve//+Gvf/0rLr/8chx//PHNuk9b2pE4bTuDEhYr3HTTTQSAXnjhBRE+bdo06tixIx188MGLqGZtj9mzZ1O/fv1ot912E+GjR4+m7t2707Rp0yrTT5w4kQDQhAkTml32M888QwDo/PPPj8YfddRRlGUZffjhh83OuwwDBw4M2vrxxx9T9+7daZ111mlWXhMmTCAANHHixBbXp6r/Xn31VVphhRWoT58+9NFHH1Xmc/jhh1P37t2D8JEjR9IGG2zQ4vr5yPOcZs+e3Wb5LSpMmTKFANCZZ57ZqnzGjBlDAwcObJM6EREdd9xxBIA+/vhjG3bmmWcSAJoyZUogf9ttt1GWZbTlllu2WR2Imnddl42x1VdfPbjWGkXsOiUq5qs999yTANBvfvMbETdq1CjKsozuv//+IN2PfvQjAkC/+MUvbNidd95JAOj2228P5OfMmUPTp09vUd1jmD9/Pg0ZMoS6detGzzzzTBA/ffp0OvXUU61sr169aKeddorm9cknn0TD22I+WhKR5zm9+4+/09Qpn7b699nUqZTn+aJuUkJCm2JZ4rRERO+++669jrt3705jxoxpOO2LL75IM2fOFGFTp06l/v370zbbbFOZdvbs2dSzZ08aNWpUNH78+PEEgO64446G61MPY8aMCbhfrVajzTbbjAA0iz+3FS8CQMcee2wQPnXqVBo2bBgBoIceeqgyj1tuuSU6Zs8+++xSPtRSzJo1q83yWpTYYIMNaPjw4a3Kw8wV77zzTpvU6a677iIA9Nvf/taGtdV9T3NRNi59lI2xsvusRhC7Tg3OP/98AkD777+/CD/vvPMIAP3oRz8K0jzwwAOUZRntsssuNmzy5MmklKIjjzwykM/zvJQ7thTHHnssAaBLL700iFuwYAFdeOGF9L///Y+IiHbddVfq378/ff7554FsWb3aaj5a0pA4bfsjmRpYQtCnTx907do12Angv8753nvv4ZhjjsG6666Lrl27ol+/fthvv/2CV9Lnz5+Ps88+G2uvvTa6dOmCfv36Ydttt8Xjjz++EFpTYOLEifjss89wzDHHiPBjjz0WX375JR566KGG85o5cyYWLFjQsPw222yDQYMGRXf3zZ8/H3fddRdGjhzZprvOYlhppZUwePBgvPPOOzbslVdewTe/+U306tULPXr0wA477CBe07j55pux3377AQBGjhxpnyq19hUtjiFDhuCyyy7DF198gSuvvFKUzW0wKaVw00034csvv7T1MDITJ07EG2+8EdQvz3Ncdtll2GCDDdClSxesuOKKOProo/H555+LOgwaNAi77747Hn30UWy22Wbo2rUrrrnmGgDFzooTTzwRq666Kjp37oy11loLF1xwgXhlxtjuuuiii3DttddizTXXROfOnbH55pvjhRdeCNo8adIk7L///ujfvz+6du2KddddN3h6/+GHH+K73/0uVlxxRXTu3BkbbLABbrzxxrboclFn397Yfffdhw033BBdunTBhhtuGJinICIMGjQI3/72t4M8586di969e+Poo4+uLNvsnDa2zOph9OjR+N73vofnn39+oc4bgOun2BhTSuGdd97BQw89ZMPbwmZY165dMW7cOPTt2xfnnnuufSL817/+FY8++igOO+ww7LHHHkG6888/H2uvvTYuuOACzJkzBwDwn//8B0AxD/no0qWL2HnQWtx999147bXXcNppp0XNq/Tq1QvnnnsuAGDq1KmYMWNGtF4AsMIKK7RZvZYGEBF6rLgirt1kE1y59tot/l27ySYgyttkl0FCwpKApZHTAsUOypbu8tl0003Ro0cPEdavXz9st912+Oc//1mZtmvXrth7773x5JNP4tNPPw3ix48fj549e0bXqLZElmV2x6o5R59++imOOOIIrLjiiujSpQuGDBmCW265xaZ599130b9/fwDA2Wef3S6mavr164c77rgDHTp0sOudKZtzrhEjRmDMmDEAgM0339yaixg0aJB9g6Z///5B/R5++GFst9126N69O3r27InddtsNb7zxhqjDYYcdhh49euA///kPdt11V/Ts2ROjR48G0Hxe/Oc//xlbbLEFunTpgjXWWAO33npr0OYvvvgCJ510EgYNGoTOnTtjwIABOPTQQzF16lQr89VXX+HMM8/EWmuthc6dO2PVVVfF2LFj29SMVMzG6xtvvIFvfOMb6Nq1KwYMGICf//znwSvvY8aMwfLLLx+YwAKAnXfeGeuuu27dcoHGOW3Zfc/CQtkYK7vPagv89Kc/xc4774wJEybYt57mzJmDCy+8EOussw7OP//8IM23vvUtjBkzBo888oi9N33nnXdARFHuaMzLtBU++OADXHPNNdhpp52i329oamrCj370IwwYMABAwbc32GCDqE3mxGklEqdtfyTF62KK6dOnY+rUqZgyZQreeOMN/OAHP8CsWbPwne98pzLdCy+8gGeffRYHHnggrrjiCnz/+9/Hk08+iREjRmD27NlW7qyzzsLZZ5+NkSNH4sorr8Rpp52G1VZbDS+//HJl/nmeY+rUqQ39YoslxyuvvAIA2GyzzUT4pptuiizLbHw9HH744ejVqxe6dOmCkSNHNmQPSymFgw8+GH//+98DcvTII49g2rRplhC1J+bPn4///e9/9tWvN954A9tttx1ee+01jB07FqeffjreeecdjBgxwtqX3H777fHDH/4QAHDqqadi3LhxGDdunHjFty2w7777omvXrnjsscdKZcaNG4ftttsOnTt3tvXYfPPNrXH4AQMGBPU7+uij8eMf/xjbbLMNLr/8chx++OG4/fbbMWrUqGDMvPXWWzjooIOw00474fLLL8fQoUMxe/ZsDB8+HLfddhsOPfRQXHHFFdhmm21wyimniFfIDMaPH48LL7wQRx99NH7+85/j3Xffxd577y3Kev3117HlllviqaeewpFHHonLL78ce+65Jx588EEr88knn2CrrbbCE088geOOO86+CnTEEUfgsssua2Vvl+Oxxx7DPvvsA6UUzj//fOy5556BDSOlFL7zne/g4YcfxrRp00T6Bx98EDNmzAjmjnnz5mHq1Kn43//+h3vvvRcXXXQRBg4c2KxX6Izt1Kox0lLMnDkzOq8QEfr37186xsaNG4fll18eQ4cOteHmpq616NGjB/baay98+OGH1l6cGSOxV8gAoEOHDjj44IPx+eef4y9/+QsAWPMmZfZf2xIPPPAAADRk53aFFVZA165d8eCDDwbjKKEc+awZyL+c2fLfrBmLugkJCe2KZYHTthcmT56M5Zdfvq7c6NGjsWDBAtx5550ifNq0aXj00Uex1157oWvXru1VTQvzYLFfv36YM2cORowYgXHjxmH06NG48MIL0bt3bxx22GG4/PLLARRKpquuugoAsNdee9l1m7/i2xZYbbXVMHz4cPz1r3/FjBnxOfe0007DUUcdBaAwjzFu3DgcffTRuOyyy7DXXnsBKEwv8fqNGzcOu+22G3r06IELLrgAp59+Ot58801su+22wQOCBQsWYNSoUVhhhRVw0UUXYZ999gHQPF7873//G/vuuy922mknXHzxxVhuueVw2GGHiXuZWbNmYbvttsOvfvUr7Lzzzrj88svx/e9/H5MmTcIHH3wAoBj7e+yxBy666CJ861vfwq9+9SvsueeeuPTSS3HAAQe0vsNLMHnyZIwcORKvvvoqfvrTn+LEE0/ErbfeaseDwSGHHILPPvsMjz76aJD+qaeeCuYOIsLUqVMxefJka7auqampWaYrGrnvaSnmzp0bnVfmzZsHAKVjLHaftf3227dZvQ455BAQkX1I9ec//xmff/45Dj744FKzL4bv/v73vwfgOO2ECRPEvNweePjhh7FgwYKGv90wcOBAvPTSS/jHP/7RrvVampA4bTtiEe20TSiBedXC/3Xu3JluvvnmQB7eVvjYq9jPPfccAaBbb73Vhg0ZMqRFr+K+88470frFfvVeOz322GOpqakpGte/f3868MADK9P/5S9/oX322YduuOEGuv/+++n888+nfv36UZcuXejll1+u25Y33niDANApp5wiwg888EDq0qVLm77uS1S8wrzzzjvTlClTaMqUKfTaa6/RgQceSADo+OOPJyKiPffckzp16kT/+c9/bLqPPvqIevbsSdtvv70Na29TAwZDhgyh5ZZbzvpjrwKVvcYyfPjw4DVwY+LBf8X6kUceCcIHDhxIAOiRRx4Rsueccw51796d/vWvf4nwn/70p9TU1ETvv/8+Ebmx2q9fP2G24v777ycA9OCDD9qw7bffnnr27EnvvfeeyJO/JnHEEUfQyiuvTFOnThUyBx54IPXu3bthMwhVr7CYOt900002bOjQobTyyivTF198YcMee+wxAiBMDbz11lsEgK666iqR5x577EGDBg0KXvn47W9/K67XzTbbjF5//XUhU2VqgIjo888/JwC01157NdT2RmDGZdmPm0KIjTGicnMBjaBe2ksvvZQAWLMCxvxA7DUmg3vuuYcA0BVXXEFExTy97rrr2nN42GGH0Q033NDmr2MREW288cbUu3fvhuXPOOMMAkDdu3enb37zm3TuuefSSy+9VJlmWTU1UKvVaOqUT+m8vr3o7E5Zi3/n9e1FU6d8SrVabVE3KSGhTbEscVofzTU1EMPTTz9NSik6/fTT68ouWLCAVl55ZRo2bJgIv/rqqwkAPfroo62qiw/D/Qyn/fe//03nnXceKaXo61//OhERXXbZZQSAbrvtNptu3rx5NGzYMOrRowfNmDGDiNrf1IDBCSecQADotddeI6I45yozjxHjQzNnzqQ+ffoEr1hPnjyZevfuLcLHjBlDAOinP/2pkG0JL3766adt2KeffkqdO3em//u//7NhZh2/5557gj4wXHDcuHGUZVlggsiMl7/85S9B2jJUmRoYOHCguA5OPPFEAkDPP/+8aEPv3r3F/UWtVqMBAwbQAQccIPK75JJLSClF//3vf0X4xx9/LK7XAQMG0O9+9zsh05L7nrZA1bzCTSGUce4qcwH1UC/tK6+8QgDopJNOIiJ3zd57772laaZNm0YAaO+997Zhhx56KAGg5ZZbjvbaay+66KKL6J///GeL6lyFk046iQDQK6+80pD8Y489Rk1NTdTU1ETDhg2jsWPH0qOPPkrz5s0rTbOsmhpInLb9seRasF/K8etf/9oa3P7kk09w22234Xvf+x569uxZ+RSYP82eP38+ZsyYgbXWWgt9+vTByy+/bJ8Q9enTB2+88QbefvttrL322g3Xa6WVVmr41a0hQ4ZUxs+ZM6fUSHiXLl3sa7ll2HrrrbH11ltb/x577IF9990XX//613HKKafYL3CXYf3118fGG2+MO+64w34h8ssvv8QDDzyA3XffvU1f9zV47LHHxO67pqYmHHLIIbjgggtQq9Xw2GOPYc8998Qaa6xhZVZeeWUcfPDBuO666zBjxox2qVcZevToUfmV3OZiwoQJ6N27N3baaSfxupN5xW7ixIk4+OCDbfjqq6+OUaNGBXlst912WG655UQeO+64I37xi1/g6aefFruVDzjgACy33HLWv9122wEoPjgEAFOmTMHTTz+NE044Aauttpooy7wySES4++67sf/++9un6gajRo3CHXfcgZdffrn0Fe2W4uOPP7a7Anr37m3Dd9ppJ6y//vriy6LrrLMOttxyS9x+++32Q23Tpk3Dww8/jLFjxwavP44cORKPP/44vvjiCzz55JN47bXXol8qrYJ5LbItx4jBGWecYc8VR9++fdu8rObAb7M59uzZszSNiTO7bLp27Yrnn38e5557Lu68807cfPPNuPnmm5FlGY455hhcdNFF4gN2rcGMGTMq6+bj7LPPxnrrrYff/OY3ePTRR/Hwww/jtNNOw8Ybb4zbb7+9zXfWLw3ooABqxTcEOqTvDyQs5VgWOG1b49NPP8XBBx+M1VdfHWPHjq0r39TUhAMPPBCXXnop3n33Xfuq9fjx47Hiiitihx12aPM6fvnll8EbJVtvvbX9+NIf/vAHrLTSSjjooINsfMeOHfHDH/4QBx10EP70pz+Jj6u1N9qasxgOddBBBwle2NTUhC233BITJ04M0vzgBz8Q/uby4vXXX19wo/79+2Pddde1nBYoTAwNGTLE7qDkMFxwwoQJGDx4MNZbbz1Rrvmw1MSJE8U9VlvhD3/4A7baaitsscUWog2jR4/Gb37zGxuWZRlGjx6NK664AjNnzrQ85vbbb8fWW2+N1VdfXeTbt29fPP7445g7dy5eeeUV3HPPPZg1a1az69fW9z0G3/72t3HccccF4RtttFGbl9UctAWnBYCbbroJW2yxBW688Ubce++9uPfee/GjH/0I3/jGN3DrrbdilVVWaZP6mjIb5bU77bQTnnvuOZx//vl49NFH8dxzz+GXv/wl+vfvj+uvv77dza8siUictv2QFK+LKbbYYgvxCv5BBx2EjTfeGMcddxx23333UoXlnDlzcP755+Omm27Chx9+KF5jnT59unX/7Gc/w7e//W2ss8462HDDDbHLLrvgkEMOqfsV6i5dulR+WbU56Nq1q33FwsfcuXNb9ErUWmuthW9/+9u45557UKvV7FfEyzB69Gj86Ec/wrPPPoutt94a9913H2bPnt2QmYEpU6agVqtZf48ePQL7XD623HJL/PznP4dSCt26dcPgwYOt3ZnJkydj9uzZUbtFgwcPRp7n+N///ocNNtigbt3aCrNmzWqW0qYe3n77bUyfPr3Uro5vm8wnViaP119/vfT1cT8PX5lqlLDGdpYhqxtuuGFpvadMmYIvvvgC1157La699tqGym0LvPfeewAQvZFcd911g9coDz30UBx33HF47733MHDgQEyYMAHz58+PvpKz4oor2i907rvvvjjvvPOw00474e2338ZKK63UUP0Mqa0aI/PmzQteW+/fv3/da3OjjTZqs7mmLeG32RxnzpwZtSFl4rgsAPTu3Ru//OUv8ctf/hLvvfcennzySVx00UW48sor0bt3b/z85z+P5mW+wsvRt2/f0jWhV69e4oasERx00EE46KCDMGPGDDz//PO4+eabMX78eHzrW9/CP/7xD3Tp0qVZ+SUkJCzbWBY4bVviyy+/xO67746ZM2fiz3/+c11uaTB69GhceumlGD9+PE499VR88MEH4rXrKkyfPl1seOjUqVPdB51dunSx5nY6d+6M1Vdf3dpWBAoOs/baawdftTcP8AzHWVhohLM0B2+//TYAp6z04W+U6NChg+gfk0dzeLHPaYGC13J7sP/5z3+sGYOquv/zn/9smEu3Fd577z1sueWWQXjs3ufQQw/FBRdcgHvvvReHHnoo3nrrLbz00ku4+uqrA9lOnTrZa3n33XfHDjvsgG222QYrrLBCs5T7jdz3TJ48Wfh79+5d9551wIABi+VcU8VpyxDjtFmW4dhjj8Wxxx6Lzz77DH/5y19w9dVX4+GHH8aBBx6IZ555pjS/5txPm2uqOcrxzTffHPfccw/mzZuH1157Dffeey8uvfRS7Lvvvnj11Vex/vrrN5xXQkJrkBSvSwiyLMPIkSNx+eWX4+233y5Vvh1//PG46aabcOKJJ2LYsGHo3bs3lFI48MADheHy7bffHv/5z39w//3347HHHsP111+PSy+9FFdffTW+973vldYjdtNfhiplAFDs5KzVavj0008F4Zg3bx4+++yzFn/YatVVV8W8efPw5Zdf1t0detBBB2Hs2LEYP348tt56a4wfPx7LLbccdt1117rlbL755oI0nnnmmXU/BrD88ssvlgtvDPPnz8e//vWvSoVkc5HnOVZYYQXcfvvt0XifAMaITJ7n2GmnnUp3gJhdNQZlNxv8Bq4ezLXzne98x354wUe9G7yFgQMPPBAnnXQSbr/9dpx66qm47bbbsNlmm9X9CAFQKF9PO+003H///XU/xGVgbCZV2YV99tlnMXLkSBH2zjvv2N04Sxr8Ng8ePBj33XcfXn/99VK7W6+//joAlJK7gQMH4rvf/S722msvrLHGGrj99ttLFa//+9//ggcSEydOLLVjtt566+GVV17B//73P6y66qp128fRq1cv7LTTTthpp53QsWNH3HLLLXj++ecxfPjwZuWztKNJAXkrnvA3pd0BCcsYlkZO21aYN28e9t57b7z++ut49NFHm8XBNt10U6y33nr47W9/i1NPPRW//e1vQUQNbSY44YQTxEevhg8fXvejrU1NTUsMpwWK9bupqSn6UL8lMGNw3Lhx0QfWvo3Mzp07B0ro5vLituC0ptyNNtoIl1xySTS+uXyhPbD++utj0003td90uO2229CpUyfsv//+ddNuvfXWWHnllXH77bc3rHht9L5n5ZVXFv6bbrop+IDYkoIYpwUK3rrnnntG09TjtP369cMee+yBPfbYAyNGjMCf/vQnuyEkhubcT6+33noAgL///e8YOnRoZdt8dOrUCZtvvjk233xzrLPOOjj88MMxYcIE+1GzhAKJ07YfkuJ1CcKCBQsAoPLVibvuugtjxozBxRdfbMPmzp0b/apj3759cfjhh+Pwww/HrFmzsP322+Oss86qJKmxm/4yVCkDANgJ88UXXxSKzhdffBF5njd7QjX473//iy5dujS0Q+BrX/saRo4ciQkTJuD000/H448/jsMOO6whcn377beL3QHcPEBL0L9/f3Tr1g1vvfVWEDdp0iRkWWaJUEu/mtsc3HXXXZgzZ07wqn9rsOaaa+KJJ57ANtts0+KPPKy55pqYNWtWm5F9c96qDK/3798fPXv2RK1WW6g3GYakmF0VHLFx0rdvX+y22264/fbbMXr0aPzlL39p+MNfZizzXUT1YF4nrBojQ4YMCV7lbHRH7eKGWbNm4d5778Wqq65qyenuu++O888/H7feemtU8Vqr1ewDnXqmKJZbbjmsueaalWMx9mps1Suw3/rWt/Db3/4Wt912G0455ZTK8quw2Wab4ZZbbsHHH3/c4jyWViSSmpDQfCxtnLYtkOc5Dj30UDz55JO48847W/SQa/To0Tj99NPx+uuvY/z48Vh77bWx+eab1003duxY8cEibqKppRg4cCBef/115HkuFI6TJk2y8cDC4bTvv/8+/vSnP2HYsGFttuN1zTXXBFB8mLKl3LAteHEsz3ofE1pzzTXx2muvYYcddlgo/W8wcODAhjktUOx6Pfnkk/Hxxx9j/Pjx2G233Roem3Pnzm0Wp230vsfnYAvzTcS2xrhx46CUwk477QQA2HbbbdGnTx+MHz8ep512WlTRf+uttwJAQwrtzTbbDH/605/w8ccflypem3M//c1vfhNNTU247bbbGv7AVlm9ACROG0HitO2HrL5IwuKA+fPn47HHHkOnTp0qbew1NTUFTz1/9atfiS38APDZZ58Jf48ePbDWWmvhq6++qqyHuelv5FfPHtY3vvEN9O3b137N1OCqq65Ct27dsNtuu9mwqVOnYtKkSeJribFdCq+99hoeeOAB7LzzzsFT5TKMHj0an376KY4++mjMnz+/oZ0BALDNNttgxx13tL/WKl6bmpqw88474/777xdfQv3kk08wfvx4bLvttnYHb/fu3QEgevPx8ccfY9KkSa36Au9rr72GE088EcsttxyOPfbYFufjY//990etVsM555wTxC1YsCDanlgezz33XPClU6DoD3Mz1yj69++P7bffHjfeeCPef/99EWeupaamJuyzzz64++67o2S20R0zzcXKK6+MoUOH4pZbbhHk8fHHH8ebb74ZTXPIIYfgzTffxI9//GNr841j6tSp0Z0R119/PQCI10GrMH78eFx//fUYNmxYpe245ZZbTlwnO+6440J/VX327NmYNGmSsGPWXMyZMweHHHIIpk2bhtNOO83eqGy99dbYcccdcdNNN9kvvHKcdtpp+Ne//oWxY8fam6rXXnstWpf33nsPb775ZuUOZfNqLP9V3YTsu+++2GijjXDuuefiueeeC+JnzpyJ0047DUDRTzEZoPiSLBB/HXBZR5OiVv8SEpYlLI2ctjmYPn06Jk2aFCiFjj/+ePzud7/Db37zm0rbt1UwHPaMM87Aq6++2jCnXX/99cW6summm7aofI5dd90VkydPxu9+9zsbtmDBAvzqV79Cjx49rGK5W7duAOKctqyvmoNp06bhoIMOQq1Ws+tdW2DUqFHo1asXzjvvvCjnboQbtgUv9rHPPvvYV6p9mOtp//33x4cffojrrrsukJkzZ06zbf43il133RV//etf8be//c2GTZkypXTH70EHHQSlFE444QT897//FQ8HgMIsB783NLj77rvx+eefN8xpm3Pf43MwfwfswsCkSZOCe5bm4he/+AUee+wxHHDAAdakWbdu3fCjH/0Ib731VvRaeeihh3DzzTdj1KhR2GqrrQAUphdi9yTz5s3Dk08+iSzLKt+Ma8799KqrroojjzwSjz32GH71q18F8Xme4+KLL8YHH3wAoHhgFrvn+cMf/gAgcdoYEqdtP6Qdr4spHn74YftE+NNPP8X48ePx9ttv46c//Wnl6/O77747xo0bh969e2P99dfHc889hyeeeAL9+vUTcuuvvz5GjBiBTTfdFH379sWLL76Iu+66K2r4m6Otbbyec845OPbYY7Hffvth1KhReOaZZ3Dbbbfh3HPPFbalrrzySpx99tlix8EBBxyArl27Yuutt8YKK6yAN998E9deey26deuGX/ziFw3XY5999sExxxyD+++/H6uuumrp68ILAz//+c/x+OOPY9ttt8UxxxyDDh064JprrsFXX32FX/7yl1Zu6NChaGpqwgUXXIDp06ejc+fO+MY3voEVVlgBp5xyCm655ZaGX+d+5plnMHfuXNRqNWuX54EHHkDv3r1x7733tunuxOHDh+Poo4/G+eefj1dffRU777wzOnbsiLfffhsTJkzA5Zdfjn333bcyjx//+Mf2A2iHHXYYNt10U3z55Zf4+9//jrvuugvvvvsull9++WbV64orrsC2226LTTbZBEcddRRWX311vPvuu3jooYfw6quvAigIysSJE7HlllviyCOPxPrrr49p06bh5ZdfxhNPPBHYMW0rnH/++dhtt92w7bbb4rvf/S6mTZuGX/3qV9hggw2iO4V222039OvXDxMmTMA3v/nNwG7Ybbfdhquvvtp+xG3mzJl49NFH8fjjj+Nb3/pW1FbZXXfdhR49emDevHn48MMP8eijj+Ivf/kLhgwZggkTJrRLu8249PH1r3+92WYd/va3v2HkyJENmQMBgA8//BC33XYbgGI31ptvvokJEyZg8uTJ+L//+7/AFMOtt96KHXbYAd/+9rdx8MEHY7vttsNXX32Fe+65B3/84x9xwAEH4Mc//rGVf/zxx3HmmWdijz32wFZbbYUePXrgv//9L2688UZ89dVXDdWxUXTs2BH33HMPdtxxR2y//fbYf//9sc0226Bjx45444037G7cc889F7Nnz8bWW2+NrbbaCrvssgtWXXVVfPHFF7jvvvvwzDPPYM8998TGG2/cZnVLSEhYNrAscFoAePDBB/Haa68BKJTLr7/+ujUbs8cee9i1695778Xhhx8uXlG+7LLL8Jvf/AbDhg1Dt27d7BpksNdee9mH7lVYffXVsfXWW+P+++8HgIYVr+2Bo446Ctdccw0OO+wwvPTSSxg0aBDuuusu+zaO2XnatWtXrL/++vjd736HddZZB3379sWGG26IDTfcMNpXVfjXv/6F2267DUSEGTNm4LXXXsOECRMwa9YsXHLJJdhll13arH29evXCVVddhUMOOQSbbLIJDjzwQPTv3x/vv/8+HnroIWyzzTa48sorK/NoC17s48c//jHuuusu7Lfffvjud7+LTTfdFNOmTcMDDzyAq6++GkOGDMEhhxyCO++8E9///vcxceJEbLPNNqjVapg0aRLuvPNOPProow0rLZuDsWPHYty4cdhll11wwgknoHv37rj22mvt7mgf/fv3xy677IIJEyagT58+YlMOULwRtuOOO+KAAw7AeuuthyzL8OKLL+K2227DoEGDcMIJJwR5Lsz7HgMzLn2suOKKdrdpczB48OCGzIEAhQLflD137ly89957eOCBB/D6669j5MiRwbcrfvrTn+KVV17BBRdcgOeeew777LMPunbtij//+c+47bbbMHjwYGGW5IMPPsAWW2yBb3zjG9hhhx2w0kor4dNPP8Vvf/tbq9Bu7n1ZFS6++GL85z//wQ9/+EPcc8892H333bHccsvh/fffx4QJEzBp0iS76eT444/H7Nmzsddee2G99dbDvHnz8Oyzz+J3v/sdBg0ahMMPP7zN6pWQUBeUsFjhpptuIgDi16VLFxo6dChdddVVlOe5kAdAZ555pvV//vnndPjhh9Pyyy9PPXr0oFGjRtGkSZNo4MCBNGbMGCv385//nLbYYgvq06cPde3aldZbbz0699xzad68eQuppQ7XXnstrbvuutSpUydac8016dJLLw3aeeaZZxIAmjhxog27/PLLaYsttqC+fftShw4daOWVV6bvfOc79Pbbbze7Dvvttx8BoLFjx7a2OaUYOHAg7bbbbnXlXn75ZRo1ahT16NGDunXrRiNHjqRnn302kLvuuutojTXWoKamJtE3Y8aMIQD0zjvvVJYzceJEMc46duxI/fv3p+23357OPfdc+vTTT4M0ZnzyvMeMGUPdu3cPZIcPH04bbLBBtOxrr72WNt10U+ratSv17NmTNtpoIxo7dix99NFHVqaqv2bOnEmnnHIKrbXWWtSpUydafvnlaeutt6aLLrrIjuF33nmHANCFF14YpPevGyKif/zjH7TXXntRnz59qEuXLrTuuuvS6aefLmQ++eQTOvbYY2nVVVeljh070korrUQ77LADXXvttdF6xjBlypRo+bzON910kwi/++67afDgwdS5c2daf/316Z577qExY8bQwIEDo2Ucc8wxBIDGjx8fxL3wwgu033770WqrrUadO3em7t270yabbEKXXHIJzZ8/X8ia647PRQMGDKDdd9+dbrzxRpo7d27D7W4U/rj0f7zfysaYP3ZMnrE+j6U1ZSmlqFevXrTBBhvQkUceSc8//3xpupkzZ9JZZ51FG2ywgR3X22yzDd18883BfPbf//6XzjjjDNpqq61ohRVWoA4dOlD//v1pt912o6eeeqp+J7UAn3/+OZ1xxhm00UYbUbdu3ahLly604YYb0imnnEIff/wxERHNnz+frrvuOtpzzz1p4MCB1LlzZ+rWrRttvPHGdOGFF9JXX30VzXvChAnB/LwsoFar0dQpn9JvVuxJV3RXLf79ZsWeNHXKp1Sr1RZ1kxIS2hTLGqc1/Cv24+u66RceVpW2EU7H8etf/5oA0BZbbNF2jfNQxv18fPLJJ/YcdurUiTbaaKOA4xARPfvss7TppptSp06dxDiI9VUZeH9lWUZ9+vShjTfemE444QR64403AvkY5zLlvfDCC0LW8KEpU6YE+UycOJFGjRpFvXv3pi5dutCaa65Jhx12GL344otWpl5/tYYXDx8+nIYPHy7CPvvsMzruuONolVVWoU6dOtGAAQNozJgxNHXqVCszb948uuCCC2iDDTagzp0703LLLUebbropnX322TR9+vTSuvrYYIMNgvJ5nfm1SkT0+uuv0/Dhw6lLly60yiqr0DnnnEM33HBD6Ti/8847CQAdddRRQdyUKVPoqKOOovXWW4+6d+9OnTp1orXXXptOPPHE4Fy15L6nLVB1XfN+KxtjsbHjpy2DP69069aNBg0aRPvssw/dddddpbyjVqvRTTfdRNtssw316tWLunTpQhtssAGdffbZNGvWLCE7Y8YMuvzyy2nUqFE0YMAA6tixI/Xs2ZOGDRtG1113XTDPtwUWLFhA119/PW233XbUu3dv6tixIw0cOJAOP/xweuWVV6zcww8/TN/97ndpvfXWox49elCnTp1orbXWouOPP54++eSTaN5V92lLMxKnbX8oomZa405ISEhIWKxx0kkn4YYbbsDkyZPtK3wJCQltizzP8fm0z3D319fEggo7lfXQoUcP7PP6f7Bc334Nm8hJSEhISEhYFnD//fdjzz33xNNPP43ttttuUVcnIWGpROK07Y/UGwkJCQlLEebOnYvbbrsN++yzT1K6JiQkJCQkJCQkLLG47rrrsMYaa2Dbbbdd1FVJSEhIaDGSjdeEhISEpQCffvopnnjiCdx111347LPPonatEhIS2h5NCqD0BdiEhISEhIQ2wx133IHXX38dDz30EC6//HL7UdOEhIT2Q+K07YekeE1ISEhYCvDmm29i9OjRWGGFFXDFFVdg6NChi7pKCQnLBBJJTUhISEhIaFscdNBB6NGjB4444ggcc8wxi7o6CQnLBBKnbT8kxWtCQkLCUoARI0YgmexOSFj4SCQ1ISEhISGhbZE4bULCwkfitO2HZOM1ISEhISEhISEhISEhISEhISEhIaGNkXa8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VuVM0i//8i/Ta17zGnrTm95E/+7f/Tv6uq/7Orr99tvpj/7oj05btTNL999/P33d133d6pckJ108+s3f/E165StfSb/9279N7373u+mhhx6ib/3Wb6X777//tFU70yTbB0guHOO3PfrOgkmTJq3TxLOnQxPTnixNTHtpaeLZS08T054OTUx7csQiIqetxKTLg376p3+a/v7f//v0H/7DfzhtVc40vf3tb6cf/MEfpPvuu++0VTlTdMstt9A3fMM30M///M8T0fL1xj/1p/4U/cAP/AC9/vWvP2Xtzj4xM/3qr/4qvehFLzptVa4Y+uQnP0lPfvKT6Td/8zfpL/yFv3Da6pw50i/AvvgvvI6+eP+XjhzPYx93Nf2/3/tT8wuwkyZdIpp49tLRxLQnQxPTnh5NPHs6NDHtydLEtCdP08brpL3ps5/9LF1//fWnrcakSQfTgw8+SO9///vph3/4h4232Wzotttuo7vvvvsUNZs06eTos5/9LBHRHLdPmPQt/9HD80XUZtKkSbto4tlJlzNNTDvpSqSJaS8NTUx7cjSXoSftRR/5yEfo7/7dv0vf933fd9qqTJp0MP3xH/8xXbhwgW688cbAv/HGG+n8+fOnpNWkSSdH2+2WfvAHf5D+0//0P6Wv/uqvPm11Jk2aNOkRQRPPTrrcaWLaSVcaTUw76SzQXHi9wuj1r389MfPq70Mf+lAIc88999Add9xBL3nJS+gVr3jFKWl+edJRynvSpEmTjkuvfOUr6fd+7/fol37pl05blTNPx7KFdcydBZMmXak08eylp4lpJ02adBo0Me2lo4lpT46mqYErjF772tfSS1/60lWZZzzjGeb+xCc+QS984QvpBS94Af3CL/zCCWt39ujQ8p50MvTlX/7ldO7cObr33nsD/95776WbbrrplLSaNOlk6FWvehW9853vpPe+9730tKc97bTVOfMkFx485rGs+Q580qRDaeLZS08T0z4yaGLaSVcSTUx7aWli2pOjufB6hdENN9xAN9xww16y99xzD73whS+k5z3vefS2t71tGkg+Ah1S3pNOjh7zmMfQ8573PLrrrrvMGP52u6W77rqLXvWqV52ucpMmXSQSEfqBH/gB+tVf/VV6z3veQzfffPNpq3RF0PbCl2h74egfIthOe1iTJh1ME89eepqY9pFBE9NOuhJoYtrToYlpT47mwuukku655x765m/+5v9/e3fM0tYehwH4p0PFkirXoTjVRciikEF0tH4C/Qa2czbBr+BikSCCoxHByUUQJ4sBwaUISlZLSwpFCNilIgh67nRdeqXa+0/OTXyeLSckvJBAXt6cnMTIyEh8+PAhms3m/X2+TW2NRqMRl5eX0Wg04vb2Nk5PTyMiYnR0NAqFQr7husDCwkLMz8/HxMRETE5ORqVSiaurq3j//n3e0brWz58/4/z8/P72ly9f4vT0NIaGhuLNmzc5JutO5XI5tre3Y3d3N169enV/rbfBwcHo7+/POV33ell4mevjgYfps/nQaVtLp20vfbb9dNp86LSt05NlWZZ3CP5/qtXqgx/e3jKt8e7du9jc3Pzl+OHhYbx9+7b9gbrQ2tpaLC8vx8XFRZRKpVhdXY2pqam8Y3WtWq0WMzMzvxyfn5+ParXa/kBdrqfn379l3tjY+O3PQ3m6LMvix+VlZNndf36unp7e+Gto6MHXEPgz+mw+dNrW02nbR59tP522vXTa1jO8AgD8gSzLkow3//wxDQAAtJtO21qGVwAAAACAxFxdHgAAAAAgMcMrAAAAAEBihlcAAAAAgMQMrwAAAAAAiRleAQAAAAASM7wCAAAAACRmeAUAAAAASMzwCgAAAACQmOEVAAAAACAxwysAAAAAQGKGV6DrNZvNGB4ejqWlpftjx8fH8eLFi/j48WOOyQAA4HF0WoDO05NlWZZ3CIBW29/fj7m5uTg+Po5isRilUilmZ2djZWUl72gAAPAoOi1AZzG8As9GuVyOg4ODmJiYiHq9Hp8+fYq+vr68YwEAwKPptACdw/AKPBvX19cxNjYW3759i5OTkxgfH887EgAAPIlOC9A5XOMVeDY+f/4c379/j7u7u/j69WvecQAA4Ml0WoDO4YxX4Fm4ubmJycnJKJVKUSwWo1KpRL1ej9evX+cdDQAAHkWnBegshlfgWVhcXIydnZ04OzuLQqEQ09PTMTg4GHt7e3lHAwCAR9FpATqLSw0AXa9Wq0WlUomtra0YGBiI3t7e2NraiqOjo1hfX887HgAA/JZOC9B5nPEKAAAAAJCYM14BAAAAABIzvAIAAAAAJGZ4BQAAAABIzPAKAAAAAJCY4RUAAAAAIDHDKwAAAABAYoZXAAAAAIDEDK8AAAAAAIkZXgEAAAAAEjO8AgAAAAAkZngFAAAAAEjM8AoAAAAAkNjfJo97N2QWE9YAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "showGrid = False\n", + "\n", + "fig, (ax) = plt.subplots(1, 2, figsize=(14, 4))\n", + "\n", + "#pot = 0.0\n", + "p1 = (pot_05V - pot_05V_cst).plot(grid=showGrid, ax=ax[0], cmap=\"turbo\")\n", + "p2 = (pot_12V - pot_12V_cst).plot(grid=showGrid, ax=ax[1], cmap=\"turbo\")\n", + "\n", + "_ = ax[0].set_title(f\"Bias = {0.5:.1f} V - Pot. Difference Tidy3D - Eff. DOS - CST\")\n", + "_ = ax[1].set_title(f\"Bias = {1.2:.1f} V - Pot. Difference Tidy3D - Eff. DOS - CST\")\n", + "\n", + "plt.tight_layout()" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "304d7b5e-cea4-40dc-ac32-ce1e21b0548e", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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pptuWvV8ut5rABg+fLi6Tmtjf/3rX7Hzzjvjoosuqiht/p4uX74c7733HmbMmIHbbrsNZ511Fq6++mpDfuHChdh7773x3nvvYezYsTj99NPx3Xff4eGHH8aECRPw1FNP4b777kOhUAAQ/cCz++67Y/78+ZgwYQJ+9rOfYcWKFXj33Xcxffp0HHbYYfje975XUd7rG6+88gouueQSHH/88X5mj4eHB4CNh8NeccUVWL58OYYNG4Yvv/yyrLB//OMfcfvtt+OII47Aqaeeim+//Ra33nordt55ZzzzzDMYNWpUathx48bhiSeewKOPPorx48cn/FetWoXHH38c++67L7p06VJ2udJQU1ODP/7xjwCAb775Bg8//DDOOeccvP7668YPn6WwatUqXHLJJQBQ6x+Wf/jDH2L8+PEgInz77bd45513cNddd+Gmm27CFVdcgbPPPlvJujjW66+/juXLl+PSSy816vyFF15AGIa47rrrMscUGzoGDBiAe+65x3A7//zz0bZtW1xwwQUJ+ffffx9BULdzqt58800MGTIEY8eORbt27fDee+/htttuw5NPPok5c+agTZs2hnw545xqQbZLG1tvvbW6TmtjaeOqvODv6erVq/HJJ5/giSeewJFHHok999wTjz/+ONq3b6/ki8Uijj32WDz00EPYbbfdcPHFF6N169Z48cUXcckll2DGjBn4y1/+gh49eqgwZ5xxBm688UYccsghGDduHJo1a4b3338fTz/9NLbYYgvsvPPOZee7IfDFF1/gkksuQd++ff0MYY+mBfLIhWnTphEAev311w33pUuXUvPmzenYY49toJxVH6tWraIuXbrQAQccYLiPGzeO2rRpQ0uXLs0M//zzzxMAmjFjRtlpv/jiiwSApkyZ4vQ/+eSTKQgC+vzzz8uOOw19+vRJlPXLL7+kNm3a0NZbb11WXDNmzCAA9Pzzz1ecn6z6mzNnDnXv3p06duxIX3zxRWY8EydOpDZt2iTcR44cSYMGDao4fzbCMKRVq1ZVLb6GwuLFiwkAXXTRRbWKZ8KECdSnT5+q5ImI6PTTTycA9OWXXyq3iy66iADQ4sWLE/L33nsvBUFAO+20U9XyQFTee53WxjbffPPEu5YXrveUKPpeHXrooQSAbrrpJsNv9OjRFAQBPf7444lw55xzDgGg3/72t8rtoYceIgB03333JeRXr15N3377bUV5d+Gjjz4iAHTllVdWLU6OK6+8kgDQRx99lPADQKeddlqdpCuxevVqKhaLdZoGh6zPadOm1VuaaQjDkIrFYq2PMAwbuigeGwg2Jg5LRPTxxx+r96dNmzY0YcKE3GHfeOMNWr58ueG2ZMkS6tatG+2yyy6ZYVetWkXt2rWj0aNHO/2nT59OAOiBBx7InZ9SmDBhQoLrFYtF2nHHHQlAWXy5WjworY9ZsmQJDR8+nADQk08+mRnHXXfd5Wyzl1xySSr/qRQrVqyoWlwNiUGDBtEee+xRqzjkt8LFHSrBzJkzCQDdf//9yq1a45xykZf7pLWxtHFVHrjeU4kpU6YQADrqqKMM98svv5wA0DnnnJMI86c//YmCIKB9991XuS1YsICEEHTSSScl5MMwpIULF1aU9zSk8fJq4PXXX0/ldHvssUdVx7EuFItFWr16dZ2mYaNPnz5l9VV1Bc9hawdvFqCW6NixI1q1apX4hd+2V/XJJ5/g1FNPRf/+/dGqVSt06dIFY8aMSSwfX7duHS655BJstdVWaNmyJbp06YJdd90Vs2fProfSRHj++efx1Vdf4dRTTzXcTzvtNKxcuRJPPvlk7riWL1+O9evX55bfZZdd0LdvX+csvXXr1mHmzJkYOXJknc8e69mzJwYMGICPPvpIub399tvYb7/90L59e7Rt2xZ77723scTizjvvxJgxYwAAI0eOVEs/aru8imPw4MG49tpr8c033+CGG24w0uY2koQQmDZtGlauXKnyIWWef/55vPvuu4n8hWGIa6+9FoMGDULLli3Ro0cPnHLKKfj666+NPMhlILNmzcKOO+6IVq1a4dZbbwUQzZg488wzsemmm6Kmpgb9+vXDFVdcYSx34cuhp06dii233BI1NTX4wQ9+gNdffz1R5vnz5+Ooo45Ct27d0KpVK/Tv3z/xq/znn3+OH//4x+jRowdqamowaNAg3HHHHdWociPPtj2wxx57DNtuuy1atmyJbbfdNmFKgojQt29fHHLIIYk4v/vuO3To0AGnnHJKZtpyBnTe5d3jxo3DiSeeiNdee61evxuAridXGxNC4KOPPsKTTz6p3Kth06tVq1a455570LlzZ1x22WVqqf8//vEPzJo1C8cffzwOPvjgRLgpU6Zgq622whVXXIHVq1cDAP73v/8BiL5DNlq2bGnMKKgL5P3+//Wvf8Vuu+2GNm3aoGPHjjjkkEPw3nvvKf+LL74Y5557LgBg8803T61v2X7lO/PMM88k8pTn3ZLP94EHHsAvf/lLbLLJJmjdujWWLVuG448/Hm3btsWnn36KAw88EG3btsUmm2yCG2+8EQDwr3/9C3vttRfatGmDPn36JL79S5cuxTnnnIPtttsObdu2Rfv27bHffvvhnXfeqbie6xJEhE/nvYuvl35VhWOp03SFh0e1sCFyWCCaCVnpcuihQ4eibdu2hluXLl2w2267Gd9ZF1q1aoXDDz8czz33HBYtWpTwnz59Otq1a+fsk6qJIAjUzFP5jBYtWoQTTjgBPXr0QMuWLTF48GDcddddKszHH3+Mbt26AQAuueQS1W9U0/Zuly5d8MADD6BZs2a47LLLjLQ5x9pzzz0xYcIEAMAPfvADZdqhb9++auVLt27dEvl7+umnVd/Yrl07HHDAAXj33XeNPMg+6X//+x/2339/tGvXDuPGjQNQPg9+6aWXMGzYMLRs2RJbbLEF7r777kSZv/nmG5x11lno27cvampq0Lt3b4wfPx5LlixRMmvWrMFFF12Efv36oaamBptuuikmT55cVRNPLnuO7777Lvbaay+0atUKvXv3xm9+85vE8vQJEyaga9euCfNUALDPPvugf//+JdMF8nPYtHFOfSGtjaWNq6qB8847D/vssw9mzJiB//znPwCima1XXnkltt56a0yZMiUR5qCDDsKECRPwzDPPqLHoRx99BCJyclhpCqau8cADD2Do0KFo164d2rdvj+222w7XXXedIfPhhx9izJgx6Ny5M1q3bo2dd97Z0C288MILaoXcxIkTU+t73rx5GDlyJFq3bo1NNtkEv/vd7xL5yftuyb0I7rvvPgwaNAg1NTV45pln1Nj5pZdewhlnnIFu3bqhY8eOOOWUU7B27Vp88803GD9+PDp16oROnTph8uTJCd521VVXYcSIEejSpQtatWqFoUOHYubMmbWp5jqD57C1R9Nd89NA+Pbbb7FkyRIQERYtWoTrr78eK1aswI9+9KPMcK+//jpeeeUVjB07Fr1798bHH3+Mm2++GXvuuSfmzZuH1q1bA4gGxVOmTMGJJ56IYcOGYdmyZXjjjTfw1ltv4Yc//GFq/GEYYunSpbnK0KFDh8zlzW+//TYAYMcddzTchw4diiAI8Pbbb5csLxB9EFesWIFCoYDddtsNV155ZSJOG0IIHHvssbj88svx7rvvYtCgQcrvmWeewdKlSxUJqkusW7cO//d//6eWbb377rvYbbfd0L59e0yePBnNmzfHrbfeij333BN/+9vfsNNOO2H33XfHGWecgT/84Q/4xS9+gQEDBgCAOlcLRx55JE444QQ8++yzBjnluOeeezB16lT885//VEtQvv/97+Oee+7BZZddhhUrVqjOWubvlFNOwZ133omJEyfijDPOwEcffYQbbrgBb7/9Nl5++WWjzbz//vs45phjcMopp+Ckk05C//79sWrVKuyxxx74/PPPccopp2CzzTbDK6+8gvPPPx9ffvklrr32WiOP06dPx/Lly3HKKadACIHf/e53OPzww/Hhhx+qtObOnYvddtsNzZs3x8knn4y+ffvif//7H5544glV9oULF2LnnXdWHWO3bt3w9NNP44QTTsCyZcvqbNOkZ599FkcccQQGDhyIKVOm4KuvvsLEiRPRu3dvJSOEwI9+9CP87ne/w9KlS9G5c2fl98QTT2DZsmWJd2nt2rVYtmwZVq9ejTfeeANXXXUV+vTpU9byt+OOOw5Tp07Fs88+m/ndqATLly83BgUSXbp0Qbdu3VLb2D333IOzzjoLvXv3Vkv75UCutmjbti0OO+ww3H777Zg3bx4GDRqEJ554AgCcy78AoFmzZjj22GNxySWX4OWXX8aoUaOUKZK7774bv/zlL+vVVhmQ7/v/l7/8Bfvttx+22GILXHzxxVi9ejWuv/567LLLLnjrrbfQt29fHH744fjPf/6D+++/H9dccw26du0KwKzvl156CY888ghOPfVUtGvXDn/4wx9wxBFH4NNPP1XfvXLfrUsvvRQtWrTAOeecgzVr1qhlc8ViEfvttx923313/O53v8N9992H008/HW3atMEFF1yAcePG4fDDD8ctt9yC8ePHY/jw4dh8880BRCT8sccew5gxY7D55ptj4cKFuPXWW7HHHntg3rx5jc5MAxGhbY8euGPo97E2w+5iKbRo1w4/fvNtEFG9t0OPDRcbA4etKyxYsEB9S7Mwbtw43HXXXXjooYeMjQOXLl2KWbNm4ZhjjkGrVq3qMqsA9I+FXbp0werVq7Hnnnviv//9L04//XRsvvnmmDFjBo4//nh88803mDRpErp164abb745YR5p++23r2q+NttsM+yxxx54/vnnsWzZMuePlhdccAH69++PqVOnKlMWW265JQ499FDcfffdePTRR5VZJJm/e+65BxMmTMDo0aNxxRVXYNWqVbj55pux66674u233zZMda1fvx6jR4/Grrvuiquuukq133J48H//+1/FxydMmIA77rgDxx9/PIYOHarGLitWrFBK+R//+MfYYYcdsGTJEvzpT3/CZ599hq5duyIMQxx88MF46aWXcPLJJ2PAgAH417/+hWuuuQb/+c9/8Nhjj1W1/iUWLFiAkSNHYv369TjvvPPQpk0bTJ06NdE2jzvuONx9992YNWuWYTpkwYIF+Otf/5ow80RE+Oqrr7B+/Xp88MEHOO+881AoFMoyM5FnnFMpvvvuOyeHbd++PVq0aIFrr73W2cb69euXGFeNGDGiavk67rjj8Oyzz2L27NnYeuut8dJLL+Hrr7/GpEmTUk20jB8/HtOmTcOf//xn7LzzzorDzpgxA2PGjFHtur4we/ZsHHPMMdh7771xxRVXAADee+89vPzyy5g0aRKAiFeOGDECq1atwhlnnIEuXbrgrrvuwsEHH4yZM2fisMMOw4ABA/DrX/8aF154IU4++WTstttuAMz6/vrrr7Hvvvvi8MMPx1FHHYWZM2fi//2//4ftttsO++23HwCU/W799a9/Vd/trl27om/fvsrm689+9jP07NkTl1xyCf7xj39g6tSp6NixI1555RVsttlmuPzyy/HUU0/hyiuvxLbbbmuMPa677jocfPDBGDduHNauXYsHHngAY8aMwZ///GcccMABdfU4KoLnsFVAA8yWbZKQyyTso6amhu68886EPKxlNa5l06+++ioBoLvvvlu5DR48uKIp9nJJZJ6j1JL10047jQqFgtOvW7duNHbs2MzwL7/8Mh1xxBF0++230+OPP05TpkyhLl26UMuWLemtt94qWZZ3332XAND5559vuI8dO5ZatmxZ1aW5RNE0/H322YcWL15MixcvpnfeeYfGjh1LAOhnP/sZEREdeuih1KJFC/rf//6nwn3xxRfUrl072n333ZVbXZsFkBg8eDB16tRJ3buW8aQtQXEtp5DmGOzl0M8880zCvU+fPgSAnnnmGUP20ksvpTZt2tB//vMfw/28886jQqFAn376KRHpttqlSxfDxMTjjz9OAOiJJ55Qbrvvvju1a9eOPvnkEyNOvtTghBNOoF69etGSJUsMmbFjx1KHDh1ymyzIWg7nWnI8ZMgQ6tWrF33zzTfK7dlnnyUAhlmA999/nwDQzTffbMR58MEHU9++fRPLJu6//37jfd1xxx1p7ty5hkyWWQAioq+//poA0GGHHZar7Hkg22Xawc0WpC3Zqc0SolJhr7nmGgKgTABIUwFff/11aphHHnmEANAf/vAHIoq+0/3791fP8Pjjj6fbb7+96kupiNxmAfJ8/4cMGULdu3enr776Srm98847FAQBjR8/XrmVMgvQokUL+u9//2vEAYCuv/565Zb33ZJtY4sttki8bxMmTCAAdPnllyu3r7/+mlq1akVCCGN57Pz58xPv4HfffZcwL/DRRx9RTU0N/frXvzbc7He0IVAsFmnJ4kX0m07t6cLmQcXHbzq1pyWLF9WraQWPDRcbE4e1Ua5ZABf+/ve/kxCCfvWrX5WUXb9+PfXq1YuGDx9uuN9yyy0EgGbNmlWrvNiQXE9y2P/+9790+eWXkxCCtt9+eyIiuvbaawkA3XvvvSrc2rVrafjw4dS2bVtatmwZEdW9WQCJSZMmEQB65513iMj9/U4zZeHiP8uXL6eOHTsmlkMvWLCAOnToYLjLPum8884zZCvhwX//+9+V26JFi6impoZ+/vOfK7cLL7yQANAjjzySqAPJ/e655x4KgoBefPFFw1+2l5dffjkRNg1ZZgHsJcdnnnkmAaDXXnvNKEOHDh0M7lAsFql379509NFHG/FdffXVJISgDz/80HD/8ssvjfe1d+/e9OCDDxoylYxzqoGs7wo3W5DGsbOW9pdCqbBvv/02AaCzzjqLiPQ7++ijj6aGWbp0KQGgww8/XLmNHz+eAFCnTp3osMMOo6uuuoree++9ivJcCjYvnzRpErVv357Wr1+fGka2O97ely9fTptvvjn17dtXcZ5SZgHsvmfNmjXUs2dPOuKII5RbOe8WAAqCgN59911DVn6HRo8ebYzXhg8fTkII+slPfqLc1q9fT7179068g3b/uXbtWtp2221pr732Mtwbg1kAz2FrDz9ztUzceOONyuj1woULce+99+LEE09Eu3btjE1wbPBfAtetW4dly5ahX79+6NixI9566y21a3bHjh3x7rvv4oMPPsBWW22VO189e/bMvexq8ODBmf6rV69ONdTdsmVLtYQ2DSNGjDB+XTr44INx5JFHYvvtt8f555/vXHrKMXDgQHz/+9/HAw88oHZiXLlyJf70pz/hwAMPrJOluc8++6wxq6tQKOC4447DFVdcgWKxiGeffRaHHnootthiCyXTq1cvHHvssbjttttSf32vK7Rt2zZzN9pyMWPGDHTo0AE//OEPjV905fK4559/Hscee6xy33zzzTF69OhEHLvtths6depkxDFq1Cj89re/xd///ndj1vHRRx+NTp06qXv5y+SHH34IAFi8eDH+/ve/Y9KkSdhss82MtOSvYESEhx9+GEcddRSIyEh39OjReOCBB/DWW285l8jUBl9++SXmzJmD8847Dx06dFDuP/zhDzFw4EBjB8+tt94aO+20E+677z61OdrSpUvx9NNPY/LkyYlf9EaOHInZs2fjm2++wXPPPYd33nnHuSNoFuSSxmq2EYkLL7xQPSsOPiu3IWCXWZ7btWuXGkb6LVu2DED0nX7ttddw2WWX4aGHHsKdd96JO++8E0EQ4NRTT8VVV11lbBpXbZT6/st2N3nyZKO+t99+e/zwhz/EU089lTutUaNGYcsttzTiaN++vXr/Knm3JkyYkDoj68QTTzTK2b9/f/z3v//FUUcdpdz79++Pjh07qjwAMOq7WCzim2++Qdu2bdG/f3+89dZbuctb3wgEUKjFj/XBRvZDv0f9YGPgsNXGokWLcOyxx2LzzTfH5MmTS8oXCgWMHTsW11xzDT7++GM1Y3L69Ono0aMH9t5776rnceXKlYmVICNGjFAbHj311FPo2bMnjjnmGOXfvHlznHHGGTjmmGPwt7/9rc52/Xah2hxFcqZjjjnG6KsKhQJ22mknPP/884kwP/3pT437cnnwwIEDDS7UrVs39O/f3+i/Hn74YQwePBiHHXZYIn3J/WbMmIEBAwZgm222MdKVmzk9//zzVZ0hKfHUU09h5513xrBhw4wyjBs3DjfddJNyC4IA48aNwx/+8AcsX75c8ab77rsPI0aMUKtMJDp37ozZs2fju+++w9tvv41HHnkEK1asKDt/1R7nSBxyyCHGjHKJ7bbbrupplYNqcFgAmDZtGoYNG4Y77rgDjz76KB599FGcc8452GuvvXD33Xdjk002qasioGPHjli5ciVmz56Nfffd1ynz1FNPYdiwYdh1112VW9u2bXHyySfj/PPPx7x587DtttuWTKtt27bGiosWLVpg2LBhxvtX7ru1xx57YODAgc70TjjhBGO8ttNOO+HVV1/FCSecoNwKhQJ23HFHvPnmm0ZY3n9+/fXXKBaL2G233XD//feXLGdDwXPYyuGVq2Vi2LBhxtL2Y445Bt///vdx+umn48ADD0xVSq5evRpTpkzBtGnT8Pnnnxs2KL799lt1/etf/xqHHHIItt56a2y77bbYd999cdxxx5VcltOyZcvMHUzLQatWrbB27Vqn33fffVfRcqZ+/frhkEMOwSOPPIJisah2507DuHHjcM455+CVV17BiBEj8Nhjj2HVqlW5TAIsXrwYxWJR3bdt2zZhP8vGTjvthN/85jcQQqB169YYMGCA2mF7wYIFWLVqldOu0IABAxCGIf7v//7PMGFQ11ixYkVmh1suPvjgA3z77bep9nhs22E2mZJxzJ07N3Wptx2HrTCVilZp20p2kFmd7OLFi/HNN99g6tSpmDp1aq50q4FPPvkEAJyDR5fSZ/z48Tj99NPxySefoE+fPpgxYwbWrVunBqQcPXr0UDt/Hnnkkbj88svxwx/+EB988AF69uyZK3+SyGa1kbVr1yaWYXbr1q3ku7nddttV7VtTTdhllufly5erd9mGi7x26NABv/vd7/C73/0On3zyCZ577jlcddVVuOGGG9ChQwf85je/ccYld7vl6Ny5c1k7ypb6/st2l/YtmjVrFlauXJnYkdcF+/0DondQvn+VvFuu7wIQ9U/2d6FDhw7o3bt34seFDh06GPbt5I69N910Ez766CPj217N3barjWYCoFqQy2YbMTH1qDtsDBy2mli5ciUOPPBALF++HC+99FJJLikxbtw4XHPNNZg+fTp+8Ytf4LPPPsOLL76IM844o2Qf++233xqTGFq0aFHyx8uWLVsqUzg1NTXYfPPNDRNFn3zyCbbaaqvEbvHSLJTsW+oLeThKOfjggw8AIHV3eXvyQ7NmzYz6kXGUw4NL9aFAZJrhiCOOKJn39957Lzd3rhY++eQT7LTTTgl3F78YP348rrjiCjz66KMYP3483n//fbz55pu45ZZbErItWrRQ7/KBBx6IvffeG7vssgu6d+9elgI/zzhnwYIFxn2HDh1KjlF79+7dKL81WRw2DS4OGwQBTjvtNJx22mn46quv8PLLL+OWW27B008/jbFjx+LFF19Mja+S8TPHqaeeioceegj77bcfNtlkE+yzzz446qijDEVrWrvj36I8ylUXf+zUqRPmzp2r7st9t9I4LJB83+XEmk033TThbtto/vOf/4zf/OY3mDNnjmHrtTEvl/cctnJ45WotEQQBRo4cieuuuw4ffPBBqoLtZz/7GaZNm4YzzzwTw4cPR4cOHSCEwNixYw3j4bvvvjv+97//4fHHH8ezzz6LP/7xj7jmmmtwyy23GDN/bLgG9mkoNeDv1asXisUiFi1aZJCMtWvX4quvvqrYxt2mm26KtWvXYuXKlSVneR5zzDGYPHkypk+fjhEjRmD69Ono1KkT9t9//5Lp/OAHPzCI4kUXXVTSIH/Xrl0bZWfrwrp16/Cf//wnV+eTF2EYonv37rjvvvuc/nbH5CIvYRjihz/8YerMDjlbRiJtgMEHbaUg350f/ehHavMDG9W2F1YJxo4di7POOgv33XcffvGLX+Dee+/FjjvuWHIjACBSsF5wwQV4/PHHS25+JfHvf/8bADLttL7yyisYOXKk4fbRRx8ZdsmaEuwyDxgwAI899hjmzp2L3Xff3RlGkrC0X6r79OmDH//4xzjssMOwxRZb4L777ktVrv7f//1fgpg9//zzZdkZq/T7XwlKvX+VvFtpg5q0tPJ8Ay6//HL86le/wo9//GNceuml6Ny5M4IgwJlnnpnYeKMxoSCAsBbksjYzBjw88mJD5LDVwtq1a3H44Ydj7ty5mDVrVlmca+jQodhmm21w//334xe/+AXuv/9+EFGuCQKTJk0yNpraY489Sm6MWigUmgyHBaL+ulAoZCozyoFsg/fcc4/zR2jbZmVNTU1C0VwuD64Gh5Xpbrfddrj66qud/rbypiEwcOBADB06FPfeey/Gjx+Pe++9Fy1atDBWnqRhxIgR6NWrF+67777cytW845xevXoZ99OmTUts2tVU4OKwQMRTDz30UGeYUhy2S5cuOPjgg3HwwQerPULkJA8XKhk/c3Tv3h1z5szBrFmz8PTTT+Ppp5/GtGnTMH78eOObVg3kef/KfbeyFPPl8FiehxdffBEHH3wwdt99d9x0003o1asXmjdvjmnTpjk3724s8By2cnjlahWwfv16AMhc9jBz5kxMmDABv//975Xbd99959w9sXPnzpg4caLaEGr33XfHxRdfnElMXQP7NJQa8A8ZMgQA8MYbbxjKzDfeeANhGCr/cvHhhx+iZcuWuX4F+973voeRI0dixowZ+NWvfoXZs2fj+OOPz0Wo77vvPuNXf76UvxJ069YNrVu3xvvvv5/wmz9/PoIgUB/o+vgVaubMmVi9enViWX5tsOWWW+Ivf/kLdtlll4o3Wthyyy2xYsWKqhF8+dwk4XChW7duaNeuHYrFYr0OLCQxkbMlOFztpHPnzjjggANw3333Ydy4cXj55ZcTG3ylQbZlPjuoFORSwKw2Mnjw4MQyzLwzYxsbVqxYgUcffRSbbrqpIqQHHnggpkyZgrvvvtupXC0Wi+pHm1JmIzp16oQtt9wysy26lrVWsnw16/sv213at6hr165q1mptv0UN9W7ZmDlzJkaOHInbb7/dcP/mm29ybS7j4eGRjQ2Nw1YDYRhi/PjxeO655/DQQw9hjz32KDuOcePG4Ve/+hXmzp2L6dOnY6uttlI7YGdh8uTJxnJXbj6pUvTp0wdz585FGIaGUnH+/PnKH6gfDvvpp5/ib3/7G4YPH161mavSxE337t0r7q+qwYNdcWbxBinzzjvvYO+9967XmWx9+vTJzWGBaPbq2WefjS+//BLTp0/HAQcckLttfvfdd2Vx2LzjHJtz1ecKwmrjnnvugRBCbfy36667omPHjpg+fTouuOACpxLv7rvvBoBcSusdd9wRf/vb3/Dll1+mKlerMX5u0aIFDjroIBx00EEIwxCnnnoqbr31VvzqV79Cv3790KdPn1QOC1T3W9RQ7xbHww8/jJYtW2LWrFmGmatp06Y1SH486h5BaRGPLKxbtw7PPvssWrRokbkrfKFQSPyaef311xvT7wHgq6++Mu7btm2Lfv36GdPIXZAD+zxHqQH/Xnvthc6dO+Pmm2823G+++Wa0bt3a2NluyZIlmD9/PlatWqXcXLMP3nnnHfzpT3/CPvvsk/i1OA3jxo3DokWLcMopp2DdunW5fvEHgF122QWjRo1SR22Vq4VCAfvssw8ef/xxfPzxx8p94cKFmD59OnbddVc1E1cqNlwDji+//BLz58/HunXrKs7LO++8gzPPPBOdOnXCaaedVnE8No466igUi0VceumlCb/169c7y+OK49VXX8WsWbMSft98840awOVFt27dsPvuu+OOO+7Ap59+avjJd6lQKOCII47Aww8/7CSweWfClItevXphyJAhuOuuuwzCOHv2bMybN88Z5rjjjsO8efNw7rnnKptsHHIHZxtyV1K+lDML06dPxx//+EcMHz4807Zbp06djPdk1KhRaNmyZa40qoVVq1Zh/vz5zp1b82L16tU47rjjsHTpUlxwwQWKQI0YMQKjRo1SO6nauOCCC/Cf//wHkydPVgOpd955x5mXTz75BPPmzcucaSyXtfKj3EFxqe8/b3f8nfz3v/+NZ5991vgxLOtblAcN9W658mG/FzNmzMDnn39eL+lXioKo/eHhUdfYEDlsOfj2228xf/78hOLnZz/7GR588EHcdNNNmbZosyA564UXXog5c+bk5rADBw40+pGhQ4dWlD7H/vvvjwULFuDBBx9UbuvXr8f111+Ptm3bKuWx3F3c1W+k1VU5WLp0KY455hgUi0VccMEFFcdjY/To0Wjfvj0uv/xyJ8fO019VgwfbOOKII/DOO+/g0UcfTfjJ9+moo47C559/jttuuy0hs3r16rJt7ufF/vvvj3/84x/45z//qdwWL16cOnP3mGOOgRACkyZNwocffmj8AABEJjT4WFDi4Ycfxtdff52bw5YzzrE5lz2TtT4wf/78xBilXPz2t7/Fs88+i6OPPlqZG2vdujXOOeccvP/++8535cknn8Sdd96J0aNHY+eddwYQmUlwjUHWrl2L5557DkEQZK5oq+342f7+B0GgVjjJPmD//ffHP//5T7z66qtKbuXKlZg6dSr69u2rZuHWlsMCDfducRQKBQghjL7y448/xmOPPVbnadcGnsNWDj9ztUw8/fTT6teVRYsWYfr06fjggw9w3nnnZS51P/DAA3HPPfegQ4cOGDhwIF599VX85S9/SdiMGzhwIPbcc08MHToUnTt3xhtvvIGZM2c6jW9zVNvm6qWXXorTTjsNY8aMwejRo/Hiiy/i3nvvxWWXXWbYfrrhhhtwySWXGDMJjj76aLRq1QojRoxA9+7dMW/ePEydOhWtW7fGb3/729z5OOKII3Dqqafi8ccfx6abbpq6tLc+8Jvf/AazZ8/GrrvuilNPPRXNmjXDrbfeijVr1uB3v/udkhsyZAgKhQKuuOIKfPvtt6ipqcFee+2F7t274/zzz8ddd92Ve+n1iy++iO+++w7FYlHZzfnTn/6EDh064NFHH63qLMM99tgDp5xyCqZMmYI5c+Zgn332QfPmzfHBBx9gxowZuO6663DkkUdmxnHuueeqTceOP/54DB06FCtXrsS//vUvzJw5Ex9//HHZM83+8Ic/YNddd8UOO+yAk08+GZtvvjk+/vhjPPnkk5gzZw6AiJQ8//zz2GmnnXDSSSdh4MCBWLp0Kd566y385S9/SdgVrRamTJmCAw44ALvuuit+/OMfY+nSpbj++usxaNAg5wygAw44AF26dMGMGTOw3377Jex63XvvvbjlllvUxmnLly/HrFmzMHv2bBx00EFOW2IzZ85E27ZtsXbtWnz++eeYNWsWXn75ZQwePBgzZsyok3LLdmlj++23L9sEwz//+U+MHDky99Kjzz//HPfeey+AaJbVvHnzMGPGDCxYsAA///nPE2YT7r77buy999445JBDcOyxx2K33XbDmjVr8Mgjj+CFF17A0UcfjXPPPVfJz549GxdddBEOPvhg7Lzzzmjbti0+/PBD3HHHHVizZk1Zy6MqQZ7v/5VXXon99tsPw4cPxwknnIDVq1fj+uuvR4cOHYz8yQH5BRdcgLFjx6J58+Y46KCDctljlWiod4vjwAMPxK9//WtMnDgRI0aMwL/+9S/cd999tf7RrK5REIRQlLc81A7v4VFtbAwcFgCeeOIJvPPOOwAiBfLcuXOVSZeDDz5Y9VWPPvooJk6caCwnvvbaa3HTTTdh+PDhaN26tepzJA477LBc39HNN98cI0aMwOOPPw4AuZWrdYGTTz4Zt956K44//ni8+eab6Nu3L2bOnKlW0cgZpK1atcLAgQPx4IMPYuutt0bnzp2x7bbbYtttt3XWVRb+85//4N577wURYdmyZXjnnXcwY8YMrFixAldffXXqhjeVoH379rj55ptx3HHHYYcddsDYsWPRrVs3fPrpp3jyySexyy674IYbbsiMoxo82Ma5556LmTNnYsyYMfjxj3+MoUOHYunSpfjTn/6EW265BYMHD8Zxxx2Hhx56CD/5yU/w/PPPY5dddkGxWMT8+fPx0EMPYdasWbkVk+Vg8uTJuOeee7Dvvvti0qRJaNOmDaZOnapmOdvo1q0b9t13X8yYMQMdO3Y0JtoA0UquUaNG4eijj8Y222yDIAjwxhtv4N5770Xfvn0xadKkRJz1Oc6RkO3SRo8ePdSs0XIwYMCAXKY7gEhJL9P+7rvv8Mknn+BPf/oT5s6di5EjRybs25933nl4++23ccUVV+DVV1/FEUccgVatWuGll17CvffeiwEDBhjL7T/77DMMGzYMe+21F/bee2/07NkTixYtwv3336+U1nW54ufEE0/E0qVLsddee6F379745JNPcP3112PIkCHqx7vzzjsP999/P/bbbz+cccYZ6Ny5sxobP/zww2oC1pZbbomOHTvilltuQbt27dCmTRvstNNOZZkSaah3i+OAAw5Q37tjjz0WixYtwo033oh+/fo537PGAs9hawHyyIVp06YRAONo2bIlDRkyhG6++WYKw9CQB0AXXXSRuv/6669p4sSJ1LVrV2rbti2NHj2a5s+fT3369KEJEyYoud/85jc0bNgw6tixI7Vq1Yq22WYbuuyyy2jt2rX1VFKNqVOnUv/+/alFixa05ZZb0jXXXJMo50UXXUQA6Pnnn1du1113HQ0bNow6d+5MzZo1o169etGPfvQj+uCDD8rOw5gxYwgATZ48ubbFSUWfPn3ogAMOKCn31ltv0ejRo6lt27bUunVrGjlyJL3yyisJudtuu4222GILKhQKRt1MmDCBANBHH32Umc7zzz9vtLPmzZtTt27daPfdd6fLLruMFi1alAgj2yePe8KECdSmTZuE7B577EGDBg1ypj116lQaOnQotWrVitq1a0fbbbcdTZ48mb744gslk1Vfy5cvp/PPP5/69etHLVq0oK5du9KIESPoqquuUm34o48+IgB05ZVXJsLb7w0R0b///W867LDDqGPHjtSyZUvq378//epXvzJkFi5cSKeddhptuumm1Lx5c+rZsyftvffeNHXqVGc+XVi8eLEzfZ7nadOmGe4PP/wwDRgwgGpqamjgwIH0yCOP0IQJE6hPnz7ONE499VQCQNOnT0/4vf766zRmzBjabLPNqKamhtq0aUM77LADXX311bRu3TpDVr53/FvUu3dvOvDAA+mOO+6g7777Lne588Jul/bB6y2tjdltR8bpqnNXWJmWEILat29PgwYNopNOOolee+211HDLly+niy++mAYNGqTa9S677EJ33nln4nv24Ycf0oUXXkg777wzde/enZo1a0bdunWjAw44gP7617+WrqQy4HoP8n7///KXv9Auu+xCrVq1ovbt29NBBx1E8+bNS6Rx6aWX0iabbEJBEBjfBwB02mmnJeTt/ogo37sln+OMGTMScZb7HbLbyHfffUc///nPqVevXtSqVSvaZZdd6NVXX6U99tiD9thjDyWX9o7WN4rFIi1ZvIhu6tGO/tBGVHzc1KMdLVm8iIrFYoOWx2PDwMbGYSXfch38GyHrhbtlhc3D4ThuvPFGAkDDhg2rXuEspH1jbSxcuFA9wxYtWtB2223n/F6+8sorNHToUGrRooXRDlx1lQZeX0EQUMeOHen73/8+TZo0id59992EvOv7LdN7/fXXDVnJfxYvXpyI5/nnn6fRo0dThw4dqGXLlrTlllvS8ccfT2+88YaSKVVfteHBdr9ERPTVV1/R6aefTptssgm1aNGCevfuTRMmTKAlS5YombVr19IVV1xBgwYNopqaGurUqRMNHTqULrnkEvr2229T82pj0KBBifR5nu3+fe7cubTHHntQy5YtaZNNNqFLL72Ubr/99tR2/tBDDxEAOvnkkxN+ixcvppNPPpm22WYbatOmDbVo0YK22morOvPMMxPPqpJxTjWQ9V7zektrY662Y4dNg/1dad26NfXt25eOOOIImjlzZmpfXywWadq0abTLLrtQ+/btqWXLljRo0CC65JJLaMWKFYbssmXL6LrrrqPRo0dT7969qXnz5tSuXTsaPnw43XbbbYnvfG1hvwczZ86kffbZh7p3704tWrSgzTbbjE455RT68ssvjXD/+9//6Mgjj1TjumHDhtGf//znRPyPP/44DRw4kJo1a2Z8H9L4o2v8lffdSuPF5X6HXG3k9ttvp6222opqampom222oWnTpqnwHK53tL7hOWztIYjKtLzt4eHh4VERzjrrLNx+++1YsGCBWn7n4eGx4SAMQ3y99Cs8tO2WWJ9hw7IUmrVti6P+/T906twltykdDw8PDw+PusLjjz+OQw89FH//+9+x2267NXR2PDw8qgzPYWsPbxbAw8PDox7w3Xff4d5778URRxzhFaseHhs4CgFAteCThY2Li3p4eHh4NHLcdttt2GKLLbDrrrs2dFY8PDzqEJ7DVg6vXPXw8PCoQyxatAh/+ctfMHPmTHz11VdOu1MeHh4bFgoCoFoY9N+YNwPw8PDw8Gg8eOCBBzB37lw8+eSTuO666xps53UPD4/6geewlcMrVz08PDzqEPPmzcO4cePQvXt3/OEPf8CQIUMaOkseHh4eHh4eHh4eJXHMMcegbdu2OOGEE3Dqqac2dHY8PDw8Gi28ctXDw8OjDrHnnnvCm7b28Ni44H/19/Dw8PDYEOA5rIfHxgXPYSuHV656eHh4eHh4eFQRnph6eHh4eHh4eHg0NXgOWzm8ctXDw8PDw8PDo4ooiFpuBrARE1MPDw8PDw8PD4+GgeewlcMrV0sgDEMQhRAQgDfg7eHh4eHh0bhBBAJBiABBsBFvWeqx0cNzWA8PDw8PjyYEz2GbNLxytQSIQnzz9dcNnQ0PDw8PDw+PMtCxUycADUNMA1G7X+4DrwfzqAI8h/Xw8PDw8Gh68By2acIrV0siah0dO3WCEP7XAw8PDw8Pj8YMrVBqOHZXELVLfmNeUuVRTXgO6+Hh4eHh0VTgOWzThleuloCIl1H5qdkeHh4eHh6NH2EYnUUDLoMOgtrZq6qEbtx444248sorsWDBAgwePBjXX389hg0blio/Y8YM/OpXv8LHH3+MrbbaCldccQX2339/5X/88cfjrrvuMsKMHj0azzzzTPmZ82gQeA7r4eHh4eHRdLCxctgNBRtx0T08PDw8PDw8mj4efPBBnH322bjooovw1ltvYfDgwRg9ejQWLVrklH/llVdwzDHH4IQTTsDbb7+NQw89FIceeij+/e9/G3L77rsvvvzyS3Xcf//99VEcDw8PDw8PDw8PjyYFr1z18PDw8PDw8KgiCqL2Rzm4+uqrcdJJJ2HixIkYOHAgbrnlFrRu3Rp33HGHU/66667Dvvvui3PPPRcDBgzApZdeih122AE33HCDIVdTU4OePXuqo1OnTpVWiYeHh4eHh4eHRyNHfXPYDQleuerh4eHh4eHhUUVUi5guX74cy5YtU8eaNWsSaa1duxZvvvkmRo0apdyCIMCoUaPw6quvOvP36quvGvJAtOTfln/hhRfQvXt39O/fHz/96U/x1Vdf1bJmPDw8PDw8PDw8Giu8crVyeOWqh4eHh4eHh0cjRO/evdGhQwd1TJkyJSGzZMkSFItF9OjRw3Dv0aMHFixY4Ix3wYIFJeX33Xdf3H333XjuuedwxRVX4G9/+xv2228/FIvFKpTMw8PDw8PDw8PDY8OB39DKw8PDw8PDw6OKKASo1c/XhTjsZ599ZmxqUFNTU7uMlYGxY8eq6+222w7bb789ttxyS7zwwgvYe++96y0fHh4eHh4eHh4e9YNqcdiNEV656uHh4eHh4eFRRQQCoFosiwrisO3atSu5y3vXrl1RKBSwcOFCw33hwoXo2bOnM0zPnj3LkgeALbbYAl27dsV///tfr1z18PDw8PDw8NgAUS0OuzFiI9Yre3h4eHh4eHhUH0EgUKjFEZTBTFu0aIGhQ4fiueeeU25hGOK5557D8OHDnWGGDx9uyAPA7NmzU+WBaBbtV199hV69euXOm4eHh4eHh4eHR9NBfXLYDQ1NSrn697//HQcddBC+973vQQiBxx57rGSYF154ATvssANqamrQr18/3HnnnXWeTw8PDw8PDw+P+sLZZ5+N2267DXfddRfee+89/PSnP8XKlSsxceJEAMD48eNx/vnnK/lJkybhmWeewe9//3vMnz8fF198Md544w2cfvrpAIAVK1bg3HPPxT/+8Q98/PHHeO6553DIIYegX79+GD16dIOUsanDc1gPDw8PDw8Pjw0XTUq5unLlSgwePBg33nhjLvmPPvoIBxxwAEaOHIk5c+bgzDPPxIknnohZs2bVcU49PDw8PDw8NlYEovZHOTj66KNx1VVX4cILL8SQIUMwZ84cPPPMM2rTqk8//RRffvmlkh8xYgSmT5+OqVOnYvDgwZg5cyYee+wxbLvttgCAQqGAuXPn4uCDD8bWW2+NE044AUOHDsWLL75Yr3ZfNyR4Duvh4eHh4eHR2FHfHHZDgiAiauhMVAIhBB599FEceuihqTL/7//9Pzz55JP497//rdzGjh2Lb775Bs8880yudMIwxNdLv0Knzl1K2j3z8PDw8PDwaFg0ZL8t0567Zz+EK1dUHE/Qpi22f+G/nntsoPAc1sPDw8PDw8OG57BNGxv0hlavvvoqRo0aZbiNHj0aZ555ZmqYNWvWYM2aNeq+LnXPVy//T53FXRdYTUV8UVyNLZu1qUJs5derSP0VJD2ub8N1WB6uQ+9mraCCC9LXcVjjXsh7Ha+wr4WWd8elZcywLF5h+sm4vgpXYjXWoE+hAwQIAoQgPusD2l3YfunyAoTAIW+G0bJCuOLiYSLZdViJIn2Dduipii74mV3D4ab8KgmbM27DHwCtXgwRrkOhphd7fBSd5WOR7z/Lm+3mklPxyKbgjDvbTbji/vYLUIu2EC3boyLU9pfE9JcwHcs+B0QAtO8Vp69ejJS8CdPPKeeIQ1hCaX7CunD5rV4MBM2Alp1T8uhA7Jf8Golc4fK5p9QdgHDVZ0BNZ4hmrTMSa2QI16HQ72QIUWjonHh4NDo0dg77yKrP8P765ahpIu8vEeE/61egX7M2KOTqy8qrOyHKrevS8kUifBKuwJbN2pppJcJSomtL8luHG8uzzWWdbg5+bOdpbbgen+IbbF3orNxlmIhX8vxqzqmuBbFwZMRthjfjMMPzeFlcwnaLwhGK+BpL0A3d0uMt4ZbMq8tNP6c86WTFuZ5WYTUWoCP6Kj8+PFFnsu5jOdONMsPmic+IKyUvYbgSYbgMLQq9DH87PyBhtlsu67i3Xz0z38Joronyp/jJ+3DdStC6hWjWaksjrzbssjhhlzPFPxFnjrh53sPwO4g1CyBa9c3ITL54U9PKi5xxh+u+hgjXQNSkb6rZ6LDuaxT6nICgRaeGzolHI8IGrVxdsGCBWhIn0aNHDyxbtgyrV69Gq1atEmGmTJmCSy65RN23bdsWH3/0YdXz9un6VbhmxQdVj7cuQQRFakpIOl2F3TOWTjEjfDlxEcRaRl5sYiYsAicswmP7W3FEeTPJoyZwaWlk+FOUh+bhejRDiIAdBREiAEXX0l2EKMRuSi52D0BaLsPdjqN03GYeCiiiGREKISEgGIcIrXsCgtC6Z27ue1Juworf5ZZI03FfKAIiJFBIUeOWSk4iiBDMLT7HbkK6hTD8hXIz40IY+1luRlwsfqTEjzCOC4RUalOK8WQNKGsTNjV8/NEQQo4KYjl2z+Pm9wYrt+VLxMH9K5QnXl6DxfNrq9BClZrJifTwPG8y3dQ0S+RHCNXEqo6ymHSZUXffHYUOg+ougQZCwNtapeE9Nmo0Zg4LAL9a9i6W0fo6ibtOscb1lUzjrbWVdcuXJwtgLeOL0DzSUKoafFLHJd1UOCsO7cYVtLbizxWv5L/MjXScLxQ/jPmqnAQQwjUpILoP9b01ASBgfkn/0CGv/VwTBALovGj/mNdSEQWm2EybfJCM05TXMrE72WHgnLhgx5OebpT/AgFfEFfKIjm5AOSezADuxmRcclLGGb9DLiUu1xn8rOIRST92FjHJ4unCjtMh445TJMqgzio9gXXL/gYFGZbdy/q0X+HEq54V1gqfN2zutNNQJnEs63ekMmSbJO0ptEKwxWkNnYuqw3PYyrFxzdPNgfPPPx/ffvutOj777LOGzlKjQSWT1uo+7fSvtojDZeWb4j9GLCSSQo4OTqcSx0FWnHHHru9F0p90eFBMAuIMhyRQ1BQQUsVpUisBogAm9ZQUzE3dnLSQXPNWA8CidojDM8oWZz8up9B1rnRX/F5Yz0X6wbq3/dPurTRhpQnh8Bea7JpKT32oZ2Ocq3G407P9jFmrhFixGteybECN6RAOt/iFMPtnwdq8vBb6fSImTZZ8qpuDAdjvcIIhlP6YCftCpFzn8Uu7zivnzFjSr8lxGQGIhuxY6hAFARSCWhwbZrV41DHqk8O2F011fobr5Up74dJkXSPPctyF40jKmp9HBzd1weXOeQUUMzW7cSZsdOmGGxlxRQodyV2IxQDGNaUI55dcpQsY/JPMpN3yZkl4kUvfU8LfrBlhuaQ9Vy1R2sWGnSsZJlHxlrz2k/Ik/8bPRUCfIxHOqcz0tBI0PceKs8OqBQf/kBNNjN/UOVdHMn/GWyDMNJwyDj/wOCk9fCIcCyPjMM6Aqj+Vbx7GqnOwcHzFHGDKgoeHGZ9E2YpVCyLNw4VGwDcaQRYqgmjeoaGzUCfwHLZyNFVmlAs9e/bEwoULDbeFCxeiffv2zl/8AaCmpsbYrEHanvDgEEhnddJfIk3OfutccmlvJpWUMTsVmd/0PJuxEHOJr1M/EqRISTQTQd5RrDSQNE0oaiggVDg1e4EEICiSpohgEAKERCgISS4j8iR1fZqkksqpdqeIoAqTuEpSmXATcLunyIaqRJGStwABiABACFBokBZjOGGRA0VI7OdA1j1zywv+FPU9GfnSZBZIaMelvOWGOA7DX7kxyk+2mx4xCJ4mH5QQC0eWDHNCSPWrlBKi7PoHAFA8z1bIt5A9FWE/IZcbwRhd2uzYvq6ym0Bc5/ITYn0Wkq1MZ5m4Q61pozBOSW9hSFbyqOodGzjxCmpp0T/YmH/29wDQ+DnshvfDSNrXs7pfVXe1JeM369f0l/1qWt40G9W9rtmFaU4q49JuEdeT0cu4SPHdiAdKN80GBeuqSFMeF4WmZD3YMgYfFLo8SWjebYblpXXJyzCchAqHKQ0y5JL5zGobaWFKQWTGa9SFQMS1BGk+HXsbHFwRGisjqcm4PdyMxtEGLW7vUhbKM8X+xOWsczwpOnHmSdtt3UXbjLMQalWm5HqC1JAMZluBWV+C5d3yU+8npYQtET5NXpXZhbTn2GRIoUdjguewlWODVq4OHz4cTz31lOE2e/ZsDB8+vIFytCGh/r7WlfB3S88FIvc3wl0KR+8Jq1OWHbARhMtqcioJaxTGIq0Ud91CuUYhZAIiQBgvpwLYgiK1BFgY7sTcDT9BphykotR2M91DCFUWrlDlylfI9IgQQiCIyWniuTn0ZqrumJvgbvxBKrLDnpT1AG2dW+KeIrMAkMpLYg8CljtFCurEkn7j7HLLlhdOOVl2hx83FxDnsSQXTntnbOKW5mf7Z5E2l3/MVuUPDlF7iEmqkO1GPlCRfFBG+mR9BOwwbqqfjRJhuLJSKkpt0wX2tRUuczRViVwij2kRNAEuvfFyLg+P3PActi6R7yuZ0EVlfLu0rBlICNM9aQbXwUKFKZeuyHb0ZVbf6OoqBAsnEn2prSg1/XSc3A2JBSNK+SuEKRkTOWIJsFgi7gBWKwLQ0wiEogSK7hDFacflIZkXinmVUHlT8xlisinkypeY0MvSkVoPZletJGZ2lWp3d5hs5OkSTWpkN8zIiUTSy+TOsYClCMybByknq9eMwbyUcmpShZVmQvlYJrLyG7eEHDK6LEaZCEiumrLAGrV6m0qUkYxnkY2SzNauv6z6zFPXDUgcPSX02JDQpMwCrFixAnPmzMGcOXMAAB999BHmzJmDTz/9FEC0HGr8+PFK/ic/+Qk+/PBDTJ48GfPnz8dNN92Ehx56CGeddVZDZH+jB1H6kT8cZceTEpebl+ql7AaFSvnK6z43S7sSywhTlhM/mSFisraCU7A17CFFqlV5EHMjy52YO3F3CCYn/YQll3Q3D4FQ2HFTnK6sSKHMH3DlJre/5LyHSTj4vYBDVt5b8djpGmkRnKvXTUUmu46n85LTLIDLzfJDibSUDLn9VH54o5ZPIi3tUgd7UYyXJ2c4+2VLfRGFW7ke14/aYICkB39oVkOw4XQrFYf1YcgbrxEFJaLOIqJl2aTKg7TPTkq+GytZTVhs2EAhf/SvzeGxYcFz2A0N1fjIJ+Nw8dUsnlwqF3wRPFln7UsOfzIk1JWQ3C/KmGJ8xA55j4hDJXPgyqPLz+ZAlp9ROndcZlnjnAvbz6USNbmwdkuaKCAWh10S/tu4K0+uMiSJojuXZoSWr4snZLnZRDtFXlHcNHlHWJuGGeLC5PVpUZaSMZKn7HPCHquVT3uVXWrFuxuCcnPQdy1CpldGI6ns3kYeTpGTd+T+8uUQ9FSnccJz2MrRpGauvvHGGxg5cqS6P/vsswEAEyZMwJ133okvv/xSkVQA2HzzzfHkk0/irLPOwnXXXYfevXvjj3/8I0aPHl3ved8wIVAdcpkX2WkJ9aeElL2ugnQ4AvTSFP6To/1zI0EtdYrCxDNSBUAQ0exEnp/452QZL0lC6lxuzQhsFAAhiXh3W/37fSTJZ6jqX/YT7iQAFV5Tk6R7tLRfy0jbqwDY7FnEspFqtWikr5TFFKY/EFfTsaoYwkHIVH1a9zK37FmqUtr3sOI1zgJJhSMlz8jwSw2HjHBM8QvmF7K0VFjAdLSQ9lryykrUvSOAdEqbMcPq2nZT9esMGwnpbAozLR6v8ZIx2Uw3K01nPkrdJ52jrJGZHitzdE3p9VUXaILLcptejitDECCylFIhahPWo3HCc9jGhhQiAuR0t4lk0l3YpMaA3Yk6VvxkQfVtlHSH9lO9Lekuk3eigtm+MUwNkBVerj7htnKES3EqWaPJmUMBBHH/aVDfeGULpzZq5ilE4ikZs1jBn6J0FbnlbUlWeUaqQsXPY4LDH0l/ASsdO3zWWIqPQ1JEmJhcayb5sM2hzcFFHJRgyDv5MbvO2qwKKWGNJfyWP6dymWVMFNjMW6KsDmkjFCsPP0c3QpsfkH5pcXP+mcxZWo7Lli0njtTPSFl1nIFqxePRaOE5bOVoUsrVPffc02ELR+POO+90hnn77bfrMFce2aifLzBXotUuHk4w7QTkBZmy0kdIV1IO2s4qYoLFwjhJqUVQFMcNUFREM1quDxJKmauX74uEPVS9rF9Y7hHhNN21KYOkSQBJRW1br0EkQdLmanwfr2sTcd2oepJkTFj3qo5MoiaYm6wfIVByZqusQwFuCqDUQUzRSYZb5J5002GSbvws0vyQEm9oNY2EaYAUu6uKqTrcJVxjPKT4u17ftPEnyeWEnG0Kd56ElCAYWvO8JgBSGaWVWAXfhewvVmQ2I/HNMRqdNYhLyNnlcuQzzY9Va+azSUu/geC0u7cBIwgEqBY/3YuN+Wf/DRSewzZGNJSWINF5llSsmk0n7mfJUQKpcHX2+ZqX6b5BsrvY3qjg3YxpV5VULHZ+zfIw5hsjACgEhL3U3rX0Ph1Wz2rJZtte1dyQc3hNJkm5EbuWa7l4KhmatgrbkrsOZDkpVoCnxy1Uvng+4lgYXzYCVKXZm7NuXb/TK75PzIFxWXkmHt46l29vlRu+sP3i1i7gtLMqWO274k/WgFnuhF1UYnJpcVr1lhZH6r0rU5WiHj+JnuU0XngOWzmalHLVozGi9l9h4eqNE0gnMtw2VIU5UPEbHa+TCUgny6aqILPjFSZBU7Kx3kVuXBXF7lIG2epCREurhKJacUi+YEvGm2eDqjT3dFlTIQtVKmkaIBSEgNg9BAJmmDZBQMxSJ0iGQYzIurf9Zd064hZEktPHNlRZAIql5TkObcoJmMrUFDeeMcvNbY5A+tlxy7xZlWWj7NcuK0DWC5QzIYJWjObNL7et5lBO6gbB3w9Hy3GNSlOVrzncsmTiPKl3mDc66U9WOIcc2XK8foQUcMRHXChf1smusgbAxkuzPDw8Nkakc9ukpqRqixDi/im9qyPDwXQj5mYpIrWxUjWRQC/QMjsYEW+sJJV6Urkm+XJEt2Ra8l7mh9g9n7VKVjfJ1aA6v66uV/tpYmbq92QJzHGAWTq7g2Z1AxPp92nyNmnk8mT1+e42lfzNRta2vrWfidY2Jgm24PLQ1waRJytesIP0Nc8RP9KQh65k+YtKZYgUMXOaC4BsdSmRscZmKEed/I4lWyKvqQUwH0P5KHsMUQGqMLTw8Ghq8MpVjyogvcPX/hJODUtKOBeZsUOK3L1KegcUd6hGNiO2IEkVUUzkRKzMVT93svBxXCSiZVYU54+EVKxyNavMv3kfkSE9U8BWz4YUxHZMojmmkcJVKkSjGaN8dqmmbbasVoLas1HTZr5q+qf9mvGyE6MhJEsXz2ZFkmxxAqbuWU0kZPk9pcvquPVs0QTp43lh4wqt5eMKT1JnSihDbT/TzTxDM2DH7FV1HZJpDsA2QwBdpuqQE5G8LfU6W/4WLwefualkiM20JTOksMIZ+TLYrZ1XF9F1DG3KYJ7OojsGHsaM20SS1tfGUayy/Qz38qh09P3JiK+u0VDpNiACwT6JFaAJWnzw8GiicHV6pTpCjnI64qSse7OqFCUa2Oc0vtFumptK3qkDStNVXCsjmWWkIZMmrTjrlCuwJH+FTIfl0VZ7puc+yl8ib3ngoukw2INRDzqn2k+pxuL+mxu54spT0xCBWTahYiN278hsVkFSESv2LPE8ykIe3k7N0PEzvqvbEeO8Djl1Iqvt8TNYFMTy65IDe1YChuJWl9V4YonxAK8nwSSN8Iwni7iccgwAMAUqO1fSLp0Fi19FFR+rYsHuYfnnvq8G6iLOvKikruNwGyOfbAh4Dls5vHLVo5Gi9BffpWvJG7Op5hQW+3ClREaPSJAKFt0/CSBeLpyiWBV6thunpkl9ilB/Vd5i26iEAGFkFEDJOmeVxopU7p5UpAqnO5g7uLsIYvdQ5U/FQXJjK2Ju8VmuvbEL6io8JT/IwgrLnzsnUxDsnhz+mg+b99zdpfA0UpajGQdTdJEsIz3KyAMlw1jX5HDPN+ub59+FtDhcistSkrp+tCLVeqiK7ZtvAXuztIw9e5OfXXHD8s9yqyWi95rMD4GRXpUTrWVUUX5rH0852NhMAXAEASJLKRViY7ZX5eHROODSPpiKRdNNu2vbpbDkTbf0AWiSGab11Yn+1xE6SivZMXIzPoL1xZKMCaPjheqe5U1S4WpfJ+tPrsIC6+KlsotYHnWqnCPoaOWKMV5mKa+fklkfOoTktTqEYBIu8wBJJImf+SzcT9EN+/lGpM+Uz+B7PLjiSREXIztqJiMcbq5UDDlyXJIpl6bQpficWP6fgZIcQpYjJU5hnY38srN8P2yrVsa5VH7terXqxX7Ezjy5ZIHkMLWEfC6kf1ZKwt6KpNxkKw5Yzzx2Y4XnsJXDK1c9qoRafKErBKk/+WD+Yg/1cVZ6HHA9iYhn2rF+Ne4II4WBUJtSSbMAOlOIQqgl8bb1Hxmn/muUKyblpHotra6FIIQIEKlZ45mqSvEqlaN6BivA3YGkcjVN8epyt0wFkEw/Li/F8urBaHIKuUxMlohMxadgbuoejPjw2rPCwgor5RN2VmWYNIIk822cEc0iZfGQmhEr3dmzT5216pYx45HXSXab1szDMMXuqhOsEowIy1W6JsWEMqrrUDTaUTr9rOEMN8grA8iHZ+9iZiPhZoUpK6ztbmoL1aYcqTNYrZu08ae6TymbcV05q5TfsfogphuzYtXDw6OpIR+HdZnMdZo+LxkVaZuPOZF7b0nLTJWpI6LYLeavghxyUumrLetHslzxqX1sW59mVyY7Ak7CIj4ZqERTKkEtB7L7EoLNnIXhZ0Ko9JNxyUkAehKC7tdlCpILJ9PkNVdOf+fKi2bckn8mt/LKAyuM3PtAKsK4t604jN0M8wH88fGBUOzmNB8A5m5lSXF7rpgjaxzGK54lmW5v1fwJwNa/SXZp+Ml3Tw3VImkjD3b+Sle+KiRZZXeGtx+vLVvJ468E9ZWORG3Tsh+wh0cjg1euejRC1MVXXiAMCcq+smCdKJBUmCpCEX/FU3vJFNuslubPLpGyK2W7M1bh7DtixxCR8tUkf4C0BWu7E5O3CSPI9It0fEyhKokmSeoXbZpVkPGCYvm0s0CIAIHzl//yIIlZ5j1pxaqwzqUPAVPZGbkJrvQse4OrLD92cHMA8gGByQHJ6zTwJpnmhxSZLH93o81WGpYCmYHUG6XeVftNIGuUKRmydV9JXtICJZm6IZ09gzUlFUL6kps6JI31oWD1ilW/GYCHR9ODS8tQDc2DHb42NlZ1flyfcalISnBIoVIGVyfaq7ik6QA1ZzPFnE80qcBduhSiYLnHdvrja/VDpcylYAovo8RJ1g0Qs9QlFHWKaDupCQCSxkf3oab1Rl1Zq9pUuiZrF8o9vW2kK4Bd9cGgZqwqls7CclMG7CBArT0j6c4mNZBuGcKVdIamP3Us4nIjxjFYSbMgyjhXXZblOQ+3TqVOjjAEGAptQrLuy5n9WZuZoiVRXwpWKt0ecsErWOscnsNWDq9c9agiyv86N6RNDk5CTSTJq/kNN8MoxawkZHIzK6lvITMkWGh38YXKmVbY8LMAhDYPoO2iCoSkSSl3V4pOw+Zq0ixARMeiGakw3JMmATRLtSgLSXKr70GIZz2Q+Ws4YPzSbdzHUXKyKJNJs7nK7ayqik49bOVnylk+SxVOwKWAzbXBlX2ApcXtrIL5mY7mdX2QoVTINyjOBN+h2ByTJK+dbFMLqgV68aAoEhcqmI5CWPELR5rCkTaHcN/aDUxG6Jilqmywwk7LQi3JIOX5YOZNo66IqaibaJsa/JIqD48NBWk8UYJKuJtu2atN0jt1lxWcZB+qeYM2TUBQG/Ww7Bj7B8Raj4RbonQycpmimV/bVJGkOSpho39m2iK7P2L3+jLm1jwKWY74zvbTvmQ9DbbijPMYO19WOsTMcnHf5Bq00kjGI59RgugkZNzhS6XG2gYY1+Z8mnNXmY4lp/i5U56t0yNLhsF4FqZmPTX3pUpsUDdijYedE3ZWYYxociCFOCWbjBmEny33RH1JtxT5zDRqA9dnrjHDHjp4VBWew1YOr1z1qDJq+3XOClu7L6hrspu6JK6n4TdcYcJ+5+cbXHGDRkKAKIzohVBUVuWeWOLJmtKzCCDPMckzaVb0N6QChAACtokVoJWm+pov68/rhhQ3MD9+Jis+MmUE1GzWBAGzH4lDR8cegXnPA7KfyvnQoLJWQ1ac7s2ssja4Ms8sLpdfqJM1ZKSbTc5IZ9G9TtGSd/nJm1JTDDIqUdhysaOwB1FSRM2CcbxjRgD+jsTucgqAofR0tKK8JgBKFbBU47GyW9YmVwm/jLzK71RTsA7fBLJYX/DE1MOjKaI8Dptu99zlXmrGaqXc2bHSyVJ+ql5W8G5Lz5DUv11y9gijPzVYW2pWzQIKwWZTCljXAqYqUabNVZVkPRFh5dP2Y/NLrTLpe82lVfmtVHmd2eXjq8OEctN5NcMneam80yxZx2w2J5cpAp4AS08+XMVdZYGJF9issJJuVnzy0VuUTJWOhGEOwDANwCsBMDaWtZfQlwXFg834ebXwcyIPcaMQdpkkleNnV1ylwMPyoaJ1Lx3TPidpaVadclXyDPLCbgvVgOecdQbPYSuHV6561DPMLyElFEPuL2V19QoZPRhsHqJnpCbIF+sdCYiWUlGoZwuk6awyypLYzErSP8V8zXNIAqFBlhHPUDWVoZIqawta3N2lOE13j0wCaMUpKPYjTi1jf8nCiFFPTrZh6qK4jSbjHkyWkRNOVCVZgyRt7HC5cb/kEeeZn0HMn1LOpd1K2lnVDydKssRmV3oHYAaT+bv9XP5pr6PlHs2gEXpZe9weBfMHe66JUYpx78qkfuom15MMOCNIws1K3LXRVKnvCw/inD6ko0k1EaAiAitGiQcgDPHcyM2NST66KnxgPcn18PDYIFB9DYP8wb3qiAlTcuakqTkTDj/VuwoeXqg+jhBHwThwJEIsliQMN+NHVJewiO2+kpMn2Hsl6K5XuDc7ZaRFMB+TL3ITVUwxLWyTAJJsciKk+axZ4mT5hOGffPxmOoyouuIl7mZKJKqXkqJqFVBKXuSwSNZTdDieWUIGasWYeoYyFRbcyTFk84MutjZjkH3mM0/Tzql+qhrinwtk04upuFGfnIsDybq2kdbMZZ7ZUEKOdYznxPLJ/crhgLX+zLDnkle2FFjR6wSefno0JnjlqkcdoLqf0DqZsOXqqZwKoAQ7ibliPGsRpDYEINKkzNZfGcohcs1ahY47JpvRr8BCz/YjAglGKAmAEAhJIBAiXqwUQMQzWQ1zAQC7FvFdJAlDTv/yHwKx7S3TXZUq1qCR0W2as1cR5z9phiC56UBWkxFMxiTJ0TXfvMpQmPLwLv6bSNNiUokz3PZSYyVsQlnL0nWaK0izs5oHnJPXI+QcD2MaseADEkC2Beerm3j35IDF4SbfA0guzEdScqCnHJhfOW4pHxi7kdnXKf56Bmvs4R5RJa8z06w76hhVMaU9rZyRVC8/GwoCUUt7VU1hprKHx0aDcnitKScVd6XD5HvnDUmpfGFdTURdWR8qlUixp5qnGfvpyY2x4i3RP/PCZGuWhHWfUBBaekoA8e/XCZUm45y2n6XsdfhxHh75WTEJLW3O7tXSLtu1Ee0WgMM8QPmmATSJ09VqtzPJtSuAAJQ5iLjIxuiD0VsF/mM+bEUjJcRkBGq1UuwmebrdTvPAHFFkD9fcZ5EtQ9D1bZ9ri4zPRPRe6hvXe5yQc/g776uNuNlVg4U4y1Nl5P96euSF57CVwytXPRo16vXdLKFjMXUlMSETmqxIAp3sQyyilHCLfRTZkySQEv2+y42UYQBNBCNezW2mSncRV6o2IyCptqRC+lrbXtXuAYAQ5oImPWtV/TpO2t2wvapqSuYsrk1GxmQtpdlVhS0jlZeyUtiRfyMrynDjZ61U15AMlT0VHkZ5WW72bFUWF7n8iTQRNmaz1hFrcZBERWBsxpt27bp3Qck4IpIDQLBhjqwIPkOUzyjNYuMZbmXVZEb59U60hMzdnTJmwVaUpwpRKpvZgaudmw0DfkmVh0dThktLkuYmQQm3upixmlApCpe/rVbi/rxfpURgsjo2rri0Y7dhbtVqZiy9GgIQiowCkIopudDEzolOlytJdXqSrfIS6Tya1zx01rUM6Z4R7IJ7eX9MNkm6meHd9ZVHJhtysoZsBq6l/Alu4+A4UdjYNJpDXlsVEKnNUT4xkcPuamaZ+Nnm1bJ+ScvYdlbLqUcnpWV5dzRXdwTk4NQ8kqz7rLxUC7qZ1C6a+iCxqOO62AjhOWzl8MpVjzpCOsnQyPavC8WqwROML7HUhsiEpfIqJlAx4RTE5mnG5ELfa3Kgs57cd1S6pRMns9tXkmozKyTOobR1BEmX5fzVKEt65qpWl0bu8axVImVewDmDVcUZxiYB9LJ/29ZqSAIB4g204jQCiuKVStgQAQLBlmYJ65I9G+UldW1cBuZ9gigRO9LcKK7H1E2qWNuI2aLe4EqG4WGlrOVmy4XsHiwcK1suOBX6+cKVDbLCxQpze9WcKc8uDCWednOzeX7LB3lkJmjMYGWNxI7LVdyyqkCY8sZ1Mg1jJ+WM4pVOtn7oopAz48sKVFe58fDw8GiMSOO2phvFiidKerljzfUtVT1gZneiFIjC3fUYtlZ5eMfGBLqvhtnvOsvAf6ZPHolc8p1CKbbNz3Jk1rSsS6G6YqmYQ5xT0xwRMR8eTwheI6bdVca3ec0kfgRNagl1PRG7L4WoDjSDs8kqkPzxPFn3Is0vwSnJFLPt7Tsfa1bjjZ6bAPREBxaE21W1r6VcwgyAYG7IdzY3qRIlZWw7q/xx2nvDpZbbfsJM3nynHPEImApH0qL8XomnNIE0+aoiHv5USvXKpbu1Rr0n6OGRxEasV/aoe9TmcwxtirKKh50/iwu4N5gUYFQ0DqfkYndjlqi9BJ67ue9VvIBSlsllUmRUo2SOljJHRApLHm+kGC51IMXNdud1ImLFqbtcRh5YfZFkxEZdkkGkrFKmIuKJFCmE4iMix9GDJvXA2ZHmZpyh7gWi+NWZwM5xFKGMShjR2kdiBm1oNUjW4MzlVjIMY22Gex0drvhDy4NgBlD3Usx64Ui7q2iJtzX72uUGqPbjYpbCutfipd1KghJRG3520sSSimeLR7+A2NeOPMnvS17FqjWKdYbKGvWqcNHGJnlkPYHNhggEglocohbLsTw8PKqB0u9gGtcs7ydPqpjHJnNoqpbMbiV2E0yGtC+RPADZEcj+FzGnjORNvpfsSNKuGaUQQvNmdZ2kEbJ+HDVmuJtXlOiKiSlxo7IiWslF+kd/WT6+4kpxDidlc2vg3LNU7fuIT9jWYLPaXFZrdHbJCf6Qcm/zPiCpGIV5LXmvAOdxyXg4bIpZUqDEOWtGpLDOiaKzuHR5HEda+mmyaWWxvc1Xz4jezitlPDZbvhz6lvuokIoQsp9RXYDvL+1ROzQUh73xxhvRt29ftGzZEjvttBP++c9/ZsrPmDED22yzDVq2bIntttsOTz31lOF/8cUXY5tttkGbNm3QqVMnjBo1Cq+99lpFecsLr1z1aISIlIR1cYQhI5CAugY0uZJL25Xi1CJZ6rtNbIYp2QfUtTDygNS8iYSblrUVmYjJIBkK1ACh3GSIZyMmuDJrsiya1HJZqPhC5hbKeCzKIvMCnqe4bmTdyXpW9wSWZ0dP6OgY7Q5aEEUfr5gA2iQnvzkA+9As0dDDAppZW2eudOUzVPWmWaRZp5SRikrOSI1rlkbCBABZ11K57EAWk02M2NiRMqLTXaVI5em5kMgXJf34rF5eP7G7INYmhcwAa6PKjecxI5NpXq5xj3MsRKY/u1bDRl7mEgQwNz/MW+85I5Sz8z1qhyCo/eHh4dHQcH1ghcOdcznAUCo6uZ07bKkPulQKJrtoYXTlmt/G/EvKwXRzpGBe8vjATRMh/mFbpu9QEEO6RyEVzbCS4VoiyUtVr8n6dslluWyizvivg6yMQhFgVQrrWt9R7mvJQWykPUOzQvk6EcH+mvVSDrFKqmqdWbJ5TM4iGEpUkJ7jIbQSTmTE7aRfKcVLNpOkoC3jalLGOa7PFCrvzJaT0gkYLc84KDleURmwD55nB6W20+X3aSPKOkNW5HWacPlI/bR5lIWG4LAPPvggzj77bFx00UV46623MHjwYIwePRqLFi1yyr/yyis45phjcMIJJ+Dtt9/GoYceikMPPRT//ve/lczWW2+NG264Af/617/w0ksvoW/fvthnn32wePHiSqumJDx996hjlPoi5yGe1cuLaWCZURv7Z0TVQcYyFJMzmcN4aZI961OrUZg75TzieO1f1LmiEnFeZB5VfcV5Dyla0h8dAQgB5DJ/pTRl7jDybrqDuUd+UPmQ5QIvoySzMP31TAF9zeUkX1apxhdGixAsR0qRCedZPy/mVuqAPIuE/dfUOod8LoyhMeUfOdyih8TjNC5MlKGIExVN5UZ5h2rbnKgyd0oWKSlbAgnh7GvBEwK5xQ23UhWZ8/tT6tk4/IV942Lt4O4Nx1hFqXryKAkR/3Jfm8PDw6NpQYAs8mCj1Le1vG8vlbgifhYut+QKKrB7rdC0eWHycKv2UtVQmg9a8lk1YPvproqvluKyvDwU51J3vsoeKKDyL1g4fp2m2krkiWvPAOsuuhapPsnY8iBB11wQ6o8eOqiVcjDcTRlGfSXB5oKMayXStqZdpo/4SpuUKH0WlokA85xmZ7VuR516XJNatvihEbuWsCmxk0/XF10ro6IIcCuZ6xMNnX4TR7U47PLly7Fs2TJ1rFmzJjXNq6++GieddBImTpyIgQMH4pZbbkHr1q1xxx13OOWvu+467Lvvvjj33HMxYMAAXHrppdhhhx1www03KJljjz0Wo0aNwhZbbIFBgwbh6quvxrJlyzB37tzqVhiDV6561AMa7yDR+PZa2TRNBAh9b8zC1AeU3oq5wSY9LjeoXoj3q1JeKq4SbspPKzYJAUISiXSg5N15Mpdgu92RcCtxFqZSN5oNy5aBSbeY9Nop8/X3ApSw52U/NlcrS3VLY+jOpfqUPCttYuwWkl157iPDHEBErlg8zD1K1krD8Bfu9GDJcXkbKaxcz4plDJCMjKkyCV5PMgyxa15mV/oJpD3plKfuMk5V289PCYJmVK3T5AEsxXPKM2b3alZR2pGagRQZl2wpeAWrh4eHB/J2IqUVqzIuF5NJ88+W17/BCaebVCcZcooDSK6KuF9gP/SzOLl/NsjRB2fIGgTH9CKXu8pMMiYZl5v6SFcBbaNeKl3t64hxwnHtyo8MT4laS0dgxOGWLlcx5YyFcz2DYwh17ZxUYNMqfhBByFV77BHxBVrJ9JJunEYrtwq4mq1ETZcR8n+qdrWc37NT1/dkNZe0+Lm+m127xjp2FIkos3hjNQ5nwawM83quzVFLeBMBjQO9e/dGhw4d1DFlyhSn3Nq1a/Hmm29i1KhRyi0IAowaNQqvvvqqM8yrr75qyAPA6NGjU+XXrl2LqVOnokOHDhg8eHCFJSoNv6GVx8aLmGtJYiSXGctNCIT8MgsmH4kbhEuqK6Wb5rCuzaxYsglE6Wnz+3wn19iNBPTW3hTv0mn2HtHs09DkNiRim1O8nxTKnSz3UCQ3tDJ7vAACIaKtBENEv9PEZ+JnVWHqrEwJsJ/Ko03DZNl1tQtAGZjnM03BzvwQcYbzmAUwZQQsDXbSzz5D+xEJNnsUcGrWQiphDgC1u3Y1qjS/LMNtZIqp2d6MoKpA7B1SMvkauxaQ7SCRRysCufsA8UhJ50m+v/InQ5e9sUReXG5WXgx/R4ESsixPqXFZm0cxGbLD1BVKPpvcQh4OBNGE/1pEUK2ceHh4VB9mHxp1g6W+la6RvrPjy4ApT5Kisu5YubF+Rnb5yfmd7ug1ddAMVyYk5D3nwSJPX8HLJlT+7e4cCBASIOJNT4n95axYlifyNbm23s5KS0XbvBIrkevaTFGUuDZzYhq6cs3BNem65PxJt/T7dCTSkzvuqmiIXcuSaFDMxxhNUWcubm/6JHm6IOaXlvWs4pBOy94cyz4nlan2mCyFmkHnOY1TJ/xcslmPpNTjSvFX5Rb8HQbjt4xu52sSdQfeBiw0JtZIKRTfozSqxWE/++wzY9VwTU2NU3zJkiUoFovo0aOH4d6jRw/Mnz/fGWbBggVO+QULFhhuf/7znzF27FisWrUKvXr1wuzZs9G1a9dyS5QbXrnqUU9oDL0BR0p+rN4s6iQYabLIs00yjVhtHhM72uQQIAQqjVilKUS8ezeUApUoUvxqBSvrOJgbBBBSoJSVYaz4jK5FXKIonVBdcz+pVOV+ocq9tJ3FOUbJQ+olXW4ijpcrN43aYWSHYtIhz1yIuRmdeykixBN1ECnBmSU/E2D+XO/wV/FSMu5YjsDj1n68zbjdVQYRPzDL7EXtkCBIQju4lIL6Xlj3jkgpZuGJB5UYZeXIHX//5HsSuxsbv1lxVqmq5CtZZlbj91sks9GA5gASkJ+URpSlpoIgEEBtlvZ7swAeHo0ILqWXvKIc/Uld81++LimGUiyYmiNiHRJXPkqNlWD+LnZbvvLEImy8H0wcpjX+wJLnsNWpNjvXdEQSMl4urjYWTp/UzjvRKSpik1kHcoNUkwzaYdz3eeub0TRHnhz3bNxgjCO4uFKcxhM6ElzWzG6evBrPXLiUpenh0twSylR2JiJNPdkZZD49OT6zn7rRBEs96hLlyfupIDjiSRsf5Y27mkhUTEqeGxjlf688gOpx2Hbt2iFo4E0ERo4ciTlz5mDJkiW47bbbcNRRR+G1115D9+7d6yQ9PzfCYyMDt40qz9zdoqhCGDad+KZVimQkNrPS3Xpyk6q8B9R10gYqGP1ktk9jswCIzQKEFIDTzagcdpxmXNovMOSkktXcQCtpb5W7gbtZmwxw+6yyziSdNslh1FEHapcGfbjsjIocfun2R91+pPyg86DOYGedXz7DVh+MtDqVrWBpwPTPupbZyfpH1uHKmnXofLEMkjW7g8moMYwhn0FqsschKTcZ12qwZm66kZpWuQRQsJaZYLOC+QvLX2h/69rm6PXOSfMk6FlpRfA2Vz08NjSY7yTFHU0GfUg93MjfAxiScR9E+sbq+iI3YdhOlepHYcQhkp1byiWXS+lgTSKRAYPIMGcRb6aqmWHEJxP0B7L8SYok7/ieCw67q66CUop7Sgm41s1qKdFg29AmciGzjkSi3hjnLMljofgu359A81bYFeTKgruElFzDlhZeANp8QG4kTX/pc/KJm1lg7Y3ibccYz87KR0U9bS2658wf49nrKDLuDbeGhEViGzw/LtQ7sd4wUN8ctmvXrigUCli4cKHhvnDhQvTs2dMZpmfPnrnk27Rpg379+mHnnXfG7bffjmbNmuH2228vK3/lwCtXPeoRlSoaq3mYuYl0MowqEjOIDsF0NqZCUXf1tpvQMzETh9s9TjYKL2DEr4kyU2nxLTpjEdKimmgLvrmVnp2avIa6d9tftUgrtznLMiBJr8oz26QLYEpYCDiVrrI+YuNPungmWU18rl0KPDfLznEItztcMilntWFVTOy4OQCw+CAHWfaAIuW6BGR7Tc0/R0KLah1k5ZfFk1C+pvD+hHsI8B2FM5+DkTYvV8YgSLU9e8YKF7VZoL7PM7ZIg57d7JKlpJuVDfV+55kimoeviJwkt5RQ3ng8PDw8NiJEiy/ydtDVH92LEldCdoKSYyDZP+t7YbkJJifYvWCHea85naQ+GT/IJ3im5M5C2+Nn13mq0GSJXFz/cK8Vrfwa6rqsv2S6aDDFaaRhdI08rEzm6GXLkbVoUvooyBXGkT/JrSyqm5WdBJ2zeXR8TWBtEshWPNpZJvPsFrKUlBlne4yRNYrMHGmm5MeYeMHh4L+E7HvDraHBX9Fq5qdK5NOvvGoaaNGiBYYOHYrnnntOuYVhiOeeew7Dhw93hhk+fLghDwCzZ89OlefxZm2sVVt4swAe9Y70X+3rGfKDS/pexLcC0TJ1IZWdCWUIgX/5BZJ9Sl63KBGh4lQGAuJZs0IIQC4hJsYECNpNANJGgF4WHc1kDUUYmx1Qc/oYOdLuXH9lmwRoBoHot5jImAC3sRrZd3Xci8gmq7b/qhXFFOdT3QNq11I1OzL+1Z3PAJX6MMPuqoRFThQJcrW3hBu5PeIHRtBK3qQsY3gUm3JQG1yRaWdVXrgUbeS6pqR7qmwFcDRIuWJfXhvMxPaTcQDKVhSPJ59yjgV0vTCGP0+EXTvtsVp5V7KJBMpHSjbSZWX+3OGkiYCSyJmmXQ2Vgi+Q9CgP3uaqh8eGCM0NS3/4dZhsf1uuhLbIYqBEBgWM/ImnytNPWieN+mmbDLD7XF2TvQbKrXSKzFWlyJJWcmlZaLuxKr9WbmNZyWklT9HKnhDEymuYBBDQvFoyPSH5XszBDXdZWtmt82Xkcdyq8rkpAC0T8TqHG2A9+nTymrflacQ1Jhgnlo0mwXsjLqVtq0bmANSmV/KckUWuiCwLaXyXnYVDAyvsM8VtmoUV1jkZd3l8xzQhkUOe172deYd7qnwjRVXz2oTKvaGiITjs2WefjQkTJmDHHXfEsGHDcO2112LlypWYOHEiAGD8+PHYZJNN1KZYkyZNwh577IHf//73OOCAA/DAAw/gjTfewNSpUwEAK1euxGWXXYaDDz4YvXr1wpIlS3DjjTfi888/x5gxY2pRuGx45apHvaJxKFZjckqx4lKRGgGSZE6S1QQ9tc3kczcYhNs0kB+5J90A3ouIhJtFomXuYzIJ0oTa4EuxMInI/mooiiyOeKaBkEpVTW9tcwER2ZAzEFKWk7O8STcwP01wmbzkl0yeu0n1bhC7GQrWjHPaple2nySIyQK5DkrkQRfOUVjup2axwpQDrPDmtWF/Vj1M17UVDuS2u8rfO0tZasNog9buBMqWqdKastZpaFfTrrVTwtA8lYiDHGk64YiDx10qeBpEietS/qo+M/yzMpYWvyWT6xObp/z28/EoC8LbXPXw2CBR+new7K9w/hmvmbGodITxhww/qfyT+TJt/rM+KdH/2LJ2qsxNuJktj8uMwZFcCVkSIUwlJc+nmSNh+YmYu0i+G48ArGvAVNmmXTuymyiHAEjvYpBarny9dT4w4p9QbHI7qgou8kdGkYmiaROGMpPx10TRU6LMUrSq0YdIygpLxnbjZ/sa0EpvNZ5jZ15c15mXxwhv8PeUQrGwiXJnce4SzaGksrWKzakiZLwmZaHKr4VHZWgIDnv00Udj8eLFuPDCC7FgwQIMGTIEzzzzjNq06tNPPzXst44YMQLTp0/HL3/5S/ziF7/AVltthcceewzbbrstAKBQKGD+/Pm46667sGTJEnTp0gU/+MEP8OKLL2LQoEGVl60EvHLVo16RIKWuPr9uc8BmHagsgG9aBblxVEJTYVEJh55GddqxDxnipP7yOBObWSmFJqd+goXX1kn1r+v8V2Z+lkpUbQpAhg1ZOvbGVjInCXMGBPMMqOX/6lxbOQAhCRTiG1tRqh6Fy48svzBFiRo63FIPgaSRr7iSjV25yCHPnjZ/8AQolXylL4CLyOSKK12IAFM5yxs4H2dYfgmdZ+LFsO4BmFNkHf6ptDm3NtPKYAaqwcDSyh9Vqukh/fmoodR6OGcdVSCTG56Wenh4eCThILJl+OvVRTbsTtYN3nXKUCK+MmdO8qSZ+lMwD7JSc3WZZAvlJS2lNFBMTBK1lH6USPNpvTIjqQCWjDm6lgw5hC4/6WsVh86IWZfJa3Jc2yU1VoIZ+YqviBKPR8TuCTdot0xKRclrp9KurOtoJBDwMQVLXM00ls3DHntYbsKuDAeHTZsNSo5gRrZk0yEoZbCw64HBxSJzISPvZYVnUGXIipOSzzOvUnajRVX5sEd94fTTT8fpp5/u9HvhhRcSbmPGjEmdhdqyZUs88sgj1cxeLnjlqkc9g9Ry8Ewp2XnU6YdRJElj/NOge8aq5Uamu5PsksMtkQ2h0lWKXWWLNEpNMHYiYoWpUtpQrBCzzAPw8EQBQqEVuSYhtMwCKDduEkDHJ0rc5zlTifsCyMhTWjMo6ZfVfowps/JsubGZqRFxY+6UlDHO0jSAio6cSZhhM7KT49pYBiWRNs6z3PVMbikjtIwxGGTKQR6nS7FYyb3Lwx5NuhJ1zmzl1/ao0YrP1VgSoxc36Y9kWcVyMf4h4GnYUYlo1nFJnlzqm5jnm1lCxnPS2iMQona/+ntDYR4ejRR5tBm8o7VVaWkctxyNje74BY+QpctS00pIoe+1b/TF13lhvDZXPnKSjNQy5JF1r/xy0wnN2k3urqV5Cc3S2nk3zQi4uIWsaU1T+MZPdp7TZtqSce9yS4ZJASuGsA6nkLqN3QwvoYdJaRRZppXCS3nTLBVP3l4v096qzL91dk9AgRxalY+s1zX2c3KpHOFc7onfOBohqmLKoJzPYGpGPIWqLTyHrRzeqpdHo4TaWDuGMpqfoArlH3rHVDD3+FpoxSLfWCrpZrrz2aG2fNYByD7EDgtH2jBmf8qw+rDCS10eRW4hWZtW5dhoQOWL4MyDSo/0GZYcHHIR4bLLwsi/YEubErNG6/IQqX7GDFhwWfsMoBgxSlIKVs4UzM0UuJ8cCphIzoKASM9yAmmezJ1Cm/QKU8YOo+5F0t9OI9c9Jd1TC8XbA7uWgra7YYsihrDOHKl8QCT9hfFlgZz/nRrcZVpDHszmcCZKeFdjxam3tFp7iKD2R7m48cYb0bdvX7Rs2RI77bQT/vnPf2bKz5gxA9tssw1atmyJ7bbbDk899VSq7E9+8hMIIXDttdeWnzEPj40OsmfI7J3Z77TpMunxR2eyzyKFx6n0TH/FRYn58+5UcreUI+JzpA+jXFbRpCfvx10yvIJU387yTDLfIlFzJo8S6kdLLh+RKP7DvuWuys+U0IxsudyFkBwgmRdi/TopsmUVN+68zVZQQYeexsmI8RUis5e3ORSHsMTKzIRrJGZD5yu+d5wjf2s6h2BnirkLaT7rOrvTEEbe7BGiK/+ZI00yZVWVsMZqlNn1mXC4pz3axgIBlFyEVR9oBFlo8mgIDruhYCMuukdTghAUL9Unk7TVOmIYPVRi91Oy3BJK0NjN2kFVy2n5pJuIN7GxiZ8ZHszP9pczXJXimZ3JugcChGTm3ZU3fR2otE1lLPSZrHtJwm1/JgcCQuavmJH6a/EJOUuXSJsBAJL2VdkjBXM3HrclqxJzsnobtow1KiCKZqsW43OI+Cyv2YCAzGB8kGL4xe1d5TFWFJIxuoERSRiG5kAnx6HZHmOhshIFG74YTBDJSk7sMFbq2lXNJcJRinuua1ZnoJJZUUj9BZYNsOThmp0qwN73HGllKWHBHnvKkR1/tndybpBHJQgKotZHOXjwwQdx9tln46KLLsJbb72FwYMHY/To0Vi0aJFT/pVXXsExxxyDE044AW+//TYOPfRQHHroofj3v/+dkH300Ufxj3/8A9/73vcqqgsPj40XWSolDc0fyzyg+RajUkbqiRwJl6+dx6x7h6pJ2G42D+Z9VKmJB1bZ+EQApRC1SskUr9KNYoLP12rxH6+J8RW12at0F2AuLF5JpxVHs2vK7oWZwlVSqhReqmgV93TIZ/fyIvnYZA4NdwEwZXC0kZjetCqRHM8bp3x2fl35FA5XZ8N0u2e9OabylY0jyMqrdbbtqvJzIlzGQWlkDGZ4rmxVxXQQNpdy1qXYNeJnYRsDGlrBam+u61EZ6pvDbkjwylWPJgeuaAUqU7ZG4uav064ZpVzhKOWVAlUqYMH7Ny1ndrYuNxhaEpFwU5mLTgYJIEXsbH9bd2QeAUIEbjKbqAdGNlkZuSLVVhgDfNZERN7IclP1KbeFhaa8qh5tciKVU8ZMRUsmg9hwIlyKLLkOET/DVJlQVnx0UDxr1T6UslVVJln6TPbMmTLZnR+rjHa9ueAkhwB4G+BVHJdZtQ0mr9Mzwxpp8ew5nlkiuwkHa5RAKe6Ja9dA0L5GfgLGC2Y8IlLt25m8QNT21RbIOY8gngGbJcORyb7dRU/DxkuHmjauvvpqnHTSSZg4cSIGDhyIW265Ba1bt8Ydd9zhlL/uuuuw77774txzz8WAAQNw6aWXYocddsANN9xgyH3++ef42c9+hvvuuw/Nmzevj6J4eGygKPWhzvmRtkGSq+kf+TXv5MpIk8dKGQCWDIs2oSUx74WgzG7KYn055ErJxtzbCGWWTx/E5DhnlcXi/F1AUxszTmJRKyogaaysPauahBkarh9o1dPOoiSpzSHjZ1AHDwMcP9gS497xNS+XEb+LZrG6SJcnh1tKvM4CJOltgvoSdDsnh3/GuZRfmkxV4Ci7k+KmhLPbToPDHqOg8jFXrdCY6sRjo4RXrnrUM6r/1at4VivvxSj70HZiTVIXxaNluFxSYZtUaGo7WJLwxXKs1zSWH8nsKlYnYGTNOAuHm7WXk1KOJWcXRAkFQBhEZ8dBUiY+R3UQQM6UlfdSGS3ieF1Z5vQ39VFJdmt1xPbGVnwzK+NIuFFSJuFHurKM6/jMlaZFS4la6mDE15yPocl69JiTBDWTWOckK0TsaUQNUCdjD6rsOBz3Rlx5wjqUlukB065dzuWFy/5k6JGErCI1tou20oXBJvlnQcVupZDnMyjiGSVVm6afB7X8PtdnVhs5RCBqfQDA8uXLsWzZMnWsWbMmkdbatWvx5ptvYtSoUcotCAKMGjUKr776qjN/r776qiEPAKNHjzbkwzDEcccdh3PPPbdOd1b18Ng4wRWBzFWI+EDqAcRsicBMXSV5qrw3mZVmXFxDo+kC45wiqaQq79DKTOXmvLZ+hOemDQSTFbBM6CQ7HaVGpHheJkV8Rsjl+4rzxzzH4W529DrDaqan/Rh1jTrzJOVsS0rcL6/uMbuXJiQetWb00L/zklKMy7wrpmNR7FLJ8bqS9azqm9Ud5+uuw04wdWhD5hnQ74QtLES2v3XpRmpGSgROo7dplSubbYYfD0eJiBsfBIxhRd2n18jroymhWhx2Y4RXrno0GfDl+WmHlo31XmF0JG1EuZWgXKFp/H4uHG4uOce9m/C6/YVTTrsZv9pTVnxaJhkmQBECYTyjLl6xrvrskCL7rCBGjNPOrmX/0p+FN4moXpolH4PJYylBvg2okYVmGFXpT3NFItOO01cmAAhUZLNU1TVyHqz9xoVOtFeDXOlf6e1Rj9rUqsRBYfy0bONofOqzrFzO4mTZVb3xB1DBw8hi8A5CmfRz5BGWuy3D3fNkUMj3TzVRdU68q4z4a1eRiNJGKg0RorSCtQovQFXMAQg0erJfXxAFUesDAHr37o0OHTqoY8qUKYm0lixZgmKxiB49ehjuPXr0wIIFC5z5W7BgQUn5K664As2aNcMZZ5xR2+rw8PDI7JSZlOr7bS2Z2dfI1Q2uWFz8yf4JF4rP8fi1rJu72rK2nws2X60QZF6Gwp64oMtC8dp9wwyA5J2Jv1D1aCZj2kpVvgmu4c6uq6QCUBuHuiiNDUUxykFWH2xzOUgFGJsFbCgedT0lDiGpKVk1zcM7su8oj9HU7QcRcyk1QUPAONfKHEBahuoAvK05UeIVyoyzESNqX/WYmEdVUC0OuzGiWUNnwGPDQd4JVlQRW6gM9kocIrkjKiXsH0oqlswbqZ7B0B0IJN2YbMm8geKdFSVBJHWOZrRGeREiXg7PzoLI2thT6DJRTLjjokR2TcnKWhCTIU14o+sAkapV5RDEz2SeYflHZFT6W8QqoXixab50TlPzUPLRhGH8Czmcs1ZtNmi6yREMSpxT/JhGmuR1aB2VzDqMw8i8kiTzkhQ7r1m+ED+VRONPSc9mv8J6byz/xOq2Uvc2CMhlFCmHSDJBpuBMFCJFVl3JQYRwBCEdH9eh2tEaZ6EHbLZ7VlgX5DufJWTVVyWkuypEXeR7vBs8AtTql3uKf/r+7LPPjHe5pqamtjnLhTfffBPXXXcd3nrrreS3xMNjQwTl/QaW8z7wGGMe6QzuTpksPinUx1USPB1esVSmXRLKQKiKwLwnZoJG5ZH1NCW+5dqrjN5D2doH4wNWWupapLgHIIqInvaWPTlB82mp/IPi1VKW96jR2IASSQVCKxitAmvewOs7KablLYWekA1OUoIER66kG7WfL4uF2zQgGHKp5vJZrPxwJxsrWOU+CdxbZYu1GJZVo/ml5MHOX8T7RWr+y7KrmiafEYdquiXymud1Fxl+hn9aWnbDbWQQiF/7Osyb551VRpU47MYIr1z1qArqdeVqLSDUbpxm5y/VhLbChVK/1gSnEjXlO+TgTJCz4TTts0wFMCoof5ml+MrlFhGmWAlkbRRlUKLYL4wVzUKlJBDa6hvJfhQLMs/KDmqctpwtIOJOVJNcVWuKX1FM7oi5cz0hJxPKn0xZXkNmAmaCabZL8x3CTDiEmrFKbAMr4m5yNqtRkDLgYlJSQS79GU9OXJd4HwnQChMZoSJmXPknzLhVYDuyPPeOd8lwYjeyHWcWwHVT6tpyi8smzXEkRka2LVWwqnXZWVVnYcoqJOPLDfWjSr7AkszmAXuDqgJFoj3RrTXatWuHIMhmqV27dkWhUMDChQsN94ULF6Jnz57OMD179syUf/HFF7Fo0SJsttlmyr9YLOLnP/85rr32Wnz88ccVlMbDo3GiHA5bqnsykWR/7vD5NCOGiSrWB2reqBNw8U71I53df5J1nztLZHY2Tm5CbnfOOSRHyNOdxyRHc+HktAgBqeNjCtSYmzqjFjJtzVY5bVE9uiHjzlta07CVS6o6rOgEO2TV5T+s9NOeARwZyXrQFq8Wcb6F81o/6GRd6MrKKkcWeVDPhT0O/lhcbK8c8Hq3c+Kke2UyKEUR06qb+Tk/EynhKh1u1Bf4kKJOlKyNufAeGxU2Yr2yR7XQVBSrCiRiO6JCEcLUIqRqJ2r/FXeYzGdu1swBw83MbWZOiJ81gZbLmUNKbm4VKoqm/ThtI25igNtUYnkxcigSLolMZpWB11KSPQN6oyXGrFwKRmcWyniOBMNeqlKixptXaVsU1nUlhzQ3oMrD7AnH94pcxmU3zQik1wMRa0fcHEDMVPniuoTxJ3vHKpuUEzLkk3mR+cmWKZGmfe3aVYuH5WYQ4hGYiNuWfE2UHwtPYJ8Dm30DiSp3max1yej7pJ3mxCGkfeMcsmUMx+qCk9oTpjY21OdOqy1atMDQoUPx3HPPKbcwDPHcc89h+PDhzjDDhw835AFg9uzZSv64447D3LlzMWfOHHV873vfw7nnnotZs2ZVUCMeHo0Tdcthy4k8jywxu6u6Q3KFdMcmLM/Kv/4it4ZEuPs/sq9d/ZgrHPNnlIAcZRKsfxPgdld5z6cjETy01BqaRUneutycteBwk1pgmAw/jcW47jPT4pyMZComd5F8pqKW4NI8Qo8YwPY1MB6UzU/ZPbE8J/LEKWDKD9wl7axa+cwsV444ykGuYFkP2OFnmqBq/ODvTH6WWvrwqC7qk8NuaPAzVz0qB+Xr5BsPWK8oAPVrubTNFPfE3MZQdCGSbtAdhFEHpH9FzwbFKcnf3WPljlrCL6JZs3KpEkHJA2xxk/SLFRnSLIA2JQDLHzpuVVq+rJ+TdTkzNb4mnb4yD2DVCwndKNSkV1lPJBmWzpPmVTGjivPLlU7mDA+msbHIsCBeWFbNKQQuye7jQ240lTADQNGsD0t5Sraylc9oBRw2uyxk9T+qjNruJufKkZ9pVUzGabZLM0G+OswIJqz4JQGS9Srks4rfFdaOIE1VgC93088rMVvHelRmmsJyYA3GmBLpeN6J9sKvdTlgixEgAt1edXArjHDJOJICLGUsy3tGmFyQn4kygqQhUWVVxMY8g1UEtbQ5VeZyrLPPPhsTJkzAjjvuiGHDhuHaa6/FypUrMXHiRADA+PHjsckmmyibrZMmTcIee+yB3//+9zjggAPwwAMP4I033sDUqVMBAF26dEGXLl2MNJo3b46ePXuif//+lZfLw6MRoSEmB5RjFsAZjndAQvdrxPpMNYuPfYBjpqvDEuKl8GaGWK+dHjZ2TebaXY7kT3gZ5U3r4p3XMUcVPN96DZbksepOdr+MouhNqqy1YRSf48qMeCbiVT86/8LmNlbZjNmkApCmr0yqYtpWF8zdbqTpPQMjxRTnV1DCHIGiUQZ/N8c/mSmYxc/MEX9eAZcUmkdyWTX7knF2wc8xpzDsrCIZhp8TG2A58l5xT21x6NxIk2ePMFU+TUY6NsA3rSLw510bbKQcs65R3xx2Q4JXrnpUhNoQUgdXqAdoMhmd7R5Ia5WURSbWW1OiA47lDFJla6y4u+sjE9OrmPzqrZ84bXC58fIISI2YkJoxfmbyifDKPEAAIUKVmjqY8kYpUkkrVjlhlFwzIj+krzNK7vbL3zDsTa+k/drol3Jh/JprLFlihxusbRAlNq3iytNIoQp9FBHZX5VHHuTof0x1PamTaY8V5nXKsEdoWxA6cWENDoThJUcgKXmuQgeaeEXMAaC64Jl0NZUE0SW3P2+BxuwH4TIXZjXYFBkVn3npGC5VB8I9PikH9cFJN2YFa33i6KOPxuLFi3HhhRdiwYIFGDJkCJ555hm1adWnn35qmBcYMWIEpk+fjl/+8pf4xS9+ga222gqPPfYYtt1224YqgodH/aFKP05VB3kUq7pj0dKyEFIBqHscqW7ltDSpRiXrR09LpZr53XbNdCynRnnorHClOg5ZUtJlhqTBpkkArVSMQgUGrUnR8jiTt1aRlciiqxrN0UJc74xH8zAuW6xuxLEZG44KnV8eD/t1VtO9HO3QkOelEaaQIyqpxE2rC12C9DjU7AuQU1maPrYQjis7dbd8xUijn+UoVh2yxo8srsaV4MGNGKKWClbPLT0aIbxy1aNsNDkzAKlfXhEpwJyKImkvk6skpbH26I+SjJWy0o14NEoNaacsiZ5QErYFKf1bup6JKmLNNFdYKEP88TnWgeqdzG03xdx0rxZSgECECCFQUCUWqgRKg4konCBWF8TlBXdMXKaBDxsCWZ26CvUFI8bC4a71cdHzk0vAjLjUQcjcyIopSck6G24uW6vyOi/KJAfqyRB7H01tuGo3quiy/bABmaxEoZ6trGDG8iX7ATSrIx436fak7uWoRTZSq4x5CVFZxMkSVrc23ba0n45EBOCYdWpG7JRxZTjLr7aopYK1vjipYcZ3I4EIRK02A6jkV//TTz8dp59+utPvhRdeSLiNGTMGY8aMyR2/t7PqsSGgfjms1bc4l9KXftfdedYES/E/U12oJglwJhtd2nYidb8m/fN12k7VWAk5G3Y6VnLOazK1MlZ/z0uj+bTmMWmbVGlFZEp+nUWkdC/ubiVpu9tKS7WFgu2ekRZAljKWGQhyceZagDP+kkTEHDBph5jDGCMIy01Jy4kTcRFkUYR1BjurcZCtiHWdU+LIOquxSIn6zGNBw1l7nIpLZLxyRtsQqMpzrnPIx2OX06NB0RAcdkOBV656lIWmpVh1vdiJ7toB0nLxF18udwZgLs9m8cqdRk3PlN4tjk//1h7HLWI3duYbXBmbXwmZbkyf5PIuuZFBPNsw4cbOUXoCEAFCEUYpUWznip1j4UQD0ByD2F/bT5+JSbv85CEcbra/VqRGZg6Uv1BPCoaNgbBEpOog07YqX/4fK10NUwC2PLedmrdvyWbLTnHTwdHGiHtLxXzskMXU2U6+Io9ilAAwJW4+eXaRVnZbzvAjM01XuIQ3b1n8HJ3kPnDqtedFEmabg3o3ka6E1VGXlKkVpRS6mpxjmxLVVDZq0QeUtxFM04Yo1HJJ1UZsr8rDo67QsByWykrf7HMypaLYpUKJ911Gn0/skpuHilwNE0Ns96Wot7S5bDwXVBhRZFw7tETOa+FwJ4e8sGQCRNMD5JJ+GY7Yxq0y65YWjRzxq3rT7NsM63o0fDYvpcg43HRVMydtXsmWL9kk4jCCKFEkweuS+FBFb+DlshfPIjB5pFF1GayCDw4AXeeujdDUpRzvsCuheYTrLOuSrLMKl5JLSWMVR2FlTU5MMZpBHL5224ImlK+OJsnddaYd8djvT4N+88qAo14zUTGJ9cgDz2Erh1eueuRCk1Kq2pqRhB+SHZQBm+lIbQtBKSvBSIqMRs0cKA2z70tmKpu0MXGbMNvppOmTjE4pciAKQCLUStWY3EVEI3JRSlRu8NGIL1Y2yp9y+bU8CE5/tXVB/JO14uMpZFwvA0vWi0pNmjEgk/a4H1McMGuWaoiEUlVeq7NUtvKZpDlRK8WTakaMkBMfTEFXFmPPhtJVCjvv3SS4GuSNQop/IWWZzIrXqCdrNJBahyxeAaVINdtUejBytUP7HMdivK1OGRNMn1055GAiEXky7QbjpGkjmw0Qnph6eDQuNCUem26XNeu7ILmcDK8/uEbZ7RUrSpVlcdiM+hK5DoptfpLikmpGYuZ1HA5x2Lh/lLZNs64plneZQADg5OhJ015pmi3ullY5JSqN3E+R6bJ1LHKlmp10KkwCICdRyPGLahNSzLDH6iBcxNtI7WFYY1PXKjPWplfmtbaHm0q7IrfEWddBGm3LQ+3KlTFgVasr3/Z9ZjNzjWMbGlXMS26K6ClSncJz2MoRlBZpXLjxxhvRt29ftGzZEjvttBP++c9/psreeeedEEIYR8uWLesxtxsGmhIhzVKsGjuMsiN0uVPgkA0idxLxBEa+KzdLgx2R/lBYBwB5hlD5giWTCI/kGXbcDplEGKOcItYDxvUQ6o6N8yCDf0k3YSlc7cfgCq8kk+Es3aDiXa5HzFSGSQidfxEw5aFUOrJr4wgFUIRWovJrS9nqUsBWdFh5oDDloByHrDy7vtSsDMZW1fatcY3KkQ2/57Ut2LXxJJLX3FZxlpwT9jNxCdgynKznOcyMOjKARNPSRRJQtoyFLZHmxzOXjJunXOuDs3xXmRsB1L5zHh4bITyHrX/IPrJaqOxH0PwZyB9/+gc+q8yaLybjIUp2msy6PhJ9XWZHIwBHfLnKxZV6JSgExT9qq9+1GdNNCss4GMdx8I2ozzfZaYLaGGmYtcnPPGFW0zwzUTyWdlEqp6G4dimI5J1NpBXFqatOOD3eVFoWZ5RAxkRWPeOYVHtI2FmltPpOpp1XJjfs16KMIADMpme1QT5MMR3ZdQaXbOpIHQJ4eDQBNKmZqw8++CDOPvts3HLLLdhpp51w7bXXYvTo0Xj//ffRvXt3Z5j27dvj/fffV/eiMla00aJJDYITv7Dm62pTZ5vadiiNsLHiU/XsXBWpYyfrXgtw9SXfzErbWkXCjcua+VHhmV1WHoXuwLVpARAQCoEAhYiMUhApTIO1kDNKRTxjVdpyVYWxCY0A5OxWHS6FbptV5ay3NDJtLBnJ0N8p2hpfR2nG9cLtsEohuYxfzkB1mgOwZqkaJgDgcMv58jgqydlyc3y6yLqQ5gAUeWMzGeRzM7i31AvGUynVUyQ24GNtCkBiGRKx+zQ/4xkKx7XbIYmS4zX3gK+cyRiqTuUAgIS5bCyWcm3voV8SabLDdtdpVK1nSuQtPVu1ir8acWzA3bEoBBCFWvx+XZuwHo0SnsPWPxoHh82ficzHm9pxieT3lPdXsN21X2SbPbpXXTHB4L3JT37SSEB5nYLNkEvJpaSj+J1UwRECkOKvafxeJCqEnPWe2y01/47yWRXnoi9JN6Fm9KYno7SmRtKq/AZ/tzJQyTvCw9kmp1KvRaqMUqbaYWPOLngZJH9lZ15Ge/aq7W/y/xwyec+l6pEcIuRoP9bjsd0aK3zPtGHBc9jK0aRKfvXVV+Okk07CxIkTMXDgQNxyyy1o3bo17rjjjtQwQgj07NlTHXLnXI8SoMZCSnOAkEE6OZgmQ2mforAUCqgt5+Wh4k9xl3HKmaawZ4YCiZmiMJVWes9RbleVh2Nucdp61iqMszJhJJWLapZtAIQFUFgAUQEUNovO/LpYQBg2x/piDdahgHUiiGbmKs2pMHtOphwi203XrnPyAW9W2o3iv8x2quNgD82UFUyOmyFgs2sp0KkIQE/ejGepEpuJmpitWmRu8YxW44g3tUJI5nWFB7ncy4nX2KwrpdKN94Fd27LGvdX+7W8EizvNhlTqfSbIOJn5E8l8JuAavpSWSihDgdi2Mulk5TugGL2VvVJZk2GqeQSpRWw0sPea29Agl1TV5vDYsLChcdiwkZPERp49A0KUUKyWjMC6UP26NUPV6P9jf77ySYXnHYopn60SlAWxr9MybcVnKbzMFTrxqrL4CI3rmItH6lXFEKMf5FmEsTZO58h2MxuNmXPOyJMlMWUccJAB4u5kiSl3MulcInkynwiZFwYXY4GFQzY175nI+6JZFeAaUxjXImEH33VWK/8TZ2HKu3LqiJPnwY4zrVQl4eDVxoIx5i6TTz5Pdu/pgUcdw3PYytFklKtr167Fm2++iVGjRim3IAgwatQovPrqq6nhVqxYgT59+mDTTTfFIYccgnfffTcznTVr1mDZsmXqWL58edXKwNFcBI3y22gsMa7blKoYjasms8icPOtr4VriRAGSilXpbvsFQBgAoWB1KImtbXIAUApZYm7QSlrIZ0Bc2WqSLrXUXx0BQqksDZuBwgJCaqaVqiQVrEF0lu5FKR+AqID1YXOsp2ZYi2ZYiwLWQaCIiKy6jJUaAwLB3ARjEMrNrH672pWNV9djYvGnPnYmlFBsMUJCIYGKIagYAsUQFIZAGN3za4TRvTq4W9HyUwfpg3IcKXJhmmxavDzdIiEsslm3skGRrhEy1g1G18YAwag40g3PUHSy9mAwftcIIi1uh7/9AOWRqVTM80UV5phRjmiNa7NxCn5vuMHRBh0DB/tcn8gaCzcSkGjR0Fnw8KhzbGgcFgBWUbHO4q4cJLuzRoTMjsvNPx0f76SpKquLNBSnPHV2zwhWnLoyOcHTiS/MewWHltD2TlwLp7vMt56gEKgjlNdCujn4tBDKlAEJriDWvzASLwfj3yWLU9LNFCjVxWpmarmJpJzpLhLuihKRfL7x0yQrJhIwokolA2UShDS6l3JtKofJeu5p16QmMAgen9XwjW0dLDkjXJWR1Hk6EnK0rVI/pCgvO6yLE7vib1Tfvg0ftH5VQ2fBo5GhyZgFWLJkCYrFYuJX+x49emD+/PnOMP3798cdd9yB7bffHt9++y2uuuoqjBgxAu+++y569+7tDDNlyhRccskl6r5t27b4+KMPq1eQGL0KLfFQ552wrJGR098tm4/561c0dDbyoQzFqkm0LQ2dVGxKxV4iLs4QkCA8Zs8myUxM8GOFoRGjSoSbA+AaGFLxREbuY2WrEBAU/R5CIoCgyGgniSBWjIWAoJhoRoxDUBgZtVfL+0PLX9IB6U8oUjMEgjhdAxSxXY8AxWhugChnBKNZQJ4n5uQdrN4Fy59L+WrLGEvaCaAigdaFkTifKSr9Y3uoREjYRiUy7w23EIoZUkj5lnBaTSxXHYT6qaURRwJikwAUtSGruQrrXr0Kyp+YI/Qv9+So9ypAmjDQmdf5UgrQPOBbAzuPjIhkBVgyxiOSelVVNcLMa0Im3V/J5SxapSAAomUvNOt3Zh2nVCaCGhTa9WvoXNQJRFDLX+6Dum4VHvWJDY3DAsCMLsPx8fqVjcpUwVOrvsDM775o6GzkRu2qLqmV08xAqK7M2PqT9MZGShlkcIKot7M3buXMzfnjItdiqWvGUxz5JqOrjXlqrBky/BRHifNGzB5pKMOEKmYSAiF0/ysV0bLEkg4ZasY4bqF4OYz+2ab9aSpKu1pq7SYQbwgG8JoUCV6m8yyrn6QgLw4jM8Zwpo5h0rB4s1x1nRIgBOQIRClYAWO5v7DO4GewsicUr5prJtPPqBU2RMultJXDLe6W1MomU02RqdeHVgbqK0vNBl4GIQr1lFppULgWha4jGzobdQLPYStHk1GuVoLhw4dj+PDh6n7EiBEYMGAAbr31Vlx66aXOMOeffz7OPvtsdU9EWL9ubZ3kb+earnUSb23w4Kr/w/vFFYgITCN+MbJsT5UXkQojmCIpEWfmDqqWP88HxcTW6tkldeX9ZEQmRaRUVbSDSwYxNYy0fSGEWgAFhEwuuhdETLEaRsuZMxSrUZwhhGiGdSJUu7UGcfECFOJcxSYDsB4t9NwC9o/Taigyq3+5dm9mpa5jZaUiiDKcuiZzhnVCxvpVnACK9M7REQJYF4LWUax4hFawFrViVCpb+RJ9ZVe1SGYY7sfPpZqjRdC4OKlGoeslL5Rt0wIg7exqhShPNHkt1LXMhSS/lHCP0optAguWMAASpHdqtRS1iYKmjTJcI41SUPWU1GSW/KQJ64D1qbHdGKMnIVgdO86l0q0DGE2mZXcUuu1WNwl5JOB3WvWoLRo7h+3fvB36N29XJ3FXis+Lq/Dwmi/QmDksVxzm79fzlUXxSNkvWfeAgNzkMukOAPxHYc0Zhd1nq4u0jZYC5a9TCaADm3Nv1f4FLkVTzLFVvuM/xPKh+LsAQAFIhKl1pEMRQoDx6DgvAlrBys+GBk9nzSxTKbBnAznu0HESV+7GQlI6UEpJin9DFtoOq+T6BBa3vLc0qjlQ/ptjkjvXMEmLkCZRXPnIZeJ8FziNdl07zjIJlRvlJgy/1DCynTnkZDtzps2K4Jw9muEmcsikwvGw0mh1k0VcoELnXSGCDVp11WjgOWzlaDIttGvXrigUCli4cKHhvnDhQvTs2TNXHM2bN8f3v/99/Pe//02VqampQU1NjboPwxBfL/2qskw3Ucgl6vEdGtMn2sybRJpmxuXGNTaycxfgv2Img1pEwPYDHP68N5Txm24EAUEithHKyWMQawDje0mAKdSyRLHtx1AxdQLTIiKOVylWJaGmyD9MKlaBEChEvwgSNcd6Y/YqGbUnmKKVsB4Q6+OZtHacKdVm1B+VkLHBFXYpCbCiBuwQIRCsp9h2aqQADUEQbEMqU5GKqA5tO6iGAtZhI1XaRy1HsUasNjLIVCmeJQcpghD9chi/M4S4WQVRe5bPX6gpmLLdRGUWrJ6JTVu15aPmyBSs7H0hwQY9kG2ZycfxK3k5e9VWaCYOkXIuddgRJ5F8U9n4JEVGlpuc05B0PWUkW1XkHD951CH8ZgAeHJ7D1hf0MvEIje9rWJcTfY2ZoLKXJyQUqRG/hKFIlX7EZrdKkOrzSa/IiJWlWhkoJwCY/C+KKU6T+5XsU6Wr9QyFor0w1ZFMTk5SULtqyn6Yd8RC/2VcW9rCtKogcrd2ZLU37UzaY2UK15hbmZyXNJclGV5yd6haFiouxsXjiQRC5T0ub6LJy/gV62PpGxIJpL49iebEnpW9iVpmRI744ttAlc/Mb6mZqwbVismba5MrZ1gjDivdjOwTZNUzbss9XQHseEvI2VQyC/VAM+sWperCo87hOWzlaDIlb9GiBYYOHYrnnntOuYVhiOeee874ZT8LxWIR//rXv9CrV6+6yuYGCPsTnUuDkfMoD/kVqy7EcqxjVWeKI0+4yYPl2fazy5TmDgHEG0uFobSDGhvkj22dUhggDGMD/bFNVO0fyYTSZipFsqGypRrFFZK2pRqq+KJwoYyvWABkHrg91jitMIzSXx8WUKQARSqgiAKKCKJ7BFiPyC0yElDAOjTDOtEca9AM6+PNsDgLMB4dqyoIqVezNggSVtUb4Qgk9OxUAEqpGYSEIIRxCPsokraZWgxB6+OZqMXoLI/oPvZfT0B8VgeX5fZO8xxSsRsSwvXxIe2kFpPyITvS4pT+apMtEnpDrtid+IZccgMI1e7N9ktG+7fbvfWuyBt1T8zfCsDtvMowcrDhGnUacWSdS8iI6AeJ6IC6ZiOV5OcpPpvjsWiAZthihWWHNRGPg/XL9uz4rFR6sEefvQ+fh4dHvcJz2PpBciZoNTlr7Ths5SDHB19Y1+ywN2iFcHQIDvdEx2SXNwAQ8U9A02Zl/5+F5RtkEek5qoafSy7FL2T3YaiX+gP6Wt+DqSGzajWWFdxeq+SYiCczQMUs+afplq3xUTkwuJKlfos5DrcYKwRi81yyNDIuMgbuOn7Npyjpq8tpu/FslSiHcSSoU2xSQQj3b94JN1Kr42zrwWqzWVYCQzlKAMLYoABJwwIxD+NucfstrVhlYcHDokKlLCsP2WWLD7CykymnZKScuo9WJNryiXuDZzcx5G2QHh6NGE1m5ioAnH322ZgwYQJ23HFHDBs2DNdeey1WrlyJiRMnAgDGjx+PTTbZBFOmTAEA/PrXv8bOO++Mfv364ZtvvsGVV16JTz75BCeeeGJDFqOJQ3716ne07l7elZaHPO4O7UnW7FW+9EY7mp2AkH8o2TlQ5BfZTC0gpPUIYgYRghCwX81J2Z2iiIgK1nFaS/tBcjmVUDJaXkDPho3lwyBWwsgl/zpuEVBEmpXN0GZYH8jlR/bMVf1runkWWA8BiHhGKwFChCjY9aqLq+uOQoOsIHEtf8UG0yIhmo1KAgHjFRER0f7yCKQilc0wlRtEGeYBlDKSkJzNSpYpACT95eEoRhpKyWT5GyvDhOkexrNBdYvnbVRTQYD/4h49rKQ7y4d8hiotYbw3tiUAHYalqcII1YRFGjOHzq/7HXeFgyOOEqBk4cgSUAMU+cmwshUVPVvGznpt4Llo44NfUuVhw3NYj/qF7uvTFlfJH7elm2IA6kL3LrG6KbJpSkAgwphqss7eosgGpUDKvdNPQM7CVNFI6ssi1/kX0D5KfcfyB1YX0gqtLLeMVMejFcdQ1EKmbSyuISiOnAlZ/wStUIshObQ+yFDW6VKZ5sRUtSn+r6tNhWN1xu/NuLMgnwEjN2DVxcTUw1LVLSx/WP4sPgJEzONVPcQzYEX8EBSnl3EyO6ypSk+Xm3V2utnxOeJR8cmxCLRt3wT0K5Z4B22ZVLdGZNvaQDUIqCexjQ6ew1aOJqVcPfroo7F48WJceOGFWLBgAYYMGYJnnnlGbRDw6aefIgj0b3pff/01TjrpJCxYsACdOnXC0KFD8corr2DgwIENVYQmAN7z2TBZk3smaZVzk5pGWroOd0rzjxmSbVTR+Uu0JBa8N7bSUn6uPAgAAUurBYjWxzPnpO3PyBwAxcRLbigkla2SkJFauhQ9K4qXVQulfCVIUwBa+UpAGEJacZVsIIzTCUAIKYCggtEE1us5qJyuJggfo17svpkKEWK9krV4SeKau1FcrcpuajHKevrMVEq6xcVXs1aLFM3o5LNOi7F5AEJCwepUmmYoVqko7bkCgWNtQBaHqMRPNrtA6O3RQAAKkFYh1KYW2opv3IYgA/BRTZqNVUDTRxnGvBbqGkk/AgyNOsl3jW3sRnHuDAZqayWt95Wfne+6/T6WiCfHiINZsWUlZP5xfefbErZykPrLIivj0+hRhyiI2pHLjZiYbqjwHLYxofY2WfNv5FVbzUFWp+RwT82W1WcL3kczpVDil+8IagE+EQhBZK9UWEv9434+6iMVi7MOVz6FKSOs3o1rFQFEfDo0IgqUkldz+1AEKMC0v5rnqSmbpnG5Q0QzRhNNxhkZGVdcmcrLI/k0M63P/GU9cz9KLDdNYyEyNXPUpnl7Vp55vs15oRktUSUv7KxkyJrXnPJJXivF5OSJVIUnHP4yXkrxzxGmtH1W7qfHRhYr03DUS+rkZ2OQVIJPpgRv9Cyitp9Gj7qD57AVQxCRb9oZkPaqOnXuYpDeDRUnLH0ds75bmCGRfFkqV7JmhckivlnhXIrN2F0tj2JytlvW7NWs5T9pfmSmay4GIggUo6U/sYIzWioTbRcVgC2bESHzJ+YfKoImlxCJePMqQ54iZatys+NBCFFYBxSKEKIIBEWIoAgK1qMQrENzUURzhGiGIppTMTqjiGYURmd1H8npa+kXsvv1qKH1aI71aAFCgUI0Q4gCFdEiDCGKQCHKQnSsN++ja7LuHX52uDUUb2RVRLimCPquGC2zV8vw4VCullam2v7humK0/J4IQYbNmTwf3lIyarJCoAd60ar16BdHeR0UIsIr2KxOETC3AOCKRXOJu2C6R8EmkXJFpIwLmgBaYUVCnoBA6DCxvwgEEAhQoPNorCkLrHth5cXlF6T7Uym3OLvGZ459JrJkSNaTcmdxctkyoYZpFtnOai9B+8FoOeTmyhJsYmjIflum3e6mPSHWrqw4HmrRBstPfWGj4R4edYONjcPeseJjXLhsXhkhKlOy5tV1VGWymfPDniCoyTBcG6TyQ5ZQtrsdv5Arq5RGKjS4KtQ1ElxTTgBwuYs4D2YcWk5OOFDhJE+WHFgQmol1KIgQgQgRIERBFOPzehRidXAgzyLivbabcR/Hz+8FdPwBwiheoTd2jQxn6eXcQawQ5cvAA+gl39yP8/NoBicl/AL+NJgyj98HYMo/kH5cUpaFk4pBZTAgvg/i+AISKj41I9a+NtxEtqzzOp6xah2FUOiJEXL8pPXu2kQAy3dJJanLTdqIzaFYTchZblxxq15B+1XNq2AtNQAo9QkQIiFSNupKQ1RhvDW7/W2j2NDKc9imjQ2/hXpUGUmtozQqX72ZrJXOKEgLw+mIpR1Jc3NFxTsDYXm48qvs/QikrQkmBAgpUrCGsUIU8QxWbS4gciPEDEPNWA2hjMizGasQ0Q6ifMYqREG7SYIr45HPNCgi3jo1KlK85KYoCIHUaVkkLyJhnPwhQSQ1+ZP3BaxVISIFa0TeCChCzU5VM1QV2aIEAZObVPGZqyoslysinrUaAsWIbFKRIEJSNkipGNksFdBK1NRNrlymAkKA1oVRPASACKGcQVyiOVXkHz82IQCEkfkItdcUJFkTcdsAhOCzVqE2laJ4/ZsQiJSQcatwbVylZlKoTdZ0GlFA2R5jd7kpQ9qMVfubwS8JKt+GZ+rmctzR/b4l3z8bcb6cfq7kzLyoKrPvrfh5mHIIMBmxWWUpFUk1Ps0eHh4eGxQE47DV/UhWaxVvRXoIwS/sfoNSrmVqgrnwQsiVU0yOAoQijGYWci93lCWTjviF6UehdpPPSs5OZYxGM07mJ1krxHorA5T+fBLuWoOm+ayMO2o3kamBSNEr5eRvumAKTsVMpB9XdILLkJEemGI1DUJxfxi0LOu5KJMGUmEYh5NMSCkOyYoDJdxSM2nL6+X+0lsAEPxdlGHsfORQgvJHafvxsCXjYPlT8pZfFJ70RAfp5aoT2y1Lxv4lJ897hnhMVU3iV43ostpHRR86D4/GB69c9agA7i9s7ZWs0Zc1v33VvG4p7rzjgjA7bWcwk2Smxk2AoVgFYgIhHNmICRpFs01JLf+PGE5kLoDiawFtLkDbXpW/6stlyKZilWAoVuOwgmJzApyhUDOAitpJZj0krItnw2rio3Ku7pWy1fhFPlJyBiAUY7diLBvdFyKDARSgFYooEBBIBakkL+oQhvLUXvZvKF5tmfXWZlL2ZlRFKFuqoazz3OYBYr/18eZXBPUOUBEQKYy4FI/I5CBEMQmObY7xdfTRI4/zQNHmFjbLREScKXZX5gLYu8sXpKll+3FUpCMxyKW20xZ7C3ariKCk7XJpvTZTYM8cj5o2ue2wGsMRdhaOo1zYox3HmXhGeRl5UfinklDxTAJytQbB/d3uafIedQ8R1HKn1Y3sl34Pj4ZF9ZSsRvdUa1Su0dA6GdnPxtFZmjep5JP3Ml1KpCt02dgPqUSFWMEaL3OX5M3q/6I6jrko3wtAXXNZxHGzrlfRdC0o1L4EWoAE9GZY6hqJPjN99rE5GKCUg9dtnJtoRiwxbqyStScbuP2Q4ufcxMqZa2HExSGSwupSsBuT1TBexfiN202Y/jDlks6WyQF7DGZVuK3QdC7Z5+3F4c/LKeywLEymHyX9EmdHFZX1GvN4GoutVZvTloPaDHg8GgSew1YOr1z1qBDpX9jKlKxlmgHIS37Jcc1nkco8JmaWioo+9hFHFBAIWNx2Gq5smjNYBUQ8azXUm0/FPVuIUN+L2G6qNAVAkW0oIaJZmXJpj1KsxiQ2VMrSeLZsEAJsM6t46mV0BIXYIIAkQUmSGMBNGm39lkFc4nuCQE0QzypYDwSIFMSiSAhCYSlSYz9y2VtFrlmr6gjDSGkqN7hiG11Fk4BtZSocM1nB7KyGehMEZuJLBPqXbPOZZ7SjLHdCpLCNBxECcpBA0b0cYEQ7TkSCYSQo2AMhQdGye8hhFLMkas9OiduRIs9KeygzJHTmwDIFRzzqKv5bgjiq8hFgKJGNWmGsL8Hg89U9WTcum6nu55Lc4Cpxjq/V3GH2UmSVXilVhe1uxls6j5671jsKiH/YqEV4Dw+PekZlSlauqFNdYZ3A/uDbeeT9rKnRMiYDMgWZ8eOdUkClDYxZfyv7fQGQnMGqfU3xPEXhTiwJ5R/zHN7fyx+BNdOw+uyYJIUIUOBTYBOaQX7WHTi3UZ8WRlKdQlxquZpLZ1pOgpA51PzaVKoyswiMUydLJQMIGBuOsWv1ozRpjierVccauxlcjj0DyqlLc42z+DVTRqol//GM1UTckvI43h9zRRV0GwE7p11nubGzjDbhJs9h0s8stzB+EFDxAW5lfiky6gpkPxSrPgxRkeP5lYNyI8vzHfTktHHCc9iK4ZWrHmXCJi7Z/qXdgWwSW86LXUqJ4urumIbDULAK6OXUjqQc+SUAAUWbVgkmw2evZuWdIBBSZPdJzlpVS6gNBWlM6Ixf/JMzVmMpqI0FBCHSJkpSzP3CiIwRsQ20tFKLQsK6IDRNU1KU68jelr5XdrFImsckPZs1jjcgaRSA4k0IoiX/RSEiMwFyl9Awtp/KNq9S13HeAjI3sTKUrkXoWatqMys+cxWmW0gI43NUXWQoUV3mAAzFKuPTql1EVhkykYt/xIQqenSW0tIiVcbmt1HzUiSN8zJNAqV7fJbmIRQJh6lvBY8k/qNGlnFMMgMUCwtJ7q28W0xRDaBIl0uNh1hxFVLtr8pZvTDcTRurOQ+WlCwOr4Noto4w3WxZWQ1suAa4PwvOmap2XHC0m+xPjIeHh8cGj+os78+OQ/VvSFGaVA21iViYeZMKImulSzK1lDTJ7K/4RpQQQitYifV/Mg1hRcA5i4tbhEyG97MsPSOw0Ncug1Rgyt9yICAse7RmskTcpLs2t6WZk6Q+grnruCU3c7pD8mU7WVshmwK2K5SqDcnX2D3PK39mqkqJeTgViqkOZsbjOAMVKYwGpfPo2ERLhicdj7oHu+dJspVQwjoDLCwrWyIeOy2bWzvu08qvaHiKiDNsY5m1Wi7yDGrKkfPwaELwylWPMmEqQqwfThP+pjscfhUoVssizm4CaZA8F1mwTQUYUVqOMXEKKGD5E3GnK5CcKZsOYwYr9OxUIGQK0ohlkKUsNUwBKPWMnAkbxjNhY4YSmxeIpEJEW8vHlxwBxUrXaPbqeqxH0r6qQWGV8fuAuclDycfFCEQYJSpCrTeOFU96qT8BTJlqHJZpAPsIQjhnrcoNrKgYapMAoTYTAGl/lZBhe5VAYQhaF8cVk1auZFVNBsnZq2lNwemuBkWIlpYLafs01kHKZkZgJgFYZGF0GelL43bAwwlHXJC8TlNvc+IoIfGzuP36y0zKeuBTNlPDcAfHNRFbXi+sNKy4a0FM+dgvXcK6FKa/EYclwx+RLmGJwQlDQrKJcvANFaIgIGr1q79/oB4ejRtxL+RSvlULZUed5OjxFYuM96n8XujkHOlq+klKVivgYh7KbbBmJcXvCVZcLM8iVDkj0/AqoHgVqSjN+Z46HulHFE3GCqR8TGMI7Ijzo9xJ5QAkmJ3VeEMrvsdA1O/LPEdtw5iIAK76JeuA5Q5VorwwVZWkLrXVBxYfGwa59cdxDoTm7XIihZ2EK1njmlUo/1Ff+iVMAqgwMCxImPGlhFHliQpoKEwNf7PcCRrHwhiK1QSSlZeQ04+CNW+br9plsckxu7XfJ+nW0LShnO9VHX42PWoPz2Erh1eueiRQSh+RUByl9CJupanuEbLNBqS4VzTDVTiuuWJEpGhAhFIeC97b2nmwzAAIplyFVK6mdsquvEakTQTc5mqsPDVsrkbuInYnqViVs04V+wih7GuqWalxeFnwMKaaQSyjzAOwYoKwvqDNCURHVHaTIEZxqXsiQ4bCaKZrMxQhZ7oGKKrSh0H0YQrimISQG1cl7a3adlads1aLoZ6dGkpFaxhvZkWmSQDjjBTzAPIeCNdFslF1kSbmjEgB0LZX05p1RouQHFGomaTWSEQyVQG9ZCokUCCi/MamAUQo+GRQfWbKPu0XtXNtJgCQg4voiqsDTbYnVYryjrtLBTRXNBMsYp/IoPscKYLly2kLCKtOXd+AjGs+C5Z5OfelY6969BBYbVjyKfvapZNt6Z/j41FKxvPYekYhiL+rtQjv4eFRJhpiQFdXaWZpS1zuGQRDd+Qx99P3IpFORnm4qKTDqrOT3L8AEmFkcoofIv6xHmYcrNuM9UkyrmjTViHYJAxliiC2t2rkWagouf1VSXQotlGvZ07a56wqsLRzILW4RzIOTvG0qSy5ssuVU0YzJDcyshBvapuWJRuMDsprOz1eHBUsuQRRB2ReBk3jfo7qS7oJYzKGWtnH8ybzS2ZYKROlKccdTDYO67aJSlrBasvzNF1uzvjsvDoqKJS81FEnRnkd77cRXe2/K4JS8lJtpLUh5Z8njqrkxKNa8By2YnjlqkfZMIhOWbB74rzkkGsrcsjJ1BThM2iMJZviZqzptTU/MgEYilWpVFVLgCzzAOUQcEKAsBiZCCBmCkCS0+g6VAowMMVqpHvTZBYUMLutkZu8FwgRBASigrmvAFcQEpu9GjZHMSBjBqqsQXPGqr6PrrV9pUghVoSQM1ZBKDAtbmweFAGPU8TX8fJ8YdhijTe6ivMt3QvS1qpUlqoDkUKUH8wsgLwO42uZpm0egNbHSltC4uBNRLecSmyvkp49SlJaGBLmjwP8uVkJxMTUVkYSKWMA0LZXYbrJqR5prwOl3Udx6BxT6ULz5YB8hKBMZAjln7khRULpCnZtjezsa7LjMUMbDna6NoNOO8dFSt3njsWYQDofT//M1AO/9tDwv/p7eHhUH3l4s8i4TXKIxD70qfw+Dsu6U7UjuV56FHfbbAZrie5WRRsrUrU9KrlKhwlKGUjFqkxfUnKhXNU18wshlOIztUocsO2uasUqt6HKCxMmeI+SI0BOcohzxkYipWatZmuguLyIzYXJOnDOTiXAZVU24oY6TknHpMkHzedZlhIESaYhEuYY5Pgh6eYwCWCXS45T+L2Usa5Va2AKVq4odbkZcVLSL8+9E452puzIJmQd7i6xlKTqFbIZZ302PJocPIetHF656lE2SilWk/7yq2syKbeSlhG0RPhSbjng6vxsN67EoohUKTv4LIygWNvElaiGfVVJQtM0KKWyGpkIgCAEbDk/SYvq3PYqU6waNlaZtjRyDzVxlYo0tQbKOqTdTVJJQxCwnorxxD5iS55i4iiXHBG/p5hPEoQI0SKOUO4oq87qEQhFBAWYkpai2QABISIeBONQs1YpOsOlPLVmqAqHW3Qdl7+I2DwAGTNWqRhGytW4XtTMVXatFq7LJhECQjLTks8+LqNAvASeTPuhkNesoghRZ6ZMWsRnOXs1jN873iQlw5UbXzGKbf4lww6rHu7E6cSRijjftkKSQ1HcklPkoQdsIo5XvV+yzHH7FUGcBaHK5mLnyr2KSH5KtIv9uwoFwryX+bUic37xSlXXxstjPDw8POoJnMfWfVqVpZLsQRI/RCrFUl7Fqp21qD8mMAWbYNzDNhEgWDDAVMQJnh8Wj2D2yS03Xs4ouO7ciXX40TJ+TQKiKQYp2jCh74xD8FEMIRAhBEIE8eayesm/vo+yqmevIj6r3BDPFWDmMk6n1GxAqwoR51UQ94tqJ3V7MqEfhXw2aS1AcG7Lqk6NARzXAVdqqrIxF9JlTjR29hDYsMV8bI5rW9kqlADYeI2V02oOhmI1TOYtMXEh7eyCVcERtZWzublHhYTO8QCznmnVwDa3KzmLVaI+PqEeHg0Ar1z1KBvcvpRL0Zq0P2WTPK3AiRSslowo0RUYmgiLLbrC2fEb2imXm+1vEoGoc9aaGj1TFdpdXSOWqaRri+IPKdIYyo2fwnimoboPSW0aBZdiFdy+qlB+StmKwGIt8aFMBJjOITVXG1MJaNuqasYqOe5JoBDPUpVsTCtfI3uwfCmQnL0qf8UOENmflcQsIFJmAuwNrsxZq8zWakhAGEaK0TCajWuYDJCmAPhsVzmTlc9YtRSriAlnQtHq0CGqVewMCT4piZ2cGmE0a+s+ji9SlMaDmlBElS7PELGZAESmDGTdQg9N5DJB7cbbIJvXoBTuFjvkBREA37JJO1P8N06VjfZ0muQocwqMeiClhI7auCuwledyD15s+15ZBdFppMoKJiuLasm6Bhp88OSCyPAzIvCoHxRELXda9Q/Mw6My1PW7Uz9agbw6ijzZ0X0Ks1eeiKcE7zbotmBaJtst5iIC+WywspVZEaGKSYpiHqabjEAYHaZiu5BsQ7Eai0MR4FyRrcGYkBqPxIpRwdW4nCKEhrvOoz4rBWo8KUFOKQgMeU64E3TPeW3nnF+reRns2iVvKCRd8bk4qPEM7WtLqSofr8UuVbskLWcoTVlr5eURdvwlzryMmcpU6U9JueSZ3O5xHSWej932YzdVZZITp9latcIZcTUCusC/MdElq5+sxlo/n1OPcuE5bMXwylWPipA+e9X1FTW/nCK2faTvESt3hCNMSm+UQ04gInaJ4GpmX5obabInO0lC/JFx2VeFJqWuGavcvyIEIArVDE9pwJ+48pTNULVtqypZwWQNZWtoVhC5DmJHM6yjEEKsj36tj/mnQR4hZ5xG6UnFqlS8S7uxkVtRkxrGiISIvs1RXHIpl1CK1gCIFZ4w7bCGALitVTk7lStZXfcOBSs3FSCkYnUd37TKnK1qzFx1sDtFcFOag1phFw845ByNyNlxr6aBxElJhao0F6EGLYKNEaJ7bQKAEsp/w4+dEde5sFl7PAgxfihhUQrDwa4QVz3IGdCMeaadGbGleG82O2XAqCarrCmuUvkpRz7Wqy3d9L1w+stimPJWfTsGPXa9pPFTI36PRgMRBBC1sTkVbLz2qjw8Gi/qTxMQcWOb29o9AdfOIOnHoBZ8OHqSUhMAknMmSPXPevGKdGN8WiBWsJLTBquekhiXja1U0RxHu+kSiLjfpDikJlYU8yeZN/AxR5wfEtI4Fumz5FyqKiS/kdyb1zMpHmvXqFrWL5Aye1VTAKlktWs/1Q5qCUTPQiu1VGvhy8wtuu+iVsLy53EZfJDXiUC8x67Qykn+eNl4KsskQL6CsnZHprs6s2tFwZh7qrIVekzjTJjl2eWelWcd2HwWKq6QrVJzJ6R5ZZq/W7z6IPNM0K9+lC4fC2TUj4v/ejQ4PIetHF656lE2pFLJjVKfcbe/W8FaC5BFdyTZUje2osel8RJGGEEFGXGsrNKaEzlLlW9mxWexaq1KJZDWUaV91LiAjNQRKCKvTOEKoW2rBmwmaygoJnwxyQsLrG+jaCOteBm8MjEA3f9F58j2qtr3B8QOfQ+mWNWsJoT8xZ7imatygmy0zDsaUBQF0BxyxqqpWFX3MXnlCtagCIgw1ApVOWM1ZMrWMDKPQMVQKVVJmhJwbGyFIiEsylmvis87lKr6kBsZKN6Z1dSg45SKSxI6vEi5V3ERIApMoaqWbsVPjJkG0Mvs4iNIEmtJz9lc0KSfjFPYmbfS5jFw/7i9GT9k6CZvZYr7Z1wLAVtxqaMkkAh0uePGK00v2O7qTXJ8Ksi6R065KD7h/szlIMhZnxBvNqCRoSBqV+kb8a/+Hh4NgnI5Wj28otp8Vpa2Jc2N9Y+yMzPEhCGZHVcyTqUzEaZ6UPA+W55IL6aR/IO4fXWuRIX+UZe7aXUNt7eqXYkRG81aLQumsT0kgigxe1WGjyYfBIJzXK2AjVII2WZWyZrUFICSORJxVUnOzHg0jLBmnPbZTEcYNaBSV+aqdO1J+mZTLhXYfgTSw1Ks8Ws+ycLKgenGKCyPRyBZJhuJOuBKSuvamJlKTIaS4eW1StcqZ5pJgIR7iU2tjMZnu9nt0nVvhLPiZ/fEJ1bUFVia/LeVpBD0WMGFcr+/HnULz2ErhleueliQKoUU39QXLc9LlC2TPoO1/BeUINSvtGaehYNFCMNbGaNkMkRBrDgtSP0gZNcfddRcw8K0Kly5WkvITa5EEDPVuDcPoWcEGBtXsdmqIcnNrKRmMCZyAUWze6VGMGTPntlbjY5IRm5utY4KBokS0KREICLRzYOitkslNCnlBDUADMPtAiKq/nj5eWRrVYaJTSJAb0ogAr0JQhCKeNaqaWfVeawnww4rxTNWpVJVzliVitZwXQhZrbZSFdY9qdmhcZkYFwUoWvLPl5Crma6ScsfLxkRcF4hnl3ImSsIyCQC1bJ/k8n05eAm0X7wPmn4NQvngIlYUpanvERiWV6EHPtB2WNmv8PpZShrN7hOvc573ghNOxvTVEqrIXW6ZQESRbVOp+DUUp/pw2mUNuCwbUTBbqcbrXOI+dcYqK3ZtPg+8OuWny8PDw8OjNMxxfomPJ0FtpFQvWgBDaVUJDzY7Gc1hs9LM8qeEP7EeSCgtXMwTZH/N8iGLEbAqjGhP7CH7WwilKBXMDTEX4ptVyn7PZQ5AqiujGOQkBUkfgnj/gtTSQk4skLRAxcJXXhlaNsaH1eobyySAUjDa7jqadEu72e2O1zZBjqlkHUcpBsqhNFyimn6xH8nZOEErmaGu5NiAg1NZQ0GZ5+Dp8yGrIy7Fj3h7I7u+WY4penZGnEquPPcEjE8H44KhfHJCvwYhaRv9Mr5Sz83hX2eUMKMpyvFLvnjkgxE6s/XwefXwqEt45apHGWC7dCY+fkqN5AjnIqTuT34uEwHCFQ8Z4rbB9URULjdAk0ep8SCAwgCCAqWNEXLjqoTmTKjwgilVK7O36kKUflgU8UzUKKPRjDyCUpqqJf+xm5wdysivmpFKBFBBkxJVnWQdSBxEzbEeprJUKjwDItQwswQma+IzWaNNAQyCBN3fkpxoSJFh/IAoMpBPFCtdYzdJwgnJWatOkwBgm1fJjaoid21/VStpQ6mIVVVizlYFkjZXDa4grBZNrNnEdSh3ylVvS7zTq77ndRQ9R6PO2AZkgtWhevWMM4ErdzMh41N/mbkAESl91byVgNlUjc/2fdQMLTeWNXXDHe0zgzJRIBXCgWCvZFzxCQWrcF/z5CXXjZXkZClGs2yq2vdGXmA8Nl1MO/3/z97/xtyWVPfB4G+t2uec597bTYNNABvLw0QmQjK8MLIDwSONkwl6QbLlQZpgh3zAQhHfkJBaLzJY/hehDJoPtrAESovISJmRkBFShKIYWeqQWEoEMsIkk0QjPJk3mRDstwnYpKHvvc9zzq615sNaq2rVPvt57p/u201fzrr3PGefvWtX1a6qXfWrX6216i5lWVQn+T6R06r/SU7ygshVm65ehVSvuul4L4EHKENStHAPMF674zmFE6t8+cAyYL8rSmYJ49M5jfnBsKNS4JQ4Zwv9CgFTX79fWzA1jEhtoTrwbgYC5OlH2TgCBjI9SUlDNQZa7fdpYKkIkGz/GVhorCayLh1zutY/jm8Ig2uAI/cAKe7A75H5u6rx5qNzvLaWT1JFgomXQaor0kKv/1FjoK+xZ4y6PNT+I3lpQDuxTDCVw2pZxPTCwy59p7bzWDk/ZM3aaCNWU9otD5ecv9P3kO+h89FU+KkwtBcTqXbceR9i+xCkTDwbSHG33Z9nvhGsd0oz2tHwfp/k+0JOGPa+5USunuSu5e7M9td64Ht7wZ6Vi4AAeUN8rp2Z80M47jSOBkeFagE7sTqY/GvcT76bpMXVwySN1jXQcB/PBQAQG7SEpYG+gViN305iwl0ABDHWf/t1dq1ViXv8wzr8tI8uPgUzTceg0onVln7KS+Shkb8kI1eeB1gFKgFbdJ+r4RKAQQ7O0zkH5DpL33QqjkNTNX6HiwBVyCyNUBVRSCJYRRTqvw97RRXFuJhsec2Eq9TekJa4aMSmNmlipq6hGvMI6gTh8DvPVWLcU4CK50UDaPuGUaDBJQCYjEhuExNPMLkGGJ9u9LyK4ZeCxNxVkJOaCSmnp11MXuIdWhbM8p4l+vfCaArZoZk+RnJc1pSe83gGlD4Ur66l019l/8Sz9AR6/Cvn0u8BIK/OElZ6zvvr/i6/9oOLc14YOQHTk5zkeZfL+sAYRu75rVJgBaS8AHJXTMXRLRpuq2AI8dLsCxJeWYnniCUKzBuHCWc65h20WX0nTcMv7vOUkUCPtgy05do0zo/P3y16eo567WqLxX2t0mhj1Y8ZAkXBUoNVwRBw7BWQPxRKBKa0wP45CtdSIcA3uxpz1r97qet9+VpdQqVlabXrywX7RZgeoXaSD+jr+JqOAYgqJqW+WVmbK3SMR8vzKc4jU/rlQ60845Xnovktnm/tO/LXXu+qyOR+mzLlvGjP+5qMebniXc0uA5aZWcRGWGiwpoSGW5avLNFRed1VF7Iid9skachUIljvWqJMoqBPGOgFlROGvW85kasnuUuhS/u5+8ACd06NcF8uAsKnUvOtZLH1eykyvCA7BjtpclDKjVjNTEvTXAVWfxuAXJy7Gxnw+3hv8+kqDlRVoVzdrKkhFzRt1ObvSrvbAEdF4TqAICBxOBwajw7G7blqM3lv/K0sQYqisjST/6KCkj3ZJ1KVIq8UxlkKphk8o/lMDZ+rUZcKYC5AmYMjM01JUnUfqwQSBQvAymARYHYT/jl9qgAig7ZqaKrKXkybQshcA4iTqqIQ11yts6JW+8hgzm9/rDycrE27Kw6cGlmS0fyIFIUJomp+bskI4wEA9gaaZofj76VLAIjXZ/zGeI0iTG7yS9cAfAzM4hlzCxB1YjUQt8A0Rxv6ywDyEjkClX5LbJzlbT+AGmXT/Uv7g1RHSOHXNFZXRJNLhzx9Gza3wqKLyb97to/SuVvPKs9Ft3qfWPokJznJSV700sgh3Gc/6MzL6r0PqGPteHoxmCwsVe4ckWE5UjfUzpg0xzukratGLd36KuPodjGBiaXroMAqPn8Qi4OoAmCIVhARCiJR9VQys9Xja+khLGIiLI3jLWgYm5teaDtHwf8Ajka7Ap0RpckTEPpt3RprNO+X4ffRx8uGW2rAMcHqv50AXUCLuzpOxXVJWF0lWPM9CtfYxSKCmFIAy6pZYDhKf4/l6F3MhGX+XHLfAN+kuwY40lpNRY/F8VEYdRwt2srmmFjNvUk+f/X3+KyKRvQvorsKrNH9uAjIPh1SeL1XZR9dSe5u+6GkVX1PMphxrXRIJznJ97mcyNWTLMTNyo9A2FoH6YPoZQRFRy8r5y/rcHt4ogic41gbkXq8eaMcbeEyKsB4rIsBK76lJPP/DEzTp2kEeDmEK4Ah7CK95aPreJ0XLA2lcCSWnsC0PVUKhAREFcwBC8fNqwI5GOmatEdbPSd/q4MLAD9e1Wi1j6qCpGuvFgiYBYOWakMy47HCNGyraiN2QQ5eGwGmplFJ5hKgzABXMiJVrLzZyVaGbeZFsxhQjg2qLvsooLNA9rWRqIDdE8RqbHIlVTHPaBtZiRihuOYSQASos2KzQQuT2yeQ5hAE21wMVrcGfF2Z2MPRXW62OPhYZeqbTTUmNyZA+XuRmXyU8w0gm+8DprFA+VVIADSSADqINUAZE6SIUVOY9B4uXvfmanYNldPyhnwt3iFt2ivLBDrxSvFKY6m1ms+325dRrXwr0j2R3mV95XI21J8Cd4ekL5ferd0HyD3J/Uv4/X0295/kJCe5R0mY7LmICrkfPrr0nMrVPMTx+HV8LSKC4dMlsbpKrNBwHD5OB05jCfI1xpMlfk5KGGGqHiDAF3AJtqBsWqEMoCKOlnnpEdPKWGj1HIgifmu6f4Ta1PDE8rp6PqDJACffHBg2Y7ghp2FZZRqqdhwarkG8Spo9rPtdtaRce3W0sV8tmQg/fPcHXlS1x3kXZFnoB7S1eV34yaWInxbuqvoz5XnNMFNKYVt5KKWyyefHD5Yf9PMRd/tO87nL3AUgxy2awh237d6s9bjMli+uYiUMjssq/z4qx3QrIVXCGPeg2J3CL2D0AtzfZe+Vy+tuAy/LGCvleU9C6+V5kgcvJwx733IiV08yyP+33rzSX1WXq8NcRqzes1BEdoe47ia9KwavgeQUd/yvbKRXcwvQgSolAjWTsNSALNIgw2P8cLAx5KXn/ciMQtGIVShQQK65CieCTAOASZwwTehjcANADYmYqYli8LeqQLeO8hOJTD36iBGkiglEwLXpYqCtcpQCYAahgFCIwShgEmxoQsVFc/1qz4pGLHIFpkqmQcxA89eKbvZOUE9ABoCkS03V5HdV9xW6F9NM9ccVcZK0aawCWhXzwV0EeBgRuK/RAC3aiNW52kk9EEpRcJiuZ0DpyJEAoNpzUmjHELlvex3ciILMfUDDRfFRACVVWbwvsWIcaC626RWCsmv9wos0xUfe3JctM7sHQNNWXQBaKAC25JvWrGdqQOc9xrHRhxlRD9c2LSAvuOEVp+FrTcYU4zm1x3X0IcRrfhnaX/peba/10e+e31b9y993kCipu3NedbXI4c+f1f0nuUcpfPwy3ev9JznJSe5J/tvh5nMSjw2j32ez+lUMuxgXFD7uJ2K1U1tYX+Fbngu3VkYmKRyHpLGZyFfFG3MTYXoGm/9Q16KzKMy0ppOzBYBAVBpeaqO2olnmaF61jTwANh7rYiOrls1wC9B/I7Loz2OelAizKs4GNwBiH7e46v5Sx0/gtqgXW+gX1/60OCY1q67QmLXaaLnt0OGIXTdMtDCYGa4G1gszcA2t1wQXe2m1ikG3uOpkXFSlktWPqjbLXtG+WVWa3ngbGWYwI32nCOTYzi5dAqwiGz3+uRZueT7y4jB6CBjnwrhvJG3Vp0yBc1M7TvnpmFfHPK49z8K8nZaZUnQ8eRXEi2tLgvWSoHeUu9EGvSyiy8431x7HYbJbsWcl3i6fZSwnuVs5Ydj7lhO5epJBXlOu4z/Pzx6c0hUd9z1bCTTAdkWcEXAwp18c53QXfnU6YiggXMGuHBGrcV8agBVovleDFEWMqQmCLBiXJdkacbMs8y8NCxi5qs2HlVBojwbwS/5Nh3MCCGN4AOjVZGporIY2KzEIG2BWHACc0wU2ZY9KQCVCJcJsNCoK2XclRg3I6QhwBkMhUAIqA8IKVNNOLZVdm9c0WqkQMGePWQCFJmtVaJW282asRqsImtqpKvRQoXP3tQoxQAqFbVylaBqstRqZWqvztB69zh1BGc+smKvdB9hvEQIHiwkCcwZ9hmaF0clkSlMgjXPUroW2qMK1W+O6P2f2qzp8EwHsPs/Y/KQ29wFQM7Nv75E21xPNRQCl1yVvBZu0YmNBhqoCpZOk3e+TT5AQmi19amHPm4F/Osx+XKOZDt3A8XSjzSyQ+oWc5fa84/eyW9LVb6tBzURv6nbaa3qJj1VdOWfnadkBXPJc9ycKgHevvP8ITnLvcvJXdZKTPO/y6un6s45jJFafHxlxMV1+vEJe9Ehgfc6RK4A4XsZ3WZrpbDL570OrE1GRGVdl7BhXHRrQgN0Ni7p9lgi6HyQDGXl8TJ6tVrOWhvk0No+UZR+7+7WwYmkbtPtvxoQKxYSKABrLfwD53Ca5PmoYO0ECAkiNqJ3UfLpyymnoMKzp2RKOH3c5Venh6fK2kMtqhUwb7YjQiNWcphKhujsDTpcpEYhtytXOqWcr0bka6eiQts2VIrHFZ/kMl31iAT7lKb+6S23VwWtZnr8lD2t98yrt4Pco7vTgK+m2dy2fW7y7muO+4r1ulwhXEqxXvt73Ivfb9eklyZO9d88qawqYcs0JFz1vcsKw9y0/uLTySVZlQ+yg8k6962Ujot7xeiOSVj9XjC5Yjlz20Zzm0plOPk6gcGRMfIBrGqtwv54OonT8YDi2XVhtJ9bF8czguYCrfagWcGX/2O92bmZQZf9d7PfMKHMBSfFr6d7Zjsl/2/EE1A2kTlApUC0QKXbsv1XsnEiBULjiL/2jl3+qFNS6hcxnkMN16OEa9LAD9teg8zU8ffFy3NLrmKlAnFwVIgj7t5+rRKjMjvUZByqQwNheHaxAEQLPANXuC1XVNCYIMG3eWUEHAfYVOFTgoK6paiyoqvtbPYhpq17MkIsK2VfUWaCztm+pCqkCmQXzQTDv/XMQ1GobWs0HRT0Y6Xo4KM4vFBd7xfm5Yr+3c/uD4jAr9gfBoaKRrnXOrl9t19zw6RofSf5el+ea1qwo5tnypO6e4dilA5r/NNNASG0/f7fX4Pi9GzaLUB3OpWSOF0sifdca1kVgc9eQ87rIv+SwGdUidRRIKI4W56k3pER6xiWb31FsBdwdjDGZ9rQT1400XflunwibupEBxbtLjnCDMZyj/kH7xqWfq3rcqz7mypgAPq2lPuzyiU98Aq95zWtwdnaGt7zlLfjyl798ZfjPfvazeN3rXoezszO84Q1vwOc///nh+m/91m/hda97HW7cuIGXvexleNvb3oY//uM/fpCPcJKTPCvhTCTeB0lwTKxedvwcyhAtHV9bg9hLGk6Bq4nVqz68fl7IcLEwSIqtBlc7JmH77cd2vTiONtyKyohBVXO9IOXLn8W99kPBUO3G9Erj9lAWvNN0yxnHWJyj73RV10lVw57ZeB9k21NVT4MG9cr1qgHCjQBnZATbdFUwaUVBtRSoa7/Ghli9JDRneiF0dETDs/WSyb5ah1ZLQSynckrF35oWp6bAhEpw7N4SaM0iMpJhSs7zsqgMknWc1g3sCBn6DHIHcNOe5ZLrq75VdfydGw7lAor3KTZKCOWMZLnXrskVn9goC2Nakd6lH7h7CI02lcong+7L2g0tjml5fNmNi0JKn5Yv9Pwt87z2nPn0fckD6nZPcpIHJSdy9SSrciXR+UKJD+5HxMPxiTscL0ThPlYbqmjg0twCjCB0cAOwdiwEnhmlTiiSCFXhRK7a75KvSem/K2OqBSzFr9mH/NPOVQZVavdQZWDeQOoGUjuZGsRq//Di2D+aP0HETpB5Cz2cAYcdMG9B8wY0T6DDFlp3lp6c4fZ8A8/Mj+KmXMNBDajaJ7RWqX2AMPJn1BiYk09WQd+JlMg0BTjGfemavRRqAKEk2twBCKiRrfYtVZOmqgN9JwDztfC3Gub+nch0jVbXZm3kp7qGq4Ov4HdraMAGmZq0YSOboWzbcJqM2Cxzj5ZGB6ahZRuats21gaL5ll1+NyVev2/pjza0eeFuEdr9Lc1lBhLwFEm/PWzLUwBXJxcbWEUzPYRPlhppHHm8sk+4/FrrHtKPcLfQX/4+2TiKd/XjkwMi12AlI2YJ3W4uJi3rM49L83zV/PfqPB1/2jy7UM/XSZ4/YbKyv9/PPfqr+sxnPoPHH38cv/mbv4mvfvWreOMb34i3v/3t+O///b+vhv/iF7+Id7/73fj7f//v49/+23+Ld77znXjnO9+J//gf/2ML89f+2l/Dxz/+cfyH//Af8G/+zb/Ba17zGvzP//P/jG9961vPqmhOcpIHL9ER3v0dXcHvMsxIR2eeC3nWSDuIoEysDgTmfQwetYDr1hbtG+vmH1n5LQk/CwOVju+LlUwlx5vkWLPjbiNAC/q2pyF5Kyk7H9qkY/lZ/uPcQAcFUUvczrW4g3h1hYOqnK4fV5Qit4Nulp9N+DWeeDFtSSWRWlTySxruC/IzDaVwhVxl7h24JH7GQ1yGo8g3+2o3Ub/PRalDxEzcLXO5luui1EmIwPNrU7wrHqfVIB1BtJydY03VnJ5o11z1Ta2ofdscg7R/Z0zcruX4l3HFBrpXFcbwYLm+4x7Dz8PvjDWXcesVxzkjy4J6FtLel6sqTe/zc5LnX55nDPswyUmV5SRXivnwBO4eTj77l2l9Q60sHdYc5W05gOROeTn6JDI1zEpiFfWI0WgsB/r57B4gohUyTVJh38nezYdoTJoWI+LwW20Dp2FiIPkpzeuMOmKjbLrN6v6m3BcrVxRaugYQ250eC3+riS8zjQUF0cZ8TlH4n9L2GypQsKWpAhXBeb2ODQkuANNsKM+glIpNaLGC/dufxE3HK5lrAKiZk5MDVaoB5MI3KnVNyORfFa7lSbMClaBVoNWfRclcAFRjJkXsGlRRk5/VrCVaxcjVeU5EqHQiVJ1IhQYJ2k3OxPNtFdtma4g520juefYlgcLUvNpv+EZfTjyHbzIiLxcm9wGrkAoQuxsFqPlqHTa8Gr8Fo2uAllkFiPpGVM0fauAnPz7SUcj+VtXvE7iJiI7tevW+yAI5+DWXBh1vpmmNjj+XoulI0dPXmFVQbF512SZWK99D7OTndLSeWT7iShd1nOc795132xWP4XRM9yTPj5Q7TQ3v5n7ge9/73uBmZ7fbYbfbHQX/nd/5Hbzvfe/De9/7XgDAE088gT/4gz/Apz71KXzoQx86Cv+7v/u7eMc73oEPfvCDAICPfOQjePLJJ/Hxj38cTzzxBADg7/29v3eUxu/93u/h3//7f4+//bf/9v0/20lO8rwJXTlGjCF1haXAUV/6HMDcJnftDmD1GB2TXqax2s4hYdqrMgRAJvNzb2DSxu9FGYw6oTSeG8zQtT1jp9x8YVLdL1IbMLO5PaNBPXKzehrDda8D1LBkWzd3stSwS1zr3x1CZM1YGNlLAgWhqrnO2kTRAYtxVFscwy/tz5m/LivuCL9spkvt1ryB7mq0zR98FMwYp0aQ1MzvtilrwCe0KjiKJB47SmP0tAqoOmYXU5SIvOVaBzCQl6pBQl+SU/LwsLoPN7/dt6oeaaqGhmr3+6odS4L67/awGM/FMy3ml0fdRFhvJfddGn4ol5V9pz4ql3fImouAK7qKK9NamqA9l4Axt52V+c+lkjSxTwD2BZDnCMP+IMpJc/UkdxQ6GkUuDXnHEM08efUzhLzkfLreENtlg0I6vxZGgTDlN1I1bWS14gLgqg/ETPqneUKpBUXYvyfTPg1zf/FP01hd/K6MaZ6aqf+g9SoMFhq0VossrlUGN03WApo3kHmCzF1rFTI1TVW4lqooQ4RR542Z+h92oHkLOmzaB/MWmDfAYQPab0GHHbSGlqx99vM1HOoGh7rFQXY4r6bJelt2mLUTrHDwKw6IKk+m/AD3nwp3C6C26s8CTEKJfKS0XK6uAmrHQaKiOrgMTdQKSBXTxnSTcwNgyRw/moeM84Pmcz4IVXSyVVMzjclAc/3qWppV+oZYqhi0V9uxdncB1QneWqX7fXUNWfX7QpO1aX7mV0Y8I659OjzfEjS2n+khQsvVj7Oianz3j2v1yngODibJ3QBQ1VZAlABuTE3axDY0WtN7GuZR5p6A+udo7F/2QbT6TRoTKXRldVz9aUWW5q/Ciso6boJ15YZYl3+utNpM8+T2GFfEs3rtJC9K+bEf+zE89thj7fPRj370KMx+v8ef/Mmf4G1ve1s7x8x429vehi996Uur8X7pS18awgPA29/+9kvD7/d7fPKTn8Rjjz2GN77xjc/iiU5ykhdA7tDBjxYSmUV5kLP6HPdKJ72adAYb6APYGrF6r+YPwqC6AWdXVFKAWnzBnVxLNb77h5rGqrsCSJqoo9sBx9uSdDxjPE5Ep7kR6Gb7fVspvyepXWbIn4zke/Esi5IiriUjtnRBYHkTsC2g52YBbbxWI/DStUXOLpW74cIuvapXXr1jWne8R4cvo0u1Ewft/GVTOdWByGSnUW0vXhrCRZgjzdVUP9Sw43F6w70tLk3HSFgy3RvaqIjw2vI9fARdozWZlcXvZsKfTdAaYIQDfIDapGFRVndVF9qetYkELr5PSZZml80NjtK8p/gX8erwKJfmKbu4OMlJXmxy0lw9yV1JJ1jXu7urNU3vKoUU1z3cshjILRq/kFane5ielKoRd3cEpEstgOWxkPlWlQJSAgu5+b6vxwoGjb/hEXK5KcDSVzUHzIfxB8F9NLbsq2dLU3bjmKGkEK1gUggExAVdfdR9aIVPKJL2sYyE5mq/BlXD1E4GilbzV0rAgbeYoJghOLg319tQqBYovgemA26gWlUoDGqpoMIAVzMzyuBHqIVv5Fzc78BFVaDzArg4iWqTJ3ECliBVfJAPv6doE6xaLeHuDiAsesxfsLTMpWSQMErCKjXyTZ4Xb54EQKuCk01U11K1QEt/xD0cgdnyR0QQUZSF030jr/txmDJpqAEoEkKm9tooaddWbQ5KF9956Tkebnivhq0M0DRfVYGqIDZt54iPpGuNRp4oHoCsTsg3viCJPKInGId36IJyd9G+GVD3u5rJyyu1VvMc0WdX6vXbigQpnhW5tLu8y270si4y8ncv95zkAQnTFRV9l/cD+MY3vnGkubqUb3/726i14pWvHDcte+UrX4mvfe1rq9E/9dRTq+Gfeuqp4dw//+f/HH/37/5d3Lp1Cz/yIz+CJ598Ei9/+cvv65FOcpLvR7GF1BemhySYBVDvodvoMeLZlWtaTSngSny6NrAtRWEYsCkWBBnac4nY6DJuCEIqY4GGwRdlSWoDJgFohubmGsAAng3+yQgdHbh0YKAaYe16T2XpnzWyP5K1ksuELEVVXdy32AyLxvtJybtmM43qzgo8PUXbdud+ev9W016Wz2IEuTSBhujuFHluejBc1jR4Mz9IhpEn9Oon7VsDh+ZpmNYHaF4jRNeazkjaxhyo/42zrektCFRtcY/n8yfnq8+N4ltXflNPN+c53gtZ3JMaRLwObUO3uH5JF9TfejoOSx2HHt1w2e/h/IjfL8vEXWmcNhw8YnNae8b8eg8JnZDq9408Rxj2B1FO5OpJ7lGOQZ7qFaPCqqy9cD3e4wH/sjQ7sNPhuoduBFMmiDwcqZvTx8pkZ07yoN1JoiD3bCW++1fl5gaANVwB2DcnDViNNHL+MmiRAMkYizKBChouut9KNrKMGoamhFbi2L6VGAIBaAZTMbPxRqo6adocC5nTzXADQIOzITHAKZa+skAmQOsGSsDteh0TFEUFRQUz+ue23sCBdrhe9ngEex+LvQ6ZUBmYC7A9GKHGunSroEaQOuOposDsKqTh1yg2RGJALuyaim9aFVqWcC1SJyjD/UVoYEojWXs9qBN+zclC4DRJiqIJu5GG9qqBy/AUANFWPdVPshCYAeYAvGHQ5i1POxBmuDWQ2jMEwcoBlEgxEKb5HfBrsVWuqrqLCAKXhXHWCmBsDbFNrPIELAWqPpcyW75GsAKAik89yiKyHAX5u6fpfALkrQLGHKPfcgw2YxKgBKAA6r5IlXuwIcxibhrfQn5P2zgr7stAv+diDZusne892R2A8oq0Erwq7A8uznlBRFv7fjb3A48++iiY+erAD1D+1t/6W/h3/+7f4dvf/jb+8T/+x/jFX/xF/PEf/zFe8YpXvGB5OslJrpar3rsRq3YLlQVGbOTmgxBt4zPcfY/KWh6AozzlfDPcZ1Fgx8WAtXALsEr5Kcy/qhZkS60+QBlmUIJrI+Q8peOWoT5Ya1JpVFsZRRtYnVDtZKv2vPpx9oka5Kxhlup063LDq166zQUAjq/30TbCjGUuaEXWw1OP15xkMQgzbNcAC2MbV7kfWVMXwF1J+FjVrjM7+l1dQTXaz1E2s9Ie/uienOTd5EsxtJj4Dg9ODcc4LtN0/pLoQKSO69faubfQAefF7956c37aVEe6EwjgOM/L8+04tI7TN/x8Z5IpnUe/vvaA7d5+jpzAN9BuODzSVuah+a9h7cCl8SPwpsYrlCcIy4dceeiOF6kTnC2/+b0/frxn3SWmtI50jmSlTE/ygslzhWF/EOVErp5kITGiLWX5gvmQf8+rGncz+18OulicT+OIwgjSuNp6fx8MY/RfjCDhcyl2BFU2s2UbvwjhJiB/D8fZPL9tNGXXWchMqhJQbYA1j38NPIShTH/ErCAwjmgZNIkRfc7kdasrB4LkAzrFyjzAUqDYADKDysE97XcN1aW2ahxr+FpV8fIyk+gwCRcmM7snMtcAdEBxrdUJgoMKWAChgl25wFP0Cuw2f4YitzEBEBXwAW08F7LkW0tQA088O3hrZkTaJg2GizQ5k7ePzjAiOMqyAn2TJXQfq/47cD8RJc1VJ101uQIAfDMr6htPAT0ddrK12vPEIp6qk6jozxt8JwsayarqflM9PyLmP1WgYCHTnFT310peNSXidLAVWqQDXurXAGr+fJXM96q9T9TSD1+roc0amqkaaNpft0aG5rY6TJQywervWqzeD8gyJhoerwDNQVd+J7yONdLOskDWAU6V0UlVgq34twUI9LndJd/9ngx41yQmRml6thL2iGBdgs0rJKd/dV4uT/8kD1Cex1X/l7/85Sil4Jvf/OZw/pvf/CZe9apXrd7zqle96q7C37hxAz/xEz+Bn/iJn8Df+Bt/A6997Wvxe7/3e/jwhz981/k7yUmeL2nj+KUyvlfrGqvPfpJ/R23Y5ZDlY36/mBiIlqeVPoHg42OM6XGcbguQsSRX3byffcOpvEFrH1wMT9q17PxfezZXNFaPnzwTqalvFDbgE9ednOz6n/6QvhcDEUN1gtDhqIsMsrSVy0KCbG14JfJBuVyWrgHQr6ewiglCFUVbyoFCrd61E3r3KrmmLz0mQvhqHUzsE4m4NoNaQKOrhQBzx2SHghGu2ZwCYDXrqZEQDQsz8qiSSf+Qg1RfzdVXP9XzmcByxoDDR115gRCkbJ4nYMiff+c0F9hy8MGcO5XhHB2dH+KE5WmAt7EGQQQSgU7erpbNJTBwTi4ws8czKKPnSs3YEGvXCfnx/BXLDWx4p1e7stRN9Swfe8dt0eriZL540lj9/pOT5up9y8nn6knuUpa9Ygy4z2WHGKMacPnQvxgFU49PbeTW43CLc0F9BAk5HIcndAXyplfZMWOpBaX5UQ2StaDUUZOV3acra7gMSISshzW/rN23ahl8rHb/qs2XqiTXA7Ndo1o8vvjNzW8rzQV8YGwuCspcMNWCst+Cz6+Dzq8B+/ClugUOW/e1asfmZ9V+02ELmnfQeQedt9B5C6n2rbWY5mqdMM9nOMxbzNU++7rFxXwNt+s17HWHC93ioAU3scNt3uDAjD0TDmybK4nXq/BYxcGBAYAeHDBlKzKFAW+YRqvOvqOVuJ/VcA+AmIOYSwCRsYmomkZpEKsxX7HbdWxZimEyp02zVUcLpJ58/938rNrmWEHyzrNibj5Zu//VuMdI3uRHVdV9r2onkRevU9PKjUuJIA4FEmoBMd44vHfxsi1eycWnuWJYvnopgjYPVJiWSXr1o34M2IttQib9+XSZXu42FkCzvboT2Upq3riYADD1MHdDrMbjJPCqAMQ14cdPv9fC9oK4ymXAnT6y+L3sLleq5CQPsWy3W/zUT/0UvvCFL7RzIoIvfOELeOtb37p6z1vf+tYhPAA8+eSTl4bP8V5cXDz7TJ/kJC+4rM32XY76Z10/nUO0sVPv4GZgrYeOexa99mW20y0jyYa58aeaklkZyISAuYDqBJbJLJiakoC7iap2bG6j3D+/lDT4pE1bF/sUhAYsfEUzxvfBTF8J0OK/I0xoffo5pOMYpFslWNgK8g1F+4DcNFfzdzv2e+HhEuHaSdVIN+JKGCPVoYJ9M1bLY94GAC3uscavbBL3IMd06koUi0zfM9Xhz5E8MUARCg5AM3aLJpmaYCfRl/nuucj+UPsa99iOsjZ1szBcvA6m1dr/WV4S2E/5G0D78BnDHn887ay8EVoRw/kcZ3ZTls4nn61QBc0KqoLuJzZ8jlriDbszXGEm4ccg/hd4s7U3Qq6UjnmX5xH4dKUPSsUyTniuajwrstIAFThprJ7koZOT5upJ7lLGJbG+Kp/NO9bC3kkyK7J2fnF29bT6NY8jNOpokTs/p2FeQrDBrw1M7pSc1M031NmsAlQYYakE0jJqrDppunQJ0EBB+FwNzYBY7dMOBPKjDCt8ga/zcyZ4uOp3VcPXqu/WqQnQZJKHAVABDhOUBSizaxAYaqLkZzVcAijroLGqqqgsUKmQ6v5SiXBezjCRgGHaBlpKIswEW0w46IRbdIYNVZzpBWYm0yAm2xNB1LQZRrDq4KMAuIjCcbOuAEZpMyZVQGZbSxUHOuraF0FIxoJxp0UDZ1EDNV1TlVoNqPTkcpU1IOLkb9M+Vds8UZMVH+CL2j7f4TiuQCF1NwH2fMyRNo3PJ/YuilDTmMgaoxDTSAVgJLOb67d9dCm5wghTtHBtVqiVPVKUw8O2FXft7HcuEOq/Fbkt06jBCox+3UK7tlfQAIDDpUMA2jSXQ7zgWvwZ0rl2jQBpWqj9RVvOQ9tx0liNd20pd17kpfYYQ9ng0hOttNrlZRFHv3bp3VdGfZIHJPosd1rVe9xp9fHHH8cv//Iv46d/+qfx5je/GR/72Mdw8+ZNvPe97wUAvOc978GrX/3qtiHWBz7wAfzsz/4sfvu3fxs/93M/h9///d/HV77yFXzyk58EANy8eRP/8B/+Q/zCL/wCfuRHfgTf/va38YlPfAJ/9md/hne96133/VwnOckLKg0bAuNg1oBZCrcCONf6fcfDd/RhGVGshnM87RjuTn0Hwcch+Dg55D/G0Y4vtcJIUgKgZcSoCZ9SZmdCI5bceuWoPHpamZgZ3QE4ZnHf+iPbo+Z3lWoniRCahzqGIwsXGqei7JQmQwI0D1qo1Muz58ZzHYSrNvI1KkYVRopqJ0c7CYv+u9WDbdTKELdsq55yt5YSiqcKK7vL9PvW6/kqWWsp7fclDfKuRxYCIDp4g2gGS5pKOWlBRtwNi4KaR7Glqf9VT5RrcZmlrgF7/CTWbNXnAYJjsjXlIxGjgzVcTIMu01bVxbkwH0OKM18HQKLHllKBmcNdl4q9O4WgxZV5qOPX5UL6SLCuFNTRcev4LmkDqT9cdo2eXU0vFMU7l2Wli2hTh0vrPO67c793kudPnm8M+zDJiVw9ySDj5jlZxl62aRCudpb9pJnx5LBrN9zLC3gcduBgEsi0zpyGASBgXvT2DYtFz5/jIoCCZCVbnS/zxgd3aqv8HCv3QaxmlwBtYA/fqwBVd+y+NAMJviafazvY9pFu1IjQRqYuN7VSqLm1RH/2/tOIrUamUQHmCSCBlgqiir40LSAVUBCr8T34XK1GNoqB+P18hgsVaGGI28ArggwW7MqEc2yxw4xzbHGBc1yHoEIhDjxo4bypA+HAbATfpQkENqJMa08rVofz1qZe7qTmo7S5b81qpQ0cde1TUGiaJg3SKMyYvGhKRsOEvrcn8wvlVRCm/I7joN0Cg9IxK8Ck7lvNywRwFwu9/Qe2E3GLochLlJ+XAzElMjVD2HiG2MjK20u4GogHy9gr+/giHPcFYemXQFM4B7D77ZyqWrmUIM+pxxfPEnEMS/JxzstYYf4UHJi2DQPCNxVRX/Vn6mRpu4b+O8qOTCM1VDU6mO2PqZccD7J2PtUR5VN0FOTSLvIIbONyeHoVrj3JA5C8R8393n8P8ku/9Ev41re+hd/4jd/AU089hTe96U34wz/8w7Zp1de//vXBd+vP/MzP4NOf/jR+7dd+Db/6q7+K1772tfjc5z6H17/+9QCAUgq+9rWv4Z/8k3+Cb3/72/jhH/5h/PW//tfxr//1v8ZP/uRPPosHO8lJHqDQolM8up5wVlqIHwK0zvnyqLrlx92Tqj3SSzIWR2QJ9OQz04FOBsYl9kFQIlwCJeQDMRMgjDJPDRsDK+RqGgRVNOFqxxigjkEDc6ZHy2NS50cp+Wv1AM3nqgKaXQas+GFt5ywuc+vFUIxkrWmPJowPdJLUB9pe93EtaOHRK2c/259tKPYBiiTidaiqIF611Zvlj9KZBORynQdwTMmnx0q/dHHuimarvbTuKKqrYfMcJe3H2ucvLUxvuUA0gUCcd8iBjp8jxe30Vgxpx/WY92ViNZV6Tj1PpzrWXOQDd/qmrn05aHUOkwKbcLSF/kgU/eHES8Y1SzWFDby6PO5ELWG9so6Po+s7Esfda7UzhG9t3NMcTMeSLIokn+tR5YKko8OTvIDyPGPYh0lO5OpJ7kJyT7fsYa+WtuHUEetw7z3nMTmb4wjwZ2QNnEBT8tXkbCa1TJsk+S/y0VkVwSwpwgG7gc9S+06q3EjWZKqv2UzKQawYgOVK4JkdmPVnoVy+RwNRRoQYRjmFtOoJQhigZl4zxJm0XFtsicC080GyKjDNrrVqH1FtHxUjWO13hcwVVRlSCypvUOeC82vSNGiN/bNvphkVG5zrGa7RHltMuE1neIQPqESoTDiwYs7AJL4D/UiQ5wrMVl8kRr4GM0kwE1YSglTtRatuVt/AW7TRMMVfYAWN9jsCsyB7AYvPvnuNBnhuVaBogw177QyL3NpxUpD+AnuHuBLKpCiwyYAw9flUI1ad0JUwISLbsdQ3XwoNWgBdm5Z7mgu3Y/5bu3J3YQdeNE4gwr9YrFJEd+Hl27RgYyE+/gbB7G2biFPhRlwdvKlr6MYMhnrTTwsk/oMBKgmgpk9yodzBKi1euzjX/BcjcPrl2gO96lflqnADpqfx+Epp11Nfctc3n+RBirmQuP86ONoB+C7k/e9/P97//vevXvujP/qjo3Pvete7LtVCPTs7wz/9p//0nvNwkpN8v8lyrm6wqi3zYez9/Rzp0bXgEe6dUE0xD/ct022DmP8PP6MJ8yn6gKeLvOc8a38GDRwKBiS0VqMMOm6Fxr4CkY0RO0IAJsO7Sgrl6mNkws4BTNoKsq/4aozvTvaqHVNotHYwgAAg2kjVXoOG4YwEtk2lgqxkG7M16ySE3/i+eGrkcNxlaeXZjcDLigoYgpJaTncxEOiO+nitnew1Pd7sZ76hHmg6viPJ2PJFKdWUWYzEqsF/L4QFOdumD6sJaLsvb461gIQtmpLPO8QM4HqUn7hJuiuoy/ORD2i8v4GvMV5rpot5U2iCRvkouhZqxJW3lVi4BWi/ZXFPO17MTUKRA/C2HuWRn81z3dYQ1C21+oPYFIz6q+vtNr8Wmut0hXxfrYCrmlnuHDUCp0qKR425Q54btfs7aLXNgelyLdW17naZjxN0/b6QFwLDPizyA8wrn+Tu5bIXZM1HVP7cbbi7/VyRw6MsxmBlBGs7t3gcioENQaLo8LsD2ACeBhLNv2r3uVrEdlttx67RypXBc0GZGdOhYDowihjJWiqjiH3Mnyp5fB7vXDAd7N5yYPDc/anSwq9qcZ+vXM1n6+Rplpn82/IReSmVMVUGz0b2cgvj4Q4T+HwHPT+D7reQwxZy2EH2Z9CLM+jFNejFNeB710G3rgH76+CLayj769jszzDdfgS350dxIVvsdYO9bnChG1zoFjMK9rLBbTnDjAIBYdYJt1GgRO7KiCDsfizh6K30SmuEmqCZvKOZvpsKbfDj6tqm2twF+K6gizZleMpBs4MnpoDF3ZdpI151bEjNwii5EhDXtPW9tVDFCNzwoxpktR0nKyXHxlWBudq5WuH+WIH5INjvBbW6r9aqqBXuhzXyqK2Nr74f6VjRnz2HJ5+IAClTWHzHoWh/UPHfS7MqtQlKvicArlYBqjbfqgOYXX7raIbomcUwUSK4hqq5YZAgVhc+Vht4bdcjvLbfSGEGzYOVj17yQc7XpR/X7s6OzC75jP/SlRTX0g/sSU5ykpM8zLKGVpfnljzLqhxdcGpstR+1mIx0veoji9+45DPeM2YmsxMx9uniXIwhOY+hmRruAAq4TqBa2uBIWjAOejYYUi2geQLXDcphA66T4U3HnEbOdv+sdmx+XCEToMUGJSEn2ZYDH0MlfK4ikZhANuHPxHOAwExwtvHPyVZRRtUw/+/EpkEUso8CtaXhRKivNI/arKPFTxj5G5GkrVYGU/JUK8d05XEzG44TaKPVMJe03K5SvX79kkRJ1dfhaYA5mURrvlYXSbV4ctNbNkekz0rYHm8CoEruZq15Ux3ia0A7S+P5loAd5iIrMGoGTZI/jmNdIYOq2scVOEh8Y644rtLDzArai5+THkbsfs7nqi7CpedZQNsotLawn/Fr3tQqk5PxTtAYXZoarAtdcXkJy1cCNmJ1QfKutsah7mhsC4pe5to/J3n45ROf+ARe85rX4OzsDG95y1vw5S9/+crwn/3sZ/G6170OZ2dneMMb3oDPf/7z7drhcMCv/Mqv4A1veANu3LiBH/3RH8V73vMe/Pmf//kDfYaT5upJFrKEm3daeVj2osf3BTlzZ/cAK7Frjmct7eXvrooZK/y2iKmJ4ViAHwezeVk1Vg5VCQwezFG6c3UjUNGc+ieXAOEuQNK9lVDCCTotcpL5Ic9GUwDgPGIarWIDoH9TcRN/BQ8jrKZ7FuVHHTK6j4JRI4/QTa0xoW5N87SgEzXFgYVsCggFsr0wTQYqUK6Q3TXchhE8prVq32dgHHTCheyw14KqBTMx9thgzzOYFVs2s32Q4XLMgGJRfwTzpzk76EhmOSoDvAJNgO59AyjfYR4BuhdNKBb9c9XEZlaUzio6oZpnawQaXKCN+JNy8Q/tQNFdnKHf3mqwBFFY7aT5ZzVfrJZnRa0EVYEqYcNsOxCDBq3UOKYj9BzFN7oGoNzuHIgSu7/U5pMj1YxnnEL11t1WwP3HDiAxabsSqLXF7ODeFM89gXBlkQF2lCyH8V1CmhRpYiBRMZhV9c9SY7UBzQQ4h/aSgeiyDJZhF/etn8serHsbXguulOvmcmn336krP8lzK89y1f8HeafVk5zkviWzCJe8Qkf7BAydZAZjy8Owk1z2uLRy7jiBO2u7HgfILgJ61rpWZCMdXYlAtWPgYXBqgxuShZWxMw3boodR6WbcOT6DTk5UKkO4giA2HuXFwRi/uHYWyAdVkgoldlcBFk/fwyHwezqO827e372XEpQYooIShKgufKWCUZUxsQM/Mgsce4YKBZnHBBCK3wsNmB6uBmS0kKWOG9X1ZO23hY2mxEMdrNX1OMYHnlLALe+yJmhuY4GD7o1savkZmlmPY7V56vHxEjr17Hl9xnnHddxqa/mhPs8ITKdoG2WZawJafy01xZPvXcQVtdgwZkQUKs7DTrO56brll2PYrt3riTsWbmRo1l5tPrtS2VBKM3BuMxuDA3oP3HxipcJdvNJHNZ8qb4lJs6Spydqtq2GHgLreXS7jCqX3o8xe1mRb+1k5D/TyP8nzJy8Ahv3MZz6Dxx9/HE888QTe8pa34GMf+xje/va340//9E/xile84ij8F7/4Rbz73e/GRz/6Ufz8z/88Pv3pT+Od73wnvvrVr+L1r389bt26ha9+9av49V//dbzxjW/Ed77zHXzgAx/AL/zCL+ArX/nK/T/bHeRErp5kkL3UxZmxs9MgTZL0nxF2DWgmiNBcBRxfW4qZGOT4c9hVysExB/V7G7FKAJUxmhZ5RVCT6ziZ0mgSgNSWDFkYVAllLu5/1T99Hyj3xeqDe0p/AK7+iO2+AM+Lx87r5waCNZFGEQmaufXwvG2A1n6cydWUD1YASqAK8J6hUwfOqgKa7bdURjlMuHgE0GkGsEHdHLDZ70FQ7AHf5dIcslZM2OsGLGc46AYS/rAAVGYIKw5UUYkgxf2LttoJhEV+zh/j4AC3ipV3Q7ZRdWT+Rlmhc4z68U2DmwbDPJaW+CQjQFeY6we2BaGZ4R9pw8Tv5Os+47PAZI34VDUrofDxm6pMVLGFc4t+j7KiCmGeBdOUjRAIU6EEOKP9j21ngO2UUqP+3bHdiokWUv7jYA2xpQJploEtD/0GVYJW80pGhQeC1awDFTITmAFj3HNaPe3mScDPaxSYvxOS1DKyVqm26xm1tybSwiA/5spxJsfvJDnusRvQIZD3mEOdtfvzj0sSVQBVD3eRo5M8V3IyqTrJSZ5/CRc9V/WFy0sDJAQaGRNj4biwikXofq4rDeZxreOJ49QvGzBpDEsAqfjYVtD2Fkjmz33UKEOUKjAN0qziRmH+n/YHEHKyiD2/C3SailW6PTVYCaoVxCPBSjBsyWIjl2BGtyEHCAI1wGMrxqzQIhDuuIBpLIdeMpa/IFlFGUxBN3vYRLISCLMSNoEbqZvu9zGcBjfxhr0NP4iTpgvUgWbi7/m0+9yVgcrxZqetWsaF/QwB2jMG5nouSCUd4HDDYzm9O6VAl4VzbEypfZiWobmuOjLH9wI3TdVeY0O8lMJeksYAosfsIEhU9byo50NjbhWapilflONTdEut+FZg8AWciVmgW265kk4s6g/PZAGNdGK1PQIa/vcAbf3G42OK6UGLM6z7stJEKtrcbRzJmuL9cf/n34uwy99Jr6Ld3O5fXlvLS8u433vlPYR7XUw4ybOTFwLD/s7v/A7e9773tY1Yn3jiCfzBH/wBPvWpT+FDH/rQUfjf/d3fxTve8Q588IMfBAB85CMfwZNPPomPf/zjeOKJJ/DYY4/hySefHO75+Mc/jje/+c34+te/jh//8R+/jye7s5zI1ZMM8v+p31sxe8okDLAczVTDS3c7s3L/cafYCafltd7VdxPlrp23HmcGr6X7fQkNTSdaW14Ty9MGKBGAJu+/HTStsS8g01Z1E3yqhFILyt41AQimyQr/FoDm0ApYlmh6CjWcOdJq47g7Pqo2IpEI0NoL1czX4OA6ka+NHOqjmD2uAzjtwASA+diqQDkXM6feOFlVzU9WJQFXhk6MUm/gcHYO2QhICXKxhekDKA5QyBnAdMC5bk27Eor/oY/iGt3Ghszf6kEYG1QIATV2GsxmL/78OgHkXJGKmn/N0Kik/mBtcT+Okw+ltmCt2je0CuhOcNO11MZcEzMmNksgEG1u4MXUrIuyQmZgp8Ydao+e4kBHIMtE2KtjMlawuymrAiO/OSUKA2EZMFldWuIEaguK0V4DbOeqz+Bw4F4HP146TC5a+g6EtJ/wttoH3LzmYUGskDR8OBRut2atWS1W1oh1IFIQl1ZgzXVbyzP1dk8EnTCCUHudTSuY1Oam0u9vSrPwbkNx5FBHc3y53C/Bgvn9G8+vCPUDzWFopFp1Jb4sdf7G1QFOcpKTnORFLv95voXjzjWNhpk9ABA2rKrSx+ABHKGPFzEOAU3Tcgzov7SPmUtebN2tQOCKoONoMaZqWpR10xXwyLs5htXFyB8G1UZO2eDY9gGoDG6bsZrbKYBsIZx65FmbDxTkpJGpygoVgqA6sSp9nkDd36rtfWDaowo/RwIlto1jwQbsXJuUYEQ5ASCtUCbzsOrxUMSDrr1KkdnIesA9YogWVDK/9VB0038HCxrxhJaq45PYCEvBljOqQ40LGDMqJo+lO3Fgs/SKqsGI6eKot4aYqyxw56qMjWogxO50F9nDRV7Cx2q7fyXppTaoat+frLW/1lSXi8CUngsNB+Z7om1mk/BMCAMJ3+R016aO8Ykm3NYBHNuL5YlCG1WXEXn7ya6pQgSGTYEjjdc0obD5BaRbHVIPpwqgqG0uGe8HAZjK8TMo/H1ZPKYzN+GytZXNAodehj9bEG8w+TiurnVvQx0szftS8KENLhtlK4tcvimCpTbR8Ax8xzZ+ku8/+d73vjfMG3e7HXa73VG4/X6PP/mTP8GHP/zhdo6Z8ba3vQ1f+tKXVuP+0pe+hMcff3w49/a3vx2f+9znLs3P008/DSLCS1/60nt7kHuQE7l6kkFeOz2K/+1we3F2wQIddW0rztZXutlxATYRMas95fGosB6u9/aBSdQHP6K+Bj2mHwC0r+UqCOAZqOaqnWFkLIefqjD9hw3YLIRyKGB3BcDhv9QH8abBEO4CstuszKvEcUUns1ZAQxtAfVAa7ncSi4m6OTP8hoq2Q72WAInoCMpRn6qaiX1cC1A9A1QBFV+Nv81tn4K6YRCxre4LQWYG376G+REBzgjTdmd+Zw8F08UG88UO333ZDJYDhBRFL3CuZ7iJG7hOFzjHDt+dzPXABCNu50IOsizvwjBwTGbyDjiQD4DCBEwMXJijUmIGF/NR2nyuwrVbGgAfkUHWlM7EfwBTjYIHjfjCkYeS4S+FEasROjBZzcRdul7F+MIC4xXzI1UAByh2ky8yuIVbdaB6gGCajGRnJyjNbC+9dNSfnYBGQg7m+ARQCRM8OPBKL97aS6jorgRi89/WBrWDasBX99VJcE0uLzC0ea1+LdqmRB0rqHo68X6XMrxbGbPF6r64FrROgDANqD2I1YEgTWoejm9N4zWB5AH/hZmgl1kj3qOe8/Ot9WOXoMU1bHyJdxM7lfO1iHPa/Oh6Iid5IKLP0qP9s73/JCf5QZS/Ot1Y6RszBkwX07H5ItWx31QPkwmY0FLUbOY/sA6eFqW0dKGYcEwR9E2y8gCzZDd8mKaMTXpHYZqYze+RjcvNJMMGMfODai6rpv0GIDKCtRrZapNgowVDA7XFHwA4mBeS5u7JONSulTf4+FYF1TKMkQYkGQRzY9Rsk0Qc2xnm1FjRVEKVAybWhjGiuBRkG7GTb1RKHcNkgxrRsE6rht0p11jAa+pYwErR9Biocz+mzWolU4h9RmG2VJUURQGFaa5KIktzs6T0F1hQ4sk9wAKBJRiRkeglcuRa4FjytSPN0NT8GK5s6aejGWguwLgvmki4oQDaukHcG8Jxf2OzF69h5El73IM5fv5EviSlmeddyQqtz8NyPHr8nX2h5s0QMtiKsmjn47d0Ejh3OxXGvrh7LQBAcfccEuUQjTP0qQ1nCsNcaiSs2d1s9SKj9H0kCyyaHyX3OIP7slaOSy3+RZztIfM9y7C5bxjjUL2ivcYCykmeF3muMOyP/diP4Zlnnmnnf/M3fxO/9Vu/dRT+29/+NmqteOUrXzmcf+UrX4mvfe1rq2k89dRTq+Gfeuqp1fDn5+f4lV/5Fbz73e/GS17yknt4mnuTE7l6koXEyDV0sVeGD+wQGqb9vmW4u+sWl4u2HRBTG6h06LV7vMwwYknJSdbeww8r/M5QKUrXKizV2MTq8atCa6i5EViLbyRVsNlPmGYGZlv5LwcCzwl3hluAg68ABooDzCQFaOYefTBXT4raKqgtrhtJxkDXQPWCaSAhEIukB1XtxCoAFjfLbs5MvTi8vJA1X5sjdtj37IT0fLByU0G5sQUVhogj2MOMet12ky3762Ao6tkGMk2YtxeYJ0D2j+L2Zg8hwlwZO77Ad/ASXOdzPMrnEBAOZGD5sFFIMa2IuoEB1olQq2Ca3agrfIqCmn8Xgvb9GETcNyjAhVDJ6wiUJjNRXJqO0TaGyiA7gK5oJzAjfMIeQ+uX1AwbVkv1EnIQ96MPYIo69e/JNU7PZ8W2kCl1EiCimGF1ykkjQJFArRoPyUygQijFXSSQt0GCE6PkbUN9UrJAW4T0pqG9esN73boOL4R8jdD8tAZ5au+q9w0l4rP7pFbQhi1P8U4QED7OMAuwKVZi29K1cPsM1PfSsLhrAeqG2vvTXADEMwaWDZAa/QLFe9nDtXfWNYQbSG1lpcj+ogEcbx+Z2skwkaAhSIu3T7yOr2Pl2pAUAacNrZ5fOZGrJznJ8y8aJgadPYkrndAK9ib5cGl9cR7IG6Zdsgz2Pfgn78POgpmIYVAbMRr5SYNJOgfH1H0wGN0M2CBkm2PREI4LUDHbzxrxTQifp0Umw7BSMF3sMM2bRnoVKc6ZjgOMVh87ij2TcT6moaqF3VUUoCQQx4ba7K9h8RcBqFjeS7Xn46gsK7RuJVagUru/PwPLCJJJXDOSwQ3uspu0VK8zgqKq0bUVjOJ5Ea8oAlt+0Z0oaJQtA2rqFahq5GmnOYFY1DUytWBWxYYsHbbJQ8cRrX2FJZx6HbYJU6t5xsL9RBCsCxjWJbfLu5mpYdRGjPNEq+dBGOYXDbNqdw96tLen2uJ+00CNaINYVTQ3VdnM35KjkdzNhRP5SNeoxZfyKYtzgeOSxRplxYrlJlJu6k9ZK7VK2s8Bw2ZXTYtC3DJSuqsB21jX23l6pwbLt8hkYdDBF0UmBmYv5EJQJndlZQoCMlG35kPCpUOdYlWiSFrLWXSRA3RPxd+6wfjV+s+xbiKR1nWmCmAC5wABAABJREFU+uttTPvtqiP5HHXRC6uX3bI7P8kDl+cKw37jG9840lx9IeRwOOAXf/EXoar4R//oHz3QtE7k6kkG+S81VhfWJ+LLlf9s+mR9Yidmh8GjxXnn7nFhdbxQlgvw1EIv8prBaB5KenwtvwAoRn0lcGEIDm5uBBARRA/geQJ0spjc/ygfin1m11gFmpanhSNfJXX/UeEsM2HOIPMGXz8BvmvPo62RE4LIUh8VB4zuj+6Qv6c7lArs2SSl1c5rH23hvolEABF7jioG/s4vzLR8PkAvDuDtDlocZLP6prCK6YJBuIG9AnVnXgT4IKi3H8XF2U0QCZhm7MuEcz7Df9eXomDGDgdUHMBacVGAuQBUFTyZW65GFhOZPy4mQ8eHVBgKUGEoW7kpaydeyXESwUi76mSf9jLukyAcieoxra8tXWrYIIo40grfrRUJeKTrCiNXI85KGP17qWF6Fqv/QsDWLOjMF6sANJmpUZ7slQ0boUoELgBPDCoAmOMttQcNwhUAZRYwIdk7Lo4cvbfU25SjM4qLQHPjEO4ytDqgpDQx3ps5IIqTwO6LVc+NeFVUkDJ0X4EpnohMSWdH0C276aIRq2b6jyM3GVHwQr2tAKbjfkS6tmelBkTb5DwD0FgQ6lW4Xl6t7xzLMIdb5UVTxBpINqHgjFGJgHn+5kokJ3lQYpYC9z8dOPlcPclJ7l3+c72N3mknwBcdZp/ZL+EhALQ9E0GhmZo75yBGRoxwrBE7xDicWFpwUeu3cye/psWKdM7HFQrcEZq0DNXZFrwZIANHwOEMrvIGrgW836DsJ5R5Qqlu+cHa1uctavfD6mWkqpDwqwpAuaCiQv0c2DRgxUENkZNCoTVbBKwKVScrw/yG0AfXNpuPMmOYtoNdF2F/LgCozdjKnt3CqyoE1Te4cu3XVDFBnMaDCQhVGZw1EchrhgoEBzdG7q4ZBA1utFo09wBii/ZKiO01owYBw61hzbM2G7pk+B/mO2sEbLs3H/v1RnK2TIzkVcN18aqsxJXzkFzW23XtH9aeDlHfd4KHOKgD8dBsza9Oi4/675ZfdHJ3qeHo7zs1wrTH10G4LsIvPtIVVrqGag4jDdy3eZRqc1FFrrmqsHOqanMT73/aJqSkQBVrDwxgEjSfV8XrNIj1iYFir4YUCwIKv6sJ8l2CEQdrpihD9PsW/GXrihToxOdaxLnBACsJ5dC5z6W0NUg8ayrzoRuknswxGXCSByzPFYZ99NFHzQ3GHeTlL385Sin45jfHuco3v/lNvOpVr1q951WvetVdhQ9i9b/+1/+Kf/kv/+UD1VoFjnVpvu/lE5/4BF7zmtfg7OwMb3nLW/DlL3/5yvCf/exn8brXvQ5nZ2d4wxvegM9//vPPU05fnPLj5XoDjf2j7cMcvyURmAE8fDBOYfPvCLfUTL1KjvPRf5uM8Rro7UDoGLD2vBMpiMV2TGKB0gziA5QvgLKH8gFKM5SrEXQVmOrGtFYvJpRDQZkZ5cAotwjlNmE6J5RzAh9gRGxof1aADgquoRFqx/m3aYiqrWCKpUcV3W9raJFWC4cKIwfj3ghftae7/FQFzx5HdfAwa7sv4ubZNqzC+QzsD8DFAfr0d4H/8ZfAd58BzvfAMzdB3/4W+Km/QHlmj3JrBt+asf2OYnMT2Nws2Ny8Dt6fgeYt+LADX1zH/L3HcPP2S3FzfwPfk0fwdL2OW3KGv5BH8Rd0A8/wBpWkEWHzVrHfKg5Fu0mWm8dIaDW6DT21RgcjTxMCXmruXTZkDJs7pXDZGCZgp7Z2Rw2oZMwl6ub+YhjrUIF9+lxU4NYM3D70cLN/LgTY++fWbOHj/tszcOsAHGagKmEWq6b9obd/Lgp2TVXeUCNaubAVF8NcABTXao35TVI5ILJJy1WGZWv+Qym9m6GUrVkbwIGsVjWfwHGtorkOQPXrs0IvBHIhkIsZ9fYBcqiQudq1g3a1X1XohoAtmaYqK+Yt4bAhzEUxT4o6KcS1oq0NGWgVcv9x5Bu1OSnrSj/tE+RszBlbmPxBTM4SmbsMQ6k4vNyVxfIQ+Riur3+k5dmfIdyexEzH0ynleKfNk5zkJM+vnDDsg5XXTNd6p42CpuY1mB6sd8gq7BP+S2gv5xQ6qeoYYdAszfdlbdURiyJoOvJv5O8cZsTgHcMKyG1dmARMFUQzmPdg3oPKwRzmq0J5NlwjhOmww/Zih+3FFpv9BlwLpnnCdD5huthge77B9nyL6TChSEGpDK5GtPLs+wwIg8T2GmBZ+G2VAlIrR9vUyN0QaP4kik4X3/7RcK+l7BQ0wchT/06+ezq/Y8BG09K0KkPUNr0y7qarHXR/qwMs6QoM8Zdyu+G2l5GEFqLXhBGsjOo1aRqr/iyejhDZZq3ki+3oeVq2kksa1apEiIZe28LC4kLg2rieEu2apal0HUYECdoIVCcim6WeEjjeh5yfdk57fGK1lknaiD9P25akK+CtRhePFXOjeKX8fNbtafHmQvbntTxlYhWuxQokAOuVnuOx+ZM3BsOy1TFpzK8E0EOF7mfgvELPZ8jtA+R8hhwq9KDQWxV620H/eW2askpAJUWdgHlj+1BU8i0vomuLT0nHGV+mroziT+r2BnEYnsMEfrxUoi6Wlm5Y+0n9BWsfL0dPPOotaz53gvyqjJzkxS7b7RY/9VM/hS984QvtnIjgC1/4At761reu3vPWt751CA8ATz755BA+iNX/9J/+E/7Fv/gX+OEf/uEH8wBJXlSaq5/5zGfw+OOP44knnsBb3vIWfOxjH8Pb3/52/Omf/ile8YrjieMXv/hFvPvd78ZHP/pR/PzP/zw+/elP453vfCe++tWv4vWvf/0L8ATf//JNPb9DiOUQPl4btdtksSo6DLmL+O4kaZSMGBa2LKMWAZLJVl8hD3+sZoTjq8BkNxNiMFFAKlQqqDDmcgHCxpz/XxRsbhVszhnlglFmI0LKoQOHnOOWoeExqJ9L15oGa3uWFIZoMA/K5mgUA2LANNFhM6Cj/GAxGOZ8KlxbVe17rtBDBW5+F3pxDswH6Py0lZupRprPy/05sN1is38MelYMf9yq4A2Dt1vQRsAHBTYH0HwNeiCcs+Lp/TmmswNu6RnO9BwXmPBdPsP3+DY2VHEoAqmmfcgFoB3arrakhElNW5bC12rV0V+mSJsMGVHIIK7djZo/dvir1WZK178DA7TqyNWmPXRwgksXAVU6/qrSQY+keAPDtTckmjZ1kHEQe44N++I2gKpGXm439tiHWXB+wXhkwyiT+aWNT5j9D759l41kIXr0TsdzjRoPsU/v4uYRKavpkDSN1gH0mauAWN221yQafFQgXKHFAeuFgKYKPiumzbJj6Nbe6ZkZsiEcNjAild1VBPf3KBe2gVBdL5fAf+l8f23HB2mn6fj+3PvlMBQ50KNiQczrLu8lF5uGIT2fonVI1g7/8tJYTvLcy8ktwEmWcsKwD16+VQ9oAyeAoUfNQ/uKOcBosn+JDCRVDtfdDB2TqR3TdSWEnKkV3DcwQUuc2/0wxvpy+N5XBmpViB5QMUMnAg4HiFZsb2+xubXD9tYW24uNKwAw6lRRKHyi+nhbASGBFvKFaYW4P1cK91vkWnrNvFfd77/nl0NDk9xpKTmWJTSt0sT4KAKfuPUK+24OPgg2MtSLSITA3PccaMVGkkoxsInAHALYt2koa6pJhoYP/9A0tBpb1Ij6NaMGq8fDHnPxuA6wTZM43d+3jcqIwBfpV9pUC9Eay6JdtimCHmtKeZm1JuVkGak2/N+Iqza36LmIvBtYNVdVTeNQfQblYVi1E6s6fqwE7W/MVVq6AaxSU2/tZeVR2fMyFIX2fOdz2UKMBq0HJJI0zul4brE5VYvbw6hrtepKvKEc0JR9QnvVKsoxf5RChVQFFQIKgR/dgGWyvQHOCmQiCBPmAsjG30O2uU/bkzkRjprmCwr03XPXJMItYPvQBeWus9VnLw5aOT6qNx2iGcNEOSy73bU824twjJFP8sDkhcCwjz/+OH75l38ZP/3TP403v/nN+NjHPoabN2/ive99LwDgPe95D1796lfjox/9KADgAx/4AH72Z38Wv/3bv42f+7mfw+///u/jK1/5Cj75yU8CMGL17/ydv4OvfvWr+Of//J+j1tr8sf7QD/0Qttvts3vIS+RFRa7+zu/8Dt73vve1Qn7iiSfwB3/wB/jUpz6FD33oQ0fhf/d3fxfveMc78MEPfhAA8JGPfARPPvkkPv7xj+OJJ554XvP+YpH/XbmB/7V+7z7vXnZ5S9Jh2R0HoOz+CcdNAGgRxu/UwGj5nPmgAiiBWKcttAM85rjHzaiC2vBegCjMLRQkxZzrbyv41oSpbgAmbC82mGZGOfhK53ltWLA/ogNOIZj9M9kgzNRGG3IAAKZuiybhnIjaYAIRN+PuoxTFNS8MyiNYBgbLMO0hO3A9GhTFIeQsoFlAdcbhqf8E1BlyfhM634JcfBe8eQS02YGmR0CbDbRsMO1/BLTdobz0paALBtF1sG5Ae1vZrlpRN+fQaYbWgot6DbNu8d36Erx8+g4udIfbPON7ux02dBu3dorre8VGCMzul6r4ju9VISDwVCAs4GLEEpGBZBV19wC1m+ikZim+OszOydrcwFtqY8+6b1bV8KsUcJiGVtqAnBd51aaA3IhXkGmlRjvOVTVrL35ibwqtCn2HXiXsirolkWLDhLkC19W0WF9aAJ4Vu+sF02SbeW3OCqjERg791SIKH6vpfG4HyKB+lDVitU0PKMwmqftY1Zg+5XOxsOHlHSZz4YvVzTIVSPn0dA4C3hVg9ndobz7ayN9pvca2kl9gfntLaJCqYzmvDJ/HWYun1gaIxx1a1cuomXVldn0oGC+PzMT6jETjvkWY0IxRn+VoiosUrVyBSD8hZsVydjTkJYArASibk+bq8ykncvUkSzlh2AcvPzq5P7c1tazhFCe24DIGAp2xaLJOdI3EKh1d79fGPA2bXg3XxNcUO3q28IE/BKLa9s8m6vdTUYgWqCpmEtBGwTcn7PbXUKRgd3uDSQpQbcybbjPApiEHwAhSGJYiMZJ1KkYoymTYSsj82JMAMjm5WARFGDNs3LKNUgHSCUqzj9+1mYhaH+dm/+K5Z3v2MPGn8LdKjOS0wDA7+2ZYgROilDTmAdTKS1yb1vRLAaVwEQAIzO2VgE3T1cveCFOjTCtCP9VqytKTdqzuc9VCERgFMzEm3bcm0zU1rQZ5wFEjCMvdf6fSc+sb3QOoamt1tDDRJiyavhVSyk3HvNzOd7+oJc5oIlhhJB+CdAuzskgzYb7xN8Daid12LijYuNYylh4ishbNQKLselzjM/Ywkc8272rKJIq22QHQ1YmbtgQaaJc5tGO1x+vAvZGqrkGh8Ps0babr6WoAfja8LKKgmaCTWS7RmQBbBhOhTnCtVO0K+fHOq51vMN0nD/G6KNBcqeUyybBevTyPym6JJXXxHT+u6DpbqDT/bO3XNYatztPbG3WT+9koN+YXn7n1i1heCAz7S7/0S/jWt76F3/iN38BTTz2FN73pTfjDP/zDtmnV17/+9cHFwM/8zM/g05/+NH7t134Nv/qrv4rXvva1+NznPtcWn//sz/4M/+yf/TMAwJve9KYhrX/1r/4V/ubf/Jv39Wx3khcNubrf7/Enf/In+PCHP9zOMTPe9ra34Utf+tLqPV/60pfw+OOPD+fe/va343Of+9yl6VxcXODi4qL9zpvcPJfyzLng//p/uw0pjMOjW1w8WvEXP/6XuPnYdyAv/RZ0911szvZgFrATCzHAXcOEGYrrmHALM66j4CZmnDkAmKG4TgW3tOJRTPguZjxCE27qjI37G4owNz3MM5jxCG3wF3fUXL0/yYDzGGB20DleW4LXCHPVfYmICLBAI84eNFwRK9B9BCrF7q28h/Bt6M0fwsXuGez0Om589zr4pmK6uQfN0kmWcGQeJJCik5lXyDp1tSL1Xu0h7i78pemrguYZOs+Q73wT9eZfYv7v/wn1mW9BDk83sEub6yi7x8CbR8CPvAq4+TT40VeCb5+jPPoYyqFgun0GeukWk2xABwbLBrcffRryKHDOM76Jih+5/g18Z76OadrjTG/jXAS3ifEXuxl7UrxECVVMS+CaMLB3jQ3f+d18q7KdnAjYk5FtJWCakW7M5s8UCG1VB4azIY5wOcFs5CuzYg5/Sg7UmYzUJScAzQ+rmukZOiYLjdUqiWjVfl1UzaRfY/NRalhQpFkGBWVpeQZwWwiFgDLbo16bjFt8yQ545rZid0Y4VODsJYxpyyjbwXvrSgvQ9IvuvlE2fpKGV3VJULfvdlsHZDq84x6uDiGHe5GuyL4ayXt+wHRjAl0vwIYg2y32E3B7p6jXzfx/JInXJr8LMHflY2cUf1xYOpThIo10n66GGefyx5tQ0VhmDeSi+99air8C+/3/G//tv/wcgJsArkNxE4QzAHvYJHSCyAWYH4HqMszBoqINRM5BdB2K237tNoANVM/Rben8sWagHAg3niZsnjlg9z9myP/6NOpfXmD+iz0A4Npv/78w/dCPruX8JCd5aORhw7AA8OZX/58xzztsf/h/wvZV/xO2P/l/wvxjfwVPv+aAv3jFtzC/9HvQ7bntRuk+vScAGzeXtt5DsQOhOlV1nRnPiOAxInxXBY9wwU0RbMj61oMqbjDjpghe4mFuEOOmCs6YcMv7KusmOXXtMbq2VSsMPWY3AXKQqG19uhcmpevwMIncWBmxMjYd49Ph/ras5nnt1J/6OOvG8dTjn0iSi3B3F5DGt7kwbvMZ9hcEJQH2wI1vn2H3zAasnZxT2KJ12WNwf6rF3c0Ugs62UEliC4HsrrLABBLzx0pCkFJRMEG0ArwBRCFcIZgAro62nS6scHVEGodfpqRQIEa8MkHE3BypMpjFCVNNC6Rw0tKfSTtrpN7GoAXVGTYmRvWF4KqMQoLqZC4TQ9QwxqyEiRhVi9epkcTFyVdSBvm91qwqZseI51SwgThpaRXMCCK0L7KSjjglNHZD0zQjFHsan0/F+YXpnmoiczuj1cIPlkah+arJAkltH7LmXUgHT0OD+b0qoTSijLq3i2DLgoSVIGTT+xfhwldv3JLynnVH2nE7p11bM+ZdCre+OyZDVd26T8112pEGRAD1pM0axCnN4tqqaN+oYpi1ik0H04YLob2qs19r2q4Yvlu9nx9Qbk/Y3HgJRAX7bcHtRxXzZO+i+fKlNr8kL6hGcofCDCeikqNcvEyXjalXz6JcOw7Foh40XwuOVXudty6qtYn4re17UO5PWs89jKQ4PN+zQD//c9CLmyDeAjrbRd4A9QLYPAIcngGmG8B8Eyg7QNySgadFmOsWhnaAXgBUAKmAzGhMuyqwr5DbMw7feBoX/9s5nv4vz+C//bcL/OdvA//te8BtJbzto/93/Oz/8r/gJM+NvP/978f73//+1Wt/9Ed/dHTuXe96F971rnethn/Na17zQDHQZfKiIVe//e1vo9ba2OuQV77ylfja1762es9TTz21Gj5Ugtfkox/9KP7BP/gH7fcjjzyC/99/+c/PIufr8pffc23GicGsoA1jI1s3DwCIJwCza2OaxMLa92Adym0/E9/niVC7rYtri985zHnEo/3acy93TSM+dylm3Hx0NY0uC1DT7yczr98IsK+YDhswMWhDI0+SVWqPOM0REr1ohMhY5vmmwZ39BaAzVM6h802ozABvDFryBswbYP8MsHsEOP8ecP0loMPBVnGlYro9YX5EsZm32NcDymFra/wEFKrYyw7EE2bdAChgmiAswKZiFoVOAM8GvOpkmzmJEqaDuiYrgQ8KnRhUxDZ/IoIQgzdim2FNZnrOhaFVQGzgyszmbYLAAUQayUpgUdeIRdMQDk1SaX02pb8dH/h2DO07AKBhNWqYsvnjQvKhr4C0eC0haZqTniq7awAQqiqmwpAZmAoB6n5WL9E+TZV9n23kfm97Dt6HKCyzwQOVYqvjPunQYq9uJaC5FEg5WMvV1dfvXp7t0w2Toec0XYXqX/jxuZ/JJIx9i1zcMYzqhV+LxbgeJqWG0BWy97wAJDZBYLNpU1HUr/+Hh5JcddeAz+7+kzw08rBhWAA4nO9Bu5cA9RzT7hHQPIM3hLpTTNOEuWhnYGDd9gHAwVS4cNvjOU9k5C1fSD73U7fr3G9GnLMwtyNM4NsqnayLT3akGGYlA5OXKatMhq4QETGApwxRC9QCpG8kLcpEBiVmgZp1UYQZ76dhQMh5c6JsVVnBc8FAYbZFx8n66CLuRmcOklBbGsZ3aeM6VcjHWPINr6gVowjMgsifgUC+0M3GomG0qAq/idmKBS1d7YC9uQwIggN9E6soKkrl6hY9gdmCqM7dZ7YysnwRiM3CCSCIEspgAdKvxWZZ3b9ux/8ExZTrEuFwLLYFdUsaLxNR9wbrLJem3CmNm18eu1nKk45ujTdan/W5CKWW1Jk2DFqt/drivLZmMHxSgSI27mqnCIjNgMdhb9RSjQo9itffrXAf0OqburaswvVXUkG1DaLIsXyag7X23fqBnFf/ztfi/aY0l8vvfDyjP3u4mSNqyNPGbfXvIFq94Q7Wc1FQkkpWYftoTAydYPOSzJK3PEeVhosODNqng/WUvxN5zZtyehEmXQzydKm0n71TDNcSKT90Z7lrTIs5oNRuW9ukxbVoiwFMfZ5+6y/sSl1RBItzy++rwqxg10HENjsuZQPMt0FuLUhQFF/E+Mr/8//xUJKrJwx7/3LSsF7Ihz/8YTz99NPt841vfOOBpKOxgC4KnCsurh1sNTdW9URWQdNJnivpb/3l3JOrHEIxHXaYrx3aAH+kYDsAn/V0XmyiKtD9bcj+NsATVCrk8AxkvgWZb0IvnoYebkHrBWo9h+y/Cz3chmoF5j103gPn5yAR39yMwMKY5gmb/c42R9PwN0WYtUAhuI2Cmcxx+zmAWoCLCbgognmy+jDzGAcwTow28+qJgYmS+Qy6FmuA7+RJn+CgrD33QhulgblmTD5ghsuk4Sdq+jK9bJE2K1rcA+TFdHUeMXa1paYJO/vNBzFilWCaP6rA/iCYZ71jHl+0Mry05AAIoN0EIUERmMP/+mJ+A1/k4pMH32MEMhHw3T1oUyCzNFMMKVdpVr94pW2W9iw+JznJvcrzhWEBuPbVATLfAl17KVAmKDGqVOgMdB/3z6MIo+/qks434iR+YAyjTlktAd6oYpVYiJFkza6tlqQthpDB1YxxBvVg2m6WR03x9ofoRyPhpWOQ4CRgLrBYGTQRxP3Q50yt4QSBLp6demAld99jSiLimEwgzS9r3JOszLtSGhxNRdrqbSmuUjxOdILJisXLd5gfeSSR3SAtw2WO+XLF4r6eePZ6Gr+6IjMNPFs7Im4kdjrrpGzn5tQZQoX5mm1W6noUYyrpse1Y0HA/cHTFH6Pj007cIj2VlyYdxz5AXV0nVSPtRfOy+/KCBJY3anvv2qsB7edXpk75FaP8nTOy+B0E42DBQ2N+Iky/X1Mec5ypNhQYKjo/16KU84MceRKJCjiuxB6MCHw2QWcBVzZN8SsYqryuQ5FtRHnoWFcLDnf1vacexxBmLb+qqQiW/WhkSNfvj7y1tFbuj5/5R2z0dUn5PRApDDAgB9tD5NYztthXCNgUr87D/Dxm6PmTE4a9f3nRaK6+/OUvRykF3/zmN4fz3/zmN/GqV71q9Z5XvepV9xQeAHa7HXa7XfstIvjOX/7FpeHvVyganZsx0wwDPwn06bDCfpIHI8sRMwsBKECpmPkC02GLyhV8ztANgY4WvB62uiJgdw30vb8Eb6/Z6ux8C9AKqECkgtQcFJGKkbHzAUSlKwuqABcVfAbwhQJbACKo5QC6fQO0+S4KCw4CVC04YIcCYI+CGWaqVlVN03MCqteXEEATQ6aKcq5GnjqgNMUHA75wQtVIVTLfo1WbpgWzme2zz8dY0bRXVU2TlcL8iSmMvmyMl6GkmkQeAlyJduAcrY1BzRIJ6VpFkK4W42AmpiPGU4TVkmIiwwCqrk0rgrNHyl1orb44ZTmpNC8VzuIRAQdvI4B7RXs4y+H7XVT6e4BqfuzkUMHb4sQ3gXh3ZRwvVtHkGve+7j812YdKHjYMG0JlA56uQW4/jRKD1AYomIzk4ecbGfkg2XfUSeeAbr/aL/Xv0EpL53N8nQ0Y445RO98T1Nw4WKVzPUzsNdBHqh63onv4zB1KPhPRGdTJLIpinhk8VQgpNre3qGeCpjKcnz9+kpeB89MNP6Xn0vjrbFwjwzx9MfvvpBGrLW5DUbVp49HwdIkZywQX9TJbxTRk2qccqqueRhke0Ez5+ylqJCRRLjcv79DGbWUarnzU/zXnBu1OM6aJOmNzxeAEVRjaRH4HH6npe3isVN+5/CN09mUZJRnx5M8QZwKSV80wl7o9x3lL2DSdV7jyuEfeWrQqoOmu3Jz9mBbXm5amju9R1qBsuUk7ObXn0pUwA3lnCHGshADv1Fk8L8ghXoo5R0qwsfDUCdu4Z+VdODJX9jS0CuiiQsqUIhgP8zsXJ7rWLrUsLPmtrBW8TpqOeb5Kxyu/WdYWU7xRRmlBqxG+UYESsx1q98Vrv+iWFxnWXlcPWtx1BMHGtVgTYAL2s+Wq7u+g/foilROGvX950fDK2+0WP/VTP4UvfOEL7ZyI4Atf+ALe+ta3rt7z1re+dQgPAE8++eSl4Z9PaV1EFVCBafaQ2OY7OqVR+CQPVi5/+ymQyWED5gmVZrATh01eAF8ez4c0gDZtTQNVatsASqVC66GZYOl8DpUKUAGmLQCBzAeoCJTJ7mXbTdRM+wmbw8bOU2w0wDgIYS8bCIA9baFUcEGEmQgXW4PFhy1wsbMNipQA2bApqTCZiZrXDU3ct9HlME2mPmGAh3XtVrseY3WfAMXKLJGZeXEAbmpTgSbLvaGW2qrL8o3vWLVtflcXI9LlLcz8tcaEpLofqU3DY+4PVh6+NjpgymJaNLIX24BOCeJaq3l+dpLnV6KfDM1troBen0CFIVXaGKf18ILl8SQneb7kYcOwAIxAOtwENo8C22sAG6G0OUwQtg74aEOVBynL2ZzS1TO87DIAaaLfCKEIF/EhTeqpn3NitZMlA6vTzo3kqxN2q86yqUe9jCPdL37/VTCUSaGHCazF/KEeFmx3cM3uB1GlL/A2xV7Nz5b0PCPAgkijxpIkEtbZsqYZ2e71E+xMTuZN0nPpUIbpogIG5Gw6m9w6rkgvL9FMcI6JBeErQGsjjPBnCwybhy2Q3rLmtd9lcdJ4PYDncUscEeYyTkCbP9aIJkomirwfrzGTAKk2cjio5PyBjuTxIKmpj5tWUcOklCoilB8knrURmSm6K5g8XR60b98QKTaAjUdMUfmb1n9kArFlQDGQqZkdaROi1K6ioaXJg8Y5SS4ANGWFLlkcCBFAVcCbYlrhB9f+WymWoasRPXre/D2U2TL5Rd+WNwZrRZWKKA4G/6qphekiH7p8XkIv64g8N88Ut52g8WYvb83l/aBEYf1SBehagTxTcf26qatuCE1Jbto+nAoCJ7l/edForgLA448/jl/+5V/GT//0T+PNb34zPvaxj+HmzZtt59X3vOc9ePWrX42PfvSjAIAPfOAD+Nmf/Vn89m//Nn7u534Ov//7v4+vfOUr+OQnP/lCPgaA1HkRQWf1XT85lAL9pS0wD1U/wPT/8yDZJ1YWEW4e3FWAyoL5MAO6G1co8YA7+BdSqjv41grmCVAxs3+Ibfgk4g7kzbcqamx8ww7UTVNA2UhQkHRykmwbTDOBnwACCgkEEyomVCrYO/EoZNytLbirEao+ikshcCFT3Sxi3yTNpxZPjMq1ASbScW4UECLOEfkKN+ybfEW2ATbqvC3Ux1418MZkm24Byd8q9flDBi3sE7lwu8SODyO8T0sGANgBjKVVkHsH01pVBQp75kJ98yGTYW4oNgMgJtBeMBd/bQuumBmc5EGLwufK1epDGeCDojJMMwoEUQGXFxUMuWsRvnKueEf5QV71f1jlYcKwAGx85S3q+V9CywYoDDooaDbtRdLyrHccvic5emd0ce6qF3LBOALHuDAYp4ENsD+xMU3XslswPC1MzscyP5edv1Oul2nZmSoFU1EcWIBDwTzNZv2zSrKEz9UFcblWpmiP3RJTdEKJlAHfG2JgeEih1A3wI13DKtp37c2MT5A4hOayKTJGXr+U0h7LZb20DH8m1t+JPm3OOIGAqePdQY45SUvhckBSmEz1OrmawKMduf/IMJe/NM/pmZLGade01aP7LJXuiZX8bFTlsIFSjtszoinZy0g6I836fQ3bEvrGXOEdwgn1VqZI+FsXz343zT7h8MXr1dpKU5ZUXBFniqBlCr3+hzRW5nip3sZNToMzbEAe+cqVzroIwEGhTLY3BF9udZWnL0dK9Ckfa13R8FovGt+qh7u1+Jflv3id26lGMvcyHDWuj5Mau2y9NM0g7LG857kUVaAQ9NaMcjZhPgjOdsDFd23ex7D57cMoJwx7//KimtX80i/9Er71rW/hN37jN/DUU0/hTW96E/7wD/+wOfz/+te/bhtluPzMz/wMPv3pT+PXfu3X8Ku/+qt47Wtfi8997nN4/etf/0I9QpPWXmNwKgQ+OCsgDMg4YJ/kuZc2Rl/SARBV2z2p+gYArNhig7oByt4D5Y5/abvyYhZfWSRiYHfdwQP7Sj9BiQExVwBUNnB7X9NqxQQqRpZSVcjkmtgcgBKom4MrPdjOrwrgoGeY9SZmAS5KMf9dXHBOFdcAnBdggkIKIXhvZQAF0GL1A3ZfYIXMJYCv+tLE5igeYiScuxEwTKXDAM32aM1PbJgbxYpu2+qAqIFcJjUfqLBkM27IcQeGs2NCySiEDYRWdW2/pvkxkq1Ng9bjYQLmCvDW4tzvbbfQB486XjjJAIxAkCoobJpgbVJU4SPcQ1gALxYhNNNSIZgdFQBWc4tBRJCHVHP1ZFJ1kqU8TBg2RGQ2l1YqwO1z6MTgmQGImUW3fvj5kMULNzAIid2Jc1lrdGBkkAaZFYKrOW5MSV3GSAxsQdzbr497KwS5Z+iU8vlMm5HpQ2ZycUw3zlTsZ5tP6EYgRbAJPw0rxFQQmKTpO9jCMIGO8DRQnG7S3U2dbfFMgdj8p5lkO4mXVeTarkUpO0HSpSoiYsOcqV4i/YkF7K4IolzWxTU+nXXSVAdEgJK5FAjyp2vw+u9EIrGXgGhYLlmthC5rK7qj2slPikSFruTWiaimAbgWsLXLIJypk6RRt73I7Pda81zkmRbXM3FGi/wHDdhKzQnWZdzBUy7Pk2OF7Ft1qYGKfim9UtH+1PFGNkW3gE1LFrF5mL9JrdhSIWm6qdV198PbME2YReX5H1L43L5bJhYPsXyuCFMIyoypAodlwITrWx373EHbI1htLOsvup8roQX15jRo7kuvP7RFJO3dZq4rHaI7Il57PPY9VFfUJ7T7TRvaAbUIHrjhaBobFABtGRcXgr3P/2Oadbh18wFn5IWRE4a9f3lRkasA8P73vx/vf//7V6/90R/90dG5d73rXXjXu971gHN1H5IHEAbKniE3ZqAoiBmgeuyP5STPqdy5dBlUyIEW+46lNJoat8Hn4epF2qq6CGhz3aYm9QK0exRaz414nXYAF0g9gMEAb0CbHTDfgtRq+4GWYgP/eQWuM6oKDpu9aZLuzqFgiGx8pX/GRBUXdAbgHLexwyO0xwbwDaycdJxgm1k5mJcNg7YKqgAmBR0cxDODdhN0vzdT5DIDZAsZJNQ2teJidSeBKAhG1IqRrA2XsQNXbXjGfcAa0VmYINW1UakrjRaggYM4RxrzlbTxwEILYGhRAf7RmxpDzde6x7mfAb6mmIpNnqQKSil3QFIvftEwCasAb0xzqroS82FAcSd5XsUnnFoAPZifYS3WvmW2XdnMr/GLDobclSgfz6fuSU5N9qGUhwbDuhAU0+469Py75ne9AJiCnpHn0cXVkjnK/b6uDKpZAtQlNmFVZecStgedkKCFGtna6GPE4RjOjoxpIOr5uYpLUyROciUhZqAURi0VXCdMdYJWhbIi3I+mWFsEjTRlJ6NacapvXpU2gNLwQWpPwCDMbatxsX7QiRBldX+sAZAsrpZoBkiI704UdhI0NEe9jNQ8q1cFJlIAckwsRSIU532xHeavtbS4AJAtoVMLZzVhfl29MDSI3FyHQXp3Zq+7UDiunyD5juo4hV3mv+9yrz1oYsLi1tWmvmjWBo/W8VFrncvXql3z+9Ir0WJKaQgpSmJZFOYibJlY49qW+cs/grXO8y+/yZvb8aAb4TNRF/cuE6N8vjGV/jOFbRU6ptX8qK5oUS9dT1ylwaq3Z9Qtg8WVLFKlHRHQLT/j82YPzkPc0a7uoLu12m8hF1PShgbsfUDa98LLrN2T2drkMmGIvD1C1BUtyl2P59qK7kf4QYgCmAjYEuqtA7Y7BlFtnhgEwPaRRx5M2i+wnDDs/cvDqcv8IhAKu+LC5pcSwLw7gOctdNoDOnXTomfTuE+yKr3DWHn7U/+vVUGFoTID7jO05FGHqTvbvDqhF5+QkaPkm1nx9ga4XAdvrqFsH0HZPgIu18C7x8DTGfjsZeDpDLS9Dpo2QJlAOyNgdeObKxXzl0rKkNkcoIpuoKo46AZ7nTChYgZhwoyDEoSAQ7Hhdi42mM0M80QQrwc5cWOzCddadXcPyf8qmdonQOZKgAuauwH28HbM8fiYgp90/1bsbgIAdHLTB3ZPdvC/Sp4kyBV4exYA/13Ixu/4FAI2rNj47w3Mx8+WbPOqiY1YBYANA1Mh87Wq9ozTlg3oPYT+Vk36c0VfqlvfYGDLvisuwHIU/CTPh3gfKWq+VqkAPAtwfQO5qCg7I1SJCJgfTs3Vk5zkYRciAk9nUJ5skvvIIyjK2G8vMPmGVs+f+opPdWMjq9XJtq6MBQtSdcCEK/Sc9jDdU2YOEz5QgwjsTEhg+jAtb1lKVioj2Tre3+NcoV0pfFn2OYMIQWsF6gZ1ewtFJlv8zc5UF1+ZBjNzg8iHH7mSQf4bW/GG9lwuytBoDWKv3wl3D5PibvVjG2oNrOTITXXRbmWUCgNWD70u7LtbSjViKtIPcnURvbmG6uVu9ZfKG4kMajF0ohWIiXanUfuu7r3gW4vwx20toGkCo5VDzmnLb4DXiHe4L7YXSDqygT/X3pPEQ/b4EzG3LCntSgHtfMShNHYB1IwzG8HYtEKPMpx+L+s+l5O3LYQbr5y19HpHiUWbGzd/S4kxeaOi1vTaasaQj6hZvx6aDp6BXh1eHyskaBCQ7dLGPqwWfSEMm+cuHn/MfmKpmyJQinvZxtprtyJHa0tHRZUVQVZcTWAs39Yae+H7hf6e9BtT3nO8K8RqZ3MfgEQh70MZgLDdFghsXshqz37aIuckS3k4VUZeBFJVMftmOiIKmRW4YEidQXsBpoqaVpabRUgaO9f6kxePAuUaaB1DrLmsuZtzq65uMJZZB1o4yocIfJXNzN4hewCKKjNuby+AZ3bgptHoJigcg2naPTJpIr6YxDCK9gKTCmx2QNlhuv5XUMtk7bRMoOkayvaloO118NlLQLsbwLVHgc0GONtBNwUyEWRSCCvmzQEKQXW/CuaTVXGQCVUUeyFcCOERmjHDQNdtAjYCHESxB2GqgpmAwoxqWN98wxBBJzIGc2K7qTJoQ0A1H0a1KIjVCFVhsC8/agFYzZerKHW/Ua45UWLzHScrpwLzKVVdS1XVtVX75hLMNjlpwCYB06TXA4L7ZoVtPlGF3JsB9RVgDpBubgrcAwImUuwY2BTCtjgmLMD+XLC7VlFgCGDVJVDEnb6XAGnVP1drJ5f7g3qgwj5hCwbbtRXoYoZUBd+u0E1B3RoBT9GP0uI7nj1vcaqUfmdZO7eUu7zvxdghtIPcaJanNc8aG4hXAQ5qk4RyqKDrBfV7e3tPKwDe42EU5cw03IfQikbTSU7yfST82E9CL/7S3AGJQJ+5hXp+AT5n1LkCe2BcjTZp1vh328BX++SILK5HkExGxvcqe7h+LrTgYEQl0XhvNuPXRn51bdN1i7MxL9m0fOAGmvm82kZUcQ6dj1DPFxwDVOkRkJcVade3tAHyArp/DLf5JnabLXifyA3q8YtrpAZ/rCy+J1ic7z5TXYfVNhZtx2rnVVFRATJN1bij319TXWm7PtSfKpTdBYATU0oBtXMZRz9rGrEGW800P/OzecsoCs1bQsPrUQbq8RHbM8bFuNZza5uxgmxTqL6tlZrVlt/dfO/DcJs68SXQRM0Ze2Y+97vH1O5iAcM30rU433Zi9zPOzQE6jiPtWHvrCPcGR2H8esnFjLGaAHsmlU60DdZ97bhbmy01YMnnYg1PDg865j2bkA8PgvYqpsoUz2tO0F0seETHvj/9YaI9Ds/Z79PG6FpaFP1G1F90cFFY/k4Ru+9loSN8Ha4UcCHQW3vM18+gB6uAKLd4HkpMNzn2IsDN93NnkYpJ0daeojha17O4NhZ6LgMMG5W1/ivD6HaY2t6ahjTB+7ccDj2S+F7eOzTESO8OGF2PDo6vDW3B+wXfnExJIZhRteJsA5DY/Gsi4KWH712e7otYThj2/uVErr5AstkxLl69gSpQd4rzl11AzwTMDMF1aBXIXKC6d2Kn+3hqIEvz7qPevbQXIVZbvx+adup1A36kLduPN5TKz3JM9lx+7vi+JYnarRJGuKKJFKjVX4t5C8wTaP8STHINhQtwRphfJuBtwXQ+GSF38AE88sXdNITEd2tvg7KHVKDtPsTpWkMOi4GExvIb7MLyfboIf0SMeRyZaRY/LwE2YOCCzbycbzyGcu1lKK9+I3Su0IvvoN7+S2C6hrJ7BCjXQYWBaYPy0leBrj0C3LgB3TDqY2c4vGTCfENwcX2P80fPsX/kNmQ7A0XAGyMhr0177IpiS4RCBYQNNiAUnkBk7jLmrYFUVeBQFJMAsoWbhzGkKDA5cVnITZK9HCYBbdjcA0wMuSDoRlH3BJkVtK+QicGzgGeFVEUptvBRZ4W4i4B5tvTnCpTZikhVMVUzSStixTiL5U8ZmMWt1p2Qlxq70PYayQvbVRWifQPQtoDPRuJui2mrFm8nGwZubAm7DXBjZ1ophRWHWxUyKcqOUTbuZ42oayqkpkEr547OUwK/iOZF6ae1Leo3J+QW/ZU1sGY+RZTiSs050o7ks3Z4NO0tgzYM3hXwIxvw9Q10V1CIsNsDujczvnlr99TwxRBRUOtRO1jOeUd64xIIRCygjKUxnonXzM9lX3VXEdaXimFniyJjncuieY66/oFAD596MTlKXZL1GeTAXs2NigDTgTDNwFaBDQi0mcA/dA2shM2jO9Muf8nLn31Gvw/lsl1+71roebSoPslJ7kNe+pP/F6gIaPco+BU/DvqhH0LZbrHVGWf7G8Btwl5vArsZSraQaoSZz/oHUjQkQJr3/90Oel2aC4B42RaswlEa+Vo6l1TnKDrcwYY6MweBxcfJuKpZwIxYd8hsS9v8FarDtwgvnnpBVd/8ExEmjS0eV9UpcTf2DCqKqgUExv6wRa1b6OFRFN5BbwgOL51BZ4RyKOBKCe8RhBXgToIKayODhJ04LYAUu26KyYLKYiRqsftnNswmXKHF5i61GNmqVCFFIKUCpVq7IHE1MN/9kNRcpMW8xzdDZW87TYMUfQ60hDCM7n81TPmZBBxqgGS058gLUfed2vBNcgdFBAH7Yjp5mzanVoQKbmitQuAavVF35H6IEeRb0tcjbiihamx0amfYyfaeT29XDVtpx0saGqBB8Pbz4rkEuj9OYPSvSmjr+EnLeKX5Ug8XOeqEKg2vrErkhVwTwshNTuAq3AAj5koYX+sEI7u5beCrSJjQ51INJHJzbWHpAiRp/kPa5jmmLRGFwOggnKwtVgVYbOFCABJrozr7M4j6OWkm90F4q3AH+gKgKupcfe8EL6iJwLsCemQDfskOIMamCsq+YK8MnRxjk2OyAMqpDqwYqE8j27n171alOXyU/bLul/e1OSmg4u1Ko831fOUFglFD2e/3HX3VF4WiTRyTpbn/9TpMe0sk6uPYTcCCXE/gvLeXqBvAJmsCqAhw8wC9OQO3BDQTChe89DHFoVa85Jq9V6/8P/4f8DDKCcPev5zI1RdIhBS3X7KHsIGOi9055u0ewmZ+jjoBUwW0QMSHVFIwS+LhKPWKScvtyJfTGip9jmbfdyHatovtYJNaL300fF/5O8x8OlfZ4yCirnXaiFb4d07nGPSqsoWRYvYqwoBMoHkHrhuUOkEBHLYzSiXMM4GUIMIoxQfb1DkrORERGypRDLQxxKD7ADqqp0xppEFhULtdDB5xrw/gd0Xe5PjEQHFj+ARuXl+gVcCv+KugW9+DHi4A+SGU8teAudomFsygs0eg164Dux2w20LPtsBuglxn1DPB4dqMuquok0+yWKFcUfhguIIFBMVEBwCEgooDsZGaTKhiO2hWUsxMKABkY6RnnQmFzD8YGMY8KozRUYAPpinBQqn8C0DViFw2AE+HtIGCFw2L+WSd9wpmgqpAJG1qC8Uc6x5iWqPOUUO8PTLZJlWhqEdk3ryCPIU267vWrqNK4lzxPG3dhUGcmxjYTUApRq5ut4yzHVD3pq3KBZC9QkXAk7lCsDZpmRxIyyyKtqN7vKIjkQpzwRBNTxVMXT1Wl+E1G1DREN9S+5UC68b5VB+2YZl/bxg0EfisgLYFtCumcHAQUCGUg6VTBNAJKCDUjU9k+QibxrwAy21EEJpBhHbTkkRde44WjoZTIOSEu5+qY0nXFClUL521xaZ2n8TzZNA6ZASNQ8gPnDKTnyksbVesVPt1BUjYj13DegZQYf6btgzUAnrpDnTDIqDdZvXpT3KSk3x/y/QjfxWKCXR2DXLjDPLIDocNAAKmiwnT2YR62Nj4VmAzjmrEW2hoLjocDKQqsA5Vj9iDRRztWNf7vZbWMnyG1Eutmz4gjxi0XxtxbT4+foilQpBh2ZjN2nGjJaKfb9Gm+D1NMRVTiDKkEhQMmbfAYQdS86ckVHFx/TYAoJQKns2gn8VGZy0OStg3cSrdv6qy66oWRWUBXLPTtFv9OguEZsgUGM80VyVIU8d9Bsxmqx8/bwBKAApzE/PXSkfqdL2s2cvNhucYrTpy5lQnTosmMrGTaXnEDxJSwfbcSm6aTF4nVunZZ6aAwc0DPxC6rEGPG/WaUf3S42beMIm6NiX1hhJxi4eOHPXXQFNsA4JKjbUVH5q2YEoqolkex7p0eyU1zd68bTauLMq0vS7kYPb4RcwalppxXuI52yMsX/H8WrGTm4pmRs7xp6L76RI42eoYrHixVQFKXjSmDmgC0BOBCoDZMKqKuplj4B2CVgG0uLZjKgPfvKHtD1AU0xRtSV05pYDOGHzm7lQE4AsFNsCkgIq1Yt3QOHXOsDC0V6Nf8jwo+uO0exKOa+1orRtddNEYwkbftGhzR31biivH2zKJ1Kf1a/FO2Hw61XekPWR0Jf6cTiNYF+mEcpGiE+pVrU0cBLqv0MMMOQh4U7A9K6hV8TJR3LgGiCh+6EdehpOcJMuJXH2hpChuP3oLJIzD7gLzbo86zWayTLDd2JWhMhnYQPX+wcDXoLjoUfbxWJMmJlqIEQgu7YSzFuyzF82d3wJUjukstVbHa2N8cf/xs+UwmmxS7Jm5nW/Kmr7S1v1TFcf5BdDJSNZaQIcdSCeQFDAR6jSjbgr4zEzTqZKNy0KgSqCDD2IxMITZOVHPV3Zc1DJEzceU+mqcKsbCars8LswoclEoEGZkdyjScSCKFUA1IERc4kFA28mci253oFtPA9MGJLOBGRBQBfTSlxkYv7E1cLNjyBljf00wbwTzZsZ+c4Bs9wALhPbgchuFZlybbja/ozO2qEoACgRbzHRApYIDK86qbVS0n4BJgHlWTIVAG4BnxSQEndg0JcwxqRXigW0FUgngAq4CFPZxtLbJhUJQuNgOx7BFDCWyOtx4ehsrwFpNA5ULQBdGjk5eqBa9TcCq2OBbNUCxk6piOgzVHda34tdm5T7gpomBzURg2DOrKjZMKGzEamGvogl+3YBeLEYwyAguR1pG0C46kAyA1l/ddi43XWs/aYmTuZvj+V9mOnqHQyMmPygBR4QvNQeqAG3MyS1PDGwINBXQWbHzk21AFy47NgfTuinur7cygAsFFdMybmCeutN9eDPRZfeI1Ael13f5ng3nEhDsu82OzzbCUoxlH9cS4G+XYwKTMzTcawkvjReWuBTwNZV8sY0tfrOOQDsfK9C0NCjmxeq6PDOhVICVQGzaKrpjgCZr0Oc2pj2snt9Pq/4nedhl96pX4vy2QK9toS+5Bp0IutXejwthko2Nc0SQg7jPzmoEa8z+O+OD3rFEKtTPAYmx0B4eWPSbK7+HznM9bFuwz6pbSw1WLDFsz2zD4GnRf32UGO+zewlddYpTmI71G3nSrxiRg/AvSlAtUJ2gYh7eVSeQFuuDN4JZbAF7c9iAZ3ZrevfDCuorvQwnomwkEJKm2SosjTxt5CsUUqotchd3B0ACjXNez0HEBttDfi+csG1sHnVfjF07Nc9TBJ0AT1qeS7vmwDvo9zWSNQ2dNg5ri2tZXdFKOcp6uB6UpxXcDMXkWqri5wz7VRQCWqkmIjXmB5yTjjnAQJwOj3bc7NPr0sfqIFLHePLQ24jU3NyPm36/WXPL7nPOI9WQRr6p+99NiCfjifRuhuuENbyT3QWT39ffO4RCcsM0zXcvkYGd6vdwd0/QfKVKeqhCPdKmJQHziVp9MlbYNFoBoCoINtfIrg8Atb1VquO/SW3igMC6hlMx2Qa82BmWRWHTjj4oJiZotWeve/jChj8f9SnlgKOjwWr6jX4O8KUcGs8NWDTHSct5iQ7dZO7Cc5vs12L+PTbOqJp2nK5F/XZt5JTAqmLBIuGlSm5bFUgdfp50CTrBKjCzw6pWdz5J21w3RavtGePm/5ihAK5ffzgVBE4Y9v7lRK6+QEIMnN+4BZ4LZDNjnmZo2UOmamZTDZhNUD3AQFKYEcnClCgkzG0zYdlHySWpuRRNQPXZEK3LFfnLJbrpu00sAGwGpB3yHOfDzokAVn49b0aqxmvP7bdWAolpV6FOoLoBC5tJ9lRRdzPksIFMCiUx4uBAoBlmOrKhvgBfkQgsz7sk4O2gVgFg43mr2ldZ04BpoCINSkTr5bwEZsvLEedgQuTgITShfSAnUWC7AURMu3NLwKZA6wzUA6AMXLtmwEHVeOmzDXRboMS4eEww7yrmjX0O125BNhfA9jY22wsIEcp0ALMa2PV2LVRgMEUgVDBzwUGBmQ+ohTArsFdgMyukAlrNZYCSGskp5ErfZObJ1wvICVVcVOiGQSTg68V8rx4YMh/AalqdEzOqAkSCOsPqyZuX+NyHCXBXSNhdA2Q2zREFoVTFVLxI1draHCSrrz6bHzpui+LqrgCqAlUNmJVi7aUCOJt6e9iwkZWbknqJAuw21DflgpqpTlSrqL0iM3zS5GCXw9Q7mX83TOkweO317LOddg8RI7sqoXw94osMB1jOsx4FqNDQhlHIzrF/kwPSja/wM9mqfyHorhhgJgLPbs44OV5C10I2kOt40kG2cv/N6vUcE7f02g1d7uL9XJNsodZmBxZ1m0C08olzGu8pDUWck0QrJhrujYvUrtmFrC27nlcdOA7C8HhoG1bocEs3IcyfIFgFnUxm84csCrAQQH3TOS3TQwnAZG2if0/ybO49yUkevPAPX4fcUuiuQLaEw04w7wR1Z+QDgwD1Heph1hTNSkO8o1AFSLz/UqyzQ0gz7/hOHe/dQMjVcSx1ei0RXQmTQiiOxsSlBuvdZSgUJXr8NoZKit8OJGPeId1eAEasMkTYiFUtUGGQTCCwEZ7bPWbbhcV0LafZyO7KKLMxm5q0fcnNmYmAOUhSmGsHLU6xkGunsmmxwglUsELK3AcF7mS6uQKIOowyV7TROtwu+BOT9nA2/xGUVC+5dEgFhSVBFHcl4OSruRLQdo6caM1pDqWtjEph2i7IFiQCBkFQiJ1KDX445iTVyxTtbvODym4GLRilE7uU2nfz9YnjltUghhO1ATUa+RnEaguDhkdCSYMccwa33Qi5o9yNGCSmMkYmWmxCAEsnUpnQtC6H+BLeaaeaZVBPY8mPAeEndpmxqJlwoRB2avmu3r2AYj5NCKe5sbk0hTVa6WXV517obgNq6qRYARXDo2rzkpY4E2hreFdreuBt6aQlE3DDFVkm04blGdCNQmdtyr+huAFO+HLRD7bnVizKoJ8b8KAef69Jq4fB7HMRRtP5cFmR71uGX0/KL/Z2H62fFs86iMbXcVsb0hZ/CSSdjzCiQBXorMAsrRy5MKbrtvnyBgo5MG68lAFSbF/+V656ihetnDDs/cuJXH2BZIZAphlaZlv9nfao0wHKcwMivUOIDjj8DaXeRYFwr54BWSc5RpN8k6sb/NXEaoIdMdgvzH9zuGN/qvcvoxl/5HMEl37V0+1uAXoYH9Gj6cdqvcKB6MbQv7JteKRmAN4fS3HYHkDVCNciBczubalamRATRNWSEJhGq49wJFYmZrLi3p+aJZjCfC+hgQoEYe6ozdweoI+YA8NKw1eYoFC+vkBH2uLg1Cz6xMW0Txjg6sG2oMrQyqAbNyDkpCWRbWqxmSBbxsX1ivlaxWE7o24qDttb4M0t0GYPKTOUq7dlwZYvsCHzU0QEbGkPBWN28luUMINwcyqgan6KJgbOt8BuLyhkWr9UYKvCO4ArOVnKRjaeVeiFAhMZAR47VFUD2OWsQM7RtEDoDJADgYuizgINqzbxuiWyzbBg5ubKink2jXIUcv+szbsWuAKzEDZevAL3wZrelwaSBzTSF80BK5/ivFQhNBP6wr3tW8WRN49uIm4bNGg04yHNDsYXLiU6eu4ZCEkapt2dwhh2eEWBQSu1TSopXXM0rmoaprwxPwgUaiYE8011tgFNZGC4kPlLgLo/LH/Hq4Jm7wHt1YKADDBLfyydYeQqoZGsTEDepbT1ABT5pp71hmL7xKApp6dqGUDuyoQB6N3+gGcu6T+XROfRRIjG/nepxRqTm5wIebjWby4mP3EfNI0sUTRi70eYyIUZoWlWqJVtIV/csAoRELjtOPZwiTykGrknOUnIYTehOllXt4r5mqAWwaFU1I2riAFO3jhRp+JYjb1fjVGp9k5y2ZkNOE771xoTkNWrBjvYFcmX02DVaJo8RNF6PCPZamG6a4HLElzDsD5eLxYpu1Zef34RI1LzcKwKiBSITNb5KDumNSskIVsk13KAnqG5uyElMBcIsy18Df3W7F5P7YGCeBVUu5dMo1VDk5XMRQCgw7f6JF0DBJP0wSYGmSB1G4lq5wzvupaq+0xlJ0fjO8zkw8+qDW4BuDt0CDK1V5f6GHVs5RF1ZZq5jBmCjeWsxdSO3adqbPIVWpfSjuC/LZ6uFOlYx36gD8qZlOrtbu3VWEpgPmp3JEimozsBcgWLFj619zxVWLx542+Ng9SO/S+FmilhcA2gcE1A0WbRNcS7wE1D2k6ERrhGFlMKR73Umn5LWARSv251Z6ocAysYc7IgWT2vtmMsuXWfJz6LlzuALUclgEpYmI41RuzzhMkVA8JP7IZBk8+lCO57zDCsTrD5pWN4IepzO3++5vku2lYqtAbL47f2altrT8vzQzfriVLW8r1Mon5a0/b3Id2X01pt20cEglfiWnfs545vWcmopEJobdjDhluAiHZi4AygWVB2E4gI880ZMcfZ4NYlBfDilhOGvX85kasvkBQC5u2FOdcGoW4uzJyZpXcayoglNBsuQ/syXnpdAWf23Rd81vxvXvbG3L1rgE5a0rDyvuwmny2xetwnWpoBoEbydMzDqOEax2wf7X5YyUcmqq7S1z4lo5B2rJPgsN2DiVFrRZkLKjE2ezYw4aSbTSgIVBW+oG/Ksg33qa2ANnzZgXnjfBPmNC0vHVd3Fa4Nmx8/UIaRfhRznMyz53JVuKleKr+JoOIDqKhp9JIzUnWCqkC3bHmZ2NUsJ9TrhLoTzNcq5t2Muq04XDsHXbsFmiqUZhDNEKogqmABNjSDHfAKCMULpDZgasCVxDYPqEQ4sIGU2xtgmr0sBQCr+UjdMTaVfCIHYLsBofoMZAIdKsRdBzAUtJvMzYOa6aLsYeY9CjNBJ0UpQJ3FCDtS6IRWSaKMaRIcZvVyN3N9qd2FB83aqluV3CVAn2SFX31FPx/CHIDIBvMociL7TIXAniazuRlgBlRsU66BaAvEGW3SfVApr/UV6fVqCIsWBCwGf1nNjxahmT0drbADGNwSsP/2SNhX71scbXZEoB2DttzAqTIMpOYWHHlx4jS7KRBrTi1P6mqfbRE7gCAC5GvHc1F2gWjzpCcwYwKyil6/QAKaV/SLR5hxdUazuKeB1/E+ivTjnIxpD2ZdK78zjzFsdBFjS0pwmB/7mNUjJvNvBtdcE0An14adtqvlcJKTnOT7W7YvUzx9E7ZBy5liPhPMk21YBNh4GoRcMwiW4pqNFkdo6RPYXfKEBI7B2F/mPnRQe4uBNsJrOr+W+zjfBkUEazMucIY2oRNTR6tNfRE/X9MWEdp4mTVcwzJk7OA1xdkzscSy3SprxNviigHxocqtnIyslAAGmM/2VidqbpFMe3VC7Fkg1Det6urGPt6xlZPEcdsEK5OrtdWDhiogAwpXHsl+ZBCzHNNcjQ3PgqI0ZFibFqr9lnbN4pkb0QqEIX5sUBXn1SzASZtrgFZ6uc0g6snBDcTi0QJBBRG1TZpEDZypNh1YMCrCHr278BrrKp4CrnHahnfq42rXYk2L7+gEaZYO7dJ7s0ATbSPRdIUbljl+pdYkvbr+Co05cZjWFALj95CV1ORbaThuNtJwgS8xVk8uyQbJIr387gZuG0PD2iRMIUOoWXaRwN8P9YcjN2UiDH4kAlAW/xGLIjWAO7Xbm6SujQjAhiwt9qd1S568wxjFP7do9LUC71NpKFOKprpoHAFTczeYi4gWdTJ0l5rqaji3eE+WCtgpwjX42uMf3dstu/ojIev/xvoc83N0Q1REXnSLlMKcNW4X6ZrFaT4SDbVcm0BMqBvbCJl3Zg03/ZVXX5Xrk/wAyolcfYHkoAKZDjDAoeiO3INgTbNaYBgXRKhpsHbt0XESD8RvOjp/tfjAo6tdYQpzL7/vTZb95Lr2a+TxOH8BdNe0aLuKmo9AQbIqQaUYGSoMSEE3Khk/6oNq01KdjBCvtZvOBskaZa+u1RXRKHxg1/CxRN7H93I3UNKBmAWj9kiNWPbBQNO1NnFQQLZ3AExR194U2+AZjkCFmg9KAkOuuSN2gfvXYshEqJNCdoI6VdRdxbytOJxdQHe3QNMBOh2A6QAqM5hNS5sBTBBMmLGlGWc4oOrk2ITbhAwASltG62Sdktou8GRYVl1rlAogG0IRMoWYQuYIniYQmUMmEpjfNzXb+YISm+Y60KnQ29XAeDjM52I73R7E6l60kdDqDGit8A3OenskVvP9GWN5cw/h6aXJVxvnA6f55djUitDjauO/fxfftIrcdUAs22tE1lZ8vQDza55trRJAO3rD0rVmUkXo70vDI06xkfncXO0XCAm0Uo974r5xFVMz9wcBtC1AIlyp7RB7nAYBYCe4ob5D7dKcyjUFGvHMvZiC0FaguYbIEq/gUvMig/pc3P2mFaHLL115Xzx5VOciHKG/4sP8Iv1ci7A9C40AvBGwqd8gdwGQSz/KL34Io/V1cpYal+wvf7AXsUjrTO9Xns29JznJg5ebrDjs3L/mVlGLQIpAJ/sWBzvNh6UCRAwSSq7n1f+yj6Op3SvWwcsKHhyv+btHyzCRqI7nc8cZwQYGInIaCG0JzMfM2djcI8iaqEc5z9YFCQfY70gj4YOGF6ml1b61jNiWCaTV9nBw4pNITIOMTfOSlCCk5vopuuVmIk8DR0c+GAhX79NDtc+TdKKz+1RF00BFO9dJVY3fCPK3GlbwfEY4DoxBqTgy3IXapqYZ1jgxLOh+/8JknxMQp4FdWtalASMjbVP9whb/Q19WUHOWEIbpod3qM4eU3x5Xb3Zhoo8hZFD7y/vyvgsKtGYccSybW1iSAB3rhMYqxRifXo9lUWcLYdVjFZ32/JEwo2urxn2tnaMvHjTcMgKTrtGL/i4Gno3TlC4TnOSjRZ1GXfg1NSsas9DxsOzvi9eWusu29iKyJ5YBemR0imvo1yKPDZT580UeC0Cl9GeK71Y51tiblq1YpOoP3db3CUO/ElizebxbdG0t0Jrkcs7dKfWst1f9uMvrxR3PmsNfkuRaFobAQ72nio80Goy0eo38Dvdj8TviOSYaMHrpsAolhbWPYi5bUBg8AdvHnH+pAO2fvssnfHHJCcPev5zI1RdINkym5x8gA4DbkLdzCE1BYOj0lpP8QXvVGZcO7obTd5RjP66E9a7xbrvLu5fLFp/IV4X7EJldAPTvYy3WfhzkSoxWBkZ8QFVqZCqpwa8AZ0Jqvp2Gj5hSq7APxuZvaT4TUC1gITOPJeqabpTMX0TbwEuq5mMzNodKCEV9EOj+MLUPxPF4BOhk/Kr5klov0EsX9saStngErlGt5nu1NUGGTMWIViabOBFBtuaPVtwP17ytmDcz5t0BenYL2OydWO3f2F6AtjdxbfNdsAgmVhRVsBKqTg7oA8jEwBp+xbQRlPMk2J8ptlF0kX8F5i3MfUNVaJFuorQ1do1VUWfurYTITHyUwWo71ZaNg2MBtKq5BKimCskC1L35irPdQ/3dVANBIpH1RPTHI2l6rARYczXF+B9+WcMiKbRTodrCECk2G3IiGEYmI5NdpkVrlkwJtDWIHu4DzBy/35ZM+xN5P/hPjemNH8cEkRpwjMR630JAcivg7Tr8XWU/q76Sz/HwEw+E7ri6PErrDhwfkBcwzWS+XAnDxlUNm3uFRF00BYFUP/0V9Pc06j0mEvG4OfLUnNdynJUl7lWSssSQv5a89onI8mL7mdroEMT99ob54JhwPGf3T+vz0a4oEM0m9VtN80IAlIdTc/VkUnWSh13OrlV827UQFQotaqRqsb0DlMVcB7W+0DuH9G5o66RjbEwd0JIEzYetM8sESHRAy04s35gn6YkEiPiyHWtcTLC4Y2nCcAHaxvOGWdPqUvPvuKDKIq417B3ntGU7k6rUr8Esjbrz8IgB7mtGG0BS12LVIh0TO0bRTW0Y2YjVBv7at1m5CIaNqdS3tAoSNRHkmgZD27iq5yVYPCWb+3RXANphQyN6O02Z3fQ0ItZzfQx10zygP1GrP3WMbeNy1E93HbBQEBzLAwomgeay8mNRoAyDHlruFi0goTA45upgY9kqLpXWjoDAzoNG7No4vYz/uPD6qYyxPbOZJF2+UnFD0+qOeweQMmIm+DxIVYdnbno0Xi5Nk3cI5HEwbLPZlMYQiAFUatqnKqnVsMfb8phKJ975pTl8kK6xNuGZJcr39QOdejoNQy8+bX0kXGWlWiJSsCu8GPGHAV82kjn3V7mIZJGtXH752XM3PIRbaSTpWstD6kaHcxGhpAaYs6C9qAdJla1Naylrcfu8Jk+oXJ23W0CmRHL/rZLO9/FDFT7x8tmU+pykWENjAqQK6KWvuLxMXsRywrD3Lydy9QUU86+K3psNq7s1Hbc7hpEpVsPzKnd4+6Gj3kkTKLxKrnqb7mqIvwtZj2dYzVy9ZveOYY41VPs9rt2qQHNaGqA0ziOApGtJkg7Vob7RQkQR4FBFzLyYYB0vMYQYTAJRMu1iIXAlEHPzJ1qq2kZLSFhB1bVY0VxRtcfJBGnPrgNZjOZ1y8ExSwJ24+koSwcECmgh35TLH1Cs4ejkGqzkWqob2zU28qBsmxocthWHzYx6dhM07YHpAEwXwHQB2pwD0x407cHTBTYsDTuw55GUUNVs3q3c1bV+jRS1SYQNgErA7BbkNZzPGzYGTUDdEqaZLAAcdUQxiIIOCcnE4Fu0EXy1VOhsm1FpUTPPIQUxuykRQd1VgJAaKb0BapDS0rIaL2gCS64/kUBv1GFsnNW1V9V8zRazJLL2HUSmmrYuu+/ZBRaMSQoXIynJTfAHjJsPoihCOxQRBw3tzyYB1O7LXU7LQ/KxGuWroE6stpu8zyrhhyreLY/DN60KH1Xqz3+MwNHTAIxQHbSBnB4UNa2eAKGeFsNNK9nrKMAhob3D4XO3P3fXOidvk0uxuY7V4doE5tlKaJ5QKobVPFA/XhUdixTowHUYqgKga+9Bx/A9L4OWS7y6hf26QvUh9bn6XA2XJznJ96k8rQLdONEGx0rFSNXKFXU6NBzb/C6nrj+IjN4dxeC2ameaxCNpoCdFdtSJ6eIbxx3gnbRj25i9vEgr54NYRVMCCC3WTJauuxew6x2ntwdzrEBoGLZ9w+/pGdb4q75pTzOd9xVgry9qhAQ6Rna8IY19S3YZqbjF3QEA2sjWzp4RBpYmyrjVa9STk6plRmia0lBf+XjZoQalGcb4GiVhC9pxV1tZ7MoHpqzRNWaD+NGYM/g4PfpiDR1SNKjIjUSzNIVi46sgW3v+R/cAXkMKKHUytj2HBkKMO459sLZF8VCmiZuy0DFROVy+pHSPsOEy3oyl3JQ/11ZrOi0S9edM8fZqyU1rtaaHDIfvVMf5y8vqWFJbDlc0f32zWHOZlq9rt2wSx3QEDFVZQksylbeOdR2bIfTnT/3VUjEhjvN5in6yO4FosWfrs3jQaJb99W3xUE/9yCB2pfB6N4rxOL/7qVtafHcN0nxtVDSgnveV3ByRsFj8jjx6P39kFZbjT4oSVpzecDRHqj3RsNYEbH7YzQWhB9usjIo3XJ/Hc2Ho+dNrJfqilxOGvX85kasvkFR1EJLVrsn8FBHXBFIQo+wlI85xBzVqcDrgWPTtl8dzp3P3L50nvHz41IEZ6MMjKPeVx2HyuQ5o8+/Rz2q+p2k0RnSq3cQABjPjosIc+DOx15VtPsAqbbwrws0GR9z5OYtt4qLMYNuKvoOeBDLUN9vh8Dvk4RRwUqlPUpo2QC4OHyOWnHz6GotutR4UKK7FWgGaAUwMLUCdFHVTIVPXXGg+ttg+h90B9bptXoVpD2zOgekCvNkDZQZKhfKMDR8w0YwNVUxUQZDW7KtMvomRlQcp++IwQUkhrG2zTmFFZSdE1f2QT17D4r5Jd2y727K/AMwATaDqWjRM5oB+NrLUXAUweGPay1TRNfjI4jXTIYYWBk0C2pu/HnJiTgIkZbAeflUD/AdITFXR3tzQXBagCqGwZ5toMJMjNgjOTkTadVthZddi5aYF6jd5PORglcjCBaE6kKlLABinPFx6S/sDBAhu5zwO9gnDss2CBvKUmv8pQrhJjvsb4UrjubFf6YjdNnYj3/k1XraO/SILKr1Mgch/cu1hULtNeCKqATwugOQwJbpqZUv74xzNYy657WhuvgZkjy9f3qvreDxUUXJzkfuWy+LKeWh8MlHzd9tAMhFU58tydJKTnOT7WPaToEr1hV6BqqKWGbXMtlN84IOs3ej/YrDXow7LOwy+okPCooMBUge1FmYl8yvn7oR4gxBdx9HRe4++V0cSNZQiLsPAfWyxe/N95N85p53Z0JR+Hwy8v1XHawTYAqCt/oZVDIUvHFVkc46oG3GQGvsICNz0fyBVIz/x3fMAz6HhL7POUwoXAmLwIM15gkqiOPbrMRVKJTWs07b7KDAJ2fPQAYUEHPOuiBPwheasZuCkLQkaRavo9/XS6c8VGQgXC37V9BIc+7XwaNZDRBHDggYkmPk6ovybouWipRBU0wZdHlODa0CLOS/Atmrxdrz2CrYqHPDMWPaK8TqGtFdCL8znKaXR4WXCbpRjWKaVL/hlL+8gJi3eXLLJnQKRtWG3HBzeyHADdoRTFdFCAGparI2ArXD3YIt8RhtaxdKLhyTqH065z7h1AXXbXFei7aPrEy3KjcZbj8pxaSyw2lPpImyrQyPRSZcVdZVQj294l9ZDK+J5KXV32r6bpu6y7aZ5/VE/GTkhQvf73ccV29MBAASYrFNt+heqoPm79/C8J/lBkJPS7wskhQCU2oBGuAggTktxeVX6qLPKHX8AvtQFpvBZi/XOmqt5WH7u5LivXe85x/zFoBzm4Mvb8sp9B73Rq4b5+NB5ruUr+w5M8MpuSL6foA4GK2qZoZsKnSq0uEl8mMG1b+3HpaJuBHVTUYtgJvNJVougFnWC0O8piroB5mLEnmmFurndJNBJgSLtnOYPu7+zyeIWFkixOIU7ARrp2AfpPPxjv+tGMW+BeSO4uDFjf/2AeTujTmb6XzfVNq3azZg3FfNUMd+4CdoaoUrTHswzmK2tE1UQzWDeY6KKCTMKzZhQ2292KFkdiJEQVAsEbOb2hOFbmQZXuup4Ws11LuYtQzdsmrfFyFB1P556bQLf2IJvbEDbAtraZkm0KaANgzZsGydNBJpsN0/27/6bUDaM6ayg7NgcnG/IzfcZpRA2E2GzJUzuE7VMdr34MRcGs9/jn2liTBvGZsc4u0bY7AibLWOzJZSNXS+Txc++uZP5N3VQFqSxAzXitAqfCFQjaHu4/Po3Apb8GCP2a6b7BUYcB65srCtZZxdkaY6fqWszkJUvkkuAHt7UWNvOqg46e5zIGe7vujPX5KAv5m5htdi0LjO4j6wJTEs5PLQowNEeFUNcrWsA2uSTmmllbKsx3jco+Sy6wjWlqtX7lnKHLrvNN/KkaTGBWo07nctzaFq5P8JHPUTVRBtq7yZ8Dk8AlbOrM/4iFYl+9ll87lU+8YlP4DWveQ3Ozs7wlre8BV/+8pevDP/Zz34Wr3vd63B2doY3vOEN+PznP9+uHQ4H/Mqv/Are8IY34MaNG/jRH/1RvOc978Gf//mf33O+TvJwyqM33AXQNKMWW3SdNzNkql1Llfo3EdyU3O4fJvetk5SVyfVVnZt3QEcAcXkPXXKsi7RT57baSWfN0mXHt5K7MLm/9Hno0o+qWVI0havLCIfWD1P/bnlKBDcJFIEVbaHbsGTFsO/DoOnqq/2lQqcZdbM38pwrhLv7B6WOf8NFlJ2Pja2cTPWBk+LjGLt/h49T37yKgDDrpcUATK72PJZmmvvA6lUxWnNnI/5cA5160c6HNYoyRvKensEPGiNqpW74BghejEw5AJSnHI2oO67a1A4yoTdcA9rK82VNcUgLR4To0LrH6dSYGx1TXcuqeFn3OCk/xtF1jcQijwnDLxO6Cm4s80Hhx7/FZ51PHDf83zBmXM9zP7+P84c75iQYBp1SvJsF3s3uq+BhiKDEPR+F3FXyAh8vnr//1FYfq/UQh4q+39t6lGO3G13d4sUY7lnrgLQfhIuH5rgj1etqF5czAR3qf/UDrDxIyhPlvvn4WS75cSzDC07ephjYsCmrbHz+t7Fz/Ff+91fH9yKVFwLDPixy0lx9oYSAtoU8xSieZunAAuAdRzA6yR9X2bq/xTHc1a4B7tDh3KdcDiqvkrVwI2xaugMYiFSNMvDB8kg7dZFW0goY1n01brFNGxDm+7Ebqw8jDIW4eZIAnWBJvnFs4FIzXxdyssbXUt30KrQVSalbaM2wdClMjv3bNya4suha84lBLwogrhNywair0GqMuB6fkAFyI2kNOIuTwRoELhRaLsBlD+IZYNfCTh8iI1mZ95hgmqvjp2JLMza6hwihku3Gasqzai4XSCHk3xzaq+gEazu2VVTZkgViL8eKru3IBJ0ACkfG51EwpsbIvsmVkkLETcBIDamLHh2zk35lNtcRRGrEp7fPALZxnCdMps3a39UBFxA3DNh9t+GI+GzgMs450OQgPpvWKpr2JwVBSmnqkAFMuJ2gSI/aq9GaH2Ew9VdVcKzgBzhpYXv8BActKS8BZJuGIyOB1ZVP6fE1/QPtLkEoynhxHKqnrW+MR9Y+GSKv+/b8PXqvC38u9RaTKq1161EoK0uZfTEoleOQmZV7Vi5dqgi1DHfVxZVs2DEN51bw98o9lyQRrjvWInrIJEjk+5V7LZrPfOYzePzxx/HEE0/gLW95Cz72sY/h7W9/O/70T/8Ur3jFsU+wL37xi3j3u9+Nj370o/j5n/95fPrTn8Y73/lOfPWrX8XrX/963Lp1C1/96lfx67/+63jjG9+I73znO/jABz6AX/iFX8BXvvKVZ/FkJ3lYRLjaAi85kQbXSBxIsE5Yasz2WccwWGpAonfGCeMef+sYJoc9um/x+479Dw2BLtc2PZYlzj5WGrjbuGgcZ7DOb4wDNh2doyhjKJRnt65xjNqAE7rWmVCH0onFMfcPCkwyPkJSYQsrD43zBLMEmoxcpUTaKgITWv46eRqmEsEQxXHH5INm6ZJu064QQQrDIk33M8plvXdWx/TajPQFgSyOw/a/o1jBNGyHcb9QIGlQIhdlbhvJ9H81v9rSb/5FHUNG8Mta2DBWr4Xz+zXl+coWq2Op5tY4VBG5azHpAfPcJDBsOFGgZRrpRdKjg1YEdsyGqUlyuTlBP56ydu85aJuvhob5ABCjYFLOhkKioakO30H4JuK34+Nc35Enx/oBlGEu0yIbBh0XHU2WfttdiyJhyTvdl4qxud8a7qWxs7oXMKSXHAOtnlqf08w+r4oEvRwJ3d/rqpD3HziuRwB8NnkXI7aZVVOVffjk+cawD5OcyNUXUhIIbU7mW/c6AobmqiWNWGFCYQNS7w270/wreqjnS+6Y7L2+fke0giWj47VxYG5orHf6/okdr60oqQ30Hddb72I+xA5QKmAt5rNR1AnySME2tuLGnPV+H6KJuIWbnZDvNeAkcJsnUCdZnZSxOu6AVYGRAD0qnjRIO4MXO3V3GBzQrbc/O3FcaUJGoGrShm2kKgfxOoM3ezB3zYcMpEMzW7mi8IzCFUwVhfq3fWac8QXOcACUIMyoKpirdVhCxo/at5Gslanxb+rgTIhAxapIsll8Ibt5Jt/4yYtq6wV9O5ehGDirCpbQALHHUd/7QQWWIbLvUgowKXYTmZsAAlTML6pWbxqBBbQfZyAe2CuEg3z0dkwpHAJfBVBtEx446erP3iNor0CQqg2w5WApfNd4TX1QXG6kak+7E6uLfOV7m3bq4oFbOFqA0Ms+Ua9efj6TaTg4g/tW+HTUReYyDZAZJGvzaRZhcCyZNxwiRcrXkSz8oS3DrCR0dEoX32up0Hqe7yiKQbP3TukRqOHcVp6a2moP2OvlBxmBPYfyO7/zO3jf+96H9773vQCAJ554An/wB3+AT33qU/jQhz50FP53f/d38Y53vAMf/OAHAQAf+chH8OSTT+LjH/84nnjiCTz22GN48sknh3s+/vGP481vfjO+/vWv48d//Mcf/EOd5PtaDlxt8ypybUUSoHSz/yBMG3EKdHDVPivE6tApaD83xIHUqaSJdiOXVia9GS9pvg9Xhj32j+q3aXYB0DH4VXI3JO1lY8Vl+Pf4G2l8IydCKsAHJ4KKEzX5PkVTtUsuffrios9PmgpjGgjy7+U3bOwcfLLGx81IWpwx4FCUU1wL3c3IQ2xgFel0v7IEBTueNe1Xw6M0ELY9vu4GQMHNfyvDbLx1uGesifjbRrr0HYvzptXIrQ5iY1u0GDpFumg9hCN4v5QG2SMCONbytp/b0WL4XSdV0wMu38ArzVwjLY+4aS6mfIKopxk8t8TzO6ZNr68g/Nf2PC9LOeOKS4uKKXYq9Xuo587dtoFSnH5AvNBvbgnQWOgt435JdMykB9OMgTN2bcfNZ5gR0FFWqU9sWVh2BblAloV1P/hqifEW3e6QBtBB80o0Vya/jGN5UzvuoLJZq66132UGvY56Eca7kRvNIiJGX1xiteNYEJi8RYqCtJirOdFLx4eT/ODKiVx9geTQvGmjAQfre8eXdPBbcwQW+6Cc7+t9hw8l6fj5luMULxsV7iKuAIpN0sBLQNvoKrRQgTbode1VGuJrvqaQO1v0sEKm1UgK3ShEK7QqGMXqTbhrqwJgMg1OFh7iMO1VX1V2QG7+BuHaA067al9ZjfDDZruNWE3OddZkpZiqAs1/bKjrZ62EFdcTIUICmbS5OzCS1d0SsEJKBTYX5lOVZ1C4vFhorxJXoBwwcU2uAKpprWLGhvY4o3NMsI0XlIDw9K9qz9A0VRW+xxWZ+QGha6yGSY66yU0QqkJtp1CavHC8+q31OMC5BatVZbCaewatBtqV7RgcmengH/L/Z+/vY3ZLrjox9Lf2e/oDM8a+YE+3P3Ixk/GVQTY4Y4TVljUQ0aIdGImOkh5w5uIPWUZBagmmETMYeWwHT2QNCsQQ0LTIFQpIY+E4QS0SkKWeHsgfoWUHGydBwZYzgvga6AbHg4Gea3efZ6/7R9VatdaqVXvv53mf9z3nvOdZ5+z3qVq16nPXrvrV2qtqAzyLLBVrnrnuJkJRsPPMmK9XMM2tLxa/fWbb7WvK0/prLFfbE0RORsLlI1fecrVZq2p65hdEurWqKVa92/2aMgJoVqfwMgJa68PSpcO1DFQVploeORLAbs2y1zUqRwqYvHgWlAxds1kLVlnNhJNFPIZumK4sGMziPh1Ns+Gt3RovygBFLpkfOWt5JYulIdSsd3oaxPFrZvLYMwPZFoDX9pqiHHlx7aME8PxlXEWaxcrrQJI5/a/+6q+cxc5dd92Fu+66y8k+++yz+MQnPoF3vetdypumCffffz+efPLJNP0nn3wSjzzyiOM98MADeOyxx4Zl+tKXvgQiwgtf+MI9a3Oiq0jPoBwHIFu9uSqw9Bx2ADIwtJfBlUsibxLsFtOc4F6LZbmP1w06kRcGp1X4yUPoTEB9OW41IVHTEVLL9jxvIPvxKmcQpnNZAvrMZEZnKDgMAPMMns8w1bPsicsRW6SgipI2lSOyNGdpgJb1SMEq1qhTeNlOOyk85AweEjeCYlWVqGVsFNWkQhKYXdjibvBO58EONpvbZcMYE5jqeaYKbkxbmHssal+9IQTlCKYr2VCVb8BCUyJSS0VdJyR9Kfaqtj+vpV4SLmdMtvm/8fs0/C11j0bN3m5yk26hvuRxlHqlcEgeKc2g8QUstTxGz4pvE33yOOGZIgqW05flFYa6xmCgmQObxDRD6fvk4wBl7RHHjNl0LgI6/ExoWFaKIWXW7wTYQkj/8I/9/qOKJ01vCbYEvEehcXyfIchgpVUYJpqUvo4vsX+VsJZ2Wj4RYxPAQVAUqfpmoL0qUaV8bXeeGCQLUTmTVwaZ/98XRhW7pelYGPZ2pJNy9QbRHUS6ApXB340gClrEMtUCRK8wbW6bxjrIu2gaHQcQt/MDfnJrY2YcbG0aPqy9zTLTuQGj40JWwCNWqwJRhE9ctjTR1ODT2YwdAdiVN9KsYBDguShi54n16DB5SyuAqlnCBeWqHhEAo4iFlqpUifWXR+eZUH/Py3YwLlYCcYJpjdg3Tv0rylRVqoq16sTgsx34jq9gOrtujgO4Xrd7XXfHAmDaYTorxwGcTdfN7w530LO4i56tb8hJJ2cF0vXW8lSwynUinIGxo6Js3VHZLj/VM1jrrcA0oWxHvg6PukUpp1Bwrk/MBDwP1YJ1RrE/mEs6uzKpMnH7ZQauQZWq2NlDjsq5BVTrRMzl2IAqP9cPY7E0PzegLs+EYrCaprUCFeBvLdql7Zolqpy3WkGrKFZhgJCkhZZPCVoAhTW3yYYDRkGLlrDkYc5SpQgutXzQowv0SABq8dwHrs7qFR5xrR1DgW050L72K9vVDU7WUTMCdAWGNf7EDojaF+IO/8H4I+hDTxwlUswZpIbDW7exbimZpHymj9RwCrJ+LCEvAzu3hfWBiUfT1TxzdXekLVUvf/nL8dd//dfKf+9734v3ve99TvYLX/gCdrsd7rnnHse/55578OlPfzpN/6mnnkrln3rqqVT+y1/+Mv7xP/7HePOb34yv+Zqv2a8yJ7qS9Lw7Z3zxK0ahGn/RdnuoqtUcE7A4Btr5Iw4sXYz4pNVBRvUSMb7B3knMJpLHc1gcSI1kXSyDV8fj9TL1qM6GmEE2w8LShi7Kdcy7MzTliEyqDLVT1KTqIlsxp2pWzCQQ/cbtrD+lf7RzVp1SVXdRVQUrqptmyDmsBlJYOOLKHJxJWFPalt/ZiVFtQ1EQKVaSe60aQkmrxfZqxezOUXsmtBMWOUY7J761NUw5rDLV9H3piKZs2ZxrS9Xq6XpRT+POB/cUkeWWArTqBdyi22niWsWyDMAyEh1e86XoePrLJr6WqzUSVxAnxi95nX153PdQ7C2bTYNIJ7VnsNYG56BUbcmQrxCb2+CaI7RPBGCDKiwNWGlQUk9dH8TGl+ILAExwoU1TXx67dNilld1UxZcCxLM1rGu0gM514K7uKiMfoWMZFmGHMDMeyNFjz/c46qrQsTDs7Ugn5eoNIjauNjEHICKTrx1s6kDQzlEltTi0puktnBePZbkoyrc1rcmPC+nf1FPgC6CkEE46qHbjK9XJ3UIN8c9kYsgkyG1ARZl852qxwbiGSdSsNBcd0K4qnZgwz1ICVAuB+t7U/nI5JkC31cpZO7XebABswc8DNB8Uq7Llv1iVQPtW/waR3Y8fUsVCtR0D0I4FmMHXnsV07blqoXq9XWe7Cpx3ejFdxzV6rihTzUes7pq+grvoetjiQ/oRK9ZnogLzqSg1Z2bswNjNqMpjtA9cTUV5PU+E+YxxdgY94B3VapV35k2lg8cT8FUE0PVigSpvMInVTFmPcpgZvJvbMQE0FcWpbn8zX3PVhU+55xNQlLIzMO9YgaVVsE5VEan4m8L5qvW+60uWCHKmAhSJUD4WVbs6EdpHhSyPLI80fYvGdTyJv4A7e1Xl3QeqWj2yX8XcYn2sv/Bnr4rS1Wbunon6/NZ7BLEoUGQm4Kp1ug6gRzwmNFN78eVT7YCr3iuRXRgbhyOgS89KjRIL7ZJSFtc9gN26uXPDyGnFyC3q2KSjyZnwq0rzkYDp5z//+c5y9bLpueeew9//+38fzIx//s//+aXnf6KblOocN1M5R5XtHB2VrGiWrdFYQIcdB0yWNAPsw3UeMgO2TkOCCy1GLnJUA3p87NNYI8Haazh7n3Nb+8jQCaaNB4nGAVS3W8MMvEm+BODarlqxTmq12ixYa7shHAfQTQ7VbQf6pd/6NUma5tYPKjZtuMbwa95TvaxC1G3zVwVtxtdPSWl8bYNaywKF7BZfNk3n7beiRamzXCXfQ+uBBXpskL9bBZfNKM2i1p5WI2pMCZ1NifRbbk+CRbCSi5SrrC3s2sDfwvRpy/AP+WVCuWe1EExOXs6ZZSPiknI8cj9gtG3Zc9kJ1to77fWLYQyUc1hn8+yHrFXQWq1KQaOwYprkeSaqd73Kme8CWLzLYugRslM/aXL1PpdnPxrOdhXP0svqOwhyfYNtSHO6c1YPJTJ9Mh36WwdvQw+bto8l7xKArvBkcIlnZcT2MsuKcmtkmyT5s1qr9SrAhx+7dZPTsTDs7Ugn5eqNJFF0WcDiRpFmtUrJaOfB4jATAAxOAeTNRmPg6RSmVVQntc3brAp4BOoWKJm97BkuVXHWgNJcNQHmEByuPJ4AmrGj54DrZ+WogHkqx7VQmaHlvEsmA5Jkuz83xTi4bMMmUexqNyDNWu8lzd2bztY0rY/MBPA0K58d0K1WfLZtbPQw081nszkCwBwJUM9ZJVWq7oz7elG4krFcPbuOO6ZyBMBZVbTeTV/GNd61e2k0fawHaXog297QyylcjN0ZYdpV7FI/4iS73OYzKueA6oesGLhW31ALNKZmvSrNSXdfA+M6eJ4wX+dyvo70jl2xVOUdSoayaKzHBUx1Yem22Sg4MH3urICFiQHM5cNZs7z1ZsZZBWa68ICxVFUA4GWotk3pMlzbpEWScGodp1mc2nABgzD5u0vOa41p1HIMLVXbr/KzfXyw/Bp2BnNWK1p+aPnGi+R+iafeKjlSjRFwYkyzDk3yGDsrVntvkoWYxh8kPRBrshyfRpuGT208gmY0QIQOyIZc2LhnLxetZN3xh+I2z8JVBaTHpuc///n1gyxjetGLXoSzszM8/fTTjv/000/j3nvvTePce++9m+RFsfp//V//F/7Vv/pXJ6vVEymVl4mzKsxUsVpxCosForF8LFOSGQjU7B92cG1uNVELRwi4lXFWOLgByloCUkxHJ4GYwJI/Em3A2ecb8SwKKvlVpyi1jD6nvd2SgdeSwaPEwFSOCWgzvZlYCWjnlWrq8Aonrlo0O0GYiUR/y9ttLqflQz601XYniWWq8GdMNFelqlWQQqevaLVaSm4UrXYtFdpSZTtlq3Xbc1URfkd9qs8nJt8Lshrrlf1SbeIfx7NIwHZgcbff0ieo3vLcajxEcZRji5X+XJ8rxYdZImxkQa1b6XiAqtdie0satojFHYTpr1GwhmwAIvNBKymrAYi2vPbmuDLX0KkionAkABMZw4ANFDtPuM2Kr7I4RyT3aGy1njKNr8NQB3KztoYZ/zG8mW54iRlz6BlZkZN7WdbrVD+ERuX+WUMMtn7U81lPSPZEnk7K1RtE5VFkVe60yTkCl/rbPgcJDEZzf7h+luPGAfGcNDoOYMzrZbozpYyct1YVd/ll5/dhDWLIJNnCMNeZj+ABooSrNsaWpQ3IxYq1zJklbrFeLHNFLRW3c2AlmwYm6tvIiVTBahU/RZFhlHXxPpsm1CMAjNWIzEJOwSrWsSZmN9lU93ytfsjKHg1w7Tro2ldAZ7L131utZgpWOitWq9emHe6g59wxAPY0LYXHXI5IFUsGeVa0PtU9EYAJmO8g7OqcPE/liC8mxnxWzl7FDmWBdweBr/s2LHc0WDkDoLuvYeLnyptKQlOqSp8g9kcB7EyCZBJiuemmfxq/PP4TSK1ZeSZM5vzSTJHaFJQ1SICssSDVIwFEKanFovCW3itUNSOrNDU8U5zyRyxh9VzVyeW/xXLVmemeEaiescpn1ECptm1oazeUBAF5jOUFijxfphtk4I8Nv9tmJ3wXXzJCRykmDY9gxwNUx2CDsoVKNtou0mhKsMVnI2fbCu3+61BI3h/zsW25mP8VoMs8r+rOO+/E6173OjzxxBN48MEHS/7zjCeeeAIPP/xwGue+++7DE088gR/5kR9R3uOPP4777rtP/aJY/exnP4vf+q3fwtd93dcdVJcTXU2aUXBBsVoNylR50QhAz1bVqY+74bmMKM3OTge4YG0q0XXCdPNZTDOkVSNyHfzdGIfgsXN3p1qKA3Xz211lNuFzWa2aqviymkmPzeZ0aZtuwF1I+GyHmWdgnupHW6km2+6jG7hrHmT9C1sdZGeXnrkqlquKo0TZygCVXU/6YapgseqsVNnwZVI3rdPIWK7q5F8+dDVxuT8kL6LR3Io6TWLt/oqlaQAE5mYxRFlafLFH+a4sof4lP0IcleXW3mpvoIAkmWSjUjUrdkYEMLet8i0NMR4gK+qzTJP28rmqt50pShVbysuEzAo2VilWz1H9HoNaeE9UMDwAxb6q2DMvNk1iQyN7dVP7XoRg1uQIAC1oxmuPtpFrQFRPjo0vUA6FHWb4cFhXTsyQfpU1ckahC7p7QahKWsHmA9CIvHlcQJc/9+UiVEWp5ZHH0VIci2PlVy7Z/QjUdU5o+ytEpzNXD6eTcvUGUTHvly9eNqBSGY4oH7lX3dayNQN7F0H7HgeQE+kLIssr6RtrO0KzaI0TngsTRC8zFWDPOQULODLzhZsFZKBu5v8CknTsnQjFilUMIwkzdg0scVOiljlbQAo5JWtRkAPgCSTbsyQPkFukdG0DLl8vrDJREakWdRXA6llkcYZywKyAaz7zRwLM0w50x5c7xSqN3HokwLM4o+dwJ76Cu+g5vZfSHv0sSmD5cisE+LZ7UqpWniP5qBgRMF8rMQreJ+jL6DMCWM5BFWtVoyitbVZeeswGZFzD9OxclJ622VWRWtIs5ZpbGNWw2ZzRo+C3+t22mOqvAEwU9DrhS6UVAJD2XW07qrDU+q2l6PBDVaM4dRwRBW0tB4W4RGjbn6pSNeYdf0fWrKDa7md169Q1i3jsDViiiITlpQbXzlL7HNetVk3MvaTWsajiqM5KQHJhm6N+LsENuzFqTMsOOV1YfD4uAs/pY2D7qxlCjJwfL0KhzOCouJ+irDT/9SNX4uagHeV9ZSutbkoJ9Mgjj+Ctb30rvvVbvxXf9m3fhg9+8IN45pln8Pa3vx0A8Ja3vAUve9nL8IEPfAAA8MM//MP49m//dvz0T/80vud7vge/+qu/it/93d/FL/7iLwIoitX/+D/+j/HJT34S/+P/+D9it9vpeaxf+7VfizvvvPPwyp3oStAX5mfBZ/UjSZMOHu7YonYUgMSyK+6w+laFJ+t2bG8NSe3BoGz8MQOtBXNWKaBkzjaXvBJctQ0zuwxDmX16x8HIMhk0fNkgLrui5MU37WithQkA7TDvGDSd1Rf+3RYFuPvm/DDpsgAwU+bSR2ya8tEqVbBibopV1E31Rhnqt5zU9Gzaxq3FBdJbO0l/G43TCntI5+TuSADSmqVXS8qvGbqMHFlJMQkZ3sxYrcAUAMMNbg6SWpyuTBytg/JarbKjVGcwJkVGNtDyfFYdVjK8pV0viuPETf0QQTUNlM2Hhab2kSuNaBM19dU1e/ac2XYSJS6hrhFNmlmlbXYd3G3YilAeBZ5CPPZZ7E2xT3R9hFM2dRKBH9unCrJ3+GFkLc0QTtbHMs6GF2jxRZPgbFO2lo4FryYH2f04o4TPBPzVnySluvXpsjHsVaKTcvUG0dwBvUoRuCRycfDsB9MyGFiFqgw0ufyRaPAgLYHJVi4/lNoz5go2aPBC4E20XFUFXQScga+5GfTDTTUH1QSwcdOkeJQhsLyVSKeJaa7fOWWc4UyPAygfqmq/YjXazlYt0IvqL3hXLFhFCQw0K+ewQ5RRtuvrgkbkpJJmMdKOO2hgq9/i4f0zZvBZOw6Az2bgjmKx2h0BIO4z82GreoGu446pWKteo51isnZaAqlC3D4Bu7JBqvrtm7RSh2zDLJfbXz50VU8WuHZGRcl5rb2uIEaxaK37sehMcWhRFDJAMxeL4jumYrFarXL0g1bVPatS1RwRsGu/bZKPYII9ErfK1rPmbrpFaiBAHwEDvIxM41V/plStVqZW0ekVqy2ujEfWsFXpGrlzVTOlaq5MzWUhZVvZEt0XJPDIh+vYItt+aHnBAcgY5GUs5HKLKMm29unCzBMeAcisRmwDOJc5hHRotDs/dcz0mSf4eO8yOIyrY/uJzkvf933fhz//8z/He97zHjz11FN47Wtfi49+9KP60arPfe5z7niBN7zhDfjQhz6Ed7/73fiJn/gJvPKVr8Rjjz2GV7/61QCAP/7jP8av//qvAwBe+9rXurx+67d+C9/xHd9xKfU60c1LPBW0A8BgioY9WJVmGgMN05pfFz/yjF8WzhTGHTugaPwK2Nw8IPk2eWMrm9XwIH8/Lhbcpy/Pj0DlvHfJ0ux8E2XOcmyokG0jUSZc25UXuzNVvDm4H52lqvFPJj2VKWfw63EAtX+QHAFQjwFo2/+re2C5KsYjrr0bBFGr1zMK6UCMWwQM8YrbtpetJ/qGrnij2RErcGvBi/fFSrYZV5WzPE4tWpn5ogqIgbtNo9x7CnkRPF6IRRZ/wF8tH49+umOF6nNKDFVmsU1g1JA2bIDp3OZEQl13AVO0KnULBZtmrO8CcFTsnIUP6pDIxZPxylAn68o2Jh5peAEQ7nGCBwHsrUBrtyc8WyZhMURy6yMNTvjCNvd1cRdZzNJlb+7tGdVdiUlHmsx4sGWJcqLbik7K1RtEZySrWcDPAPb3sHNS/dEAdbAy6Zz77VZC+fo4ZrLdL8pUcLPsLHwzs8gqnQHea0rh9tEqRSsGrrhJNMTrysthiqBqwTFXw0XyxwGYc8RIgDDk/FPPp3qY+1TrWSxX/UKFqR0BEC1TpTJe0driaZ2IwwTp6zlT/YCVHgfwLM6uPQecmWMABharNuzs7DrurNaqXL48BSb5reiBxFLVX85AmXxZpe39KVtGsV7fHu/uBKaZ7M3SNiJQ3brTzl2VroGZykgpb7aj4pRmYAdMNOn9UCWsuud0nai/6jYgvvYfKS/P5qUDIbVYBQb8RKHpFJijsPBblKDWjXDUAGl68hEt5VceJhgFbwljk14PSGubmDgN08cy16Mb9Lc0gLh7S1FuC0hpehkOzIOdwsAqF48KEJ61cj+IwgJC++MFjN92KorjX5yiNmdtGswckdwwsaR/dscRKnDz0Zz0t31Ihux96OGHHx4eA/Dbv/3bHe+hhx7CQw89lMq/4hWvOCm+T7RIL7pzwv/32R3csT0WYxCbZ6ANLN2YSNaR9DnybrKDckeDiZbRBjdu5ZSFOlf3MZWfbbt4PfzomOO2HaclQxnAuWIHuR/so/h2toM7tXQm2QFlw0Ob1ntOwnODFtd5dW7TN3FNt56tWs9gJZoxTdVKlWTtM1aopr+23wz7RhOwH7Ci6kbAxd4t+NpDtka+7zYcyrF0Kq2/NWE2hW8+6v76Z8i0/wKVedwcW2FBjS3+6DepqmvmKEeo26epYTbbrIHYp+YfT8sb5d+l12O2tPyEcj4qNQMXlwjQTeRs10yEBva6eEnBsgKnPIurWzZO3jQSaWWStA4ggc+t/bhv0OgGfD8YuKWHu7bjkP6evyy7A2mhQNJGa53HRpePd6QCNa0XvGwhoVuXbgSGvSp0Uq7eQGpGTToymtCRYtXPYFvAGoUefpSzn9Zz3SZFdtyy5TJwQScMOS6ATOQqyy1Ofxarl9Gtv+6pl7fYg1dQ3fY0LV0TQQWaXO4pn7E/foDqhCJbbRkgTH0dFP+XLdy7mcobVbUiqEuBM3O2mZRH3uSLgtXc+/XzV/u6MWA+YiUfsPpKOGO1urOzV6ufpuugs+d0wo4TG7WQTlEFFsXnDD1vti7mBBizu0h/Z6AerwDsrgF0N4GerZnu6i3lqViIcn01Ll+nZ+gZovZrnyTb/eW0Apr0I1ZEM3gHVa6pu904eOsBbv1V/fYemAdkqm6nPG0AzFuT+o9egVCVoAvHARAOtHC15TH4pbZBqjSdgr/7NTLdWBI3yC2NNXFRU8eVmo/2mZn9m2i5LQHAkbldyk5kFd7JQqavgt5uZQUZDXfPiYT1lh6HUnnEWsXcy37y5SCgWfAC/j6MFhK1y6YvrY5ThZuSdtM5gSmjHTtyohPdhMSKP+zD33jFsrXxlRJ8MrSCHPLR/PqcJXGAQXowYdV57vHIz0xNwXpk0kmofo89hfQKdDeOs4IvWnwXdWi1Ct++8T5NXOdTg87kpTTNmOpaR8875YLrpCzNirUpQftLiuEVrg0V2vAZI0UsyVw1dLMBOKI0tRv+pTG4+7Uq0LbzzYYMmtNg8QJ7mxWrYBKXrSbg52qJXxSsqPfCEA9+Dc1gTGJNKmIU5B22Id8MEzDPcoQvt509QPdY2h1Ajvwj1upW46R1ouyONDxT2rK0C1NQsEqeLt9QiKRMUnhSgQFteDZTDBtZm5/zPUl22o3qeAhFBac8U5nif/NvKKA9n8J1jNhQJjw9ziUhyU+OfbiidMKwh9NJuXojqc4a7UVLAaJsefsmGaxWYzoXo1jN0tzCY6NYTWZoNBDi3qgn5JS0ZoxtylgbTxBJBaaAjiCu/Wx2E7dJxglEqlaPcranipUBnOuvjONiGUSqYCMN1zJNwDwTpno0we7suvYdOSuUDMpq54cC3VY7/Q1WrrVA/R0ritWiYC0fsMLZzhwJ0Lb+i7spVZ9ritXpOs6m58AAZm4Q2eL/kp+F0I2/q5rMdlh/lTa3pYfS3Cbcasm4OyPgrN1OqkcCFHcFnRPKF+kZoInLOa12B1l9y03X5SMeKEpUoFjiOqvW6sZsjGUMsLBIlNs9r5lXHttb5AEAIbVUjWeuAnBb9jUeASOFqypR1dKUunjtXUTLj+p99IrbfX+lraEKbvcYW5kVVDnGhCWefdGdneVlU2/WqCZt8r+2P+tZzhG0cZO1PFvO7gX8BVFpxjY2meL0C5tF/+AeSHenVckrRUz6TZiD6LTT7EQ3PekHigDAYIr40leput2Hh8LvipJVzknXKASsTAF9HulvNtCOBt912X4H2fFGPQbKV60ZZd2gbzMBxbf2LdmoGg5XG7xUsbk1nvOYspZiUeHKni8AhmYQ7VCOATDb/6miQrOFv4VvOybA103mNmPZyg22NKRpZaQusV9UnA5WLjQufN56q0f9n4NonOjrXKx4Su4R6i022BH+JNd2Hqwl9idzCJcIM3M53j88R9bAwbanfeyEpRjVVKo83tIPfdqYAJ5ljeOBkDV4sZ+3a5nlz5Amb5vGhrEvgv5azGa6vypYF56dVAnbCaEBOcVAoQ5JlbQOFGQo1E9/Lw5RkRsE+g7gbqEDxqb6gS9J7KtIbfKtX9n8uTIcdj4UR9u8xZCL602MaV1g+99IOmHYw+mkXL2hFMGATOArchlYTSh73jm8hrhoK9b181aR5J/MjIAOcLJ9I8yGDREYPvuDgfq8iOvWlaI9Y578HK5RM/Dt7wOTHDVQy6lxBPIIWqJm0VCBrZ69WuvCAKwSFgTMZ7tq1FdArf0I0yzb7xyKYAUQFgivW7C2NirKVfsBq50qUmGUqjiT4wCeA03XMU3PYaIdzqYdJtphwg530IwzzJh4bu1LHuKGm6M82azPUk4pq851zVpVJoTJvIme620hAvgM5T2GHEo+UdG2zkA9paB+Ub6eSXtWt63PaL/XCDTNoOtTU6RW69XyJVy0D1pNKFtLZh6uJ7vuRXUrCgtgAFT5PXvMtlW5Smp5SgoYRlasYqna8ayC1Z5PFfNSlN7ixDy28NtlcdnKmGW7ExnriM5PprwGw0VQZymEccZTEN14+uG6zjzD59HquFLNI57d1/Kmut2tL1CW1cKo3VE8u2tfnHuiE53o5iO1XHUYg8fTeeanjbyaXzfOhMV2W9UvTbY9bR5O033NHgv2Y/NoQjmE5Hgg1nmT9aB4ARwjChNTZ6klL4GT+WWkVJU2H7pRAVUpr3yoqr3rlfaaVaGKqmB1RwQMFKq9gtVYrVL01y8iCKRybqQvVx0kQcE+cnQXk1iv2u3/9XzdRHMUe0CBJEmfljC5R10IYwbjTO8ltF7EltfIcVRO1h5eIMvRZO3k0pfAldewFHkZKkfey3G+8QsWtTaB0+cfy2GHAA0jewf8UxiXjKsK1ljX8Dj1RB5/jmTHHcD5OeL6+JAea4gZkTYSfBsstcfIbf2mn3BQyMf1qMuorota+cofdgpWCz5jgWP9BmWTuhOqqoC9zEW2+YluSTopV28K8g96fyaqHwxsuJdtlqDOkrMDezEtMcs7TvntSErU/LIVRfzdvMA2rkmNEM5+a29o7eYa8qN05QRwkx3obtqvgJYJ1AHUrI18IoIh9O2piePGaDOhg+Dq4s5kJWM9IN9IqiCSJaF4wSx4UJWuSXnL19F9HAHE3niXwdfkA1bPAdMObM5VZWOZOk3XiyKVdvphgsl8pOCsKlfPiDHVL8Baq2KWliKqSvGmHC0aT3LWIPZjBu5igJn0g/A0lXbVrfpnBN6VNsXExfCjHgXAjKpgZeCMUI8EMyiw3i1iME3VyqJWQZSpNPWWq/Vc1mahbPshN/AZwRsn7kk+fIaWdwVdZNMwoK60Q5UJSszRx6uWFavQtFsmkWf8UXEKyvmZBatJwxgBtEaJsjHzGqYbtMg3tzuWxAxKfjQJPEowY+VpU9jnXMI7oAef0Ea6KCyXKlgB39cGuHQx3YsG/Tch7eh8b/0PaOYTneiSyWIPcZcQwUMqt/ZLke9lmmI1ysL7nTvkE3FwF2+FDlKstkIey5ghN0yQiWdG+3BWmKjsTOZMzmYzlQ4G+bAbyvLItWVs16ZYbcpPU5HKp5qOKEmLErbGhbFa1QvN7RSsFSZJEbQ/znrK0/BycCIqPfO+xAv9x2NTSdEfCRDuis9NdrYpl7R9066IcLtHs4hlUziH1VLl6bFHsZK2G7k4gpN95QTuglCPCCC9J75YyaFHE4bViXVyClUeQCxq9bKKVX90sXxnIc+bQR7bdEAxydiGbSUKza/p9n2vGPkcgUZtnShYM1jbymPCYjtGkB3CaUnGzDOuvDVSr2CtQtoxAadAsfBf07edqgrUXY23A0A7YdjD6aRcvYFEg9GIutFiSWbEa0BgpFhVzjmtoKI17DLlM01LI4681WUmPT/7rYy8WkibZBtM3WBeG6Gc9zTXidUoWbs3yNUCs2prylcbK2pwGdsZsU5+MsDbCRzy1q6A8JnDPdWyMlDf5Mv2u5pycUe+8ctHJmaG2bYXG8liBQZfew5TVawWa9XyMatpeg6k1qlNiWovorlYeFpFK3Y4ww7XaMYZdihmpAbiVsVqaYfm37FRjgNNYQoDXsVfo/FUkufJ7+ynawXz80RqJIoJRWk5oW25IwbOWlej2MWmovUmUabOrO0tClYiBu8ITOZzp0ytP0mhCf4e6/YTbpUy7nUFK8F1ve7DVSuWq5ny1R4t4DpLyMv+itvc2riqyfmVKWevml8pE2ukJE+YdiRAN5n1ZqVOvEvD3PMYNeUtENX8u2cvgEVO+EenwfTSznTLCrQ/dfqEc6Z3q9A8nQ+Y3g5tdKJbnIjBtCu7Nvbo62WMqR8vKoOiplfI851iNaNOk2P5wGGDzhZ5du4eR/s0jmHM4GFoqaA3QBAlruzcAqgeUUU2nm2vzGRTU4O/R+434ZEJIwbsln+VET7X9hBen2azWi3uckarKGxF6QpY5esEBjHXj2RVJS2Z8tljKdin3xS2QFTkxo/JSwsxZB1k27XEojqXtt08TfklLm0bd2QUTDyRagpf2c11prex3c845brljys6qzDHoq91/ygj/rX1oI1H8hGp8KjWQm9+YgNUccaPpmsHXdqK5arpKl25mzvFf6YN09aYkjhZnaSsKea+QMoa3vHID0T2/sW4o5tIIY0l2SxQ1ka2z8K6o4IVSbutdHTbCSazrhdLCvlOx0XfjxtEJwx7OJ2UqzeI2jaeJRkkYC2n/nyn8rtdaXrMEaKf2nvlKZmwbamKJafVtBYe9bOkG+1tUVpc1/7JGFuSKedZFQX0VJOsW4tFg9dRUBZGstmThUxlRm/15DSFonOSYwGq22yfkm16TcZcUsmp8crWKHGjlGYuimWmHejOL9fzVMtW/2na4Yx2mFCsCyYUS1QKlqoTWC+q/DPMOEOLM2HGNWIQ1+1aMPiSoIsDtWAluc1zw3Kl5qVpq5xTptaXB/aW8VmRIX0LyfWNJLkzV1WhVxOT483kZAM9zmEiTMTg63PLo8ox1XSuU1w3+LWEAHO7rzyuNYKCtQEM+wErsj/aZmSUq0Pl6SarVp+PB32BZ4FsvQmc5DP+rYmEX6Ykr1gGcau38e3jbrGZ/nbPaB/mFO5ot8y+pY/AXNZANFKw9kUdThPH/KhVJFWwLpzB6obX0RhuunLIoIVvnQBuMTq99T/RVacv8XPlY5CLxPlAsfRsUJPNFauJux1qnudrw9ycFWVHtKQ12I61z2fMELFrc+vOCBNGqmWKxgIEPV8I5Af2ETnFd2xjTtyCSQvGlXtYMFk9FgBsrEXZnIVqlZ0SZq1VJaweNRAUtcXaUNwFK5a0y0tpCy+23YvWPhR4/rzWOp/Z/osyV+uv4IYi3FKKXZPsmaPtfE/JFcRqXZmVz95Rax2aVss8Qpa6OIR6Tiu58nLtTg4sJVm5x1MjM2bTM9lIOxgUcFhWj4Izc2wiYZJWD/pGv1VJZxMNhRgbpPuPdjmyWLquWymEb1KqRh4v5LlCEeMtUl2rZPg29uXNWIZMW7K/T86wpaa6WEtZK1gFqy1ouJfc9csmk36UkADd7viVL22t4S1FJwx7OJ2UqzeIdhu6nXuT5kOwuJo18fvhLR/umA/dspTF8f7estXAE/b+NWpwY/8nvl/D29lNWOSbRoKpfLyovYdGuw2rt9K3PensT202Mhar5Z77iUMMPJw+KSpNKeMFPky48B2v8qcZM18HpmdxRqJMnZ2FatkSX3+pt1rVIwKqdaukcVYtV8+qsnVCOTLgGmZMDkBK61l4XcorFgQVvoMBPVd1rqBT3vkXi90CVOQ8ViI061VCsVQVbeyEcj4qwsesrGKVajyWbdQlfToD6LlmJTyLJeuuPMi8C1viFIQwxISWnWJVZv7KYLOA0lsqRzw0IJadwxqtPkHNvcZT7bSml6Rv+SFMsYqmZ8u1/0VAU7CaLLX32Law/Pi8c+SlA25Opg46DNhHnZtIHH2B1ndccaTMYUzZa3PABtqSnBwRsCnzTGTLdEIAcH1DaU50ohPdbDTTvK6RcQOjdbN3Ux/WrM7MYGrTcnmZY4MsQFuCp8PxKYK6JZA3VqyOp5JDsPYaiQVrxy4/aq2ZrQWoc6pfRaVtObhrmMqUfAourNgGgCghxa1HChAa3nX3zytYNX0LMST9ADuKhaspz6Zl/to9b+lYCGMRhvgLtJP5nYzMhDbflTA9b5RQ8F9N0mMFWw5ZhbRUJkIzAg+31Z0b2nW5WPYWd2zFSlG0lo/6fBS+ypFnnq9NMjeb3GwZ2vIIvL44rqyZ9Wk8Os9Zqgrc4RAObzW8Fy1FCrjZPB3p4yl1c5DsiEPJZsWqRjBn9jo+Oiycka4JbH9IfmMfdt0ytE9vqRqPvTCdotahDCEmssblvj924ysB/GxewRPdtnRSrt4gukaTAsElBWMb4LeCvTKC5IrVXs6leM7jAbZRK9PaUQCpSsLNlIAqJKENBTdTRn6st4zuMnvraG8EGChnlJZDNYkmNKtVgtMYjfY92xR1DG/gSs5andN7HZqAm0OP0afib1/SlSMCalsLsHUyFfTIFjLYuABNM66dtQ9SiWJVlKpR2WqtVuNZWBNmtVYVNanlCV/OZRWwZm137ZlVcquk5EX/Wbb4E1DV4LX1ub8lRACdVfmJG8iTc50mgM/aObpWwVq2/9cJejazPRjlINdZ85uq8naucVXn55SmKPEkDcXwtR+LTFXGNlzQZPWIAKmfdBgFb6UPe+Xq0rEA1NprsmmRS7P89nk5OeMtZSyH/Nv8li1aex4nRwXor4D02jdsQRQiSztm452JYgGcBduRF6sryZjqN55NXxXj4nfFzUbAlubCVs4x7YfEi4IV/eJpLZUtIF3aje7YXJ5biWY655aqE53oJqcXXjvDXz27Wx4MdF4Y4JqBgs4pVpWW3W0RbdJympksPiMfsLbw1o8CGPEOOR5gtJvNKlRVGaS8NpnJjp+uLKMM5R6Y+9LcgHuxr7x4xqogueaWQhfsWRX0YokKsTataeu2/bkLH/Emiz1Jjuuy2/0FSrBxSzkN1DDy/isMo34UeALR3JzeJtEGSdlF77GEVWCZ7yhQw352brZpdL07FtfeSlv0cFtdwoHnjrS04dXdK7wabmq84miPbRMWnBUxFSdlsUVsmBO6aZEGcWwEh/UU3xlFYkhjVA4R3YsOMnLydP4U9iBRsGb9QsqR9IkRsXHYIdwP11sApskPpoxaMGqJy4MYozL8h3tHDfvV92wvzy1EJwx7OJ2UqzcBlQd+DLSyt9EWZMUjAc6jIC0D0HmfpjYCqRLIqxcG57Ruy7e0R5yZu5m6K5P74FVAGw3q5PVRnSnLMQaTTu5kxud8kg0qEmuxqhqGtghogCtJokZTNeOSpSpMmFoEbJeneIaqUaJSwvPuopQl7PSM1WatWpW1nRWr4VPhC+hkKhubZkwAX9eWYwBztRidCaAdQFVxJ/rveWrtqXGkje8AprksREiPA+Dy0ShRtEr7CIJURSsrCpfnpvxORYE9MXC95DgRg3di/QzTBwXB1X7G1K8DuXeXrmjAwcIZrNpnumMBrJuqTHMXZSVpfNP5PC8qVwf5y48Fu+l7iC0X4i+ZLVTtrDnAjhU6+hRAiJ7cSBKGlG6BQkamJd4DSRNmFbOtTchsJfRhMb/zkax89qPWBLrK6Ma4LtXxULouc0VoR4T5HHPpgXYyJzrR5RFxOWIIWB+jXLid1GDchc8k443Jp5PN3cu7vfrBS9fZe9N5sfa+u8Vi+ZtbsIflNwOL1i5T/ChQBK2heai9WYMDJgsWq9kZqwVOeL+k2eBGyEfSIM+TuvlWa/MnhT42SYW4YkRmfWet5+rHtFLqR+QISWR6bJcFCaEPslGS1ntA2kJQWdLit74Sz2Flx/PlX+1ddYGZHRmbLrO6+KX8LPVPcNAoWh/Wjgiwz1b2TKe3ribcMJysk1rd4vmqmvZSmMB/RnfU0yqNbkBSn8JX4OorHZwLG0IbVttIft2QFSqExXpnClZpt8WSjBtxaNEKNB1FxN9y762lq5Z9fAara2qzAOB4yLJt433ObbxF6YRhD6eTcvWmoaWV9dZneOtb9LVybB+Y15Sk+Vv2dQvZtRdTqmCtM6BVnGaqUrfV2ucEKKSxPOjEIIBJE51nzads7ZVj56mCUQ+vYls2PC15m6MAwgSmsSMSqfIFnMqb6+quilKq2+EPVb4S7Yxylb1iFYnSVY4KqOUgqmeyTjPOpnLWqhwFIO4JOV/c5aiAubYRYUeT6vvkiCdMDJrLhMtTAaHxvNWiaC1nEcmxAEwATwSuH6zCWb0PlYcdF+XijLp1CXUhaVAnl5tBM4En+W3ghyYCXa+K1Yn94fdSfpbOZvqoTV8eBg1n0w/IhzsTFgNCCMgsQLWDTb0lqTueDSYdy3P+AS8oXzU5Gz4sH3V8tpaqlc+TT08eL0Yba9rTFpo+uIfmQRKc8OyCwu42Qrh1MEnbtfBIwTqGniLWFmSrdI6zBXR0tdrkfaaWfaehE53oRDc9sap2EAAXPG6y4XVwLnOk4BCJxD3eirSFJ+kp3+Ab2LDRwJTx2bnzKaLJbMHsx9stlmgZTHnclGYxx6a5o78/vRuIFqveahUQS9TmtvMmK6ZtqNnEZ5h0W7j/RX8uK+wOKtsFvb/TAnHsO+a+OpVB60/aFO7teGsjSYVJ9s9QyNdsPZeFh+vDBD3jEjZcQIfO0mg59i+Ru7JLXuJldsHZ4z0D5UNaGs4JoKrlIGkSK0O+eq4btt1FitoUM/nnK6ub6tVqf+EqOFSs2iqMZORWkc+jq3NCQ9iVjmPk3WxsluPjuvb4boWFQK6kXqIMmFoFayzfqKxZOrGR9VmQbEz/XMorDc/PYCWbh84deQMqBr7iitUTnY9OytWbjvZ9YMWSktscO0p562B79OMB2gjnD9zvw3ue5ftCqRp19IoRgT/Kxw3GJb7dquujEDAx5nmHCdMmy9VO3WssV2npKACTeQOU9TLzgHy0aqRY1W3/4ia0owEo8CFuxhntQKow3TVl65KCtVqtkhwlYKxRCTvocQKVJ3y1fDUfvlJ3PSrgjOfSGgzMYFUI8g5OaSqXfNiKYYxMNQzNqlXOXuVqrWqPBhB5AVpzPYZirnnP1WKVtOu033qOq5w9hl3tDbN5FiXx+uafVHHawCUx6TNuw3Q7mFGqOlkDSlHLI50nKlKtX44PaF2W/LMQeRT4GS+TtcpdwSrm4uBPrwntiABq6TdA28YOeVacgpXbIsTVz7DC0NCGFvhom4duwWamdFLCTsEq+WfD5l60hsTXScoh4DI91SXmcq4y39p02lJ1oitPZsz1/PLgy7ybxoOqUYCgiGoydgDZ7u6PB7ByflDa9oj6PEZGDLQw+FFXn/1KkRsyZGFeTjBPzK7AKdYJzVkcWqezKLVuG18wKJAdASBb9IVn3ZO8kJePUoELZgIbv9n2L0cJxDiYof0IDQeDpBxNMcladtsm5t4s9r0lniU7aTf0AcGx2r6tVK0IJi57v2A+qzbt1n2hKvYaFlN/BfDaQpqllGQhzT0giapRXHNwA2nkvTa2toxpRsuL9bHrsJJmxcoEpyyNdVt8/kxc205Z/vLRMdeWWxfT6ThZd6RlaawkuwXxCa49GomCFfBdmPbIp+uPprDnBZS1YM7KVtYONm3hW1Lc37fqVdWznjDs4XRSrt5AWlaoeeJ0JR/fwLgYCT/mN1gdQ8DpoU9VHNYF8C6g7ENIwPOmdJYmT25NYD8OtDAz0FQ+VjTxWV/V4I9HIzaQ4i1WHQBy6YRBX4JlclfrVQGU0OMC2pms9SNLgPLYhMt5q2W7lIBWo1BVy9REwYpq2Yp6kXzZVdzr1qq9YtXyGBN2uIOew53YYQZjV/vmVNt3pqbkbJd8ggxGoeqtV4lQrFcnFAXrVBKlXfmYFbmzVktby8uHdhRAuYcdf5Z7MQHTDHoOAE3lY1laKEZTrJpbzaZrc+t+HGS06zoFa+zHtexVubr88SoyilUTV38HPOc3cTOelVVeVdZ11qujq4SzamRbm6SPOttlfBPKhiTz5PcgTwCWwdA2UlswNb8sHkSOTbpxCOsUrEegvaxbV4gAp2Dtwm073eY0E+k4dRidUO2JbgUaPOxxJ05h9nE669UF2vxIkMGwGe5dUpyN/RQVcjbVTWXLB8f181fjeNvSaccLRP5ymfTYI9UeGbe7TwaAZArWzmK1xIuWq6KW8IpXbhOiTvnBelXSteHUilvggD9eQOGOKVO0fGWtX2zn1pL2mlz/tJavlhdeFiivuYEG16r9duNr3q0c/UzrFavSCHL8kQvTF/BIyIIUVw204wx8mHaT2N2sOEkasA3tskhLw0GG5IgAg1+S5V4P0eoLdCmH6d6xZ6/xFJdLGuZX28NEViWoSSB9BCNz6dEn2YkVPqkVO8YI+y4lfR6cNsJ5siYCOxm3jLZ8oFNcd79VctEqNumTQ1mdH5C0I/tzVh1Yx95tfCvTCcMeTifl6i1C9q23WH/mylkOcTzP+pfespfwfQEf1M9h8b301n07JTBDQIUOnjKC+9nQD96EbGIoODNs16niTUAyFnDKRslWjwUAwe091wzI/YpSLqMG3GLGJtyATWul6i1Z0QCxOwKgtpnzywUAM6apKEfFetVv/Q+Wq7TTqylly3U27ar16U4VqtZy1fLPlN+sXu/Ac7gD19sHBaaqRN0BO2qNYS1T5dxV+U6U6kbRPnTF9rrWmkE/ZsX1Von5TU2E5grgjLUpg9QKUj9SBNKFA9EEtQqeuViRMhT8NkOQAHbtFi1Byeou4U3B6uXJPhf1l+qKg0ybOYXmyGJVf01/jjwna+IupMf1XiGWQ38p5wPlPCTy+XgDHtKma43YTjUzTzoggDwUucNrckv9A+rz2TrUBczWohPC8GmOEvG05aNWdJSx16SXMexYmSyAjmodcYvQjur4dKITXVnilYc7gqw2J+miWjUQVZZiPKuhMHwKMklc+/FOb5noJtnBEBpnjpGm5PyD2/7nr0q8Vjpblq0GcyyJ0NQSjAppYt9e2sYNO2aKVbm3jSdt6JWsGj/2BWqWq5bX0m+7rxoo8tatTrHJkrdVjELL2qCk6Q/hjXfWpGRdtZ0cz/SxdjyBPV3VKKM8t60V5L7W9KyvIZj40S1XEKgQJb8pVYEgyxUPC25VJaatbgQ2ZB59TctgZNN9nQINPGj1vBoFY5NPnhtuSzEduiJ0YU7epAl2Q1pfOHEPiFfCfZo24yS/yNpwvFV/aIQtWJbmQmIDfjecL8lreP9SQLF3crMo8DgLB8LNptYGbDIYPUT7D8+3PJ0w7OHUdaOblb74xS/iH/yDf4Cv+ZqvwQtf+EK84x3vwF//9V8vxvmO7/iOqmRp13/6n/6nl1TiiyM5z9KTBQGRvynVPubei/I61Xd4epTOcZ5acqO3fXO8llcDjUUhOVcgOUO2HTFZfnBPM2baFbmaFlOzCi3XrOGscjNmzMC0K5+TtxfVq/rJbc2fQVZGyzkDVaFZvuhUZJWPXQ2vfLSt/o7vjgCYVVE6VWtV6hSpzYLVbtmKFqz+SAB7BIAcFzAHK9WmdL0T16uM3qV29wi6LXyeGDMxZoJasoq/8Xq+TB7zGakFK09U3lyemWsKv2cElt9JftH8Ge8aga8R6M6ppHGtXHRWr6m5cWb42XUtcV+L7qk8HLU8Nn5JH7Uu5re2qSpa1Q+1fPW8lV/H406mvX+QtONvvAqfz6jJwIQnjzr5P8ZiBG3Y1C9cyMVuCOHgIJghwQwlws/kEOSy9Kx/b0B6s5C9F1gA5Cc60W1EtxeGjYMgzBxQlVw0A9iZgS/TUmwlyt12rA98lU7zZOfKFautjt6QIWJx3sRvitKkNAMM7V4kq6Iz5je+2vn488AtSkwYt2y3LzucJpIt++ZSHiu+I8V6LWyqv7WStZsY5ad2IXbdyPNaWIModeeUk7FKXdb0uebtbouWyTFrvu7ONF6Y6Er6s+alShw2+Rph2TVmoEIACyacmk97FZXjsmK8rOfFOvlMi8EI20LqLytUM+IhH3J5OnU2tTuhctRkmIIsyW60Nm4IfozHRnHtAGz81h3j7BPmePC/0W3vqS1HvOYov4WsyaylAcYaQS83psUHCwPeFn5X3vAb+UA+AHfx9gWR4SnNpgdpSrvW0LUPyeDarmnADwYeJzoRcAtZrv6Df/AP8Kd/+qd4/PHH8dxzz+Htb387fvAHfxAf+tCHFuO9853vxE/+5E+q/3nPe95FF/WCiPWvgAI/Jom1nIkh24QHD7778MpiviOByOcAAvc5YzWmxwlvzG8WrFRBWsuX1R3zNedTukmLWiMPv0RDNd8CZ4imfrZXSFUBSbUy06MAEulSVIv8bdWrlWNoJkJJT99nq1K4QBa2Wp/MilU7lF34XDeWquysVqd4yREBxlp1MscJnNEOZ2SPBOivyVisnmGHO/g5XCufrDKNkPRD24WIwBNjB9IXvLpdrC5A2nEArDwmFAXtGTDVD1IVEEftY1b2vstzU7EnUcXQBGsiW/TeNYzAel6rq4qzbK4B1RrV+hu4rX05hGu3seEofa5YGtQ8g+Vq49kmjv6E78Iov00brVz16dxquToZiw17S7imoc1pF0Qao1octPOaSWX7/mVHDjdamWEobodL3Zp5cxPa7crk9J5mw2JgnbDdzUczne9Lq8c6yuFENwddTQybq20AoH+rkuCarotbbQ6FNGz8AT9z655gg3U62ZzKfJHJLWPr84T15YojfD/RNLyzlO6oMDCLgSR7wYbOzQ1bqZpM3IC3Tg3Wq9R4LV5V0hrlrb6sT3jO6hXQcrT2kjBTVqvmI1G+bps7vYVftLytPG71lWtC/IRmK59FKp6S/mbuCzkeaZ2yFOxjlqIb+1wo0GmgLK4ptb9Zr3UqECvpFIzFbst/N6/VOLFVrE96TDSqdnUlj9Ui7DpvWMzThVUcSDZghQ4/dg++so7fi0VioJ0Ne2zK7g+hWdEuZZvdiNo3KN4UJLKOl4xn2qebV+KVj1JzazD7TNzGdMKwh9MtoVz9gz/4A3z0ox/F//K//C/41m/9VgDAf/Vf/Vf47u/+bvwX/8V/gZe+9KXDuM973vNw7733bs7rK1/5Cr7yla+ony9qEFqlPF8BEh4ktrBtVEaN/pnpR5Ol7UrrTZN9GMszWhphUo3z75bJCk1hIoNsd3i52yMiwKsJsrRrVXpp3RVoBK2HDNiiwOqoKnq1PAyaBhqSWoeoPG0VrKCOG1gSsKGAVhSrmmADw3pJIpFn/GdOgeqVpd6C1R4REK1WRVkajwTILi5KVVzHHdh54MHuZ4FaPyVCUZhyATET+ZMa2htx6Ftk/eDTxMUiVtJRJSmVdptrgNzzyqe5pElzOdeVCFD9sNC1Wqjs/qrfTPCA9sWmdBWQItYuVNc8XMU8ihAFK9k6RsWqRRoWkUtjdvwBr4u7TVbFgiKVtMOTIld9h9Gq7tJ3Tao8A5ycTIP79mNXbiQ0jIXvhmyjfCjVsLj1yQ41NzUNgOiCXuLmr9M5aUen86pOVOjKYlhnlh/J8Cnwoz+mqXyzSA7KrCGfgoxLM5ZlXO4y/4/bbvujPVql5/y14wH87Sye6Zx7EFkTlkk3tF2nXJ2NYrXwc8Wq/+1k4bfoyxFezrZRrSV54Zo73mTKIU2q4SztbBWTVlErWLy3mDUNo3Xz3JbOWptXtNraOxhw2PtCGs+sKdCUkoKh5INCNvu8FzeM2P1Wj66NpIijrmyjm/WXPJ7NRsXgvoB3XLcLbsFnM5Meh+lEQjEtrRQ5rUO8dbbqlPFkfdfF5YES9QhzeywQ1v2lrIPWONY0kTS4/bDYuFwmrlHEZsN5l75mbZ6j0JdK32RluYhT5doO5QQRB95AVxOrnTDs4XRLHAvw5JNP4oUvfKGCUgC4//77MU0TPvaxjy3G/Rf/4l/gRS96EV796lfjXe96F/7tv/23i/If+MAH8IIXvECvl7/85UepQ6Sd07pwcuXkt/ysUQ4JFDx2SQym4M2fqrbK1It+qLKVvPBb+/itQx5IKY4UwOi2p4X7seSnGTyZIwXcVY8GmGbMst3fWY1yiFf87eupcxcW85DjAmiSbf1FgTupfy7uSbZ7mTj2KICpuacpOxIgPyJAFbFyTqr70JWEcadQteeslnNVd5gULLY+ant79qS0sN52AUTlw1ZTOx6gfdgK7tgAPgP4WulHsuW/bZkvbtLfyp9QZOyvbomvZ95OXI8bgFPorl5T3RY1ST7kjhPAtckfD3A2gc4Ik7onPWpgujZpfJoq/1r9neqW0+imKksZv7l1q8zSr72I+u03VcnrjL/lmTYK13IcQAtjKwMfpg6yCUq3MBlxHeMGRwPosNJuq/7q0GH8EBkbl1u13Dqfvd/KxTwvjUYP2eBqz1qSlNxTS+F28PzcEQt/81A5kOV814muBl1FDAsAz8w74wv4yF6Vz24gLLHIXc0C0GG3+mKR2Cu7Co8Mj8zL58Zvg5QdsFyA85f1fTboZti7x+T91vxMNkc18XgADm/0moVqkd/nGIDR5Y8AGCswIUdAUbtHgrzkRWjPF8zJNX4Np4ZH1dBB2sPOfSh5xWa3ClrbvhTCCK1c0jebYrWVo0j3+cQ8bV5SRt+WyjR18vVB+PX9uctUSuZ7jIEsvgTVv6QMovpniJtMvRYLDMVh7aW3r4SFVXGNpccaqIw9Ws3wJR+brqbpfw/e7n8enj0Oy7aRPR5L6hMMO851yZrC3HfbRbvRhrnjja6MnEzMd420r5o+FcLTHJP+Fi89KjHeG9PX0j6pctC11mADKnTgjWsZIvCzf7G1FW4pOmHYw+mWsFx96qmn8Df/5t90vGvXruFrv/Zr8dRTTw3j/Sf/yX+Cr//6r8dLX/pS/G//2/+Gf/yP/zE+85nP4Nd+7deGcd71rnfhkUceUT8z4/pzz56/EoFos8JSSzJ4E7pPGklsATEy2W5Ok9GPhsaSrktjlHbGt+mylq8/d6ovQ5FjUwQyclXZJV8DdCesSzxK0l53E3Yob5SnwgoWi+WbAXM/XnMFbH2VdTIgyzP8Jlc8BLTjAMh+2MrwBdQQK0BnnZiqG6zWpAUc2w9Z+SMC4oeu4setVPnqPlo1myMCruMa7yAfrm1QtNk7RD+rpXG7vQrcdCsSqm6Mm5uAWTKitkhRy1VCUURO9mNW4Z7I74yiZJVuRGjb/0H+l42FQ+z+S37T1ViQCSGkRc1t/DQzXEMAUKsBAQiueU0HJPtLwZ/ws3TW0hjIkvCDBStEyWzapVl0UsIzTYSxv/HawxRHLwXsJm/tc2j+g91A628mDxmqokwcBVNDp32nBdNFzkWDaa1sDRvEmc6b6YlOdHPTVcSwAHA2cZn4MgqPtX6aJswb/pM1YZCIb566XzuwZLLGnR4L0A9KBR6MZwoAAyy+nVa+NVPD47FIvhzntVbtiKAfK3IYV98Sytb9wk8tUg0+SY8LgI+vPM1LzmutStfKk3KQKGcNT5FjDVPLWmPNOukvioLeKIGnWj45n1X7kza7B4Fk3MInUE1T1gNhgt86Ibv5s+UnG3e0SEZx6ntHwy9598pwqHmODL7xZqXwYUvlLgsRdRNnMqTuocVqX0Kt06xY0ZdL0uI+CIl4ykug3jpPsBkDPLlu2ZR3MGXeh7Z0Hal3knZW5oPy2IcW+omuhxaOCShlZYX2o5umMkk6JA/OproZIRolmNcHAHDt7i2ZnOg2ohuqXP3xH/9x/LN/9s8WZf7gD/7g4PR/8Ad/UN2vec1r8JKXvATf+Z3fiX/9r/81/t1/999N49x1112466671D/PM/7NF//vg8swosmBvHVaGo/3x3llZHLwQCe6vExbvmbaFKvbSrj/B7PSVLr0zS5/J+IVLwbd1q+9K/BWYBA0Hkt7div4LMGkAFW3Ga9snbPAoZXbg3mycvETlTrRiGIVzW3f2nUWJT2vWbHmlqq9UjUcGSAfpiI2FqocrFav4xqu46xaQWhvlK3tMGXj+KRw4rKcrF+ZWZlKuqJodeexTihWoEA4P7Xcf1WkTijb/0HmGADOFUU2HXej12jUZyippukPjGKlqvlXwF8PhiUJE6Rnnw2JZhWf7GVbXGFRx8tlg9yiLJtOXxXqiDI+nW74Sdq5Ya3WgBZ/2Rcsq4B0jeIYZBON7o3p6JAUC3UIOJZHbq8+2VM3tPF+ydGt8Y53bzqdV3X16XbGsABw9zT1R98AyGbsbYoFMyguQkk2v1GeE/nqCYNVNozup1g9hlYinwgEcx8/v4WSuHWJDOQVF2KgWFVexaDWTVUGLZ66Y7xqldy0VYDflp/z/G90t/q0MthfQI4i0HrV/C0EmcI9aOl6hXJOe94z7Q7hvFY1qiCYhqpLgXbP2ChJZbmyPpOMkDQnwbKmgWLzNH3BlUbW1o+NO9q0WGMCIwZQhdMmjG249ezx65SjpkwcfhHk3C2JYbYdtLgHzOlbo0SsKWwtz6AjbFgypXwTJo/slvKUfmEP4ELB+IvnPsOFyVwiOoR2HECLmxRzmYyQM+CxNCgXXVHl6gnDHk57r2re+ta34h3veAf+7t/9u+fO/Ed/9Efxtre9bVHmb/2tv4V7770Xf/Znf+b4169fxxe/+MW9zqJ6/etfDwD4P//P/3MITC+NKIK0nNwEtyh1UBECY3nVv37+6iIavlQqFoM1f+J61qnMkiqhs6AO9HWWYDcz2AFc7kbUnJR0eJa310VqBudg3U4kttxsQB8FWStHTZbEX939x6wayHVf3ZRZKmwrGx0HQIk/U7CqH3O1WjVHBmCHa3gOZ9rCUklBgsafNdAijWQTWFMaqoA1qn0DZRfPfAeqZTk8wJhLm0eFqv1193XpcuUY+ONbV5L8TRpWVvw2fUY5rgAAsdhoIDQv+e1MIB/eWbmGAmRxtMzFwyZsqzK2tCu1LVdkw0Iclx4lPMNIytleggD6sqXWj+19qPeH4f2dOwsD+mHDhHXWqzBdgINcuM+ZRWtKZjFwjKE5nQ3sMHsbk4x4h9MtcWrTLUnHwrG3NYYF0HDDkkTcKp0kkVqoSpyY/tLgYuMmaYqSJFgn6geh0roU3pKSk9JyNtke6zfZFrbUjodh/L3JzWGyG0qsRYXXW5yW28vBjSCbxeutXsvuKGieBd+y4lwppuW15m35FkvUuX0QSyxZyViyGgtWSXMyZYpNo2wyH8Pi2M+kb8Vno/jbKqL5bZu09NpHaoXfl4sDR85eZcxcFvixbbQyDsTEekiM/FzZLeQwgCuyUatxH85MfTyHeVqpZDnqPqVhohICj+AVowrZ1+tYxJOBx2bCMY+pg/wH0T63IFTarlrPle6hFHFx5ak+wRpZqSznN1LjQhlLehTKOkQkBf4xMqXlzjO6mmj3hGEPp72Vq1/60pdw//334+u//uvx9re/HW9961vxspe97KDMX/ziF+PFL37xqtx9992Hv/iLv8AnPvEJvO51rwMA/Kt/9a8wz7OCzS30qU99CgDwkpe85KDyXjb57VJDoeOtYvWogvWVMRstAEeNgNJgVEU2odkMo0biAH4FZ/I2LFesJkltoA6XWMwy7TCrgpVAk3+LLscAOEBowKxVoOikHI8B0Myalkfno5qJHAvQzqGR+8ou3B4bIMrXyZyFNToOYOQmxzcfwsIO13iHa3oKi4DCCh/VYjXgMO6rPV7C1Buqk6/cnwovzL1qudVzQ4VPABNhngrA57kqTue6xb/6QVQ+fBWRldzAGfm8Ml67NbftGF3lKZHl4M/Sqo0xGyY1tnN3v9KxsnDpyJSH2aAIQLp84/OLpkQ1ddL7GJoiAkrsw3MQ1KJS6t45aXTbn6rbFjez2hjKmede5WoZKJML/s0UbuN5aZhONvSf6EQ3CR0Lx972GDbVHHAnsnZo9HAoG2lo3MvpOIFGGZ9ySZK0TEUxM0YVSRIXRKNBc77EMqDip4bPRCFZgta393tZ4yYjU5FeZr0K+a1vEfUoADQFKdDz5Hdy5YXm3/zGrVarkj/QzmdtsjLxiyWxPzwocUeAsN7kq+GhF7vAtl7w+XkcTG7N4BK3EDaUidGHoff2ZTZ4KTaRxVRep0udlau3QymBCeJ28hTqlB1L5OIq5OvVp9nYVLtJauVq81Mr4vMirkNwngO8CS0PeXvLxqXLljS69magvUQIUUO/EYsCy4qxhmGxn+/Tvkk9Vqa3E92GtLda+bHHHsMf//Ef44d+6Ifw4Q9/GK94xSvwH/wH/wH+u//uv8Nzz13Mhym+8Ru/EW9605vwzne+Ex//+MfxP//P/zMefvhhfP/3f79+ZfWP//iP8apXvQof//jHAQD/+l//a7z//e/HJz7xCfzRH/0Rfv3Xfx1vectb8Hf/7t/FN3/zN19IOfcnXrw2Pe80HvcOyzcRMZ4y0c1OXo9I1It0q7VcWlhxJbJdxSLH7R0J5Q18ZlEe1g8/wfzW85is318FqJVZk319ydY9cRODph3KR6x26D9w1X+MaosMrcjaD1RN5g29fkwA5mNX3SUfGxCFarMyJTTLU8JOt/Xrh6+cUrX520euyvb/OyB5VK0ZBUUWUX7eY+A5yEtjuSxOSvb5IZPuNaoftYJ+UEo/LDWJNWX9neIv1NqyOxz9LOENL/9gKQjI5BAewuivW+t5mpL8HXpN/ObXxqGNcRDiTOYi8h+5mqh+KKy2v00DMBawpHyO5cvKfCjPIv+ljnQIuOKBGwGs2aaNoJATeeFfxrVE51xP3Oo0E+nXVg+5zrMd60TLdNk49vbCsDaUk8EpkA5kNr7gLaBP1849A769pAxmF4+8bN5fserLUqbW0WAo+CqP77HxGM96uVE5R/fgsIFdlJUTMaaJ6zRdLUrrrx79ZHlVMSlhLp7wIVajNQ0g8NCUmBZnyA4sadOIQwigcqiqloncr3dD02lGCBR5QFkLcOW5ds3c2HPeWxemxOW4FsA2LeEgSsNNi1lT7QmU90yhjq8gdSnc5+H4o3ANK/dJP2xFA1mbf0ibY14urrMV7uLYuBmOd7zJxDnvdQgdEnd0o48BRQZpxHtMsl6po5B0WVppI/04lRvnfVh+LXzkK+tXo/t+BemEYQ+ng2x2X/ziF+ORRx7B//q//q/42Mc+hr/9t/82fuAHfgAvfelL8Q//4T/EZz/72WOXE//iX/wLvOpVr8J3fud34ru/+7vxxje+Eb/4i7+o4c899xw+85nP6JdU77zzTvzLf/kv8V3f9V141atehR/90R/Ff/Qf/Uf4H/6H/+HoZbsoyhVh2bWPrAUaG68wKvrD+LOHh51s00/k0x+zWJiOQWGTieXL6zNNWT38AJ0BLwFsbriVwVr9sxnArZt1UqWz60W5Os3tEoVr4NE0g6ZyzilWLorX2dynp4rPHYiqgtTwhUdOcbsrZei2/O+0bJOW056xOj5C4Ix2uIN2mGQxEW5t7Dnb3/6F/jjgw/ZRC44UIFEii2K5WpW9UbHKVYGqv0bOKVbD70EXHSfMAQ1R+qpCU36x7k9lsMGP8BDatJb86I4kIP0T7rq79QF4W/c+PJv/PsRhpGPzkw1zmTtJM3PbptD3SJufo0ug2xdbmROmD79OdHF02Tj29sGwDStNGzEpgB5HkQEKMcyCCA03RYhKOVM2sVBkYFWxusYruLSvt8gW/NvjW7XSZFFmSnHDNnXnH13oLrUA3fvSAkLO3weCxWh9CQ+1KG2/+kEqmk08i0u5yYihgwkjNXgoddA2MG44nlEEG3crL7vf9OKmEI55KXZ1itUFqv1p+xS8Lsn+j4/n+PUeGo1ld2IBAPeFJUeUyDZ+FB+XvK7ZMolaXkZ4JjS/8kxoeHhurLJLD1QwmI3D76AqTlmaxqHGi4rVLE5T7DU3Q/D3ESBZ9pCf59qQZjc62LixXJV4wB/JC8+22WzvBdUnl7JRL6ctMj5/Wm6LydR9VK8rSicMezid60sSf/qnf4rHH38cjz/+OM7OzvDd3/3d+N//9/8d3/RN34Sf+qmfwj/8h//wWOXE137t1+JDH/rQMPwVr3hFOxAZwL/z7/w7+J/+p//paPkfnVZG2zHoG6R18AO/LZ+YfK4wJROepUsqb4PJaUdG8baXdUg1e5cakSkMmXZvZfXucVjBDW2hQO5LD2REA4g1bTmaB7XgXRP0cUpWrG/x2hEAtV+RPzJAtn4BXBW4jIk86PUWqgyiHhT76zrO6Lnavqa9TZ07sKb1EzBnUYD1j2m1h9hCRODJDRaCgHkq+mpQPRpgsoewh1/54BXVKttfO7/Ix61GFLsWgn8pTPyafqmQfAxKu7YekUE+bgReGMgc43fLgGXKY4GvhLEtn/IyuSRdBP6oOMlnnbPHsBshzH2ItyjmLbI6NJDhwyweZOySIcvcGmYjd7NROm5dfdqhvL0/lOimvaFXiy4Lx145DAvUMTp7uLmFH0SZVihLO8hRkOn4TSmTD0qNR2lajdc/2hY/9rQ4FBwadkheiySTDqNZajYcS10YV35BTqRuqIoDQFFY1vvVHSMQ4xKgZ6VWS1j9FdyqvJrP4F5lxwGInEKS2FZk5ef6nrdNYgFeQCa4Uj0ybbOFStxtS7jRmiSZYAVjV2g6dWGlnOHR6LMKSWdYJsu+RE1S7opNHd+ehyqM7hvDIr8BV2g2g2WXryp1vL5eCS8sBxwEF+XdqK230jkwVIqBk/S6+xoSsPjaDXV2fE343bC4lP9KI209A3j7WcEb1yJz6ECOribAPWHYw2lvtfJzzz2H//6//+/x9/7e38PXf/3X4yMf+Qh+5Ed+BH/yJ3+CX/7lX8a//Jf/Ev/tf/vf4id/8icvory3AfEeg0KlTIFwoTTUREABCGVXUwSWLUTVyA1rA2GudNxyjVPsXctuG8OiDQPGDfBTYDiJteh1gKrVqlq8ijWruLnjMYWwafZxiR2PJ7EGYLU+JQQFaGe12q4zuo6z8HGq6J8W/CXP67hG13XbV3nrCL0j5U1k8Lvw0PoU70aAyhpeQL9dOhUwUN+EV3TD9R6y8PUX3TWrW1BCLXv2a7e7u63vFdyNwpcujcf7W7raB436X+4uuTdkfuH9pj1cPMfDBl4oM1Hwo656yiVnGPc86TZRrvUXhctDkLA2WnjaNNbSWLbDGzRwR9laTE3TPCi3L4Q50Yn2pxOOPRbx8Grb5dcvVZgZ5VtvmbkWhnamPTC4fFhfFiRl93Jtq//2+o3y2SZ3nvuwVc5eBVcKhp30Mh8uRbMWbbivWbHq0VTaXtbCNVGUQtYAweaMk3uc3fcQPtm8Q34uHaugBVcjttIGpW4l8blqlcwKp2vhdbdd5UwY3t1sMm+d26fa8SU+NQ8VvBs/XNtSMmFd3nk/0m35CXGsA/mwUXjBmoZn2tyl7dKqyN/Gq79sf0P8Mc/85f5JjfIjXvqtCPIHyV3mtZmWIHLGy6Bz4FPkxXul8SgPS/u2Xwt06YocGbmReyPxRH09Rm1wonPRL/zCL+AVr3gF7r77brz+9a/Xo5JG9JGPfASvetWrcPfdd+M1r3kNfvM3f9OF/9qv/Rq+67u+C1/3dV8HItKz6y+S9rZcfclLXoJ5nvHmN78ZH//4x/Ha1762k/n3//1/Hy984QuPULyrS7oN3RAjTiX70nni7kEVoHCnJbDlGITpq8ckCJs+4bUXudRSrEldQPqlaydX3WzcJgs970nA4lRCiOc65hclEElmXUFbIbox3BzAnxXYYa2wra580V54bASbX85ZJdhzV+XsVeN3RwA0/xk9h2tUvi9ot1dZ4KJ9XN+cG2hCJZ6l1R6x1u01fAFpkbdJ1Xynek+FUy1Ui1JbpOvvXIFsnbfFalUlxGp1qUKDR4eyMOt3YVzfpPuEXDNV61U9xzgBpw2gxLAYZ82fpZMhspCGq2utoL1Jru5LY84CTx6YDKBp+EJa1IoQwzPeiNg6bJqhnt3CxIgsDK0XQ/vk1Q+zV57O+6VVuo23VF00nXDscUjXqJUUwR0yDmVfndGMFgaPzWHBTYJHEMrrB6u2syrmU3i0ELfEXx78lg2DLns9UDFbUC5bJaWTM5iuWabKr3FTwpP4JOn4NDWeU/yF8gWFoVfYWrwZy2Vl7BECM/SIAXNfyga3qmwN6XX9Suds079MnY9DAakunQ3PUtJap4ihkjVQmk+I28WofAvLYrh/VMll3ZeN3MYhcdvv1AlGGsFiyXfxI1dZmyBJMPnN2tPA8H7XmJQlts0WugQMZZNfKyN3jhCP0+BhJnU0beu/0MU1PfLt2UDx/o1DehO3EROVo7eSlK4i3QgM++EPfxiPPPIIHn30Ubz+9a/HBz/4QTzwwAP4zGc+g7/5N/9mJ/87v/M7ePOb34wPfOAD+Ht/7+/hQx/6EB588EF88pOfxKtf/WoAwDPPPIM3vvGN+Pt//+/jne9858H12Yf2Vq7+l//lf4mHHnoId99991DmhS98If7wD//wXAW73aiMy+uDw/AR3m+MCDnvQTobkQKmXMm6pOwYK1ENJtkc53g00KJwmzG5OUKDl7O3RN/m38JXkDVVHvs2bMeDtbfw/VzhJxyCuYj994WMDFelaVOsVmBa/e2YABQFaT0SoB0DYK0WmoXCpOdatQ9eFcXqrB8taFdRTnq4bmsm7UjB72o+9Pu2op6Xucm6ywEOE6C/sO6puRnlaAAGgeZilVvaNh4dYBKh5BpRvO8EDzZsA1h/QJdqaWtkSVCdAdUa1d8C8xsQIy3Jjn7NPdkQh61fyKFY/9OGnzIIZjBLX9x0YG5/ytPPeVofw3S30VfHydv7ojw7LIX0YBYLF4zBD6NLWBzcTHRSrt68dMKxx6JkRt/nSKsutaXZfw0JBFlaDxNlzRh7cwJlK46y3gBcKciu8UtYXobDUO8h94DrfJLUw029Fts2Xpl7eqUralj7QFRQdHbxvOKywaZeMWvD2kez0MVRnGz5lISz+agWS3jr46oYI2mSMqnZLtLcS2Fp6w/CTBqqRDVlMmuMPifP12NHTPfopmWHEQdJUlJWI+tOU8qKIo9V9nizCRcsw+ZZtfFRE6lHByj+sfJ58VOeFpGHxV7HfwrXqdVV2suWL7bfFjpsMDg/jTpn4GfjxWI6oR3K/azrkuzmVXdsz0WZxTrt36Cr6V4huhEY9md+5mfwzne+E29/+9sBAI8++ih+4zd+A7/0S7+EH//xH+/kf/ZnfxZvetOb8GM/9mMAgPe///14/PHH8fM///N49NFHAQA/8AM/AAD4oz/6owNrsj/trVyVQp7ouHQuxWoNXJq4c9oTgKXWYVWpNBxJTQGdj02wH217XW2FKivnuGY0CqFReDLpdbXIIiF++8ZvWxM/BNTRDLXGc4qwJdTDAz6K4tQEA1DFKUmbqrtW0r71JwYw68eo3Aet3Aeu2kexrP9suo6zuOVKr1mVrKWMvkW0Dtw3bWySzdTFoUG4s5sF4BWs0hfnylAL1hSWUT3gikah5feMsGxpELxL4RHcxDNCpU9YIGHjz1VRLNWCkVP/gGcRdupP4qXjREx7hF5ksRLThI5/WbIcZQe8o1M/VC7nH+sQb9dCfWKcS7FiPeS5PNGJbgI64dgjko5L53z9fUhkt5o37oDFcn5NwuCp4VqbF8IAoNtR5Of3doxAL0MJ73x0IGAir7xs5fNb6wE7RSdKVgCZktVaqcZ8ouVrVM7KlxqJZsPjwKtHYg0+ZgX5AJbE0w/kNv+ZzdPg94bjS6n8/bYv1KmtbdJ1zIZ7kwIZAcc2jRF/IU+rcazsopQkwKwh9i1yLH563qoJV4lhdaraWh5ZKbbIEJwiFWC9Cy7nBaie/5K/dwuy61ar7VkBzHJP67PUSgt0kbgrrCH3KUc6FK/wYj7SnAQUg5UFK9b+cejlF5vq0MlK+mI+nZwoob/6q79quyQB3HXXXbjrrrs6uWeffRaf+MQn8K53vUt50zTh/vvvx5NPPpmm/eSTT+KRRx5xvAceeACPPfbYcQp/IJ3rg1YnOi+VR79MGkcCVRf2tEd06ctLWpcFdBoLpwOjDxvO5wdM9NlEa5OwwNopLcwXY1R5LGW1r2SzV5AKpAUENn88LoCQK1lVSVkn49Y9kskGUHCqelOJB3jrVQHRBD1rVK1ap51+zEotVTEHS9bo3+HadB1n1J+nVSxWxZKgbRdk19Dtl5Dz7a9TrC0BwQh8Iq+CG9tdbXLidpascovqL09ZNuSPDrC/k0GD6daShLLHbviMc7NYRQOfCvSk69g2mci3j424dCuWb9MecX0+rmtYouYgNs+jqYts3XNKZAeSBZVDgbtHhNsGz+EQlEQf4sxkzODgz2SH7SOBpi0vUsG6vbXGRJ3jatF1mnCdzg5PgE6Wqye62algmTIeHAF/yjjtGIY6nLwUHtwGYnVUJ8WKYhO58NEhxXS9HJzMSK7JLI+lh6wL9o1T26ahKzS82tyqzJRL4wjWtdOPPRJgcFRAlbP5OB5a+t4atfIZ9ZzXGGZkjHsCTJkFJ0v6M87I18Pea4q8up/d3rf8HmZAdY0y0DpwOw2TrsK8rO6lrzxRQok3y9cVO9RhVCWCU4ZmxVZF7kJ1qCo4HXwz5exgXQwwMJusvPDMLwQS6i+3Z1LwU4jjcWNoDgedLYgLhUbJ4GAF656U9sDsPsYyLvFtGzB8d4kZh0raHVZxSHejttFMd/c5cTMlLzcGboo3ch8KeP2wXcM3Px0Lw7785S/HX//1Xyv7ve99L973vvd14l/4whew2+1wzz33OP4999yDT3/602kWTz31VCr/1FNPHV7uI9BJuXoT0DQdAqASWjw75+BEt4HESkTzURSsq/E2hdmptY3+bp4YYuF2Uihg3oiZGYnNgN+XwFtxWlAKNJAHMGgq1p0KlNyrzpatAjw5y9TwVD6d2ESxiv5IgBpeLA3sGau7st3fKFF7Jet1XJuuK8BtRwB4hapXuJa85molIIsW/aCU9bPl26359SI95lS/iipusYJtLW/83JpWm9x3BQeWLGiYp2a9qscCTGL9ufJ8cPjtMkv8HCB8LKRBnwJKuzApfEaEar0axCi4BWEuysRf2iAT01koJ5oMsVEkU5RrCLdr2iT5leZPKeVzSN/cg26IM4sNl2B89O3CJPhXcSG15ji2kvUoyZ0D294KNJ9zS9V0OhbgRLcAneuc1TS9JCkd163UgN/h1UxZGuMJHpOglTgcp6pkRmAMjCYajwb8w2nfNNhgUSmTn3wa7vSYs5z/zyrZLErtlG4x74KSVRW3hhfrQj4dShTpLg+FB62vNItYQHZyFQOCiBZXWo0EgzZ5Rkjf1SW6TTsCjo9wL6Tte2DIKiMsivcrpl3XiIpXK1ZWXBGBsClrGhbwydIQkJ+V2dxlfQKAOd3ir8dYibxJT+6As141cUfHA9iijHjDONx+ATQFowK1Le1QKrLX0HkszJTdMDb32srFvDmwBv0mIwqNGT9nkg6ZRGW9HfPa4l4szLYyj+IefLzDLULHwrCf//znO8vVq04n5eoNojYGbAdDqw9xomtYL8FSeoesfklBz+azWKkPs5NWLrtO7FwjGJtNoQV+OE1HGNWZUS1PfYo9qDLbkBTwhe1JUrWJQWxMGrtt3GZBwT5IrUbCREjKZrSPWJkLFSBSfyQADfxyXMC1aYczagpVra/+NoWqVbqKBUE8BsC3YA9TbcXyrkHJBGseitA2bNosphdtOKzbKVjB4Dmcu1p/wzkR/fmrpiwdgLHgyxai76qt7iOQ7JBgksdkEaxJ127Ptzznr39W5Vbiob8Hi7R6BmsJ02pq+OBYgYug+PiG/LrhcSC/gtU3leNSjgnYk5a+X3MV6DomXD+duXqiK0yM+Ui7rirp2O1zSd2ZlWoXf6QkjSQvnw2nTi8+OiVp+vLmRwBkZWkyjd/HuzirKEFY/jfymqWqNxCwc6oN92nLxRCFdXdUAID2odbeerX8ys6o7Hvrsyvb0iXYWxSrxYAArqzQPPt48XgEO4mt36YNGh+Ocksao4ozFePWDisavrAfva0R6orAKob0tuVlZFgDk5L38uowkbXrGBPcdnKTFqFXrKJTpgqEXDzftRUh/ahV+hvTCb8ResZqL+40S24lX4IF6+a0B20HIN7S8pPwnGzgkeXFrr1EdXAuXXvZilX76lKaDBxlZ5Csra4oHQvDPv/5z8c0rafzohe9CGdnZ3j66acd/+mnn8a9996bxrn33nv3kr8sOqH3G0Q8F6VV/Nrl6KINMvtdK3SQYlUjQyf+lJbKYercgedRPUZtJoDMAzkFSmyAn2YzAkpmBOf6kScFWjNEibgE6Ip7TvgGHBKDJlFkXgdoB5pmQPoKVfdULlJL0qIgbbLtoqlczupUzqYy2//PzJEAk3y4imacGd4ZzZimHe6Yrpf6cnbN5cMA9cpkJnkLaWbaTte0Z/djhD4lILPeMwH4DKjVq0D1GXCwfc09E8ATwPXrB9kvq8yeV41XNNFUGmIyl/MXOc1L4lKfnvsd8OAuRb397+JFG2Rq/dzvQrw0X9K1BIPA1D/tTC2i2suYfqVPe+1sW2FS2jUp59smibK2KhpEXj5rzr2HZknjCDjwmFCSCZjn546Y4u1Nv/ALv4BXvOIVuPvuu/H6178eH//4xxflP/KRj+BVr3oV7r77brzmNa/Bb/7mb7rwX/u1X8N3fdd34eu+7utARPjUpz51gaU/0a1GX+Rnkb60Pc8FJLx6Ebyc44sfGjbGEH4U66OTGYMrLtPL5FvzaFePa328Pv8lxerRcb1SPcM0VVaup08U+G7+6j+CKrunVLFZMStMu6qSVHCrlZO2MO3sf9HdI8XTtTyE+ktVqYrZza1a/o1+22da6+Q4YvOd0f4t8Tjll3Zu+TWheMe4v3tqVOG6u/nNHxq11j3gcnmEtDRPwaDVy+ZX+Bz5kp6Gtbq5dGJdEveIF92OV++99gFCwaFSFzJ423Qai9Pl3h4TVx1M3NdT6rdVlhO+aPI53Lfu4Rpk5YjIx8/SkkGhDRjevXWNsuHiiTB/+c/XSn2iDXTnnXfida97HZ544gnlzfOMJ554Avfdd18a57777nPyAPD4448P5S+LTsrVG0Q8Rn3nTfi8CfTA9RxTagY2u/wujKjzurHcgBVVyxgQ097Io4E+cLEwNcBfwaEFdzDx9ULCRwOCAjylHBODaAfQrp6H6sGnKlnJK1/JXtMM0K6AaAWtsym7lW8fqmpHAcSPWT2Ha3gOVqnclMvy4aqxotm3RQVCbQmDdjd6P4zccHK1bvJuRpkInYJx4zUn7hkNTCH5Dauu8dVN+uVKywIkYI280tX+roXJdVanAlseeWBc+eB5KoPEb+XQ8w21+xuu2E4Jn3wiZQhzPE54IXezhtlMS8JJWNpnYRYMIYwTWZE/mMgM7zcJ2e1CV4l2ODv3tQ99+MMfxiOPPIL3vve9+OQnP4lv+ZZvwQMPPIA/+7M/S+V/53d+B29+85vxjne8A7/3e7+HBx98EA8++CB+//d/X2WeeeYZvPGNb8Q/+2f/7FxtcaKrSWd7PLrJ6L7fRWt8g7E6ZeZSeTjwueNxB2N1IgyGS32m+Q6urbyttA8ut8YApb6TU1YGJaWd+h1mtu3Pvig1bEJTZAqutEYJk+BHo3wdXbrriVu5zV0AIu4kjzUbLq+4lfoW3/cOKG4Jcyolru3kAQEn/BzLZAq6pJKVITu9ZrD/R80AofxKyJiGj0B4CK2i1EawSjxR0MV0h27y7kxZKuVymGr0uxBG1m+gaHsmzJ3fgLOsEhgTG0y/4dpKo4FwNARRIpblOSpP4JEtw0BJu0pd3mJMkYRtSDLf+3gOms5xLulNTJeNYQHgkUcewX/9X//X+OVf/mX8wR/8AX7oh34IzzzzDN7+9rcDAN7ylre4D1798A//MD760Y/ip3/6p/HpT38a73vf+/C7v/u7ePjhh1Xmi1/8Ij71qU/h//g//g8AwGc+8xl86lOfutBzWU/HAtwgOqO2ZfXYD3pJ88CYGyLum34ZV/c8i1Xj8sHahEyH4vlkfMXdwBIHmTLr2y1EMeEeMxhAW93W6sG+/W9bohqfANBUwXD46FURH2iEDNrnWgyq5dGPV0n5VMl63Vip7oLFqihYr+Ma7arBZNzqHwEvG3C9/AswZjDOIMpWryVjNn73652L7joLZ8ArdZP/mFUqNwHzXPsE2aMA5Klm0Fy6b9QNysewuoRjIeyj4R4Trv8baHFbGk1y0QjdhdlHYDJbvRYBKHl/pzyN/uU4bOMs0UiESFrbyREseM3HGFv9YZ4JqBwtJjaBPVMUDn5ZXLh7HtN0NzDJaK0p5VYcOLQeNhon6eiQdjVhyHWc4foB4FKIatytX1r9mZ/5Gbzzne9UEProo4/iN37jN/BLv/RL+PEf//FO/md/9mfxpje9CT/2Yz8GAHj/+9+Pxx9/HD//8z+PRx99FADwAz/wAwCAP/qjPzq4Hie6uvTC6Q785fUdgIrVFigbylKiggFGlp5FZjRpZhh2sKIP6TuvSZ9q+HinKfutyWmeW7UKR170h7TL1GvrNnI3XlQ2O6VnSGvp6ADFtzY/guGZX7JxmhvwVrDl135M1deFnLvE1w1BpmVW9EMb/HXNoODJ30dyrrV7nIJXiIZfVwAOPNit5ZUX1zDxcEs9LsA8bytFG8KLLG6SXZcHUb/130ZbwighrVY2BtmE7K0RViiP/aiVy5e9rGvR1vSKqUbllsfEneCAxqNNFU7qv5HS25rcTLIVFLEEb259Qd89Dln8LY/ESI7IffvEYetRZ92AkTc3bU1ruuvrtsa4pehYGHYf+r7v+z78+Z//Od7znvfgqaeewmtf+1p89KMf1Y9Wfe5zn3NHDLzhDW/Ahz70Ibz73e/GT/zET+CVr3wlHnvsMbz61a9WmV//9V9XXAwA3//93w9g/GGtY9DVXNXcKqQTPBk92foos/jg11XzvsZArH+PtXSOFM4HSkswCCOjONkrx7V8zGwOOeQd8EiZIVvJ8zfdIxDVQKgHlRz4SPgwILjypxqmM0bdtsYtDWoZ64yoYQSosre6CVXRSqyK1HbG6g7tjNUdzug6rk27DRap1tLAW7aOfkUx28/rtPKLDkOKAp8NX7fq2OYx92nkXgpTxetklbBUvqplFKwIddMCXA/+EdhIQANQb6V9G9whO8MjGFQnPM7BsHyky+ad/a7dGvdL6a3bRBbkLYTpAgPUhwkoDuVOeWvl7AeAdRrE4SScg98HJMPnOdfiGZi+NLoReV4iHeu8qi1fWn322WfxiU98wr3Rn6YJ999/P5588sk0/SeffBKPPPKI4z3wwAN47LHHDi7ziW4vImL3QdajIcilj7OeW7F6CPljrkYfquqmJJM/BVnLJHjZYZoHE3flce024LF+tMryBUcKxrR+30bGJtFZGDe82zCS27nl8HHLR6frRNNNtjxk8XctC3NTqprmb23Pocy1jGzLyx6Xw9exlMt+saFty7f+pXsqxhDtsm1UnwuWlEy8hTQVV9jnilpAWTJw30W8oKZlYekwb24tm3a/2nKdYpXRKz2jnDS3qZa8rGUUa1z3catYm4CPO/hs0hOZxWM8h8BtIG7qEP1MVTl8yaSYP1sXoPHd2sDwM17sbjFK5CtjNGyn5SM1wHHK+6V0Vu7V0qzh7DQilr9idKO+G/Dwww87y1NLv/3bv93xHnroITz00EPD9N72trfhbW9720FlOZROytUbShaIeO7qRLkosziqDGNsnRwOH/Ybsskh48KQO/y61X71dKouM/Irf5Ccf9MtIM6nHHkWqPmvmJ6DPwkAElTgR3cFoGRAWq1aASEVHBoL1ngkgG7fqtaq03QdZxTPr42/olC1xwKMZPu4cvzQzH45MVpGpZStEQCAxWahKEHlu1JihWwtVNXNvncZHOqwBqFEYDQFK80FHZZ2rhHsHCMF2EpuQKitExSrbsIPb+3zj1lFmRo2GUDsAAQFvykDbZRR2cZjK5PRUjslqIy4ji1xBWARta23hhtkfuAAl+JrCn02grEw7p9jcD0fnaPeJ7pY2vKl1S984QvY7Xb6dl/onnvuwac//ek03aeeeiqVv8itUie6imRwrOGcfzhZm/3DhL9HhtHKtMNybGVi/YwVq4vo9k+YGIIx92+T4wzJBe+NrVR7t93jkxkGiNLRHWnF3nK1wB9OwiV9KRdM+vA7t1x5Wj1cPmQx55yWjbhhTFsv6JVO3XuR9n323zI9bJ0W+raCA+lhagqCHsSlACcPJ5M2oVkBriyrNvVlgn9OXDHIKVNh3Jk1KRmjCYVqVTazSu2qHeVjHhjl25aJFNKAlbNPUWyczA/4Qtu6AUdXsG5JKd5yGgRywnPxrHGSubcugbAs2ESx3Vx6tX+sfOyqRN9/JHZGCFnUE3Y+UaCTcvUG0uh5DGOuAz9bafvwsX/axyCq7xZHobFcZeLLRlWR74mtq8a1Ayub+OQAjI/tJ4e+1GTkyfEFJPbgtIHHyneK1YwPz58YxLMpoNXSVDBvAV4FIETtiPvSpAxghzP94NVOjwUg2uFsuo6zeHYVvBL1fEcDCOhtSuFyILq14e3uSOrv9+3UdCiJQ3D6+gBlAYyVrjMl/AnYATiDwF7W3y4xBHdWgAyModVpTL7fKvDogAb3PKG5BCgoXvvdIqO/G1HI2uA44lNVsAaFbRs+GtozON/LbSvhetkopGXwZpRXA/pAMf6oWxyFlofTE+1J84FnTgmd1bhbv7R6ohPdLKTTSh1T9j5WmdrUlVOYFEeagNQvvCRxnaOshaFoVySWxYvZbNzK06GXUE71UpBbK2dMdymc2hqiw6rk+R6/1l9TF8Fo6g519eG+zjaOszI15SlT9IKStVqGSt0stnZlNmkTypmy6PC4L9dmv9EdxXDpG03BSvDt2jDh8p0zSER/pA2snJfZnyzioYqLuXV5yuRqlhTL4tONGwAt4LJeO1YIREvDE7fjmfJIC4+sVx3vQNDXPZXHwE32tt8IC9bVxlrmke00+ZB3cDGG98l1YWoW2KFru7h7NuvSRoqrTMfCsLcjnZSrN5TWp1crua++YVP+N2whbUDG4l5Xi2I4abLxqNeAcdNKWIUa1RGY2TG0DBao2XJlALQLI0lD3q4bv91WdF5+3e7kYCWhAVS5LBCyZ68So3yltVmrlo8LlKMAJshbf86VoQu/vcI1u1ocm3Zr//ze5ssn81cBSqJQrVdLw7++6NJSfgMNqcLWHBFgFaxKYrEa0XotmwMC6P3ujbCEy311CDPEXbNcjflP0lAmXT0gM5TRr2bGYYlMwdkrA9Da+JSFbzmD9dD8jFhMy902n3WrL/pbCOSLlNUjAEZlXVuPr9F5458IAHCdJ1znw8HlxNsVqi960YtwdnaGp59+2vGffvpp3HvvvWmce++9dy/5E51oX7Lb5zuFxhrZidwzTQbzYApZwtYZtmCBbE3DE4tpTOQKdGwYwSoZbZqMbIoLbUI9X4kG/E1U4k0pirH1W3KzxivrBQOgap2dBeji0QC+jawFqi1vgwnN+lTKTTXNScMatpzs2as0g/RDWi1/b60ay7YS7q5xi8vW/ZnbB98cRMNK97f3PGI7oGExi/urCSW7SA3ckQOtLX5rcQHEddUkBho9MHYMi4mtXHiMmkx9pvV9v6lKsxyVYwosj925pSRyNr6tXWzsNB90J2hB026/qHGi1WrD3+RvTag2JX4rY/uCLUOp6yUqWE0hl4akIY/qUyr3wnaNGodC5bUNYiPtS667k+aZWrGO1hzLU8ZtSZeJYa8a3b41v+G039Oa6hAGfEl+pNAqgfNNsIAuNWhbhbKrVxIuCOvl4Wu9zFdG2+jeW2WCZwPotoCtOeFFIJalgy7Ndks28Km1CU2ytf86QLvyIaxJ7rO5phk0mY8CEGOawnEAuI5rVCxWtylI2+WPBYhnrC7Fs7KtxZC4XfdJ3O3FaWkgpoYrx3dky9XOz2LO7/4seRGgn7fdckX5zs/gidpFVM+qsDyAbVx5Fqo8V3kQaThPobzml+Vh018kfrQ07X3oZOINa+Xb5+J4IeFJ2SUctf5oZZJ4viDbR2ULGC2TrYAJ56TjpSediMjK2HzheDuU/0Q3N91555143etehyeeeEJ58zzjiSeewH333ZfGue+++5w8ADz++OND+ROdqCN5QTu8mgxZvsE1o8tTwzya3jRSrO5LyUDuXBYvlj/2vEsyYb4O5V/O3zblnadOZSr3OJNMWG8Z6tcImdu/FG9t0xSlDbd395kMxpa+IW1Ixbr0TM/930E+VtXyr0irm2QtRm4K22aM0Lfnof4GZ8btY/u1/xjrEvqE+RVvNgFnstJLR2lVN4VwsuWAu1/p2fMbj29im65Lsz0INn02vxanS5qdrK0d5bIWs8c0Fn8THiWyZDpDjj9NWWx9N/hdeQE9vu1Q2ry+oaT9ItZOeK0veacrAMbjWcrfS3gQZvqLfXjTuvP4/rn4FzNYn+gK0sly9QaSt5fbj2RQWHqmR+FisXl4zhdAxBVLZOXyeZKTGZeH09dW1ppQ4hIaaGM9L8mXhPO2DGXI4owB6wDUBhDa3CN+TWuq8c1Hr9qr1urVgraFzqTnre7qx6t2mMgDRguqx9v7t8r6ONNAtrWMbenMyrTdvjZRlsqubf3v7+A294yiu9Ywc+Nnkm9aVQvKev6q+51CgovEHtjK7bW/SHhLYSOe0BmV4wGyM1Pj7ybgSs5fHvXBGLQPgFoJL5YJFTmZejoLBEtrg+oCdQpPA+Y6/0IeN+BbBmM6R3vc7nTeL61Oe8Z95JFH8Na3vhXf+q3fim/7tm/DBz/4QTzzzDP6ldS3vOUteNnLXoYPfOADAIAf/uEfxrd/+7fjp3/6p/E93/M9+NVf/VX87u/+Ln7xF39R0/ziF7+Iz33uc/iTP/kTAMBnPvMZAMXq9WTheqJtlE0whaztXDd2U5EgI62/i2PSgRh1kCbDf8xK6sNaxoYfi3Vbn787CzCUsW1I6ePRQQPwbOJ6hJO5bfv2blIsl+kRHD/U3R45TwLQyISBm7zBJIIjYV60+77A1TK1KXSnoNgVxeqovJ2f+vBYX+d3dUvawlzl/po+gyUK7SEpszAtaGs88zneIIcQx/P0iAvhGXPNYr3JS49vWvqsfkzAVDEYA/m5qfIYJVaqZbt3lPXtGc9Ktc2WQeOuRfUxprTKjqdLqoZrKSTsxjQDQTu/revAf6M+cqU0uP8kD4LB1Z38iLfYwAu0JBfDQh9w5VlJs5uTDpxWbmW6bAx7leikXL2RdI6xcoDT+gFkJHgTUhmY5+SYAJWov9monEkb0JC9BVYtR1HLyQQbU4tK8O3hRrnqtvazxtvGxwofnj8BwFwO9QeByKijddLnWu8Z09SsVq/RdaNYBTIlqQOw6GUplV2Ok8k2s/rWmVPgJiIKSkiVn/rxKozdgDkSlQ6Ig6KHVHcVsh+46hSsduu9VsK4HUijLswBuSzenqRRLciYyPPdLwV//dPJ5Xy21q5LtLU+C0MGwdgZkQ+rpWmefdpvSVbqmfkX4t1UilUhux470Wa6bGD6fd/3ffjzP/9zvOc978FTTz2F1772tfjoRz+qH6363Oc+585ufcMb3oAPfehDePe7342f+ImfwCtf+Uo89thjePWrX60yv/7rv67KWQD4/u//fgDAe9/7Xrzvfe87uG4nuhrUXgpvobGcWwC7F4ky2RnJbhxayj8Li2kkL87dWaQ+HQoyygtKVT+99av+Xgk70hrsg9sbhnQ88rwsvM9LNCaCFdnIWj/7eKm85NnLj44OoFoGMvdHeFANnTVMmI3SNcPp+/nPQw1RlHtqP9qUy5lStHPKoHW17Ws0fJ3iKIj2fptm41GXZy03qvJVumb8DUnSiG/usCpObVcaURLWZUGtDQJ0bs9l+ICrVeZmdZHfTsZib4ZalXZPd4D3uptOHin9ABNcvxic/FXdVoG+L22Lt2ldYfqj/baBawN7E2Duk+Et5sN9tsMyb5ABbUgv1LHreku4fUsZbkE6KVcPp5Ny9YbSfo/k8Nk2C3c/qTcQdayHf+uAdzhV5VOqZcjAaMZPwu1kBjujtVF0cuAngmtJsc9rKc5o+5AN28YPlq4GkLpzqSx/AghzrfSEomiV5hBlcjmXiqgcBSBbsWQbVlGqxu39y9v8ewvWsRKWMP4QlsRp2/HNtvxw1xuQIb+1CHu4A0LK5fw5qkvpzlbBigZUuZ4JWrSwWuwEdLCvmwF38fis/tCp8Is9eLZMohi25cqOAPCrn1ym+tn6M1obYPYOXziDNcTJmiFSFt5tIRK5AJTTBDrguhAuIiOAelF0WflcIboRwPThhx/Gww8/nIb99m//dsd76KGH8NBDDw3Te9vb3oa3ve1te5fjRCfqSQbZMYYStOqHGzMB7jUO5SP5YUcJtJlBMbBR/ApyI+MbWbH68PXybqdmyan+zl1LarRajm/KEPFoxHEWb3prUYNd44t6i09NeSmkZXFtU8tZmCHn86Ph0XqMVVSsEhI/rYQbz1K4uJ0BBEIdUTFb7UMljl+lSa9yBiEQoMfmbnCQt7w+HKgKQAducyAYLVhZFKz2sePwu+J2pZTHhRAsVc1SbCSDIG9lbM0HMlD03Q8hEq9t8OOkdQawzawrnVI08RvxoT8MhH274YgWrEmlXNIZxowW+KEeLp6Nu8bLypZRWqYk7ijtLXnvI3fF6aRcPZxOytUbSMder2aA9NYcG8iAv4VWWq2cnxqZs/d+I4tVD/AtSPV+D05dGPt0t7l5QYYX+DzmTwziHRrUEcTI5TiA6Tlcox0myrbrjxWoo8sqYCejoB39RkVu+501Td/6aNhT3ARADpbnIAsjl/HFHYFG5qZxfGfJWt0zAVM1iVVopyawoaARFMh2m4iFdeJnw6O29nTy7NMN8q4AGeaWMzIkfNMvrfuXBr+VgfGwj1IV9MxI2hQoYba9bVohPdd0VcZhMTY800ezYo0+ijUKjzLDIXBl6DzRiU50onOTnqG6L+VxuiFLBtHhWHZ+hEudZ6TctUqEiPd8GVUVxthDwTqSWxvIrVLV4tOBm0YyGa5tU2CbCsvkWSGk3x5v5j4fbrBOF97joBJWlZQqz115W10M9jRfLbUWsc5ClhuWtbJuB5hJiwbhGlfKitAeUk9qbcdktrMrYCi/Ba41cGI3vhMYVtnqGrQHeNC1TQ92glxtx6CAFbzKBMzMurPLRp8hR2ApBPf3ceEoAKlOfwRAlKENMiYdqZWVSartrFeTumW/3mq1PS02mZEfsFmx/m1tZWSM39UbuJwjAtKhKIyL42HN0cLwtz/FhrQ8m3aGmy0/SycrW5b2iU60gU7K1StKmxbge1MEnZdBduYLlO5hWEvLjKpVm9afsRoAnM0ytOaWOALA2tV4AtaKu8l7vgX3ESwKv4FP+wVWBXVU+VzP46oBEz2Ha1SUmKSAE+mvPQ81Wpf2ytc1i9Q+7TUrV4ZYUIa7IHg5bNOzwKV9UMjHtR+miHfWy+VxihI19gLjnoB5rn1sMqViNMvVCPBsKgmwa2+5C2qlYhYRwlDDSMPAFrixSZtamBTBAsvUelUSMv6MF/xs04i09CgfI4zK9je2yt6u/MF9CJm4S/U970erLu0Igcsf9K8E7XAN13l3cPyzEzw70ZWkLYi04SFnObdAW4cpL8eBH8u2oGiN8qpBMnk57BZLwQk/5B3xQCJTUrPlOtydIBiMsGuGay0+LQAk5LNwZIAPRxdmj82S+0LMIJpxRv4+xSk8NvGyf1S/umaIdQhXOV/X+KVu1T11/SSo4shs9zdrAsVjtpi28CP/PjJWO1oxp+x446hci61mFYI1LcEoVndrz7u3u7BWZdi31FDG4GDfstV6NWBpPccVPc+m7WF6q3u3DN3gj+evJoXt/J2CdeOINxw9TLlowBe/vOToyis/+/Q94cWCrdR/E43kTT/r8qzhFHlZmrcZFj5h2MPp9q35TUH7jhzLtKyzuJVHBTZ/s7ANdesA+jaLVdjUmb3fhUfQ3dwCGhuANGDSAccKGMM5rC1+llbbjtWnZQCpTYcYmMub/mu0Q9zun1uZWhnAW6/2H6MaKWXHH7Qap2V/jToZtl+Ut+u1vYPurJ29SovnqM7U3EBvierTCnKUx5lQ/swAprkUrnw1OekoQmwYAvAQyYLtpP9r2OipidAsRaOF5HzY9JxVmLpQHuZ+08o02vAo6xpgi2DHC0cEOPGe3zXHcHDwty3zW7opz1Y90VHpvFuqzm7jLVUnuoq0hncFq3juVgVjjwSzODkvm1/TtKLCS8poWSai/TQORyWFRGEgt25dI8GjthzBTSvhtfAZv/HiC/vwEtxZzXIIh1M0WnmLZ1tdBCIYy1DXni39ovza4YxmTR82niljfz5r4jdHGGhZ0MOcQ/z2YrSPOylGM8qptsPOaAA1VaNF1BaxmiMfhwZxdBfPQrhDPyw9mb21p8/VEDUe+3CXMgHkq9/cphjOsDZLaA1P1bQm7ti+KtzyTc9kFbGF/KJ45gd8ndVf65r5Jd92Zu12BesacecQP/vym2WCEXEUS8T1z6ikW27fEm0ZOVfTl3s+iryWyRXF8ycMezidlKs3kjY+kItiC4OWFToEut08RPXvocOwsVYD62zgz1gtYQu6E53VcpkEaKMBxQY6YdwW0DUgnPOR8ANIdSCYjR7Lg0jCDJqq0pR6Baak5xWgVqZaumJGfw5rtu2/V9pmcUbpRcWvfCW03TWAJ3EsgLVzuiWv3l2PnKAFmcnyyb1ZdzXh2mlGCSmPWuHiwVP218n5rByoN3LpGVuzzxrpL2NJAcvWHynh80p4Fj8d57q45N20JLtQLgq8rAyxQNI8nASHvDvjliDvrERGZTwvXVHQeKITnej81HDFGuUy3ZyykFOmmDw/mXKFSc/O7z7fXpvQv5araZCdAttEnFur7jNqVwzrcKdJH1J4q/jEgnstvPxtL839hYRHId3I78MYsT9Fvg2baK4fX/X527gYhMVwANs3wm2Rk61SValrrVcBxgzGGS8llfWFnsdSbhs+7EZeS9Tnm2mRehTMvJSGFKEpYdXqs1ZWLUGluIR2fIBASAuFmVV+MZ5tE5u3aWf98kFMz+Sd/Vrsbbfkx3ciB70jWaH4Tb+jncEa1wyWV/lkByqpP9DxXPStz9EG6q2l83KmfGFtLY+sUbJp5oSDT7QnnZSrN5DO+7xuA6VV6AiDPseB9dLJzJiO1ipnD2tvI2cPxMaggcLruR6oLQEO+0Y8AsU8zLsrwOwsUhNLV4lLMG7LN4f/c1Ok9r8m34XfbVarMB8fQI1Xws4QFbftOhukP9XZeyfK7qpYzYC+d3PgU/MbQNfu2p5uXpGh8pGrs0ReBRxCbGClvbWvdTaAT88KBcLb9qqEJi8vWXF9oEkQBWxY6MdnVI4HsGXUX/NAZTxJ84gfscqabp/4kohafYR2H5INNyC/pbcQfyndQ8MWovBaXU50oXSdp/O99edpXehEJ7rpiTufzsd7jE8l3hrW2wB0acnLQYEQcR2HSLlStWHzHhcyzPx60PicKSGDmwb86KbYppmbE3e72n05ICw9RsBi9SwcIMwO60Ss12G/qigjrFxVrserY78Pk51Y67IekFW/YjELSFtFm2Kz8LwyL6YXqQ/L7z2bpKSfGHBsMaZ1GjxkcatgkfRjU0CuWCWTpbhtPPP8rJ29GvOz1QtV6XixyupBiDjyR/kNftt+SuHWZmewHjiUpESxUWoZzLDXlV3DYrwlXsw/eSRWy52lHYX3mWjsY8jjItwOdMKwh9NJuXpLUA/Q9qWifznvMLEBuF4GKeCK9UnqZwGCGWMjeO5T8nX1XxcNYaO0DMAlXUhE5egSv6bnlKNbFKiJhSyaYnUihnz1sUyi+SzXLIXz+77UmxqAtKDc1NO1o/3tt25lYWK5y1PdYhUzr1HbEVnkjAmse66/HpAX8D/VlvB1yty1zSsySo8HED8BkyB4JfbOFbRnz5dyQNfIUSJv09AsBmEO1wP1eIAGapH9DsKGI8daJ7rIMAXtfiyJZXV+CrxkCEqzj/EsO0RYGmUz7H5RVBY+R0joNkWnpy1VJ7ryRLznIGE+jLMn9S8jL44ydFl4osWBDt7earWE69hpJuGmj7AT85KCOUPsgjHtmqB3rypV93K3NPtLyul5io+6IwIsLOjlXRh5vuDkyWDf8h2BFjG7b7bl4vyZy/aWptGPYZjrGqtlkNZTrOzgtgAUSYxB9dz40iZU628jNTCn+7siwGMvR0txLfgM2s7sse+sVKs7VawaLJkqVkUWSbz4GMLHE/ybWrRqJr5ZVn8hz25rmXNRLazrL7ZN7TABdMu0qGDdu0SjQa6mbf3Oa8owwqNp3whprRWlCNO5Bv42Bh8SGdrfHF3iPHSj6YRhD6eTcvWG0tpT2oacY6xPIwzcP/7NtE62M59Q0p76sZ4GYqMaJdGPuLR8+NI9G4Wx+c2uCmKNYrW5WzwL7hx/X8UqGsigyZejB++2Tt5qNbbR9rDI33qZbWlcgQkleCQDBJo3GZDlIan4fY9yS6HmFnBnmm+eax3NW2S/mKjRJpOnoJXQdSwGjCEaj8JxHwyHI+KSLxLrve4l7AcEXCLDj1vJL/mBQu4PrYweawML9d7uadszDeHZpYQuCLYkZftQN7b0+V42JttSj7X4R6EDcP9VoB1fw3XMB8e/xid4dqKrQvtZqWZU1tk0OJ/0UF7UFCzEoaZ6SmXI+7thjwSJeIzZr/8XcCS1/IcKUer5a7JblLWbFKvUMGIXZtJBkG1xG77t053R2nmg4dnax2hJtLcCtOf+5uuF5s428kS/ugVHdrjZ4242bnRui/TWcXdPASmwx9oOHClWLahpBmOqd20yKSmeNrfL8ROZiLGdLCfxEvcwnHwaguw1noQTFj5oZZ6MfqEgS03n1/wSP2B4S35bblOPvl5NTW9pHwxo+6QwNMWwWMqOrYoyWJKJee1DS+nDhB2idM7yiguETuZqAtwThj2cbt+a3wS0/jge+4E9v+3qzUVxSo5hgGi+5INDEYTksTjhtXhjcDVOM7dKlbf5Gf8Qy1RxY6BYbfVr9RwB4PjrwV8GlvMwuDALnG2btbJEno1v0qmggoByLg+Tm+yXAHBXpK2ki6sWtwNwtjd0gK7JzgRME4rVQYII3YH6EtGiUEFBBlUuygM+LsOjwS3yQPtyl2mT8hsfsNU7sMgGsP7Rp6PFNUh6CYtR73ZgeyTLITgDgeLM8h4NcTb8yAP70ZNcq8OJTnSiK0aCRfaTX6K2y+ewdLKyOOUBJfwQ7l+3GnkXv8m09L1mxFuwlj/DtkqUoC0dk2aiWB3RXh/RSqdzHoQFxbJrYA7HizHs1n+BJQ7vmaMCpgpyCEguLi/djbVsxLfqD3JRNo9n4I65sOBeDpMOFQGCSLLzDa/YHTt/wTdWXrBz2t1CfG8tG+JXDEmAt3YMmLQ7KqD+on6rYHWb/0CGQxMuxoORCeW03kWKMHcPOgRT2Tq5MgTM6BSsW89gNe2QDFu+rKF/Lr3fWsp905AT67eS5jiZI6JYbatBmvuuJU905emkXL0J6eLWn2KjdejUcDOTX73bbTqgvsbk4ozCm8w4vMgshY8BHAb88Pb/nIrVycSLQLHxalV19uNw2bYYh/nfXobSsFE6PqwtFmYnCSr9mmGAXrgXrXdwla9+u7bpZEPYAIRxJls97ViC6pew+mdGBagmIQLq+aatQNRSrXlwA68h7ybZShXrZAWbpW+sRQJsCOvWq0bRWuqwMN4sIrGFsJVwB/a3xK1IffFc2HCj9f6spM0LYUO5Fbro0fjC5qBhR7x6dJ3Pt6XqOt++W6pOdCuSmecv8vmOX3g5PKHmHJaXQ9h2i1RJN98vligZeTDfYvY4beBeCz+PO7dazfmKTwOvD0O39d9/pFXCm7GBxNU263AjukZcWvGsYTmLV+32/6VjA9bCtA7hRqvlYVS2ErmPSHUAF86mMq3jEiN+TyKGcxre+gVX0CqY15aPu3i21A2ZFjcZN3q3w6qSVX32iFJ8zjUeuA0bFt3aj1sJFk6tVusuudJefZsurTnEb5vAI/MEeZshjlf8pf4mXI+KSArgMvHxJSzu6pMGJePvkjeNbuPFeWAJ/mkS2UO5L3HrT0clLSD0rODGv3p0wrCH00m5eiNJNTCX92y2Ce0qjgZmwiegnGeVbPExss0/kOFcxvsXlKuMsN1poEBFkKFRWOXbt/PqRuCPFKvR6lSALGt5Y5vats2opWfj2LC8DXvgbcNkaxL5cgYoEs9fUhAUaqCAh/Mw8S8dGSBx07AQN80jlDPbWsMMYPL9thw/YPpstXh1gMTWzb2uD4XKVhCMhhpjJQJgLmevGuTkAMYe48qKaLeG2JMW42dDIFFbLEgCSccVcDvMNMoOwtbibg5bogOG+kuZHZZQ9hWhHa5hd44tVbsTPDvRTU660+Zcys4945Kfps6TT8Rxnh+1NRHnsZHt0yc3QRueFSeTRs2jRfGKzBi/c5Pnn0eRmvGakjPhDfBs3PrfncFq8W16TIB8gLWl3fIeY0gLTyINlTi913EjPh3F63Fs5o9KZDb4rsffFl/7utv+kcePsllao3zH8QVf1WM6uD0xFnbGdtIuL88wkngjt9xTRnu5H9N0MjAKR/QfxQL6dzQG76rCcAUQdTvP9/Hb8hm/K8tGf6dgtf02WWcMFzGWuHdmTTEKy5p3lJVWJ6vnnkSXgGJZ1ssXnM+NpBOGPZxu35rfYJox928ML4nOq7S4OamCkAr227eCZmTDnwPP6Idh9Vvwm4XXdBbBVmZhSjngtABzmwLVuqGgFLCK1WXl6mQA7mSPJejAXA+IreIXA1mYy6YbwWCfXowLIBnoy4RsTlDipfu5ARhzc3fAmBbCatwxoIZuqZKS8wRg6UufFrWYLVgaYa7LMWp5S3uAfSJD8KKs2jijcckCzdkAQjLhpsJajhGtYZINmOU8Rwfk4Xaz5iBy0oeEPwKTkboWHixERrQEUs9LlwoVGeD5ucvM8dLovF9avX4bf2n1RLcGfXF+9nIVqzbm8GNQozQjf0WbIH4z52+NY/HGWt4x3anOwa1d91CwHsF9OHGirap8jCx+YxibdMoZq/G804i9G2hrONFuew+wxPtNoWz+EYdS3IK08RpbsRaW0yGxvNo1AM3/5AAu4l324RnW8Bl73Bu3c8WPG+maKMPZFiOaZPx9hzmBypeuyJIVbfI1zaJE5CoflKymCdrRAx66Wlmx8oxHeNkm6s5ajQVe8q9Rci9GfoZp38QPINSjnIebUmyMmlc3XAUZSniZXFYXSniZXEf7ftRKn5FLICrtPH/lTy8nv0umE4Y9nE7K1RtEZ5jWB5ULpMt4s3ORVEpvR/yeGjidVagDA+EGZElFJfhaGnlp45XzI8AToNnq2vPPo1iNlgYFSKJ+fRKurA78JmGEvl79G3IByXk5+jAvM+yxdf4VwDHABtU4k0NYsIUVHaOrd007gN3uzXs8b8yGAeC5grWY6EhLuAa+qnIWtt5zTViApQR0yNLyImIz+dj8tOKlwVu9Tfli+Ue0MvxsOjrqvGmMwrn+qWeCKQvJ+lHCs2EgdgT5iflmQDULXypvErbvFHMjZgWa7rjkHE90ohMdg+7ChGfOlcLyluYl4uHotjDqbZiPUgzo/nCQM/mRYIKIGY2Wpysjm7z7crcoDYsMlaSDM1f3kc9ljWFAjRetWTeFOVzawjVMwqvifDLNQ9pONr2MWPFgPDbJY9gRLve0BGko+mkhzORPgZceB6ASrDLUue3z41WCUuOGoUfxgfwsySx+LS/bo6ak7GFVaTFmhbgEAFlWJkpD3jWelsLI6P3llnbNwG7acjWx5eCWhqwALN+Xm13eS3A8rjekfZbjsIvTrVliy0g5Ez8Ap2Cd632lPFE7bDVv6IMu7eBw7cx98iE4D7NLjyTevnRDdBt3vPBy8zvRTU8n5eqNpmw0vhS69AyPQA3oxe/qRLlmYSgjt4CnzIo1AuEQnryN3yeN852ZmgBQa12qbilnVKyuK1c7JasB8f1p6lI7Dzj2Iw6/Gc/+2ntYc7Rg0PIFPSWY+RjTbTptG+XbpnNZK8h05ztZeamG8LYgOusPClcpgD07qwefHYRrYXFdqHlSj5gq+maXeaC1G7EUvmdc1zT7xFWAzeBsf1uIk46mSZyto+4xR+et/f6yIelSs14FKudVHb6l6nY+r+pEtwZ99XQN/2b3bJ2ODxu1yrizf1xR1BzlfFfV+kQlXKE2Vhle/atzdPV34ygZRZRO9uFFMedt4BSe3MfrFKKicArhqexe7qAgRcCXtdKEqhitGFzD0HCtWpUaZZv1a3zbOFoWBLdVGNrLrwG68po0iE3eMSy4t4UFq9eIr7taAbYfMQfrVQQMkzwqS4/Aliera+tMoWZ8tr6laxr8SImC05S7xxk+9y5ezJ17uZIvG0xdbqg7CiCkz0CndJRwB2ulHy2B+oG/KJ59Hvv6txwZEDG6+mtEtrvjQgXtfYz5+7EtiRfLtFLOlLdBxhrAdHKW3E29eJI+MZ191aXleZl0wrCH00m5egPJgSkyYwlXxgXnvh/F2fKSqKHSPbKPIzUbHeHomAAO/uOFe3DlwWp5G29A12jLf5dOSHNosQpYQGf9EXROCY+4KVt7i1IPi5bCEMIyGod1cKcjeWRmkEvHdJ9FLJOFLWEegZK6pqxXB95CGeXjVRbEyX13ZpYU0gvgVICjlXffPDDxW3rBQpcBa7FKEFBMupDrGik21tw2soVOvzxebHmYjyCzOpRuObZgICJtqItEmPYWT4hLJt6wXLJAGGXad5NlWsrLiFwG3QbfAFDa4Rqun6Nlb+fzqk50q1DFKaQ+AIc82+kIuin7rXH8UN+URMXLYVwNadZ5sqUR8F784JBNn4OfjFiJbPwtHftC3ZcpV7Cqu473I2WprxcWb9Y2pTejU6xrxesV276CJod/UDCsNSZwmNm1RwvvL7iwJUwWStXjtY1hcH5akM2sVvsy6fEBdYKPeN6nHt1r4cuyHPjap1TMfyC11a9gWMXEEmZxLLtkKs8yk7sTuyDlQUWxSv0RAkZW3RTKiGaZa8u6tPMpYq8tflvmNf+WdGlB0IdVBWsEX/beJAXq7ptte2lnrMQLbbjpPOQsYANdCqY0hbSfs7iKdMKwh9PtW/ObkMg5ZlzGUBEg5qLUpZEO0ryi+xiXSyZ7C1gtYCsyFOIEwBzT3ON4AH8vuZbFWK0KeHJu5PzFc1jRFKuJtWpn9erCYN7YS55wcWHKZdvOgllbL9++0XI2C4vtgr78BmiyJGHAkbil7NF2pOtCFJ1hSl/q7mYyTYE3L4TBgDUJML9GTemyy4qT8Qc4xwm4NWS20mMUC1cqhY1nPAFwvM6EXO6RQ2sLBQ3lHYU72bXhahR+4HC6dg84a+yl7rRQjn3qdqsAOts85zqe8UQnOtFNTW4Oqs/6+c5kXc+QkS3WszwjL5fph2DBj328TrmhToJ8Gd6Htbil3MHflS3iLYOljOJoswUqef4+lqvizq5zhRncOkHa2VukShNm/i2U95EFouW03VRP/r5tsVrty2c2j9vP1VceBxRykStDcpd9RtiFRxparwYMGeNm/b7waEFuUPB2mGvIl/pyIfQLbkrXuKvmEKvVkoYUgPzxAvWcV5t+9Lu1hmlMNuFs5dHScOlxbcsRkEWfDmx1kjhrQ/rWZ2dz2JSUY8twfixyIPYC8znRlaGTcvWmJTv8W//xc7lp1rsya6TAZgQs+tJ7S81eqdeot2KNaUfwnMty8PfhTZlpgJZzY8D3ABTg4AYIO/2aaqpcdWXwYRjyWhzzitnUNwP/NmwksxQ2ltEycru/7dx+QUTS6O0u2/6tTxQvhNFCWP3jgFl00yCM83J1b9ht9yRf1g6khoe3275v4nf1MMx4fpNIqvUkw4NWmx6hWK/ar7f61UZOIXw4Bo0fqs1pHyrHG2SyhYJ39P0irawBxUkSTWbtfh5AW+p5UJq4vbHojs/O96XV23hL1YluFbLztCd33iVjP+WWpr1VlPccaELaZvJtc7cfbCXU61BavjYOK6br4yCEuSIM8Gr6W4GFx6QWi1os7fkem7b697jZpJmepdpkuh1TZMIU//o5wb7cF4OBVn/jNvxm/Wnxa4Z7g7WnfiTMKz1Hfgz8MazHq408DhwrV8m5Wj8Ult+lJKCxptstFX24xR8R1KYvhqMVt6sEewUeGk4k+RPOXhW3w7uBxxWEUJC3LRLgjwmjhLceWdi2xRXFcp/XMI8uBG5JoiFmALTtA4v/XSB196trlA3kx6swTEbcafLhXsylMwqLxczCRs/BUtgW2vSdhk0JlR+7lrod6YRhD6eTcvWmp4t/qmnrKH0BpIeSl4J0tFS2tXJ7gAgDNBs4ZR04sqMCAA9KY5hQD5piuAfNGSCz4NIDTQfsyLsJ87Ji1Z7xOgSgnj/BWBGgGCfKBwZ6WYQ0MbiWwuLVn6PV7mZDSn3ajSdWoBkWaVsYyYTVthbA2uXr8Y60aQurcgaXRoCp/c+AKTFQcGXANuqASGRs8dsMjZ+ycLS2AxtgPpE8yFrPRUoeliWANoy3Ie3hCHHAsHquUZLhFPfKXigHbZARuXOByiNOMXbBcrvT6byqE1112vqs65wrUO/o1qxrH8ZaCCMfbnFfq1yvIPXzVp277VzpXCa+mwcaMskwJPkoRmFpU/blc7jXKMpyK0Rb7z7cu8fYdROPAk/7QDsKwGPVViaL72Dcfd8blaP6GKtKfu0OyXydyg78sXzZh85aqa3CGAoOtQ00an4Pc5ztlej+t7i7eNxjdp/XcnsMrVdDqQWz+GGA24epLLeT63Nt5BW7KUlb1l/O+Fpf6rFbhuXS+2MC4613C5JQP5uWXXTYDG3/DBX2ynAUw4dsIWSog/qhfGwEpUg0iswhHSszKsP40XBldPd1aW1zDuoUzZsiHSfvm41OGPZwOilXT3TpZAF2DnSyN7x+5O1Bgwkz6cY3/o7n3vrnZ7HGuD7vrTJG+bf4Map1i9ZmsVoA6WTDbT7G78Nz5SoSeRtPwJ63LFj7zYCubasl0O7DCvAzbczmx6Kj1rkG98LKJ2HkxUZx0zDqwxgCdprytQNItvyDs1czvwDUFHgFv8qGcLmtVl7fuNv4pm5abgFYXO/QVlCyEO6eonOAmyFOO0eaG/DfYh4ZzuzubWd7UfYAAMypSURBVJbHQrta0HsIwNtUn43prC28bjfa8TXsztHCOz7BsxPd7GTn6nXKv96Oowwc60qViNF6IJApaMlOuIhOa/lp/DE8lCHHrxva0SpVqvyk5cutWIduQpBfdlNy5XwGmXoKvnV4k5qsHAUgysfCb7NtXCOQ/mXH23qhQqxDutxSG8X28GHLz8lI8boFUvEKMlmrJy/4BDsW9+is1ZBXZr0q0Bbod1x1vGoasSqX8KI5bSzsiKfYiyveHYB5JH5EUaqY2A0Li36XtODv2iuaP4YnywMT5u5dWk4bsRse/XiX1N2uvWJ6CaxdL0MM2wy4FzLaQrEOJxCrdMKwh9N0owuwlf7z//w/xxve8AY873nPwwtf+MJNcZgZ73nPe/CSl7wEX/VVX4X7778fn/3sZy+2oJuJy4h13gv2uplJyjhjohnTNFclaH9NKR96TQO+XEIpUPavZsukomeazlpOr3gEckXkxouxEBfjeGTCBorVcVrw8dFVe3P5pczWkpak3fS3v0omvWzswz4MSf8+rIfPXBAA10sSsanKP+2lUZZbAswi28qk8WxGVdYlpm2SX0wMTKX+nPRRTm4gb+Ej8BBkEdJAk+UkfpRvfqomzhuQycKNdLFv4JB2LkvQpK9tGaUl3N2OcG8iObm1Mo0SOJDWAPRBCZ3oRFeUrh6GPR/ZMaNMk2Hy3ffS1X5+9dgHBic1vBjxkTJq+SxOrKU3c3/FDCZfdmU0+CCdGRbqJ3jJyhus0KbrHrduce93BQwZjgTw6fZzmsZVnGfrDsCUDy4dNn6PUeMMOy5zyzLAJNcnM/86hfsNjy/HsWIuDUstHVxmy9ldtK3M4/WBxPfPxbgkPkTKoBzyaazxMOJRzmtOSnhJoSn8cvEwmZ4X5Ds/Mj83LB3yiv6U9gFTq1jatIVcU/BL2aR+Cd5U7G8TN5dbM8h41LpwJ08LHW4YtkT7tJlWCq79zjHznOhEHd0yytVnn30WDz30EH7oh35oc5yf+qmfws/93M/h0Ucfxcc+9jF89Vd/NR544AF8+ctfvsCSbqelCW3zRfaaE0CxXYE2HibOM+ww3LafMFDmZdkWvl6nXqbMe4mcUwLOaEq/pij0/v3C9YKRWXMjc3vFagSeYyC8BJDt1S9C7DEBYiWR9xsb1n79AodDPhFAZzJxhs7c4gzuwSTdz8UBbW+c4G1vjYrO5icFJ8pH/+vSsHSAn2wYBdmNfhqEOytWGYRg2iKArfRCuEzYUnsLraXX0RaAFsT34ad50UK2Sd8Sp6vHQqU6uQNo7/d4oQonGtN1nsq2qoOvWwaenWgDXUUMuzpfdlc+uOiLVWDzVNxdCwOSD2PztzqqYlS9drCTcE2HwhTV/lqFgmCXiFhU7pCmM2mh8oqf3a/gqc7t2jrBcHpPrDu/OE4ONg4CT/2yHtg5hWzDhzBlQthd5tAWxsQDCd7H6zpIVODS0N3BJXPPpN/0HbXdZ4ulpR7mgYiRbKkoK+kyOVm2fraPBMRqtS9dflfk401Z/ovxFuQto5MPj2tMNOPp884AQP5bAWTrErIPNzj6NYOlzhDjLnecsT/gRyvHdd0hddny9CxhuiUIbccom8eoDy71zWHYQCl8EHGS1jHSvWJ0wrCH0y1js/uf/Wf/GQDgv/lv/ptN8syMD37wg3j3u9+N7/3e7wUA/Mqv/AruuecePPbYY/j+7//+NN5XvvIVfOUrX3Hp3DpEfmDYo+gB1w7Dt1AZtwaAQNNbLtx5wuORAHZGJS1g4CXgNINBvfJ3e1h8615ul7g5uGvZUsVqfIvf0lGFpI2XhTv/uuI9KqzLWaGENktlv7E19pTZiqVdXM+amXHm7jC6HUMujJu/C6t/bJiT5T7M8tIqmCrbbilnxoakGicmuMFPtklN5QgG5MljK21kKm/r2LZ5kUuuy75rkBtAe+a/acvgUr1i50Lfl7p7NfYO4wzTPGJ7d/3lRJtp5rNzbamab+Pzqq4iXUUMm70QP2eCSu48/o2kw/LieFVmJ4qs3lnkjMKkn5Elv1ZOjzaSeEOFofXv8RvwbClD/aU2UUXDBHUndfeyLemgfwqXxYgia7BkVbJOtU0tHo04FQN3JpsZDUwu376MVhEUdSpRvxJxWN61WP+m2BD2Tsd+NIIDBWS1c0szQMyhbt7t4nCIz3kcQt8/qWuFvvT+bFRqfoL7Hqo+nxFrb+RlZ7A2HvU8m0bC89YCjWy/jx+L7fxYCEtkbfrWvxek5+W4WZ90eG7p+LHAy9YIEjDC+mR4set1WSZtn438XR/cikuzui3RCe8COGHY89CVVSv/4R/+IZ566incf//9ynvBC16A17/+9XjyySeH8T7wgQ/gBS94gV4vf/nLL6O4F0MRNWyKkoOVNWrDuHkz7gbaqLBbznO5PBFwrSkFoSBLLUo1XHjoLVAxA9ihvGmfkR0bUM5q9WHbLgzDFEBuUqye58ruy6DtkjB74H4OdnvAti7jwXi6RQQLbiCsFshts1/dtW7yybbcC6VLIhOvvZGmsdVqwld3fEs7jcu09ciAzjoUgR/rAC/v/NKYZEBwuEjKvUZbBpjBfViUyWRHMrHca+HZW/SFvmKf+q4syGXTOEHQAfWlttmD0ry3DmmH0BHKfDPSjq+d+zrR7UtXH8MuDyiiWHXDy8axux+KI8Yy/m5betm51ExFWwlY5I11JztNT90GrplzKEyrU1/+KLvt0vNNDX61fItPC7YKbm7u/IX6AdiSxn4PwuJqINxreNmtxAs+5cWks/uR9ZtocQ12SfgkuXMvl5Ucv610aliHZ8iXjnwP96bU5sGoaRXrxpqGuKkicipxCD0OlOIonrU8Lb+xdqUWDsPjA3gY8mhRzmFs1+plLRPBjLMqNd0lDg3Wotz76xqJzXjD5jmopsF6S7hlV/zhObT+WF6O7nXqjqsgW/soO4Z4jDxLawntHg7pR6Ev6XgWymQprrKHhYoF3zqensjRCcMeTldWufrUU08BAO655x7Hv+eeezQso3e961340pe+pNfnP//5Cy3npdF5Bo/BQNQGzlyhWqL2ytQYfkjYmAYA2kxsHrLYicrn2Y4KyI4JYBPOXfimC7lbFhZLilWnnHTpIgDbQfjKlZ17O+kvXPl8u2PwywsyozDxGv8ou4ViOBbBA0XjzsCFc0fZJG6kLh/LQ4gXeFvO6jqELJBrBQ2PrgkXebYcCm2K/NIEtgKapH3Tbf8r6Tj5hXS6a4sM9iMt3gYgR0vyySXJKNBcKtxKwQ+pmyv4oXQx3fxEJ7ql6dbAsFtGy/ONom64NNGXpxSbT/zaMfs5RPEiqnI2bvuHhsmHblp43PZP4ViATqfQ0urKbfMdKC2556HKlzbxOFYwoD/zHb17AUx5HG3/GllCCDNk25hs3dDa3ZTVu0fhe8AKnRwjxdL2/dOmk0GVkdvWTfrbsMcPgEi5Re2jRv7WNKCi/abdUud3GQd/Fwcc0ujbYYl8HQnWxJRTmRHPqGaN4pCTCI1n5eovmzTY8hqGHeE+l3bAu7aKB/sp91vZoT9iQBPmjANGaSHxZ7Txxo/EurF7pUh1GBs/K7behN7IYbEAK3TCoSc6It1Q5eqP//iPg4gWr09/+tOXWqa77roLX/M1X6PX85///AvM7TzA9MCL4oU9UArMJFU/TDU453XCjAnjM2C78E6RN/7g1XI42sta4+7PwqqgwUxQ2VvmBujEQtWCWqPAdP5wmTfgHlR6GacMVf6MCb1idZhXWr59LiTl83O6W4gocG3t1fq2/V2ibPZjkCIaQSGZ/Da3wi3zKNjvZ6jblJqjO4kH6461TaxWl64545v8j+oP6SPmZ55/BjDXsaLEa2OJdftX+D1J+28drRZpJZ2DaCsIOzT5PQtmh+lFuXDt0xBHabMLbrdblXZ8du7rRDc33e4Ydgt83Hbtj1XsByT3nQE8xjH+amnmrcZKmFqhBSBh8ZZLwyCI+KK/szw7zgw2jNqUbFYhGzCvw888wNHcYer2ot3wpF2IoRaxlu/av8XX8pmJLH+Jv9RuHNKOfazvd5KlxbkjNJn581tQUm8KeI+il2OrehCiUuSuDZrbfpo1ur1sX0ofD86d5bbEk+pldytW33XVJV5yI5zF7AIvT4N6uRHRoF4hXudH39pb/Xlv3sdPq/k1fuAu3AflJ5jP7dYz8eIaw15s4yXX2jcY3JMvU0Hk73Nl66+tV9K2V4FOGPZwuqE2uz/6oz+Kt73tbYsyf+tv/a2D0r733nsBAE8//TRe8pKXKP/pp5/Ga1/72oPSvJpkh4VspuEmUoHVUjp5sIUbSVhgUgzHKHw0pElZbJmMmyy4a3F8mFcUkqYwI54+1KUxDGvKU/V3bhj3XM+n8orVDhAjAkiDLSgDk1sWOhFoDhSwdluUK2f/O6GvR59u/eXjTVhNCYyu/3b9cSlT6hwumijBuErI2Z3m8dEzn7iWpZwrZ4UaTyD14tmrodhb+NkTn/K4hpCxz5HHNZR5dRhJxFLKKncT0+Y+mgDDfeQX4+7RXr5vnZNuoft0I2h3zvOqbmdgeqvQCcMeiwh7v31aojCPlLm2YawmxmFu9Bg3DYdNm0NWrHN7K0jvLnFifT1OjhhM6oGNfIsn5bdhCitfwyuIyfCsVdcMld0UwpzBwAgwkEm3Uas7aTkohGX+GGaq4u5ZT2z6x/JFzLBHBjjFusHncG6Pry35Mvv2KJcBjTYSWy85bJ62QUohDpu47Pt2O/tVo/p6uPKgYkUpaOtpio2rR89jXeVRx5MybOORw+lZHVrhDaan4I5lk6SsP8PEF6GB6+rS7tCm4ZRQgf7FgrnROmuxPyU8bcdY5EOLfxH35ArRCcMeTjdUufriF78YL37xiy8k7W/4hm/AvffeiyeeeEKB6F/+5V/iYx/72F5fa71IuvnWpjnoWCpoDxC3h9M50l4O87+ex8u8OmhbQCo0qXuGwIalMvlwr0C0oMwrTDPFqldKWrkYllsFIHVnZYjXtMBrv7VODrnY3+zyMmRlOW7j24NEY2ncXN3lC6gNwkqO7j4tPZQRPBq3LLgKQG2Izh7kDzR3+6WFMPjIB/ophte6UPDHcKam2M3A5SGA8SDF3iED5Z5xRBF+YRQ62nmw9o2K2yV0LLr5JsITnWgT3e4YdpNp/d50eHp23mSiqggrIWQmLaOCaP4wPlvSWZCCX8N7zVJLg02clk6fhvVv/6XBbxHhrl7qHShSPR7LyhVxnLS74VGTJW2PiH9DHMGjNq7Ls5cf48ot/MiDe/lo+4D1r4W1cnqZ/l4jcJ1qDE21Kf2TigI4mcX7lUfsc7l0/qQVruy4PoQ6XB26RcHJPS+Tc4W03Tk+Cos8csC6K19S1o4tWNpg4DUFq+Lm6F/A3cPOFfwUwtyKNIsn5Qt17NoiA4mGN1ybLPA6xXyVc3mHuAx4wxPhHwurH3vaOtGJDN0yp81+7nOfwxe/+EV87nOfw263w6c+9SkAwN/+238bf+Nv/A0AwKte9Sp84AMfwH/4H/6HICL8yI/8CP7pP/2neOUrX4lv+IZvwD/5J/8EL33pS/Hggw/euIrcIuTBUhzKegtNH3N9Uu8tYHt4kPGX4vT8bNYt7ghsHTjVKvfgmVzarW3Wy5sDvOyt/0ixagFnpkyNILUP82UYW5Bahe+YF/PJFay2/K0dRoreBv4NEtJ4A3f2afvoViS0NDFzcvuyFRfnpWEPulwq3PO6bIagZJv16mayTWYS0/owVLGqrSjlX1plHFCOYfwt6R5J5jxgjYCt3w84Gh2cHfW379yFOAbKvaIgd+YzzOeo3O38pdWrSCcMe/FkhyPqLFUjbu2tUJvXYr/qJ6Thzq2KxFG5zjnYMTorVU12NBYbTOZwbOW7Nuvq7d3UXRa/1iscBcCK8UphmjVwxKTQ9vOFXyZ/fm1vvTm+ctnYxg2T5u4lvwC7whdE5cGej2cxvMX5SVso0BTrYPiT3gir7z3GbcGKVwXjWMxo8awa1ZKRrf7iphQAu11crk5NsdZ2drXCjBR1Nk3Po64Om3fGmXQc/LXp1ADFVdFvkop+Nu3ie0XiXypz1jWC34rG9mtKe8sbt3OXcJaZHRZjAbJCBZ4OBTQod4y7L2VlP5GjE4Y9nG4Z5ep73vMe/PIv/7L6/71/798DAPzWb/0WvuM7vgMA8JnPfAZf+tKXVOYf/aN/hGeeeQY/+IM/iL/4i7/AG9/4Rnz0ox/F3XfffallvzXIP0AeZAQAZIa4gy1Xq9JoCAhX0t7PcrUBSDKKP7K/Cj59mI3jeJr/rCGxKr2/AqX0WADJZ8li1fgTxWtnpWqPGUjCI4BL0zDAeKhQdeC5AjwSkCbgz29bii2joJNbex5l0gvAi7lB+xzsoAtTNy+EAXo+mdoWREAaePaYAClfdnSA5J0C0FjH6rePLZtCWmCooNHkIal2xwBYedto0W0baI22yg1kM6y3d7r7ix8vgcuMF/p1dB/8qA0R7x507htwc9KOJ+xwOLjc8ZX93uhtSVcRw+bz+XnoPJN+mKArKx4FYPGgyoSJjoI8gO6le4r3zERt8eJQ3vktzvYvpfU3U5JSIjfgx51FvdGAYIQeD7PyzUXyorn5YRSrEVN6DNvq7evaeKXOSML37XdJ37B8QyOF5GjujGXx/v6zpEvzrrVK9XekokqqxxeIBFncBngNnPQBGPDagCK7Po8GSutP1r4W+621v+JX9vVUpWmrmtZDMHjcXj/kAUYB28JFqRse2VawVeK+rgELNze58tsydu4DaX3sIM2HrACHCKMyDcrYwbtwP2M5YpIdPx+iHWlRF9rMBYW67T0fHWMCO2HYYfzblYj5su1ubi2a5xn/5ov/N/4fX/t1mKbjdZTP7/4KD/zVrx0tvX1oNDBaInCbtAyveeKwmwNOn2MWnoCbzeF5140A1Lq3hDleAKtZWCtLdlRAC9aD/8koLeWcUlGskldqelDaZOMb7Ux5ukW5elatDCb47f7ysbERr/FznnyES9xn9QNmkw03v2eOh/pV3ApU2QDwzM0GkK+5GTira4Cp/ka391NzY022uKUf6LYnM+n3W6FIAZEDcJE3J70rA8CRZx/ZEU/xNoOMdUE8myoDm51bEfU2YvmzJcrWZPcBOkcCRYdMoouWzMeMt4f8wWDgHO34/P/X/wfXvvobD08goYuat/fJ+zvx2/i3tDs4nefxGZ7Ad9yQOpzo6tBFPgvf/n//Bj4//9ujprmdDF4bjD9laumxm40f8WRTkCyF+5Fyk4WsxNOyhDq4+iT4cyN/H1mX76IVa4s7xJfEIGbFsC5M2oGMOylvj2mNmywWbm6PmT3eTc/5p4Q3iE/kj8Yaub1/Dvm231jvggl7RXonY8OqvObBIY7FvXL/OJRnKQ63fh6VihHDlnBvNNGH27SpT9NgxzGPlvF0x1vIZxBvhL01PKTXu8mlKbTup5XwLX7qyzQov8YLflsHz0PHc2nEdAblTMuTxB2lmZZjhDt5kNcF0R3/zx/CnS/7fx81zROGvbXplrFcPdHxyE6Ei3J19KXhSCjAKEwOK0v0NJw2yGwM77dNGZDRyUVAaXls5DwYzoAnqD+L1efXlJr+C6sMwq77mmoHPpGHtzCEsFaX7MKAn6fZ2sICXrg4jde+ttvC4MrjgWlJZzYtbCksZHKhQGSErBuYwTgzd1BDqbVLFtO89G/lqH61/kSzWtXITjBJfIGnaU/ot+lYygpl/NmWIpst15K7rV7GDcqrEt37EqGlfUhCq91gJe5lAK9j0qEK2a1kk+eMeaITnehER6XDRvGld3hl3gxKTeOmTjoOc3lciwEbXkjwiTpiXiaIgj9NZEBkcVrApAeM1yRgI+D9LA+roLMK06LA81jPuY3WhEJ4VHp3+NVgs20Y1uP/nvp7luFnvwvLyzYFsMH1ruw9Zf3FlqiPRxDbYF1rBYDZ1SSAvaXukJXE7FtKyp7FarVaq5/GoATPDnlbP2RVHFyfjcyiVeNJWf3SwGWs2Jv9vbFx/REIDUNbxeLWYwOy4qz5deEi4bVM1g80nvtYH3s/CED83MXgngy6QF9YBP4KjzL+0rpnRPIQJuueVTrPouJEJ6p0e6mSb3PqQUdPbouJxvKp+HRkpG1Xg0ycXmk457LHuUJeJG/dfZgCQ0VVSOQqrzYAGTkBZ7otygGu/irAdEavWM0Uj1veuse38xtluyvGKdWdHD/y2gH4E4BJwDAVsG4vfzCU4VdYV4JH7tgng9utDBJ3RepMFeTUX1Fa2buN6DZxEN1cBPreMlxq9OnHXwphyatg5QTZqIRjMvlLmVGeRiaUr/maJho1cSxvrNts2nOfy3Wg0ZXRVrks6t6I7Rakc9RRmzM+FCfaRDPOytdWD7zmA7Zj/cIv/AJe8YpX4O6778brX/96fPzjH1+U/8hHPoJXvepVuPvuu/Ga17wGv/mbv+nCmRnvec978JKXvARf9VVfhfvvvx+f/exn9y7XiU7U0/4Di8MRS3I2XV6aGqwmomFDMgMfab4SDtgX5ZKf4C5NA9ZaMWCzsENJ89mC64JlqP4qXh3ws/AEi8GUuWstbuFerzO38rk6w9TPpunbx+3mMpeGL1zM7T7k2D/w2fP6evq4cW9n845MHVrJba+zvSWG9eRTytpG1KptTYBQmiwHD+wKHDdrOh7j1C28NJxMvWv/i7gaRrbnmXpTrXfGs+3vH//+1+DhJUyqWDpzSzrmdso9yV6CZ70MWr+NFET1OAAydza7+VlnyMoYxoMuvSXeKO+QvyvnCo2e6myNk9IB64LzYOarRjcCw14VOilXbyAt6REOvuq8M1LmrV0K3pwCMgMsFjDZMtg3t8U1KmsXxgtha3Fd/usXElnLE3fK42U5AlD2cTewnV1y8H9RRA6Um+F+xDoCCDLwFrJZGoMLWToxPOlTS+5Mae77Sa0DN6vVfa7aANiLKgjqYg06G7dO11EHEiMIM7yYnlPOTgthhGK5GviYetm1S86FLeVliFmGA4ixvKFtFvM7Bu2BNffBpS6L2wFAHamOdnz2D96R6Irei5mnc1/70Ic//GE88sgjeO9734tPfvKT+JZv+RY88MAD+LM/+7NU/nd+53fw5je/Ge94xzvwe7/3e3jwwQfx4IMP4vd///dV5qd+6qfwcz/3c3j00UfxsY99DF/91V+NBx54AF/+8pfP1TYnuhqU4YTtF8YX8nS3IgOrvFzCr4DBcpXFaIorlWTWqD5UOEYYCLHDkMmjIXTDwHrI2FvjpApZzvkFw1rs5++H+mvbTZD75pG/wgrK8Dp1bgQ+ujhLaWRXr2zsjQPW5Xqd0wgHx+ms3bB+mlu6meSkGnKuYZSFL2BkKx36cZSlIJ6XfWHaXsDjTpVNeQt0PPu8cM4jkLMwdpbOtjgj90o5FANLRAo9RfxkFLwxr63+iKdHWB60WIct2LjDwQP/CPYtQcIujHt+jJuv7wbXvrRPvOVB5fxluUXosjHsVaLbt+ZXiBoYZLRDIHHg5YfJ7KuZGYjoFIM0OyDmrQI4DZPVe3zD3QHnIWgWcLhw0QKfWricZ1Q+LlX4U10QTOZNseMZuQLaZoytWGeIYtXzbVt68D+0ZDggPILDsRJ6f16DgeW3Heuc/W68b8mV946NV7BeRQB62aSvcqEgJYycUlItRSlc6N0zDN/+olqCunIHQEzBvdE/V8Uqm3pbN0buS6Dy4bGle+evjjZ0Htogc8i1Tx8c1n+h3ptpRfbQ5yYmsFaXE10e/czP/Aze+c534u1vfzu+6Zu+CY8++iie97zn4Zd+6ZdS+Z/92Z/Fm970JvzYj/0YvvEbvxHvf//78Xf+zt/Bz//8zwMo4/YHP/hBvPvd78b3fu/34pu/+ZvxK7/yK/iTP/kTPPbYY5dYsxNdfQoYb1pRvi5eGYaNO66M28wJ1gpQy6J4BojnSwrGsX5wP/y29HL/UlvYcsgLbvUP+N1LdcVYXOvafrVdQjvK4rDHhYGn2B2w+9LEVyor4VgMB6L7gii5R3m+sV7Sxo1if/F1XE59naTfZlv12109LOV4cWe16TAvAG24gA+zDu/aiIwotfazz6DlOUds7I5HrrwWz9YS52kcSPoqJeBib8FaHExebd/5/ejS4SmHvSwm5oWwLO4gfaT+wMkGs0N4cQCuPBrJJUkulmsrZeU40YmOTCfl6o0iAkYWjVsurpfddn2MAcNHNyvohaHbKkJ1umDUM5hm2OnEA9aRQnEByKXx+3Bfvnmdx7ncUhhhrrNcn67/SNTsrUmpfgSKYt0iaF0OR9c2+/rXr3hof85DetB/+5W+IHAw9CUWOEoVNNAmt6KYip6a1fYWdwERez0uvkto8Qs4NIsMsbCxLwzICsO4jby6g1yrYnX34IeD3xbXjgttA1UTirg5c2+mHrHvfckZs0OZtTxX6EKtVo9Q/3Nfa8crxPniPPcKrcn36Sa3AzGfnfsCgL/6q7/CX/7lX+r1la98pcvr2WefxSc+8Qncf//9ypumCffffz+efPLJtHxPPvmkkweABx54QOX/8A//EE899ZSTecELXoDXv/71wzRPdLtRgpcOuuAUe+cpzZYACmEUhBxmdYYBLZKqRUK4WNhazKWIxVjgjvHYeNojV7bxbylWw4hY4Gc4V34ns91fCiKxLK71dTHu9OX+qN4jHLwfZt12DbB+yi+8dmSat/m0CuVchd9CPC119HZvWi7sw8ggwZhUxEJ9JzIv87mdr7+xdFuIh25y5dZakf91hZAwE8fZN4em2exeo6xdYTA4haRNeVnXAX2Ww/uWCg2KYTBYxGQIPEReUifvv8Fojrf1v3PPPARndHIiT8fCsLcjnT5odQtRAzXnn/iWc2j59FyZ2KKfnaxOnxWQFEDpS00rw1m0QNgat/+gVQ912iTEiZwBzV3cCFitnJd35VQZr1iNINwqVn1YBK8lzT7cljcC9RgegXl/oeMh4Xk5C5/IuKXjlLfwbH5jqx1Gwx5hT3l3J777XkTwz1hJs/WPCEAZ9bbKViCuyZu0iG089mFAbQWTnslT/aTdBzW7zUhAW5VNOgIkTHmjOxaKgPYNhShj6dgIZZTPvjIiSsfoaWPa49bsVe5bgfo54fameT7rvg+xV3ycARPw8pe/HH/913+t/Pe+97143/ve52S/8IUvYLfb4Z577nH8e+65B5/+9KfT9J966qlU/qmnntJw4Y1kTnSi89Cxz73ucSEbl8V6Qc58tcWmQWADCnp8B3Db7GWUEjEfOw9b7LkPreHllMJA7BSsZPwBo3V5K36SF+azefkvEb1yFy4cGm7r3VkZh/DjAIo8DWIe7GQbKbhZcZI//qDkkeHuWAZ7vEBXHpdew6mNbz5qZdLrNIuctJ+TKzKubtwUtWSS8Fi152HgtjhVw6k9ZkwMYnJxIyl+1nq2AN0SL9WjhrU1jof6fQXOQaPkOndtTKprBIqNVQXTsBGg0sa9OFqD92vQP4Zz4nHNEO6HrkWGiYzzOpjIl+V2x6/A8TDs7Ugn5epNTlYNdNEP+wiYZspK7/dyDjw5P8PXaJRvleYefNkcxmDTgw0nRwnPylHCs3IZIDVuW95ergJTikpKub9NsbqoeIUNXwpbDy/li8CuB5hw6QhYiunCpNsrYzsQKDydZUdu7O0mImMtO7gI+oVPve3JQ6ZJZ+sPAx5HvXELlkvBTIhoAaMop4eZJADOahYpFDp+VZUGbr1dRwCom+jIg95lAKYLaZqtBb9JEOFojXA7EXNRQxwcv7bc5z//eZBZTN11113nLtuJTnQMGimKcrrYVWuGF/28TgGf+XIJpmlhPZZDxzc8hr4U92XwcX318/wsRtIw8nwM+dLOFn/tm0bDwx7HWkOJ7bMcBXfEzq3+I3wr9VjCvxHrBsODgFd9e9k1AnqeoYLDSjgLtuVc2tYzhkfdWR5GNZ9BGHH/NfeN94bN39XnuMsjT29JxocbxapiWoOlBXcaJrM8nrU32DjcxxW87DFwcG+slH08Wpoeg4uM6+t6Gxhxy5Q1mthMtf5ajUG/25e6shDglPR2bdWKYcpk1gUxarYWQVhX2aXMaGtZxj4EbK/Jm/KJw9ZtKc5Vo2Nh2NuRTsrVm5qyN6AXko0BYgvUzQQrQNVGdS7u0orx87DlPCRM+BHQAXBvBynIt/AFa1Z94+/D1O0ANodwD/Ds/R1bh/ZhVNtvi/I0A59w8qMrA6r+mhIZ4S0dEwCgtQNLu6Y3U+/pNmozLXtvcBOsJatAZKB1y4AD9rNarTjKZRl42S9Wwjri3EuG4Q4BMECc5TG0YMgArAK2yLh9PsMyXdBgJW18nvQv2mr1htOelTsEl+5LcQF5pdv/guj5z38+pmkZ4L7oRS/C2dkZnn76acd/+umnce+996Zx7r333kV5+X366afxkpe8xMm89rWv3bcaJ7qNqM1FduV9sUQphh1j1mjJqnM6ULf0NnzX1UfS6uaUiE0F74SyhrKM8LL7rfN1fGnf/66nsYWvRdTJn11eHqs2HFvq68MjFhYZm9F4zRDD95m1DpB1E1Uen/VeFI/H8Xm8Qx6B1u88KvR6MAp9uY+fcVsVg9WqCbM4NIYvxyEtpQsnLFuvBlBSITaYgck+bFkhbYWH2H/gXqEOuyyk6exCHHY2qbBt/z4zh+WjP6u3TSe2RcYbyWzF+UegdN13GV+a3TcLs1w8JPqJbk+6TQ12bw4iczUAklkDXk5ZlspHQPfFTF9+pGX2b4mNDKMq1qxVIwe5GNZkcn5+OVmKPDQ5PSMTSdzWAJkVJpm05UBOC7Ym2LaJCszZ15dtH/BheiYWx74SlbbZFdPaV8EKx+u2FsHWO4DtyNMm9D2ozGRL7kEc2LDcnfbdhnXKL8F/5Er88HIw8laOLQ8hLPA0/oCnVU94Jb3+gbSHw5dwcmln7i6fiuCYEv7adUGkoHKftZKhW1qxuqXgt0DlFM9fUp+50TTP07mvrXTnnXfida97HZ544gmT/4wnnngC9913Xxrnvvvuc/IA8Pjjj6v8N3zDN+Dee+91Mn/5l3+Jj33sY8M0T3SbUQcQy0XE7iOfW6ePQy+nrFggXpg/Wnw26Vn8wk5W8rVncbYhTdoCauXYYdfQZqOLwm+LV3+BAb/itJjGGl/wnpwja+sLd9Kl1jli91bdiP9NO9rqhHDvj+EHXg4uRZy6dOWyfs+5Rd2N58P2p15Z268tWv+q4U4ZHusQ+qitD1oSCP4u3PI4xInLOeN337blZpgA6LJJeeaxgh4DINHJFJU8fs/4RyGbtlaDNcwuT5wMWb6RD506+rtOD8C+pcnGu628rF063rHbb5Vo/C2ABbqUMpqy2O6t1+U21KXRZWLYq0Yny9UbSPbN3hZgeDGFsJNxFxh8WywDGi8eE0BBJvrhpOR8oZyW2osSGap/Op64yfICPKKeV9wVPJs2XLIssBCrAR2jwCWRGYA7avlSl0aAeNTn0YBtppCNsiO5Xuk6lvNhUOXu3OoM34Mu8jng0dmrZM6yGnU5C+yA1bNW1WPcev6q7eqSrdx+w1PQSZIfusaKW3ka3jcFiGmP3PW3VI2Nu/Fj1EsnAoaa0i2Dwq1At1JZDyBnBX2F68p8ls6Ym+Pv+e77kUcewVvf+lZ867d+K77t274NH/zgB/HMM8/g7W9/OwDgLW95C172spfhAx/4AADgh3/4h/Ht3/7t+Omf/ml8z/d8D371V38Vv/u7v4tf/MVfBAAQEX7kR34E//Sf/lO88pWvxDd8wzfgn/yTf4KXvvSlePDBBw+u14muEPGs53feSCKa0zL0LI8rY3huYZqFWzzY0nMYuQIFCwUE9Reod8R285lIaUt5sj3WMGCECNCT9QTHRuzqM2OwMRhoCsCGUyMmrXIm3ag4jEYLZJSECLK59s6613iRH3jduijDuXBaFasUjnSQapUArveIYgDsyfzSqxlq4Rowm8Oi1S/lt7uyxCLXwkgNrxau7px+NDjmoDVa89nwAInt05Bs4fcgengMwJBPsEkeizRNwfQ1R1d8u7yQNlCsL/dpJZ/Y/SB5tXqm5TJ+DHjCj6XIjwcwMUO9rCM9CsDyTT/TvmkKuXSvbiqY2DVawrsidNkY9irRSbl6g2jmQ99lHp+2Pzp++ItjSvGbcAbs1p8uPPiF6z9+5cMpyPbUz0iqPEw+WuDeotcRfj3MAL0KRjxgH7jJ18pOTv7jTolClHK+Xl14kOnOeTV+ivHWru0WsJORn4D6Ia8KGJPb5yboBFzs7yaf6ECeBU+HIDLhwQCl2/ovN9UtYSJYtWHhF/uE1WrNiEBNgB61clswbIGQAmx0+koOsg4swcteOlG8O8t0I61W9x7hDynoLQzsiAGer9/oYlwM8XmB5X7xv+/7vg9//ud/jve85z146qmn8NrXvhYf/ehH9YNUn/vc59zxAm94wxvwoQ99CO9+97vxEz/xE3jlK1+Jxx57DK9+9atV5h/9o3+EZ555Bj/4gz+Iv/iLv8Ab3/hGfPSjH8Xdd999zrqd6CrQv+GvYPxy/nJI5sNxaBReAA06uWU4Ek6z0CtpPXiJRVJ5cj8hDe9W/Lf2m+DWRX7FZxLesKGvR5vrWTmlTA35sPIFGFWQlJ1fKxjLVNaGk7kato7tkfkbfh5etBC2KmeMBSyeMJjRkfkAmGvHfFkzJCJJolc92brnh2/aNrEfkZU+EKyQTV1Ii277MflwdXPCa9K2b2m4qZe4pX1avgFg7+VeiLsPJfEyTA54xaSOSXaNIeEEyEuPprhuMuK3L55dH4sAvFusDPxZfTbIdHh/n7YMcvmzYnvWIJmlYALO9dWl8xIBu698/gYW4ALpkjHsVaKTcvUG0SRfD7yRhWAk51RFwBh44W17piCmMDJnH6WK8WKcBs7sBL1UxhZmLTxj2hFwbpeLb+c3xE95LX4G3lIrUZUdKUVjmEkzAYpAz8uvURlH5bb+poBtSlV/37Jy2YnbniyVv9U+rpvB41mc4rqr3gVuRc6w3NYwZPIRrBmeA+umvVSpihDXuC2IHn1DzOYZ3TcNbSzUTVfuY9I5K3fomuOYRNMJhhyLHn74YTz88MNp2G//9m93vIceeggPPfTQMD0iwk/+5E/iJ3/yJ49VxBNdIfobuIZ/ixv7cmTJYjARXp/XKnNxPW8ithm3ladN9lbBWOWq0hAmXkzDKjO9e/BrJ/nI1wnfh6dnr2oAp2GCOSWViDttfX2dQt2c8nGhrs6CdEVWedyHxzfjmSw1fo/HYZSqto69QrrgMipl161KSzNtos0yHmnnKMCmLoIFm1UkG8mcpuSs1ZF7SzgWZNfCoX6RIBdZunf8WJX9hkDGT2kN9IxAcCQXJoUzYfBlhylncdexALT8cavAz4qzFwx0a4YNcXWdtC2XValYn/GbsWGcLnhlvD5v+ms03fmSdaET3VZ0WtXcQJpw45UWo7w3zSdpPO79IdKiYtX6FRj2uWZK3U1E0dvPXFTBH5lZkYysBc/RGmFctrANisvkKkpUBXUDpStgZetbaOZO8QrjLjJA/LhArgwdAMrOj8DPeBGMejDVSuEXRV2/MntreEnOtfKBRBJ/sFAL65OlD1rmOGS0RYk1PQ+u3HKsewsuIuWg/3rfjSmtgO3oRkhr+DXVUIUbOUYNaYsF6w0u+BqOP5RYEr/V6SrUYUA8T+e697fzlqoT3Rp053QG7HBDn+M+a07CAsZMXo6LnFUUxvhRuQaKefVyfXx4jUtC5H7bsUXDXxqFz4ppG/6rBXBlMIo6bu3TW7368pQ2Ik3XXuj8FRtSH9bJE0KanKTXp3HwRcbd7XsOTZSw+37iAaN8uHVpvaXhDjR7i9wmLVaoWbpSfjbnzPq2lDrug/HWwpfXhlQ/YOUT9MdhcT0GoeFowU/7Gcebu0EmLduux1hE1MLZ5NRt6yblSBSsRS7uPhsXKV0GkC6T1A80XrZFP/LWdqYdQ0+hj4OUD9V6d6XBt9/7c5TwnJWj6ex8CdykdMKwh9NJuXqDSSePS8+5Ki1DxmuWqHsd3JxUKrPuFLllpWtTLC6V1YLjznqU8vwVCBmF6tJW/6yOa8reEUjsSp9MflG+WIUKELRATkBUD6RWjw2AV+J2VrKrcjOAuRwDkGyJWycLGzIU1NzunKYgY7c9OTeRtlVxiwKYAvAdPI0WzYtkBSUC/uwRZpYnX0QFGZ6NbwBm5GXWq7PhEZWTbO2RavEYADaRJd/ohq3DLUfcFMu3OF0Gjrwp6FYv/xaaz3C+it6+wPREtw7pC7ob8kznZ602OsfSMNQpzcbhtVyx6rBhZsmaxLFKUP2lhE9RrmLDoXKUde5fysNVzvzacoqRQTMSaGXPFY7WW9cfKslw+SkoCvyh2/KSdYNTmEYZ8c6trJSls526x4FaCk1ZJGqluO4JcTgJc+zSfqU/UFXWJaU2iUW07TZz1TK68OAe8WDdFseG8FgfKVU8ikrK4tKiVr4t1quxvIdQVl+wKb+sw4Qz6jomDqRuNYDrg+lwOIe1YByTbKFifusN3ldOggmIinC/WAiPVJI9QjhHqWMuNs57gw+hGzbnXSKdMOzBdFKu3gTUFC2XOzpsscbv4iCARWRgsvqNEgdGJmbbDFMNSMDYf/CzbiadVgcBX0hBqXU73la5Dqw1paZtH39FMAiTXpMhBaie1yxHrTI0hm+xXF27zNmr6fESCYh1/G667frW2ox5+BOTwCWqispMwtyS7p5UnNDJE2BsPBRPtOc9gE4GKBwXwu7Vfl98aTMFp1IGk74FaPEsVQFzALo36rZ5boJvliwS25twopubTvfoRCe6GmSBi9Ll4NhocXVo3KU18pJcnKdVoeRwrt16zZmGbWE45PVf1T4VP2HBitXxW776S8j5IdyTYHSv3XCiybYb320sLm6RY7fKYFCeYUsz59l2bB/yoorX1gwg+ox5/ZctEmw9x7VB8uExsfSlJH4zIGCTGmvN+nVFvTZZra7sKkOC1VMFF3eucbsaIBpZyFs2p+XQQ2g1RVN3Ny6gdX9xjyxagWokYDJ19+ACh9XFYwlaceBWJ24NAl9p6+949XkYDrrBn6WTRlu3AD4K2YfrRCca0Em5eqOI9Q8AM+he2gN74EhNZsIwKY1AZ/P7SXafD105cGoY5IBIk6YoL26yvKaARJBftFilhJfJIckLPaARK9AkMnpFZFNi+italTYQRS6OgNiRYhUmjf63uecmn+qzIme5r2Vz8bp0Rq0vtO1Q+7tlkk5BkkDh+qzaslurU5DwOPBoxWKVTYKaaRsb7LrA/LZyWqAND9D8Y+LiRbcjXgiLdN7x6zwA0pgtXGk9661asVu13IfS6WMAJ7ryNMAvl0AjY4T98VkMb4pSxRNobpWnhbgiTz5uTCdqNCTcYkUpS8S1I+vUMgcmQEHWHBT4Nnx1jLZYsv4yUuvVhjsYvRGArbOxiCVbdxPH6HNi2xx2CeYlTMOdVmTq238wy0rZdG2dtG56vmbghzrKx5wA+1vcfl3Ehh/uv4BRlPui4sFqmq2o4FUR05f87HbT2a7FRA33QvKzRbPPi69OXLm1lvaFSrfym8gCkf3xAlUo+5JsdK9RIqtFsfkqv/4ljJWVMZ7IVvzvPwS2Hx1TAZtbr+5ZnkHCi3ULgRzLsG9+x6KlheqNmQIvnk4Y9mA6KVdvFBE6ReqWN+lHIe7z9qBQSlHLFfyFt5+/48mEHNtgn3QUiPQV8oDTb6lyoNoBgAZOhhapbHgJuM7L6wGlBVhS9E7RqeepBkAnAI24j2OBHfWAEuh5PeDMAKi4y5aziXyaPW2baThsYerjHe5nexDRvu6sZrWbxRwp4fXkaxjra9+3dmByqUxZHhYUh3iatHlcUkvWmn88n39UAhd2XpBx3oGP3M/Vo1u1Yrdquc9Dpy1VJ7riNMIBF77WTDGsp3MPOYNJr5vrKAmT2VcVPT2OjpasLq4oslSpNjv/NNr2b3Bu99sdIeBxoce9/a8Na4okW59e+9JwK2m9RkSAs+JzxwZs/rCVL9MoPBoctLLGuJl7TFmXsco4YTTk19Jm10+sHGCjR7LWtjHfCQHjx3Pd4i3h4BiG+wJyJpu2xELeLirV5CsQDUlIT4u/PvdmyxjPb41xj0JaiB7lO+vVKjtUsILrzjeD3UMz2N1mW2WsonTEi8rZyDuovVx8HvTWnPZSFtsl3LFpeei6unTCsAfTSbl6E9LRB/0ug3kQMBqZEv6eBYxWBlusC9bi9ECoAU0Bk4AHTZk1K1bCR8rTaEEwTIdi2Sxg9WU3CbmyW0vRlGqAyE0CIjVtMumMrFQxkClnqU7aFv2b/rjI6q0TPJDvrjqJr7m1mfZ1Y48uS8DMjDMY61VqStDUajX5bWGcgj+9ZwKK7BrAFma5Ws5T11Za1gI4KqChEN82SHVL/UANhC5nngPbG0m0+UbfXLTahrdgnW7JMh+LZlnaHkq3c+Od6FamC++5Aww7WranfKPd8B+yNBqcDuuMwvawWF3AlHYWoKpQ9NhJtDRGG2NRh52nu/pK2GDGNvOmxWoaJfAFmVgrTP+Cnk1b+DA4uR5D+zpXfMpwO7daGr1VaYZzCcUwYI2WFaxcXX5Hl5f1v6XsCS/I6vcTgpzD1hHbuFseV4498gxwL8WwtTSKXRFkG9UeECMPkcwyUlS07QolDxLDvu3PvnfQYXMJDC0zwuopJVjS4me3DhAcn7lrRC1j9UcFa31ctq9V9qBNW//XZMx6QvwAnFKz+4CW7RdrW8pi3lF2FSRfEPinlayvKlQ7YdiD6fZVK98UxMOrvHUbhx98cQSLthyjsvW8vmxZHJvvcpoU4lCIE8Fo5ldARwy/fT7UjSqYoxY/kg3PyFq5djxHrWx9vcsvV3jowOEo++xWoQBxPQbAACKCvL2e2yXtM7hAM6heE1Ur2K4wq7PckA6PuU+qyT03IWkZbCWN6a+2pkfvCpDMKkB/tadT+9WGzBs0FNZmEvKwZQh+K6NvsUkUq+wq7kB7cEcGRcGb6RrW6OajpdF5kW7uavV089+KE53oROemdbx5bAyrp5iee+4gMx17d5vuSedZnbbJD2/qNnNyF5b4izvi2PrLFsOyhsvHVnsrVGOdSpZv8tfMLdY2v0OtisetZHhW8WlzYyPRPNHW1aS6OAFm64sRz/Q7buW1VScHzLJk95u4NuFZindD8L7hS5+MfCtP1DVBq18w1mBAPtJbukwoaVxjsHXIs2uykvAUNIZCpY2y0FJ2OZWmT3oDXTW2uNuIcRRKs9FHID7Vo1Vf4nbY3PdBprzLXgYd/N2pcA9WjwM4Ah29TS6rkU/k6Bd+4Rfwile8AnfffTde//rX4+Mf//ii/Ec+8hG86lWvwt13343XvOY1+M3f/E0Xzsx4z3veg5e85CX4qq/6Ktx///347Gc/e5FVOClXb2bKQNn58WQ/WmTr4Ex34dOiTmZ/Pw/zGPt9+cnPSAHYZhaZFqwGQOvAbQyPsll4f3XbckL7STmYKuqzVyCnBIW/evLTsJNn2eIf0ynK1wmMaZjusSibZveZevcpW+gztY+0lknKQKgb8eBunGBvpgB4iDETK6/r+FIO3gKLVuDTEkalsZ+JwFMpq64vTBnZ1M/WVbMc3J4bij+6xr656dYo5TnptqjkBuKpvPk/9Dr3eVcnOtENJhkLjjhJdAqYG0L7anjYlHuhMQJm6Lb9s6AWpL/jMozi9DClt6rscbclb67RytewtijcrKFBTB9GIRrr0GSIm1xv4QrznQEoTm6lkn+N48utBQlrlfGaya6DPD9Zx5DnubrbNie0s1INX+oQ8WiucKMufGXFk64W3Nt7YxTQt5xdWcWSV9jre0PiJiPbFI6+JUg7gsWqWHIDup7aNAzpM7rH1R1ZYQyQyBsjOXc4B3dtWNNqyf03GJ5X/JY38gtvrRAjdXUelbFZsTp6gEbhF3GtV+j2oRuAYT/84Q/jkUcewXvf+1588pOfxLd8y7fggQcewJ/92Z+l8r/zO7+DN7/5zXjHO96B3/u938ODDz6IBx98EL//+7+vMj/1Uz+Fn/u5n8Ojjz6Kj33sY/jqr/5qPPDAA/jyl798cNOs0Qm93yJ0FGzK2VjiAU6vrIsKPDOhHFmr0r3F77YK9eUyBTey3t2BR26AJsp6nn8T3AFZ8uEBIqhMxrfb63XLE/p7I+1AZPPoGg5NIdtDrWgw2UDnXC6eQcyYGOWrpJ3mUC4KV5LdIJxD+DaDFnLIihU11DCLHkFeXvzObVAHmrVwBJetXYv9OAFVIVnaeK5uNr/WpEVBH0IRDFjNQKh1R3vnFJB2wBP6WEa/jyzl5C6cMje8OxIFT9dNjnVpvcxTchGA6jJon7HzVgJ4t1JZL5hoPjv3daIT3cy0eYglHA0v5i+0OeFnO3nCS2kDRPxuLDg3d3you833fQWdJMUwgwftTipqCMHiAf1N5v39VDQJJVE0NYoi1kjBtmWfhpZrbZ41+DSWofSfBpAVx2oO5j5SXpnWJxZQzbB8W5HQBrIAy/zGVPWZocALcRXPD4qlCDczDSbp9abt0qqG5yN9jgdrE4T7tC9lDSOO+sxtt2QdPev9FZcg6chAxh1racK6emgfbRh2CfdayhSf0Q7nGB+1Ws037bAj3nodRwrdLTJ9uc7RAEeao64K3QgM+zM/8zN45zvfibe//e34pm/6Jjz66KN43vOeh1/6pV9K5X/2Z38Wb3rTm/BjP/Zj+MZv/Ea8//3vx9/5O38HP//zPw8AYGZ88IMfxLvf/W587/d+L775m78Zv/Irv4I/+ZM/wWOPPXae5lmkk3L1BtEh6/8Gtw68aE74DXDakcWCVc/zk3wPYHtrynVFKbw/Gajj23H3QlXznLv8I0RVMMyj8JyHVR5SuXgkAHVhbWrOj1rwzn6BAP/V++4agaEGNi1QHtUoFiTKrPnz1BbsIcjKbZ3z9i1VDmwZ9P9v7+2DbivKO9Gn34McMODBg8AJgwokuZGUqZA6RIRJjYiUkEwlcqWomGLuCDIyN8UxozCZS6xMcDJxKEsTjYbEWPGCiWFMmRozFU05lyGCUwLqMEVMHLWKRIoAOUcUQUHkHN7d94+1uvv57NVr7b3f/X48v7f2u/rj6e6ne/Va/etn9eqF3yoDvOJBkKVMovB1pstk43e6Fky5NJmonljxizwM9DiyXcBap1cmkqGQQ7ylASE4NZIESwBhrOTRxeJ+FuFbwi8EqC1pp79Wuc3yc2SEuGvun8OxXVB22kFv4Ez4WQ+RO2hhOE5ohW5f2F24gfamEuDw0OVdboF0TWB6VZ8/UF8DKNsRpPwiNwaXsurHvtxYdBFHhZronNZqM0pEy1ZHaKwkspHUC8fhtqJZ6ytbse44DtendfhRZYe+jmbmhLUZAKGH/Eygb8RnQgLdYgdRamBbG/SyOI/+KPhNUQOVPzSA46vDwlD7Uc34+TRTs+4hV7WGvm4RZoDeHAPEVQEdAcWDbJPBuYbsOCVQnihalYDkR3Q3zdCprT4VK1YBt9Pioa1elW3ZWHJsOwctXF6zcrT+AMB5LcKiOOx3v/td+M53vpN/zz77rFre4cOH4b777oOLLrooh62trcFFF10E99xzj5rmnnvuIfIAABdffHGW//rXvw4HDx4kMnv27IFzzz3XzHMRcOPqihDz//ZfaL9VqQVq9wjTvNU0mQ6DMnzvUs2IGpgRSTO8hv6WiZ/SEiOtUr+OxM/y091UVkBktxBk/BQYxysEO4CIXyOyfZhonijyogQ0URhlD1aQ9bMgTxMzxjKdaKpaOUFx6fFD6cfAprCVq0FE1dOW9qe/uBYg9iecEBhgJK5X1JiKKO5EPRgNCVx+4L6APpQQKsuBA9qOAD/ZDqlQ3MECQAzotbCAek6QvUj2qgUiFh1WQXSaSfcysINJncPh2ALQtjMa/E0rKiZLgR6rcFnr7t08zaaDJQrHb03JRQjFkVdYolfZSz4xh5OnuaK8wl3zMenQl1Hbi7UMzVHkG3IdaL1wW66pW0jxH0qbh2xMgNk2YoVONK9YLVyZtk8gvjrMsVxJPO+YL9IKbod9aLuCoIWzvI3zGZkfr4JOOpC+msviC2K4jrQ1ZH+PRjjOowYjPrC8eAG5PqUTIaZLf+oWB6wTalyTUdvyIEHhpJq/DxTG6QXzO7FiNZDi6YuAyB81P0zwC40ikDaqTROG4rlctSEqeQ6UoxrboxJWrbeD47TTToM9e/bk30033aTKffOb34T19XU45ZRTSPgpp5wCBw8eVNMcPHiwKp+OY/JcBI5aWs6OpcAevIYSqkP0gL8hDH/usDUPts9MktEGY/LqP4uPSnDgxxh6wqkQY+RuDVN1q4Yl4kJlCgGmcfIrpCW9/pNEtw45LOCvbiaJseP+EL/Q/NVxjneZwZ9t8pOnCVU0OYgMTRBzAyk6Bu3YpQm9P33BFGI3eNvhEVIPStlBo5tDyPUBAdcnRUKKo3JZAF/iSoHB9EyAIIixHq9iwax1oPgppdXO3eRMHZsLszV2LxmJSaupHI7tCfvVZ/0aq83PCSLNO+CINPaxN6+KCDZcRZE2ubORQylf4/SCg1qkDBM3A4VryuPgilhlT0jOsXl8Uivx2xISs0sYmRUurfuLPoU39wsi+vNY5YIkjhqG+WIKUOOkQVk7ghIOSjiGYushbSrDVPIpjh0XZf0IN2kIrB/T+IDigxLfAq2vZFhTPBTX4ieXQQCIqU79xR0Sz4YybeWtpSqu1jUUDp/Ls/JA94JMsudDy6v/msy4/gWk/hHKfCUhfY5ZJuwau1pTHNlKrPm8xYDQyxYcRks225WqLYjDPvzww919pMfu3bvn1WzTw42rK8McHRbl0HRNM/KIy28moJXwGlmU5dijYyFdnU8nvFqeANpT3HzMhjGdIAdFZsgYS4pWzyU2nJY6SH/oZUMmbRpijCD3b7UQlR8mm+gXEJkMIBaWFJ2Tntb5HmJc9fjYi+TTqIoLVoiIC2JN0FcsdjmHTGiwBRFKYYlx5X4QWD4x54cWiuYj1qoQNfy/JFHdqd6oqAbOXL34RVkpf4COaKOn/DSuuGlFS2HVMznPbY3XifF94pj/9rkwbCJVHJsIYbZL3+uuNb0bVx2bHJZBqBXNV0cEsrWUpUstwNbTIh4B8azCf5I85z0huxmHTNyiVIXxN22gKwG1B/+Ju+KtCcYc69B57dAxRvzWVgDOVQv/pEwC81I7XI/rPBFxCKl7oRdGvTMBGjG3qsqyttHI48LkbBk8jMQUljTOTdGfi1iCCSXu47lRMqmR4wGkLTGSEgjw1cPDElUnpzVx5CSD/YGdeqxgBEi1tgyrtatB1Bno3K7oEkgCmX9Q8tL6Dw3NcwTkB6iHYYOfGVamSV1Y6iy4MXhZgcVhHVJmkV/dNqzbuha8UEbUcpG3DlDbdBKwKA57/PHHw9ra8IvyL3rRi2DXrl1w6NAhEn7o0CHYt2+fmmbfvn1V+XQ8dOgQ/OAP/iCROfvss5vrMha+LcBKEZt+tddxYsuXgcIMtNezghKWf426yXpIf35KjTftJ/KQ95oixKt/V0Gqo4XJ1uUEFHLekEowf0PxQz+5VWLtCTdadZpHOuvVK04yZSPoOmkNxY20UeybWVJ0Lq2pI5EUu5NW4lN54/oT8aP2ImQTvQYvv1ILKA75c/LKYJL6r+wwyjEa4ezYAM5nilvPRL76b+RbkQvIgT96EIUAS9T609ICiG4qRLcpkclYKIN0OByOZWEMV5S/4dfN9Td5Fv4zPmzF98FPH7U04/rBqeMHZT9V/N8ay/WBDb3qTehEYMdhmqEeA+PJDHzFJdfbpj9J65hrADm8xFlss/hpXNDiCIkB1FRWXnW0SeJaWulLi0Tm148jIApW8orFSzlbyOclor4c+3jM1+14yOGl/zcr216vMf5adwpdQHf9gt70ldOQrwJU/5j9fOaowSK9bVBXoS4yLOAe3X+sN9AGtT4qpd01xPyoxv1b5gaabA0tZQ/lsd3nGZsQRx99NOzfvx/uuOOOHDabzeCOO+6A8847T01z3nnnEXkAgNtvvz3Ln3HGGbBv3z4i853vfAc+//nPm3kuAr5ydUWY71aL8gm6OwEtUmvPc6wSaBAvOUTpj1isC0s3dN3Wot/dVBIYBuL78mOQRrasfn6vo0bwNLcShgYmuiJVvo6FaVoQ8jx/PDHRxg4+cdDQT1oCLg+50enTxiNtbJR+3gfmBM6u1Q1A+2biVekVMuj6TSCP1qOteij55YXEgGR7Up+fEsfU74ISrqoHfMXrcAt2klVZdj4TeQ4Q8oLeHNlnGQDIYt9EqstTzCDahLRFm9oyDGi4uC9o6TQs4ua6CIy9BDaL3o65EdbXml7fM9N7X3A4ulu+sVdr7Q0e6/JpCdd5asiDuFx1GVnCYqLCOup+rke0j4jDprzSuNyt3Is0PJMSo9IKypYAvC1o3bCRNLDwGEO/13/XVvQ8dQTKur9RdaNw4Ti+gjAJ4FfAZZ40X1JG43xJoSpV6Y5DMaLI5gJZ/czLUVhkizIC9ZPFGknWGnxC33+tJaWZ8EUkX2RK+yQiTKo63CisjZu7ZkS68LJ4uYY/zfPKalsmo6FMXxkXDjIeN0l2B/HiHHnhDrmTDqIZNYJvhaG6ZB5vhQHVSw1Di03S3dDULcTSLhaQzkulONrFvMApKcE25Wqr4LDXXXcdvPGNb4RzzjkHXvGKV8D73vc+ePrpp+Gqq64CAIB/+S//JfyTf/JP8r6t/+bf/Bt41ateBb/1W78F//yf/3P42Mc+Bv/zf/5P+NCHPtTrEOCtb30r/OZv/ib8yI/8CJxxxhnw7//9v4dTTz0VLr300umVG4AbV7cRtHuJPsDqq/g0QmOHMUJA3DyO64CMh6HkruWr65fyoGXY+0XRo5aW69m6PYAeH/MHrgqBQm6kVyFX2F1Gw5RW/rSRlSKVxVe9lnbWCWZKnDbyxhONqJwLyWPkq2A61xmuA2EbyRGVeM0fG9KnvaRiOh+MiQAiE4z4ZMJUZjqsX4kcpKqhcgQrP0R28Ws81kCG4mjv6okQjusFuBt6f97MP3+gI9BXljQdtFPM5RQZkVXzIN/C8DcIm0QNx8ZjbbYGa3MQ0zXvO46dhNptWw23ueK8YdRoF9FQG5GqiWd2ClIuiFGLK35uzEwGGsy/BrcIIEetbtaRQw8P+X8kehKd8xEbXfl+pjQtr2PHXUtZKYZu04DnO5HIQr/PaAyUfw8hAKC9W7luTK5Sd42rl62/Uj1w3exygFjeSl4qcUSyGg/PyHIA4ml/LjwQw5pG1wUnbaH0ijImP2beXNuBuOw3pgdd1QqHtTVj5yWlTx4ylwhCrnNzZS254pwy9JNLgaNymWs8m4QFFhYiOgflykoLScbAUqs2lRmTd7VNhhI7VsJhf+EXfgEee+wx+PVf/3U4ePAgnH322fDpT386f5DqoYceIlsMnH/++XDbbbfBr/3ar8Hb3/52+JEf+RH48z//c3j5y1+eZf7dv/t38PTTT8M111wDTzzxBPz0T/80fPrTn4ZjjjlmeuUG4MbVbQZsYNWfwuqrRBdQMnHxp/OQw2IZhHM4TY9v4kw05yiIo1EpnfRBT1px/tRNwgIvM8r8cBmibrqb+gPRJxlFzbt8Nprq2wboe+ziX21PEFRvNuBzMtnq1winZvS15KgWyI8fy3LC2MuTrwxb8tBfLLHvFxpJNIhjZB5M6vJTaRSOeWzV3ToP4mpW5GRcKbm6RYAW1xPUAEA/kiUKVYrkUUHGi+bXJgBNBTocG49uv6o50ns3dmxyWEahyZkBur2HxGHHWAvGFGZYaIDXKRAd5MpOaiERPBEN5pLragMrPVI+TQfPkPTrpfJR+RAVOQYeLttTLkaIJTym8qVMQDKRfEy2456lPjRcukF1ByJnGU8Tn4tkHiHe0kLumj5FvianH8X5i3V5cqzuv2rliWGQViISgBgAiXhA+Zfo1KWTAZdwXCj9ir8IZu3HCiy9AM67dL/sByuO5cHdsVREDLjqB345Bw05k2Finwq04mjp1KvJiryVpCxM2w6AN7imEg8r+USaT2UawHU2qx7BtNHONda0Jq6el52FVXHYAwcOwIEDB9S4O++8U4RdfvnlcPnll1f0CPAbv/Eb8Bu/8RvTFJoAN66uFON6bXM/7Qci67WQOpGiBdmv5svydBlEvkItnuXRbFitQw60fb695Vl7yh+Qqx6Pw/jIPUCGlCN+vYp+FEA3pOq15b8yAeK/7rzpKwrwecFtiOuvje14Naoen3KIIt5C5j2E0GA3G+AZSwuCJWEGRtNyzkC8SFQgkaw8IYRMErSPVeG2sLiYqG4DT6YJlCRqHN0iIPNFLMfjAMjK1tCz6LlfCTLqN26MdnbkcDgcG4M5Zl8K8p07jz9a/jY/lOE0fTDCebpiUOkG7ICeKmYDI6DRRhlysPGnPiTZbWitTKWZ4zyGjjZqWwJMHVHpG0r4oTplJ5mXsjKtuUXZzxbz3EjSiI8CJv6nsqxaHOa0Fhltx7wMheiByBo/X6XPdDIBR0ZUpwB5EcKa+KhRAGwVlXr310OlKep11XKspOPlIG5qxaluKJdPx9PTikylVJZveVuLvbnVy0ZVH3rn4YtX5oXQo1FG+1hWiwwAC4PaGuAVQJu0OhwbBDeurhDLXJliD9787msT1+aw0BsGUYEBLdEL6H/n4qMfC+tHJZ1UyxFJ22/VJKQkbMY00/aA1dyYyEgCu4bKxPlRtyUTs7sztkZR31JeZeVq/sUsi9NahlTryT4vuYWa6n56XjtNbIN5Tq+rC/KJu96/y5ZtEZ0qnlamJ/onLtu782vyOG0M3YpghYja12PjjSDStljI7SMA5D1he79ODFkcUMKV26FvFFM3lKda8wUTTodjVQgz33PVsc1hWb8Wlr3NOwPz04R1BmyPT4ibRMTNMpflPApnJj+4lDlHoOFUf2xMisyPj3yFqpam1yHvacr3Q8VufpQ6Ss7LeavFYfuuEUFdvdq5bB6q6aDVo9b91LxVQskx7aY9gskNpE+6WucJHXvOW+ZYnEsjyyOvlvraf9n6K3NcIZ7eVkL8D7S6R+JSOWUrRqQTRktuZFPiiO49h8UGxNjnm6YYpf5dzfA+qnwuVNopQgzB3NJgKGwKWgylWphqPLXC+vZoMhYP8X8mMzd8PjEXnMNOhxtXtyU0I2GJA7AHQrqlgE1sZVgZqPnHBzhpoDdVFEaUslY26ld6bTWuaWBNxqAcxvNPRLWTk20qtweQT/ylQbbFsJr2r9E/OjVtTiONsHIyIN08DzkpCMhn7vE0AWPOvy6GRvHekT9klfPm5JMxqpySbdTOeG6OCWVX2tJ35DEgf0BfXxh3Tg1p1HCiDXkcf02pzzZfGtjN4yCRMqZH6D9oUVO7RrAUQkTkBgjTVuJSO5h7bHusxV2wNpsjvb1vi8OxzdHzwqhN0DQLSUmT9+pk/K5IV3htHufkm1ZdNN33U34gVUHLTV7IUILRm3DEMfMPxjsxJ0up64ZbhR+PgGZUwm65vZPNYzE/pSXgcP27CVjWDDesOi28WuPguH5aHiQsKmFMruu7hSBq+6uSc6/UexBZFPULFAZ5fgTyUhOvNfF46ef11Ny6fsB0k3HW1CVU4riffOAqFr5PrpFI3WSOF4Mux3VSTpHeBkYnXQBUHeYIA0BXo3K+V46B+cLc8tsYzmGnw42r2wqUPFnvCVgGKzIwCKMjiiThmAQOv/pv5ccNq5aeLcY2SSx10qnvHVXcWPfkJgMqk09tkNuCpEd+tKqAx3HySFevRrDqG3I+9mpWqiOth/2jxlhkY0O1s/0prFCP4e0Ach54kMvuvk9jIfJqPxrd+aNnpqVcRYvOuUYYNX1UHbs8Yip/zECNulIAkDseAA0XxTKIdLl56JXJmw4A1JWpWlzpx+gqG2lg1aI5Wptxk72cZGJraOlwOBw6yj6Uyy1Dh2HYzA/5qazMVwvHHFbu7Z/9wqhaWbVKyqvrJJEMbDSPxKfSStbEE4uvH5+NfVxrZZsLBNgHYoleQeOwPW/MXNfegirJ8Te1rAUA9ENWRRY0Wa2upG2o/BSzlpZGy0MPY3OFiPd47cIJF4+obXMOxQjb6TJgIdKiUVjZcgDPJ9n8SXyoSSlkUMZ4mdxQP2hxJgdX4oD6M0fFcSggdZMIcj6C3+LKq125nKhALPOSCrjE1BWoWtioValAw/EnK/KcTmlz0jYcjPsviweTlxf4uR9MPELW4VDgxtWVYrFXL39IoOdefw27FZKYttXFJpyR+e0w7NdWpwYiR1+PkvK4HJ2Q1bYWwHoCdFsC4Pu57mYfr6rJRECrVwsxxb9620f2qw1m1vm0yC7VWfPXy9M1UHjzCDe32EXqTgrhgjRiNkQQMDRylycUKIfI4smxJ11W/BgYaWiV0SuNFWIkiBmAvoJXUyIocxiup5EPXlArKsHTakKb8X0UY56xCTV1LABhtgZhjqf+3i8cOx3jb+PTeKgtpXFVEAMj50DYF4w8MPfF3BTHZZ4oDJucl1b4r3bMD/hlPkHJp/62VTFkqHyWGKwikKBGlHwLl6VhpS58TgEAapimRAlqn9vQbApxa59nmaSQHXESQz/GdTnN1fRJiwwiAN0poH8PPtUjfx8spQvMwMrjmebCzaska2lG8h0NqhmpGeuP4HHfTeli6Fam8vbRdMhFoTKruppgd5EoqwQDYXgeJc69ESbA50BZZqBnD82fKty/mr2o8EiMmU+NvUFtQziHnQ43rm4BtHRQ9bX4/m6rp6+vAlXJSC08YBktzUA+xB4SmUxFZ7Vc+1hoDz6WvMjgKtz1D1xZ50k+6S95tGwRIFevgjoyZoNrGFqNWsqrE8lhgjlEkjnpVMk3Yh8hQHl1X3VHFh6JDFUKMQhtCShnJw2DrkZWNcJIphEBIG/xgBLlJ9yVcHFsUYrX0yCbKvHG3Qu5u2r0vSVI1TT9ytPuCNV9WDUd9SwbscmG9NHE2rEdENbne6Vqnr2uHI7tghiD+XHWBZeUx1765hbnrouNkwbkIf5qhXGHQiIEuZCw+GqNT8v4mCUo1y+8Fr9dhdNgfkrzRZwxl67PLySM7bCQkRmQPjpHlvXDdaq1Uz4GlCYOybBjxPGYYdJtAjo0WJGISPHka6APDtDx8wjdR3YplyzcHaflxdSVoGkC8/P4apwiS6dJjIcazYT5ryDgocTh+ubtvUCvsz6ntMDYL9MzgmzrHNZ7cg6pidHchDQ7Otc5Ox6W+H9qgpZz3HeNobpG4xxo6SxZFdaTuZRHg27N2KZczTnsdGyZHRHe+c53wvnnnw/Pf/7z4YQTTmhKc+WVV0IIgfwuueSS5So6AqHxZ6K/69VfywrtBTUVmgtGJeh7DVHpMbexVtmU8/AVrK1w5cehFar1+NjfSRJ5jNB9MKv4aVwcjMsEL3YlNZ6coo/COrQVt5xI8vMpS7ZI+Tj//FDqF4G1GxYLmfx0lw6lzlM1FWSNuVMJsSc8+Sh+0aTq2R1leFU+/YKMAy0O6R8zCwuAPs3b0goyLkTWxiOz2IrQLkHHjsHabG3un2P7YDty2EUgj3ph7A+MsP4nRsYO+ts+aCVniOxbl8bAFHkudGSNJLw6OpNf4guEmWDDCNJI8LNkCSFl2EfBgwlnoW4rTHeHfJTGslIzjZFiPlTCETcKkZQlMW7hQPlwmY3aFMmKq8vzVi0txsOF6lpdIg9tIB4ROyJz9o7Y/5JkjBALje7PR8cNc1IUDyFgmt0+97T83G35kTvx2GwcDFJU9lGOAInD5+amTZM/9lXcKYIcgPbsWnnjYnOYlnlkMiksyrCghJEE0Zqp6Eo1UWClQkulzn0/iEM/aPttVziHnY4ts3L18OHDcPnll8N5550HH/7wh5vTXXLJJXDLLbdk/+7du5eh3sYjAsh9nwzRCOIhTvXmPDJM7G0VOyEhp2qnfwSpVRdLRgya6Il9IEc8KBUjkHwaj916WNkSQFmhiV7rCjl/5A4lLlHOwPLHdJT+6kQThJxFOK30xR2U8P505yMPb/UX9LmpagbEXNLIndhLKMLpCXJamSD2X0WFYz8iQlTXxp08a01LNm9S4kdhWBtjy+XGOLoXFf6gVeum/LSM/toauYJV9BEWb9TA0GgDsZ0Zl8PhGI3tyWHnn16uDdyq61sDlAFh6I5fixf8uCeO9htZlT1WCfdlcSxc112L40bXoo946B8x39TScm6p1UnXZegYSd5aWIlL3JcvVtBWrXLOTOVt0L1HKUsNyJ0NrMLKJvs2p49Fk8hKoGlIG8QR7RpxeV0JuF7UXfSxdA+GCK9P6svp0AVj/k2bi5wXLqO66zxNjWGnk3BRUeVAdQcaH4k/r/8l0wLaVgGVEYo3lRGoG09LxEdfB8HaJiqxE8Jy01XCSJP2avB2HrUiEbfLZgKf/1kyDXV1uu/g2DLG1f/wH/4DAADceuuto9Lt3r0b9u3btwSNVogYwTKstt3AJKlq9XNSpq4azUpEMT7opM4qtx5HiS+XqxNKvudqJm/9aERltXyoW9eFtk8QcZQUBSJXSBR/3V8iQlo1yw2utExKVLmMtnoVp8N15vK83tIf2U+L43VCwb1hMqaMoy1DdCWDo9K/1M2QKv2wz08jYREgl5fcYn+mxMZ6IyMmb/kDFP0WAiljvDF7wAUCi2N8zIrDhlKRDhlVMTEjtmnuVlidli45yJdZl4YV0Z3cQR07HWEWIMym94WWNzIcWwfbkcNyTjMpgwboWwNwg1IJo+FsbBJh0mCXJdDYaJuCmMVn0nXbwn2LXnJrK7YoIIJYhWofaVuko2YUs/ieHs8WMvTnEPNbUNJVw/DcQsjqXE6bG4AIQ96lDt+I2FWP5WBz8RQ07ziByiSnpT9vrEsHRGwF50VatlwViQ4rtc8ZYYpJWgqXSU4pm4zhOFbVVpB6hv6cpAUcOE9eaUC8Pme0cQyRzwmawjCHVc5tEjEuRUMRGDawTr11almNuY6Hyl2gXlsNzmGnY8sYV6fizjvvhJNPPhle+MIXwoUXXgi/+Zu/CSeeeKIp/+yzz8Kzzz6b/XHugauGCXlHmLT/lOzk9lPqMaRU3KRZCYHdURPVqgy1mvomtBWmWr0CO+K0IqwfDDXyiHWk7RSRBSkSvSjxS0/IS3kB5YFlg0hb8tZWrspJBv3Zt0iLbI5b7VodgElYaUNOK4dQiBQloJkBMP0iToRIT7bD9oUHljKguNFEQpPl6dKrhyEQQ2RnsEwTEcgGWWE31mBw5NDnnYkqr3MAYvzEBdVWuMrCbdAyACIip7V6ACh9YzOTnRFfYMEThKasxxBGx8qxtr4L1uYgpmsxAsD64hRybElsbg47BROsGzhdQ7g1qVN5cGUY6kT4vpwsPdND92N+itwGf1aP/SCqy/A3stJKSmZ8rYwhtS0BqN78DS3JZUu4zr3LdwQg52kRJrxtFuWkmqwMa5vroBxEQxXiUlbhCoYlcmK5lrxi0Ym/oZY5fcTtnSTKilXMo8uaS2Du0jciRGkUVVok8cPCS/qPXXEO2n/sKvcr3gR9WVpXKxx+uL3IsdbMmNPyJZgDp0fVp8GPdzvmiypMDq3NKRog5LU8lLkK7UFKGJ9GQd+vcNcPVCZdGkOjipg39N1vrnq3YuyXEIcu4aHstikvdw47Hdt6Q4RLLrkE/uiP/gjuuOMOeNe73gV33XUX/MzP/Aysr9sn+6abboI9e/bk32mnnbaBGleQBuSKpaN2CUh+Pe6ZgjSwWfcvTIIYYTB+MBCv/2aD+WEd8Gs4nKyVeqW9cAoB4vLB2P9rLURYy3UF9osNR5uopvYPkRNS2eaglq/portLftTdmp/GSYZ5SlDzthBCzFuAhgDlmiCJWC4R5Ry5nChBLTfyqIYBNyB30b+E4d2LSLcD0mVJeDO4fkx3cpZ5U40qpi0BzzfW9mHlsuNUWgGGeu38GLWZv2Pl8P2qHPNi83NYnQ9Zv4j3RR0BbPizeEKNO5jhgctF4sYrQUtONF/s0/Sx9K7zKW58G+aPWP9koCs6Do3StRWeFufsjpgz470Yo5JPRB/80c4JDYs0POBaJM7IW5n+l+ESKqc2CNfQuaNzGZy3tQiC5lvKVhVikVGRnUoQQknO6XTafBIVQbZ7isxo1kL6cQlVss+8mKfiY2Szucjix1yYPDyVi9XFlY1sj2Z8y4hMFzm1ajpjoolCQ1hoCBMdEkUa3WsuCtowZ1oZVln2JoVz2OlYac1vuOEGsVk//331q1+dnP8b3vAG+Pmf/3n48R//cbj00kvhk5/8JHzxi1+EO++800zzq7/6q/Dkk0/m38MPPzy5/CG0Ey6AECKshZ5gmL9Y+S1ad2ZohQpRYlaVYq6bp/xh3UJP5PORDwtBkcFHANJ+IWBCW35yzzBKdLU4Sk4VopqPmKxSOmn9dPOlMqor7hoBrKVLoJMTja8E5tfLks+8GTti1sAQywpQsvcqV5W3zQBToHOqcWkHmysRUm4c7ssK/VYP3WqV0g/KOU4sN1b9ZMKDH84skUxYBloRHnD/53Fgd5JRN88l/YgyGwM3sDocmwc7ncOORfcAeuLtdvS+hR1KqrrFh/M1vEYRAMjDbWJ45f7IeZB1w64ZL/uY3ACJLDCuGKKUyWGJV0TJa1WOSrmb7pYyGsfTwyU/JWM/oSZaao0K0If7WM+WcKkfWhkbmZ9YDaPy4/1Tcv1icZPHyCxXlAMHduTuWtgQUL2CEh7YOU8PS3J8ku7rEYp0E1WxDJO9P5cUi5/2le5fqPkHMPzooWRG5wRQOkvyDpwiPE2p9aaxP4jTwrquGwACawWDd8sgve2a5wCbCVqdG5M5HBgr3Rbg+uuvhyuvvLIqc+aZZy6svDPPPBNe9KIXwQMPPACvec1rVJndu3eTDwbMZjP49uPfWpgO0zBsHB0cxmIhViJvTTjnK8PwgKqlUcMiiDroVWr8wJUyeNbSqcd+UOGvU5FjhLzHjl43OnQFFof9xUCGiZ18hUo+7eZ5Y5JngT9Bp2SyLb0knG3uUkIgObYNQhGU9qaf7y36RxQYAL3NhYhqVqgQSHXjeQD5epOpH80Hv/qT4mN+dQroa1XJjRuKq5r8fRmpv2PVAihx/XWW3UTPQJuFNRFxByC6Ezcg/ZWTyvdbxWE4nGwTENP6ZRvtWxQsGekkzompdcnt4IxuU2NttgZr69NP0lrb1NSxQjiH3aq3Icqp5WKBKNz4lotfv56Kefhr4acB6MerNJkUiDkrKyeNyTlEclkJHpfaKaI2K/lkXocasnxTIJXOuS/nvykdm480hFv9NDDZwtEhfwzYHm6LzkWmECP8Kj8MHvtcckFFp24bpeQqOqePKuXyK6/922DMMntROBHBhBDxaAj0w2CMrNLn+oaGNf7NSWoPzsEL/2b+ytEqYtCduDXisHgeYblHQzlFqvIA5JThsKDKhdKHlCkTu1xzsnnv+VUuzzLv+rUdL5IvgjaNPE/blak5h52OlRpXTzrpJDjppJM2rLyHH34YvvWtb8EP/uAPbliZ86EnKYtgr1WCQMscChv8uquVc6SElupjXYTtpA6XremQCAk/dnHWEQDvuSWf+EdYQ8QtEULprsskUmbLFaKcX4kHbVsEmo63DzCZko9NMtvdMgy/LmTvtdvFpr3hyDxAhVI+JjCElJZo4s/yRUGyD2sSrvE/PEmIUIyQiXD1Hm2foZyU1TP2rND8SEDDacBynbucWbHhvsUsGzFmSwBOesQ+rC0G1nHqLR5ROObC1A97uYF18yPM1ub7GMCmeJLgqME5bISNuitbHzOiurSFD77JRXgq5mV1Ix/ns5xTEXm0R7+WRuOpYMRhnknLiZlnlDrzgZ7qTeoXSgqcOjm08I5LdgOUxYcLDy39B3PYJMP14G2pyrI6YEzhuHzeQlHr+8r5DTw8kc5klNQJmvXCUWlD6FdWp3B7mzE+RyLnB3NwKOqS88hkcBUzx48gFhxwpNqJGgcgRtEsj6i+mumQ34pT5HAZpg5cH+jmEzUDa0qgLe6ognNnpIsVlotTzkHoLaqa0ZKH8XIWRTmXt1hiQRpOmA9tNziHnY4tsyHCQw89BPfffz889NBDsL6+Dvfffz/cf//98NRTT2WZl73sZfCJT3wCAACeeuop+JVf+RW499574cEHH4Q77rgDXve618EP//APw8UXX7yqajDE6q9mWOUGMp5O+1UHETNf6reeRPA0KZSGB3WQWAQkyaqRU0RgY4nTDaw4nzpJx+UIcotkNMKDy+NxmIR293vcTzi0fmRBMoxUVhh0a+dcElxtjyS7dEtNIzYHB6Dvmui9sT0MRoQZsGYdyaky2xTbdq1iiP1M8VmrJZwybi5wvOSnLQ4NxotidmNhXW4rhG8R4JiKxx9/HK644gp4wQteACeccAJcffXVhEtp+P73vw/XXnstnHjiiXDcccfBZZddBocOHSIyv/zLvwz79++H3bt3w9lnn73EGmw9bE8Oa2Mpt6ao848ajx3SzHy9n/mpYRQK7QiKv6Uig3FRkVQMdrFI8mORjejFHaU+Ck/VeDHlpNityWgctjRXzO0VxMminDICL9PSG0OTtcI1Dkv0ION/6xyo7Aur9U+cVaGB0kAKijETzy/sOB3Vnhdo60SUeRyQ4TNQQmMVoyRHjrOMeawRheF/IjfUHnAP3bu0dqH8vVQ+7+6Fovn5b1BSD+PXDOuEQcj1np47im7Npx7KVITH1zC0BcDCtwhY9KBjDTZDA5Bjx2OlK1fH4Nd//dfhIx/5SPb/5E/+JAAAfOYzn4ELLrgAAAC+9rWvwZNPPgkAALt27YIvfelL8JGPfASeeOIJOPXUU+G1r30t/Mf/+B/JK1OrhPY0NMLw4Dh+KCjp9FePLLKg3FZF4ZaBT4Zl0hBByadxOwAAZtDkZJNqodAASOSTx6W2p8deJhbFaZnU0CmNqpJ01uLKOarE9SsbA4of/rVsD9Bs7hSy1fz6gdwkmBrQl03zCcd+/Oi3Pzf5fPViMUT6JDdAfupe/CUBf5Iq/KUqhbTwZsJhIekcKvFAnmoXo2s3GUpPmEU2sRAT/Bp+yIFIaVRWBFBXxU7CoolMyravnKmb1u7LwlLLmZ+R+QrWzYu19TDnK1XLwxVXXAH/+I//CLfffjscOXIErrrqKrjmmmvgtttuM9O87W1vg0996lPw8Y9/HPbs2QMHDhyA17/+9fC5z32OyL3pTW+Cz3/+8/ClL31piTXYetiOHLaGZfTfltsxveIUTqnyx5ayEfdjqxm119Epv7TsI9I4JmVqxwCEW7O49Po11jutKM2cMkhDKOWikocmA1LAhKvCxVNoIG7KiYuc3iY8HJfC2zoa56AWXp9XxXJovqXb843ymn85g+VVeUTaIg8DwKnSkbatNpcySNMAl7I5GOLnKCjz/MzNO93k246J0wPvFNkdAOTJ5vpi7gxtx1HAUw0AsRpXcOkkH6BsE9CnsaraAk0+T0mRH6ph3VwCvy1G5Lk/JWH9IzCP1n20bcBE3rgeSh5ERtFjJdhhXHszc9jNji1jXL311lvh1ltvrcpEdLM/9thj4b/9t/+2ZK0Wi+6mvMQ7SEADwlhEPZ1KGAfk8ivTIl4jopJo8afjKWzoqJFHgGKcwIOwSlJjIaJJt/qWAH3ZgRNVWy+cf3X1KvvIESeokNMpBJHkicuxEFFSOz/dTUOtcgL/xaj7I9M3svJUPadgXHqVOGVCVag72ec0SvXx/CSdZ7xNgEryiDvSskPFDQCxzzvpobpBUH7lqkR1CjIs6cnDzPBkXF4lk1kymVtUzdzAujnRfS11DmLaXwzf/e53IaBBle+pORZf+cpX4NOf/jR88YtfhHPOOQcAAD7wgQ/Az/7sz8J73vMeOPXUU0WaJ598Ej784Q/DbbfdBhdeeCEAANxyyy1w1llnwb333guvfOUrAQDg/e9/PwAAPPbYY25cZdiOHBZzng7M0rHo8ujAb8CIY/xactD2uDxuD3LiwNL2x8D8mgyL02X6uN4CpNVBX6laODfm2pwj03Ta1ggVY2xv/bE4bOIKvAn5XAAUGcxfNfBzkMgT3ZoquQMqU49PZdo8OPYu2g64DUNfUp5LsHaEnENpgwjyvMnypRcHi/Y0ga5dLh4AqsbUlJ6lxdtvVbkc470iXPNPjCPX1wI5Xm7rALqBFUo4TtBC3TR+1xQWO4W0fVV7VaUf6Uf8pJJUphWqkTS111DalgIWfVKNQnYK1V4Uh92J2MmG5U2FVsOqRjLGoe1CEa8MhRnkr0T2v/QFUh4uoQzKENIHCjs/cic/KH65T5WsXs7PqnGWieWY6gmpPkC/sJrSYPIaSJZq23ECyN1BlQsVuTAwfiTySo2nNF5Hkg2Nbp5fUH9SD0mKB/pkZPqTxuF+kH4rbUPRzdDy4XqKsHIMSlgJjOppw6SHuFE+lls7C2PRmlp79afpS6IhTS/mKHwe6B1a/60YvkXA5sPaLMz9AwA47bTTYM+ePfl30003zaXXPffcAyeccEI2rAIAXHTRRbC2tgaf//zn1TT33XcfHDlyBC666KIc9rKXvQxe8pKXwD333DOXPo6tjMh+sPT74bTbXMdhQ89bMbfT/Al8m4AS3h+j3EbASjtmlezguGKMQZmZKfExve4kMp5n4LCVtGcCIbsxP8R9qPBFvNiAc8+kgc51BV+NAEBkNV6qx2d3QOF5/oB+Q0ifvGe1pMQvydIwNiNTMq93mI7/acydpTdPHCOZwoAZ6C2AyPRnE+0Ly+zPJeEAn0/NkrbgUP34mFQLRcXOHXu52G9HFTu+2c9j8/Zr2A1JVgLXmZ4JtABH4f/6WeM5METlFKCwmCrZ51P6f8ldC7MLBGP6pGs/+nX/oBc5Fku35fWNRnsELEb5TYhFcdidiC2zcnVbI7ZZ+FvJ2eC2AuIxESUkPMx+PGWVI8MTkSJhDR+4ImGRDU5MZ7lFgLValRl7KzLy6X9KJCcV/Al/fYuAWhzNo/pqFiKgkuPVDZ/iHNfcAUA8uQaOtvwwtSyheH1nFxnTqBVSFrFbwRUBySY/au/Y5Yfr2MWHnE/uVz1p5K+F8VeraN9UwuyZRKflQDwOU/PsV3KmC0BbtVraaQhBrY8J7VQugEw0veoTAMwPXdXnEhMUmpBmnnQLhq9g3Z54+OGHxcrVeXDw4EE4+eSTSdhRRx0Fe/fuhYMHD5ppjj76aDjhhBNI+CmnnGKmcewAIHvMRt12FDMUFC0sDiu5Ywuf1l+xbo+3UlmwVpm2yrSvZE3xKQ7n0emIFxNYq1cpL5acWePWePUq1V0x3hgEi/JrGm/NYWp8Vc/L4rAoKGi8GutYy0Lmn3kosdjUyWO59hZERKq8rO/vGtcM0G9LhecMrI+hD7wmvcmqzhQebL+GnJdxXBYyJY+KG4DMY0IsvUyZTmk5Z9mST/FnsYTc9CFNi+jHrNL1HksyvIqWtJVxfltWmA7B5P1D+TfPb5aM3GZOth023Li6SiQCNGnFKsDUO83YW0LzdgAjw+LEu3UZrCX54K/4F9QNrYQARJ1YkmOMsBYiSUfd9b2ranE4vBoXIT9JL+1QfrQNJJHDera4eXtOyUPPD29xwNUtrAIbR6VcZP7es+DBeOj1JnxtYYIHyR2VeMpFS6SSPkNkPED0+sRlhXwory715Y3bEkBini0BqmGha/fqPqzzYmo/2eh0Q9mq9z7HKhDW1+baryrd+48//nhYWxt+yeiGG26Ad73rXVWZr3zlK5P1cTgsWB86XRbGzmtrr/m3+KsyeUxty4/z1zGGVG48rcoo+RNjqNg3tq8M0ZHH227JgWvx5fX4slAhQfJYi8tar8xjjk3Cxblqy4vL5txjRA++rPOYeGjMOabH2/h/ZoRRk+OcGTExxJWxXOsloskxjUxeS46Ms1pcMfeBXsD0144s86Y0/IhI6WA7sfK67zmUHkbaBvPuPm1M/TwCOqtDBaI8lSlP4Ke/z7vUT8mtEkb00S8F8zpcGEKaI03kTRtJfnOn376Me1EcdifCjaurQoxNRtWxaLsM+LDX+TUSUXslajxouXkYYCQvxYqy8yvgje02QlFqlKD0gN4+e9KHtifAQ6Uk1UVfbgzmcZjwYmMjNazaq2/1X8v2AJabYloedn7IdqaSjQCQ91olBIUn7klzhJIJ8SNSEDPBSX7o2hwVyu39mCSZrLEShuiOKhcGwkh6iJIUxrqbVGTIzWHEzWPm1J5cN4UtYx/WeW7Bm5Q3bDW6F+tLOLYswnqAMBcxHYfrr78errzyyqrMmWeeCfv27YNvfOMbJPy5556Dxx9/HPbt26em27dvHxw+fBieeOIJsnr10KFDZhrH9sd347MrnEBVjFncP/ZiGiMf+T0XWzCUgVbd2orzOm0gj0gapDzTuVAVzqU5j45QHzV4+dYRkHGv581RKyvF4zlHITyZrwaqEX0oT+cRkhNLjo2xqFWvHX0s85cYAvloKikzU0C8KCOSj6oGU452JWIwR1YyKrNAZPqpFJC6qmoBRG5ICxP6Mx8RpUbX0KCfd/Uaz+WI2DGmhYLqw/OG/NEoUPh7mgvg+Ufg55QrGmQkzxOF5esMzX1QUNELheF8SLu2zHHmuO1X31oLYL+tttnQN/Bs/YkVK7IcbDSH3U5w4+qKMGu4M+kDvRaPoREFJa2yYlSSZM3oqcnZ4S2yHbcYJsDFUBizXz2GiOQrskGG68RRtilfR1TKioggIT9gnYDKIrKrr16txKlGerztAK4LLp+75U+MpNlY2LI6VftRclzKsYDYFyKgg2QqaoFtaKVcWE5LQ+ODeK0pApAPrgY1rJjtySQEkY9MohihSg9UMbmiK1kjlCWi0NZcE5p0zFc+2wysCyJecxDDhaRfNsbOHVaJuL5qDZaCefeckl9YruOkk06Ck046aVDuvPPOgyeeeALuu+8+2L9/PwAA/NVf/RXMZjM499xz1TT79++H5z3veXDHHXfAZZddBgDdl+0feughOO+888Yp6thGWM2NcMxHWYe2A1D96P45KI8ftDOrD+fw3GCG8xOrW1V+avNdNU5NBwBpDM1vX2FrEOW+mAsGJKOFY65SeDAdikq8tnqVtzWwMHslq8pZDVlSFyNe79t6fMzbMED5hwyRIUdEIG2thJWuh1ai5i7ZyWGDuSoPXL7OV6m8UfdEMEulmUBgyWh/xpwNN1FpM5DNAoq/FjcC1VtI0xwDdd3kho5Xk/bGvD+WT6rlD12l9BWujMvJxUdaB542T0GxH4WxW9WGY5KBtXLSVvrtpJlzWDX9VpmDLAH+QasVYS30TY8MR4H9LLKhkwsqO9SnW+5DowjsHHfnRAzy97Hyj7VJ4Gm0Y8dCQixPcU3ZWPkRPUqLR0jGrcDiU959eF9+qkfSjRJSVB95qpuA6B1qK1oulxzKCetnrRaYkl/nquQRSjtjf96XnXz5jKaLvHPgvAKrFe/XZkcPysbsDYN90D1VUbVv9/cBbeLBH0GnYCSGyZXuRqywAZyczYOmD1pZYYH3ozEFw6YwrC77qfxW+sBVWPNnvBuJs846Cy655BJ485vfDF/4whfgc5/7HBw4cADe8IY3wKmnngoAAI888gi87GUvgy984QsAALBnzx64+uqr4brrroPPfOYzcN9998FVV10F5513Hrzyla/MeT/wwANw//33w8GDB+GZZ56B+++/H+6//344fPjwSurqWC5eEI6G7m6Mx6gNuvEQDqZxnvH++UCNS4HGML9dLnn1nw/7iEvmYy9T5GMe3ynbKhxWPuZGelZPJSJTxqkmbC/pQ2LKMSI3ZtmlpJA5NW3FAf5NwmkYlZZzKtmnCg+u/VLb50UPfQMVphaFS7YNRmvYnBBUJIqwIOTKJEnSXbyoRee9vOxER3NrMGpK/JH1JO630gHutvjdQHTJIJlmd2Dh/cQzywTp7uIjpe+VU2saXVED44925TKxH4UBkrXCiJ/lN/Tj+uBwrr/58at5eP5GoW+4taNPXLUmjk0Gn9WsGsi6Uuwd+orRHA18wAostnPVp+/12ffw/kNcIz2M6qGF2zrL15lqdVL0GGO/MNtbvlIVAPLK1IjCUnw5RxFVCpNImkeZFOirXHEaKQMgt1Uo+g4Txaim4+4sH8Awgku3ll9Vnr9yFFkelnqKv7oQGhEucmoaMHxdMeQlpTjMIks055paAaB/8hsyCQmxGIMDAFm9arr7GuHmtvZeLWXLu0PrfqtW+NR9WIPCzMx2WwBPW+nT8ZHAfcGx8QgzmO+VqiV2tj/5kz+BAwcOwGte8xpYW1uDyy67DN7//vfn+CNHjsDXvvY1+N73vpfD3vve92bZZ599Fi6++GL4vd/7PZLvv/pX/wruuuuu7P/Jn/xJAAD4+te/DqeffvrS6uNYLWp34WXdfyL6b0rgMUZwyen+aly0yx2zYKF740WvX+KlhZ/GVBgqOpg642ezIeA3nQr3TKtTVT5KvjdAuWlJl1Uq7sDD8Ps5hYvg1cBYf20uoc9LSjmCOMbCvUm4JS+gxyf96OnH86xSx6QHoLNY2FipVZpDlHC6OlWWUQszULqOXkURhuceVGD0kGXJ8yktb0YrTssnyqAxXDBMctNVlyQe6ZT2bo19uDVviajOOV6ZR+S4aIdp53nw3HMZI2Qq6h+5anhTbSN5Od5DcJuT683MYTc73Li6QqgGTDYhjlxO6edD5gX10uitJ/plo9/hNVk9vf4F1ab0plWMky1JvlKG9Vf8jWMEdHeXhLS8glX0iTHkj1rxwTWHBSUsZ9GTYjLa0/ISkc3uHIfdgaS3TXT6jS5Uflmiui+iRiC7XhBglkmnasiNyB1CP5BCLi+TyiyOSXAJo35GkqMMwyRWptPz1UDIcE8QKEHW41MdsoG0BZwoctLdM/tMRDBhsdyA+xBYp3IlaNkmIPZW3aYWbOUINXJp5bGZOYTW2R1Lx9yvVM2Rdgh79+6F2267zYw//fTTxV64xxxzDNx8881w8803m+nuvPPORano2CbQzD6LwJChcowhcyz4Q3f6mrbOfzVor+/3AZJ7VngpHqyHy49M9y495pIdHe7dgRtAAfKrEYIzG9sIIB5rLRQoRC8CEP30+UytX0UtPPBw2ma4JejMa4bqkuQj0DpyXjl0/hGRiShM8PmUocbBtW0ApJtmpPBfUhw+F4x/pfPHGxdx+MI+af/CNTNUkid2DKeq5SMaZcBYxxTFH4HV4i1/dw31QSEX3YUTndKkIMh7ljZlCiAWKOC8geWf1Uvq41McmAwK4+DVnHJ7rW59YMW1zEOWca8n1+WSy9qk2MwcdrPDjaubEPQGxq0L7CZYyaFKsCp9fsw+q/NCEsGORMh9sqQbHzNZizwMyQaZVnrq2uK7fNnEPtWkyJVxnY6OfKDDelIjJF7dasRhchfS60iQ4wJQd6kDr4vtLqtsS5nplafQnE+BWDWbFevrkllYIOSktB1lMTxMfiQB+qfDNIzrpk9I6KiuE1YJTFrMeIC8tUTnZuSLKjdMTFNQv9Q0r2RN4Zh4gXSz02C7R9wG5t1vtVk2sH5gzb6aMteDq+d9bDnLuZXaxbFmcTgcjo1CnTvOd1eKUV/dOXXV6Vi/GZcNMkRbNY2WPn0USRhRQ1RbTNt31dQZccrEieXHowpLqM03iJwwavG5Sy8b+GpNbqgufD4VKxdM1Hmtyk2jzVnVcLI6N/0CJLZYuHWpeNrHlhiwcp0i4nIaoWJhpPm0PiPnhhowv6tx2MShskws85WOizNTfiwm6QChScXB+KFbRRzhb0UtDW/iyNoyGu5eOPcOxuHpPqxJdeXspEumd6e8uAgO41yezyVEmOLXsEr+WD5ErGsRlKabVlDOcQGZOXYy3Li6CUEH30o8v6GOvR8oFo0hYtYcFhrllDBxf+tvnCqppCm0SEKQyHEonhHbgH5Y1xA7oxamHsWIiEb8gMOlqjk8IH+/urUjv1QP4o7dP3V1KKS4QlRxefynIqL8kpKx1BHXNxHOQoptcx6RjUg2ynbiRFqOp7IfaGNuiyFvmIQqYYxokbCIWiHtFUe7RpUFC11Qc6rEDkJfT+XiUcrpjLEsvyDPmsZgW7cEsMPCCFkaTjf576nsFILdZbC9sSgC6mhCWO9+k9P7uXJsA8QyIqmxGGP7vDoOZ2tEklnejb26gjXS+kjO12B5YpYTyoeiyLRm+M15qrrGniYkbhWZO1UoknyIHDFe8vIQl44R8WW0UAB9FMri+lr+tXBeZxyeOFhA7aBxWU2Pmg6hr0SIpednI2wy2IpsC7vK5WCDeSxykhP3aSU104G+moq5I1WHBRKjnDL37B2BpxvQSZxnPlVAZePuLr6nMcaPSKU+v5joDlTHLqi7IxGuz2VJGzGSxrh6osu4D0UAsVIVUlhkzYnC8Hlr+J70hmDoI1d5T7NFlqmWN27M2PR7w06Ec9jpcOPqJkTI/62BHbvKINndrCMXVNLiALxK1LpB1G4cY9Ooz+dIGBkQA0BeldlLyiMibuhImYNyjMjfsmwOtRPVIdWKPgGPWSbp04cHFs7l0UBbtnfp65Y2yu+JcB68cxjktgq4fmC5ZZgkj0C7o8hXO9v6hKDEsHKVbstJQeT9mxQq+1Xnj8QPKCzH9KQQZ1fjhJz/Mf6jD/0BgCwhTARHcVP9jXxbyVp/cZd5EV6ZALqbl2cQ+7Foec1/3jyb9mdSM7KjqrltIU6V22oHE56NhL9S5XAU1I2svQw32gxdAsxS1T3ojkxkwL8kecwvOoNiFPLy9X7sTkawMsiJ7QdYgw1tCaA/pO8bubcGR3SmChOILH9DTgzmbEuBJEqsOfjNkxnRL3FjQG7JT2nbcaNXqWdxKLMnki/ngrqsHP5Ji/VGTJVTZeJXUuAzDIBWPQLbmiGfc3Z+APo3l+jCBN4Gwo+5Y9KEh/V9GFg+BJqVaoAfCTrC5TlfhEKlk0qmP6LkuYmGCRCnz3gVMm95y03nLH0804nkTeZX6HpQLil2y6ONg2V4Gss/hcMukLOPibfiRquzhXj7KuEcdjrcuLppIa9+alyJMiyHlDv48JODIm/J1rKw4saG0yGqQwToPw6AyRWmE+m1FLkpfrPFRjIE81hdaRB7YoOGWXX1KgrnwzInhkki8AAR3pPOtIcrDgNAenDyyetY3DSdTmRp27Tnb8niesYQYC3qRBn7c/78lGsfkhK6GCBETMbFfuVFuswyeebkCRJ3DplsNRsShwgILheKLHaLuABoMsaIGytPbefWvWEN0PoEJWwYnBpL4tnVK+/NO2Y/21SAUiYWEelG1mGS8XdBcAPrxsGf+ju2OyQ/WBz4EGx/5LV8+GfI8LkQvdhWBNbq1TJuRqEX1S0qYbIuIj4b1PT0tXKSPyppOGfF4z/9kJUhp3BZWq+UpnDBLnaWw5N2nCuGPsYKA+LWeafGWzXZ8enpG2YprPAHWq8uEOWVi8MEzjp3SlhkeSvSw0NK4k08uHDeTiAXWLx5nzSk2xA/4vE1P+do1rSE+YPmV9SoK6nrp69IteWxX3D4FBUSb039pc4YzbiGLtOM5dziJyF9BIyghSttojpsFTiHnQ43rm5ayFGJDI79LJnft7OrH1G0ATUg4TQOWl91a32tf1HhahitOCF3+Cg9Vqk9/Q2JBvNjaf18DFosLbKoiQdGXa2x9g2N7OHwQvKw5rgkYvLLxFi2t5RNrlJGm75U3h7ZeL5ZY/7kvycuqc7lKWbI8dx4mIlM3nc1oDL4hKjo2cX3Jfd7aI0aJ0gXkX0B666dLeJWCKrQRT9tJD257mPsDcEhVXFAj3E9Vn1tH3PO9Foa50iRyWKOHtC543JY6YjOXY5qXNFaEdHmPkNploWFrPbdwcTH4XBsDjQbQIlYkPevsStQN8iPbU1YZ41PRiiGW7FKlTDUIotXBGvurE+eE8i8ilIdUcCv+1NrFjfIRhZvhZFC5KlLnBR9+Seg9pGsLIXLMFxLzmQ6wziWtVgPiDwZKxRhVL7XLwBaJJC4NyNrUdMhER8ZT/sNStPPZ2orW6nWCCpvwvPHQPYGDQCEE+dSIj4rFshFQFHz124TjC+anJlvCdBUPiWxQcTX5Flb8/I5N0/nICDZgO4OibMH1va8wZmfy+RmqoThqinNaULbJiznm/QxeL8Wr65UTfO5ENoUa+W7c/BqhwPDjasrQhmMrXj7KievvafMRqRN939KCMbpIGHJjgvX7oEa5bFIg40iG1BIXbdyHDpfnVhExK2UJVZ+RkBytMyoyEeidxT/s149uyllagRXupO87Au6m66ErcsCk7XaQye49NzycyD9Up7oQDht5NkbsIWypgHE60hEB5VAFQ2b98rSyrbiEmFC5eLrHgIUYzRKgEmYcCtq1vZbBQDVyJrCddIElMDqXUGmxxMDlVjj3tD3+zlX4m5luIF1+Qiz7jdPeodju2PoVXYrVbY/9SHjVsmwxAuAZd/IY33lidi0NhiGvjqWHgGkkTdAGjOjIUtLUZgBYPMu5rWRpIrI3RuWc0Ni/l3jspwv83kN4tbsHKQYyQ4szl1qJ2KwQSjXOfScRt8egHI1bdVpRPmmPl800fe5pbWzgM84pcN93dFpLa/dx5ImFJVwGHkV3ih3rXdz+ao/sG7BuaE1BRE1roArrvFREY9y5zoFxjNVborddEYVTMm+n0d59vnUJrUZbzamZqVcGTbl7at5twAz89OU5WhRd/G33y0P57DT4cbVbYYWo+wy5tPB8GhljVvhSl9Nt49F1j52bn7kMuJo1EcbbPg+VDHHSkopnmCb7qQvprgMaZQJHQHCGiWiq+dF3fhpfxyQRZSYhMl0INLLJ+86Yij7isW+4vgVeO4nhBBpwzUK6R9p8nGjq+jzMU1KaP769WaE1ljpWL0UsonjMGGMaHUFJkGLJES8R1hrSXmYVr66D1WlLCobSKINNbZuIgJX9nN2LANhPUJYn37CrbdJHA4HxxxjN0juWfWHkfIsblmGVEuXLgyHa0eUpidSch1sZ+nqxo3EYyW3pUcAfTTGHJXpLSxZnDOW8uRWWta2W8nIRAlN5mokB2veop1nOvfApi7dIEwN2aT+aV9V3gxAm4RwOKaoaaBtBmJlkaVNhDv9N/dYHeb1pmoN/twjatkbPJq0lySkBm+nbUB6NjK8Up2CSIrjaxwd66psYUzewEOKdF7GYavtpPQzVdacwywOU/ZZ7eLSfWmewudIu83hHHY63Li6MsQGq4VOkiwZ/QYYK3HLxRgCaRpW+4HONpaMs0YNt4Mcza3Xo9Qwtno1ETKehyRqdrgke1yWESphKLT1sN3K3qimAVLXN6ByzbKi1ga4T8dcLm8Hua8XzwdI9yh5Sf2xbDe3KCRXcjA0KcAEBXMwREjIk/ieGGnx3D0VWV9SH5Z/4iPMn1eyJhKdu4Nxd0kcL7IwRio1gkT7BSsvhWoEWSXgQQo1Gks1Y+tmX9W66FUADofDsQos09BoAZsNR/kD9ScZ2x+L0QyFCo6D3f0AzhcQtLj1+EIqiCEIEk/rXNjoh7cFKLWJxA3kCNU4zit5mLDg9GQp4nhWv2jUNYqwEq5xURmup9fKKmGl5LTpAm7T7jVmWR7pOTGyOMQLk9u8VJJFMOR8SPmoR2uMFgBQPCqMUTSyL6xmQ83cr35N557W5znFL8pX9AnEEcTHqXj7qm0eoBhR+fwB+eUyE5k3byLq5pxT38yKVxf7yAeQY3+1hSIbuO44wz5MM+iu4Bbdjnl1WwTV39zTBccK4MbVTYj267TtrlLLL4RuH6KNunu2E+lYDD5oVJW7pLL6iQBDjwrZxHpyueLu2iyQNIWCYhlKdKbDJHvc0peLtslhqORnkeNU1/b0VHeePuuZ0kRJHDRbbjG4l3OQSi1TIkwYC32kBBfXLDJSoTEPSnJz3+z1JA8CQtEdv9qUWk2LT6W29BKVrHGtGf+1PnolqhmgvP4VKCXPIpG1YeL2WEFWDjUIhiYD4aCMSkpLlaZwnrznFc8M7LI2ApONqRqhTvk5KVwaQoT5XqnazBMah2OTIOQb2ZBBZ/ErRgdXsBIbVhnMFqlLSz41GW0YCBHyh6c4x6UGXMqdJU9GccGOSzoS/pA/oDVopkJuPd5qb63ukdUPy/JwzO6x4RHvF4vNbnKrBDRHyN1D21KhdzOeVeLQXKh6KchtE0z2pHBE3MKJB3OZURhKP8avlE16AuanChdObs6lBx/S5/aO7EQBPVGAroHI3YHI5TyM9rS4AebXGHSrhsLp1TmXkgO5TlbAS8q1oqB10uQYDeew0+HG1W0Ca4C0h4VYDIfGFWDNvXVCkvKSYVg/XhImBiQ8gCAAgaSZchw/8uOn1Fif7piIG4vLo3jM6cSq0b4R6epLTOrGhEdFEgDQK/UWEZWvdHE3Q0g1qhGzAnpm2cRDKYKb8vA2BYG98hQijqf5hQiKrF52aPBTd8eMMLkMRU0ZRioYM/HS45Uwgq4QQrgNdxWonIh0wQQ9fZyg5EsJoJiQNRTbzS8D8QMggosnYLFBhl3VhFyOWL06iFx11GhQIXwKms+Nld666SKo+S+oCRzjMPcrVWs7mJk6dgTmMzBG8mA5P+AssXPmX8ewYZWVHSzuvGQ9SYGcM5ZjYhaYTaqrV3M787ha/lZYUpIbdbrVnsnitZYFMRfWhjZ9zkNkEcnR+C83jAIUWW7oTdxeqxM/131VWH5YP4VXc94K0p/dnMOytiLuwPg3452hF0gyPI1JKcYauri84c/txP34yPXjdazpAEAeNheDa5A8fbCOfLuLpuJ1Xc2vQ0FScDA84HAAICtWcCS9AGUeC0D1Ff9KWXTujcLTUt2x/W7BWOWii2XCOex0uHF1C4FevvrAqcVrcXKvHoUMjsivHdqoQJWhKxHKaNdG4oaOhXQMHSEk4ptyoHuSplBiAFRIWTHJUBJttYAWbo+h8tX4kF0RDWYWycXGX00D6carUIdl5U+WbYO0dL/Ek7cJb+3RskpcqmdquiwbkVxyI0KnbgcgwvppTJR1X+i2ADU3I8n8y68QeVshrQKfKMyHplf/1XTDLcUnOKPQoENkPWZpFIvpspByticf3DyYAcBsjotkB38MwOGoQ3LYFF73lzDOd2y/Vt5QOZYFodXiU0cASRSsLQM6begbX5RfY+6Kso2QrVmtxqLYrzbNyYkOGhcpvJ7ySbpVEwRdBvNXWlsZlrIb3qIr1VOfb2g8OaI0kchRf/6IKIoJphu3Yy2N3ArBzruXi8rbf0hA7yGAXsvv087bnRsvo1x+NPTSjlGGZyjGODrXAGRg1WZ01K3NBnN8ZOnYHAKUNKXcIHVnbYOrxMO1W5bIS7we2Pdc3AYNXNGSFR+z1XTT9GoBvzEtaE4yFnJ52DaBc9jJcOPqpsX8I5Z+s9JJ6ZCRy4qrPXGfJz8137w1gEUN5aYBklImKmcNy7kwlUQRYpdJpLYnVaplqo98Sm61uRZuysqRspdHhsU8SGr1oGlTOfr5kaNXqlcAjSLotCQAff5fKAluS0zq9VGzbPje64DEAgD1owKD4k8KBcXPGyNvoN7nL8rhpGcg3pIdBJdN+gzEJzcmY3yjf9k+cZBhLXMf0Oo2BnaqJr1rydvL6gRpc08sl2ZJdUHB87S1bwngcDhWiemrNQ0Om8ZsUoZW7lg/5zwKF6noJw2dmAlhBhTNsJSPFcb143vEWnXTA3oNEWeURllg7rHQ21Q9F6HfKzMULi1NhsVQSHl3Ko3qjQ2XpCylRjIcP7SXPF7zF3dPvCLeOgAMt+TAgdQI1x2g9CxcppIm4jD8dhsC4tUAhWuUVEC5JklX9B1EjaMify4X8/Ihfyh6psC0d2pMslExvOoVEorraaKahHBtzV1DAMFhsf5cU8zdCX0MSC7a4QEl1PZ8baaNRtONpZ2jeO48tySHY4Fw4+oKUbvJ1OPqd4/aQKE/7YfMpTZivm3rH6nRh+mj6z7tbhrMYyFllCRpK0QL+UFUBdUvopFB7nVUVcwgsZoBUzPcYp2xbvQsW2RZ2wBfh0VE63IRIPIpgYbQfwig6BHRVgcpmDxhRupqBARv+N/a1ykZwmS2i0yvyYk9VjF5Y0QuQuz2WYr6GbEw9hq1ST7KkBVA4/AVQPNYljG15Tt/WhvUXjea675mzboGwJ9mk71cW/NSFF9Im2/EjX6Ho3ulao70O/iVKodDR4XDAohBSXvlPo8HgflRPIomw6Bm+6F3erpVgap7hGz0tFabzuMm5QEvpywEwEf17a0Qu7oFmh7z2MxtBFBLCU4bhGTKm8rQVZXFHVE6xLUBSF1ouL3N1jRZrjvX21ohzHsFNfQKHhhC3v9+CGOGdNxfOw6tc+KsOZNJ552vJOW5Lwqk3DjCH1OfAAAIaEGGwofTtYkC860kUTfE8ZNi+F5CthbAiidZVGjWSb3hoApB6VHNsE4BCg9KeOCRol8YOmjlGfMDa94wdj5hLhCoT1kdI+AcdjrcuLrNUDNcVkkpwPzWEjJwjM3HIqXMnQco+RrT8HHMnRvppQUzSGIkSRUe5PEIWsgcHRWKvFSNEmRLnhLcQtJ60pzduBYp38jCpLurXeVcoWMivVhHHFbKpaSZk+X8OlzUVww0sQoWzs9dLof4y3nl3wkL7Jh1Udxm/JCauuqqP9cHkUwAMF9PAubHPZMGRFjYHqYjIG9Jobo3K00TVqY3R0z3r1HTIMeWxSzO91rUPK9jORybGNNWrbYZmVpKz4Mj9mevYuWIWGesBTM94MGVWFxoOYUZypWqSraTwPl+LTu9uMRK7a2ntDgpx+MoD+UDPOd/1J1chWVLI2bSmTJyUMO4LNZRXxFKeWaXb/100blA4lXiGwJsrkDbYxhFB8lpcx9DZZJe3C9ayLUK0nCKZcx5UKJbI/QeAzGni3W/omE+2xGgcfVqo27ccFnTJda1lJmX/HAWo950mwCpoXYPBFW/paNm0FiFPtsRzmEnw42rWwz11/DnMKxuEMwn7KEWTzLohkdiscJu5chkzT1WmXHRMtwFJpfCsMGzkGRkwQJskMRlWm5eN1aPgHMt8UGRzQmiJJX6qldtdOKmt6FtBAxEmftYP9GKE6QAYu/SVvJUk+GrVlNZKXNrBSsRw7r2Rj+im0WiLGWHGg2AnFJC+lgDWU/jZQugZIGSSuvjU2NkuJE0WnqOwLLI/mj0q5VXqsKmaYxtjvUZwPocDb2Dn/o7HBSNHDbMea9v5aGKjLYa1S6DDZwM2opbq1L6CtZamH1M/BTz1NgTF2zEpG08zZKhVUc33TBeGmc9J5B1jIxDl5Q0rMgCC6erkHnp0vhptSXOGRuTiz8GAIi0XOoummtue45QC6tcG+QDuIWrUoMm65fGqQ/c09o9uBznwmjuMHiMII2PiUxWyklps7t34D7Pv1GQDMqQyme8n8x5YmlFPuMiZQr3yNWrFWi5iDDjnI1Zg7XMrcIGsYEG1pbvP2xJOIedjLVhEcfyENWfXA2If3oeCzGsrmjeH9gxufkr+kUGmzFrtGaiHq2jDEmlpeBmRzw00vCohGtnXOsNgf103QI6SFJGW9Jy07CihySkWroiywkqZPIRsD+mgbk/67EfxPow2br0v+xPXNaKK8wqxw10LqQmffUHddwcHFjduUIsrOXyNblilGckMneMyN9XxDTRbyBT0vZZ5eSyTR2twTceaSXMvDwshjl+gI4NP4fD4Vgk5nurqa0ElnpkeVqOseqfdLfM4+7iB6cQ9HbmXFs7Ui5ZVocGNDJI5s05YlT+U5aIOVONYwJJ15smBRfg7I/6NKMU5X3BCE9hlUULSppW7plya9+IABS5eihvYtrS7FoJ5cym80PkuV9D0M2/TZANP9yYiN4FNlmMap2j0dt09yCGbgVRP//qvIL7UXsvjcMalVWnJP11FxXinThmSzjnpbVwjccmtQd/G8T7tfZw7Gz4ytVNDU7oxqcfvcprAY+aLEqgk72IBse2ctOgFAIbqJqOQ2XQV+IDCS86aqtXsUzIMr11Cw0IradE3w8quTUjPM+fklKUcf+EWtIsm0RKOkJXrg5RE77KNfRhiT1gzfuTGwHKU/+uX8ZMqhPJRisRIsmBkBrsT9rhp83cj+VSXRPTiSg+KNWOAOqq1b4KtIwQ81NP1gKquxWmPCN6xM/jqFg+D1yfcbeMPpcJt5j5ntov8rn/eIRYblYh/dsCfGxK33P0mM0AZnO03g5+pcrh6DCFw8IG37TsN6/4B6Voqulqmlw658zj2kH4TQrrSU0a/clntBLhGTGg0be3LD3l6l386nyMEda45RAwh6XkrHBPLbzGtet5UJ5I+R0wf8o5t2MAWBvaHkAjDJGG5VMA7LwhvSNEupoqUvnCn2m7ixWsgfJujcvweddc4N1E8XNOXi83LI1/BcNNwkLPQ2NRJeki3h7rE5XbiMJiNf6NRALvoFDaiYdhefHGWN9fk4EVIFZXbA5x/Fp8NW3u+23YiNWz23blqnPYyXDj6pYGJgEybkO3Ahgoy9oOgDI0S9Yy3PF9P4eOUh+5NQD0X5TEJLKnU9k+0ofGUnroDYJ4R58uHI/itjGSEkKNKJZ6BECDsCCfNlEkdQxpQMC0BLI7rbKz9q7STH+BpAMRn1kQo6dsDK92pWocqkYQfkZYUX4qIdIIGg/olc2kFLvRMSc1xxn0YYhY+lnawaGFB8ozCPL1b8VP7xGJZXESj8hy8itkghMYjdBMDpt7jJ6TUM9T/lCn3uTY4uqvDrM5X6natXOJqWN7Ytyq1elrOhuGvoo/Mm5i+ynPrn20VD6o1xmxsh3AFEScV+GlMbA2VYwy1DAmdcGMj9a5PlZo+fHtt1IYVo7GU/kYIzIqSi4sQ6mumBSUcByW6khrGIib82LcO7S2iVmzAL0RK+KyqC50S4BxkNw2ID+uY+KfqSy2ByuuXTK0Va5PzGETN9YFWRxvMFw4GH4OzskByj6wOU7fe9Usg/gpl+Tba5kcO1+TIBdeGG7Rd4y6L8qAaOWhn75AFocsS6c2XepYtoF1265cdQ47GW5cXSGGumzdyFTrtEOG1UraIMcHnIITHctABixco2ghlyUHcZ5WJW/IU2hOlMdIKaY0EpbjWsB10VarYneSiUQ+yQUsx3TlbTbEGLTTWTbclw0SjFbDxtJuYMQaYTcmiNpqVpkmsniZhp6/8bdsTOh6Ior2iSokCZHUvlmzG6tj+LUvfgblgsr1MFiRtQdrJn29Gw/81rWntpWcv6neIQLX1Zl1TgPlSlneOlCdp4QRH7Eq4TSvjV+9ilescmz4flTRVKUl6Ya2m8Ph2PwIobYl1TxoMayOsgQM59OUjvIe6yF3Hd0I2nELfdWr2qZ4fAP5IazEbUNA+Zu6j9O1Iyyz3q5EFwJgnks4r8IBsU7pw7Tlf2T+Esb5LBnFeyIVgBs6IafVuHYg5ZQ0OtfW5gU03nIHxS3L0c+9/JZDSUw/oFTOU0mT6plIqGwdrAufDYk9WI0jyYAFDF5StWmPNRlkfmzIXWPRmb+zbHMDEgIJ4u03g9rr8ZHJRhQf0zmaH4tgsaN4ZwQgvZ/0vbDxPHZi3Ve6/6tjx8GNq5sU0wnrIlas1sq24saER/JKP8AYtzZo10ZoqYdFEqY3Gy0/UZxs4GN6JJJk7YlFV7ti0kTrUSQo4bfCuQ5U2jaw8nI1A6v+FJulISRHz1uu6GXyibVg+T4sk8++yXLe/aA6TI5lH8G1w19BjaxqOpkCpLN0q2UNxY9ETssJZpRum/gbGXNjLiMvtY9Z4fDqB6wAhIFyOkFaDLldVJEBthbhcwPrOITZDMIcr1SFHfxKlWMnYw7DKo4efP2h7h/aZzUZB5WNcpCf8ziOEr6oVav2m1wNwMYq4Pf7ZH1SHnKLdiimJ/3Np6RpzP7EwUprAAnBKzhpfH+q0QfFOG/E6XUuLMNoONaR8l3tDNfjZJt1PKDUT6YPqB3sMq0zrfNdhfMxg2pavEDKSHZJpJV1vS6U3xiXa+jduc9ins6OGLX5n5xHGDJDeWR3uVqI3ooshnZFVU/0HFDPUyy612D1gdr5n9Q35qz3VuLbmwHOYafDjatbEAv5eFUNI+9AY/ZYBYDK037LGGjHpVWG1kApj7W2K0SqdUANg25EmCNkYlpisYFSLwdTyjS4SkIo9RLEmNGwAID2T5JPvMfQuEB+fFVAqYkWPqbLatMYDkFGgGnO9oyyahUA+qfhUkOVTGEyhjLLRldEqsgTckzgcFdR6mFByKN8eN3IE/aYCHQfFpiufUJM7IoRefoT9Hm2DJgLmvW2Kd1I+UZSiicrWwEtfdHRY94vra5vkU7hcCwQy7u/qCO8UjI3kaWwgCT1O2GrcZSsPI0gePsYQ6vYHxNpZvNfuiKSH2vbZqX8rK2WTN7F3JQnYiMokNQ0Xl8NG4k+7by100Ia8/UeEFn5XJ86tyVzASWu41b6tmK899W4v3ALUd2KJg2Sscw3UBIahuqkqKVey5lghrqxzDLKAVADajTKGUCE0M355twvMySluJKauzU/LRDl08q95+KVjRw2FdRtp6dks0B+u4ixYSvx7ZXDOexkuHF1i2F+w2or+RtxIxtx7YX8dJknH3MRlpGm/so6P+IcOHkEcsRkE+uN0xRC0pGujiRzvaLQsZDKSHTUiKZGJosekohyt5UnyQdb01j99DaU7ijCeV5U2prGDPW7kBSO6bwli2YJy0ZCxVA5BEmO21NzcgrJEIlUzDx0gP83lYjz0/IBlFeadEXu1r65K91D5ScME5cR13k6kbg/G8nHPB1f+uYAY0gp9DVcNuGbOAExslpm620f+McAHI5RWNgWA2HkuM8EawY0fDOt6Vv7mJUsbVy9rW8YDH9/oA2Cy5DI2LdvKa/sfapxV4Pzc4Mdj0eewHlA/o94YJz1djJcHuWnnC/r8wfdncosW2vhVmoB/UYEnSMk/SgPD8It61bmErKOvA1S84jzq1SBvHHUl0FoagBllajk+2Y/GgPcVzDnTUd0Gvh+r6pf1K0/9g7B4ZMblW9+GyFNR7I75HR5bpLSUdVFOCC9uVtw75TG6o4sXxyunZtx56trVMvAujgsJnc3sDbCOexkrA2LOJaHqP7k69z4p+ez0I9XLSAv/ZX3CBBD95pvBNUd+moGKDuKduQBu4GFtFLIyqiDRizb2MTJndRHhgOqSVKB7t7aAkqYJIGlrYDdGgHjsoBmF6W1A9FcrxmuPf4TsrFIAfnZeXJ6qZ0B0oaB95FUpiT21jkm/ogOEbUYcvPtAXJ6fLnifAKKCvoZw7KjwMkTI02BFZCpd6SqRqRvfbpRpgULRyxX+MKxXPY3CYn0LzP/RWLnUiaHw7EMtBtWG+Um3VB53rZhlY5+9dGS79FPH+6XAbhlQwQLloHYOg7JUJam821y1qxpCpnCRJ00ETdvV84zijGyZN+bKgVxsjlmVOLTDIxz0LIkQlI7zQ2AzzrOl4YD4HMeureqBvLWelqLXA1RmUCmMHyu0/wMIlAjZ/azfDgn5TDJd3Fnrpz8/emJWC6yZLFSJiln8VY2WoWghMFwuzRkvjTu3WUO47Xr2lLTaiHcdsHVXSjfdkLsYPCVq1sI+r1gnGG1XTQYT96115WwKSuKsA4RylBTMfKNRB5IwzCZxHSJHqkZj+iGR8JqXKJ4Jd/yZVa0ehUNqvw1oZxt4K2H9Gw+gZRxpBzo+WG7OAXo91uKLFVpn9o+rnYaTG1RO0fd0MlfQZLthuI5iUKGwqD4I8tbe0qc46DdwBdxHgDmx6t4t7HcwN1WoUb5uA4AQLYCAAAIacVqn5DooWVkZtygZwO0W83Q/qxWuFipqvDnpa1eje19hiOArutmBe5zDgXr6/5KlcPRgDErVsdQoDT+jk2vjaeUa9f0HXfdWrzUcuvx9DE00QNtdyWOgsOWY+zri1dYlmTUVIjj+Z6nNA4UGa435nkdeaK8l364KnHpop88T9o+rJTPamFFf83sauusx7XJhUxM8fwAtwdvO92d5htav5DyZpyxB2tXAuLJmOMqpLDGFUg+kfmZYI5DvJ/Lm+kbZFNdmi9hNn8YnB4tEoqeWf/eQzk/UgXrHVg2EfJqW4A2Poo/cNUVbLPgWn7VuGE1RmMr8e2VwDnsZLhxdVMDkyg9fpxhdWRHX9jseWiDeU23llGKD+Dlq6nWUdMNj0Y4RRdivQKkD+OU9BX5TJSQhU3u4USf2EtyX0ouBLj8p7Wj8YQcizSYPKXBhhPuol91BSyrhRjhUR2wHOcJbX7avrE/l2uIUAIbPGvElvsLuYQyUWOzrrzHGQrPT/TV7hLJVgGYzI0mdpVGCsif3Unn5GkhTQ1lc0PllA9bEaNpT+4GdZtn3B7Tzq3AbTsRyyCQSyH2KOul6LwdMIvzvRY1A/DWdWx3LGwrAAVT70+SL6GxfkBuKGf+MSRimAmFhXZB0l12xkfuzCc5H7UMSRHlYB9xqhyDSI/URFIe4Q40HDPBkkfidRrX1LkpRkQGVvzRVj4PoXy2zmvpudbScFiy9vYAVF9cbqXfDADXmp9ZrBc1WZf5QekRvZ8ZXAM7CuUHLg8zvTFvSJw2p8Oc10JVh6CQ0OE21vQNxB2EXJ5DKLq1n096nSx0kcBEDks5v96e8+q1LC60EAPrdqVpzmEnw7cFWCGC8dPiJRa8FYBawjjY+0DV4lvzqeXckakameF5W3sbEUNkMqhVyRc+1sN4rbpzS894Od8BhfGX87GU9uo+l6wPl7yPdeRZz9PujwCFpPE85RN/Wa7c3qDzF+YhzxPe56usMEg7Taj1CWnM78NCQNdR8vetNvECI70A69JPnCCUsrEe4k6ghZEW0MtNbt4LIyYokclHLS1+HS4AWG5Fz2jqTn8hsrAoe+sinixrPG+hr1UtwLCas9piXGSJtluHw7GNMdawOt4QO3wztUdUXi6+w3OOZMVpOuhx0++j/AV03E54hSk+9u5oy1h5ZlaA+ARlrpS7AgvV2m4ojL8DVRgiII5CtENGK60PaJt8Ud5UwtKfjOcGyrp5FpeO3ZRr59WrKM9I3LQMyvNQm5DzY+tA6K+mX5Ba8u0LAApvweemBZwvEwUDjYsonJQb6u2Ns4QI1CAbIW9P1x37WRVy54kDImeEM8eiZ75KkO5YR0x5RZxSP6DF1m8ttXo3hS2KeweIRuLNyG83o06OrQ1fubpJUSeRyzesJi3mnTpjykPDNGrTu4MR3rt42wQWzglCranw60OyPEkTxrtLG2L6CXHWD6D6ql7VMBxsOU7nNVAZfG47d5kidAZKiJZOvH/qRnVZJt4SYFq/ikDrafv1/sX143mUFsF7ePUtFEurkY9lRZSH0ixWeASQG+gDkCepOTwA3cxeAecywp/Yc0MjEtmSgelf1BP0DeU489/eOqA2WBTS9bdV2pR3IQf0r1TNkx7AKZpju2KZK1ZrpdqDWmJnil8h3IvXv+iCV6wOpjJuvJhLV4s0kHmOIpPeGsJfD7CPvEjtFX1KkCSHi0yepuUck/C0ENVqameUb5uFR+DQxHFSg9WPeP1oKYXF9aQTc2jCp40VpMDkx6CcbtwXoX/tn65gxR+RzWUh7tqKqo4GhyZcXPNPORI+q3BzOUlAwqg+vX9wfhgbZCa4a2FZPzO89eTJ3OUK0MCbZjKW9v0FBN8iQIFz2MnYmbXe0mgxrMo7xJCBaZwGWr7aykz6ohIo7pRSG6da3EKxStvoT/UXeTdlxJ3og4lU7+9fXSKECUlzAoqJo3U+S7xl/KR7SNnxSY/a2dPc7GMEyECkcRLIuoScOgDtGZjwcvLLSV7WF4Vx4jQIJDednGYVETktJA3vwYrLzBMClFfiPAEAGb2pP7lJnqShA9UnReG8cDlKFlX3mPZNece63wpbJJa29+oiEKB7vXEe/TaQLC6KSG8XxNk6xDmIaZwBOEVzbEe08S4qY99b6nnlbXgmIZZtbRC3scbI7A/RHDO5n7z636ir9ip7zaDG4ygHRVyKyejpqIEIgmYsNPTGRihDR9Uf5Tcg+MvtuU4QlVj9ZXgepunBw/iq4JrBy47Detp7qCY9Mfetti9NRDhkAND3Ko16mTr3YnuwKnqVI9oKjemjyWO9gcvEtv6Y+C/3t2KID/ItxoQ7Ih8vd8FTzTKfiDD30stl8cSsJ9VvlCFzIznsGL12AJzDTseW2BbgwQcfhKuvvhrOOOMMOPbYY+GHfuiH4MYbb4TDhw9X033/+9+Ha6+9Fk488UQ47rjj4LLLLoNDhw5tkNbTYRPPjVqxikrMr9vjX4eghKGUvQyweC4/FBeZm/uLO4ow7VhQ9tCiZEnTXftwgJSPFfko5CFrLL+OapdF/bXuUOJ16lZe2jLiAy1neEIUIA2jIf/pdSkltYxk+UQJGsqpdSTypXaihiGwlLgGOsFqmrwokVq6gAIjPnK3piSGQkbJVYHJnoEasR+DeVduRoD85hX+MiwPy/ID4SL/oVnTVKWXCa0vjEu+oXBeijBbn//n2BbYaRy2himG1fnkKH+NLKyMmdQfkZVGfh+Acxj60DqguGI8S27px3IlTCuXhQXKNfmR8037qMdFdrT4NDd8SU6h8Xc+PtnzCMouuE5U0+TL8ZGms+vB+0LJCaeSM5LIJDmvj0yOtqeVBwDkB+YWR5OzpZKPHPtr7UuvAdoKdFMEGUaTCcOmcYkOcpPIZBAX4lsBED/mj6kgpQFJWiw7BljHPgPrqqpdbVPc0BDeBN7OPaYYGS2OvdAtuJaMSXbqrVO9cXAOOxlbwrj61a9+FWazGfzBH/wBfPnLX4b3vve98MEPfhDe/va3V9O97W1vg7/4i7+Aj3/843DXXXfBo48+Cq9//es3SOtFo9WwuuirfNqdBpPLlIskX/YrL1PcaXRtawG6alUa3yT5a2uJIXMnPaav3WupCC8Jhdpg+kMpkKRB88VDv38pbie6Hxeg9IIGKCeC13Nh/mJ/FTIVficRkTyqQkTheH8lIV+Lw3lFmhcAVFd1NCPyPtuxc9xOgXdqwx+seKD+aMRxI6fl19Iv6+nxQvde3ShCNbUxVkT4tivPdDimwjlsh8UaVttLHY+oPHyf/0GkXbOSW/uOSVKQM8x2VFJG6SRML9rGQ2ya5Npq/BOXEJGkUmo1LPAwYTmzdmK1wuy2bkfd3Cnbp0tDObjdLnWaFm0jGuZ7+H8oviDkaVgMSTf2l+ctVFstrORTTlcK5x+TS4ZbUp/G60Z0BREfhRzXXa8HartI9ZW8fDGQfaEOQSWNPrFwKAbW1gUQG6Ifw2gD6yqU3OF4/PHH4YorroAXvOAFcMIJJ8DVV18NTz31VDVNy8PqX/7lX4b9+/fD7t274eyzz56s35Ywrl5yySVwyy23wGtf+1o488wz4ed//ufh3/7bfwv/5b/8FzPNk08+CR/+8Ifht3/7t+HCCy+E/fv3wy233AJ333033HvvvRuofQUhil/A1rb8m2/F6sZe99Yeopq/nk87MC3QjK742A+DbLAuemtEhZM2vvoA5Qt01QH/YABAWamAS9bpu6wljaXUrMRrbWfFx4F4AAgBbcLeMa6I9zMg7vKLrC9zQ5owtqXhFxEaSuKl5nhhdW7ZCLmwCCFfXjQhzRdHta5apQSURprywPoern8sRzF1iOKslLbS2rX3RKUtRbsKd6jLBaYLO4djMe/9aSVf+py3zLHFbbF3lbaWtkvC+vr8vyVhGcT0r//6r+EXf/EX4cUvfjEce+yxcNZZZ8Hv/M7vLK0OWwnblsOOwDxbMM07RgwZLMU+/oIf5pxU/2I5dntu2lZX6WhzYFmKjAvmMaBjcnHOrZbBqsVrGVgod/H9HKU8LZXHp/1LeZmiHJIXlgosLrCSaHjA6bKVseOjiaQF5A+9n8rxHw1X2xBthwVKFlrcaPnAZ0zdnKClr7Ug4IyTU+HF+kymfrQLRJxaiUtusgii1vFrfi5v+bHuWEdFLw7tzS7xJhj3K+lbIeZZKCxNBYGZPDQ5qkR7+YsG/9Zu9bddsYk57BVXXAFf/vKX4fbbb4dPfvKT8NnPfhauueaaaprWh9VvetOb4Bd+4Rfm0m/Lbobw5JNPwt69e834++67D44cOQIXXXRRDnvZy14GL3nJS+Cee+6BV77ylWq6Z599Fp599tnsjxM/vLM46JuxW7JL0SBKYmShjCXcXMjNNkjYNPVw2chi8F6tkYik/X7wEacM5H/ZNQhv2Y7TFfdUeR4TIJmi1mJnVC9tU9qKfqSr5FDIbUQNWUyDpbZWvAwv5QYlHoibv97G44u2KE3k8TSdkAfZd/hrcoGlD6mgWGTwvqQAYO9NCqhd+kOW400FQPZQVeNYeESqqXuwJj3LqSiqoTAchJqnIDLaX7vcWvwNyFVX9BxMyFDfcH852NR7r/aIIXaTr0asujb4stmRmK0DzOZJvzBNBK644gr4x3/8R7j99tvhyJEjcNVVV8E111wDt912m5nmbW97G3zqU5+Cj3/847Bnzx44cOAAvP71r4fPfe5zANBxrpNPPhk++tGPwotf/GK4++674ZprroFdu3bBgQMHlleZLYqdw2H5WF/DJtE1ykE9EFJA4ySZwH4jjm0En5llLDnrbDPk5Li1Um5ZBg2YJU4/FpmoHrGJqpRRjonUcF1Lu6UycMmYhxYOjduGjh/ax2wpueF8lHDhSGcEuNYa0+Vjl9bWmhsqcW1ypeVT+3R7QfK2xXOJcma47iG3rawNW39KwjCXpmbkXi4AQKQfEo79R7bIWUVcV9dQqCD3WGUcdshP4kYeiyKN7CWWdtHKl3lbUDTgfLritzisyZsXfKvV9isVYcb+sJt1r1PnsJuTw37lK1+BT3/60/DFL34RzjnnHAAA+MAHPgA/+7M/C+95z3vg1FNPFWnSw+rbbrsNLrzwQgAAuOWWW+Css86Ce++9N/Op97///QAA8Nhjj8GXvvSlyTpuiZWrHA888AB84AMfgH/9r/+1KXPw4EE4+uij4YQTTiDhp5xyChw8eNBMd9NNN8GePXvy77TTTluU2gJB+VEs07A6351MI8vUEAjIrYQHOqi1uQMJp7/eaJisSXnVZBml06pge9WqprNmzIs562LUi0gmKvLaSldM6nDrsVoTMk/duGyKoZWqWD8rb7qmVnPh+pC82FdOS5l1v6zFgD8MxBNXanO5VjhkYXvPJJIfKihyQeSOVmYRlckyj0kppX4WaBdBdYisWKw3ULemqianuYGE2/cWvoJ4FcRl7r1XV0gC+Wpw8wcgVilM+c2t7/xZbF2srwOsPzfHbzlP/RMx/cM//EM499xz4ad/+qfhAx/4AHzsYx+DRx99VE3TsoryTW96E/zO7/wOvOpVr4IzzzwT/sW/+Bdw1VVXVVdn7lRsFw7bgnlWrC4OGvPAZh7Ouwy9M3esjHHz1jf0/6r3eG1fVnu1qham8+xQidPT6RwSmNTUsZ6m4jMJXmMaz76CEJK7exMwsPlBfkOwkHtWajT9Nq+V32XQ5xd0XoBnBDmPkLhVqoXF66HMc3gH0Eg5VZiexUjDYvqHuG3sFEM8eMQK1hqhRBwEr7Ks+o06YX+ui+FPstq1Y6k8xLdz07D2hDg/987ukRxWNM8G3aatt7BU/ukcdrVYEIf97ne/C9/5znfyDz/8nYJ77rkHTjjhhGxYBQC46KKLYG1tDT7/+c+raYYeVi8aKzWu3nDDDRBCqP6++tWvkjSPPPIIXHLJJXD55ZfDm9/85oXr9Ku/+qvw5JNP5t/DDz+88DLaMMawamMRebTlgmkNp0BSzvYPl2GFYHohB3XdyiUHUKm7SZaNZrF00uhacodIjbQ0tQzrakE/4cVlax/KwjJjNMe0T36OIdUp1USanLlpOcbUBtg8K82fEdJAWdqMr1sl8oG1ccCyksyUVi2HYDeJyryiEQ5Zd10ekyNMugQC/UXUyXN90yQh1SptNZJaLL97I/u+bP3Y9cuIzlzKFkr7iFd+ejnt1R+OpleXKrIt4Rom7726CZjWVvo4AMCmaLItja1MTIdWZ251OIetY5yhccl3isidmEuV+2r6H5mEzpoUc0gobs47qcGMuqmxNFabwzbmTYMsijFnTDbQkbAIPNYzndIqW/khJwDc4ryN9VZXSFlUwphcwKGY0yhygaW3OaPaAybE8eUWciZQ+B1k42lg/tT/sI68NYZaisSpX2jVw6gBslMiGVxNHQwSmhfARCbGFR1xyxh7d7F4lmJ3l3OFkTDrNxKtHLb1frEIg6u+t+rW4NoJm0iVLYnTTjuNPPC96aab5srv4MGDcPLJJ5Owo446Cvbu3Ws+eJ76sHoqVrotwPXXXw9XXnllVebMM8/M7kcffRRe/epXw/nnnw8f+tCHqun27dsHhw8fhieeeII05qFDh2Dfvn1mut27d8Pu3buzfzabwbcf/1a9IgvHWMPqBlz6ESp3ZGsFZPFzojWt/ABp+Ag5V73u1lYG2D6Fw4ieAYdX3KyMQovoqzKhVzhAMvvSVZ34ZSpelv7VT1kHDVpdS0wqKyCzJm5P6k5bEXRIa/0NSqYED00GpvtLe2r1wvqn95Osc2mVVdMDh02O05o9gNw2oKIXJkyB10UhqIG14EKA6qG9okRIlnF9rhRD+lTvgSOwCMKqtO8ysKjXtRbVdFsJcX0d4vr0xovrXYuddtppZD/UG2+8Ed7xjndMznejiOndd98Nf/qnfwqf+tSnJuu62bHTOWydhyyGly7qvlG/B+lmLclba3WaWl/JYxXTJWiGWW2vVX4MA/HDx2L8DOhYM80VOlNMpnwlz3jOp20LQNuO8kDKAQHKdloxKRmKHK8FZkh4+wJ73C0y2hFvB8bjkxa4ldXtAaCcc52pW3WYDu264TUAALklQAiwFumcZlCfWA55Cy3kr+kwdGypY+I7aLpZRZ4vokII5+Z5mHkaGiqGXM0/OD8YKGlRq1YtvqhuGeAcdtNjURz24YcfhoAmfJifYNxwww3wrne9q5rnV77ylcn6bCRWalw96aST4KSTTmqSfeSRR+DVr351fh1tba2+6Hb//v3wvOc9D+644w647LLLAADga1/7Gjz00ENw3nnnza378jB+xeqUC37+NHlIzTdIvE9nEMO9RgWG9MBWosrIUh2B7DSYIAZShkYaIx011TKxjJ5XRK9zEZLKDWA9yvYJeh1D/tXbg8pYedW3CUhtVgzExTBLJ1nKlgDK4D+uD2oWyOLl5CL24emU2sQZEz9bo5qutUGXEDxWBb4PVc4nxSF5Nf/UbZR8YKI75Ymv2knuGjHV+oIhu6gn5+2Eb+sQKFPXBRHlRWMrte1CMHsOYDbHyZhtXWL6t3/7t/C6170ObrzxRnjta1+7IWWuAs5hLYzr91NfpR/LIaxyCgeo8Uwuv5wbLWbRWhlWndO4WzNkWTKEDwUeR419IRRjHz+mB+/m3qgEY8PwwgrOoXG8Lh9ROmoPwxy5j4nIneug1YevfjVe+w+xf6vHlsN9UM0DuLE9ANYdr97Ncsp+y+Y1EwJE5aNfOSvAXDaQvHOcYmAVe7CyNDgTsmJVmzoif62fk3QVfy7GkM2m7YDkULdI4YRPI/001Wsz4qm8m+gUbaPlptrXNAzousHqtMA57Nj0XWsdf/zxg3wHoP1h9b59++Ab3/gGCX/uuefg8ccfNx88T31YPRVb4oNWjzzyCFxwwQXw0pe+FN7znvfAY489luNSozzyyCPwmte8Bv7oj/4IXvGKV8CePXvg6quvhuuuuw727t0LL3jBC+Atb3kLnHfeeeaHAFaPVsOqPuDX5FrzG4dCV+QW8cVNSY59gzJXDIxyo1WjvfVK3zeV6ofzCMw9rx4k79gTEyjGSYBCKiLRNwrdJIbOXVdWykWSXBpf+mChQvgsU3IqjbGBSMkPBdT8so41C52UlH6sb1m9Ghj7Kf030KflUSFOLA5XJgKQ9ER1yw2F8FhpYh9pGiBTfFaC5oU/rBVwwBC7s/xYD8Vf2s3YYF+vxiaBcXfaTKQ0Yyt8hotix5HTBWCrEdP//b//N7zmNa+Ba665Bn7t135tUO+dgJ3DYQHabpbzc1N5H5l2k9a+FYDDAaC6anUR9zN6X0QMChmckiTnpi3lL/SeG6lRiebdhwYakhJivt3FYa4LLF7jl5QgEfkI/RZIXL64i3xEfImSmEJ5ItAYnQ8OxekUqswBcEmtBjmtbbiP8FVDP/0ccsNdAM1Iq4VrfVJbwUrcSAnMoQG5swj3D+g/dNQgZKIRzuKb5oexQcZyoxNYlbfmCtb8YYO4rbrIIYBuYF2wTov8YJZz2OWh9WH1eeedB0888QTcd999sH//fgAA+Ku/+iuYzWZw7rnnqmk2+mH1ljCu3n777fDAAw/AAw88IDbnT19CPXLkCHzta1+D733veznuve99L6ytrcFll10Gzz77LFx88cXwe7/3exuqezvGG1Y3HMZdRRoRawPpxL1kq3e0ZBqjojwJJzX8ZRzIoZTohEoZtlszKMccU2Q0gphkA9MfD0Iyd/31/lJ3jbzjEB36HlQlFrdJBPVDVpGTYkpKWIaoRiWMn8tEtFJuWY+IzyaSj51cgAgzCLDG9am8o15IOC685BuMUyKediN5rD9/FUndDgC1S9Yp0HKsJ+axT0jClXZudqdyQdGTNxw7xxrBWeaq1SkQt5oV3nKHsXyqt+gvue4Ycjp7DmCOV6rSU/9WbAZi+uUvfxkuvPBCeOMb3wjvfOc7R+m/nbEzOCxA282ylXssHjFGtpUT1oXzWB0by9PlIBpReGGs8khNccNGpSEOaB21LQoi0LaV2xBhZk21pHpIw0tgtSD5RegNrKW2tDzOoSGTl8TOE1ei5RV5PqeoGbqwlnRrgZZ0WF/M8cvsgfM72n6SNfNWk31E6zeST2OOLeY8iA9mHTHHZdrFiLaMQF09DBwFlLTN4BwWNUO6nvB8RCuzyb9IKPy6FKs/dsdbc+H5Bw/D8mO4Xyu/x2Gbml4bcA7bmn45rXTWWWfBJZdcAm9+85vhgx/8IBw5cgQOHDgAb3jDG+DUU08FgOkPqx944AF46qmn4ODBg/DMM8/A/fffDwAAP/ZjPwZHH310s44hRu2RlCMh7Vf1wr0nNq0eacWjsyfhF77///a+1lMwhpTW8+QDZSv4l+tD1a34iXHV2lPKyDdU8gU935BZR4Q1lRT27lAIIv0MEzAZSSiJOxj547yCrUeKXyPhOA/pbpex46Wu7eWs4bCI4/tzQAyuvTviNkTyEVAZvXwEoG2eyirnOMujsog8et2Jb2VAPsgE1A0wEIcMmnwFKpbR5KtxWnmRlcPkcb64fCybpNr2ZeXpQ7M81TmQcOwdY1jdSNms8zJGxyXkuVR9YRzBbs6zPx7/f/whHPX8sxaa97LG7TFlX3X938Mz35/ecMceE+CW3zpzKXX4mZ/5GTh06FAmpldddRWcc845cNtttwGAJKYAAL/0S78Ef/mXfwm33nprJqYA3d6qAN1WABdeeCFcfPHF8O53vzuXtWvXruZX5x2LxzKvhZ976jZ4NH63943nscNTLztPxXTQVHqNw3Z+5g4g5Cyui/Me5KqByyllF0+W5Zwu8bKubg2G0ED5Kz+GMJC+QYbmM8CHNU4dBuKNMksbVOINfdbSll0R82/Z3tYr/FJHyUEXmh9uh17nFJd4c5GVYaS8SMMAGDfFfVjh4yU95u6JN5T6YSPqGi+3wilrnHwRfq18yu0Lv+J5WDrjPDQ/TS/zr8uX8qzya5xwMVxa3oHn4+KGAXtBWCaHff4pvwTPP+n/WmjezmHrePzxx+HAgQPwF3/xF/kB9Pvf/3447rjjAADgwQcfhDPOOAM+85nPwAUXXAAAAN///vfh+uuvh//8n/8zeViN37664IIL4K677hLlff3rX4fTTz+9Wb8tsXJ1e2NJs+FRCDBOD4tgGiRSuG0SOU+eZlyUhFqvb60N5j9P2a4UQ7/3Kg5H5yACRIgA2cgKIIexglCV6fIdygN6Hcq5wH0C5yFlOv1j3q8pkjwX4EeBg/J9ANYQQPcHgH7VUFDzymERxWGyE3E+KBGSx684kTqMyBPL4zLIitVA80urY7MuIeXfX1WhkLWY2g2XE2iZ+Al2lke6cnncgKkdcmVQXTXM+6R8ESA6Lxpjb7cNkKuWNj9KP58NiW5NzNYBZnPUbbY8Qv0nf/IncODAAXjNa15DiGnClFWUf/ZnfwaPPfYYfPSjH4WPfvSjOfylL30pPPjgg0uri2N1eAaO9K7WG9p4nrkcRNUtuSh2L5gfFuoxCG7k0nis/fINkg3MP3ikYXklYl4BLNNwfobjuYpt/jJgBhLD+X/PTRFBoSsx6erRFJLrFiG/waS/yYbXcEYlZ5kGx9CaaNy07AtLtYjIR+W0fHA5ksWPiOs9TekQ/yNxgXFapm8AJaKPJHv/Yn/ixTVyb/lZI1mrVbm/m6+Vu8B43p3yaeDdXH6Ad5s6j+SCS+PSQc9bhve1QnOyjdBjrjyhb/LZM4vNeLNgE3PYvXv35sUAGk4//XTga0ePOeYYuPnmm+Hmm2820915550L0c+NqyvC3vB8+LG1fbAWAXaFlg64uLuCvG215X04PgffhO/CqWEP2tRe5iNJaRfHiVaRaSC0OSKKOKs8AIDvw7PwHXga9oUTcnxJi54SB65rITK8DvxpP5WLIn+NGNOn1bguEZ6Bp+FZeAZOhL0o7yjyoU/jAelGdS96Uf1l3vqTdCsc6/E9eBwAnoPj4SSqY5Tnl54DIDrRFRED8nmwlPK0fkAmAin9s7NvAgSAY8OLVDIHKK/AwlPdchzvpkgmMHmelqezVsBCBDj83D/AWtgFRx91qtAHuDwrs8szENkSDuqlRuoTS6x6zSnyAQCee+4QBDgadu3ay3TRMcroasnOmff6kYMQ4FhYO2qPkdPmQowR4uFHYG3XSbC265iF578M4h3jDGD2DOza/ZLFZ+6oYhnE9B3veAe84x3vWKSajk2O83e9GP5u9jgcG57XIM153zh5jik8NsYIj8TvwMnhB+DocJTCPSk30pTkHJNwE8ZTrXTFoCMXCNA0EWYxwkF4An4QToBdKH/KN4HsNyriUt5B8leVnyo8DEQ6Wf+UZh2eg2/Fb8MpYS+sQcjhlJ/anFUvh/LZEqbVw+K6nIeX/I7A9+Hp+G04EU4h9eLcWKYdmifIcG3+ooVb5yjJHoHvwbPx2/ACOJWWFWkb57RknqPlj+P4sRBE/tYYFuRzElQlCABwePY4PBeehB+A0yGsBcm9mR74MuScWOPAQm8cX8lLzaNPO5s9BeuzJ+Hoo/6JKNPiwiS/Ia7NtNDmCjxthjL3CACwvv4diLOn4XlHnWrmreXDYXNpPWYenr5+5BsQYBfsOupEo9T5sAweO3vuW3D0D/zU4jN2bGm4cXVFOCY8D/7gmF9ctRoOx+IwPFtyOByOnYH15wDW53jqv76xr4I5HGPxG8deuGoVHI6tAefHDodjK8E57GS4cdXhcDgcDodjgYjrRyDOQUzjDiamDofD4XA4HI7VwDnsdLhx1eFwOBwOh2OBcGLqcDgcDofD4dhqcA47HTu35g6Hw+FwOBwOh8PhcDgcDofDMQd85arD4XA4HA7HIjFb736T0+9anC4Oh8PhcDgcDkcLnMNOhhtXHQ6Hw+FwOBaIODsCcX06MY2zOT4k4HA4HA6Hw+FwTIBz2OnwbQEcDofD4XA4HA6Hw+FwOBwOh2MCfOWqw+FwOBwOxyKxfgRgjqf+MMeHBBwOh8PhcDgcjklwDjsZblx1OBwOh8PhWCC6L63O8UrVDiamDofD4XA4HI7VwDnsdLhx1eFwOBwOh2OBiLMjEGfPzZHe6ZnD4XA4HA6HY2PhHHY6fM9Vh8PhcDgcDofD4XA4HA6Hw+GYgJ1rVnY4HA6Hw+FYBtaPAKxPf+oP63FxujgcDofD4XA4HC1wDjsZblx1OBwOh8PhWCDi+mGIcxDTnbxflcPhcDgcDodjNXAOOx1uXB1AjLE/zmC2c/uJw+FwOBxbAjHO+uPOfXLucAA4h3U4HA6HYyvBOezWhhtXB9F17Ce+/e0V6+FwOBwOh6MdqyOm3ZdWj8yR3km1YxFwDutwOBwOx9aDc9itCDeuDiCENTjhhS+EAAEghFWrs3R897vfhdNOOw0efvhhOP7441etzo6At/lq4O2+Gni7bzx2XJvHCBEihLC6b3bG2ZzE1FcZOhYA57COjYC3+8bD23w18HZfDXZUuzuH3dJw4+oA1tbWAGB1nXujEUKAp556CkIIfd0dy4a3+Wrg7b4aeLtvPLzNNx7dflX+1N+xWjiHdWwEvN03Ht7mq4G3+2rg7b6xcA47Hd47HQ6Hw+FwOBwOh8PhcDgcDodjAnzlqsPhcDgcDscCEWeHIc4Oz5F+5z71dzgcDofD4XCsBs5hp8ONqw6C3bt3w4033gi7d+9etSo7Bt7mq4G3+2rg7b7x8DbfeHSvVM1BTNcXqIzDsUPg97rVwNt94+Ftvhp4u68G3u4bC+ew0xFijDvXtOxwOBwOh8OxIMxmM/j249+Cy1/7Lnjme9OJ6bHPPxo+/v/9P/DCvSf6/mIOh8PhcDgcjqXCOez82Fm1dTgcDofD4XA4HA6Hw+FwOByOBcG3BXA4HA6Hw+FYILpXqp6dI/0ClXE4HA6Hw+FwOBrgHHY63LjqcDgcDofDsUDE2bPzEdPZApVxOBwOh8PhcDga4Bx2OnxbAIfD4XA4HA6Hw+FwOBwOh8PhmAA3rjpUPPjgg3D11VfDGWecAcceeyz80A/9ENx4441w+PD0zY0dbXjnO98J559/Pjz/+c+HE044YdXqbFvcfPPNcPrpp8MxxxwD5557LnzhC19YtUrbGp/97Gfh537u5+DUU0+FEAL8+Z//+apV2va46aab4Kd+6qfg+OOPh5NPPhkuvfRS+NrXvrZqtXYG+leqpv5gjq+0Ohw7Hc5hVwfnsBsD57AbC+ewGw/nsCuEc9jJcOOqQ8VXv/pVmM1m8Ad/8Afw5S9/Gd773vfCBz/4QXj729++atW2PQ4fPgyXX345/NIv/dKqVdm2+NM//VO47rrr4MYbb4T/9b/+F/zET/wEXHzxxfCNb3xj1aptWzz99NPwEz/xE3DzzTevWpUdg7vuuguuvfZauPfee+H222+HI0eOwGtf+1p4+umnV63atsc8pDSTU4fDMQnOYVcH57DLh3PYjYdz2I2Hc9jVwTnsdIQYY1y1Eo6tgXe/+93w+7//+/D3f//3q1ZlR+DWW2+Ft771rfDEE0+sWpVth3PPPRd+6qd+Cn73d38XAABmsxm8+MUvhre85S1www03rFi77Y8QAnziE5+ASy+9dNWq7Cg89thjcPLJJ8Ndd90F/+yf/bNVq7MtMZvN4NuPfwv+z1f+3/C9p78/OZ/n/8Ax8Il7Pwgv3HsirK35c3CHY144h91YOIddHpzDrhbOYVcD57DLh3PY+bGzauuYC08++STs3bt31Wo4HHPh8OHDcN9998FFF12Uw9bW1uCiiy6Ce+65Z4WaORzLxZNPPgkA4Pdxh8Ox4+Ac1rEd4BzWsVPhHNaxFXDUqhVwbA088MAD8IEPfADe8573rFoVh2MufPOb34T19XU45ZRTSPgpp5wCX/3qV1eklcOxXMxmM3jrW98K//Sf/lN4+ctfvmp1tj1iv1/V9PT+7NvhWBScwzq2C5zDOnYinMNuLJzDTsfOrfkOxQ033AAhhOqPD86PPPIIXHLJJXD55ZfDm9/85hVpvrUxpd0dDodjUbj22mvhb//2b+FjH/vYqlXZETjm2DU45pgw/Xes0zOHg8M57GrgHNbhcKwSzmE3Fs5hp8NXru4wXH/99XDllVdWZc4888zsfvTRR+HVr341nH/++fChD31oydptX4xtd8fy8KIXvQh27doFhw4dIuGHDh2Cffv2rUgrh2N5OHDgAHzyk5+Ez372s3DaaaetWp1tjc7QsAYf++wfLiCvNQghLEArh2N7wDnsauAcdvPAOaxjp8E57MbBOez8cOPqDsNJJ50EJ510UpPsI488Aq9+9ath//79cMstt+y4DYkXiTHt7lgujj76aNi/fz/ccccdeTP62WwGd9xxBxw4cGC1yjkcC0SMEd7ylrfAJz7xCbjzzjvhjDPOWLVK2x4hBHjh3r2wiG+FphVhDoejg3PY1cA57OaBc1jHToFz2I2Hc9j54cZVh4pHHnkELrjgAnjpS18K73nPe+Cxxx7Lcf5kdLl46KGH4PHHH4eHHnoI1tfX4f777wcAgB/+4R+G4447brXKbRNcd9118MY3vhHOOecceMUrXgHve9/74Omnn4arrrpq1aptWzz11FPwwAMPZP/Xv/51uP/++2Hv3r3wkpe8ZIWabV9ce+21cNttt8F//a//FY4//ng4ePAgAADs2bMHjj322BVrt32xUwmlw7FZ4Bx2dXAOu3w4h914OIfdeDiHXQ2cw86HEBdhmnZsO9x6663mIO1dZrm48sor4SMf+YgI/8xnPgMXXHDBxiu0TfG7v/u78O53vxsOHjwIZ599Nrz//e+Hc889d9VqbVvceeed8OpXv1qEv/GNb4Rbb7114xXaAbDI0S233DL4iqfD4XBsVTiHXR2cw24MnMNuLJzDbjycwzq2Ity46nA4HA6Hw+FwOBwOh8PhcDgcE+AbEDkcDofD4XA4HA6Hw+FwOBwOxwS4cdXhcDgcDofD4XA4HA6Hw+FwOCbAjasOh8PhcDgcDofD4XA4HA6HwzEBblx1OBwOh8PhcDgcDofD4XA4HI4JcOOqw+FwOBwOh8PhcDgcDofD4XBMgBtXHQ6Hw+FwOBwOh8PhcDgcDodjAty46nA4HA6Hw+FwOBwOh8PhcDgcE+DGVYfD4XA4HA6Hw+FwOBwOh8PhmAA3rjocDofD4XA4HA6Hw+FwOBwOxwS4cdXhcDgcDofD4XA4HA6Hw+FwOCbAjasOh8PhcDgcDofD4XA4HA6HwzEBblx1OBw7Bo899hjs27cP/tN/+k857O6774ajjz4a7rjjjhVq5nA4HA6Hw+Fw2HAe63A4HJsXIcYYV62Ew+FwbBT+8i//Ei699FK4++674Ud/9Efh7LPPhte97nXw27/926tWzeFwOBwOh8PhMOE81uFwODYn3LjqcDh2HK699lr47//9v8M555wDf/M3fwNf/OIXYffu3atWy+FwOBwOh8PhqMJ5rMPhcGw+uHHV4XDsODzzzDPw8pe/HP7hH/4B7rvvPvjxH//xVavkcDgcDofD4XAMwnmsw+FwbD74nqsOh2PH4e/+7u/g0UcfhdlsBg8++OCq1XE4HA6Hw+FwOJrgPNbhcDg2H3zlqsPh2FE4fPgwvOIVr4Czzz4bfvRHfxTe9773wd/8zd/AySefvGrVHA6Hw+FwOBwOE85jHQ6HY3PCjasOh2NH4Vd+5Vfgz/7sz+Cv//qv4bjjjoNXvepVsGfPHvjkJz+5atUcDofD4XA4HA4TzmMdDodjc8K3BXA4HDsGd955J7zvfe+DP/7jP4YXvOAFsLa2Bn/8x38M/+N//A/4/d///VWr53A4HA6Hw+FwqHAe63A4HJsXvnLV4XA4HA6Hw+FwOBwOh8PhcDgmwFeuOhwOh8PhcDgcDofD4XA4HA7HBLhx1eFwOBwOh8PhcDgcDofD4XA4JsCNqw6Hw+FwOBwOh8PhcDgcDofDMQFuXHU4HA6Hw+FwOBwOh8PhcDgcjglw46rD4XA4HA6Hw+FwOBwOh8PhcEyAG1cdDofD4XA4HA6Hw+FwOBwOh2MC3LjqcDgcDofD4XA4HA6Hw+FwOBwT4MZVh8PhcDgcDofD4XA4HA6Hw+GYADeuOhwOh8PhcDgcDofD4XA4HA7HBLhx1eFwOBwOh8PhcDgcDofD4XA4JsCNqw6Hw+FwOBwOh8PhcDgcDofDMQH/P96bHjPNBk2CAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "showGrid = False\n", + "\n", + "fig, (ax) = plt.subplots(1, 2, figsize=(14, 4))\n", + "\n", + "#pot = 0.0\n", + "p1 = (pot_05V - pot_05V_iso).plot(grid=showGrid, ax=ax[0], cmap=\"turbo\")\n", + "p2 = (pot_12V - pot_12V_iso).plot(grid=showGrid, ax=ax[1], cmap=\"turbo\")\n", + "\n", + "_ = ax[0].set_title(f\"Bias = {0.5:.1f} V - Pot. Difference Tidy3D - Eff. DOS - Isothermal\")\n", + "_ = ax[1].set_title(f\"Bias = {1.2:.1f} V - Pot. Difference Tidy3D - Eff. DOS - Isothermal\")\n", + "\n", + "plt.tight_layout()" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "f25ecedd-296f-44ff-9e2c-3d61296f132b", + "metadata": {}, + "outputs": [], + "source": [ + "# Utility function to plot the function on the distribution with the same grid\n", + "def getInterpolatedData(x_vector, y_vector, t_vector):\n", + " # Get the min/max bounds from scattered data\n", + " xmin, xmax = x_vector.min(), x_vector.max()\n", + " ymin, ymax = y_vector.min(), y_vector.max()\n", + " \n", + " # Define the resolution of the regular grid for interpolation\n", + " num_grid_points_x = 200\n", + " num_grid_points_y = 200\n", + " \n", + " # Create 1D arrays for the new grid coordinates\n", + " xi = np.linspace(xmin, xmax, num_grid_points_x)\n", + " yi = np.linspace(ymin, ymax, num_grid_points_y)\n", + " \n", + " # Create the 2D meshgrid for the interpolation output\n", + " XI, YI = np.meshgrid(xi, yi)\n", + " \n", + " # The points argument to griddata should be an array of (x, y) pairs\n", + " points = np.column_stack((x_vector, y_vector))\n", + " \n", + " # Interpolate the values onto the new grid\n", + " TI = sp.interpolate.griddata(points, t_vector, (XI, YI), method='linear')\n", + " return XI, YI, TI" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "id": "90ea03d1-d4b5-4e5f-9b9f-86531fac8be7", + "metadata": {}, + "outputs": [], + "source": [ + "# Interpolating Tidy3d potential Eff. DOS\n", + "x_vector1 = results[\"potential_global_mnt\"].potential.points[:, 0].values\n", + "y_vector1 = results[\"potential_global_mnt\"].potential.points[:, 1].values\n", + "v_vector_effdos_0V = results[\"potential_global_mnt\"].potential.sel(voltage=0).values.values[:,0]\n", + "v_vector_effdos_12V = results[\"potential_global_mnt\"].potential.sel(voltage=1.2).values.values[:,0]\n", + "XI1, YI1, VI_effdos_0V = getInterpolatedData(x_vector1, y_vector1, v_vector_effdos_0V)\n", + "XI1, YI1, VI_effdos_12V = getInterpolatedData(x_vector1, y_vector1, v_vector_effdos_12V)\n", + "\n", + "v_vector1_cst_0V = results_cst[\"potential_global_mnt\"].potential.sel(voltage=0).values.values[:,0]\n", + "v_vector1_cst_12V = results_cst[\"potential_global_mnt\"].potential.sel(voltage=1.2).values.values[:,0]\n", + "XI1, YI1, VI_cst_0V = getInterpolatedData(x_vector1, y_vector1, v_vector1_cst_0V)\n", + "XI1, YI1, VI_cst_12V = getInterpolatedData(x_vector1, y_vector1, v_vector1_cst_12V)\n", + "\n", + "v_vector1_iso_0V = results_iso[\"potential_global_mnt\"].potential.sel(voltage=0).values.values[:,0]\n", + "v_vector1_iso_12V = results_iso[\"potential_global_mnt\"].potential.sel(voltage=1.2).values.values[:,0]\n", + "XI1, YI1, VI_iso_0V = getInterpolatedData(x_vector1, y_vector1, v_vector1_iso_0V)\n", + "XI1, YI1, VI_iso_12V = getInterpolatedData(x_vector1, y_vector1, v_vector1_iso_12V)" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "id": "ba2f97a2-1249-4f25-aa67-c0e3e99cfd4d", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABP4AAAMWCAYAAABhsEihAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8fJSN1AAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOydd5gURf7/31XVPTPLLmFBMkhQzywgKBhB5cT8xSwGEMWcOdOdp+B5Koqn6OmZznTmfMGECcPPw3AgZhCUIEjOm2a6q+r3R0/39sx093RP3t1+PU8/W9NdscOE934CkVJKhISEhISEhISEhISEhISEhISEhLQqaLknEBISEhISEhISEhISEhISEhISElJ4QuEvJCQkJCQkJCQkJCQkJCQkJCSkFRIKfyEhISEhISEhISEhISEhISEhIa2QUPgLCQkJCQkJCQkJCQkJCQkJCQlphYTCX0hISEhISEhISEhISEhISEhISCskFP5CQkJCQkJCQkJCQkJCQkJCQkJaIaHwFxISEhISEhISEhISEhISEhIS0goJhb+QkJCQkJCQkJCQkJCQkJCQkJBWSCj8hYSEhISEhISEhISEhISEhISEtEJC4S8kJCSkjTFq1CiMGjWq3NNI4fHHHwchBEuWLCn3VErOkiVLQAjB448/HrhtMc/bmWeeif79+xe8Xyf69++PM88803ptrut///tfScYv5zOxcOFCHHrooejYsSMIIfjnP/9ZlnkUkqlTp4IQ4qsuIQRTp04t7oRCKorp06dj4MCBYIxh8ODBAABd13H11Vejb9++oJRi7NixZZ1jSEhISEhIayIU/kJCQto8+YgMDQ0NmDp1Kj744IPCT6zCqIS1moKCubVr1w677LIL/vjHP2LLli2B+7vllltKJrQ888wzmDFjRknGSsfpvG277bY4+uij8dhjjyEejxdknO+//x5Tp06tSAG3Uuc2YcIEfPPNN7j55pvx5JNPYtiwYeWekiP9+/dPuYfctlwE7Fz46KOPcMwxx6Bv376IxWLo0aMHDjvsMHzyySeec6eUolOnTth9991x7rnn4rPPPivK/BYsWIArrrgC++67L2KxWCCBXgiBxx9/3FpfdXU1dtttN/z5z39GU1OTZ9u5c+eCEII//vGPrnUWLlwIQggmT54cZEmumP+8cNumTZtm1X377bdx9dVXY7/99sNjjz2GW265BQDw6KOPYvr06TjhhBPwxBNP4IorrvA9/qhRo1Kub4cOHbDjjjvijDPOwDvvvOPaTtM03HPPPdhrr73Qvn171NTUYK+99sI999wDTdMy6icSCdx9990YMmQIOnTogE6dOmHXXXfFueeei/nz5wc4YyEhISEhIaVFKfcEQkJCQloyDQ0NuPHGGwGg4qzoCk0lrfX+++9HTU0N6urq8Pbbb+Pmm2/G+++/j08++cS3pRFgCH8nnHBCSaxLnnnmGXz77be4/PLLU/b369cPjY2NUFW16HMwz1s8HseKFSswc+ZMnHXWWZgxYwZee+019O3b16r78MMPQwgRqP/vv/8eN954I0aNGhXIWnDBggWgtLj/i/Sa29tvv13Usd1obGzE7Nmzcd111+Hiiy8uyxz8MmPGDNTV1Vmv33jjDTz77LO46667sM0221j79913X5x++um49tprizqfH3/8EZRSnH/++ejRowc2btyIp556CgceeCBef/11HHbYYSn1Bw8ejN/97ncAgK1bt+KHH37Aiy++iIcffhhXXHEF7rzzzoLOb/bs2bjnnnuwyy67YOedd8a8efN8t21oaMDEiRMxYsQInH/++ejWrRtmz56NKVOm4L333sP777/v+j635557YqeddsKzzz6LP//5z451nnnmGQDA6aefHnhdXowbNw5HHHFExv4hQ4ZY5ffffx+UUjzyyCOIRCIp+3v37o277rorp7H79OmDW2+9FQBQX1+PRYsW4ZVXXsFTTz2Fk046CU899VTKe2x9fT2OPPJIfPjhhzjqqKNw5plnglKKt956C5dddhleeeUVvP7666iurrbaHH/88XjzzTcxbtw4nHPOOdA0DfPnz8drr72GfffdFzvttFNOcw8JCQkJCSk2ofAXEhISUoHU19en/OAISeWEE06wxIbzzz8fxx9/PF555RV8+umn2Geffco8u2AQQhCLxUoylv28AcANN9yAp59+GuPHj8eJJ56ITz/91DpWbCFSSommpiZUVVUhGo0Wdaxs2AWIUrJ27VoAQKdOnbLWLfd7Qro4vmrVKjz77LMYO3aso8irKMX9ijlp0iRMmjQpZd+FF16IgQMHYsaMGRnCX+/evTOErttuuw2nnnoq7rrrLuywww644IILCja/Y445Bps2bUL79u1xxx13BBL+IpEIPvnkE+y7777WvnPOOQf9+/e3xL/Ro0e7tj/ttNNw/fXX49NPP8WIESMyjj/77LPYaaedsOeeewZaUzb23HPPrGLimjVrUFVVlfHMrVmzxtdz4EbHjh0zxp42bRouvfRS/O1vf0P//v1x2223WccmT56MDz/8EH/9619TRPcLLrgA9913Hy6++GJceeWVuP/++wEAX3zxBV577TXcfPPN+MMf/pAyzr333otNmzblPPeQkJCQkJBiE7r6hoSEhDhw5plnoqamBitWrMDYsWNRU1ODrl274sorrwTnHIDh3tS1a1cAwI033mi5GtnjVc2fPx8nnHACOnfujFgshmHDhuHf//53ylimq/GHH36ICy+8EN26dUOfPn0ANLtozp8/HyeddBI6dOiALl264LLLLstw+dJ1HTfddBO22247RKNR9O/fH3/4wx+yunEmEgnccMMNGDp0KDp27Ijq6moccMABmDVrllWnUGsFgO+++w4HH3wwqqqq0KdPH/z5z38ObFmWzsEHHwwAWLx4MQBDJPnd736Hvn37IhqNYscdd8Qdd9wBKaXVhhCC+vp6PPHEE9Z67HHmVqxYgbPOOgvdu3dHNBrFrrvuikcffTRl3A8++ACEELzwwgu4+eab0adPH8RiMRxyyCFYtGiRVW/UqFF4/fXXsXTpUmssUyxxivH39ddf48wzz8TAgQMtN8azzjoL69evz+s8OXHaaadh0qRJ+Oyzz1Lc4pxi/D333HMYOnQo2rdvjw4dOmD33XfH3XffDcC4j0888UQAwEEHHWSt03QN79+/P4466ijMnDkTw4YNQ1VVFR588EHrmP3cmzQ0NOC8885Dly5d0KFDB4wfPx4bN25MqeMWI87eZ7a5OcX4W7NmDc4++2x0794dsVgMgwYNwhNPPJFSx7x2d9xxBx566CHr2dtrr73wxRdfOJ5vk6lTp6Jfv34AgKuuuirlnjCf+++//x6nnnoqamtrsf/++wPw/5yb5/uDDz6wzvfuu+9urfmVV17B7rvvjlgshqFDh+LLL7/0nG8QnGL8xeNxXHHFFejatSvat2+PY445BsuXL0+pM2vWLBBC8Oqrr2b0+cwzz4AQgtmzZ7uO265dO3Tt2tW3CFNVVYUnn3wSnTt3xs0335zy/pAvnTt3Rvv27XNqG4lEUkQ/k2OPPRYA8MMPP3i2P+200wA0W/bZmTNnDhYsWGDVKSWEEDz22GOor69PcQ0nhGDWrFn47rvvMp7NfGCMWVaX9957LzZv3gwAWL58OR555BEcfPDBjpa2F110EQ466CD8/e9/t+7Rn376CQCw3377OY7TpUuXvOcbEhISEhJSLEKLv5CQkBAXOOcYM2YMhg8fjjvuuAPvvvsu/vKXv2C77bbDBRdcgK5du+L+++/HBRdcgGOPPRbHHXccAGCPPfYAYAhc++23H3r37o1rr70W1dXVeOGFFzB27Fi8/PLL1o84kwsvvBBdu3bFDTfcgPr6+pRjJ510Evr3749bb70Vn376Ke655x5s3LgR//jHP6w6kyZNwhNPPIETTjgBv/vd7/DZZ5/h1ltvxQ8//OD4Q9pky5Yt+Pvf/265L23duhWPPPIIxowZg88//xyDBw8u2FpXrVqFgw46CLquW/UeeughVFVV5XWtzB9lXbp0gZQSxxxzDGbNmoWzzz4bgwcPxsyZM3HVVVdhxYoVlivZk08+iUmTJmHvvffGueeeCwDYbrvtAACrV6/GiBEjQAjBxRdfjK5du+LNN9/E2WefjS1btmS4606bNg2UUlx55ZXYvHkzbr/9dpx22mlW/LDrrrsOmzdvxvLly63xa2pqXNfzzjvv4Oeff8bEiRPRo0cPfPfdd3jooYfw3Xff4dNPPw3kzuyHM844Aw899BDefvtt/Pa3v3Wd07hx43DIIYdYljM//PADPvnkE1x22WU48MADcemll+Kee+7BH/7wB+y8884AYP0FDJfecePG4bzzzsM555yDHXfc0XNeF198MTp16oSpU6diwYIFuP/++7F06VJLcPWLn7nZaWxsxKhRo7Bo0SJcfPHFGDBgAF588UWceeaZ2LRpEy677LKU+s888wy2bt2K8847D4QQ3H777TjuuOPw888/u1pOHnfccejUqROuuOIKy0Uy/Z448cQTscMOO+CWW26xRKkgz/miRYtw6qmn4rzzzsPpp5+OO+64A0cffTQeeOAB/OEPf8CFF14IALj11ltx0kknFdXletKkSXjqqadw6qmnYt9998X777+PI488MqXOqFGj0LdvXzz99NMZ749PP/00tttuuwyL3i1btiCRSGDdunX4xz/+gW+//TbDIsuLmpoaHHvssXjkkUfw/fffY9ddd819kUVm1apVAJBitevEgAEDsO++++KFF17AXXfdBcaYdcwUA0899dSCz6+hoQHr1q3L2N+pUycoioInn3wSDz30ED7//HP8/e9/B2C4AT/55JO4+eabUVdXZ7nruj2bQWGMYdy4cbj++uvx//7f/8ORRx6JN998E5xzjB8/3rXd+PHjMWvWLLz11luYNGmSJdI//fTT2G+//Ypu0RoSEhISElJQZEhISEgb57HHHpMA5BdffGHtmzBhggQg//SnP6XUHTJkiBw6dKj1eu3atRKAnDJlSka/hxxyiNx9991lU1OTtU8IIffdd1+5ww47ZIy///77S13XU/qYMmWKBCCPOeaYlP0XXnihBCC/+uorKaWU8+bNkwDkpEmTUupdeeWVEoB8//33rX0jR46UI0eOtF7rui7j8XhKu40bN8ru3bvLs846q6BrvfzyyyUA+dlnn1n71qxZIzt27CgByMWLF2f07XQ+FixYINeuXSsXL14sH3zwQRmNRmX37t1lfX29/Oc//ykByD//+c8pbU844QRJCJGLFi2y9lVXV8sJEyZkjHP22WfLnj17ynXr1qXsP+WUU2THjh1lQ0ODlFLKWbNmSQBy5513TjmHd999twQgv/nmG2vfkUceKfv165cx1uLFiyUA+dhjj1n7zP7tPPvssxKA/Oijj6x95r3j97ytXbvW8fjGjRslAHnsscda+yZMmJAy38suu0x26NAh4x618+KLL0oActasWRnH+vXrJwHIt956y/GY/TqY6xo6dKhMJBLW/ttvv10CkP/617+sfW73ZHqfXnNLfyZmzJghAcinnnrK2pdIJOQ+++wja2pq5JYtW6SUzdeuS5cucsOGDVbdf/3rXxKA/M9//pMxlh2z/fTp01P2m9dr3LhxKfuDPOfm+f7vf/9r7Zs5c6YEIKuqquTSpUut/Q8++KDruXFj+vTprveeOf/0eV944YUp9U499dSM6/f73/9eRqNRuWnTJmvfmjVrpKIojtd5zJgxEoAEICORiDzvvPNkY2NjSp1+/frJI4880nUtd911V8Z9VUi8zlUQRo8eLTt06CA3btyYte59990nAciZM2da+zjnsnfv3nKfffbJax7pmPex2zZ79myr7oQJE2R1dXVGHyNHjpS77rprTuNna/vqq69KAPLuu++WUjZ/Dn355ZeubebOnSsByMmTJ0spjc+zkSNHSgCye/fucty4cfK+++5LeY5CQkJCQkIqldDVNyQkJMSD888/P+X1AQccgJ9//jlruw0bNuD999/HSSedhK1bt2LdunVYt24d1q9fjzFjxmDhwoVYsWJFSptzzjknxTLDzkUXXZTy+pJLLgFgBNi3/03P0mgGs3/99ddd58oYs+ItCSGwYcMG6LqOYcOGYe7cuQVd6xtvvIERI0Zg7733ttp37do1sNvZjjvuiK5du2LAgAE477zzsP322+P1119Hu3bt8MYbb4AxhksvvTTjXEgp8eabb3r2LaXEyy+/jKOPPhpSSms969atw5gxY7B58+aM8zJx4sSUmFUHHHAAAPi6V5ywW0A2NTVh3bp1VqwuP9ckKKal2datW13rdOrUCfX19Z5ZMrMxYMAAjBkzxnf9c889N8Vi7oILLoCiKNb9XizeeOMN9OjRA+PGjbP2qaqKSy+9FHV1dfjwww9T6p988smora21Xud7/U3S33+CPue77LJLioXc8OHDARiu8dtuu23G/nzn64Y57/RnMt1yFjAsreLxOF566SVr3/PPPw9d1x3jx02bNg1vv/02HnnkEYwYMQKJRAK6rgean5/7v9zccsstePfddzFt2jRfsfBOPvlkqKqa4u774YcfYsWKFUVz8z333HPxzjvvZGy77LJLUcbzS/r1Nf96uWKbx8xs8YQQzJw5E3/+859RW1uLZ599FhdddBH69euHk08+OYzxFxISEhJS0YR26iEhISEuxGIxK66dSW1tbUaMMScWLVoEKSWuv/56XH/99Y511qxZg969e1uvBwwY4NrfDjvskPJ6u+22A6UUS5YsAQAsXboUlFJsv/32KfV69OiBTp06YenSpZ7zfeKJJ/CXv/wF8+fPh6ZpvuZkEmStS5cutUQGO9lcPtN5+eWX0aFDB6iqij59+lguuoBxLnr16pXxo850Hct2LtauXYtNmzbhoYcewkMPPeS6Hjt2EQWAJQL5uVec2LBhA2688UY899xzGWOZcaoKiZmt1euH8IUXXogXXngBhx9+OHr37o1DDz0UJ510UkYSBS/83E920u/7mpoa9OzZ07rvi8XSpUuxww47ZLi9ut1Dhb7+JunnK+hznj6vjh07AkBK9mb7/nzn64Y5b/tzCjg/9zvttBP22msvPP300zj77LMBGO6VI0aMyFg3YGTrNTn99NOx55574swzz0wRDrPh5/7fvHkzGhsbrdeRSASdO3f2PUY+PP/88/jjH/+Is88+23cCki5dumDMmDF49dVX8cADDyAWi+GZZ56Boig46aSTPNtyzq3EMyadO3fOmgRnhx128Ew6Ui7Sr6/510vodRIHo9EorrvuOlx33XVYuXIlPvzwQ9x999144YUXoKoqnnrqqWItISQkJCQkJC9C4S8kJCTEBTfrOz+YySquvPJKVwun9B+xQeLcucU3yyX221NPPYUzzzwTY8eOxVVXXYVu3bqBMYZbb73Vip3nRS5rzZcDDzwwa5yrXDHXc/rpp2PChAmOdczYhiZu94rMMVnASSedhP/+97+46qqrMHjwYNTU1EAIgcMOOyzvRChOfPvttwC8r1O3bt0wb948zJw5E2+++SbefPNNPPbYYxg/fnxG0gs38o3lGAQzCU8pKPT1N3E7X36fc7d5FWu+hWL8+PG47LLLsHz5csTjcXz66ae49957s7aLRCI45phjMG3aNDQ2Nvq+3/zc/5dddlnKfT5y5MiCJKDIxjvvvIPx48fjyCOPxAMPPBCo7emnn47XXnsNr732Go455hi8/PLLOPTQQzP+oZXOL7/8kiE6z5o1KyMBTksh/fqaAv7XX3+dIhzb+frrrwHA1VqxZ8+eOOWUU3D88cdj1113xQsvvIDHH388jP0XEhISElKRhJ9OISEhIXng9gN84MCBAAz3wEJYQCxcuDDlh9iiRYsghLCygPbr1w9CCCxcuDAlKPrq1auxadMmKzC5Ey+99BIGDhyIV155JWU9U6ZMSalXiLX269cPCxcuzNi/YMECz3ZB6NevH959911s3bo1xVpj/vz51nETpzWZWUc55wW1XvEr1mzcuBHvvfcebrzxRtxwww3WfqfzViiefPJJAMjqhhuJRHD00Ufj6KOPhhACF154IR588EFcf/312H777QuedGThwoU46KCDrNd1dXVYuXIljjjiCGtfbW1thptdIpHAypUrU/YFmVu/fv3w9ddfQwiRYvXndA+Vknye83Jizvunn35KsfJze+5POeUUTJ48Gc8++ywaGxuhqipOPvlkX2M1NjZCSomtW7f6Ev7q6urw6quvom/fvp4JJa6++uoUV2O7a3ex+Oyzz3Dsscdi2LBheOGFFwKLSscccwzat2+PZ555BqqqYuPGjb7cfHv06JHh0j9o0KBAY1cKnHM888wzaNeunZUZ+/DDDwdjDE8++aRrgo9//OMfUBQlq0WzqqrYY489sHDhQqxbtw49evQo+BpCQkJCQkLyJYzxFxISEpIH7dq1A4AM4aFbt24YNWoUHnzwwQwBAkCGG1U27rvvvpTXf/3rXwEYP2AAWELIjBkzUurdeeedAJCRPdOOaf1jt/b57LPPMHv27JR6hVjrEUccgU8//RSff/55yvGnn37adX5BOeKII8A5z7AQuuuuu0AIsc4ZAFRXV2eshzGG448/Hi+//LJlKWIn6LWzj+XHTdfpegCZ17ZQPPPMM/j73/+OffbZB4cccohrvfXr16e8ppRalo/xeByAsUYg8x7JlYceeijF9fz++++Hrusp13C77bbDRx99lNEu3eIvyNyOOOIIrFq1Cs8//7y1T9d1/PWvf0VNTQ1GjhyZy3LyJp/nvJyY1+uee+5J2e92T2+zzTY4/PDD8dRTT+Hpp5/GYYcdlmHhm+4CDxjX9uWXX0bfvn3RrVu3rPNqbGzEGWecgQ0bNuC6667zFId32WUXjB492tqGDh2atX+//PTTTxnW1T/88AOOPPJI9O/fH6+99lpO1rJVVVU49thj8cYbb+D+++9HdXU1/u///i9ru1gslrLW0aNHl0TotKNpGubPn+/4meIXzjkuvfRS/PDDD7j00kvRoUMHAIar+8SJE/Huu+/i/vvvz2j3wAMP4P3338fZZ5+NPn36ADD+CbFs2bKMups2bcLs2bNRW1ub1ZIyJCQkJCSkXIQWfyEhISF5UFVVhV122QXPP/88fvOb36Bz587YbbfdsNtuu+G+++7D/vvvj9133x3nnHMOBg4ciNWrV2P27NlYvnw5vvrqK9/jLF68GMcccwwOO+wwzJ49G0899RROPfVUywpj0KBBmDBhAh566CFs2rQJI0eOxOeff44nnngCY8eOTbGaSueoo47CK6+8gmOPPRZHHnkkFi9ejAceeAC77LKLFRupUGu9+uqr8eSTT+Kwww7DZZddhurqajz00EOWhVUhOProo3HQQQfhuuuuw5IlSzBo0CC8/fbb+Ne//oXLL788Jc7Y0KFD8e677+LOO+9Er169MGDAAAwfPhzTpk3DrFmzMHz4cJxzzjnYZZddsGHDBsydOxfvvvsuNmzYEHheQ4cOxfPPP4/Jkydjr732Qk1NDY4++uiMeh06dMCBBx6I22+/HZqmoXfv3nj77bexePHivM4LYFh31tTUIJFIYMWKFZg5cyY++eQTDBo0CC+++KJn20mTJmHDhg04+OCD0adPHyxduhR//etfMXjwYMtSavDgwWCM4bbbbsPmzZsRjUZx8MEH+xJhnEgkEjjkkENw0kknYcGCBfjb3/6G/fffH8ccc0zKvM4//3wcf/zx+O1vf4uvvvoKM2fOzBCKgszt3HPPxYMPPogzzzwTc+bMQf/+/fHSSy/hk08+wYwZMzxjwRWTfJ7zcjJ48GCMGzcOf/vb37B582bsu+++eO+997Bo0SLXNuPHj8cJJ5wAALjpppsyjh9++OHo06cPhg8fjm7dumHZsmV47LHH8Ouvv6YItiYrVqywYrDV1dXh+++/x4svvohVq1bhd7/7Hc4777wCrdZg8+bN1j9oPvnkEwDAvffei06dOqFTp064+OKLrbqm4G7Grty6dSvGjBmDjRs34qqrrspI2rLddtulJG3x4vTTT8c//vEPzJw5E6eddpolgBeDuXPnOsa5CzJfkxUrVmDnnXfGhAkT8Pjjj2etv3nzZmvshoYGLFq0CK+88gp++uknnHLKKRn30F133YX58+fjwgsvxFtvvWVZ9s2cORP/+te/MHLkSPzlL3+x6n/11Vc49dRTcfjhh+OAAw5A586dsWLFCjzxxBP49ddfMWPGjLzCg4SEhISEhBSVMmUTDgkJCakYHnvsMQlAfvHFF9a+CRMmyOrq6oy6U6ZMkelvnf/973/l0KFDZSQSkQDklClTrGM//fSTHD9+vOzRo4dUVVX27t1bHnXUUfKll17yHD99vO+//16ecMIJsn379rK2tlZefPHFsrGxMaWupmnyxhtvlAMGDJCqqsq+ffvK3//+97KpqSml3siRI+XIkSOt10IIecstt8h+/frJaDQqhwwZIl977TU5YcIE2a9fv4KuVUopv/76azly5EgZi8Vk79695U033SQfeeQRCUAuXrw44xw4nY+1a9d61tu6dau84oorZK9evaSqqnKHHXaQ06dPl0KIlHrz58+XBx54oKyqqpIA5IQJE6xjq1evlhdddJHs27evVFVV9ujRQx5yyCHyoYcesurMmjVLApAvvvhiSr+LFy+WAORjjz1m7aurq5Onnnqq7NSpkwRgnVunusuXL5fHHnus7NSpk+zYsaM88cQT5a+//ppxzs17x+95M7dYLCb79OkjjzrqKPnoo49m3CNSyozr/9JLL8lDDz1UduvWTUYiEbntttvK8847T65cuTKl3cMPPywHDhwoGWMSgJw1a5aUUsp+/frJI4880nF+/fr1Szn35ro+/PBDee6558ra2lpZU1MjTzvtNLl+/fqUtpxzec0118htttlGtmvXTo4ZM0YuWrQoo0+vuaU/E1Ia13/ixIlym222kZFIRO6+++4p10jK5ms3ffr0jDWlXysn3Np73ed+n3O38w1AXnTRRb7X4cb06dNd7z2n98nGxkZ56aWXyi5dusjq6mp59NFHy19++cX1PMXjcVlbWys7duyY8V4npZT33nuv3H///eU222wjFUWRXbt2lUcffbT86KOPMur269fPuvcJIbJDhw5y1113leecc4787LPPfK85COY5ddrS31f79euXss+rbfr7VDZ0XZc9e/aUAOQbb7xRmMWlEWS+bp+tI0eOlLvuumtGn37WOnLkyJTxampq5A477CBPP/10+fbbb7u2i8fj8q677pJDhw6V1dXVsl27dnLPPfeUM2bMkIlEIqXu6tWr5bRp0+TIkSNlz549paIosra2Vh588MEZn3EhISEhISGVBpGyQiI5h4SEhIRkMHXqVNx4441Yu3Zt0ZJZhISEhFQauq6jV69eOProo/HII4+UezohISEhISEhIS2WMMZfSEhISEhISEhIRfHPf/4Ta9eudU2+EBISEhISEhIS4o8wxl9ISEhISEhISEhF8Nlnn+Hrr7/GTTfdhCFDhpQtkUpISEhISEhISGshtPgLCQkJCQkJCQmpCO6//35ccMEF6NatG/7xj3+UezohISEhISEhIS2eFhXj76OPPsL06dMxZ84crFy5Eq+++irGjh1b7mmFhISEhISEhISEhISEhISEhIRUHC3K4q++vh6DBg3CfffdV+6phISEhISEhISEhISEhISEhISEVDQtKsbf4YcfjsMPP7zc0wgJCQkJCQkJCQkJCQkJCQkJCal4WpTwF5R4PI54PG69FkIgGo0iGokAhJRxZiEhISEhISEhISEhISEhIa0WKSEhQQgFpS3K2bLgSCmRLcocIQQk1GmKQqsW/m699VbceOON1usePXrg22++RkN9GScVEhISEhISEhISEhISEhLSJuhUW4sWFmWtoEgpsez771DTvbtnPUIoajt3DsW/ItCiknvYIYRkTe7hZPHHdQ0n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7tyk5h/f+c53WLx4MT/72c/YtGkTP/jBD3jvvfe49dZbAZmVOH/+fP7jP/6Dv//976xfv565c+cycOBAZs+eDcDxxx/Pueeey/XXX8+7777LW2+9xa233srll1/OwIEDAfjGN75BOBzmuuuu46OPPuLpp5/mF7/4RZvGIvmkQ5X6BvhLWVkZ999/f1CHHxCQB4L7LSAgfwT3W0BA/gjut4CA/BHcbwGlzJw5c9i3bx/33Xcf1dXVjBs3jsWLF8cbaWzfvj2phH3atGk89dRTfP/73+d73/seo0aN4rnnnuOkk06K73PXXXfR0NDADTfcQG1tLaeffjqLFy9OKkH+05/+xK233srZZ5+Noihceuml/PKXv4w/361bN1555RVuueUWJkyYQO/evbnvvvu44YYb8vCqpEZYQW/pgICAgICAgICAgICAgICAgICAdkdQ6hsQEBAQEBAQEBAQEBAQEBAQENAOCYS/gICAgICAgICAgICAgICAgICAdkgg/AUEBAQEBAQEBAQEBAQEBAQEBLRDAuEvICAgICAgICAgICAgICAgICCgHRIIfwGe8/nnn3PdddcxbNgwOnXqxIgRI7j//vtpbm4u9NQCAtolP/rRj5g2bRqdO3eme/fuhZ5OQEC74tFHH2Xo0KGUl5dTVVXFu+++W+gpBQS0S9544w0uvPBCBg4ciBCC5557rtBTCghotzzwwANMmjSJyspK+vbty+zZs/nkk08KPa2AgACfCIS/AM/ZtGkTpmnym9/8ho8++oif//znPPbYY3zve98r9NQCAtolzc3NXHbZZdx8882FnkpAQLvi6aefZsGCBdx///28//77jB07llmzZrF3795CTy0goN3R0NDA2LFjefTRRws9lYCAds/rr7/OLbfcwjvvvMOSJUuIRCKcc845NDQ0FHpqAQEBPiAsy7IKPYmA9s9DDz3Er3/9az777LNCTyUgoN3yxBNPMH/+fGpraws9lYCAdkFVVRWTJk3ikUceAcA0TYYMGcJtt93G3XffXeDZBQS0X4QQPPvss8yePbvQUwkI6BDs27ePvn378vrrr3PGGWcUejoBAQEeE2T8BeSFQ4cO0bNnz0JPIyAgICAgwBbNzc2sWbOGmTNnxh9TFIWZM2eycuXKAs4sICAgICDAWw4dOgQQ/F4LCGinBMJfgO9s3ryZX/3qV9x4442FnkpAQEBAQIAtampqMAyDfv36JT3er18/qqurCzSrgICAgIAAbzFNk/nz53Paaadx0kknFXo6AQEBPhAIfwG2ufvuuxFCZNw2bdqUdMzOnTs599xzueyyy7j++usLNPOAgNLDzf0WEBAQEBAQEBAQ4IRbbrmFDRs28Oc//7nQUwkICPAJrdATCCgdvvvd73L11Vdn3Gf48OFxe9euXcyYMYNp06bx29/+1ufZBQS0L5zebwEBAd7Su3dvVFVlz549SY/v2bOH/v37F2hWAQEBAQEB3nHrrbfywgsv8MYbbzB48OBCTycgIMAnAuEvwDZ9+vShT58+tvbduXMnM2bMYMKECSxatAhFCZJLAwKc4OR+CwgI8J5wOMyECRNYunRpvMGAaZosXbqUW2+9tbCTCwgICAgIyAHLsrjtttt49tlnWb58OcOGDSv0lAICAnwkEP4CPGfnzp1Mnz6dY489locffph9+/bFnwuyJAICvGf79u0cOHCA7du3YxgG69atA2DkyJFUVFQUdnIBASXMggULmDdvHhMnTmTy5MksXLiQhoYGrrnmmkJPLSCg3VFfX8/mzZvj/9+6dSvr1q2jZ8+eHHPMMQWcWUBA++OWW27hqaee4n//93+prKyMr13brVs3OnXqVODZBQQEeI2wLMsq9CQC2hdPPPFE2h9FweUWEOA9V199NU8++WSbx1977TWmT5+e/wkFBLQjHnnkER566CGqq6sZN24cv/zlL6mqqir0tAIC2h3Lly9nxowZbR6fN28eTzzxRP4nFBDQjhFCpHx80aJFWZeaCQgIKD0C4S8gICAgICAgICAgICAgICAgIKAdEiy8FhAQEBAQEBAQEBAQEBAQEBAQ0A4JhL+AgICAgICAgICAgICAgICAgIB2SCD8BQQEBAQEBAQEBAQEBAQEBAQEtEMC4S8gICAgICAgICAgICAgICAgIKAdEgh/AQEBAQEBAQH/n73zDnOjuP//a7ZId+dzOXdccKOaYoMB0wwGDDbNoRMwsU0x1aH4G0IIoQUINUBCCAQSCKEHQsqPGlMcCJgOIeAS27hgg42Nu+9O0u7M74+VdCqrLt3pzvN6Hj03t9qdndmdXWnfen8+o9FoNBqNRqPRdEC08KfRaDQajUaj0Wg0Go1Go9F0QLTwp9FoNBqNRqPRaDQajUaj0XRAtPCn0Wg0Go1Go9FoNBqNRqPRdEC08KfRaDQajWar5w9/+ANHHHFExffz8ssvM3LkSKSUFd+XRqPRaDQajUajhT+NRqPRaDRbNc3NzVx99dVce+21Fd/XhAkTsG2bxx9/vOL70mg0Go1Go9FotPCn0Wg0Go1mq+bZZ5+lS5cuHHDAAa2yv6lTp/LrX/+6Vfal0Wg0Go1Go9m60cKfRqPRaDSaDsHq1avp27cvv/jFL+LL3nnnHQKBAK+99lrG7Z566imOPfbYpGVjx47l0ksvTVp23HHHMXXq1Pj/gwcP5sYbb2Ty5MnU19czaNAg/vGPf7B69Wq+973vUV9fz+67786HH36YVM+xxx7Lhx9+yKJFi4rvrEaj0Wg0Go1Gkwda+NNoNBqNRtMh6NWrFw899BDXXXcdH374IZs2beIHP/gB06dP57DDDsu43b///W/22muvovZ51113ccABB/DJJ59w9NFH84Mf/IDJkydzxhln8PHHHzNs2DAmT56MUiq+zbbbbkufPn146623itqnRqPRaDQajUaTL1r402g0Go1G02E46qijmDZtGpMmTeL888+nU6dO3HzzzRnXX79+PRs2bKBfv35F7++8885j++2355prrmHjxo3svffenHzyyeywww5cccUVzJ07l1WrViVt169fP5YuXVrUPjUajUaj0Wg0mnzRwp9Go9FoNJoOxR133IHjODzzzDM8/vjjBIPBjOs2NTUBUFNTU9S+dt9993i5T58+AOy2225py7799tuk7Wpra2lsbCxqnxqNRqPRaDQaTb5o4U+j0Wg0Gk2HYtGiRXz99ddIKVmyZEnWdXv06IEQgnXr1iUtNwwjKTwXIBKJpG1v23a8LITIuExKmbTd2rVr6dWrV+7OaDQajUaj0Wg0JaCFP41Go9FoNB2GcDjMGWecwamnnsoNN9zAOeeck+a2SyQQCDB8+HDmzJmTtLxXr15888038f9d1+Xzzz8vSxubm5tZtGgRe+yxR1nq02g0Go1Go9FoMqGFP41Go9FoNB2Gq666ig0bNvDrX/+aK664gh122IGzzjor6zbjx4/n3//+d9KyQw89lBdeeIEXXniBefPmccEFF7B+/fqytPHdd98lGAyy3377laU+jUaj0Wg0Go0mE1r402g0Go1G0yGYNWsWd999N48++ihdunTBMAweffRR3nrrLe67776M25199tm8+OKLbNiwIb7srLPOYsqUKUyePJmDDz6YoUOHcsghh5SlnU8++SSTJk2irq6uLPVpNBqNRqPRaDSZECo1gY1Go9FoNBrNVsbJJ5/MnnvuyZVXXlnR/axZs4Ydd9yRDz/8kCFDhlR0XxqNRqPRaDQajXb8aTQajUaj2eq5/fbbqa+vr/h+lixZwm9/+1st+mk0Go1Go9FoWgXt+NNoNBqNRqPRaDQajUaj0Wg6INrxp9FoNBqNRqPRaDQajUaj0XRAtPCn0Wg0Go1Go9FoNBqNRqPRdEC08KfRaDQajUaj0Wg0Go1Go9F0QLTwp9FoNBqNRqPRaDQajUaj0XRAtPCn0Wg0Go1Go9FoNBqNRqPRdEC08KfRaDQajUaj0Wg0Go1Go9F0QLTwp9FoNBqNRqPRaDQajUaj0XRAtPCn0Wg0Go1Go9FoNBqNRqPRdEC08KfRaDQajUaj0Wg0Go1Go9F0QLTwp9FoNBqNRqPRaDQajUaj0XRAtPCn0Wg0Go1Go9FoNBqNRqPRdEC08KfRaDQajUaj0Wg0Go1Go9F0QLTwp9FoNBqNRqPRaDQajUaj0XRAtPCn0Wg0Go1Go9FoNBqNRqPRdEC08KfRaDQajUaj0Wg0Go1Go9F0QLTwp9FoNFXG2LFjGTt2bFs3I4k//vGPCCFYsmRJWzel1VmyZAlCCP74xz8WvG0lj9vUqVMZPHhw2ev1Y/DgwUydOjX+f6xfH374Yavsvy2viQULFnDEEUfQtWtXhBD87W9/a5N2lJPrrrsOIURe6wohuO666yrbII1Go9FoNBpNxdDCn0ajqXpKERkaGxu57rrrmDVrVvkbVmVUQ19jgkLsVVdXx/Dhw/nZz37Gxo0bC67vF7/4RasJLU888QR33313q+wrFb/jtu2223Lsscfy8MMPEwqFyrKfOXPmcN1111WlgFutbZsyZQr//e9/uemmm3j00UfZa6+92rpJvgwePDhpDGV6FSNgF8Obb77JxIkTGThwIDU1NfTt25cJEybw9ttvZ227YRh069aN3XbbjXPPPZf33nuvIu2bP38+l112Gfvvvz81NTUFCfRSSv74xz/G+9epUyd23XVXbrzxRpqbm7Nu+/HHHyOE4Gc/+1nGdRYsWIAQghkzZhTSpZxs3LiR66+/nhEjRlBfX09tbS277rorV1xxBV9//XVZ91UorXn9f/3111x33XV8+umnea0f+w4Se9XU1NCvXz/Gjx/Pr3/9azZt2pRx27fffpvjjz+ePn36EAwGGTx4MOeddx7Lli3zXf/f//43Rx55JP3796empib+OfDEE08U01WNRqPRaACw2roBGo1GU0kaGxu5/vrrAarORVduqqmv9913H/X19WzevJl//vOf3HTTTbz++uu8/fbbeTuNwBP+TjrpJI477rjKNTbKE088weeff86ll16atHzQoEE0NTVh23bF2xA7bqFQiBUrVvDKK69w1llncffdd/P8888zcODA+LoPPvggUsqC6p8zZw7XX389Y8eOLcgtOH/+fAyjsr8VZmvbP//5z4ruOxNNTU3Mnj2bq666iunTp7dJG/Ll7rvvZvPmzfH/X3zxRZ588knuuusuevbsGV++//77c8YZZ/CTn/ykou353//+h2EYnH/++fTt25d169bx2GOPcdBBB/HCCy8wYcKEpPVHjhzJ//3f/wGwadMm5s6dyzPPPMODDz7IZZddxp133lnW9s2ePZtf//rXDB8+nJ133jlvEQi8e+2ZZ57Jvvvuy/nnn0/v3r2ZPXs21157La+99hqvv/56xvvcnnvuyU477cSTTz7JjTfe6LtOTOQ544wzCu5XJr788kvGjRvHsmXLOPnkkzn33HMJBAJ89tln/OEPf+Cvf/0r//vf/8q2v0Ip9t5UDF9//TXXX389gwcPZuTIkXlv9/Of/5whQ4YQiURYuXIls2bN4tJLL+XOO+/kH//4B7vvvnvS+vfccw+XXHIJQ4cO5Yc//CHbbLMNc+fO5fe//z1PP/00L774Ivvvv398/WeeeYZTTz2VkSNHcskll9DQ0MDixYt58803efDBBzn99NPLdQg0Go1Gs5WhhT+NRqMpgi1bttCpU6e2bkbVctJJJ8XFhvPPP58TTzyR5557jnfffZf99tuvjVtXGDGHR2uQeNwArrnmGh5//HEmT57MySefzLvvvht/r9JCpFKK5uZmamtrCQaDFd1XLgKBQJvsd/Xq1QB069Yt57ptfU9IFcdXrlzJk08+yXHHHecrpFhWZb8CnnPOOZxzzjlJyy688EKGDh3K3XffnSb89e/fP03ouvXWWzn99NO566672H777bngggvK1r6JEyeyfv16OnfuzB133FGQ8BcIBHj77beTRJtp06YxePDguPg3bty4jNtPmjSJq6++mnfffZd999037f0nn3ySnXbaiT333LOgPmXCcRxOOOEEVq1axaxZszjwwAOT3r/pppu49dZby7KvjsyRRx6Z5Pi98soref311znmmGOYOHEic+fOpba2FvCcfpdeeikHHnggL7/8MnV1dfHtLrjgAg444ABOOukkvvjiCxoaGgDP+T18+HDefffdtHvet99+2wo91Gg0Gk1HRYf6ajSadsnUqVOpr69nxYoVHHfccdTX19OrVy9+9KMf4bou4OVm69WrFwDXX399PEwnMV/VvHnzOOmkk+jevTs1NTXstdde/OMf/0jaVyzM51//+hcXXnghvXv3ZsCAAUBLiOa8efM45ZRT6NKlCz169OCSSy5JC/lyHIcbbriBYcOGxUN+fvrTn+YM4wyHw1xzzTWMGjWKrl270qlTJ8aMGcMbb7wRX6dcfQX44osvOPTQQ6mtrWXAgAHceOONBTvLUjn00EMBWLx4MeCJJP/3f//HwIEDCQaD7Ljjjtxxxx0opeLbCCHYsmULjzzySLw/iXnmVqxYwVlnnRUPodpll1146KGHkvY7a9YshBD8+c9/5qabbmLAgAHU1NRw2GGHsXDhwvh6Y8eO5YUXXmDp0qXxfcXEEr8cf5999hlTp05l6NCh8TDGs846i++++66k4+THpEmTOOecc3jvvfeYOXNmfLlfjr+nnnqKUaNG0blzZ7p06cJuu+3Gr371K8AbxyeffDIAhxxySLyfsdDwwYMHc8wxx/DKK6+w1157UVtby+9+97v4e4nHPkZjYyPnnXcePXr0oEuXLkyePJl169YlrZMpR1xinbna5pfj79tvv+Xss8+mT58+1NTUMGLECB555JGkdWLn7o477uCBBx6IX3t77703H3zwge/xjnHdddcxaNAgAC6//PKkMRG77ufMmcPpp59OQ0NDXEzJ9zqPHe9Zs2bFj/duu+0W7/Nzzz3HbrvtRk1NDaNGjeKTTz7J2t5C8MvxFwqFuOyyy+jVqxedO3dm4sSJLF++PGmdN954AyEEf/3rX9PqfOKJJxBCMHv27Iz7rauro1evXqxfvz6vdtbW1vLoo4/SvXt3brrppqT7Q6l0796dzp07F7VtIBBIEv1iHH/88QDMnTs36/aTJk0C8A3f/Oijj5g/f358nXLwl7/8hf/85z9cddVVaaIfQJcuXbjpppuSlj3zzDOMGjWK2tpaevbsyRlnnMGKFSuS1snnczhGKfemv//97xx99NH069ePYDDIsGHDuOGGG9L2MXbsWHbddVfmzJnDIYccQl1dHf379+e2226LrzNr1iz23ntvAM4888ySQ+APPfRQrr76apYuXcpjjz0WX37DDTcghOCRRx5JEv0Ahg0bxm233cY333wTv8cCLFq0iL333tv3h47evXsX1T6NRqPRaEALfxqNph3jui7jx4+nR48e3HHHHRx88MH88pe/5IEHHgCgV69e3HfffYD3QPboo4/y6KOPcsIJJwCewLXvvvsyd+5cfvKTn/DLX/6STp06cdxxx/k+2F544YXMmTOHa665Ji1M7pRTTqG5uZmbb76Zo446il//+tece+65Seucc845XHPNNey5557cddddHHzwwdx88818//vfz9rPjRs38vvf/56xY8dy6623ct1117F69WrGjx8fd6mUq68rV67kkEMO4dNPP+UnP/kJl156KX/605/iD2jFsmjRIgB69OiBUoqJEydy1113MWHCBO6880523HFHLr/88qScVo8++ijBYJAxY8bE+3PeeecBsGrVKvbdd19effVVpk+fzq9+9Su22247zj77bN88fbfccgt//etf+dGPfsSVV17Ju+++m/RgfdVVVzFy5Eh69uwZ31e2fH8zZ87kyy+/5Mwzz+See+7h+9//Pk899RRHHXVUWcWJGD/4wQ+A7CGvM2fO5LTTTqOhoYFbb72VW265hbFjx8Zzqh100EFcfPHFAPz0pz+N93PnnXeO1zF//nxOO+00Dj/8cH71q1/lDIObPn06c+fO5brrrmPy5Mk8/vjjHHfccQUfg3zalkhTUxNjx47l0UcfZdKkSdx+++107dqVqVOn+o7VJ554gttvv53zzjuPG2+8kSVLlnDCCScQiUQytumEE07grrvuAuC0007zHRMnn3wyjY2N/OIXv2DatGlAYdf5woULOf300zn22GO5+eabWbduHcceeyyPP/44l112GWeccQbXX389ixYt4pRTTilZgM/GOeecw913380RRxzBLbfcgm3bHH300UnrjB07loEDB/L444+nbf/4448zbNiwNEfvxo0bWbNmDfPmzeOnP/0pn3/+OYcddlje7aqvr+f4449nxYoVzJkzp7jOtRIrV64ESHLt+jFkyBD2339//vznP6eJVzExsJxhnbEfeGL3kVz88Y9/5JRTTsE0TW6++WamTZvGc889x4EHHpgm2ub6HIbS701//OMfqa+vZ8aMGfzqV79i1KhRvp/DAOvWrWPChAmMGDGCX/7yl+y0005cccUVvPTSSwDsvPPO/PznPwfg3HPPje/roIMOKuCIJpN6f25sbOS1115jzJgxDBkyxHebU089lWAwyPPPPx9fNmjQIF577bU0wV2j0Wg0mpJRGo1GU+U8/PDDClAffPBBfNmUKVMUoH7+858nrbvHHnuoUaNGxf9fvXq1AtS1116bVu9hhx2mdtttN9Xc3BxfJqVU+++/v9p+++3T9n/ggQcqx3GS6rj22msVoCZOnJi0/MILL1SA+s9//qOUUurTTz9VgDrnnHOS1vvRj36kAPX666/Hlx188MHq4IMPjv/vOI4KhUJJ261bt0716dNHnXXWWWXt66WXXqoA9d5778WXffvtt6pr164KUIsXL06r2+94zJ8/X61evVotXrxY/e53v1PBYFD16dNHbdmyRf3tb39TgLrxxhuTtj3ppJOUEEItXLgwvqxTp05qypQpafs5++yz1TbbbKPWrFmTtPz73/++6tq1q2psbFRKKfXGG28oQO28885Jx/BXv/qVAtR///vf+LKjjz5aDRo0KG1fixcvVoB6+OGH48ti9Sfy5JNPKkC9+eab8WWxsZPvcVu9erXv++vWrVOAOv744+PLpkyZktTeSy65RHXp0iVtjCbyzDPPKEC98cYbae8NGjRIAerll1/2fS/xPMT6NWrUKBUOh+PLb7vtNgWov//97/FlmcZkap3Z2pZ6Tdx9990KUI899lh8WTgcVvvtt5+qr69XGzduVEq1nLsePXqotWvXxtf9+9//rgD1//7f/0vbVyKx7W+//fak5bHzddpppyUtL+Q6jx3vd955J77slVdeUYCqra1VS5cujS//3e9+l/HYZOL222/POPZi7U9t94UXXpi03umnn552/q688koVDAbV+vXr48u+/fZbZVmW73keP368AhSgAoGAOu+881RTU1PSOoMGDVJHH310xr7cddddaeOqnGQ7VoUwbtw41aVLF7Vu3bqc6957770KUK+88kp8meu6qn///mq//fYrqR2p7LHHHqpr1655rRsOh1Xv3r3VrrvumnSenn/+eQWoa665Jr4s38/hUu9Nfvfb8847T9XV1SV9ph188MEKUH/605/iy0KhkOrbt6868cQT48s++OCDtHt6Nvy+g6TStWtXtcceeyilWq6nSy65JGu9u+++u+revXv8/z/84Q/x6+SQQw5RV199tXrrrbeU67p5tVOj0Wg0mkxox59Go2nXnH/++Un/jxkzhi+//DLndmvXruX111/nlFNOYdOmTaxZs4Y1a9bw3XffMX78eBYsWJAW1jRt2jRM0/St76KLLkr6/4c//CHgJdhP/Js6S2Msmf0LL7yQsa2macZDf6SUrF27Fsdx2Guvvfj444/L2tcXX3yRfffdl3322Se+fa9evQoOO9txxx3p1asXQ4YM4bzzzmO77bbjhRdeoK6ujhdffBHTNOMOj8RjoZSKOzMyoZTiL3/5C8ceeyxKqXh/1qxZw/jx49mwYUPacTnzzDOTwqfGjBkDkNdY8SOWxwmgubmZNWvWxHN15XNOCqW+vh4g6+yR3bp1Y8uWLUnhwIUyZMgQxo8fn/f65557blKuwQsuuADLsuLjvVK8+OKL9O3bl9NOOy2+zLZtLr74YjZv3sy//vWvpPVPPfXUeB4tKP38x0i9/xR6nQ8fPjzJITd69GjACx/cdttt05aX2t5MxNqdek2mTnQDMHnyZEKhEM8++2x82dNPP43jOL6TUdxyyy3885//5A9/+AP77rsv4XAYx3EKal8+47+t+cUvfsGrr77KLbfckldOyFNPPRXbtpPCff/1r3+xYsWKsob5gue6zDes+cMPP+Tbb7/lwgsvTMptevTRR7PTTjv5flbl+hwu9d6UeL+NfYaNGTOGxsZG5s2bl7RufX190jgMBALss88+Fbt2EvcbG5+xv7mOeefOnZNmuz/rrLN4+eWXGTt2LP/+97+54YYbGDNmDNtvvz3vvPNO5Rqv0Wg0mg6PFv40Gk27paamJp7XLkZDQ0NajjE/Fi5ciFKKq6++ml69eiW9rr32WiA9mXamkB2A7bffPun/YcOGYRgGS5YsAWDp0qUYhsF2222XtF7fvn3p1q0bS5cuzdreRx55hN13352amhp69OhBr169eOGFF9iwYUNZ+7p06dK0voAn5BXCX/7yF2bOnMmsWbNYuHAhn3/+OaNGjYrvo1+/fmkPRbGwrlzHYvXq1axfv54HHnggrT9nnnlmUn9iJIooQFwEymes+LF27VouueQS+vTpQ21tbVzkBPI6J4USm60124PkhRdeyA477MCRRx7JgAED4g+RhZBtjPuROlbq6+vZZptt4uO+UsTGaepMw5nGULnPf4zU41XodZ7arq5duwIkzd6cuLzU9mYi1u5hw4YlLfe77nfaaSf23nvvpHDfxx9/nH333Tet3+DN1nv44Ydz1llnMXPmTN5//33ffJHZyGf8b9iwgZUrV8Zfa9euLWgfpfD000/zs5/9jLPPPjvvCUh69OjB+PHj+etf/xrPB/vEE09gWRannHJK1m1d103q68qVKwmHwxnX79KlS96iaWyMZjr3qWM4n8/hUu9NX3zxBccffzxdu3alS5cu9OrVKy7upd5vBwwYkJa/Mt/vBaWwefPm+PiM/c11zDdt2pQ2psePH88rr7zC+vXrefPNN7noootYunQpxxxzjJ7gQ6PRaDRFo2f11Wg07ZZM7rt8iOXK+tGPfpTR4ZT6EJvoOshF6oNHruXZeOyxx5g6dSrHHXccl19+Ob17947nXorlzstGMX0tlYMOOihnnqtiifXnjDPOYMqUKb7r7L777kn/Zxorqsh8fKeccgrvvPMOl19+OSNHjqS+vh4pJRMmTKhIHrbPP/8cyH6eevfuzaeffsorr7zCSy+9xEsvvcTDDz/M5MmT0ya9yEQhY7xUUnObVZJyn/8YmY5Xvtd5pnZVqr3lYvLkyVxyySUsX76cUCjEu+++y29+85uc2wUCASZOnMgtt9xCU1NT3uMtn/F/ySWXJI3zgw8+OD45RCWZOXMmkydP5uijj+b+++8vaNszzjiD559/nueff56JEyfyl7/8hSOOOCJNSEvlq6++ShOd33jjjbQJcGLstNNOfPLJJ3z11VdponKp5PM5XMq9af369Rx88MF06dKFn//85wwbNoyamho+/vhjrrjiirT7bVtcO8uXL2fDhg3x8bnddtthWRafffZZxm1CoRDz589PmiU4kbq6OsaMGcOYMWPo2bMn119/PS+99FLGzzyNRqPRaLKhhT+NRtOhyfQAPnToUMALDxw3blzJ+1mwYEHSg9jChQuRUsZnAR00aBBSShYsWJA0YcGqVatYv359fPZQP5599lmGDh3Kc889l9SfmFsvRjn6OmjQIBYsWJC2fP78+Vm3K4RBgwbx6quvprkdYiFbicfCr0+xWUdd1y3Lucu2Lz/WrVvHa6+9xvXXX88111wTX+533MrFo48+CpAzDDcQCHDsscdy7LHHIqXkwgsv5He/+x1XX3012223XVHCczYWLFjAIYccEv9/8+bNfPPNNxx11FHxZQ0NDWkTAoTDYb755pukZYW0bdCgQXz22WdIKZNcf35jqDUp5TpvS2LtXrRoUZLTK9N1//3vf58ZM2bw5JNP0tTUhG3bnHrqqXntq6mpCaUUmzZtykv427x5M3/9618ZOHBgxsleAH784x8nhXgmhnZXivfee4/jjz+evfbaiz//+c9YVmFfqydOnEjnzp154oknsG2bdevW5RXm27dv37Sw2REjRmRc/9hjj+XJJ5/kscce48orr8xad2yMzp8/Pz4be4z58+cXPYaLvTfNmjWL7777jueeey5pAo7YDPHFUO77YOr9uVOnThxyyCG8/vrrLF261PeY/fnPfyYUCnHMMcfkrD8mDqbeMzUajUajyRcd6qvRaDo0dXV1AGnCQ+/evRk7diy/+93vfL9Mr169uqD93HvvvUn/33PPPQAceeSRAHEhJHVW0DvvvBMgbfbMRGIOhkTHwnvvvcfs2bOT1itHX4866ijeffdd3n///aT3/WbxLJajjjoK13XTHEJ33XUXQoj4MQPvASq1P6ZpcuKJJ/KXv/wl7gRKpNBzl7ivfMJ0/c4HpJ/bcvHEE0/w+9//nv322y/rbKjfffdd0v+GYcSdj6FQCPD6COljpFgeeOCBpJlx77vvPhzHSTqHw4YN480330zbLtXxV0jbjjrqKFauXMnTTz8dX+Y4Dvfccw/19fUcfPDBxXSnZEq5ztuS2Pn69a9/nbQ805ju2bMnRx55JI899hiPP/44EyZMSHP4+oUlrl+/nr/85S8MHDiQ3r1752xXU1MTP/jBD1i7di1XXXVVVsFm+PDhjBs3Lv6KpRYoB4sWLUpzV8+dO5ejjz6awYMH8/zzzxfllq2treX444/nxRdf5L777qNTp05873vfy7ldTU1NUl/HjRuXVeg86aST2G233bjpppvSPjfACzm96qqrAE9k6t27N/fff3/8vgHw0ksvxftcKKXcm/zut+FwmN/+9rcFtyNGOe+Dr7/+OjfccANDhgxJEm1/9rOfoZRi6tSpNDU1JW2zePFifvzjH7PNNtvEZ6oHeO2113z3EcvBWWjKDY1Go9FoYmjHn0aj6dDU1tYyfPhwnn76aXbYYQe6d+/Orrvuyq677sq9997LgQceyG677ca0adMYOnQoq1atYvbs2Sxfvpz//Oc/ee9n8eLFTJw4kQkTJjB79mwee+wxTj/99LgLY8SIEUyZMoUHHnggHrr0/vvv88gjj3DccccluaZSOeaYY3juuec4/vjjOfroo1m8eDH3338/w4cPj+e+Kldff/zjH/Poo48yYcIELrnkEjp16sQDDzwQd1iVg2OPPZZDDjmEq666iiVLljBixAj++c9/8ve//51LL700Kc/YqFGjePXVV7nzzjvp168fQ4YMYfTo0dxyyy288cYbjB49mmnTpjF8+HDWrl3Lxx9/zKuvvlpUfq9Ro0bx9NNPM2PGDPbee2/q6+s59thj09br0qULBx10ELfddhuRSIT+/fvzz3/+syQHSoxnn32W+vp6wuEwK1as4JVXXuHtt99mxIgRPPPMM1m3Peecc1i7di2HHnooAwYMYOnSpdxzzz2MHDky7pQaOXIkpmly6623smHDBoLBIIceemheIowf4XCYww47jFNOOYX58+fz29/+lgMPPJCJEycmtev888/nxBNP5PDDD+c///kPr7zySppQVEjbzj33XH73u98xdepUPvroIwYPHsyzzz7L22+/zd133533RAblppTrvC0ZOXIkp512Gr/97W/ZsGED+++/P6+99hoLFy7MuM3kyZM56aSTALjhhhvS3o/lcxs9ejS9e/dm2bJlPPzww3z99ddJgm2MFStW8NhjjwGey2/OnDk888wzrFy5kv/7v/9LEkjKwYYNG+I/0Lz99tsA/OY3v6Fbt25069aN6dOnx9eNCe6x3JWbNm1i/PjxrFu3jssvvzxtwothw4YlTdqSjTPOOIM//elPvPLKK0yaNCkuSpUT27Z57rnnGDduHAcddBCnnHIKBxxwALZt88UXX/DEE0/Q0NDATTfdhG3b3HrrrZx55pkcfPDBnHbaaaxatYpf/epXDB48mMsuu6zg/Zdyb9p///1paGhgypQpXHzxxQghePTRR0sK3R02bBjdunXj/vvvp3PnznTq1InRo0fnzHH60ksvMW/ePBzHYdWqVbz++uvMnDmTQYMG8Y9//CNpMpSDDjqIO+64gxkzZrD77rszdepUttlmG+bNm8eDDz6IlJIXX3wxSbD93ve+x5AhQzj22GMZNmwYW7Zs4dVXX+X//b//x9577+37eaTRaDQaTV60wUzCGo1GUxAPP/ywAtQHH3wQXzZlyhTVqVOntHWvvfZalXpre+edd9SoUaNUIBBQgLr22mvj7y1atEhNnjxZ9e3bV9m2rfr376+OOeYY9eyzz2bdf+r+5syZo0466STVuXNn1dDQoKZPn66ampqS1o1EIur6669XQ4YMUbZtq4EDB6orr7xSNTc3J6138MEHq4MPPjj+v5RS/eIXv1CDBg1SwWBQ7bHHHur5559XU6ZMUYMGDSprX5VS6rPPPlMHH3ywqqmpUf3791c33HCD+sMf/qAAtXjx4rRj4Hc8Vq9enXW9TZs2qcsuu0z169dP2battt9+e3X77bcrKWXSevPmzVMHHXSQqq2tVYCaMmVK/L1Vq1apiy66SA0cOFDZtq369u2rDjvsMPXAAw/E13njjTcUoJ555pmkehcvXqwA9fDDD8eXbd68WZ1++umqW7duCogfW791ly9fro4//njVrVs31bVrV3XyySerr7/+Ou2Yx8ZOvsct9qqpqVEDBgxQxxxzjHrooYfSxohSKu38P/vss+qII45QvXv3VoFAQG277bbqvPPOU998803Sdg8++KAaOnSoMk1TAeqNN95QSik1aNAgdfTRR/u2b9CgQUnHPtavf/3rX+rcc89VDQ0Nqr6+Xk2aNEl99913Sdu6rquuuOIK1bNnT1VXV6fGjx+vFi5cmFZntralXhNKeef/zDPPVD179lSBQEDttttuSedIqZZzd/vtt6f1KfVc+ZFp+2zjPN/rPNPxBtRFF12Udz8ycfvtt2cce373yaamJnXxxRerHj16qE6dOqljjz1WffXVVxmPUygUUg0NDapr165p9zqllPrNb36jDjzwQNWzZ09lWZbq1auXOvbYY9Wbb76Ztu6gQYPiY18Iobp06aJ22WUXNW3aNPXee+/l3edCiB1Tv1fqfXXQoEFJy7Jtm3qfyoXjOGqbbbZRgHrxxRfL07kMrFu3Tl1zzTVqt912U3V1daqmpkbtuuuu6sorr0y7Tzz99NNqjz32UMFgUHXv3l1NmjRJLV++PGmdfD+HS703vf3222rfffdVtbW1ql+/furHP/6xeuWVV5LWUcq7T+yyyy5p7fH7rPz73/+uhg8frizLSru/pxK738VegUBA9e3bVx1++OHqV7/6ldq4cWPGbd988031ve99T/Xs2VPZtq223XZbNW3aNLVkyZK0dZ988kn1/e9/Xw0bNkzV1taqmpoaNXz4cHXVVVdl3YdGo9FoNLkQSlVJpmiNRqNph1x33XVcf/31rF69umKTWWg0Gk214TgO/fr149hjj+UPf/hDWzdHo9FoNBqNRpMBneNPo9FoNBqNRlMQf/vb31i9ejWTJ09u66ZoNBqNRqPRaLKgc/xpNBqNRqPRaPLivffe47PPPuOGG25gjz32aLOJVDQajUaj0Wg0+aEdfxqNRqPRaDSavLjvvvu44IIL6N27N3/605/aujkajUaj0Wg0mhy0qxx/b775JrfffjsfffQR33zzDX/961857rjj2rpZGo1Go9FoNBqNRqPRaDQaTdXRrhx/W7ZsYcSIEdx7771t3RSNRqPRaDQajUaj0Wg0Go2mqmlXOf6OPPJIjjzyyLZuhkaj0Wg0Go1Go9FoNBqNRlP1tCvhr1BCoRChUCj+v5SSYDBIMBAAIdqwZRqNRqPRaDQajUaj0Wg6LEqhUAhhYBjtKtiy7CilyJVlTgiB0DpNRejQwt/NN9/M9ddfH/+/b9++fP7fz2jc0oaN0mg0Go1Go9FoNBqNRrNV0K2hgXaWZa2sKKVYNucL6vv0ybqeEAYN3btr8a8CtKvJPRIRQuSc3MPP8ec6EX5Y8ziNVhjD9QaUNJVXFiANhekKVKzsCJSRWFZIA0zHQBoSZYDlGLiJZVOihFd2TAmA5aaULYlQYMbKEkzZUjakgWtJDAlCClxLYUiBkLSUFbimV0Yl9KON+gRw0tvD+PvoxTTVOGXpkzAjmNE+uWZKPxLKlmMgDRUvuz79sB0DJ7Ec7ZPtGESi/bDdlHL0PFmxsgRLtpQT+xcrG1JgSBEvCwXCcjBcgUjoR1KfoucssZxPn5L6F/H2r4RXjljRfjgpZTvap1g5Qz9S+xRQyiu7AoHANWVSnxLHXnKfDBQqqU+22YzhGChDoQyVNPZMx0QarleOmEjLRQmv7FoupnCwHBPHcr2x55g4tguqpSykiLbdK3tjzysHpMS1ZHS58MZkSp9AIE2JER3XsbIlXO/acqLXlhlre2I/MpcDRjOmY+FaDkBBZaEEAQmu6YAS2OEAI98ewydj/oU0JNJ0EUogpOGVpYFQAmm62FIhAGlIhPT6pAyJIQ1UtBxwQQnlLXdN79yIWFliGi4iWkYohGOizORyQIQxHBtpRgAw3JSyFcFSEsO1kFYElMBwTaTl9UlIE2U6mErGyygDIQ2U6XhtVwJlulgSBAJluAhpRvvklRUKDEnQUSjhlUW0T4iWsikchGuhDNfrR2LZsVGWg4mLcAIoK+x99viUTQU4NthhkAKkBVYkqWy5CqQZXW60lF0TEJhmOF7GdKJlwHTBtTCUjJdBeWXHBsMFQ2I6VrzsLXfAUOAEwIhgCgmRgLdPoaJlrx84ASwj+lnpBhBWGKUEuLZXlgLDteJlpIWwIqhoP4QVQbgtZSVN73yaTrxsGRFUtE/CdFGu5R1nwyvbKla2QbgIQyaVRdjrkzAUKtonYSikE0CYESxiZa9Pyk0um2bYGzvS9panlIVrYRgRlDJQykwrG6FavvlsCv1GPoQQLkoJDNNBRseeYXjnQ0T7JF0roWwjhIuJjJeFES0bDkIopBvAIoIQCtcNYBiJ5XD0O0wAW3nXk5IBDNM7T0ra8TKO11elBFJamGa0H9LEMCNIaSCkiWlGom0XGIaTVMZp6ZOU3nhLLFtIXGkjcDEMr2wIFyFiZQdbgisDGMLrh+MGMI2Wso3XJ1cGMI2WshXrk2tjGV7ZVS1lqSxMI4JUBrgtZaXMaNlEKYFpOBDxxp5hOEgV7ZOI9kOoeNlQXtmV3rkxov2IlR1pYyoHQyicaJ9iZTPWPxnAFGEMBa7yyuCVLRFGEe2HCCNp6Z9UAomFJaL9wMRMKNtutE8ITOEkld1on0zhIh0TQbQfyoqXHWVjEO2T21L2lkf7pAIYeH2KqAC29PoUUQGs6HlySC7bIgwRhYONLWL9iPYvtU/SiJclJpaIRNue2I/kPilp8iZTOZBHCYgmXOWNPTOlT+nllj6ZMoyBIkL02oqXM/QJ7zw52Nh450lKCytWxsIigiTaj5Syi3duLBxcon3CQUa870YmMrpcYSJx8M6ZV7a8fqD8y67EIdo/FBFsLJxon2wsItF+JJdtItE+WdgynLHtXtnAwkFiIhP6kdwnMHEzlh2saJ+8suFKjFg5uhevH25aOf08RQCVcJ5azk3yeSq1T955cqNemJZytB8RA4GM9smO1uom90MEMJSTVo6IIJYKe32KlkHhiCCWCnl9EgFsFfL6FC1LDKSwsFQ4vRzvnxntX2zstZRz9gk7qU9SGLzV/XwOWPsgAdVc3X1yTf8+CRuhZLxsqOh5EjaGaoPzJEws5fXJtTux+Zgn6dbQHdOMfrfbCpFSsm7tdzw0ag/Cmzb5rhPo3JmzPvqEhu49tnp3ZCXo0MJfKrEBd3b9wzSJSOUap6kIFk5bN6FkLOG2dRPKRql9CYpQ7pWy7r/48WBRWttL6XtNqf0usu25tsun3nz6HST3vTWffZk52ytzt0XlbouZRz15rZPHR6mtMvcp1z6MHPWb5Hg/x/a2LG17I0f3c+8/+/ZGjvfNHPvP2b4c9dt5XHaGyv7rdM4+5B5mWG6ufeR4P49vfLnamWsfAJZT2rHI9T54PyBmwszz4yGf/Xj7Kl99edeVZx+Em9/X+Hz3m896wsmvsnzbBpDHbTZvCtpvJnLcE/NqR6QMnSpHX8pRRzXvrxJEOs739XZNBxhLyqpj3fEvbPViVlz422k7Ips3+65j19dz1ryFW/2xqhT6iGrKhpAwcHV93l8uC8XpAJHpjjJxVMf4tafUvoRUsMT9Fz8eHEwcim97Kf1uVkGaS+h7vO1S0PBtb89VVgbyOR7VNHadPD6+QsLOuY5bJR+D1dIOjT9KCZrWDfVcdT7kEv005SWb6JcvbSH65Us1i375krf4JkkT/aQSfKuGIIu4rkoW/aQqWfQTEVm66Oeq0kWPctRR6L7au1ATcbc60U9i8G1gO2Q1fA9JHEftfSxpfAkY2V+aytGuDu/mzZv59NNP+fTTTwFYvHgxn376KcuWLWvbhmkALyz0gPl9MWXlhpWDpQXAKqNU8a8UAbAU8Q/yE7sy77u081eK+AegpM3QL3ZDSTs/0a6EvhZCiNxiWz5tcfPqU+t8hOUjyrk6F0mHRkmLtUsOR8n2//lTaXK5/doT5Rb9KvXDaDn2mfd6ebj9ChL9fBdbzGEcsoDve8JV5RH9SmSrcvl1JIFmKxT8Ykhh8UXnI5GiDT7ftNC31WEKlfWlqRztKtR31qxZHHLIIWnLp0yZwh//+Mec2+tQ345HRwj/hY4RAqxDf4un1PDfREoN6W2tkN9yhPt69VRPyG8lw311qG+u+nNsX+FQ33wcf6WG+uYK8/X20fahvvkIf6WG+pYa5qtDfItbr6whvmUSQcsS1gta9GvLetuSrVTsazM64hjKgQ719YjpMH/edRhOhlBfq76eUz5ftNUfq0rRro7o2LFj49NAJ77yEf00lceQMGxll7KGu+RCOwCrBx36WzzFhP8KKej99TZpD8C5+lHq++WiNV1/+YT8lgPt+uu4KGmwZc3O3oQmmjal1DDfag7xzZd2H+KbY39SGXytdvImccmwj7I4/Fp2WHIVHVb066hurK3Y4ZeKxODr4C6VCfXVjj5NCgEz+0tTOfQ3WE3ZMKRgxOKeeSX+LjdaAKwedOhv8cQEwHyEQCENtl00LD5Lb1JbKiz+5dPXcoX8thZ5hfNWOOQ3W/1Si4ptilImG78ejSryOm8LcagYqqGd1dCGtgrxzdftV05aPcQ3j/1JTL5kH2TCZ0TZxT7Q+fxy1dURhRot+KUhMVlUd0DS9VY0WujT5MAU2V+aytH+lRJN1eBYiuf2+7Jt2xAd0u09BDgmrLTXEGBHmSW1PaSCRYf+xsS/YkN/HcyiQ3/Lfd4Sxb/UcGBpuXw45t+Z21JCP6oJFzNnyK+DkTPkNyTsnCG/LkZeIb+lEBFm1nBfTXVimBG22f2Pbd2MDkElhb1cYb5t4s6r8hDfvOoqZ16/PLBEhAP5U3lFvkTK4PCDDujy68hCjRb7MmIRYcy6B4rbuCOPGU1FMAVkyo6ihb/Koh1/mrJhSMHOXzW0ieMvlY7g/oP27QBs76G/pe3bLPu5S3UDCinot3TbosPe2pPrL5+Q39aiPU70Uen8ftVOOfL7KWmwadXIqg71rYbP3kpTjtl8c+8jv/W2lhDffPP65UWeVSlXsMwdUd7Qw5i7T4t+la2n2tAOv5xITJbWjirM8acdfZoiMQWYRoZXx/8a06ZU7zdYTbujLXL8ZaOjiH9QGSGptWivob+l5v1raYNZkfMXdmvp+fUA31Df+L6rIOS3tShXrr9yhfxWE5UWIkud2CNn/SVO7FEOlDLZ8t3ORYf6avKjkt8fyln31hTim1ddZQrxjYXySky+ETuVHnpYZrEvRocS/TqqgKMFv7zxcvztmr/Q3hHHi6bVCFpQk+EV7DiP7lWJPryasuFYiuf3XtrWzUiio4T+JuIntlR7SPDWGvrr356W81fKMXEtl/f3/QiwqMnSvlztL/n9HOc2hJ1zht98jnG5Qn7bM1KIjLP7uoicM/tWK7lm9K0GDDNC3+FPVqz+XK7DaqFUV2FbhvnmQ1nFMB3i20Keol8Miwj7qqdyb+S7r8rcB8si9kF1CX4dES32FYxFhP3WP5Lfyh113GhaDVMAOtS3TWhftgVNVeNN7tGjKsONOpL7z49KucrKSXsP/U18lYtSzpvhCoYsGoThipwTgbT1TL/5hPy2FtXg+ouIzMezvbkJtxaUNNnw9WiUTD93RqZkNVshllO5Y1HpMF8d4puyTiuKfqm4mCxin/zTPFTQ2VeWyTtiVItg19HEm5i7T4t+ReFisqhu/9zXW0cbN5o2QU/u0XboJwxN2TAU9FlflzPsq63o6OJfIqmCUjWJge019DepngqIgFBgSLcSNKzrFs+QW6r4VwrlGF/lyvVXrpDfUqm2PH+a0lBKENrUH6VFvorRHsJ8t5YQ39aezCO1LoVgnRiAymQLgfYj9sWoFsGuo4g3WuwrGwqDtfa2qGzfnzrKuNG0ORnz+0VfxXDvvfcyePBgampqGD16NO+//37GdR988EHGjBlDQ0MDDQ0NjBs3Lm39zZs3M336dAYMGEBtbS3Dhw/n/vvvT1rnvPPOY9iwYdTW1tKrVy++973vMW/evKR1hBBpr6eeKtLNXga08KcpG46p+OceX+G0RsKlItmaxL9UqkkILHX/pYp/5RIAoXXcgH5IS/LxXv9BWuV5OKl0vr/2NtFHR8z1pykew3ToveNzGOWIJ20j2vpHuWoO8y1neGy+tEWIbzVO5uHXPwuHvdRz6Wla2pvYB+XLoVctdbQViUKfFvvKikWEvTc8hZUpLUt7HjeaqsMyBXaGl1WE5e/pp59mxowZXHvttXz88ceMGDGC8ePH8+233/quP2vWLE477TTeeOMNZs+ezcCBAzniiCNYsWJFfJ0ZM2bw8ssv89hjjzF37lwuvfRSpk+fzj/+8Y/4OqNGjeLhhx9m7ty5vPLKKyilOOKII3Dd5PvTww8/zDfffBN/HXfccQX3sVzopxZN2TCkYO8Fvasy1DcRB2urFgBjtLUQWA2hv+UWAaEybkC/Y2W4gu3nD8NwW663tg75LYf4Vw5ac6KPasLN4o7J5kCMGNV9z64GlDRZt+wg31Df1sBy9TmqFOUO8W0LEbG191mJvH6JuJjMF2Nafuhpr2JftUy+0V4n8NBCX6vgYjKv06Et11vi+G2P40ZT1Rgi+6tQ7rzzTqZNm8aZZ54Zd+bV1dXx0EMP+a7/+OOPc+GFFzJy5Eh22mknfv/73yOl5LXXXouv88477zBlyhTGjh3L4MGDOffccxkxYkSSM/Dcc8/loIMOYvDgwey5557ceOONfPXVVyxZsiRpf926daNv377xV01NTeGdLBPt66lGU9UIBZ1CFqKdfEZo8S+ZtgoPbsvQ35Y2WBURAsvtBkw+L4Ka5hpSM+RWu/iXi9YM+a1WsgmOUocQtwlKCdxw56JCfatlpvtK057z++WirUJ8yxpOW+V5/VL2QjNdAFFWwa/diH2JdVZDHa2JFvtaj/iYhWbRBVza33jRtDtsM/sLYNOmTWzcuDH+CoX8J3gMh8N89NFHjBs3Lr7MMAzGjRvH7Nmz82pPY2MjkUiE7t27x5ftv//+/OMf/2DFihUopXjjjTf43//+xxFHHOFbx5YtW3j44YcZMmQIAwcOTHrvoosuomfPnuyzzz489NBDqAyT9LUG7ffJSFN1uKZi1q5f41ZxqG8q2v2XndYSAssR+lsOATBGtQuBjjKRpuS/I75A+kwH2tbiXzY64kQfGbfN5rLLMsGHpvowTIee273QrkN9c5FL3Kqkm7895PcrF+05xLeSef0SMXEYoV7AlNlnhM9rP+1N7Eustxz1VDs6hLfypDr4UsaXicPIDX/FTA2t12gqgG0KbCvDKxrqO2DAALp27Rp/3Xzzzb51rVmzBtd16dOnT9LyPn36sHLlyrzac8UVV9CvX78k8fCee+5h+PDhDBgwgEAgwIQJE7j33ns56KCDkrb97W9/S319PfX19bz00kvMnDmTQCAQf//nP/85f/7zn5k5cyYnnngiF154Iffcc09e7aoEWvHQlA3TFYz+Xx/e22FVuxL/ILf7Ly3PzFaKn0BnifJ8UYvVXUp9ieJfUPj/OlQMieKfJco3FhIFNIvC+i0dm13mD2X+Tgsyin81WY6Bg1nwPvPFUWbW8xjCJpgplwz5tc3FxMyxjoOBlcN6EhI2QVX8w6WLgVm6vUXTRvhcOknY0SEmpcn6pYfQbdAbGIZ+OC2Uas7vl4v2HuLbXvL6JeJiMo+x7MQbOe/zvvVXQuSLUSkxrRLiYbWiBb7KUOQ5d7GY2+Vwdt44U4t/mopjCFKDlZLfA5YvX45I+PE8GCyfuSORW265haeeeopZs2YlheDec889vPvuu/zjH/9g0KBBvPnmm1x00UVpAuGkSZM4/PDD+eabb7jjjjs45ZRTePvtt+N1XX311fF199hjD7Zs2cLtt9/OxRdfXJH+5EILfxpNHmQTBrd2UTBVDCxVCMwlGuVLqgOwXEJgqgOwXEJgqosuH1FOVnCG0VziW873W0H8ay06irjnCoFZ5hCDtp4wItdvTG3dvtairXPrttcw31yiWDWH+JZL9MuXSuf1S65HFRyTpMW+CtZZKlroKy/VeI41mjwxDBAZ7u+x5Z07d8Ywcn8I9OzZE9M0WbVqVdLyVatW0bdv36zb3nHHHdxyyy28+uqr7L777vHlTU1N/PSnP+Wvf/0rRx99NAC77747n376KXfccUeS8BdzJG6//fbsu+++NDQ08Ne//pXTTjvNd5+jR4/mhhtuIBQKVUzMzIYO9dWUDddUvLPzynbn9iuVWLhw4mtrphxhwZUILY6FA5czJBgqP0lIJqQp+WIXf7dfjLYO+S11so9c9Zcr118+Ib/VRLY8f9km+GgLcgmNdpmEl0pjGC7dh7xaEbdfLtdhayHb6Bvh1hLm29qiX760Zl6/fEOFTVx2ka/m5fZrt2G8HV300+G7pZEpPLcC59jEYdeNL2m3n6ZVMAyR9VUIgUCAUaNGJU3MEZuoY7/99su43W233cYNN9zAyy+/zF577ZX0XiQSIRKJpAmPpmkiZebPGqUUSqmM+QgBPv30UxoaGtpE9APt+NOUEdMVjJm7DW/t/M1WJ/6lkir+bY2uwHI498rtJozRntyAmZxvhmuw++c78tmu8zGszM65UkN+K+38K5V8Qn6rlYgwsZV/2yvhMizG7Zdtm63FTQcgXYu1i8fTfcgrSXn+jAq6bjsK7TXMty1CfLfeyTwS61K4WHxujGdX+UpGMaJiYl8lqKQgVy1inxb4iqMKzp+LxX+7HstuG/6fFv80FccyIZMvoJj01zNmzGDKlCnstdde7LPPPtx9991s2bKFM888E4DJkyfTv3//eJ7AW2+9lWuuuYYnnniCwYMHx3MBxnL1denShYMPPpjLL7+c2tpaBg0axL/+9S/+9Kc/ceeddwLw5Zdf8vTTT3PEEUfQq1cvli9fzi233EJtbS1HHXUUAP/v//0/Vq1axb777ktNTQ0zZ87kF7/4BT/60Y8K72SZ0MKfpmwoAVuCDvo5KB0/F+DWIAYmCnflEH+2ViHQX1xTNNWEAJVTXKu0+FcKrRHyW+lcf9lEukqE12bDpPB92WWcNTOR1ux3pRFCYQY2IdrLtPU+SNE2Yq00ihf/2jLMt5x15Ov2K9c+29tkHnHi9yJFDZsgw/2srKKfFvuKY2sR+qrhWFccRY3cQKbrTaMpJ4YhUBmcfaJAxx/AqaeeyurVq7nmmmtYuXIlI0eO5OWXX45P+LFs2bIk9959991HOBzmpJNOSqrn2muv5brrrgPgqaee4sorr2TSpEmsXbuWQYMGcdNNN3H++ecDUFNTw1tvvcXdd9/NunXr6NOnDwcddBDvvPMOvXv3BsC2be69914uu+wylFJst9123HnnnUybNq3gPpYLodpyTuFWRkrJurXfcXb9wzSJ0mcK02jKzdYgBlbK/VWpess5SUgixYiAuQSwXMcgm/iXq/6c+y6xbdnEv3zqz8f1l0v8yyX8ZXPgZX0vy8dsJsdftvqMLPVlEv6ytiGD8Feq26/UMF/ILRiVmuMv38k9Mtef+0tqzj7kcRwsN5/95LFOruOVpS256s+W5y97vZnfyyX8ZXP85Tru5cjvV07hrzXz+uU7mUer5/XLg7KIflrsK5yOLvS19fHVdFiUVce641+goXuPvPLWdVRiOsyqE3ZENW72XUfU1dPnuflb/bGqFPqIasqG5QqO+GRgXg8oGn+2hnyBsfx95c7jV6l6E3MDljM/YGJuwHzzAybmvDNdg70+2g3TbbmNlzsvYqZ9F/V+FeT7y0V7y/WXSkdz+1VTfjbpWnw7/wSk2/HuyYlky/Mnt6LY7vYq+pWTthT9HCw+NE5I+w5UkujXXnP2VaruTCTm5uvIefoqnDevPeEImw8avo/Tzr8DadoHhsiS4y9LDmtN6XTsb7CaVkUKWNWtkTaeXLDD0dHzBfoJQuUOCy6nGzBR/CunGzAm/uXrBFQo1jVsQBUg9lR7vr9Kh/3mE/LbmmRy+2Ujm9svE9WY2y8ft18uWjOVrBCKYOcVBYf6VpN4CW0X7lttlCqitbboly/tNq9f6v5RNKgViITPt6JEv/bm7CtXvR1RqCuVrVzcy4ZQku7hrxCqyj6wNB0S0xJgZRALMi3XlAUt/GnKhjQU/xnyXVs3o8OzNeQLLLcY2J5yAzrKyir+xcQvaSoWDV3ms33b5vtry8k+2mqij2LDfIupL/M22u2XVkcZuycMl6793itfhQXimCqnm14aKq9w3/aEMlRF8/xVEp3Xr/gQXxOXYarleitI9Kt2Ua7cdWqRzx8t9OWNicuwLW+3dTM0WwmGQeaYUx2LWlH04dWUDcsRHPPBoKx5fjSVQYcIt11diZQrLDhX6K+DiekY7PfeHphO+m08V5+ac7St1LDeUqh0yK9T5MdeuWfY1W6/0iiH26+Q/H7StVk55zSkW1goVLbQ2RjuVvBNLHsIceu1oxy09iy+rZ3XLy8qnNfPweZd4zQc7PxFv/YQxluO8NKOHoJbDKnHVYt+BeEIm9ndp+pQX02rIAyR9aWpHB1PHdC0GdKARX03trsv8R2VanMGZhMji2lXOV2B1RgWnMv5FzYMVmyzKmPerUo7/7LR1iG/uZx/rRXyq91+xVFtbj8AIVw69ZiLqJBbtTUpJdw3m6vQsVSH+OGvLOOvyibzyJdqmczDwGUbNRcj38+gcgo91VaXFvfS0cJeWTGUpF/z5xg61FfTCmjHX9uhhT9N2ZCGYu7AdW3dDE0WqtUJmKldhQqC5RADK5VzsJiw4GzinzIUX267CiuL6FPJsNpyhPxC5mMbc/5lEgATnX9++0l0/vmJgG2Z70+7/UqjNXP7xRCGpHOfT1t/xwm0VrivNKovN2G5UUZmwazY/ucb2ptvKG05Rb/WzOtXjlBhA8kg9Wl+br9yiEDVUgdooc8PLfRVFAOXQY0ftnUzOi56/CZhB4zMoQ4BrfxVkq3y6LrKxK3g7JdbK5YjOGH20A7xi7+mOihHCHNqWG8xob3lqCOVfMOBM4X9mo7B2H/v6Rvqmy/5hPxmC62NvZ9pnVzvAzmPaQg76VXMfsox429roN1+ref2KyTMF7xQ328+m1pwqC/ocN9Kkm2S5UpEH2QS2nKJfsJV8Ve2uhNf+ayXdZ+OjL9KaRfgCX7ldPrluAc52PzbmIqTI/VD0Q/U5QgLrUTYrhb9PHTYbqviCJu3ep6nQ33LReLYDUs9hlPQob5tx1b5VXOLW0tIBrX4V2a8yT3WZAw91GjKQbWKgcVSrPgnDcWCoV8RNoyShLVmFUx6+daRIKwVK/LlVUcexzRfETAVP/HPL99fqIN88S2HCJdIe3H75WqnKQsX/cAL9e3S7720UF9Z4Cy/Gn+yiXSqHX+nKETsy2edrOslCH0li30y5ZVHXdnrUzkFPxGR8ZcZiTAsMts/1DdfQcgv71u1CX1bA9nOQznPj6ZoDOUybPPbGEVEI2hSiI3f6FhWYRe1tVzreWIIgWFkeInihL97772XwYMHU1NTw+jRo3n//fczrvvggw8yZswYGhoaaGhoYNy4cWnrT506FSFE0mvChAnx95csWcLZZ5/NkCFDqK2tZdiwYVx77bWEw+Gkej777DPGjBlDTU0NAwcO5Lbbbiuqf+WiOuP+KkxEBnGEAzJI0AhhdoCcPYVQKcHTFfC/PlsAk0JNKFvbOdCUl3LkMyx15t9SQoTzCQNOFP8s4aAMxYp+q1veTxG2/MJf8+ljoviXKQdgrjDbvNqSo47U9vq1NVc4sKYwShELW8PtVw7RLxd+oh94ob6des71fU8KhaFyheDm7p9r5G5jucJ9S8nzl41sef4qFULsWmBmuN1n22e2cF8/CnX75RL8itlX2nrlnKU3332WmL8vqa4MobwGkn4y4XrLZ5/VlpsPyiPutaYQZvpcu1qI61j4nE8Dl35b/ltcfX5jpiNTwL1IhV2Uq1BaUE1ClDnH39NPP82MGTO4//77GT16NHfffTfjx49n/vz59O7dO239WbNmcdppp7H//vtTU1PDrbfeyhFHHMEXX3xB//794+tNmDCBhx9+OP5/MNjyfDRv3jyklPzud79ju+224/PPP2fatGls2bKFO+64A4CNGzdyxBFHMG7cOO6//37++9//ctZZZ9GtWzfOPffcwjtaBoRSZbYFVDFSStat/Y4J5kyktYmAEaKT2Vh0feUSqzqK89B2BCe/O4Rn9l1MxNo6hpUWLNsP5ZjYpBL58nLVmSkXoOUYjHt7JK8e8CnYYd914uvmkSA9n75lmwwk333l1ZYs62Rqp5/451ePX76/1Fx/QeUvJGYKxc24PMPHa6Ycf9lCfTPl+MsU6ptx31keyDNtk1fobI6vErncftUs+kEs1Pcsttn9IQwzfXzkEv4gP9Ern3bmEv68feWxTq5jmqUt2erPlu4j1zHI9r7Iss9Mwl/uOvNfv1zCX6Z6yjkzb7ny9eVdF+Ql9uU7Q6/jWrxVew5jmn6PlemHnVIEqUqIWeVy9WihTZMvZRorjgjwVp8LGLPqPiyV/ftkVVEO0bES11vM6ecqcCXSqGXjtNdp6N4Dw9gqgy2BFh1G/XAkNG/2X6mmHnHPpwUdq9GjR7P33nvzm9/8Jr6fgQMH8sMf/pCf/OQnObd3XZeGhgZ+85vfMHnyZMBz/K1fv56//e1vebUB4Pbbb+e+++7jyy+/BOC+++7jqquuYuXKlQQCAQB+8pOf8Le//Y158+blXW852Sodf64yiMgAZpYZM/Orp2MIduXCMRT/3mkVTjsOyymUTGNAC4L5Uco1VOgxroQrMF5PCec7lwsvkxvQNSSfDv8S15CoFDdg2j7aqRswUzsrNWFJjJCwM4p/lcTFKCrPX1vSEQS/fBCGQ/fBMxEZVJ6tzfVX7Oy+pbj+lKEyin/ZXH+ZaAu3XzGiX2u7+sop9EH+Yl/iA7iBwy7hf2Kkfka3tvMvG+3NzaepftpoPBjKYZf1L2Ko0n8gb1Wq8fpJEf2UqwqOguvoCFNkFm0LFHPD4TAfffQRV155ZXyZYRiMGzeO2bNn51VHY2MjkUiE7t27Jy2fNWsWvXv3pqGhgUMPPZQbb7yRHj16ZKxnw4YNSXXMnj2bgw46KC76AYwfP55bb72VdevW0dDQkG83y8ZWKfw5MoA0vF80QtFwX03pKAOW9dzS1s2oCvwEra1JDGwNUbwcx7gcYiBkFgRz4Sdg5QxvjYlvAlb2Wu+zfXKfcgmBxYbZpuYD9BMCSw35zTQzsJ/4F8JOc/35be9iprn+2nKG39YmYoi8J/fIJArlG9bbnkS/bG4/ACEUtQ1fZmlLfl9W25P4V6nQ3Gz1tvWMwtU2m3GuXH05qWJXX7aHdgNFb3dR6wt9lc7FVY1ChaYytKNzbSDp3bygrZvR/sh2jmOin6uQ4XYmqFYag4yTeKioyW/Tpk2IhHx/wWAwKdQ2xpo1a3Bdlz59+iQt79OnT96uuiuuuIJ+/foxbty4+LIJEyZwwgknMGTIEBYtWsRPf/pTjjzySGbPno1ppj/zLVy4kHvuuSce5guwcuVKhgwZktau2Hta+GslIk4NrgjjmhbQjizNVY7tGJzx76E8duCXRKwq+/ZcBWiHaOWplBiYSDlChuP7yuGyy/a+5Rgc8+Zo/n7QZzjR6y2f3IBp71eZGzBf8a/S+Ln+2qMjL19SxTw/MSgfwS+fCTyqSfCD3KIfgHQDrPjkfPrvcT+Gmfy9IV/Rry2opPhXrOsvF9nz8mV2/flRaNhuIVTa7Ve06Fetrr589+kqHAK83nk6h276DVbq9/R86qmWZPrtSPzRZKGDn0dHBHi972UcuvKu9hXqW27KdJ6Vq1pEvyYHZQZyb7QVYQVNRIZJ/lTQxAEGDBjA5s0t4cDXXnst1113Xdnbcsstt/DUU08xa9Ysampq4su///3vx8u77bYbu+++O8OGDWPWrFkcdthhSXWsWLGCCRMmcPLJJzNt2rSyt7GcbJXCn+uauJZJWAaoMxsJydyzasbQ7sDMOIbkpZErcKrtJ3PNVk253ZfFzCKciVQRMZfLLvF9Ybj8a4+FuAnXW2JYcC4R0NtH27oB8xX0fAXBduz6iwgzY56/SuPn9itV9Ctktt72KPoBCCNCrx3/gjCSx1cxol9ruv68/SWEUGYQzYoN+22LkF8/Cg3z9aOSImE5ySja5ZowpMpcfdnWMXDYq/HPLaG+bSX2dXDBR4M+x3ihvnt990T7C/XNRSueWxVOuP+4Mur0i07u0UF/MC4WYQov3NeP6PLly5enOf786NmzJ6ZpsmrVqqTlq1atom/fvlnbcccdd3DLLbfw6quvsvvuu2ddd+jQofTs2ZOFCxcmCX9ff/01hxxyCPvvvz8PPPBA0jZ9+/b1bVfsvbZgqxT+pBMkYtYQMcOEZCAuAuSTN6oQkTDG1iIWKgNWdmtq62ZoNDlpbfdlJqExUUTMJgJC+v0pIszo9ebNop1vbsDkfbSuGzBVAKwmh58f+br+2osTMFX08xPz8hX98hX7ChF3qiWfnx9CKGo6r0hpT/FOv9YW/1r2m1moyyT+tUXIbyYKcftlrqPkKtrM7Ze3eFfINm3k6suG4bp0d7/KXkc+Ql97EHUS27i1zZDaGrSHMdDGGEi6h3Ncb9VAlZ3LJLEPz+kX+yvDrpfvz5W41eJArhLyEf46d+6c1+QegUCAUaNG8dprr3HccccB3uQer732GtOnT8+43W233cZNN93EK6+8wl577ZVzP8uXL+e7775jm222iS9bsWIFhxxyCKNGjeLhhx9Oa+9+++3HVVddRSQSwbZtAGbOnMmOO+7YJmG+UNSkyR2ASA1OpJaIG6DJrSMsg7jKJCQDRefqykZIBgt+tUdsx+C8V3fAdrbOYaVpfdrL9eMqM+2VioOV9Ep7X5lJLzticMY/R2JHjLT3/QipYPzlh6OspJfvOpjxVyaytSFf/Or3XeaznxB2Xtu6WfpQLlzRNg9x/kJd5UU/Q6a/srcz+ZUJQ2UX/UxZnOiXr9sPQDoBlr53OdKpvpAdx1Q4uVTTBKShklyASe9lGLIyy8d6prrAc/1Vmkxuv0JExfbi9stIpvZnDQlWWUU/EZFJr4xEQ9qy57tSuddLeD9CkBcbriRCyudVxG15FbufUkndR6mvStZdZUJJRdna+18CERHkxf7XEBGt/P25iseyCrs5X/F146G90lsez+3n4ja5KLe9fJC0DsI0sr4KZcaMGTz44IM88sgjzJ07lwsuuIAtW7Zw5plnAjB58uSkyT9uvfVWrr76ah566CEGDx7MypUrWblyZTy0ePPmzVx++eW8++67LFmyhNdee43vfe97bLfddowfPx7wRL+xY8ey7bbbcscdd7B69ep4PTFOP/10AoEAZ599Nl988QVPP/00v/rVr5gxY0Yph68ktkrHnxGuQ5khwpE6TOEiTRNDuASMlrwGlZ41Mhft0VnomJJn9l2CU0nbhWaroFTxrhrFv9TrM1X8S3UFZnMDAjSbgr/vu4BmMz1TRrEzBSfXkb8bMN8JOJpVMC/XX1vhF+7b3lx/bSH65SOwFKBLZW1TWr1FHvJCRD8AYUbYZreHEaY3FkrN65evKJWP6y9GoviXbwiwn/uv3M6/UvL9JVItbr+MdbeV26+YPmUQ/Mrm6itxHYswB278PVakiZxTYrb2BCDtjVL7Xm0uxK35XBZDHsfLIsSB39yH5YToqFPQprrzylZvVPBrKUfz+rkKGZYoVyJl2383rCbycfwVwqmnnsrq1au55pprWLlyJSNHjuTll1+OT6SxbNmyJDfefffdRzgc5qSTTkqqJ5ZH0DRNPvvsMx555BHWr19Pv379OOKII7jhhhviIcczZ85k4cKFLFy4kAEDBiTVo6Lfnbt27co///lPLrroIkaNGkXPnj255pprOPfccwvuY7kQSuU5PV8HQErJurXfMWbpetZ1Wg+1m7CDW7CtZmwzjG2ECRhhAj4CWlsLgZUiJka0tlDS1iKlpvWpRjGuLcl2DeTKQZhrgpFs96tc9zI/ETC9jvT9+4l3fvvKNPGH7/b5LvPZT2quv0zbpub688vzlyr8edulr+e7LMNHbKYcf5nEQ8OnHpPcgl5biX6FCn2F5pcr5felQkW/VFpL9EulmD7nIwBmCv3NdE4ytT/bJCJ+wl/mevyX+wl/hbr9MoltfutnXLcMYb7ZBMhyCX+Z1y9C9GsFsQ8oX/hua4pDpeyr2kS1fGmNdmuBLxl9PJKolJBXUBtiLr/YuYnl9QtL3CYnnuPPoQZ5+8c0dO+RV/hqRyWmw9TddgAivMV3HRXoROOP397qj1Wl2Codf3aoDiPQjLQivhNRmMJJd98UEbrWHsTCcooxAUdw8RtD+PUhiwnnCO8ptwikhcS2pZpEvUqE65eK370g8ZgV4wa0HYNprw7n4XGfpc2inW3yjXK5AVPFv3wn4PBz/VUT5Xb9uULkNRtuNlpT9Cs0tDetXTm6WswEElC+/H3Fin7SCbDs/R+z7T63YZjpQnBBdRXpnHOj34ELORYxF2A2AbBQ51+h9VS7268c+QsLdftlrKfSol8xZAvNLXbbRHzEvogI8lLvqzny2xuwVSh3PdUmBuZLpjZVuyCY2u5S2luN56VU2lmfIiLIS4Ou48il13nXWxtQDUJeJlQe51M2OdGcfgo36vhTrsJtdpF2+xoPlcYIZJnVN1B9z3Adia1S+LNCAQJGZ8KGRBpuknemlNk+U+moYmEmwqbi/jFLCRcT01Ui5RCetHiYP9Ui9FWjyOdHTrEt5XhmEwJj96iIKXlk7DyaTIPEdK2FThKSrxCYjxMwX/IN+c17WZln+K0m2lL0y9fh53fLL1bgg8pM0lGqy0+YYQaM+hWmUZroF6OUCTPclB/B8zleucKACxH/Yvn+KjHhRznqLIuQV6Dbrxx1ZxL9ykqhbj+/HHS51slEvgnuXYVFiMNX3oolM4QeVoHQVw6hQmR6yPVrezWLgdna285EsKJo5320VJjDv7oZS4Vzr5wn7V3Iy4uY2y/6ShT9Ym4/6SoUiiq+elsfU2S+n1Xzfa4DsFUKf8GmWoIolCGJAJKN8Udl2wzjKqusAmAhtHexMGy1whfXCpHNgaVpe7Ev17XR2jP15ovfvaQUITDeTwVNpoj/H9uP38Qg8f3gZD2OlnAzugVDKpgk/pXi+qt22irXXz7bpYp+fqSKfsWQKvqliimpYl8hQl9rpIEtVejzwzLK91AE5Zstt1AhMHUikJgQmDhJR6IIGCv6CYCp7fcTEMuV4y+VTGG+flTS7VfoPguup8JuP1/RLx+BL9N+cgl8ebVPYTnNoMo3k3A1ChGZ2uQrCJbTZdcatHMxLC86TB9VZpE9tkYVXj8xyibkFUOCyJcq+jnNLjIicaXcOgWXDBh2FsefXZ3Pch2FrXIcBhsDBJVCGhJluESEixIS14gQcQOEjQCmTw6rthIDc1EtYmHAzT/Ut9qJCS9buwDYVmJfPmM6H6HPzTA7bbH43RdS95e6TrZ2xsW6HGKc33kIOILzo9ebCDTnPB6mcDOKgjGXYKwdVkq7Yv+nuv9iE4AkCoClhPx2VNefX7hvRJgZ8/zF8HP7pVJsGHE+Ib7xdbOIfon1tOW8TpUQ+hJRboClH1zO4L1vR1jlEwATZ8stlwiVKgRmIna+/NyAMREwlwBYLvGyUvWVk0Jz+xVCwSG+xeDzg0Ca6Fes4Ocn9pUQnuuIIC8NuJYjl1+P7TRnrydKIcJEPkJBpuTz5RQZMu7Dpy9pYmB7cwV2JDqM4OcRcSxe3u46Jiy8Glu2/XNPmwp5mfCZmTcu8kUn8UgV/ZRUuBFJiWmBOx4mLV8o/N7TVIytUvizQga2YQOd4svChos0XCKmg7SakgSD2IN8vo6iahUIEyk2RDKbYBg2lSf6tUGob6XYGgXA1hb7yiHylVvgK2U/TW5d0gzhmTCFk59Yl2Edx4A7xy5DmgpynLOgEfLdl59LMNEVWKwAGJvxN1Fga2/Ov1Jcf+VCCpGX+JeLQsXBTDn9vLpaytUi+rUGwgx7op9ZXtdfIpUMofXDzymYmhMwUwhwNvJ1/ZUq8rlWYa6/fCmHU6/QmXwLphC3Xz6CHxQn+uUr+GV7kPd5z6KZI5deh5WQbyxfYS8v0cDnIT6tHiqfWD5TW/0EwdT+5+UKBC0GlpNqFKTyINe1Y+EyYeHVUddfBfZfzcctj3tBKomTeXghvhK3yU0T/by/4LoSu8zNbs8IU2TO26vvVxVlqxT+Ao0GNU4AAMcOIk0XJ+hN9uFaISKu954RfUgNGLmdPokUE3LYHsRCyOFMwiXgGITN9tGXQsiVg02TP6WG7OYjvoVloKA2lYpMaXOzWxu/f/gRMMI5+5FTGFRgRUwaswjtcaEuw/hNDRMGTwTM5gAsJPw31V2Xun01uf6qgUqKiIkU4vbTtCDdIGYFhT+oTrdbqpCXmvevrVx6fqJfa7ejTdx++Yp+rSn4FTIBSJZjFhMoFIKIZWM6TaSGH+YtIuR4oM9Zj+tmdOSVDdNfXPRrW2pb8hICoeV46wfq4qky4ar8YbcCx6jBkmH8wn2rWrhLpQghL1+SjkNiHr8Ex188vDciPdHPkUjtYkvGNJLDHVLf01SMrVL4s7ZIAo4FeOKANF2cpk6EzQjSbqY54jkBDcPFFC5hGShY/CuUjiAWGo7F+W9ty51jl/mG+rYnt08usrni2rso6Nf+croAU/PIxch0DeQSyCop8qUKeqkUm1cwnzYHcnz2BRzBxW/34faDV6Rdb34hxEmCXYqTNXXykJgD0E8ALNX9l7p9c3T7RAGwFPGvWKp9ko9MlGPWYE1ulBtg2ccXlz3UV9N2tLpIWI79+dRRVpdfPkJdLtGvABEwk4ARUTavDr2K8fN/ljn0MM8H/KyiRQ5BQxUgmhUlEmbqg8/Db6wt2cKDM4p/WvQrjDYSutoqj55jBHh16FXxUN+qEvoqKOQVQpLLD5BhF6J5/WTYRYalv+gnIRKujj5UC9rx13ZslbKqaHawGqXn/NsUoHZTHTVb6jGbO0GkBte1CLs1RNwArjJzPvy3Fa4yC35VkrCluGXc0oz5/Rxl5vVq74RkMOurPRI0QmmvUvATgfMVssMykPRKREav11JeERmIv/yuoYgbiL+kNDO+sl2Hudrg18+0l6X4+aEraTJNXGUlCaR+17zfNeY3JpO2wUoKA3Z86ovXpYJxEdB734qLgF5dZlwE9Nu+WQXjIqDf+rFluaiGe4hbwY9WtwxzwxUYudkuiFT4tBtWmKH73YRRIdHPkNXp9vOjlBmb24Kyhde2NSn9EK7yd/mliH4iIv1z+eUS7FLXibjJol/q+5nq9Fmuwm6ayKGis2IqV2HLEMfMvdwT/Vzp/8qwbeorrR0pbfIe2nO8mpzMdcTC/cIyazsyts2PAsUOETD9Rb9ss2dWitg+s72qDZ9x0Zr4XQ+tiRVp5pi5l2NFmisv+mW6nvO4zitNPveR2D0h0fGnXIWMyHhOP9dRSaKfKsOEax0JUWMhajO8aorzpN17770MHjyYmpoaRo8ezfvvv59x3QcffJAxY8bQ0NBAQ0MD48aNS1o/EolwxRVXsNtuu9GpUyf69evH5MmT+frrr5PqWbt2LZMmTaJLly5069aNs88+m82bN8ffX7JkCUKItNe7775bVB/LwVbp+BNNzYiIwMIGDFw7gGvXEqptRIY6Ic0IbuI3cDMcd/1lo5KOwHJRiviXS5gRCnpssfmuU6SkRKb5PLi3Z/dgR8kbmKn9+Yqbfs6/2BhLdqA5SaJWLH+en+jnR75jXubw4hd87WT7vpLlXmIKN+uPDbEQ4ogboFejyeo6FzsafpgrN2kmJ2AmB2BiDsC2Cv8t1NVXrfeGYif4KEeev1yuwGJdg4khn67R9nn+ImblJvlQShBu7Ild+x1ClPdLfDUIftnOXa4cf6nt91vfb1Zfv377LfNzBlQit1+7x0fwSyPf0NtSXX4FuPv8hAblKjYHe1Mf+jbpp45S3Hsym7CSh9ghm5y8RCsjk+suRkIdylUFOQX91s0o+JWbctZpirYNn60CR1trCn25xDyFYHOgN/XhbxFZZvYFqsaBlw9lFTGjQl9s7CSG+LrNLm7Ec/y5jkJJRSTsCX9KKmT7OWStgynIKBQUcZ95+umnmTFjBvfffz+jR4/m7rvvZvz48cyfP5/evXunrT9r1ixOO+009t9/f2pqarj11ls54ogj+OKLL+jfvz+NjY18/PHHXH311YwYMYJ169ZxySWXMHHiRD788MN4PZMmTeKbb75h5syZRCIRzjzzTM4991yeeOKJpP29+uqr7LLLLvH/e/ToUXAfy4VQauuJEZJSsm7td5xzq0OTVYeqq0HVWES6mmzq2czmho00dd5AuNtqsJuxAk2YZoSA2Yxthqkxm8repvYgFvrhJwIGHMFFbw3g3jHLW31W32p92PejvQt++ZKvAJhJ6E0V2vxCfhPFv1SxLHH7bKJeNkHPlcWl4zWNSOb3coxVw/B/P3W7oANXvNuF2/dbRyjh0PhNLJJrlvLU6ydxjKbuNyYA+m2XVk9K/j4rpR2pgl7i9oniX+J6adtkqSPeDtLPh5+YmBrqmzq5B5A2uYe3Xfp6vst8Pm5ThT+/7VKFP9Pni3lq3XaKCJD6fq48f4kTfOQ7q2/8/Tb+klsJ8U86Ab766BIG7fnrsrr+2lr08ztXsYk9YqQKeannvBjhL1O/SxH+MtWZyfFXyPqFzuhb6OQeqXn+/MN3s+y7XKJfmQW/QsS+REEhYgR5bcdrOGz+z7EiPrP6ZjjuWcW9LNtlbFMG8hLrMqwTFwYT3k+rzyfUN2/RL8u+M9KWLry2EOHayNVX1vrK2IeIEeS17X7GYQtv9A+trxKxr01DkBOEv1hob2qIb7jJTXL7xUS/iFVHn+fm09C9B4axVQZbAi06TMM/jkE4jb7rKKuOdROfL+hYjR49mr333pvf/OY38f0MHDiQH/7wh/zkJz/Jub3rujQ0NPCb3/yGyZMn+67zwQcfsM8++7B06VK23XZb5s6dy/Dhw/nggw/Ya6+9AHj55Zc56qijWL58Of369WPJkiUMGTKETz75hJEjR+bVl0qzVTr+VKgJwkR/RazBDBoEG20cuxOOHcEJdUIaLk4YCIBrRDAqFD5WzGyk1SAWpoolpnAJW4q7DvmqTdrjJx5Vmxi4tQh+MYJGqKTQZlO4WZ1/2fLkxbaLCX5+4l42US+X+y8XUpoZBTwXO6sw6OcUNIzUY+ESsuDnB24ETFAtTsDE4xITAbM5ARNnDk6dDCRxNuB83X9J9fjk/8vm/suHcuT1y0f0ayvymeDDRfiKf1m3SXH1pU7QkM31V+jkDbHZYttKAKyE88+wwgzZ547y1tnKx6eY81EJ0S/zvtKXler2K4fo1yEoNZdfiYJf2gO7j5CQuI7lNjP+85/61p0m7pVJzFMFiBux32tEtkT0fm4+UyDDrif+uSpvwa1iol81hN22hfuvwvssp8jXGmKXLUNM+N/VLQuKFPqqKjdgKfj0I1X0SwzxlRGJE4qG+kZFP9dROI5CSoXaerU+f2wTRIb7l1XY81c4HOajjz7iyiuvjC8zDINx48Yxe/bsvOpobGwkEonQvXv3jOts2LABIQTdunUDYPbs2XTr1i0u+gGMGzcOwzB47733OP744+PLJ06cSHNzMzvssAM//vGPmThxYkF9LCdbp/DXuAllAq6LkBLTNgnaFq4dIFQXxNnSmbBwUTVbcB1JRMj4JB+J+DlrWoNixMJ8KEVQdJWJkNBvU4CvO4eTbnJtNQlJqhhYbUJgW5LPOSlHTshEsTOTCJh4XorNz5bo9ssk+iUKfX7CnirzJ7MbVT+Ez5Ok3/5jQqGL185EcdB1zaRzJvHCYwdsMljeWSKF18/U8+p3z0oVAXMJgH7hv9km/4j9nyn8N1X8y4dSxD4/t19bUXxIbe5w39S6I4ZIc/0VQsRIdv0l76vF9ZcqICatly2kvcICS7nFP6UEzZv6E6z/uiyhvpUU/Uo5tqluv0RyiX6+9ZUQ4lsIbe2cTEUZ/iJipuU5yeb2K5RSXH4FCH65xD5/11807x4GGzoNpPO6JRipnU/YLrWOXOKdLHuS/Zb6DJ98QMptEQdFgtgUEy+NgAmmSJ+4w5VZZ7csOby3GgS/RNo69LcMtDexLxHpwobagXRt+ir9estCuxL6SmhrTPRrCe9V8Vl83ehkHjIa3us6nssvJvp5zr8y9qMjkEeo76ZNmxCiZZ1gMEgwmP4cuWbNGlzXpU+fPknL+/Tpw7x58/JqzhVXXEG/fv0YN26c7/vNzc1cccUVnHbaaXTp0gWAlStXpoURW5ZF9+7dWblyJQD19fX88pe/5IADDsAwDP7yl79w3HHH8be//a3NxL92J/zde++93H777axcuZIRI0Zwzz33sM8++xRUh2rcgCKCqOmEAoRtYdmdsOpMajfV4VoOrhXBBZSQuEYE1/KS/scerI34bL8dZ3a/VEGxUCHQloIT/tud3+27inDCE0K1zFi8tQmBpR7DcpyDxHOfy/EYksGM5yTbGMol+sUEv0SxLSbyyUzTyQOqyDDfRIQRIdccSkb0iTVVKEx1DaY6Ba2IyaQ5Nnfs2YwTvXQlmZ2GkO4GjF3z2QTARME21QHoJwBmEv8KJTXXXyYKzgGYp9vPL8w3E34uvXyce+Cf568juP5ytsXnsii3GFhO8U9Jm1X/O4GBI3+HMEv73C+3SFWu45YtxDcf0S/V7Zev0y8TrR3imw1p+Yf7KlOUJsK1BvnmxSskrDdfwS+X2JfBzecYFh8NnspB627EcFs+B1SS6CdTts3uIkx/r3iBw8+B57cvbz2JETCSRUBIdv9F/88n51+a6FdC2HFVERc9Kz25RPnqL5fYVzYBrUinnjSCfLTtZMYuuA0j0yzalLOdVX7PJN1ZnCj2KVfGQ3yVq6LhvZ7IFxP9nPj/CjdS/f1tVYwsk/wY3vIBAwYkTZRx7bXXct1115W9KbfccgtPPfUUs2bNoqamJu39SCTCKaecglKK++67r6C6e/bsyYwZM+L/77333nz99dfcfvvtWvjLh0KTN2bC3bQKaXTzHsddFxEIIOpqCG62466/SFRVdgwXabhETMcTQhIeVgwfF2C+tAfBsFAhMGwp7jlwZZn2nS70lFsMTJ3goD3TVq7KXOTbLleZ/sJgVHSKTQSSGP4b+3E9LAPIhBlsYzPqgufyiwl+qWKfkjYqVfjzC/H1cwLmadlQ2JBBiBMxwU/G/o+Jet7+DENmFQMbDbh2FJiGF+rb0oeEcorzNiaSJt678hUAId0BmCn810/8y+T6SxTu8hULs4l92epI3aZQwc8vv182fAXBCk7yUYzrL5v4l+r6SxT/8nX9FUKiGFguMatc4p9hhhk06p7S6ylDvyrhlkwU/QoN7/XbJl+nX6blrR3imw+Fin9Fu/sKbliW/H75indFuvyKEvyyhe5G37PcZg5572fetvE6ZMI22QXFVFEv0wQifki//Ih5YNgtN7CYeBf72yLoyagz0PAX/3xIFAKFT37AqsrnVw5BJ7V9ZZ6goVRKFftKEs8qlGvPkiHGzb/BE7XKVWk7EPcy4XdPUq7EbXLjol9qiG/M7ReOTuoRE/0cFz2rbwqqxgDX/56noj+OLF++PM3x50fPnj0xTZNVq1YlLV+1ahV9+/bN2o477riDW265hVdffZXdd9897f2Y6Ld06VJef/31uNsPoG/fvnz77bdJ6zuOw9q1a7Pud/To0cycOTNruypJuxL+7rzzTqZNm8aZZ54JwP33388LL7zAQw89lFfyxhiyeQNSuSg3glHbBVVThwgGMe167DqTYGMQadbTZEikG0C6Nq5rETZqMFUkSQA0ihRcihUMS6UUwTFXiLGQsN16k8UNoYrkM6ikGFhpEbDc+f3KLfQlTtjQFiTnfWsZZ3Wml/zVVSZBWlyBiSJgwGi5nhLHSEz0U8pASiPu4FPS8AS+2CBNFPucFpefyJLnT2Vy1Vk+wpDrI/4JiUqs33BRUZEzURDMJgaauOywAf7XNZisBCReexlEwESSXYDe33wcgNncf5UQ//J19iVumxjmm0v0y3cij0xkcukVK/75bZcq/vm5/nKJf270i1S+zr9IdEzEBMBs4l+MahMByyH+KSVoXD+U2q6Liw71LVX0K4fgly2UF0p3+UHp4b2FiH7+omH+6+azXSLZxD9ID8H1E/8qKQj6TuoRo1TRr0DBr1CxL3EbicF3XXeg+7r5GEomCX3ZXH/Kpy5IF/Nk6nnyeTDPJdC4CXWatgHNXp8ShTrTNjBsA2EmO/mMACSKfzHi65hGi3iYS+yrJjdfpraUIgK1lhMwB8UKfkULfSWIfIXuU2LwXeft6bFpgX+obzsW8fzIOQkQJAh+sfB8GXf8yWh4b2KIr5Lpol84onBl9aWiaHOMLKG+Ucdf586d85rcIxAIMGrUKF577TWOO+44wJvc47XXXmP69OkZt7vtttu46aabeOWVV5Ly9MWIiX4LFizgjTfeSJuJd7/99mP9+vV89NFHjBo1CoDXX38dKSWjR4/OuN9PP/2UbbbZJme/KkW7Ef7KkbwxhrPlW6ThIFzvoU401iNqahF1NQQ2Bai1g0hT4VoOynCJCBcpJK4hPfeQ1ew9UBvFC39tRb6CYzECoSUFhy3oxh9GrcUp8MGo2PyClRADU11O1UI5xL5yCXyVPDa+4k708yFxllgHC1eZhGQwPvFHWAaIEMB1W1x+UhpIJ9gi9kkTHBshTYQyPSUDMCKFifHSTrlGDAluSx0q5RgliYWJAqHhtqgciYJgDjHQdgUnLItw+3CTiMj0AZrY4PTlmV2AsffTBcB83X+Fin9+5Bvu60cm0S9R8EsU+zKJfCYSN0e4doxSxb98tiuH+Oe3Tq6w30T3X8woa0hP/IPkmX59dBtv/WKff8owWUip4p+SFt8tGUf/3R5GmIXnjSzli3+x/c4l8iXSmoJfpuV+gh9UPry3UBFOpnxzThQC/QRA1XJ7T1pWrPiXd2hxHgJe3hN4+Ih+hQp+ucQ+ryyjzTKZN+xE9nn3VsxwJO399O38Rb5EgS9R3EtcP1HAS8zFJaX/ti3vJ/zTnHwyY8+rpmUgjBYB0DAFpqtQrolZC8L0E/U80U9E8/8lvZ8qrNmVmXgwL1IF42z4CYKFikltJAAWKvgVJfQVIfKVM7+eNCzmbPM9Dth4F4Ys7oMyLzGtvZAg+sXuObHJPNxmFzfihfkmhviGwy25/Rw3GuIrPUN2xOlYwmmpeJ+T/p/3qogfMmbMmMGUKVPYa6+92Geffbj77rvZsmVL3Cg2efJk+vfvz8033wzArbfeyjXXXMMTTzzB4MGDk3Ly1dfXE4lEOOmkk/j44495/vnncV03vk737t0JBALsvPPOTJgwgWnTpnH//fcTiUSYPn063//+9+nXrx8AjzzyCIFAgD322AOA5557joceeojf//73BfexXLQb4a+Y5I2hUIhQKCE3SPQhxrIEoebN2AEbQzaB62C4zdDUiKqxqGtUYJsooxOWEWZzoImIa2OGAig7RIQaAqIZEX2KCDjgGN7DUNCBsOkJ2fEyEHQhZHrDPOBCyAKhWsqGBEtC2KdsKu+hxZTeF3K/slDgmGBF77uxshLeQ5Pteg9jfmVXeG1P7AfhQEF96qQihC3F7/b5Djv6sCGkl/cvbCmE9ITBiKWifRJEzMSyldSPWFlZDma0T25KnyxXoISK9kPgCuW5URwrXrYdgTIdlAEBRxAxVEvZVCjhlcPRp9aA21I2HIuwpbBxsd30fuTuk4r2Q3gisRQIBa6pMKPHKFZWAqShsFyBjJUdgTS8fgRdiYyeD8sxcA2JMsB2DJzEsilRwitHok+Lta6Ml23XIGJJhAIrVpZgyZayKQ2chDJ2BEMKDClwLInhCgQC11TRcoY+AdJUBKVCoZCmwnKMaJ9UtB8KFS97/UjqX8RrixJeOWJ5YpvteGUHk3oVYbNl0+jUUatcNhjeYDEiQSIYEAkQDAUJu7WY0iDQHMTBwo6YBByLsDCxHYGBIiJMTCURgCMMLCWRphsvKyBsu9hKIkM2jgkBKXEFOKYiICWOEMnlQISglESEhTQVNVLS7BooIahxJc2WV2+NVDQHHAQQxKXZtBFKEVSSZtPEEA62hJAZxBQuSsLPdw5gqjBWGBxbYUqF6VhELIUlFYawW+4XwrtfBJUL0sQxwFLp9whluqhIwBNvLO/awojgGt5xcqP6aa0rCRtBlAH1MoJjehOUeGPPE/+EYxMxJZZwEREbFYggFMhILUagyRt7ysSxXFxpEZAK13JxXYuA8spCCoQ0kJaLcA2EEi1lQJoSEXNBWhGEawIKTBCO6d1ITBfhWBhGBAwQjoVpOPFyQDRHyzbKcDANFxEJoKwICLAiFsoK42J461gRQsKmJgLKjoASCMdC2RFcaSKkhWGFQAqEtFBWBFd69zgsh9jF7FoOpmN4J8FyiMgAtpKe0hEVr10TTNeI9skF10KiMAzHc6gaLq4hMR3LE5ENCY6NaziYQoITACPiOfciASwjjBAK5QRwzLAn7rkBMMOeJOoGMM0wSgkcN4Cwwp5hVdpErDBKCmzHQlgRXAwM10SYERxlgPLKhut9YAjT8YTsaNmNitrCdFGuhYFCGF4Z4ZWlayOEizBkWlkZDkIoRDiAMCMIoZBOatm7Ryg3uWxYXp+Ua7eUpY1hxsoWhhlBSQOlzLSyEJL+uz2EEe2TUgLDdOKpBAzDRbqW1760so1Q/n0S0T5JN4Aw0vtEJICK/hAnZQAjoRw7T1La8bIRaVnuSgvTjKCUgZJeP6T0zpMlYm0XGIZXNlRLOdYnnNh4c5HSwpDeclfaCFzPhSxtbFeC8MqGcOJjTAmvH44bwEzsn4jNOB7AFGGEFDjKG59KCVxlYxlhjIjAiZaVEkhlYRoRpPLOTWLZIoJUJgqBKZx42VbJP2C4ykKgMFVL2RAuror2SciksqNsDBwMoYgQwBARDKFwnQCmiCAthSO9fhgOuAQwY+fJtbFE9HoSNrYKI5VAEu2TK5BYWFYEFYlN3OTdb5VreGXlXUOxH2IEYOLgYoJUmLi4WIDCQuIQ7R8ODjYGLgZuSjng9QkXRwQwlFeOiCCWCiNcGS/jShwRxFIhVFjiGEFsGUIhcIwAdqQJiYE0bMxIc7RsYUVC8bLR3IQUJlKYWJEQrrBQEkwZQQoLKRWmjOAaFjIssWSI0bNvjgsiDhZCSQwkDjZCtvRJSBciEVwriOFGUK7CsWow3TBIiWPXYISaEUrh2DXQ2AQoXLsWI9QECBwziBlpQgmBa3hlVxlIK4AZafYe5C0bMxLCxUQZFoYT8n4UMi2MSAhpWiAMDCccLQvssONFFCmBFXIQdUFsQ2DjIu0AVtDCDuC13VCYtQLHCmAYElFjtJwnUyWcM0mEIJYZQeCNSYtw9DgllN0ANtHzhFf2jqCFRdinHL2GMJEYWERwXQMVK+PdL7yxZ4FttZTxxqGDjYhE4mUDmTL2ZMt4MxPKbsLYQ7WMPVR87IHAEQFsM9onaWOraJ+EhaXCPmUTS0X7JAwswt75EwaWivZJCEzl4IpoypNYWSmMcBhH2AgkpnJxhI2hon0SNoZK7pNwXRwjiCEj3nkyglgy2qdoGRSOEcSSIXCVdw2RcD3JUPx6smTLNWTJMK4r4uX49STDuMIEDEwVaSk74ZQ+2RDtR2LZMQIYjsPBc2/FMQJIDAwkYcfEkN54S+qTWYPlhrw+RcugcMwaLLc5fj3ZbrPXp2g5U5+kiJ6ztD5515ApI9F+iGj/UvukvLJhg/LKjhHwzk2sf8rBUNIr59WnZi+016zBcBuRYUVEBKB5M46jCLkBhNNIKKSIYBNpbCTkCEIqQPPmJlxh4ho2KhQijImw2ibKr2qJfqXN+F6BnHrqqaxevZprrrmGlStXMnLkSF5++eW4ZrRs2bIk9+B9991HOBzmpJNOSqonlkdwxYoV/OMf/wBg5MiRSeu88cYbjB07FoDHH3+c6dOnc9hhh2EYBieeeCK//vWvk9a/4YYbWLp0KZZlsdNOO/H000+n7bc16dATTN9888107do1/howYAAAhxy7M3bv4Rw0rh8Hju2K6Nydg3b/lj2HfI1bZzKu+8eMCC4mXBNiyuYFjN60CYBLFjSz21qBUgaX/Mdm6FobqUwueb8b22z08oxdPruBHlu85Vf/uzudQha245Vtx6RTyOLqf3dHKpMeW2wun92AVCbbbAxwyfvdABi63ua8j7048p3X2Jz5H688cmWQ0z/vDMDoFTWcOK8egIOX1nLMgjoADl9cx+GLvfIxC+o4eGktACfOq2f0Ci9p5emfd2bkSs9JdOZ/urDzGi+88byPuzB0vVe+5P1u9N/k3Vwvn91Ar0bvS/PV/+5O55Ag6HrloAudQ4KfvNkHxwmw59LOXPp2b8IyQO8NdVzwbi/CMsDAtZ0460PPJrvjmiA/+KQBgBEraznlv16/915ex3FzvPKBS+qZ8L8uuMpi7KIGxi7y1h//vwb2X+Idj4lzGhi13DsGJ37Wg92/8fp9+sc92WG11+8zP+zNtmvrcJXJObP7sc1G7+Z70VsD6LHF6+uMWdvSOWQScAUzZm1LwBV0DpnMmLUtAF0313Dem4MA6LsxyFnvDARg0NpaJr3fH4DtVnfi5I886+4uX3dm4n+8m83Ir7py5Oe9ANjryx4cPNeL+99vQS/2W+AtP3huX/b60js24/7bj92XeX096tMB7PR1N0zhMvGDIQz51uv3Se8OZcB3Xr9Pe2t7em/w+jrljR3pttk7r9NeHe6NPdfgzFd3x3YNOoVsznzVy2HQbXMNk97YBYBeG+o4+a2dAOj/XWeOe3d7AAZ/25VjPhzq9W9Fdw79xCvvvKwXB302xDt/X/Zl3znecRr1v/6M+p93PPadsy0jvuyLJVwO+M9QdlzqHY+xH2/P0BU9ATj8/Z3YdpV3vo96ZzjbfNcVgO+9uTs9NtQTFCFOemMkPbeYBEWI02buRbeQwnYMTpu5F7Zj0CVkxPvUu9Hg4n9752DgJoOr/qNQ0manDXDFl+sRrs2e61wu/nY5wS2d2X9DI2evW0qnDV0Yu2kdp29cSu3mThy+ZRUnbP4KOxTkqMYVHLNpJXYoyImblnP45m+xQzWcsW4FYzduwAoHOWftV+yzZQOGYzN9zTJGNG7BdGwuX7WUnZqasEI1XPPVcoZskSANblr8Fds0g1Amd325gm5hqHUM7l64kpqwRddmk7vnrANp0jfkcvPcDaAMBm2G6+Zt8a6hDYofz2tmz3UOI9cKLv6fg5QGe6+GaQskShmMWQWTFgqkNDl8BRz3pTfexy8JMH6Jdx1MXFjDIcu88onzOrHvCu8+FrtHhGWAH3zSwHarO8Wvp8HrvPvIme8MpO9Gb7ydNWs7GrYEcJUZH3vCDcTHXl2zzQ9e3QNHmXTZXMuJb3i/fnXf0JnDZ3mW+N5rGjjo33sDsM3KXox+17Pe91w2hN0/8Jb3XzKUnT7xLPUDFuzE0P/ugYXLwLm7M3CuNw62/WwUfRd4Y3vAJwfSc/EO3rbvH0qXr7yx3f+do6j7ZjAA/d48nuAa75ru/fokatZ712XPmWdhbvKuxd4vnY/RXI9wbLZ56TyEY2M2d2Kbl84jJGysTQ30men9smiv70Pv1yfhYhBYM5Dub50CQHDlULrMPtErf7UzXT441isvGUGnT8cDULNwb+wvDgMgMG8MgXljALA+H4e1cF9v+adHYS31jp/90fEYy3cFwHjv+4hVXv/MtycjvhvshfW+OQ02eL8+8sZ0nEbv+nNf/RGEOuPKIOHXLvfEv1Bnwq9d7gnAW3rQ/K+LAYhs6s+Wd873tls7hI0fnkXEgMjqHdnw6SSkAc2rdmfTf70vM1tW7MWGeRNxBWxZegCbFnj927z4EDYvPgSATQvGs2nZAUgB6+dPpHGFd77Xf3ESTau8c7nuP5MIfbcjAGs/PovwOu++s+qj8wlv8vq08v1LcBq9++c3s3+MDHdGuQG+mf1jlBtAhjvzzewfA9AU6sFXH10CQGhzP1Z84vWpef0QvvnsLAAa1+7Iqi8mee1dvTvfzvf6tPGbvflmziSUNFi3Yn++W+L1ad2yQ1i3zOvTd0vGs27F/gCsXjiRDSu9sbpq/olsXOP1acW809myzhuTy784k8YNXp+W/uc8mjd7fVr8ycWEm3pgSlj48eU4kc5IGWDhx5cjZQAn0pmFH18OQLi5B19+Gj1PG/uzcM653jnYNJjF86d6bV+/A0sWnoYhBRu/252vvvTG4Xdr9uSrpccAsGbVfqxYcbh3HL8ZyzffjMWQsPzrw1m1ej+vjV8dw+q1ewLw5bLjWbvBG3sLF3+fdZu9sffF0slsaBwMwKdLz2Fzs3dP/njJhTSFe2BIeG/xZYTdzrgqwHuLL8NVAcJuPe8uvdQ7B5HufLDsAq/t4W34YOXZ3rFuHsTHq37gtbd5ez5d411bKxt35b9rj/OO6ZY9mLP+KACWbN6X/23wZulbtPkgFm0+CID5G8exeIt3PX2+8Si+avKup/9sOI6vm70+fbT+FFaHvT69v+4HrI0MQhkw+7uz2Rjx+vTm2gvYrLqjDHjju0sJyXoiZoDX1l+KS4CQqufVTZd5Y0n24I1NF6IM2CC34c3Gc7xzIAfzTvNkb5yoHXjPOc3rh9yNj6R3npaqUXyKd79YyP58LryxN08cwjzDG3ufG+NZaBwAwCeB41hieffMD2pO4StrBACzO01mpeV91r/VZRprbG/svd7jEtbb3mf3zD4/ZpPl3QNfGnAtzWZnHBHkpUHXEXEsmq0uvLydlwtsc6A3r23n5eHbUDuQWdt719l3nbfn7e29c7mq2268t513Llf03IdPtvfO5bJtxvDZjt65XLTtEczd3juXC4Z+j4XbH4cUBp/scSFfDjsSgDkjz2T5YK+v/93nQlZuuz/KVXw65kes6eedv48Pv5p1fYZ75+/YX7CxYbB3DE64m6au3rX13qQHCHdqwLVr+XDqg7h2LeFODXx8jufAaOq6Df+Z6uXy3NJnGHPOuB3XkWzadlcWnHYjUsLG7fbiy5OvQknF+l0OZtn3/g8p4buR4/nqyIuQEr7d5zi+PvQspISv9zuV5ft4/Vu09w9YutPR3jnbbSrLthkDpuCjQVNZ0WtvCBjM7n02K7vuBgGDt7pNY02n7SBg8HqX6ayvGQABg5ldZnjnyRS8VH8lzWYXHAK8VH8lDgGaRWde6nolmIJNdi9mdpkBpmC93Z/XO08HU7DGGsJb9d44XGntxOxO3jj8yh7BB3WnetdQ7Wg+6Xw8mIIFdQfx3zrv2ppbdxhz67zPqv/WHcWCWu+z6pP641nSeT+wTT7oPomvakd6Y6/hTFYGd/bGXvfzWBMYmjz2TJE89ra5hmYjOva2uQZHBGk2OvPSNtcAsMnqxcx+VwCwPtCf1/t619mammG81ccbbytrhzO7lzfevuq0Bx/08O7rS7rsxyc9T/bGW7ex/Lf7RK9P3cYzt5t3bf23+0QWdBsLwKd9T2VJV+++/mG/yXzVxbuvvzvgXFbWe9813tp2OmvqtgNg1tAfsaHW+07x2nY/Y3PAy0H/yo430mx1wTGCvLLjjThGkGarC68M/wUAm4O9eW1Hr3+J19Oa+u3591Dvc2tV1914b6j3ubW8YS8+GjwVgKU9DuTTbb17x6Le4/ii//EAzO93NPP7eePti4EnsKivdz/8dPDpLO11IAAfDT2Tr7rvwzfdRvDusAv4pn4XZNhl9q7/x3ddvc+qN0dcxYZ677v+G3v8nM213nf6V/e+jeZAVxyzhlf3vg3HrKE50JVX977N61NtH97Y4+den+q35c0RVwHwXdcdmL3r/3l9atidD3a+CIjeI3aI3iP6jOGzYWcA8GX/w5kzxPss/t+2x/K/bb374ZwhJ/Flf+9z67NhZ7CsT3Qc7nA2K3p6E39+sPNFrGrwPn8L6ZNr1vDqAXcQcQM0213415H3IF3Fppo+fHz6rwk3u2zsMZT/nXUnjU2K77bZldUX3MyGJsX6Hfeh8YLr+HaLYvMeY4lMuRRNC8oQKDPDyygudcH06dNZunQpoVCI9957LyncdtasWfzxj3+M/79kyRKUUmmv2OQhgwcP9n1fKRUX/cBz/z3xxBNs2rSJDRs28NBDD1FfXx9/f8qUKcyZM4ctW7awYcMG3nvvvTYV/QCEUjlijaqEcDhMXV0dzz77bDyGG7yDun79ev7+97+nbePn+HMiYc65bA5b3E6YtomwA8guvTA61yC71BLqbBPp2kxjpxCNnULI2o00128mUtNIwGhC2iGwFLVEMOxmMF3PKWeCMNziHX/Kc7OFY2XpbZuv48/ELavjrxgXoxRw5qddeHzXjWwJpjsXa4nk4Y5Ldvw5JnHHH5aTl+MvqewInKjLr9aVBTn+AjGXn4JaKUty/Jl2c9GOP2G6Se6/1nT8BZXyXH5pjj/ycvwZloPpGkU5/gJmCCti4lquZ4iKeM6wkApGHX/R8NdIDZtNm7AbREaCbBC1RCK1uKE6tsg6RDhAoKkOJ9wZO2JRE7ZxZIBAxKCmORB3+SU6/lw7giPMJMefKSIoBG60LPHOfUC5uAjCtktAuUQMLxwzIF0ipkIKgU2EiDBwAhFqpCQkBCrm/jNaHH9Nluc2DBphmk3Dc/zh0mwKDFzP8WdLDKWoiyguXNrEPcOCKNMhbApMqbCFJGwKbOUiFERMz11gKJB2hOhhQ5kuluu5r2L3AmF45aB04/eITiqCKxTCdOLXk2G6BFLctIbdjBJQ46q0sWeJqBPQlti4WI4Rd/yZ0gQ7hJAi7vgTUiQ5/mpVBGm52K6KO/5sVyHAc2P5OP4CZgjheM4mZcoEx59McPzJBMefQji256gyVILjL1ZOd/wJx0bZEYLSiTv+El1+plTxcszlZ1phEuy7SY6/mMvPNsItiY+jLj8TN14mxfEXc/nF+uQtd8BQmBEbjEj0AyMAVgRbSZTjufwATMeOl4m6/IQU4NqIqMsPaWOZoWjZc/wpaWBHHX9Ktjj+hOPv+DOcZMdfzOWXWMbJ7PiLu+OijjhLFe74s8LFOf7cSA2r5pxGv10eRwhZkOOPSB59SnH8WVGnnOsmu/z8HH+JLr9E959McPwJx0py/Hllz8Hj5/4DL0Reyth4y+z4E+EAQkSdcimOPyPF8WeqFnccJDv+3AyOP9fH8Yfb+o4/YXptjzn+vH5Ez5OT3CfbjZbxHDxKCVyi7j836vgTCY4/Ee2HI1rKiY4/meD4k1kcf5FIi+PPTXD8uW5KOeoei0T8XVc+jj8z1AhRV5IVaS7O8SeNuJsnm+MPYfDhqMvY44NfYzuNLY4/6cRdfsJxcM2A5/gLJzj+HBfHqsGIhBAq2fEXIogZacZzKNViRpIdf1KBtGqSHH80NaKEgbRsRCiEMjzHnwg3Iw0TTAtCGRx/OJi1QQwDbOGibBu71iRYC3SqxepkYXcSuMEarBoDI6BwamoxTIkRIHrOHAxijr+I912FABY+jj/XTnL/2YSjjj8bmzCS6NiLld0cjj/MZMefS4LLD3/HH7LF8ReJZHb8pZQjIojlhHI7/lTUHScC2E5zYY4/p0odf7JtHX9SmHwwdBp7zn8Q220s0B3Xfh1/liV9z5PR3IQKe/dJ0dSIciEcMVEbNxNukoRkAHfTZppCsMWxiWxpYlNY0KhstmxuxhUmEWERagrhGBZ06cbkT7+goXuPvPLWdVSklKxb+x2d//N9hGzyXUcZtWwa8dRWf6wqRbsR/sCbCWWfffbhnnu8X+OklGy77bZMnz49r8k9YgPurB8vo8kNerk1auoQnbugutbj1luEO0Nj1xBN9U1EgiFCnTbh1DYiazci7BDCiGAYEtOMYBoR7NjDUpS2nl21mnMOljqTcbF5AFu2L/7YlJrTrpTJPUodU6Xk9Su136VsH8yQ2y2kkmd2apYBQipISAYJyQBNbh0hp5bmSCecSC0qEkQ0d8Js7oTp2FjhIIZrYjoWgWb/WaIcu+WYyajyrBKSRMloOfaem5CzL7ZeYk6/+PqJeQFj6yUco/g2qTkAoSUhVEK9sdx/LZOAeBOAQMtMwN4ybxszYb3YuDIS6osvS2hT7LpNvP5i6yVNpBEd44njNTb2EteLlRPPbyzPX2IuvsRtYnn+kt6PljNtE8vxV2h+P78cfTESc/2FhJ32fmqeQL+6Upf55fnzm+E3dTu/GX5Tc/1lrD8lX5XfOn75+PzrSl8PMudUM/P4xlFILsBi8t8Vm+vPyJSMOtd2RbQx337lk8fPLx9f/L0Mxzpzbr78cvtlryN9WSH5/TLXkf+62db3I9eEZal1Jeb9S83Jl7hu6nbCaVmQtF3iNknLU+rONKNvoTn+fMqlTOgRz/+VI7eft67M+r5KyL8V38Ynr1+unH5++fwSt4nl8HMTzkliXj+/dVMxLYEdMDCMlnx/dp2F3cnCrLWw6m2MehsRMDFqLS/Bbo3l5bMLFPHQW2jet0qvX0gewGLqr/D6Fc/vV2Buv8LrL+4Rv0Pl60sg2+zZiciwi4pO5uFN6qFwmxwijQ6RRpfmRodIWNHcLGlskmxuVjSGFVvCsDniHfZGB1wlCEtQdfWc/7+FW72YFdNh6v+bXfjbvJsW/ipFuzqiM2bM4MEHH+SRRx5h7ty5XHDBBUnJG/PGsOKiH4YZz8KrTM9VlQuR5dui32QTrYlsw/2bEkZ9HfR9YClV9NNoNMmYUnHAGs9V1qr7reIfFzStT6TAbxH5zDeRRadqM5Q02LhqpOdsrDDlmL1X0/5IFP2qEZHnQ3M5kMJkxYADkKJtv1NrNFsDUpgs6zE6fr0ZATP+au+Uqy8yEp3RN0Xwj2m3roSw9ES/sOuJfq6CkASnyB8NOyrSFllfmsrRbib3gNzJG/NFdO3hhSLV1IBhoDrX4dZbSBtcWyINL7xPmsU94CbOcLk1YSjYdXWAz/qE/OZlbVO2xvOhiSIkynCRweaERQZQQ7gm+6bZXH7g7/Tzym7SNpDg9ktcr1C3XwKWkOy5zuWDhhbvmuFjbcnm9kvEb1m+gr2fo9XPaVptM2WXi0wzAnc08pmJOIY0MjutXJGf8y+vNhmtI5QpZbLlu52o7/kFIosrtDWplNuvmLryr6PkKtoEITO7/rK5/XKt214RpijrrKKpKMNk1Taj6PvNB+B2zM+NVFTYRZgCmh3P9ReW/rPhlkpRs84WsU2l3X6asiGFyTcNI+m37hOMlIgDI2C2awdgUW2PzuYbc/u15/5XI9LK/FmYy12vKY12FepbKjGL6dQ/d6dRmfHBFa6TuLYkUuPg2C6RYJhIMEQk2Iy0Il6orxmGYCPCiiCMCKbpYBiul7Mm4WE2MWzOj9YUoNoy7LecDr+2DPGF8ogVpYT6QtuG+0J5BZtS63ISXK2OMpPCfF1l0ezWesl4I51wXQvpBEGa4Npe/jBpIpQJ0sCIBDCiDh4hc/8aqFKub5nyFOsXygsZBD7wF/m8xvguzxbaCy1u5KTw3ei6me5TScuj5cTrN98Q36T3E8ZbvmG+3nbp69YkrusT6ptY9gv1TV03n3Bfb73kc+sWaJDPJ8wXqiPUN9N6+Yb7enX6Ls4q9OQS//IVplor3LeYUN9ChK5C+pFL9Msl0pUjxBfKE+YL/qG+hYT5enUUtn62bQrFT+zLFuKb+n+q2y9122oI9YXqC/dNLcdCfmXi+0WE/KZulxjKmyn0N5VYeK9pCQxDYAUNhCmw6yyMgIERML1Q31ovtFeYAkxvHRFdBrT8tX2+o5RLGCyH6Fao0FfqvltBwKy2UN+i9gFlFVXbnQiWo++p95iY2Kfc2F+FjEjciMRpdnEdRTj6t7lZEg4rtjQrGkNeuG+zA02Ot9tYyK/RqTNnzNGhvjEdJrjoNITKEOoragkNe3KrPlYnnHBC3us+99xzBdXdrhx/5WJD/zCNrog/tLu2i2M7uHYk7vZzrQjS8v5HGghholwbpQyUsJGGi2GFcA07+WHbze6skZitJg6mhv1WWgisJczey+v4YEBjWRx/pQp+Xh3t7AMqA4mJyYvBSbnUCxUCnRJDyGOCjKPMoupKbH/sWIRkEEeZuMrEVRZh6c1I60ZfideZkrYnuEUT3SsAaSJtL09bougn8myf8jkXqcIgkFnc83ac8T2RKOj5CH2WVBz0reStPuAYomSxD3ILflC66JdILtGvUBxlxrcNYcfFPwczXr+LGRf/nKiYZyHTcvaV4uLLliewXEgh0sQ/F5Em/vm59CKGSBP//NaTIl0gcoX3oJlep/c3VQCMRcb6iS+J2pWfCJioBWUTAd2E74b5imcRszDxT0mTdSv3olufj7wJO/KgEqJfJV1+1ST6tRbKKFz8y+ro83nIzCb4QWGiX1kwRcvDsG22CDaJy1PLAK6Kh/vG3WlEH5zN6EXoypTlLdvGQu0ShYPkM59wIQctlg04iG2Xvwkh73NJmGb8IV2YLUJgovvQjK5jJNzOk/L/JVwAIkU0SxcFU96PVmPnyL0nom+bdlTEMwSGKTBs742Y6GdE65FhFyPg3bkFEoUBTU5LaHWsnYkOwNjfTB9TfiJhuShW4EulFDGqldyBImAWJP4V7IRNuG4K2QcUKACmCsRu6ue/ydJeBzJo9b8xfX54TCRXyGyrC4N5HofU45Xph4aY4Bf7X0YkMioAxjAtAyklNTUGhqGwLEWnGkU4ooi4EHFU/DcZV4IT3Go8VnkhDW8CTz90VDR07dq1YnVvlcLf5m6baJTJoXuxkD1lRMMCDem5dwyJEm7yA70yQIJ0gihDxh/KlTIQQiJli+jgYqcJgdLHWZT4UJ4tT2ApQpZUZtnFv0ShQLgwYEOAD/s3llRnNQl+1RaaWKoAGCNVCIxRqjMw4/6i7c6031RSr4GQbJmEI1aXG/+bLPrFrq/E6y4WhiulgZLeE4GSBpjRa9dbqaUMnkswG5ke/rM9RWYR97z/k7/Fp4buJuYXtQyXIZvhnb4gLP8fGzKJfVB+wQ/yE/0yTdpSKIliXlI5i/jntdH1ZvKDNAHQe987xn6Td0DrhPVGhJnm+nMx0gTFUsU/SHb/+Yl6MU2mXAIgZBcBM7kACxUB8xHSItFLPB8BUClBaFN/VO+PKff30nKJfsW6/LxtC6uzI4h+hVKo4AeFi36FN0qkuf7iZBLyUv9PFf/Aey+xnPJeTgEQkkPiEwQRo9bydQKKhDYJ22J916Fsu/JtTMNKekj3tpFeru7ofhNTAaaumyjwmaQLAHFhMOGWHxPpUom5AIWRYfynCCxGTPyLLhdRR58RMBCmAaZIF1LcqPiXKJCmraPSxZzkFbK814a0dThv6nWQB8WIf1CoMJcw3vIUARPHdcEuwNSxI0zWdRrMoNXvUOrY8RMGyyoGFin0tSzP7CxOdRXHRD+IHu8IGIYACwzDQEowLYmU3r0hHPZyAMacwLG/qqb950osJ8oAnwAV773285WgYjz88MMVq3ur9FCG6jbT1HkDoU6bvFfdZpxAiHCnTURqt+DUNuLWbEGZEaQZ9kQ/K5KcbyvFTQRRUUF5LylbBAhX2rjRddwER1KiuBFbP3E7P1K3K5RyTf4RMMJp4byOCc/uth6nyF2YwilLWG9HFf0SKXUcZMLBqugrdfxnenmhu95ri1sXdwp64bwmYRnEVVaa6BcjNgZMI+KF5JsRhJCYpoNphTCtEIYVwgg0xl/CDiW/go2IYCPYzf4vM5K+jR3y0gFkeBmx/UZfwoimDoi1yZDRWcMdTNNBCBltdwTT9PpiGC621Yy0Izy6cwRpR+Lj3hRufJ14br+Ua8IQblJIb1uJfuV2+yWS6CoNkSzgxQRA8Nx/LmbK+0aSEJhKSNgZRUHI7ParlAtQivRvSa6PNOUKERfrEon4PMD6rSeF/6Qbfut69Wae+EMayUJgcn25JwDJ1JakeoxkJ2A2InncSg3TofeOz2Fkij9NXT/P052P6Ge5ok1Ev7Ykz8PcamQS/YSrMrr8col+meorBZUqWCU+4Kc+7Cf+b5vJLrHU7TLUIwJmXJSKCVxxQcI0Wl6p7ye8kpLvR5eZwmHPRX/EEk5UKPPe94QzA7PWmxXXCBiYtWb8JVLq83vFtou9rE5W0susMbE7WWkvq8b0ZuStS38vvk7Cy+4SSGinF9Zr1dvx/0UO56BKcBmpsOuJT7H4QVe1zCSQ+gL/5X7rVZpK7LMNxMNiJrZJuhYKIeGaKXRfRe0PMFWEUcv+hGk4SddmuSjbRCF5hO0mXjfJ70lf0S8TIurSjYn5whBYNSZW0Avfj4XxB2pMgjUGgRqT+i4WnepNOncx43/r6w06d9bCXyKx74CZXsVw7733MnjwYGpqahg9ejTvv/9+xnW/+OILTjzxRAYPHowQgrvvvjttHdd1ufrqqxkyZAi1tbUMGzaMG264gcQMeatWrWLq1Kn069ePuro6JkyYwIIFC5LqaW5u5qKLLqJHjx7U19dz4oknsmrVquI6WQa2SsdfpLYRRynfHFy++bdSE+xH/0/Nt+WXWD/J/RcV/xKdSJkcXDHxL1NYcLmcX4WSLXefKeHAJfX8e/DmvB+4oDwOP6+e8h2Lcot+IRksOc+fH35iV7WQS5hMdPGlkijcuEnl5FtWWAbi5Xj/Y2MvdjmmjMXYL3Bm9IlbxZJ9Zjk/MsMnkd81nw+ZZgZPvd7NFAdg4jk2JRz6lcWsQaG0681vLKS6ffMR/KB8ol9bkuj8g2SHICSH/7asYyTlAGxv+Dn/oLTQXygs/Ner2/vrlwMwnzDgbHkAM7kRk+rJc/KPXKG/SpqsX34A3Qa8jVmmxHDlmpSkFNGvmHoLdfuVk0Lz+5Vln1lEv3zb4rustWbxzRC2m/YeZHb/5agn0QEIPq6nlJDGJLdSQlNjbkBXmCzqO45hK19FhBIiS1L3m+D6AzBro879HK4pGS5c1GgJM85xvaUIeiJB+IwTLRup4bwZ9hs/nmE3WYTyc/5lEkeKXS8XrSnEtaFjsFDnX3y7YhyAUJQLMHF/hezTFSaLeo9j2LevJof65jtm8sQv3D9vCsjVVyzCNNLuHZ77Nxo1hCcAJp7TxLQASnqpAGTK9ykV1MJfIm5AQaYpJoQqOKri6aefZsaMGdx///2MHj2au+++m/HjxzN//nx69+6dtn5jYyNDhw7l5JNP5rLLLvOt89Zbb+W+++7jkUceYZddduHDDz/kzDPPpGvXrlx88cUopTjuuOOwbZu///3vdOnShTvvvJNx48YxZ84cOnXqBMBll13GCy+8wDPPPEPXrl2ZPn06J5xwAm+//Xbe/Xv22Wf585//zLJlywiHk3WYjz/+uIAjVYTwt3jxYt566y2WLl1KY2MjvXr1Yo899mC//fajpibHFJlVgrSbkYkDzkoJ3cog9EHuvFuQ/FCf60E+RikCYGsJPrkm7BAKOoeMjHH7qWwNgl+MSoh+qbSVGJy470xkE/ng/7P35nFSlNf+/7uW7hmWYd8XWRQEQQEBWTSKBgU1GozXqDGCSNS4KzEG/UbxJtdw89UYc6PRJF+3e38x8ZrFmERRAm4EUGQRVEAWEVlmYIAZhoGZ6ap6fn883T3dPb1VdVUvM/V+verFoaf6ec6ppZdPn/Oc7NcQ1BQjTvwLqk00WcGoqGXF3g8xAqAptOZ179RQVIQPe99insSsW83mN/SM63imeB2I/j2xLDfJeJqALiFdClgp3iWTlfYn3sdeZPkl+79bJb5uUYriX7JyX7fIVfxLt78cP3UDkEwdgCGzAOhG+W868U8IBbOpAiGUlPdbMZJJ9CvGbD+3SXd9ZcIN0c9zEsp9RUCNb/IB6Ut9EwW+SOZfqrX/Yvd1KgBCUhEQwkKgotEQ7AKaJsXA2DljsBLmSRQEU6HYyKhKJiJm+/wWImEKwS9eFIwpl054vpPMsyiJxy+VwFfoclyvcVDuGyHx+rb1XKcCILQQzu3OGSH13CoNgc7ID85pYosdL4frxHan4Dxfk4nHTU3MKNAULFPEiYDQ8via0WUE2mSBZUqsNKW+KGD3Ve6xxx7jhhtuYO7cuQA8/fTT/OMf/+DZZ59lwYIFLfafOHEiEydOBEj6d4AVK1bw9a9/nYsvvhiAwYMH8/vf/z6aSbh161ZWrVrFxx9/zKhRowB46qmn6NOnD7///e/5zne+Q21tLc888wwvvvgi5513HiDLeEeOHMmqVauYPHlyxtj+67/+i//zf/4P1113HX/961+ZO3cu27dvZ/Xq1dx66602j5QN4e93v/sdv/jFL/jwww/p3bs3/fr1o127dhw6dIjt27dTXl7ONddcww9+8AMGDRpk25G8EmgkvkVawgtpFkJfdNc0a3BlK/pBerEmk4iQD/Evmy69hgZ/H3kk7T5uiX3N47X+sl67eFEC7IRMYp9TUol/QAsBMNrkI/E7kJZ+Tc3IvRovEGbpnwf3ebLnCR1eOfmYLN1N8by0GboFFPx0l18HkhG71h+0zPqD0hT/kpFsrT+3KAbxT46bm/gH2WX/pRL/VM2gx0n/kHPhrMNvKZEpi7DYcNKkw43nejlWyjk0paXwmET8g4Quv8nEP0gvAKbL/kv8f8zYqQRASCECxqBgoWMwZt/L4R/wIup/S+EknSgYS6LIoNgQMDKJiC1IkzGXreDX4m/pyLjen4/blJoAmDh3hGimrAhx2u7/telLwmuATWyLfxnI1FglMZtPDarRct/YcxIR9UVMo6LI2FpMgyE1EF4fNOaYWgkfQtSAKtcF9df4i8NN4a+pqYk1a9Zw3333RR9TVZXp06ezcuVKxz5OnTqV3/zmN3z22WcMHz6cjz76iOXLl/PYY48B0Ngov9vEJr2pqkpZWRnLly/nO9/5DmvWrCEUCjF9+vToPiNGjOCEE05g5cqVWQl/v/rVr/jNb37D1VdfzfPPP8+9997L0KFDefDBBzl06JDtuLIS/saNG0cwGOS6667jT3/6EwMHDoz7e2NjIytXruQPf/gDEyZM4Fe/+hVXXHGFbWfyhhYiUQlIXGS/+fHMYh+0LN3LVvTLJFxlEv2yGSM6lgNxKxvBL+qHCV/dUcHSoXWYCXdtsQp+0LpEv2KiTG3MWvzTFTNp1l+2Imas+Actr/V0Qp8aI/S0zPRLLxAm4qaw1+L5iQKbCed/3p4lQ46hBrIT+NLNWwjBTyf9GOU2sgQTRbxkJBP/Ekkm/pUqqcp9U5Es6w988Q/ka0PNF+fSZdBbWb0vZ5Nllm0ZcjpyEejczvZzklknVJGXBh9Os/4sPXnWX1LxzSuaK83i5oeEzMPIep3psv+SfVnP1PgDHJX/QssMtdhmIKkQqJiKzuaeFzLiwOtoIv4EKMl+iMlQ3pjYUCSWXMUHW2uXxa6PGLsWYgJO12pz4kebJIesv1hKVQBM9MFUdDb3upCT973W4n7L7IvzLMCsxb8sRcZMZc7pxL/Y58cKgM00i4SxXcRj51MTcgUiwqAIJH3VarMYmiC18icIAHV1dSgxa0iXlZVRVtbyO2V1dTWmadK7d++4x3v37s3mzZsd+7hgwQKOHDnCiBEj0DQN0zR5+OGHueaaa4BmAe++++7j17/+NR06dODnP/85u3fvZt++fQBUVlYSDAbp0qVLC98qKyuz8mPXrl1MnToVgHbt2lFXVwfAtddey+TJk3niiSdsxZWV8Pef//mfzJgxI+Xfy8rKmDZtGtOmTePhhx9m586dtpzIN4pqxX1wSCbuJZKN2Cf3y5/gl8040fE8Fv1S4Qt++SnzLVbsiH/ZkrjOXzqSXfexWYGJOBUIITdhL9v7M25dPgGaUkZAbcIke4EvlhZiXZEIftBS9Msk6iUjMevPTRqVQNIOv6nKcVM+nkYk84p8zFnM4p9P/rErvJk6SRt8pBsnU7ZdLiW/uZLMN6GrLdb5SykoJhH/Uu7vVfYfpC//jeyfTFRKKAVuEUdsB1tNQVEUFDVsizTlwi3msZKKZiKNX46aDmQpnKUV8Gw2cHCFUhf8XBLs3KbgAiDkLAKiKNH7zfF6eQ6yAG2t+2crUzf5cY3N6JPzq+H5kwuAic+Tdvru4YnCoCjzapGW0kRmRqYW/gAGDBjA0aNHo48uXLiQhx56yHPfIvzv//4vv/vd73jxxRcZNWoU69ev56677qJfv37MmTOHQCDAn//8Z+bNm0e3bt3QNI3p06dz4YUXxjUAyZU+ffpw6NAhBg0axAknnMCqVasYM2YMn3/+uaN5svoGnU70S6R79+50797dtiP5RFFDSX8xzLRQf7YL8oNzwS/VeE7HAvuin1PBz9TgzWF10f+7Kfq5XcrsZ/nlDy/Ev2QkXrexGYDJyHRfZCsQZkOmubK95+LuKR2WDj8sH4/bJ/Vcya77RGHaLcEvWTmvE8Ev2fPcJJtMwUIQUjQCovj8SiSd0Fas4p+TrD9VNek25J8xc4hWXe5rqSJv5b6psv68EP9S+2D/ealEulzLfe2Kf0lJEP/Ahew/SF/+G/tYhGTiYJK/JwqCOoLRta9DAET47TGdiJZN+XDS56UcMTlZZ+J5JOq1aO4RIZty31IX/SK4Jf55ICIWTACEnERATRiMqny1hS+O/XGQBWi78YfNLMBkAmBi9l+ExBLgCKmEwJYkWWPVJ0o2nXt3797dIuMvGT169EDTtBadcquqqujTp49jH7///e+zYMECrrrqKgBOPfVUvvjiCxYtWsScOXMAGD9+POvXr6e2tpampiZ69uzJpEmTmDBhAiBFu6amJmpqauKy/uz4dt555/Hqq68ybtw45s6dy913380f//hHPvzwQ77xjW/YjstxV9/9+/ezf/9+LCv+4j7ttNOcDpk3VNVCzfDpKZXIJ5+f/EUpF7Ev09hOx7Qj+uWa4aebMPOzTiw5+RCGS8sZlLrg15az/WLJJP5l29wD4sWvdNl/bmSsJpJJTHTqR7YieZwoZyqcv6UrS04+HE6bDz+e4RpPdk226ORbAMEP7JX25lOsK6Z1/rxs8AH2y31zm8u5+JcJN8S/uPFMnUOfz6DbkDdQk6lRHqGb3n1hcHqMDV2k7OybL5yKf05iTlXua5dss/7AnviXet/k4h8kyf6DrBt4pCz/jZBOCEzcJ8XfTUVnY+dLOPXQq2gZ3nYzlQ/LbL8k3zRTZAe2IA+ZeX5pr03cFP/AEwHQifgHLgiAYFsENBWdj/t+g9H7/tyytN4tEbAIBcBE8S4xCzBCKiEw/rlpRMFCZPcWMdn8plhRUYGqZj5uwWCQ8ePHs3TpUmbNmiXHtyyWLl3Kbbfd5tjHY8eOtZhf07QWuhdA586dAdnw48MPP+THP/4xIIXBQCDA0qVLufzyywHYsmULu3btYsqUKVn58Zvf/CY656233kr37t1ZsWIFl156KTfddJPtuGwLf2vWrGHOnDls2rQpmmKoKApCCBRFwTSLP0NBUUTKX/8SsSvygTOxKlvBz874+RT9AFTV4Gi5gVtJEKUs+vmCX0ucZP7FXgNJm3DkoUlELO3CX/jtlBtn42O213rsNaypUF9uoKlGiy6jma6/lKW/KQS/pJmCDgS/VGNBatEv6RhFmKFXaFI1+Ei1zp+bQp7TrL+M42bo9psu688NYrP+FEWgBetQYtrWZ8r6K2RpaaFIF7OT45Eq68/peOnIR9ZfMYh/KXFa/hshlRAYS6YMwMg+QlBuHYlv7pFirHSdbtOJgiJlW6w8CHE2yambb2vFzYw9DwTAXLL/wAXBLUJWIqCg3KghUw5sTj7lSwDMMIedLL5UQqD0K3Wpb1rffAgFLEQKHcbJaojz589nzpw5TJgwgTPOOIPHH3+c+vr6aJff2bNn079/fxYtWgTIhiCffvpp1N6zZw/r16+nY8eOnHTSSQBccsklPPzww5xwwgmMGjWKdevW8dhjj3H99ddH53355Zfp2bMnJ5xwAhs3buTOO+9k1qxZXHDBBYAUBOfNm8f8+fPp1q0bnTp14vbbb2fKlClZNfYA2TAkVoC86qqrolmITrAt/F1//fUMHz6cZ555ht69e8elYZYSdoQ2cCebz+n8dufIt+AHUtwwFXhvaPquvtmNVbqCH/iinxNiz1Gq7L9srot8dTS2Izg6EfVSEXdtqbBmWCU6LV/Is5kzVuRL5YdTwU+On1/RrxBioN11/kqdQqxHmI58lPxGUFSTrie8a8/BEqcYyn2dj+cs6y/V89Jl/ZWi+Nei7DdCMjEllSAYIZUQGItNUVDDYkT9svA6FjbLh2P2SSeYKbQUZdwQ2OwIPa4Jem1VWHC7XLfIyn+jY3gsAmrC5OT9b+bHJ4cCIDgUATPM5UQIlH5ll8WXKBD6yM9eqc6Ik1eyK6+8kgMHDvDggw9SWVnJ2LFjWbx4cbThx65du+LEs7179zJu3Ljo/x999FEeffRRzjnnHN5++20AfvnLX/LAAw9wyy23sH//fvr168dNN93Egw8+GH3evn37mD9/PlVVVfTt25fZs2fzwAMPxPn285//HFVVufzyy2lsbGTGjBn86le/ShvPhg0bGD16NKqqsmHDhrT72q20VYTNlQErKipYt25dVBEtJSzL4vChg5xtraI+5ktiuuy9RLzO5nMyR77W8EskUfzQTYVLP+3Kq6fElx5mN1bpNe2IxRf77ON03T87ZcHFhG1hLwWRe0U3Fc7bMIBlp+1ucb+lEvWy9SkbwU/ul73ol2pcO6JfqsftzJesq2/i85N19U1V6ptM+JNjJN8/5eNJ3opTrfGXaoxkGX9y/9Svx6mEvGTlvun2l/Pbm6N5rtR/y5TRlemtJlOjj0zCXyTjzzJ1qrddSo+TXo0r9c1mnb+MMWT4e7py30zCXKb4M/mWbvxU5b7pxkz3t3TCX7rq6vRjuvu8dCW/qbr8phor2ePJxL+UY6caN9WX3CT3dFLxD9J/Kc/2S342+4WSv8YZBFjX+XLG1f4JnVB2Y7npVzHiVNxrC6KgF+fUo+skFwGwxVgu+WhaGusHXM3Y3b9HS/GZxlOfHMaRU0duG3PaiSmx6QeACHbg2L3/omu37lmVr7ZWIjrMPuvfEBxPuo9CO/qqf2zTx0pVVSorK+nVqxeqqkYraxNxUmlrO+Pvq1/9Kh999FFJCn8RNDWU9Isd5CZA2RX4nM5ZLEJfIkIR7O7chFAyv0CWstDni3zukOk4phIGsz3fhRQI3RD5Mt0jlgIHuhxFVQz0NMJONr6k2yeZ4CefU3qiX6nhVoOPVOW+jsZykPXnVbmvHNvbrL9Iua+iCMoq9sSV+srxC9vkI1NWXiG6HHtR4uy05NeLzD9ILgDmPfPPTqdfsJ/5FyFZBmAiyebLZr9kWYIhEwWLbqFdzWVf2YyVi19ek826h27QFkS+ZHixVp+DBhXZkJjlWRyZgNC1YZfMsBVqTh2C02XQpZ4/y3s3gWQduR1nBaaZN+VyAUn3TSJW+Wv8xWEpApHiM6ni0mfVUubzzz+nZ8+eUdtNbAt//+///T/mzJnDxx9/zOjRowkEAnF/v/TSS11zzitUzLxk7qWitQh9iZgqfHDC0ZR/L0Wxr1hEvnTHLl/lrfkm22Ofq0CYD+xk8qWiRRafChuHHIjfJ0eRL5ZUgp8cozhEv1SkijGbbL9iIh9dfVOJcqmafKTDqciUrslHsaCoJp37vV9oN1wn3+sQphfb0pf7Fov4B6lLf93o9FsI8S9CRhEQnIt82Y4V0NCAE0PvQwBAS54Z6NSvVPt6SS6CXFsV85xgo8Qzp3FdHNstIdCR4BZGEyZDD8UsZZEoVOVbCATH5zJRDLSdFeiCIJj1mG2UkErKfgCKwH679VbGoEGDovYXX3zB1KlT0fV4yc4wDFasWBG3bzbYFv5WrlzJv/71L15//fUWfyuV5h6qatoW05ziSGAskNAHuTVLCJgKl2/ozp9OO0hIEyUn9JWCyOfG/vkgn2Kk1+fNbkmyGyIfZC7XLTcF560byrJxOzD05B/K7Nw36YS++DGza+KRbv5CZPolE/3skKqzb6p1/uzgxrp5qcp8IX2pbzrc7PBbzFl/WflgBti/5d/odfIfUbXczncidjsM55N0GYVedPfNZa2/UhT/UmYDei3+QdLS31gRELIUAsG5yJdiLIMAqyuuYmLdH2Spb6pGIk78SrWvT+vDQ8HOK5ExVgh0KxsQ0gtuhhJgzYA5jN/9AnqyzzMeCoGZfGv2wb2sQHBREExHqS4r4DFmJuGv+L7WFoxzzz2Xffv20atXr7jHa2trOffcc70v9b399tv59re/zQMPPBBdNLEt4YXIUioZfZkwFcGW3vWgGq58pvJS7CsGka8YBTu3sBtbMWct5nqtuCHyQcv7wVIVdvY5jBVWNLwQ+eLnzz3LD7xt5GFX9Es2TqplIFKRq+hnF7ebhrjdrMOrrD8vM9OyKffVLZMO3TehJLnGvO7ua2gi7Tp/xYjb3X0jpMv6yzR2WxX/IMW6f2rCNZWFEAj5yQpUEfQLfYqqieRfAlOUCDues1QpdNlyKVJCWYFelQVDvNimCou+dRtQRZYvzMlKV0soKxBSC4KQ49qBsUT8839oiMNQ5WfFZKi+8BeHECJpI92DBw/SoUMH2+PZFv4OHjzI3XffXdKin6ZYBRNdnGQaFqvQJ8eMiUeDDf1Tl/pmojULfa1Z5HMDJ8cnnVjo9fGOndvuXE5EvmSomsGOE/ajIr/zpcJNka/FfgUo7c21kUe6MdKJfqmae9ih1Dr9piv1zXfWX+axMzf6yAVFtajovd67CXIgn9133cKrkt/MY7dy8Q/SCoARshICoWBZgSomg0Jr7Y2Vixjokz1eHr9CiIollBXolRCoYXFCzQeOx5KDuCcG5jsrMJF0oqATRLqO520QK43w19bLfCN84xvfAGQ17XXXXUdZWXP1mWmabNiwgalTp9oe17bw941vfIO33nqLE0880fZkrQ2vyoVLRuhLIGAqXLW2N384vYpQlt/AvBD7Ciny+QJf/ijksc52brdEvmT76IbK+R+MYMkZm6Olvl6KfNH904ljJVDaa1f0Syf42e3oa4d8rO+XC+kEvGJc6y/XJh+WGaDqk2voPep3rpf6ek2m2HPJwEtX7pvLuLmKf+nHbsXiH7T8JSgLIRCKKyvQIMDKdtcy5fj/oJtJPhM7FQNTdBH2KRKKdU3GVi4EGkqAVYNvZPLu30RLfV3pGFysYmDUF19lKgShTBl/PnTu3BmQGX8VFRW0a9cu+rdgMMjkyZO54YYbbI9rW/gbPnw49913H8uXL+fUU09t0dzjjjvusO1EocjXOn+ZKFWhLxFTEXxwwhHMNF193Rb6fJHPJ1uyEeE898Gl5htlSiOKpvDZ0C/RtQa0LDppy7HtH4Nsm1/YEf28zPID90p7nYh+dvEqAy46fgF+Pk0rsBVwrb9cMHSTTv3eT1rqC7mX+5bqOn+5jZv+mHi13p8cu/WIf7FkJQRC0WcFqpic2LQKFdP1xiF5xxcbc8crIc7p/G754PK4ToVAVZgMPfwuaswPjo6Ftkx4KAba9s+r7FVfUEyLqShYScpXAQR+RjbAc889B8DgwYO55557HJX1JkMRwt4n8CFDhqQeTFHYsWNHzk55hWVZHD50kIv0xRzzQCSL4GazjXQUWujLFjfFvkIJfaUk8hVa4DLs/56QFYWOyy5uinz253Z2rOx2uE3nfymX9mYq600n+qXK9kv5eIq34GQZf6nGyKWxRzoRLl2pb7rnZfrFNv2c6Z+bKYMsk/CXzrdMwlsgw+2RTviDLHzP8Pd06/xlEuYynZNMvmUaP12Tj8xjp/97OvEvU9Zf5rGdPTft81L4lFRISzNWpi7AyYRAO/PGkeX37uzGyu5rRVIxMBnZzJntF+1S+ELuC4XOKPS59Wp+F8fNpTQ45Ziexe3eL2Ge+Zjt/IH2HLlhGV27dUdV0y3O07qJ6DBrOvwblnI86T6qaMf4+j+2+WPlFbaP6Oeff55yK2bRzw5BtSmnzSs0xYjb3BnTjNtyIWAozFvZl3amha6Y0S0XytTGuM1rEo+HG8fFS3SMFluhSeaTG5snvsZcp25v2cyVSJnS2GJL6buhMvOd0ykzBbpixG0Z48ZMutk9Xqlwq7Q36eOpjl2eSnudiH52yVeZr9fZhqWGmeYTkWUG2LPuJiwzkHqnAmJlUPYKuQSgleGTZqa/p8PM8DtTLmOne65Id62k8ClZeW26sYTavCX9u67GbSl91ZS4LSlqks3xWErLLdlYAbXFFsEgwFtl38UgILNyYrdkJO5jZz83NjcJaPa3fMzhdK584eU5KeT8Lo6rBLW4LYKhBHlr0HwMJWh/TE1psbmCprbcHJLMRyebjztYioKZYkuVCZiJJ598ksGDB1NeXs6kSZP44IPUa1Z+8sknXH755QwePBhFUXj88cdb7PPQQw+hKErcNmLEiOjfd+7c2eLvke3ll1+O7pfs73/4wx+yjquqqoprr72Wfv36oes6mqbFbXbxJjWnyAmqTRgeZvy5gRfZfHJcDzP6NHhn+EGMHAv085XVV8yCXjKKQdQrNrxsCJMrmXzLNZNP0RQ2nrINK0NKi90sPjmPs+NaiCw/KHxpbzrBL+3filh4S5ft1xZRVINOJy5BSZXOlQVedibOlUy+ZSr3TbfWXzbjp6NQ6/1Bfst+IyQt9U34zpuqHDiRbMqDIcsSYTfXCoS0JcIKFqeIf6Im+9zjZumvW9gVBdz2JZ+CnJO5CpHFWOiOzvkoD3ZpjUANwejDr6EKd75nlEKZsBMci3++aBhHg6ZiKsmFXC3dr2opeOmll5g/fz5PP/00kyZN4vHHH2fGjBls2bKFXr16tdj/2LFjDB06lCuuuIK777475bijRo3in//8Z/T/ut4smw0cOJB9+/bF7f+b3/yGRx55hAsvvDDu8eeee46ZM2dG/9+lS5esY7vuuuvYtWsXDzzwAH379k3a4dcOtoW/66+/Pu3fn332WcfOtFa8EvEyz+vNG22qL99ChZ09kqfupiNfmXylQlsT+IpNvPPKH7tCX6bMPaEKqnodin9OnkS+VAJf0vFLvLQ301p++RL9Sq0jcGtDUQTlXXeQ7nbJtM5fJgq9zp/X4l8ucxdqvb9Mz3cq/kXIJAJCdkJgyv0cioFurhWYerzUjUNUBL3EDggoLdZ8yrVxiGPcFI0KLRTmm2w7LntNsYmBuc7t0ngqFr0atkJQAdzrHBxLXsXAZORRIPRJj4mCmXItP/uv04899hg33HADc+fOBeDpp5/mH//4B88++ywLFixosf/EiROZOHEiQNK/R9B1nT59+iT9m6ZpLf72l7/8hW9+85t07Ngx7vEuXbqkHCcTy5cv57333mPs2LGOnp+IbVn18OHDcdv+/ftZtmwZf/7zn6mpqXHFqWIjscTW7ua9f96Vp2ZTnhghYCjc9O4JBLL44O9V+a5fqpt/3C6JbQ3+2CrZTSjTzbZct9yAi/45hXIjdVlsy7nsx1uuNLbYMs6ToXy4lEp7U6FhpV3Pz6noZ7fMN5f1/XyyxzKC7Hv/DizTfimUWxgZFjAs5nJfKO6SXwdJBlk919Kbt6TPzaJ0NrbkN23pb7b7ZVEinOhXvkuEDbWMJdodGLS831KVB8fhRTluIct/Czm3VxRLCXEhj53X12iWGEqQNwcsSFrqm1genNhAJBfyWlKbrHTYyeaTM1a4pDfVBlBXV8eRI0eiW2Nj8u8eTU1NrFmzhunTp0cfU1WV6dOns3Llypz83Lp1K/369WPo0KFcc8017Nq1K+W+a9asYf369cybN6/F32699VZ69OjBGWecwbPPPoud9hoDBw60tX8mbGf8/eUvf2nxmGVZ3HzzzZx44omuOOU1+RLkvMBLEStX0cNQBa+eVpW01NeLrL5iFvQSKSVBrxgy8IrBh1iclOUmw82uuqaqsHr8RswUqSheZ/JF57GRZehlaW9ryPLL19p+PvZRtBDdRv4JRXWnm3MqMmX9GZpI2+QjU1aepaRv9NGaS35zmTvXrEFoFv/SVYtnygaMnS+6Xwa/Mu2XKP6lahqSVVYguFIirBJivPgzqmoQlwGSRQdhsNFFOJHWktVXihmFflag+3NnOZ4qDCYceDHrUt9U4p+X2YFQ+CYdgDPxzxcM4zBRMVPmnsnHBwwYwNGjR6OPLly4kIceeqjF3tXV1ZimSe/eveMe7927N5s3b3bs46RJk3j++ec5+eST2bdvH//+7//OV77yFT7++GMqKipa7P/MM88wcuRIpk6dGvf4j370I8477zzat2/Pm2++yS233MLRo0e54447svLj8ccfZ8GCBfz6179m8ODBjuOJ4Moaf6qqMn/+fKZNm8a9997rxpBtknwJWV6JKkKFQ92OJPl9NndKReQrdoGvmAS1QvvilpiXCjdFvmQIVXC4a63r6/Glw1EpcYbnlFJpr1PBD5xn+fklvsWBogjKOu1JW+oLmct9i2Gdv0KLf2l9y7Hkt1Dr/WXz/Og4WQiA0CyOZeqkGxH3Ms2d9X5hITBT1+BsRcq473fpjl/MeKop6MaeJGOlLg+OGytBDMy6g7AdwcxtESLbub0QP/ItimZLohhYqI7H+Vwv0uu5k5xrFUG3xtTZTNlSKEEQikQU9MkKQ9EwlBTXSrjUfPfu3XHr2ZWVleXFtwix6/SddtppTJo0iUGDBvG///u/LbL6jh8/zosvvsgDDzzQYpzYx8aNG0d9fT2PPPJI1sLflVdeybFjxzjxxBNp3749gUB8g7lDhw6leGZyXGvusX37dgyjuEUPLylGYcpLYSVZBl/AULl+2XCenbaNkJ7bN5uiPJ5FLupB4cW0RArtj9fiXix2hb5c1+PTQxrn/XMay6a/jRGw32HXE//cyP5zoYEH2Bf9ijHLL5Pol67Mt1gp5oYm6bCMIJUf3MnA8b9A1ZtyGyuDgOR11l+hySwseieOuiXepXs+tC0BMOJjJv+AZhEww5BNahlLuZ3p1n8RIM39FhECMzQjihUCsxYBM5FKhPBagCi2efMxd4RUJcH5FgSLKSvQhXlDShlLTvgB5+/9KQGR8JnRhfG9FgQhh8YbMfjiYX4wkR18k6GEfzitqKhAVTNnSvbo0QNN06iqqop7vKqqyvG6esno0qULw4cPZ9u2bS3+9sc//pFjx44xe/bsjONMmjSJH//4xzQ2NmYlZibrOJwLtoW/+fPnx/1fCMG+ffv4xz/+wZw5c1xzLJ8Uo8hkl3yLfMkwNIuXJ+/EsLE6eTEd+2IX9gotoqWjkL7lU9yLxWuhL9MxNXSTFWetwtCb9ytWkS/b5xRjaW8hsvyyGdsnvyhaiJ5jnkPRvC31jeCX/Kam0CW/kPn5bVEAzNY/IKMAqBPiTF5AUw2EkoWomKUACDlkA2ZLsQlz+RAzCjk3pF8jMF+iYAmfd100cVbV0+giicjuYVzp1gt0UxTMFjfXF/RFxNSkK/VVbLafCAaDjB8/nqVLlzJr1ixALkG3dOlSbrvttlxdjXL06FG2b9/Otdde2+JvzzzzDJdeeik9e/bMOM769evp2rVr1hmMbmtrtoW/devWxf1fVVV69uzJz372s4wdf4sFtcgbPqSjGAS+VAgFDnVM/stsMRxvX9jLjUL7VyoCX4vnZymQ2T2+5WojRqdGyj3wxY3n2cr+87P8sh47Qilm+5UyiiIIdKjOWOqbLfko+S128S8dxVzyG/EPfAEwF/+AlAKgoggqqLY/pg0BMDp2tmsE5koJC0Ouz52v+aHwWYKFOgY2zruCoJOx37PxnZCPLEEviRMRS6XhTp44rgQJpXjDCSRpMJOJ+fPnM2fOHCZMmMAZZ5zB448/Tn19fbTL7+zZs+nfvz+LFi0CZEOQTz/9NGrv2bOH9evX07FjR0466SQA7rnnHi655BIGDRrE3r17WbhwIZqmcfXVV8fNvW3bNt59911ee+21Fn797W9/o6qqismTJ1NeXs6SJUv4yU9+wj333GMrvu3bt/Pcc8+xfft2fvGLX9CrVy9ef/11TjjhBEaNGmVrLNvC31tvvWX3KXhA130AAQAASURBVD4xFFo8AW8abYAs9f3u0pP57fRPcy71dUoxi3vFcO7TUQz+FUrcg9wFvhbjuSz4JWbzaSGdaa9fxNsXvoYZaOl7vrL4HM+VIW43RD8vsvwy/T3Xjr1uiX5+R193sYwg+1beS98p/5cyJX2pb6Z1/rIl16y/fJBLWXGxl/yCLwAm3S8PAmBIBHmDe5jBowRi7jfbAiDYEgGj8+RLDIS2KQgWw/xtNUswyZwhpYzX+z7Ihbv/vWWprwvjA54LgtlQKqJha8dAxXAp4w/kOngHDhzgwQcfpLKykrFjx7J48eJow49du3bFlQ3v3buXcePGRf//6KOP8uijj3LOOefw9ttvA3KNwauvvpqDBw/Ss2dPzjrrLFatWtUiq+/ZZ59lwIABXHDBBS38CgQCPPnkk9x9990IITjppJN47LHHuOGGG7KO7Z133uHCCy/kzDPP5N133+Xhhx+mV69efPTRRzzzzDP88Y9/tHOoUISbPYKLHMuyOHzoIFeUv8xxu2V6RSCKOMErkQ+SZPEJ6NCoU19mxDVh84piEvlK4fooFh8LKe6B+wJf3NguZLklkrJ8V0BZQzmN5Q2gOCglzqcwaOPaK9UGHm507M2n6JfR3wxfltM9P10WWeZ50/45o8CiZdIDMvw9ldAmBFhNFajBOoJZfP/PRvjLRtTKZuWMTOJfJmEu0zHJ5Gem8TNl/aUbP9Pc6bL+IHPWX7bCYrbr/rk9HmQWAKNjZvnFOtu5s94vizUAIXv/AIQJDVRQTh0ploKyPWYcDsTApPN7JQamo1AlhMVQulhoHwrVXAQ8jV2g0KBWUG7VoST7/OD1cS/0ebWJXQFRBNpT8+036dqte1br1rVWIjrMC91uI6Q2JN0nYJUz59ATbf5YRZgyZQpXXHEF8+fPp6Kigo8++oihQ4fywQcf8I1vfIPdu3fbGi+rjL+ZM2fy0EMPMXny5LT71dXV8atf/YqOHTty66232nIkn+iKVTQiiFvkVeBLQ5NHmX6FFvmK/XopRv9aU/Ze0jk8yHKLkPVafXpj9pmF+RAGHV6HqcS+TL64WdrrVZYfFJ/olyul2qAjG9Jl2SmavC9DGqTppwNkl/WXTUZbpqy/bPBLftOPD+5l7HmVAZiN+NfaMgB1GjM2AbE1Ztz4Sa6ZYs8MjFBsGYL5mDuTD20hS9DT2AW6aIRUnx+8Pu6FPq82sZ11qDvPUmyNGGgYJD8mSorH2yobN27kxRdfbPF4r169qK6uTvKM9GQl/F1xxRVcfvnldO7cmUsuuYQJEybQr18/ysvLOXz4MJ9++inLly/ntdde4+KLL+aRRx6x7YhPM16KeOnIdR2+gKlywz9PyanU1xf4klOsfrXm7L3oHA6z3OLGcFnw0zHRDJ2zXr+E5Rf+LWmpb2S/rH10uflIMjIJfC3mSOOTndJer9byg/yJfm7SmoU7rxBmc6mvkmNXX7fJR8lvruJfbmN7v95fsQuA2Zb/QusQAA2CvGHdwww1XOqbpQAYwVEmoIdiILRiQbDQc6ebP58+JBMF85Eh6MKxNyKlvvt+ZK/Ut1CCoJdz+nhOEwGaUny+FwTy7E1x06VLF/bt28eQIUPiHl+3bh39+/e3PV7Wpb6NjY28/PLLvPTSSyxfvpza2lo5gKJwyimnMGPGDObNm8fIkSNtO5EvIimmV7d7ieOKN535CiXa2cGzRhtCin8hzcpY6ltogQ+KR0wrFj9S0RbEPXBH4Isbz8Z5tSP4RRGgGTqm3rK03u0swHyIfJCdP8WS5QfZCWjFlu2Xlc85lPlCaZf6QvIMOyGk+KdoTShK5ow/OZc75b6pfErEL/lNj51mH8VeApxt+S+UZgmwEFL802mKL/XNQTtzXBaciEtlwhEKUi4MhRdK2vL8RVYyLJDiny4avV2pqdDnPFtc9lPo7Tl85ettvnw1osP8suu9NKXQS4JWGbcf/r9t/lhFuOeee3j//fd5+eWXGT58OGvXrqWqqorZs2cze/ZsFi5caGu8rJt7lJWV8e1vf5tvf/vbANTW1nL8+HG6d+9OINA61NlSEO3sku9uukEjLPxRHOIeFF5YK/T8mSi0sBehVAW+uLG9FvsSiAp/Weyb7Zhx+2UZj1ciXyypBD85lruiXzZCXFsV/UqdTGWtkLq8VphlKJrM9stnua9btOWSX5CZf5CdAOhnALqwX44ZgAZl6CRk16boApwNiVmByebMCpcyAyO0yQzBtj5/obIDIUXcCoZajh5qImW5r2dzhykmUTDXLrzFFEsR0kCQphTXmYX9rr6tmZ/85CfceuutDBw4ENM0OeWUUzBNk29961v88Ic/tD2e7a6+ETp37kznzp2dPr2glKmNWB5l/OWTfIt6yYgV9wKmypy3R/Dc9A2F6+pbwGNSrAJfsQh7kD9xD4pH4EvEDcEPpOg3ZcmFrLrwlZSlvnbGi+7nQiMOp3PHkk7oax43/1l+0LZFv7ZaJizMIJUf3FmUpb5u4rX4l3ZuF0p+IXP2ny8AFr8AaBBkqXW7LPVNFP+ApI0fW5EYCL4g2ObmT7V+YB4EQUMJsqTnvVy4/8epS30LuYZkPuZ3k8RYchUSWxnp1vhT/TX+4ggGg/z2t7/lwQcfZOPGjRw9epRx48YxbNgwR+O1ya6+13X4b89KfbOlGES7bCmWzL1EfJFPUkzCHuRX3IPiFfgScUvw82w/l7P77JyXbES+luP7op8cxz2xzi3hr5hLfcF5uW8i2ZT7yvmKp8OvnKt0S36z+XuEbMp/wS8Bdmtut0uAwYXyXJc0MtfKhMH1UuEIbbZkuNA+FGLuQpYKJ1IM5z8bCuin0Ntz+N9ea/PlqxEd5qGuP6ExxXeiMlHGQ4fvb/PHKsKPfvQj7rnnHtq3bx/3+PHjx3nkkUd48MEHbY3nC382KSXBzi65CnyKgC5Hy6np2EAW33Ns0ZZFvmIT9iL4Al9m3Bb74vYV0K6uE8crjiRdU7PYBT87Yl8qkS+WXAS/rPcpMtFPjlVc2X6ZRCOvhT85R+Z97Ip/QigYx7qjtz+IojQ/OZ9r/eVL+IPiF/+y3Qd8ATDjmEUoAAqhcFR0p6PSfL+5t0afO8NA8a4bGEvBBEEovChUqPkLNa9DQVCgUKf1pMI8gOJmqW+hz79b5BiHL/xJIjrMD7v8J41K8sqJMhHkP2oWtPljFUHTNPbt20evXr3iHj948CC9evXCNO3d823yiGqK6XgrdXSMlFvOY5sqX181DN10flnpipl0yxeFnLtMaUy6FRJdMVJuns2JmXRzZWyPr69ypTFuy+hPlrElOw6aoXPa8nPRDD3tfknHsxF7GaGsRL9sY9Ewsy7jjWxp/ROhohH98k2piX6ljDADHPhoLsIs/TWNrSxOVCatzMrwNp/NHLmMH9knm/2EKqJlwOkw9eYyYPfmbi6Jzet4enMZcMYxNSVpyavTubPeT1ejZcCJGARYYczGiOnwGPEzdnOEmmRziHs+KS03lxABNemWFzQl+ZYvCjV/oWIOaMm3DBhKkOXdbsRQXF5fLdXxL7XS13RxZLP5xBEp9U21OeHJJ59k8ODBlJeXM2nSJD744IOU+37yySdcfvnlDB48GEVRePzxx1vss2jRIiZOnEhFRQW9evVi1qxZbNmypcV+K1eu5LzzzqNDhw506tSJs88+m+PHj0f/fujQIa655ho6depEly5dmDdvHkePHs06LiEEitLyGvroo4/o1q1b1uNEcLzGn0/+KNZS20RCusXz52/Mat9CZ9EVcv5Ci3mx5DtrL27uEszgi5BtJl8q3CjTNQMG71/0V3vjtZLsPkif4dc8b34zHUqxxDefol8xiqfZoupN9Jv6SIvH89nkI1XTkVgMTWSV9Vdosmn0ke16eNmvm+evAZh2zAKvAQjNWYABpYkZwcfSPxE31+hL8XgrWzcwloKtIQiFb/KQbP5CrWFXqGYiEM0QDIhGLjrwH977EYsTQaxUMwh98S8OU+gYKV5cdWFfmnrppZeYP38+Tz/9NJMmTeLxxx9nxowZbNmypUWmHMCxY8cYOnQoV1xxBXfffXfSMd955x1uvfVWJk6ciGEY3H///VxwwQV8+umndOjQAZCi38yZM7nvvvv45S9/ia7rfPTRR3GZitdccw379u1jyZIlhEIh5s6dy4033siLL76YNqauXbuiKAqKojB8+PA48c80TY4ePcp3v/td28fKdqnvnDlzmDdvHmeffbbtyQpNJMV0XsfnPF/jr1TEOjdRLOhZ254DnY9FP/AVWuArtA+FFvkKKexFfWjDAl8sjsp502EpdKnpzNEuhzKqLsUu+Lkp9sXP3zpLfPPdwTefwl+mUl8oTLmvEApNdf0IVuyNK/WFtlvuK8fJfZ5sO/1mWw7rlwCnGa8ESoABLKFQa/Wli7UHVXHny36xlQqXQplwLAUtGYa2Vbab5zktVGr0fnQx9qJGLvBiWkfQC/J4jIXensOX/aPNl69GdJg7Ov2KhhSlvuUiyH8ducXWsZo0aRITJ07kiSeeiM4zcOBAbr/9dhYsWJD2uYMHD+auu+7irrvuSrvfgQMH6NWrF++8805UA5s8eTLnn38+P/7xj5M+Z9OmTZxyyimsXr2aCRMmALB48WIuuugidu/eTb9+/VLO98ILLyCE4Prrr+fxxx+Pa6gbDAYZPHgwU6ZMSetzMmzLqrW1tUyfPp1BgwYxd+5c5syZQ//+/W1PXKy0RcEuVyKigi5Uzl8/mD+d/QmGnU94HvhSCAop8vkCX264KfAl4lWzDtXSGfbhVD4673WsJN/mCtmdt9CCn/ShwF9SWgl+tp9EmAEObbqc3uOfLmhXX7ey/rLpvpupw68cJ/cuv4YuJ/EzAPMwXglkAAJYBFjXNIuzy/8fSsIXRDvNQeLm9zI7sBVnBkYoaIYgFC5jrg1kB1rofNjxm5xX8wRqpIt2AbsM54Vcs/BKNfuwCGiwAjSkOvxCLu9QV1cXl+VWVlZGWVlZi92bmppYs2YN9913X/QxVVWZPn06K1eudM3n2tpagGh57f79+3n//fe55pprmDp1Ktu3b2fEiBE8/PDDnHXWWYDMCOzSpUtU9AOYPn06qqry/vvvc9lll6Wcb86cOQAMGTKEqVOnEgi4s8yMbeHvlVde4cCBA/zP//wPL7zwAgsXLmT69OnMmzePr3/966455iWaS2vatSWyEREM3eKl87Ir9XUDX+Qr0Py+wJcSJ8fGqTBo6QbrLvhby/2KPLtPjlkcgp+f7eeTLareRN9J/5X0b/ks9y1FshH/wBcA8zpeEQiAEZLtrytNnNfuV8mfn2JdQCeCoC8G5k669QILVjbcyoS5tPO6MKdOExfUZC6tB9KvGdhaRMFssCMc+qW+cZjoGCk+y5phaWrAgAFxa+EtXLiQhx56qMX+1dXVmKZJ79694x7v3bs3mzdvdsVfy7K46667OPPMMxk9ejQAO3bsAOChhx7i0UcfZezYsfz3f/83X/3qV/n4448ZNmwYlZWVLUqNdV2nW7duVFZWZjX3Oeecg2ma/OlPf2LTpk0AjBo1iksvvRRNs78eoqM1/nr27Mn8+fOZP38+a9eu5bnnnuPaa6+lY8eOfPvb3+aWW25h2LBhTob2KRBuCC6KBf0OdmJv9yNZLexsB1/kK8DcvsCXEjeOTc6ZgJZC5+re1PaoAlUUveCXrdgHzgQ/6Yu7ol9bJ9/ZftmU+bpJNhltkQw7IRQaa4ZQ1uXzFqW+PpmJNPvwBcBUcxOeO8/j2RQAsxGh7GT2xe4fQbFkqe9BazDd1Z1Zl/omEwR9MTDWn/yJgREKliVYCDGwUPO6IEJaqFQHhtAj9Hlzqa8TMjUSaUvCoE9KTKFhprjOTCGvod27d7fI+CsUt956Kx9//DHLly+PPmZZ0v+bbrqJuXPnAjBu3DiWLl3Ks88+y6JFi1yZe9u2bVx00UXs2bOHk08+GZCNRwYOHMg//vEPTjzxRFvj5STPRBYrXLJkCZqmcdFFF7Fx40ZOOeUUfv7zn+cytE+YVF1I3d7cQLNUztg8AC2b1nQ2480Hheyqm+/OuXFzt6Iuutl2080Wt49N1l13s9hPtTRO+GQsQZGdkFro7rzZUkyin5/tV5xk8xbjdn8LYenU7jgfkW2r1FZCNsvg2XnLt9PtNyIAZjN/KXQBzoZi7wJsp3NttnMne56p6mwKnYep6o7HgebOwbGbo3GKrKNwKXQTTkdBugy3tQ6/Nua10Pmk3Uwsr3t+puo67MbmUzI0WmVpN4CKigo6deoU3VIJfz169EDTNKqqquIer6qqok+fPjn7etttt/H3v/+dt956iwEDBkQf79u3LwCnnHJK3P4jR45k165dAPTp04f9+/fH/d0wDA4dOpS1b3fccQcnnngiX375JWvXrmXt2rXs2rWLIUOGcMcdd9iOx/YdHgqFePXVV3nuued48803Oe2007jrrrv41re+RadOnQD4y1/+wvXXX5+yU0qpUwwNK4oRQ7f4y1c+zXp/P4uvAHOXaBZfKWTwuTG2re68AZNN5/0j7X5uZ/eBNxl+kB/Bz87+pb4mXa74a/vFo2oheo//daHdcJVsS3ALOW823X/tz59dSbXbGYDZZuvJuQnP7c6YbmcAZlv+Gzt3LJn80JUQX2n/TM7jJPXHzwzM4E+K693PDvR2zgLOqxPi3CNPeju313gp/vmZiq5iCBWD5OfLsPkrTzAYZPz48SxdupRZs2YBMhtv6dKl3HbbbY59FEJw++2385e//IW3336bIUOGxP198ODB9OvXjy1btsQ9/tlnn3HhhRcCMGXKFGpqalizZg3jx48HYNmyZViWxaRJk7Ly45133mHVqlXRtQUBunfvzn/+539y5pln2o7LtvDXt29fLMvi6quv5oMPPmDs2LEt9jn33HPp0qWLbWfyRT6zyNoSigWDqrrwRe+auA9ohT7Wvsjn0fgenNe2IvA5fW7cMbcUuuwbQE3f3S0UmFIo541QbIIf2ChN9bP92gzCUmk4eDLl3begFHghPrcafLiJ3fUJvRAd7fhgZ1+hiqw6ALdlARDsiUyZRDxLqFSZw+itbUVN46wvBubJHygqQbAgYiCU7Bp+mbBQqSwbQR9jc8tSX7+JRe6iou5nJMZiCQ0zxWdaS9g/VvPnz2fOnDlMmDCBM844g8cff5z6+vpoCe7s2bPp379/tPy2qamJTz/9NGrv2bOH9evX07FjR0466SRAlve++OKL/PWvf6WioiK6Jl/nzp1p164diqLw/e9/n4ULFzJmzBjGjh3LCy+8wObNm/njH/8IyOy/mTNncsMNN/D0008TCoW47bbbuOqqq9J29I2lrKyMurq6Fo8fPXqUYDBo+1jZFv5+/vOfc8UVV1BeXp5yny5duvD555/bdiYdDz/8MP/4xz9Yv349wWCQmpoaV8f3yQ1dMdGFyqk7e1PZ63DBuvr6Ip/H87gk9rVVgc/pOMmOu2qp9N4+kiO992Kp8u+lJPhB/rr1eiH6tWYKke2X7/X97CKERt2eSZR124bi8Hpv7Q0+vPLdTtZfocU/kAKgm+v/yfmz7IZbBE1AwJm4FCvimULj84aJ9NR22F5zrM2IgQ7vtVzPUwsSBcE8/LjkZwe6O6+FxvayKfQytra839KVJvuioI8DjpvtOZ7iO7Mi7JebX3nllRw4cIAHH3yQyspKxo4dy+LFi6MNP3bt2oWqNr9m7N27l3HjxkX//+ijj/Loo49yzjnn8PbbbwPw1FNPATBt2rS4uZ577jmuu+46AO666y4aGhq4++67OXToEGPGjGHJkiVx6+797ne/47bbbuOrX/0qqqpy+eWX81//lbxRXDK+9rWvceONN/LMM89wxhlnAPD+++/z3e9+l0svvTTrcSIoQpTGt5yFCxfSpUsXdu/ezTPPPONI+LMsi8OHDnJLxdM0KM6yTFozhc7Ms4sv8uVpviIW+0pB4HM6bqGadUBxCn5QPKJfNpl+2c5djNl+xS78ZSvWaFlMn+2Sc5ky7CBzZ185X2bxKJv4svEnm4y/bLLubCzLFx7Tzr7ZZ/3ZKfm150P2+2Yr/kF24p9dH+wIWPbiynLMHD76uCEyufWbshvjOBEBW4zhhnDiRixeCzgFzDTPS2fhZBRCFCtlIa6Ufc+A0Ntz+MK/0rVb9zgBqq0R0WFmaks4luJ7dHuhs9g8v80fqwg1NTVcd911/O1vf0PXpShqGAaXXnopzz//PJ07d7Y1XsmsUv3v//7vADz//POFdaRAlIIop1oKQ/f0YEf/alsLeGfCF/gKMHeRiX2lKPA5HT/bY19umXT58kRqBm5HpPmG53Z2nxyzbQp+kL3oV6q4JfqVCtl09gVZ6nts/2m077Wh4KW++SbbY+RobI/W+yulzD87ZJv5B3bjyjKj0EYGYIs5bGSaWUJlT2g0/QMfx5X6xmbz5SLe2e08nHSMmIxApyKgK9l3sd+NiyULMJECZAVGKEipMJRUdqCFxpeBMQwMfYRaqO8eXjQ9acViYiljChUzxRp/ptNOTq0My7J45JFHePXVV2lqamLWrFnMmTMHRVEYOXJktCTZLq366DY2NnLkyJHoFqmR1sK/gmumEmerSWzdUKMfSnVDjX5ISGUHQipK+HWmnSGiHTJb2IpJINYWJuVmMtuiPPzCpVoKuiFPmWoqaGasrUTtZHFoppompvTxxcYUCKkgANHSVi2FwXu7EWySN7NiEfU33o6JIyGm9laIMqWRdlZT1FZTxBFnx8SkpYxJa7ZDWjQmPaSBAB2DckOgY0RtkPHpoUhMCrrRbGtxttrCTjxPatRW4+ygaaFjUmaKqB0bR7ytxcQXY4fjiLNFEjshpoCwKDOJXm9l4ff8lvFpzXEYqWMqVxppb4VoZ0mRRzU0lMg+Mf7G2lqCrVvh4xFS0MNCixbSo3G0sEmwLQXNaLZVQ0PHJGBZBA3ibADFVFEjscacG8VUm32PtZPEpGMSNCAQ9j1oKOjhdu+qoUfbY0rfY23pe9CQYyBAjcakNNuWtMsIUWYZqE1BOu0ZBIaGEo5VsdSoHTAFgZj4FDMSnxZn66ZAw0SJiUkx9GjNmBLje8BQ0cMf2JVQIPq4EgpEY5K2jClil1khypuIxqSEAtGYFCOZLePQsGRmU+Rcmlq8HY4j0Y68HmLozY/HxBRra6Hm+DCaYyIUjMYkbQhYZtRGhB8PxxS1LQWMgBQew3YkpkRbFSLse2xM8fFpiHD70Eh8sTEFwFKlWBe2W8RhBMFSCFgCYQQR4ZikjdwSbAAhlGbbSrQDYVtNYWuIcBxxtqkhwr4LU0dYyewAIhxHnG0EEFaM72HbionJionDMoIYNNuRmKyYOOIeN5vjSGZbZpBj+09BCK1lfGHfrZg44u3mOFrYEd/NxDiSxxSxTbPZ91jbins8HIeIiSM2JkvDCis5Le2w75Yu/6802wCmGcAKx2GaAYRotk1FCdvNcbS0m+MwFZE2pli7UQn7KFRMK9DStjTMcBwGzXZsTGZsHJH4VDCtAFYkjgQ74rthBZtvLSsY93gkpkQ74nsq27QCsktvqphETBxCwwgfA1NomOH1kEyhR9dGirVDxMQhmm3DCmDFxiQUhJp9TJYOpqZgiGDYr0S7OY5ktqnqGGoAoSkyPhEfk4XGvqaR0TFjYzLCcQgVQkoAU1FjHg/7LoJROySaY5K2jCMk5Lm0FGhSms9HyEFMQlcxtEBCHMnPUzLbEAFMVUNoSjQ+RzEpQYTSHJ+TmExVI6QGEZqCiYYRzhEx0TDj7HAc8hOr9DHODmCFv2a2sFUVVAVDLZM2ECKIQImxw2+zCTaAQInaFgpGnB2OCTWpbaIRCgQRARUjEMAI2znHFPbdIBi1W8QU7sAc0sribDdiSnueNAVTC2BqOmiKvFZjYjLQ2Rs4hSbKYmIKJrVDlMXEJG0RtSNxxMZUFuNvMIUdiUlLiKnZbo5JT7Cb44g/T1o41iCWFrHLktohrRyhqXG20BQXYyqZPKu8EHk/TrX5yCXu7r//fjp27Ej//v157bXXeOWVV7jkkksci37QyoW/RYsW0blz5+gWacM8cfNAAMZ/1p/xn/UHYPKnJzBmh2ytfM6GwYza1QNdMZm+bijD93ZFV0wuXD2Mofs7oSsml648mYGHOqIrJpe/N4reR9qhKyZXvn0a3eqD6IrJ1Usm0L4hQMBQuXrJBAKGSvuGAFcvmQBAp6PtuPwtWWPevbYjX3/3NAD6HuzMRStke+gTqrpw/gcjABi6pwfT1g4D4OQvenPmR0MBOHV7P874ZBAAp28ZyOlbZHxnfDKIU7fLxSPP/GgoJ38ha92nrR3G0D09ADj/gxGcUNUFgItWnELfgzJl9Ovvnkb32o4AXP7WODodbQeQNiZDt1h9yi5mvTsmq5jKlEZO3tOZc9eeSJnSyKhd3Zm0fjgAI7cP5PRPZI38aVsGc9qWwTK+T05k5HYZ36T1wznpi3B8a05h8O5eMr73T6V/VXcApv9rLL0PyvgufGc83WorALh02Rl0qQ+iKwaXvzmVikYN3dD4+htnoxsa7RrK+PobZwNQcbQ9Fy2dCkDX2grOf1vW2Peq7sp5y2WXnn6VPfjKqrEADNrdhylrTgXgxC8GMGH9SHnOtg1i7MfD0DE5dfNgTt08GB2T0z8+iWHbZLegcetHMeSL8PlbM4aBu2W78KmrTqdvZU8Azl4+kR7VXQE47+0pdKmV3bQvWPoVKo52AODiN86lvKEM3dC4+I1z0Q2N8oYyaSsmXerLuWDpV9AVk841nTjnrbPkOavuxpnvTQagd2UvJq2S1+qAL/sx/sNwfDtPYOz6cHzbhjLq45GUK42M2jyUUZvlNTl846kM3iqv1VPWjWPATnn+Tls9kb5fyvhOXzmFnpXynpvw3lfoUd0NHZMpy86jU42Mb/KSmbSvk+fsrNcvIdhQjmbonPX6JWiGTrChnLNevwSA9nUVTF4yEx2TrjWdmLjsq+iY9Kjuzvj3zgGgW2U/Rq2U57XXl4MYsXqKvD53nsiwdRNlrFtHMHSjvC8HbRrNoE2jARi6cRwDto5Ax2T4ugn03zkEHZORqyfT58sTABixchpdK+Vryqj3ptO5Wt5zY5ZdSMca2ZFp3JJLaReOacLrl9OuMUjQVBj32jdRDZ1AQzvGvfZNAMrrOnHam5dRRoguNZ0ZvexiADpW92XIihl8MfWfVBzox5AV58v4vhzCoA/OQceky+cj6btOxtp96xh6b5Dnteem8fTcNB4Nkz4bJtF1qzyvvddNo/Pno+Tx+OB8On0pz1//FRfRcd9gdCz6vXsZ7aplfAOWfZOyGnnPnfDmtwnUdQFg8GvXozV0QDECDH7tespDoDZ0oO/rNwGg13Wl9xK54G6gpje9ll0DQFn1QHq8928y7sohdF/5dQDafTmSLqtl3O13nkbndTLWDlsn0GnjNHk8Nk2l4yZ5j3beeA7tt8pzWbHuAsp3ytegTqsvoexLeS92Xnk5wcoT0YSg03tXo1fL89f5rTloNfKa7PLP76Aelees6+JbCR5vB0aQjm/cAUYQpaGjtAH1aDc6LJXxBWp70+Ht6+Xj1YMoW36ttCuHUbZKnldt92iCa2ZJ+4vT0dfL+LTtk9E/mS7tLeegbZHXrfrJ+ajb5bWqrv8ayhenS3vNZSi75fXJB1dDlXz9ZMUcODhY2u/eALXyddJ863Y4Kl8bzX/eA40VYAalbQbRGjrStPT7AIj67jS9LeMTR/rRtFzGx8EhNL4vz5+1fziNa74lx9t7Gk0fXQ6AsWs8TR/LtUeaPj+Txs0zpL3tXJq2nQtA4+YZNH0uO5I1fHwpjbvla83RDf9G0z55zurWXkPowMkAHPnweozD8nWy5oPvYtTJmGpW3Il5TMZ0+L17sRorEGaQw+/dizCDWI0VVC+/V/p4rDsHV94pfazrx6EPviv9OjyEQ2vlOWs8eDKHP5LX5PGq06j5RF6Tx6rGoAYaULUQdV+eSc12GVPtznOp3SljOvT5DGp2y5iqt13KkUoZ0/4t/8bRAzKmfZ9+i/rD8jzt2TiX47Uypi/X30TjURnT5+vuoOm4jGnHmu9jNsmYdqz5PsIMYjZVsG2tPE9NDd3ZsV6ep4b6fny+UZ6nY0eGsGPLdfLY1Qxn57arpb+HTmXXDnmeDh0Yz5e7vgbAgaop7N0t763KfdOo3DcNgL27z+dAlbz2du36GgcPymtv585vcPiwfB/YseNqamtlTFu3zqGubjCWCps+u4Fjx2RMH2++jYZGGdOGT79HyKjAsoJs+PR7WFaQRqsj6zfPl3E0dmfDZ7cCUH+8L59s+46Mo34wmz+fjaELDh8dxuYvr5THunY0W/dcBkBVzens2Cfvp72HJvN5tbyfdh08h10H5f2088B09hyWr4fbqi6mslbGtLnyMvbXyfvpk71XcqhevgZ+tHs2NccHA7Bu13eoa5Tvy6t33cyxkHyNWPXFXTSZHTFFkFVf3IUpgjSZHfnXnrvk+TC6sWrvzTKOpr6srpwHwOGGQaytkq8RBxqHsb5avkZUHhvNxkOzANh9dBybDl8EwBd1k9laMx2hwo66s9lRJ1/jP6udzs6jMqZPay5id718D9t4eBZ7G2VMaw9/kwONMqbVh67lcJP83Ljy4DyOhGRM7x66mXpTxvTWwbtotGRMbx2UMTVaHXnroIyp3uzG27U3Y+lwxOzL8loZ0yFjEKuOyJj2h4bxYZ2MaW/TaNYflTHtahzHxnoZ0/bQFD5tlNfeZ43n8FnjOehKiPZaLV80yc9YG45fzBdN8jytO3YZe0IyptXHrmS/MQyhwsrjszloyvP07rHvUGvJmN6qv4Wjlrz2/ll/Nw2iAoMg/6y/G4MgDaKCf9bfjVChju68dfwWAGqtvrzbIK+9g9ZgVjTMBqDKHMYHjfLa22OOZm2jvPa+ME5nvXUJQlfZbk7hE1PGtMWcxhZzmryuzPPZbsr7ab3xNb6wZExrjG+w25L30yrxLSpV+bq33LqOamRMb1s3Uou8n5Zat3MUGdMb1j00IGN6w7pHxqRW8Ab3AHCU7izldhkT/XibGwGoZjDLuQ6ASoazCvkasZtTWYN8jdipTmC9eilCU9iqnsnHinzd26ycy2ZFvu59rMxgmyLff9crl7ITec4+VC7nS+Tr3irlW1QiXyPeU+ZSjXzde0u5iRr6garwT+1Ojqo9QFVYrN8bjWmxfq+MiQoW6/dGY/qnJl/La+jHW5p8La9WhvCeJl/LK5WTWaXJ1/IvldP4UJWv5TsVGRPANvVMPlZlTJvKvsqmsq8iAiobyy5kqy4/F68LzmKnLj9TrA5+ky81+R1nZdm10fP0Xtk8qlX5+XdZ+S3UqPJz0pLyu6lT5Pet19stiMb0ersF0Zheb7cANIU6vSdLOswHTaEmMIBl7eVrYLU2lPfayeuwUhvBynby3vpSH8Pqcnlv7QxMZF35LAC2Bs9iY5nsKrop+FU2Bb8KIGMKhmMqn8XO8jNAU1jd4Ur2lY1iSuPvWN3xaip1+Z3zvY7foVqX52lZxW3UaPLaW9JpPnVqOKbO99GgVGBQxuud78OgjAalgtc73wdAndqDJZ3k63qN1o9lFbLLarU+hPc6hmPSR7Cyg7y3vgyMYXV7eW/tDJ7BuvbhmMq+wsZ28vViU/lX2VQejqndRWwt+4qMqf0sdgbl97PV7a/ky0D4PHWY7TymbvdjaOU06J14vdv98jwFerKk6/fkeQr2Z1mX20FTqC4bynudbwBNobJsJCs7zZExlY1hbUd57flILLToDyKJm5UiE7Ct8d///d/86le/4o033uCVV17hb3/7G7/73e+wrNyylQu6xt+CBQv46U9/mnafTZs2MWLEiOj/n3/+ee66666s1vhrbGyksbG51FAIgRFq4u4OT1GvN0azxSxNoJnyFwtpqwgElibQDRVLFViqtE1VIKK2hVCJswMhFUO3EIq0Q7o8QQEjwQ5YKEI+NxSwUCzQLPnceFtBsxQM3UK1FNSIbSooKJhaxAZTEwWNyVQFJ+/szY4BB2gsM6NxaIHjLWJSLQUzHJMSsVvE1GyTJI4421AR4Zi0cHyRmBQtFLa1cEwCPaRh6CYoNNvIDLo4OyAzsCK2PB8qhm6G41Axo7aMI9YOmlZCHAqWZkUzyprt5DFF4oi3NaxIHGliItCUdUzxcaS3VVMBoRAMHJeZZHFxNNsCEJqFamgIRTTbYX9VQ0NTQ1HbUi1QBZqhY6qmtEM6pm6AQrMNcp8YWwk0yow/Q8cMGDLjz9LkPmHfrXAcSjLbVFGE0mwDqhaKZsAJzQpnyYkUMQmEmhifLptuJNhBQ86DIlBDOlY4DtVIsAMGZcII2yEZh6lhReILBejy5UkcGrQFXbEQuiEz5SwVoRvSd6EgwjGBgqo1RbP9hGbGxaQYGigRW5flw6pFwFCjtnxcxqGEAgjNaLZ1A5SIHaJMhFAMaQPSDoRkxp+hS9tSUCxd7hO2Vb1RZq5ZKoRjitqmJrPrIjaAZoYz46yoHX3c0EERzXY4Di2kRW2MgKxbU0W8HQqCHiKAEbbDKYtGgh1okj4ZAbRAg0wfsQJyH0uRtXF6KByHFrVVU5W2qSEvcKOFrRH23dQhmW0E0BQjJg4zSUxBdJpQVJnxhxZCUSJ2OA5T2poQYAZR9CaZTWIGpB2OSdGbUEwZk6KHZOaapSWxNTQLFM2QWW9CkXYk01QzZcacIlBUEz3UbAszAIqJolrxdjgmjbDvaghFFVhGECUck7RlTMIMoqvNthqOSZgBaVsKwpK2YikIS0fVZBxCaC1spSnI0b3jqRjwQfgDhdIcH6CoJlqTjhKOwzJj7QBKOA6MYNS2zACKakjfzSCK2hyHpiSPKdYOqDImywqgaeH4rABq1NYJYiCEirBkHJalgojY8nrTMaO2qhrRX9xV1QxnAYqorQppm+GYVNXCNAOoqomiRGwZk2kG0QlFbVWNtWUcltVsY5RF44iNKd7W0bQQQqioIR1NDcnsLyHfTyxLQ6CgReNQ0ImPybR0lHBM8XYATZioioVpheML26oiYzKs5nNjGmVRWz4u4zBFvK2rTaghBVME0MPnLNa2RHwcARJiEhpChGMS4fgUA1PIKgZNMTFFOI5EOyYOYQZQkLYRjkkN+64qoaitKSFUkTmm2DgsoWCJAEErbKOjKzIOCy2J3RxHi5hMmU/0eeMEBgXXoatNcTEZIoAaiaOFLWMyzSAqMqaQaL4OpS3jMIi3A4qMySAgbVPBIoCuZBeTzN5rjiNiW6Fwhn/43IBoYWeKSbMsDJFjTCISR+4xRTIVdcsIZ1/JygEDeZ6kHY4DK4ltoCIwCMeEIEQ4pqidEJMl9w/QhAhnwQVowiIcU9TW0QlhEY4jwTaR15uOEc4QU9Citlz2JFVMZkhzN6bIeco2JlNxPSaDAALYFRjPgNB6AjTZj8kUGJSh0wjhbMUAjeGYpC391cMxJdqRmDQs1JiYmu3mmPRwTInXXgB5dCLXnoXa4joMhmOKt0OUyc9JiKgN7sVk6h2ou+CPbX7dusgaf2dbq6hPUVLeAY131clt/liVlZWxbds2Bg4cGH2svLycbdu2RRPZnFBQ4e/AgQMcPHgw7T5Dhw6Na1dsR/hLJHLB3dHpVzQoTZmf4GNrfT3NVJm0fjjvj/0MM5uVx13GX4/Pe9xYs8+NY+Xm8fZ8jT8H5yebhh2KoTFw3ZnsG/cuQk8/h531+yKUwjp+Tp7n1Xp+dvzIpqGHHDPzfm419XB7bb9CN/aQPmQ5Zhb7KSGdw59dStfhr6KmWLgtm+Yecr7Sa/ARt7/NT41+sw+JF80+pA/ejGt37Lh5cvw4ZgqdjfUXcVr5P+SPGzngSiMPvxlIRjxvEJKMAjYNgQI2DonFheNuoLOufBbjGl5Bp0DfpVrxenxCb8/hC15p82JWRIc5y1idVvhbrk9s88dK0zQqKyvp2bNn9LGKigo2bNjAkCFDHI9b0KLznj17xgXk4w6FaoZhahYrxm/Oy1y+yJc/WpvY51m33hzPje3uvLrJ3olvpd3XieAn5/BFPy9Ev2wFPzlm/kQ/n8yIgEH3kX9Ou09Iy178KybsNNgA/GYfMXjV7MOLxhx2x42MDfaFLyvm24UTEVBTDMZ2fFX6gJKTqORKIw8Xm4HkIgBGmnDkJLIlfpd2SbsSCc0Z8iIEFrBpCFC4xiGxJDbFcHDcdQwmNvzRJYcckmtzj1YsHLY2TFPDJPn5NlFLqPWsdwghuO666ygrK4s+1tDQwHe/+106dOgQfezPf07/uTSRkjm0u3bt4tChQ+zatQvTNFm/fj0AJ510Eh07diyscy5RyO61bqCaCiO3D2TTiV9iZZtqkQW+yJd/fLEvzVgunxfbgl8YxVTpvnUMB4d9hEhI/fEFv4T9SyjLT46b3w+wdo5PayQbIUtYGke+OJOKgf9CUUtQ3cuAXfHP3tj2xCZf/HPigz3xD+wLgE5FLyedgC2hsaNhMkPLV6EqpiuCV2sUAMEFga01C4FQcDGw4EIgZBTFTDS2Bs9iWNNyx58fC44vHJYMwgogUrzQiNbdfiJr5syZ0+Kxb3/72zmPWzLC34MPPsgLL7wQ/f+4cXLh4rfeeotp06YVyCtJqQt2bqGg0L6hDLnioPMX0EIJfb7IlzutTezz6rxkK/ZBujgU9OPtIeZXM1/wS/KcVir65Tvbz6sy35JBKJiNFc2dnksEQxNZlfuCPcHNbtafL/41Y0f8s4Ndcc6uAJir6GVHABQoNFgV0e6h0cddELxEzPdKp7G4MobePEjBswBjif3e7aJm5apYaQc/KzALMVChQekEKbKw2gS+cJg3hKWm/KTrVPh78skneeSRR6isrGTMmDH88pe/5Iwzzki5/8svv8wDDzzAzp07GTZsGD/96U+56KKLon+vqqriBz/4AW+++SY1NTWcffbZ/PKXv2TYsGEtfRaCiy66iMWLF/OXv/yFWbNmRf+mKC2vq9///vdcddVVaeN57rnnsojaPiUj/D3//PM8//zzro3ni3XuY2oWq0/bavt5hRD6fJHPPXyxLz12RL6oD1nEITSTynH/iv6/NYt+joXCNiz6ZT1ngUW6Qq/vB1mu8acZdB3+j+wHzQOmmt06f17htfhnh2IQ/7wgH+Jcvsp/o/NlIQBqisHoDovT++FnAcaP4YWw1pqyASP4WYESLf5H47HG30GDUk34KzjphMNk11xbJtx4Kzn2hb+XXnqJ+fPn8/TTTzNp0iQef/xxZsyYwZYtW+jVq1eL/VesWMHVV1/NokWL+NrXvsaLL77IrFmzWLt2LaNHj0YIwaxZswgEAvz1r3+lU6dOPPbYY0yfPp1PP/00rtQW4PHHH08q8EV47rnnmDlzZvT/Xbp0sR2jW7TJfEpf9PMG1VQY++mQaBfeRHTFSLp5jY7ZYssHumIm3fJBudKYdHMLN46lW+fDFV9cOj9lhFpstvywEYdiavT6+Ax003nzDieiX5kIORL9tHC/NifPs/0cIbIWtALCzFr0sxODKoStJh5ui37+2n7uIiyNmh3To118vcZy8dOZYUMFtWwu3udRdbAc26Yvhm4nTrveZEbY8Ne0+bO7XX+FGp+Vls34Xs/RYk69eUvEFBqbj50b7R6b1g9NaSEk2SXXWFwbQ1fjMgEdjxM+Jm4cmzjUhM0lPPM3W1QlfsszIqC22PKJicbHgQtk91xNsb/5+Ngh8mKZarPJY489xg033MDcuXM55ZRTePrpp2nfvj3PPvts0v1/8YtfMHPmTL7//e8zcuRIfvzjH3P66afzxBNPALB161ZWrVrFU089xcSJEzn55JN56qmnOH78OL///e/jxlq/fj0/+9nPUs4FUujr06dPdCsvL7cdo1u0SeHPx32kiGeiIsICSv4FvqgvRSLy5QsvBb5Y3BbqCu2LF2KfY18cxCKXxnWyiHPpCH5+aW/Cvi5n5xU62681EspCF7SU4j7uXop/dsUlu754gR2f7Yp/dgRAp+KcHQohAEJqAdCWHy4KgLnE48oYYQHQDREQ8E5U80AEhCIUAotADCxqnIiFvpjYdrG09BtQV1fHkSNHoltjY/Lvtk1NTaxZs4bp06dHH1NVlenTp7Ny5cqkz1m5cmXc/gAzZsyI7h+ZK1agU1WVsrIyli9fHn3s2LFjfOtb3+LJJ5+kT58+KcO99dZb6dGjB2eccQbPPvssooCfvUum1NfHO9wS5SzNYsOoba6MZYd8l+22tlLddBRVCW4RlfHmIvLF4jQmDROhQfXoVTbny19Zbz7X8QP7IlZrFf38TD9vUFSTipP+mVM5XyGxs9Yf+M0+ctnXznp/YH/Nv2Is/3U6T4t5w99KNMNkRPv0XetT+uFSyWtrKgOOG8+rMluPyoKhpc+Q5/JgaNVrBWqYjA696cpYruGF+Oevw1cUKKEylBSfaSMlswMGDODo0aPRxxcuXMhDDz3UYv/q6mpM06R3795xj/fu3ZvNmzcnnaOysjLp/pWVlQCMGDGCE044gfvuu49f//rXdOjQgZ///Ofs3r2bffv2RZ9z9913M3XqVL7+9a+njPVHP/oR5513Hu3bt+fNN9/klltu4ejRo9xxxx0pn+MlvvBXQhSyu202qKbK2I+HsX70ViyPFx7Kp9hXKKEv3yJfBF/sS45bYh/kJvhFUEyNnhumcuC0FQgt/XilsI5fTs/zSPQrJcEP7Il+dsb1qrGHV+v7eYEwdY5sm0HXoW+geNGZwSF21vmzK/7ZwV/vL55I5p+dhh9gXwD0sjOvk+6/kXkgN7ErpOlsPjqdER3/ScB0fr+1xnUAI7RlIRAKvE4gFOVagRHsCoImOhsDMzk1tBiN4nl/cx23xERfQMwJRWiphb/w2n+7d++OWzevrKwsL74BBAIB/vznPzNv3jy6deuGpmlMnz6dCy+8MJqt9+qrr7Js2TLWrVuXdqwHHnggao8bN476+noeeeQRX/hrLRS7OOctguPljeTS0TcVrVnoK5TAB+4f19Ym9kFxCH6QbB0/gdGunnT3my/4xdNas/zAz/SLxe3GHgAoAj1YB0VeppsJr7r8grfin11fikH8A2fZf5C9AFis2X9O54qgIChX61AQtroBp/TFRQEQCtsNODqWS12BW4zrVfddj7oFRyi4EAgFzwqMYF8QFJSLOrz4/tYqsSsg+qXL8VgqpPp8Gxb7KioqUNXMJe49evRA0zSqqqriHq+qqkpZftunT5+M+48fP57169dTW1tLU1MTPXv2ZNKkSUyYMAGAZcuWsX379haNOi6//HK+8pWv8Pbbbyede9KkSfz4xz+msbExr2JmhCJfNMBbUjWbyGVry1iaYNPJO7HsfOtKQb7X6cvn2nz5WI8vGV41OSmWRh9un8Nc1+2LJdfYkjXvEJrFoRFrESnSfVr7On6+6NeML/p5j6KadBr0LopafC0PTQ8/yfnNPpLva3fdPztr/0HraP6ROJed+VTF5MQO/0KNeT93cx3A1tIMJDpWzJqAbq0LCKXXJCSWRN+LYq3AApOsiYgIqKgBwQjjHUeN4nx87KKGAqihYIotYGusYDDI+PHjWbp0afQxy7JYunQpU6ZMSfqcKVOmxO0PsGTJkqT7d+7cmZ49e7J161Y+/PDDaFnvggUL2LBhA+vXr49uAD//+c957rnnUvq7fv16unbtWhDRD9poxp/mi3SeoJkqE9aP5MOxmzDT1B7le02+pD7kuflGvvH6GBdLZh+4fy6LJcMvQqoPYoqh0XvdNKrGvY3Q4/dxKvo586+4s/zAG9HPK8EPvG+64VWZb2tGmDoHN19K1+GvorpQ6mspAlWk/yJoJ9PKy5LfUl3vz3tfSjv7T/qUn/Lf2Pkg85ym0Pn4yEWM7vQaWsLndTcyAKH4yoBzHSduTL8sOCkFzwosgvLgZBjorC+7lLHWq+hJSn3dWkvQxwdAtdSUny2d6OPz589nzpw5TJgwgTPOOIPHH3+c+vp65s6dC8Ds2bPp378/ixYtAuDOO+/knHPO4Wc/+xkXX3wxf/jDH/jwww/5zW9+Ex3z5ZdfpmfPnpxwwgls3LiRO++8k1mzZnHBBRcARDv0JnLCCScwZMgQAP72t79RVVXF5MmTKS8vZ8mSJfzkJz/hnnvusR+kS7RJ4c/HGwSCQ12PoGE46jbqJa25fDdvnYuLSOyLjlekJb3gregHgCJo6Lq/RelhvkS/tir4QWmLfl7i1fp+RYEiCFbsQcmi1DekQaDwv2+lxUvxr1TX+3Pii/1SW3tr/0Hraf5hZ04FQZfA3rSfJWOz/1pDGbCb47QY1y8LTkpRNg2BvIuBCoKuYk/K+y1dV2FfFPSxi2JpKVdNURwIf1deeSUHDhzgwQcfpLKykrFjx7J48eJoA49du3bFlQ1PnTqVF198kR/+8Ifcf//9DBs2jFdeeYXRo0dH99m3bx/z58+nqqqKvn37Mnv27Lj1+rIhEAjw5JNPcvfddyOE4KSTTuKxxx7jhhtusB+kSyiikD2F84xlWRw+dJAFXR6hUWkqtDslSTFk62WDL/QV11y+4GcPp+UWrVH0cyqEFYPoJ8f2VvizW+Zrd/xSa+zhyfp+kbFt+JGN8Jcp4w/siyt2+2rZEf/sZtrZPb52YrXrix3xz64vuTzHjgAI9gRAcOqT93O4MW8ycs0CBPeEH7c7gHvVUdxNITBuXK8EtDzrTAVZKzAdRZAh6BWtVUQUWnsOn/tnunbrntW6da2ViA5zzvZ66lNcxh0UeOfEDm3+WHmFf0R9oiRbA87OmnCaoTLl/XFoRmEuq9a8Tl9e1zt0cS63fS7WNfzAvVizFf0UQ6ffigtRjNJI3M6X6BcQZsmKfsWGX+bbjBIKUL3xaiwz8/ozbmb72V1Xze56f4YNpbSU1/uzP76z59hfa8/+2n921v9z5pO9/XNZ/y9x3sjcpgiwtuYKTGFvvafWtg5gsvFcH9dfHzAtRbFWYCyJ6wa6sIagQYBV6tUY2Lvf3CbVGoS5bD7Fh95UTqAx+aY3lRfavVZNaXxj9MlIMWTiWapgT98qzz+QQ+vO6IP8n08v5nNb8HOTYlvHD+xn+QnV4mj/HYhwukUxZ/vlU/SzNUe+Uwcy4HW2n5e06jJfQFFM2vXchJLn9x6wX1ZpZ70/+74Uzxp7drBb8puLP07W/oPWUf4bIecyYGHSq2wLisP312IsA3Y7Y88vCw6Tp7LgWAq+VmAqUol/GT4rqJj0FZtQi+C7pNvkIv611gzEQqNaasr3CF+q9RZf+MszxSDQeYVQBbtO2OvqmPkW+GJpreW7Xs/rC372cNxFTbU4MmhL2Bdf9Ct10S8flOL6gV6V+dpFUS069Fnv6pjZNPiI7uulKGZzvT872F3vz9bYHoqQzXPkR/wD75t/OPHLbvOP2HnA+TWrKhb9O2wID+ZsjKgvLjQDcUsA9KpcNx8iIPhNQlJRFGsFpiNdNqAlULEYJNbnzZ1Swa5o6AuF2aFYSsr3umLrEdDa8IXVHMmmPDafZZqFRDNUvrJ8gq1S39jy3GRbPsln+W4hrwuv5nVzTLfPv5tlvW6W9DoW/ZClvgPfvZSAg9L6ti76OaHY1vbzmtZe5mtr7UILLDPA/vXXZVXqWwzYLfm1g5dZ/W6UjKbC0J357aVPidgt/QV7pb9gvzQ3l9JSp2XApgiw+tA1mCLgWnmrW2XAOT3f5TLdfM/hlwVnT7IS4YKXCSdDVTDUIMu16zDUoCulw22V1CXH/rGMRTW1tJuPd/gZfzG0dmHOayxVsH3oruiXgkJm62VDay/fzdfcfuMO++Qi+EXHUA1qT9wQLfXNFl/0ax3Zfl439fBq7FIs8wVZ6lvR//2Mpb5edvP1suS3VLv82s36c1Lya9enXJ4D9jP/IH/Zf5BbBiBkN6eCyQntP2xR6utG2aylF0f2H3iXAZi3OcLin9sNQlpTWXAi6cS/QmUJqpgMFe+3LPXNkCno4+ME3dBTft7QNQG+HuMZbVL40zEx/YsqJ5KKMxrs77+PYtXq25LQlw8ffMHPPm4IftGyXhWO9d9h67m+6OfMN7vZfj7uUCxlviBLfdv13OTtJFngl/wmGTtP4p8T8in+gfdr/0HuJavZzKkqFr3Lt6T1AZz74Vb5b65CjVclunmfw6N1ASGPZcFQMDEwQqFEQRWLfmy2+SRfFPRxhmKpqUt9Ff/a8RK/1NcnKU5KcDVD4+y3zkQzikP6y3fnXchv991C+eB36rVPrmW90hcrbi0/xdDpv+yKrLv6+qJf/vC6zNfrph5+mW8zkYw5ywxQteYm10t9LY8/5Polv+7h1Cenz3NS9gv2S3/BWeffnEtv05QBG1aAldXXY1jp7zc3yn9zwc3yzVIvA47O4XIZcIvxvSybLWBpcCZSlQ67cRwMAryl3OheV990nYdd6kTsU7roIS3t5uMdRfay5pMPMol6TkUYS7X4dNRmLK/SETJQCKEP2obYFzuHa+N5sI6fWxSz4BdBqCaHRq9EqJnH90W/8FxtNNvPL/PNHUU16Dx0CUouKUIlgOFh6qSXfTjsipD5Xu8v3+KfE5z46JYAmIiqGAyvWIaqZL7fcvWhGNb+ixvLFwCzn8PrdfMShcAiFAQh9/UEVQxGiX+iUoD3NzsioS8Wtgq0NKKf5lD4e/LJJxk8eDDl5eVMmjSJDz74IO3+L7/8MiNGjKC8vJxTTz2V1157rcU+mzZt4tJLL6Vz58506NCBiRMnsmvXrujfb7rpJk488UTatWtHz549+frXv87mzfGZs7t27eLiiy+mffv29OrVi+9///sYRuE+Rxbhy5ePm+SzYYZQBdW9Dnr2QTVR2CuU0BehLYl9xS74FVvjDnC5rDcZquB4r90Z05d80S88V55Ev1Jv6lEsFFOZL8jyk/KuO0qyDMXP+ktOqYh/TnCS9Qe5CJQ5im8J2X+qIuhethPVxv3WmrL/oPmYeinQ5WUOD5qBtJgj380zilwIjJCtGKgi6MUO1FLpqOoLhSWNYippN7u89NJLzJ8/n4ULF7J27VrGjBnDjBkz2L9/f9L9V6xYwdVXX828efNYt24ds2bNYtasWXz88cfRfbZv385ZZ53FiBEjePvtt9mwYQMPPPAA5eXl0X3Gjx/Pc889x6ZNm3jjjTcQQnDBBRdgmvJ7immaXHzxxTQ1NbFixQpeeOEFnn/+eR588EHbMbqFIkTb+dZhWRaHDx3kh13+k0alqdDuOKZYm2ZohsY5b53FO+cux9Rz87EQQl42FHrdvnzN78U8bl+3bmf4uYXngl8YJRRgwLJvsvu8/0UEWh4LJ4If+KJfBKeZfsVW5mt3fLs6jlcZf14Jf7bji5T6GkGq1nyX3uOfRtXTf36w2+BDFfY/6NpNrM+2yUcEO2v92VlfD+ydA7tx2vUFcLzen9PiBifPc7LeH9hb7y+WXAo3cl1HTrXAsIKsPDiPKd2fQVftf17P2YccEzK8Wo/Ny0YdeZ3D5XUAk85RoEYZQMHXCrSDYgoMgryl3MS54tfolO73Y9dweTkVobWj5qw/0bVbd1S1iJVij4noMFcu6crxFJ8x2mmCl84/bOtYTZo0iYkTJ/LEE09E5xk4cCC33347CxYsaLH/lVdeSX19PX//+9+jj02ePJmxY8fy9NNPA3DVVVcRCAT4n//5n6zj27BhA2PGjGHbtm2ceOKJvP7663zta19j79699O7dG4Cnn36aH/zgBxw4cIBgMJj12G7Rdq++IiGbstt8ZezliqVarB2/3lGpb6Gz99JRTKW8pThPMWf4gbuNO7wq602G0Az2T/wnIuGbXZkIORb9WiPFLPqVOm2lzBdA0UJ0G/knFM2/txIp5aw/yH/mnxPyud4f5BabK6W/WohTO/8VVXF2v7W27L/ouH4ZcPZz5DMDMJESyAaMIDQFRTUYr/wF1eXGeCWLn1HoKYqVJuvP5mfFpqYm1qxZw/Tp06OPqarK9OnTWblyZdLnrFy5Mm5/gBkzZkT3tyyLf/zjHwwfPpwZM2bQq1cvJk2axCuvvJLSj/r6ep577jmGDBnCwIEDo/OceuqpUdEvMs+RI0f45JNP7AXqEiXwklRatBYRzwlCFdR0q83qA2oxC31QXGKfL/hJ2lLjjqxQBY3dquLSZ3IV/Fpbtp8T35ziRPQrtqYexUKxlfmCLPUt67SnJEt9nWB3rT874p/d5DU7IpRTEdKp+OeEUmj2kSu5CkeqIuhUvtdWqW8yH1rT2n9x4/oCYPZzFFIAhJIoC1YVQVdlD4pWgLLp1oAvDtpCtZS0G0BdXR1HjhyJbo2NybWC6upqTNOME9cAevfuTWVlZdLnVFZWpt1///79HD16lP/8z/9k5syZvPnmm1x22WV84xvf4J133ol73q9+9Ss6duxIx44def3111myZEk0ky/VPJG/FYIifQkqHtqykGcXPaRxwetfTdqRp9iFPmh7Yl/sfK6O6Qt+Nv1xJk4poQCD/jEXJRRwJcvPF/0k+VjXD/Kztp/XZb5tgcj6eJYRZO+K72MZ+S/NcAMv1/lzQjE1+shtrvw+r9ibfcSSi3BkWEHeqbyTJoKu+JELxZr9B/46gLbmKBYhqwhFwJAIslh8j5CIf3/zRUAfL9BCStoNYMCAAXTu3Dm6LVq0KG/+WZb8/vD1r3+du+++m7Fjx7JgwQK+9rWvRUuBI1xzzTWsW7eOd955h+HDh/PNb36ThoaGvPlqlwL8Dlh4dMXCbOMinRcYusmKs1Zh6GbRinuJFHrNvkL4UArr94G7a/hBaa7jlw6hG1Sf9UeC2vGcxnEqkPmiX2SutqmWtaUyX5Clvj3HPOeX+qbBUoWjNfayG9teJqgTXwxdOFrvz65vuT5PqML2mn+m7my9P6c+xiJU++vGaUqI8d3/P7RwqW+ufkREK6fr10XEv1zW/hOa4um6c7nGWDRzhMU/L9YBjAhYBV3/L5ZE8a9A75U6Ic7kBfQ0n7sTxb+iOYY+JYcaSv1aGvlta/fu3ShK8zVXVlaWdP8ePXqgaRpVVVVxj1dVVdGnT5+kz+nTp0/a/Xv06IGu65xyyilx+4wcOZLly5fHPRYRJocNG8bkyZPp2rUrf/nLX7j66qvp06dPi+7CkXlT+eY1RfR7g08pU640Uq42YnQ6RLlavKJfbEZdW8rsi53T1TE9yHQt1gw/KGBZbwJlIkQZTRidDkEOpVC+6NdMPkU/R8fC46YexUKuIoNXKIog0KHak1Jfq42UDyfiZdafU/xOvy1xw0e72WKKIugYOBh3vyV2/s2HH4kUc/ZfdI5WVAbs2djFmsVWoLJgRRFUKPbe3/xsQB+nKKZIuwFUVFTQqVOn6JZK+AsGg4wfP56lS5dGH7Msi6VLlzJlypSkz5kyZUrc/gBLliyJ7h8MBpk4cSJbtmyJ2+ezzz5j0KBBKeMSQiCEiJYlT5kyhY0bN8Z1F16yZAmdOnVqISrmC1/483FEstJdLaTz1VcvRQsVVyJpMQh9hfSjrQp+ULqNO9IRKelVQgH6vXobSihgewwNq1WKfk5pbaKfE9pKma9Tsckygux574clW+rrBLvr/HmNXdEn3+v9+c0+0mNHKDKsIMv23YthtbzfClmCDO6t/ZcvAbCUy4DzUf5b1MJVnkTAkAjyd3F/i1LfbIkVAYv+mPoUHNUQqKEUm2H/vW3+/Pn89re/5YUXXmDTpk3cfPPN1NfXM3fuXABmz57NfffdF93/zjvvZPHixfzsZz9j8+bNPPTQQ3z44Yfcdttt0X2+//3v89JLL/Hb3/6Wbdu28cQTT/C3v/2NW265BYAdO3awaNEi1qxZw65du1ixYgVXXHEF7dq146KLLgLgggsu4JRTTuHaa6/lo48+4o033uCHP/wht956a0oh02uKS6HxKVqyKd01dYPl57+JqedQC+EChRb4EimUP221pBfcFfzcwE3BL4LQQ1Se/xxCz/745drsothFv3x28HVCsYp+dmlrZb4AitZEnzN+gaI1FdqVVoWleCs6Oy0/dlr264R8lvzmgltlv5C5VFRTmpja61doSvL7rVAlyHE+6LmV/kJ8+WRrKAP2anwvy38hf+chJzwsC9Zp4qv8Eh333t/cEv+K9nz4OMcCUn22dXBdX3nllRw4cIAHH3yQyspKxo4dy+LFi6ONNHbt2oWqNt9AU6dO5cUXX+SHP/wh999/P8OGDeOVV15h9OjR0X0uu+wynn76aRYtWsQdd9zBySefzJ/+9CfOOussAMrLy3nvvfd4/PHHOXz4ML179+bss89mxYoV9OrVCwBN0/j73//OzTffzJQpU+jQoQNz5szhRz/6kf0gXUIRokTrgRxgWRaHDx3koa4/obFE1qArFI7W6BOgGboU/vL8Y48v9nk7dykIfm7HXQzr+EGaTr0CFCMghb8M95sb3W190S92rvw083Aq+nnd1MNL4c/ul3knSWm247VACBBmEEVrQsni/S1g8zJWhf03TdvHysHLgG7a88uJyGb3fDgRfJyuPehE/HMqSDl5nlPhz8l6fxHcKsdPJxIJAaYIoinp77d8+JINuQqAseRD6PBSAMzL+B4JgC3mKRXRKVcRXIBBEJ3s3t9KlUKdT6G1o2bqH+narXucANXWiOgw817owvFQ8gutXUDwzJyaNn+svMI/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Q6elEpGhqamJ6dOn89JLL1V/YHVGPfiaEBQSr27durH11lvzq1/9ijVr1pTc329/+9s2E1oefvhhZsyY0SbHSifbedt4442ZMGEC999/P5FIpCrH+fTTT5k+fXpdCrj1OrZJkybx0Ucfce211/LXv/6VMWPGtPeQsjJ8+PCUOZTr1VZixSuvvMLhhx/ORhttRDgcZtCgQRx00EG89tpreccupaR3795st912/OQnP+HNN9+syfjmzp3LRRddxO677044HC5JoFdK8ec//znpX/fu3dl222255ppraGlpybvve++9hxCCX/3qVznbfPHFFwghuPjii0txKScJoermm2+uSn/pvP7660yfPp1Vq1bVpH+DwWAwGAwednsPwGAwGOqRpqYmrrrqKoC6i6KrNvXk65133kljYyPr1q3jueee49prr+WFF17gtddeKzrSCDzh79hjj+XII4+s3WDjPPzww3z88cdceOGFKduHDRtGc3MzgUCg5mNInLdIJMKiRYt49tlnOe2005gxYwb//ve/2WijjZJt7733XpRSJfX/6aefctVVV7HvvvuWFC04d+5cpKzt3xjzje25556r6bFz0dzczKxZs7jyyivrPmppxowZrFu3Lvn/p59+mkceeYRbb72VDTbYILl9991355RTTuHyyy+v6Xg+//xzpJScffbZDBo0iJUrV/Lggw+y995789RTT3HQQQeltB81ahQ///nPAVi7di2fffYZjz/+OPfeey8XXXQRt9xyS1XHN2vWLG677Ta23nprttpqK2bPnl30vk1NTUyZMoVdd92Vs88+mwEDBjBr1iymTZvGzJkzeeGFF3I+53baaSe23HJLHnnkEa655pqsbR5++GEATjnllJL9ag9ef/11rrrqKiZPnkzv3r3bezgGg8FgMHRajPBnMBgMbcj69evp3r17ew+jbjn22GOTYsPZZ5/NMcccw9///nfeeOMNdtttt3YeXWkIIQiHw21yLP95A5g6dSoPPfQQEydO5LjjjuONN95IvldrIVJrTUtLCw0NDYRCoZoeqxDBYLBdjrts2TKAosSM9n4mpIvjixcv5pFHHuHII4/MKvLadm2/Op5xxhmcccYZKdvOPfdcRo4cyYwZMzKEvyFDhmQIXTfccAMnnXQSt956K5ttthnnnHNO1cZ3+OGHs2rVKnr06MHNN99ckvAXDAZ57bXX2H333ZPbzjzzTIYPH54U/8aNG5dz/5NPPplf//rXvPHGG+y6664Z7z/yyCNsueWW7LTTTiX51FVpaWkhGAzW/I8TBoPBYDC0N+aTzmAwdCkmT55MY2MjixYt4sgjj6SxsZH+/ftzySWX4Lou4KU39e/fH4CrrroqmUrmX69qzpw5HHvssfTt25dwOMyYMWP4v//7v5RjJVKNX375Zc4991wGDBjA0KFDgdYUzTlz5nD88cfTs2dP+vXrxwUXXJCR8uU4DldffTWbbLIJoVCI4cOH88tf/rJgGmc0GmXq1KmMHj2aXr160b17d/baay9efPHFZJtq+QrwySefsP/++9PQ0MDQoUO55pprSo4sS2f//fcHYN68eYAnkvz85z9no402IhQKscUWW3DzzTejtU7uI4Rg/fr1PPDAA0l//OvMLVq0iNNOO42BAwcSCoXYZpttuO+++1KO+9JLLyGE4G9/+xvXXnstQ4cOJRwOc8ABB/Dll18m2+2777489dRTzJ8/P3mshFiSbT2nDz/8kMmTJzNy5MhkGuNpp53GDz/8UNF5ysbJJ5/MGWecwZtvvsl///vf5PZsa/w9+uijjB49mh49etCzZ0+22247fve73wHePD7uuOMA2G+//ZJ+JlLDhw8fzmGHHcazzz7LmDFjaGho4O67706+5z/3CZqamjjrrLPo168fPXv2ZOLEiaxcuTKlTa414vx9FhpbtjX+li5dyumnn87AgQMJh8PssMMOPPDAAylt/CmO99xzT/Le23nnnXn77beznu8E06dPZ9iwYQBceumlKXMicd9/+umnnHTSSfTp04c999wTKP4+T5zvl156KXm+t9tuu6TPf//739luu+0Ih8OMHj2a999/P+94SyHbGn+RSISLLrqI/v3706NHDw4//HAWLlyY0ubFF19ECME//vGPjD4ffvhhhBDMmjUr53G7detG//79i04JbWho4K9//St9+/bl2muvTXk+VErfvn3p0aNHWfsGg8EU0S/BUUcdBcBnn32Wd/+TTz4ZaI3s8/Puu+8yd+7cZJtaEYvFuOqqq9hss80Ih8P069ePPffcM+UZA/DCCy+w11570b17d3r37s0RRxyR4t/06dO59NJLARgxYkTy3k1Pm/7nP//Jtttum3xWP/PMMxljKuWZ/uijj/KrX/2KIUOG0K1bN9asWZP8XrBgwQIOO+wwGhsbGTJkCHfccQcAH330Efvvvz/du3dn2LBhGed/xYoVXHLJJWy33XY0NjbSs2dPDj74YD744IOyz7PBYDAYDNXERPwZDIYuh+u6jB8/nrFjx3LzzTfz/PPP8//+3/9jk0024ZxzzqF///7ceeednHPOORx11FEcffTRAGy//faAJ3DtscceDBkyhMsvv5zu3bvzt7/9jSOPPJInn3wy+SMuwbnnnkv//v2ZOnUq69evT3nv+OOPZ/jw4Vx33XW88cYb3HbbbaxcuZK//OUvyTZnnHEGDzzwAMceeyw///nPefPNN7nuuuv47LPPsv6QTrBmzRr++Mc/cuKJJ3LmmWeydu1a/vSnPzF+/HjeeustRo0aVTVfFy9ezH777YfjOMl299xzDw0NDRVdq6+++gqAfv36obXm8MMP58UXX+T0009n1KhRPPvss1x66aUsWrSIW2+9FYC//vWvnHHGGeyyyy785Cc/AWCTTTYBYMmSJey6667JheP79+/Pf/7zH04//XTWrFmTka57/fXXI6XkkksuYfXq1dx4442cfPLJyfXDrrzySlavXs3ChQuTx29sbMzpz3//+1++/vprpkyZwqBBg/jkk0+45557+OSTT3jjjTdKSmcuhlNPPZV77rmH5557jh/96Ec5x3TiiSdywAEHcMMNNwCeAPHaa69xwQUXsPfee3P++edz22238ctf/pKtttoKIPkveCm9J554ImeddRZnnnkmW2yxRd5xnXfeefTu3Zvp06czd+5c7rzzTubPn5/8cV4sxYzNT3NzM/vuuy9ffvkl5513HiNGjODxxx9n8uTJrFq1igsuuCCl/cMPP8zatWs566yzEEJw4403cvTRR/P111/njJw8+uij6d27NxdddBEnnngihxxySMacOO6449hss8347W9/mxSlSrnPv/zyS0466STOOussTjnlFG6++WYmTJjAXXfdxS9/+UvOPfdcAK677jqOP/74mqZcn3HGGTz44IOcdNJJ7L777rzwwgsceuihKW323XdfNtpoIx566KGM5+NDDz3EJptskhHRu2bNGqLRKMuXL+cvf/kLH3/8Mb/85S+LHldjYyNHHXUUf/rTn/j000/ZZpttyneyxixevBggJWo3GyNGjGD33Xfnb3/7G7feeiuWZSXfS4hRJ510Uu0GiifYXXfddcln7Jo1a3jnnXd47733ks+Y559/noMPPpiRI0cyffp0mpubuf3229ljjz147733GD58OEcffTSff/55Rlp54g9RAP/73//4+9//zrnnnkuPHj247bbbOOaYY1iwYAH9+vUDSn+mX3311QSDQS655BIikUgyKth1XQ4++GD23ntvbrzxRh566CHOO+88unfvzpVXXsnJJ5/M0UcfzV133cXEiRPZbbfdGDFiBABff/01//znPznuuOMYMWIES5Ys4e6772afffbh008/ZfDgwTW9JgaDwWAwFEQbDAZDJ+X+++/XgH777beT2yZNmqQB/Zvf/Cal7Y477qhHjx6d/P+yZcs0oKdNm5bR7wEHHKC322473dLSktymlNK777673myzzTKOv+eee2rHcVL6mDZtmgb04YcfnrL93HPP1YD+4IMPtNZaz549WwP6jDPOSGl3ySWXaEC/8MILyW377LOP3meffZL/dxxHRyKRlP1WrlypBw4cqE877bSq+nrhhRdqQL/55pvJbUuXLtW9evXSgJ43b15G39nOx9y5c/WyZcv0vHnz9N13361DoZAeOHCgXr9+vf7nP/+pAX3NNdek7HvsscdqIYT+8ssvk9u6d++uJ02alHGc008/XW+44YZ6+fLlKdt//OMf6169eummpiattdYvvviiBvRWW22Vcg5/97vfaUB/9NFHyW2HHnqoHjZsWMax5s2bpwF9//33J7cl+vfzyCOPaEC/8soryW2JuVPseVu2bFnW91euXKkBfdRRRyW3TZo0KWW8F1xwge7Zs2fGHPXz+OOPa0C/+OKLGe8NGzZMA/qZZ57J+p7/OiT8Gj16tI5Go8ntN954owb0v/71r+S2XHMyvc98Y0u/J2bMmKEB/eCDDya3RaNRvdtuu+nGxka9Zs0arXXrtevXr59esWJFsu2//vUvDej/7//7/zKO5Sex/0033ZSyPXG9TjzxxJTtpdznifP9+uuvJ7c9++yzGtANDQ16/vz5ye133313znOTi5tuuinn3EuMP33c5557bkq7k046KeP6XXHFFToUCulVq1Ylty1dulTbtp31Oo8fP14DGtDBYFCfddZZurm5OaXNsGHD9KGHHprTl1tvvTVjXlWTfOeqFMaNG6d79uypV65cWbDtHXfcoQH97LPPJre5rquHDBmid9ttt4rGkU62ebzDDjvkPedaaz1q1Cg9YMAA/cMPPyS3ffDBB1pKqSdOnJjclu/8Ja67/7n+wQcfaEDffvvtyW2lPtNHjhyZ8RxOfC/47W9/m9y2cuVK3dDQoIUQ+tFHH01unzNnTsbcbmlp0a7rpvQ5b948HQqFUr5rZPtMMBgMBoOhLTCpvgaDoUty9tlnp/x/r7324uuvvy6434oVK3jhhRc4/vjjWbt2LcuXL2f58uX88MMPjB8/ni+++IJFixal7HPmmWemRGb4+elPf5ry/5/97GeAt8C+/9/0Ko2JxeyfeuqpnGO1LCsZzaCUYsWKFTiOw5gxY3jvvfeq6uvTTz/Nrrvuyi677JLcv3///iWnnW2xxRb079+fESNGcNZZZ7Hpppvy1FNP0a1bN55++mksy+L888/POBdaa/7zn//k7VtrzZNPPsmECRPQWif9Wb58OePHj2f16tUZ52XKlCkp68TttddeAEXNlWz4IyBbWlpYvnx5cq2uYq5JqSQizdauXZuzTe/evVm/fn1Gql4pjBgxgvHjxxfd/ic/+UlKxNw555yDbdvJ+V4rnn76aQYNGsSJJ56Y3BYIBDj//PNZt24dL7/8ckr7E044gT59+iT/X+n1T5D+/Cn1Pt96661TIuTGjh0LeKnxG2+8ccb2Ssebi8S40+/J9CgrgIkTJxKJRHjiiSeS2x577DEcx8lajOL666/nueee409/+hO77ror0WgUx3FKGl8x87+9+e1vf8vzzz/P9ddfX9SakCeccAKBQCAl3fTll19m0aJFNU/zBe958cknn/DFF19kff/7779n9uzZTJ48mb59+ya3b7/99vzoRz8q6R4fN25cMlo70UfPnj2T87mcZ/qkSZNyRqL715bs3bs3W2yxBd27d+f4449Pbt9iiy3o3bt3yj0VCoWSEbWu6/LDDz/Q2NjIFltsUZPnusFgMBgMpWJSfQ0GQ5cjHA6npBMB9OnTJ2ONsWx8+eWXaK359a9/za9//eusbZYuXcqQIUOS/0+kA2Vjs802S/n/JptsgpQyuc7R/PnzkVKy6aabprQbNGgQvXv3Zv78+XnH+8ADD/D//t//Y86cOcRisaLGlKAUX+fPn58UGfwUSvlM58knn6Rnz54EAgGGDh2a8qNv/vz5DB48OGN9rURaZ6FzsWzZMlatWsU999zDPffck9MfP34RBUiKQMXMlWysWLGCq666ikcffTTjWKtXry6rz3wkqrXmW5Ps3HPP5W9/+xsHH3wwQ4YM4cADD+T444/PKKKQj2Lmk5/0ed/Y2MiGG26Ysb5XtZk/fz6bbbZZRtprrjlU7eufIP18lXqfp4+rV69eACnVm/3bKx1vLhLj9t+nkP2+33LLLdl555156KGHOP300wEvzXfXXXfN8Bu8ar0JTjnlFHbaaScmT56cIhwWopj5v3r1apqbm5P/DwaDKYJVLXnsscf41a9+xemnn150AZJ+/foxfvx4/vGPf3DXXXcRDod5+OGHsW07RaDKhuu6ycIzCfr27VtSEZzf/OY3HHHEEWy++eZsu+22HHTQQZx66qnJ5SESczXbHNhqq6149tlniy5okz7PIfWzupxneq5nVbbvBb169WLo0KEZyw/06tUr5Z5SSvG73/2OP/zhD8ybNy+5XjCQTEk2GAwGg6E9McKfwWDocuSKviuGRLGKSy65JGeEU/qP2FLWucu1vlk5a789+OCDTJ48mSOPPJJLL72UAQMGYFkW1113XXLtvHyU42ul7L333gXXuSqXhD+nnHIKkyZNytom8eM1Qa65osssFnD88cfz+uuvc+mllzJq1CgaGxtRSnHQQQdVXAglGx9//DGQ/zoNGDCA2bNn8+yzz/Kf//yH//znP9x///1MnDgxo+hFLipdy7EU/D+qa021r3+CXOer2Ps817hqNd5qMXHiRC644AIWLlxIJBLhjTfe4Pe//33B/YLBIIcffjjXX389zc3NRc+3Yub/BRdckDLP99lnn2ShlFry3//+l4kTJ3LooYdy1113lbTvKaecwr///W/+/e9/c/jhh/Pkk09y4IEHZghX6Xz77bcZwteLL76YUQAnH3vvvTdfffUV//rXv3juuef44x//yK233spdd92VUY25UgrN53Ke6bnmTiX31G9/+1t+/etfc9ppp3H11VfTt29fpJRceOGFNXmuGwwGg8FQKkb4MxgMhizk+gE+cuRIwEsPHDduXMXH+eKLL1J+iH355ZcopZJVQIcNG4ZSii+++CKlYMGSJUtYtWpVsnpoNp544glGjhzJ3//+9xR/pk2bltKuGr4OGzYsa+rX3Llz8+5XCsOGDeP5559n7dq1KRE8c+bMSb6fIJtPiaqjrutW5drlO1Y2Vq5cycyZM7nqqquYOnVqcnuulLlq8Ne//hWgYBpuMBhkwoQJTJgwAaUU5557LnfffTe//vWv2XTTTatedOSLL75gv/32S/5/3bp1fP/99xxyyCHJbX369Mmo4hqNRvn+++9TtpUytmHDhvHhhx+ilEqJ+ss2h9qSSu7z9iQx7q+++iolwivXff/jH/+Yiy++mEceeYTm5mYCgQAnnHBCUcdqbm5Ga83atWuLEv7WrVvHP/7xDzbaaKOcxV4AfvGLX6SkGvtTu2vFm2++yVFHHcWYMWP429/+hm2X9nX88MMPp0ePHjz88MMEAgFWrlxZVJrvoEGDMlL6d9hhh5KODV6U4JQpU5gyZQrr1q1j7733Zvr06ZxxxhnJuZptDsyZM4cNNtggGe1X6XOlVs/0UnniiSfYb7/9+NOf/pSyfdWqVTX7Q5bBYDAYDKVg1vgzGAyGLHTr1g0gQ3gYMGAA++67L3fffXeGAAFkpFEV4o477kj5/+233w7AwQcfDJAUQmbMmJHS7pZbbgHIqJ7pJxGp4I9MePPNN5k1a1ZKu2r4esghh/DGG2/w1ltvpbz/0EMP5RxfqRxyyCG4rpsRIXTrrbcihEieM4Du3btn+GNZFscccwxPPvlkMhLIT6nXzn+sYtJ0s10PyLy21eLhhx/mj3/8I7vtthsHHHBAznY//PBDyv+llMkomUgkApD8oZ5+TsvlnnvuSUk9v/POO3EcJ+UabrLJJrzyyisZ+6VH/JUytkMOOYTFixfz2GOPJbc5jsPtt99OY2Mj++yzTznuVEwl93l7krhet912W8r2XHN6gw024OCDD+bBBx/koYce4qCDDsoQRtJTM8G7tk8++SQbbbQRAwYMKDiu5uZmTj31VFasWMGVV16ZV2DaeuutGTduXPI1evTogv0Xy1dffZURXf3ZZ59x6KGHMnz4cP7973+XFS3b0NDAUUcdxdNPP82dd95J9+7dOeKIIwruFw6HU3wdN25cyUJn+vOisbGRTTfdNPms2HDDDRk1ahQPPPBAyj358ccf89xzz6WI+5U+V2r1TC9nHOnP9ccffzxjvV+DwWAwGNoLE/FnMBgMWWhoaGDrrbfmscceY/PNN6dv375su+22bLvtttxxxx3sueeebLfddpx55pmMHDmSJUuWMGvWLBYuXMgHH3xQ9HHmzZvH4YcfzkEHHcSsWbN48MEHOemkk5JRGDvssAOTJk3innvuYdWqVeyzzz689dZbPPDAAxx55JEpUVPpHHbYYfz973/nqKOO4tBDD2XevHncddddbL311sm1r6rl6y9+8Qv++te/ctBBB3HBBRfQvXt37rnnnmSEVTWYMGEC++23H1deeSXffPMNO+ywA8899xz/+te/uPDCC1PWGRs9ejTPP/88t9xyC4MHD2bEiBGMHTuW66+/nhdffJGxY8dy5plnsvXWW7NixQree+89nn/+eVasWFHyuEaPHs1jjz3GxRdfzM4770xjYyMTJkzIaNezZ0/23ntvbrzxRmKxGEOGDOG5555j3rx5FZ0X8CJOGhsbiUajLFq0iGeffZbXXnuNHXbYgccffzzvvmeccQYrVqxg//33Z+jQocyfP5/bb7+dUaNGJSOlRo0ahWVZ3HDDDaxevZpQKMT+++9flAiTjWg0ygEHHMDxxx/P3Llz+cMf/sCee+7J4YcfnjKus88+m2OOOYYf/ehHfPDBBzz77LMZQlEpY/vJT37C3XffzeTJk3n33XcZPnw4TzzxBK+99hozZszIuxZcLankPm9PRo0axYknnsgf/vAHVq9eze67787MmTP58ssvc+4zceJEjj32WACuvvrqjPcPPvhghg4dytixYxkwYAALFizg/vvv57vvvksRbBMsWrSIBx98EPCi/D799FMef/xxFi9ezM9//nPOOuusKnnrsXr16uQfaF577TUAfv/739O7d2969+7Neeedl2ybENwTa1euXbuW8ePHs3LlSi699NKMoi2bbLJJStGWfJxyyin85S9/4dlnn+Xkk08uas28arD11luz7777Mnr0aPr27cs777zDE088keL3TTfdxMEHH8xuu+3G6aefTnNzM7fffju9evVi+vTpyXYJkfXKK6/kxz/+MYFAgAkTJpTkSy2e6aVy2GGH8Zvf/IYpU6aw++6789FHH/HQQw8lo+YNBoPBYGh32r6QsMFgMLQN999/vwb022+/ndw2adIk3b1794y206ZN0+mPxNdff12PHj1aB4NBDehp06Yl3/vqq6/0xIkT9aBBg3QgENBDhgzRhx12mH7iiSfyHj/9eJ9++qk+9thjdY8ePXSfPn30eeedp5ubm1PaxmIxfdVVV+kRI0boQCCgN9poI33FFVfolpaWlHb77LOP3meffZL/V0rp3/72t3rYsGE6FArpHXfcUf/73//WkyZN0sOGDauqr1pr/eGHH+p99tlHh8NhPWTIEH311VfrP/3pTxrQ8+bNyzgH2c7HsmXL8rZbu3atvuiii/TgwYN1IBDQm222mb7pppu0Uiql3Zw5c/Tee++tGxoaNKAnTZqUfG/JkiX6pz/9qd5oo410IBDQgwYN0gcccIC+5557km1efPFFDejHH388pd958+ZpQN9///3JbevWrdMnnXSS7t27twaS5zZb24ULF+qjjjpK9+7dW/fq1Usfd9xx+rvvvss454m5U+x5S7zC4bAeOnSoPuyww/R9992XMUe01hnX/4knntAHHnigHjBggA4Gg3rjjTfWZ511lv7+++9T9rv33nv1yJEjtWVZGtAvvvii1lrrYcOG6UMPPTTr+IYNG5Zy7hN+vfzyy/onP/mJ7tOnj25sbNQnn3yy/uGHH1L2dV1XX3bZZXqDDTbQ3bp10+PHj9dffvllRp/5xpZ+T2jtXf8pU6boDTbYQAeDQb3ddtulXCOtW6/dTTfdlOFT+rXKRq79883zYu/zXOcb0D/96U+L9iMXN910U865l+052dzcrM8//3zdr18/3b17dz1hwgT97bff5jxPkUhE9+nTR/fq1SvjWae11r///e/1nnvuqTfYYANt27bu37+/njBhgn7llVcy2g4bNiw594UQumfPnnqbbbbRZ555pn7zzTeL9rkUEuc02yv9uTps2LCUbfn2TX9OFcJxHL3hhhtqQD/99NPVcS6NbPPnmmuu0bvssovu3bu3bmho0FtuuaW+9tprdTQaTdn3+eef13vssYduaGjQPXv21BMmTNCffvppxjGuvvpqPWTIEC2lTJl32eaz1pnPFK0re6Zrnft7wT777KO32WabrGPw34MtLS365z//ud5www11Q0OD3mOPPfSsWbMynj/ZPhMMBoPBYGgLhNZ1suKzwWAwdCGmT5/OVVddxbJly8waQAaDocvgOA6DBw9mwoQJGWuiGQwGg8FgMBiqj1njz2AwGAwGg8HQJvzzn/9k2bJlTJw4sb2HYjAYDAaDwdAlMGv8GQwGg8FgMBhqyptvvsmHH37I1VdfzY477thuhVQMBoPBYDAYuhom4s9gMBgMBoPBUFPuvPNOzjnnHAYMGMBf/vKX9h6OwWAwGAwGQ5ehQ63x98orr3DTTTfx7rvv8v333/OPf/yDI488sr2HZTAYDAaDwWAwGAwGg8Fg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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "showGrid = False\n", + "\n", + "fig, (ax) = plt.subplots(3, 1, figsize=(14, 8))\n", + "\n", + "contour0 = ax[0].contourf(XI1, YI1, VI_effdos_12V - VI_effdos_12V.min(), levels=250, cmap='turbo') # Set the maximum value for the color scale\n", + "ax[0].set_xlabel('x (um)')\n", + "ax[0].set_ylabel('y (um)')\n", + "ax[0].set_title('Interpolated Potential Distribution from Tidy3D - 1.2 V - Eff. DOS')\n", + "fig.colorbar(contour0, label='Potential', ax=ax[0])\n", + "\n", + "\n", + "contour1 = ax[1].contourf(XI1, YI1, VI_cst_12V- VI_cst_12V.min(), levels=250, cmap='turbo') # Set the maximum value for the color scale\n", + "ax[1].set_xlabel('x (um)')\n", + "ax[1].set_ylabel('y (um)')\n", + "ax[1].set_title('Interpolated Potential Distribution from Tidy3D - 1.2 V - Constant DOS')\n", + "fig.colorbar(contour1, label='Potential', ax=ax[1])\n", + "\n", + "\n", + "contour2 = ax[2].contourf(XI1, YI1, VI_iso_12V - VI_iso_12V.min(), levels=250, cmap='turbo') # Set the maximum value for the color scale\n", + "ax[2].set_xlabel('x (um)')\n", + "ax[2].set_ylabel('y (um)')\n", + "ax[2].set_title('Interpolated Potential Distribution from Tidy3D - 1.2 V - Isothermal')\n", + "fig.colorbar(contour2, label='Potential', ax=ax[2])\n", + "\n", + "plt.tight_layout()" + ] + }, + { + "cell_type": "markdown", + "id": "8c6c36ad-4718-456e-a44e-37992c406863", + "metadata": {}, + "source": [ + "### Temperature distribution" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "id": "dd923284-ccad-48bb-abeb-fd5d3ff560b7", + "metadata": {}, + "outputs": [], + "source": [ + "# Interpolating Tidy3d results - Eff. DOS\n", + "x_vector1 = results[\"temp_mnt\"].temperature.points[:, 0].values\n", + "y_vector1 = results[\"temp_mnt\"].temperature.points[:, 1].values\n", + "t_vector1 = results[\"temp_mnt\"].temperature.sel(voltage=1.2).values.values[:,0]\n", + "XI1, YI1, TI1 = getInterpolatedData(x_vector1, y_vector1, t_vector1)\n", + "\n", + "# Interpolating Tidy3d results - cst\n", + "t_vector_cst = results_cst[\"temp_mnt\"].temperature.sel(voltage=1.2).values.values[:,0]\n", + "XI1, YI1, TI_cst = getInterpolatedData(x_vector1, y_vector1, t_vector_cst)" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "a0f30126-b7ee-4571-a546-f3e76ce29eb3", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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/DIeeOABrF+/3mv/CxcuIDc3F/fccw/69euH9957Dw899BBMJhMeeOCBkMq0fv16vPfeexg9ejSqVKniFhrmzp2LO+64AwMGDEBhYSFWrVqFu+++G5999hluu+02ANKiEsOHD0e7du0wcuRIACg18A0UX+U4deoU2rdv7xYPU1JS8OWXX2LYsGG4fPlyUGm8JYmLi8Odd96JN954A7t370bTpk19fm/UqFFYvXo1Ro8ejSZNmuDcuXP4/vvv8eeff+K6667D888/j0uXLnmlm8fFxXn9xtSpU2EymfDUU0/BZrOVmUocSBsHSiBl8+Trr79Gjx49ULduXUyaNAn5+fmYN28ebrjhBvzyyy+lxN577rkHderUwbRp0/DLL79gyZIlqFq1KmbMmOH3GHPmzMFbb72FNWvWYMGCBYiLi3P7NCCl5vbr1w8PPvggRowYgYYNG+LUqVPo0KEDrl27hsceewyVK1fGsmXLcMcdd2D16tWlrmvTpk2D1WrFs88+i3379mHevHkwGo3geR4XLlzApEmT8OOPP+LNN99EnTp1MGHChKDqNVACvfbcf//9eOutt7Bu3TrcfvvtXvuvX7++1PxyjDGcO3cOdrsdf//9N5599lkIghDU1At9+/bFsGHD8L///Q8vvvhihex04Xowc//99wf0fbnPtz/++AO33347WrRogSlTpsBsNmPfvn3u+fwaN26MKVOmYMKECRg5ciQ6duwIAO5IPbnIzs5GZmYmvvrqK/d7n376KSwWC+655x6f+9SpUwc33ngj1q9fj/z8fFitVqSnp+Prr7/G+vXrZU//JgiCIIiwwAiCIIgyWbp0KQPAtm3b5n5v8ODBDACbMmWK13dbt27N2rRp4/7/zJkzDACbOHFiqd/t3Lkza968OSsoKHC/J4oi69ChA6tfv36p4994443Mbrd7/cbEiRMZAHbHHXd4vf/www8zAGznzp2MMcZ27NjBALDhw4d7fe+pp55iANj69evd73Xq1Il16tTJ/b/dbmc2m81rvwsXLrDU1FT2wAMPyGrr2LFjGQC2detW93unT59mCQkJDAA7ePBgqd/2x2233cbS09Pd/7/99tuM53m2adMmr+8tXLiQAWA//PCD+z0AzGw2ex1v0aJFDACrVq0au3z5svv98ePHlypbp06dGAD2yiuvuN+z2WysVatWrGrVqqyw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+ny9evWQlZUFAMjKyvJKDLr/7v5bRbKyslC3bl2v90wmE1JSUir9TjhhcrAakiQjKTkZEiRA4jgBwZSXl4fGjRvj8OHDSEhICHVxiCIS44xIf4wzIv0xzoj0xRjTmRAQEJCk6O2NKEkSklNSzqn1ZFx8Ao4fP+71XmWtBtu0aYNt27YhNzcXS5cuRWZmJr799tuA5x3pmByshqsve/QGsJ4kSUJ+fj4kSYracReI9MY4I9If44xIf4wzIn0xxqgmuFoPBt7oKiYmBjExMT591mKxoFWrVgCAbt26YdOmTXj55Zdx4403wm63Iycnx6v14LFjx1C/fn0AQP369fHTTz95/d6xY8c8f6tI/fr1yyUunU4nTp8+Xel3wgmjnoiIiIiIiIiIIpamabDZbOjWrRvMZjNWrVrl+dvu3btx6NAhpKenAwDS09Oxfft2r2TfypUrUbt2bbRv377C309PT0dOTg62bNnieW/16tXQNA09evTQqVbBw5aDREREREREREQUEaZMmYLBgwejadOmyMvLw8KFC7F27VqsWLECiYmJGDt2LB588EGkpKSgdu3auO+++5Ceno6ePXsCAK644gq0b98et956K5599llkZWXh3//+N+69915PN+affvoJo0ePxqpVq9CoUSO0a9cOgwYNwrhx4/DGG2/A4XBgwoQJGDlyZNg/qRhgcpBCyGq1Ytq0aVU+WYiIzg3jjEh/jDMi/THOiPTFGKNIcvz4cYwePRpHjx5FYmIiOnXqhBUrVmDgwIEAgBdffBGyLGP48OGw2WzIyMjA66+ffQitoij4/PPPcffddyM9PR1xcXHIzMzE448/7vlMYWEhdu/eDYfD4Xnvgw8+wIQJE9C/f3/P77/yyis1V/FzIAk+S5uIiIiIiIiIiCgqccxBIiIiIiIiIiKiKMXkIBERERERERERUZRicpCIiIiIiIiIiChKMTlIREREREREREQUpZgcpJA7cOAAxo4di7S0NMTGxqJly5aYNm0a7HZ7qItGFFGefPJJXHLJJahVqxaSkpJCXRyiiPDaa6+hefPmiImJQY8ePfDTTz+FukhEEeW7777D1VdfjYYNG0KSJHzyySehLhJRRJk1axYuuugiJCQkoG7duhg2bBh2794d6mIRUQ1jcpBCbteuXdA0DW+++SZ+//13vPjii3jjjTfwr3/9K9RFI4oodrsd119/Pe6+++5QF4UoInz00Ud48MEHMW3aNGzduhWdO3dGRkYGjh8/HuqiEUWMgoICdO7cGa+99lqoi0IUkb799lvce++92LBhA1auXAmHw4ErrrgCBQUFoS4aEdUgSQghQl0IorJmz56NOXPmYN++faEuClHEmTdvHiZOnIicnJxQF4XI0Hr06IGLLroI//nPfwAAmqahSZMmuO+++/DII4+EuHREkUeSJCxbtgzDhg0LdVGIItaJEydQt25dfPvtt7j88stDXRwiqiFsOUhhKTc3FykpKaEuBhERUYXsdju2bNmCAQMGeN6TZRkDBgzA+vXrQ1gyIiKiwOXm5gIAr8WIogyTgxR29uzZg1dffRV33nlnqItCRERUoZMnT0JVVdSrV8/r/Xr16iErKytEpSIiIgqcpmmYOHEievXqhY4dO4a6OERUg5gcJN088sgjkCSpyn+7du3y+s6RI0cwaNAgXH/99Rg3blyISk5kHIHEGRERERFRWffeey9+++03LFq0KNRFIaIaZgp1AShyPfTQQxgzZkyVn2nRooVn+u+//0bfvn1xySWX4K233tK5dESRwd84I6LgOO+886AoCo4dO+b1/rFjx1C/fv0QlYqIiCgwEyZMwOeff47vvvsOjRs3DnVxiKiGMTlIuklNTUVqaqpPnz1y5Aj69u2Lbt26Ye7cuZBlNmol8oU/cUZEwWOxWNCtWzesWrXK83AETdOwatUqTJgwIbSFIyIi8pEQAvfddx+WLVuGtWvXIi0tLdRFIqIQYHKQQu7IkSPo06cPmjVrhueeew4nTpzw/I2tL4iC59ChQzh9+jQOHToEVVWxbds2AECrVq0QHx8f2sIRGdCDDz6IzMxMdO/eHRdffDFeeuklFBQU4Lbbbgt10YgiRn5+Pvbs2eN5vX//fmzbtg0pKSlo2rRpCEtGFBnuvfdeLFy4EP/3f/+HhIQEz7i5iYmJiI2NDXHpiKimSEIIEepCUHSbN29epRdS3DyJgmfMmDGYP39+uffXrFmDPn361HyBiCLAf/7zH8yePRtZWVno0qULXnnlFfTo0SPUxSKKGGvXrkXfvn3LvZ+ZmYl58+bVfIGIIowkSRW+P3fu3GqHriGiyMHkIBERERERERERUZTiwG5ERERERERERERRislBIiIiIiIiIiKiKMXkIBERERERERERUZRicpCIiIiIiIiIiChKMTlIREREREREREQUpZgcJCIiIiIiIiIiilJMDhIREREREREREUUpJgeJiIiIiIiIiIiiFJODRERERNV49913ccUVV+g+n6+++gpdunSBpmm6z4uIiIiICGBykIiIiKhKxcXFeOyxxzBt2jTd5zVo0CCYzWZ88MEHus+LiIiIiAhgcpCIiIioSkuXLkXt2rXRq1evGpnfmDFj8Morr9TIvIiIiIiImBwkIiKiqHDixAnUr18fTz31lOe9H3/8ERaLBatWrar0e4sWLcLVV1/t9V6fPn0wceJEr/eGDRuGMWPGeF43b94cTzzxBEaPHo34+Hg0a9YMn376KU6cOIGhQ4ciPj4enTp1wubNm71+5+qrr8bmzZuxd+/ewCtLREREROQjJgeJiIgoKqSmpuK///0vpk+fjs2bNyMvLw+33norJkyYgP79+1f6vXXr1qF79+4BzfPFF19Er1698PPPP2PIkCG49dZbMXr0aNxyyy3YunUrWrZsidGjR0MI4flO06ZNUa9ePXz//fcBzZOIiIiIyB9MDhIREVHUuPLKKzFu3DiMGjUKd911F+Li4jBr1qxKP5+Tk4Pc3Fw0bNgw4PndeeedaN26NaZOnYozZ87goosuwvXXX4/zzz8f//znP7Fz504cO3bM63sNGzbEwYMHA5onEREREZE/mBwkIiKiqPLcc8/B6XRiyZIl+OCDD2C1Wiv9bFFREQAgJiYmoHl16tTJM12vXj0AwAUXXFDuvePHj3t9LzY2FoWFhQHNk4iIiIjIH0wOEhERUVTZu3cv/v77b2iahgMHDlT52Tp16kCSJGRnZ3u9L8uyV1dgAHA4HOW+bzabPdOSJFX6nqZpXt87ffo0UlNTq68MEREREdE5YnKQiIiIoobdbsctt9yCG2+8ETNnzsQdd9xRrtVeaRaLBe3bt8eOHTu83k9NTcXRo0c9r1VVxW+//RaUMhYXF2Pv3r3o2rVrUH6PiIiIiKgqTA4SERFR1Hj00UeRm5uLV155Bf/85z9x/vnn4/bbb6/yOxkZGVi3bp3Xe/369cPy5cuxfPly7Nq1C3fffTdycnKCUsYNGzbAarUiPT09KL9HRERERFQVJgeJiIgoKqxduxYvvfQS3n//fdSuXRuyLOP999/H999/jzlz5lT6vbFjx+KLL75Abm6u573bb78dmZmZGD16NHr37o0WLVqgb9++QSnnhx9+iFGjRqFWrVpB+T0iIiIioqpIouyAOURERETk5frrr8eFF16IKVOm6DqfkydPok2bNti8eTPS0tJ0nRcREREREcCWg0RERETVmj17NuLj43Wfz4EDB/D6668zMUhERERENYYtB4mIiIiIiIiIiKIUWw4SERERERERERFFKSYHiYiIiIiIiIiIohSTg0RERERERERERFGKyUEiIiIiIiIiIqIoxeQgERERERERERFRlGJykIiIiIiIiIiIKEoxOUhERERERERERBSlmBwkIiIiIiIiIiKKUkwOEhERERERERERRSkmB4mIiIiIiIiIiKIUk4NERERERERERERRislBIiIiIiIiIiKiKMXkIBERERERERERUZRicpCIiIiIiIiIiChKMTlIRERB0adPH/Tp0yfUxfAyb948SJKEAwcOhLooFEYkScL06dN1n8/atWshSRLWrl3rea9Pnz7o2LGj7vMGgAMHDkCSJMybN69G5lfW+++/j7Zt28JsNiMpKSkkZQi25s2bY8yYMdV+jvsel8q2gdmzZ6NFixZQFAVdunQJWfmIiIjIhclBIiKduC8ON2/e7Pd3CwsLMX36dK+kQqQKZV3dyRNf/kXzRf5TTz2FTz75JNTFqFDz5s0960iWZSQlJeGCCy7A+PHjsXHjxqDNZ+HChXjppZeC9nvBFI5l27VrF8aMGYOWLVvi7bffxltvvRXqIlXIncD15V9Neeqpp9CzZ0+kpqYiJiYGrVu3xsSJE3HixIkqy261WlGvXj306dMHTz31VLnPB0tVy+iuu+7yfK6ybeDrr7/Gww8/jF69emHu3Ll46qmnfJ73mDFjvOYXHx+PFi1aYMSIEfj444+haVqF3xNC4P3338fll1+OpKQk1KpVCxdccAEef/xxFBQUlPu8pml477330KNHD6SkpCAhIQHnn38+Ro8ejQ0bNvi5xIiIiMKfKdQFICKi8goLCzFjxgwACLvWeMEWyrqmpqbi/fff93rv+eefx+HDh/Hiiy+W+2y0euqppzBixAgMGzYs1EWpUJcuXfDQQw8BAPLy8rBz504sWbIEb7/9NiZNmoQXXnjB6/NFRUUwmfw7BVq4cCF+++03TJw40efvXH755SgqKoLFYvFrXv6qrGzNmjVDUVERzGazrvOvyNq1a6FpGl5++WW0atWqxufvq3bt2pXbB0yZMgXx8fF49NFHy31+9+7dkGV9761v2bIFXbp0wciRI5GQkICdO3fi7bffxvLly7Ft2zbExcV5ff7+++/HRRddBFVVceLECfz444+YNm0aXnjhBSxevBj9+vULehkHDhyI0aNHl3v//PPP90xXtg2sXr0asizj3XffDSg2rFYr3nnnHQCuWD548CA+++wzjBgxAn369MH//d//oXbt2p7Pq6qKm2++GYsXL8Zll12G6dOno1atWvj+++8xY8YMLFmyBN988w3q1avn+c7999+P1157DUOHDsWoUaNgMpmwe/dufPnll2jRogV69uzpd7mJiIjCGZODRERRpKCgoNyFZTSLi4vDLbfc4vXeokWLkJ2dXe79SKFpGux2O2JiYiKmHI0aNSq3vp555hncfPPNePHFF9G6dWvcfffdnr/pXffi4mJYLBbIshzS5SxJUsjmf/z4cQCotjuxEALFxcWIjY2tgVKVV69evXLbztNPP43zzjuvwn2A1WrVvUwff/xxuffS09MxYsQIfPbZZxg5cqTX3y677DKMGDHC671ffvkFV1xxBYYPH44dO3agQYMGQS3j+eefX+0+srJt4Pjx44iNjQ04aW4ymcrN+4knnsDTTz+NKVOmYNy4cfjoo488f3v22WexePFiTJ48GbNnz/a8P378eNxwww0YNmwYxowZgy+//BIAcOzYMbz++usYN25cuRavL730km4tMomIiEKJ3YqJiGrQmDFjEB8fjyNHjmDYsGGIj49HamoqJk+eDFVVAbi6urpbqc2YMcPTfar0GGm7du3CiBEjkJKSgpiYGHTv3h2ffvqp17zc3Zq//fZb3HPPPahbty4aN24MAJg+fTokScKuXbtwww03oHbt2qhTpw4eeOABFBcXe/2O0+nEzJkz0bJlS1itVjRv3hz/+te/YLPZqqyr3W7H1KlT0a1bNyQmJiIuLg6XXXYZ1qxZ4/lMsOoKAL///jv69euH2NhYNG7cGE888USlXcz8ZbPZMG3aNLRq1QpWqxVNmjTBww8/XG4ZSJKECRMmYMmSJWjfvj1iY2ORnp6O7du3AwDefPNNtGrVCjExMejTp0+5rsru8ei2bNmCSy65BLGxsUhLS8Mbb7xxzmX64IMP0KFDB1itVnz11VcAgOeeew6XXHIJ6tSpg9jYWHTr1g1Lly4t9/2CggLMnz/fs37cY66NGTMGzZs3L1c29/blazmOHDmC22+/HfXq1YPVakWHDh3w3//+t+qVUo3Y2Fi8//77SElJwZNPPgkhhFdZSm9jeXl5mDhxIpo3bw6r1Yq6deti4MCB2Lp1KwDXelm+fDkOHjzoWQbueru7di5atAj//ve/0ahRI9SqVQtnzpypcMxBt+rWcWVj1pX9zarKVtmYg6tXr8Zll12GuLg4JCUlYejQodi5c6fXZ9zrcM+ePRgzZgySkpKQmJiI2267DYWFhVUu++bNm2PatGkAXC1uSy/v5s2b46qrrsKKFSvQvXt3xMbG4s033wQA7Nu3D9dffz1SUlJQq1Yt9OzZE8uXL6+w/osXL8aMGTPQqFEjJCQkYMSIEcjNzYXNZsPEiRNRt25dxMfH47bbbqt2X+WPisYc9GXfk5mZifPOOw8Oh6Pcb15xxRVo06ZNtfMFgJycHJ/K2blzZ7z00kvIycnBf/7zH5++E0yVbQOSJGHu3LkoKCjwbK/BGhPzkUcewRVXXIElS5bgjz/+AOBqWTh79mycf/75mDVrVrnvXH311cjMzMRXX33l6S68f/9+CCHQq1evcp+XJAl169YNSnmJiIjCCVsOEhHVMFVVkZGRgR49euC5557DN998g+effx4tW7bE3XffjdTUVMyZMwd33303rr32Wlx33XUAgE6dOgFwXYj26tULjRo1wiOPPIK4uDgsXrwYw4YNw8cff4xrr73Wa3733HMPUlNTMXXq1HJjK91www1o3rw5Zs2ahQ0bNuCVV15BdnY23nvvPc9n7rjjDsyfPx8jRozAQw89hI0bN2LWrFnYuXMnli1bVmk9z5w5g3feeQc33XQTxo0bh7y8PLz77rvIyMjATz/9hC5dugStrllZWejbty+cTqfnc2+99VZQWiNpmoZrrrkG69atw/jx49GuXTts374dL774Iv74449yY/F9//33+PTTT3HvvfcCAGbNmoWrrroKDz/8MF5//XXcc889yM7OxrPPPovbb78dq1ev9vp+dnY2rrzyStxwww246aabsHjxYtx9992wWCy4/fbbAyrT6tWrsXjxYkyYMAHnnXeeJ9Hw8ssv45prrsGoUaNgt9uxaNEiXH/99fj8888xZMgQAK4HCtxxxx24+OKLMX78eABAy5YtA1qWFZXj2LFj6Nmzpyd5mJqaii+/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otQtNTUVCQkJUFVVl1ZI+fn5WLZsGZo0aeK1/VakQYMGuOeee3DPPffg+PHjuPDCC/Hkk096koPBXPe+rGN3C72yy7eiZetr2dzxWlFc7Nq1C+edd165Fo01pVmzZpWWy/33cOTvvmf06NF48MEHcfToUSxcuBBDhgzxrOvqFBcXIzc31+eyLV26FEVFRZXeXHFbuXKl1+vKHtxjBO+//z4kScLAgQMBAJdeeimSkpKwcOFCPProoxUmj90P4PIl6dq9e3d8++23OHr0aNhuk0RERIHgmINERGHI/XTEsomBunXrok+fPnjzzTdx9OjRct87ceKEX/N57bXXvF6/+uqrAOBJiFx55ZUAXE8fLc3dYs39RNuKuC/CSrfY2bhxI9avX+/1uWDU9corr8SGDRvw008/ef39gw8+qLR8vrrhhhtw5MgRvP322+X+VlRUVO4J0OfK6XTizTff9Ly22+148803kZqaim7dugWtTIqiQJIkr5ZoBw4cKPekYwCIi4urMAnYsmVL5ObmelreAK5x7ap6inXZMgwfPhwff/yxp8VPaf5uz6UVFRXh1ltvxenTp/Hoo49W2RKvbMKlbt26aNiwoVdX67i4OL8SM1XxZR27nwj93XffeZW1ou7XvpatQYMG6NKlC+bPn++1Pn/77Td8/fXXnngPhSuvvBI//fST1/6hoKAAb731Fpo3b15pq65Q83ffc9NNN0GSJDzwwAPYt28fbrnlFq+/FxQUoLCwsNz3Pv74Y2RnZ6N79+4+leuXX37BxIkTkZycXG5s2bIGDBjg9a9sS8KasGvXLhw6dOicfuPpp5/G119/jRtvvNEzZEatWrUwefJk7N69G48++mi57yxfvhzz5s1DRkaGpzt/VlZWuTEuAVecrlq1qsKhNoiIiIyOLQeJiMJQbGws2rdvj48++gjnn38+UlJS0LFjR3Ts2BGvvfYaLr30UlxwwQUYN24cWrRogWPHjmH9+vU4fPgwfvnlF5/ns3//flxzzTUYNGgQ1q9fjwULFuDmm29G586dAQCdO3dGZmYm3nrrLeTk5KB379746aefMH/+fAwbNqzKweevuuoq/O9//8O1116LIUOGYP/+/XjjjTfQvn17r4H1g1HXhx9+GO+//z4GDRqEBx54AHFxcXjrrbfQrFkzr8RVIG699VYsXrwYd911F9asWYNevXpB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gO/1oUOHkJOTg1atWqFTp05hXDOi2DBnzhysXbsW//jHP5CSkuLrNzc1NRVJSUlhXjsiaipCSinDvRIU31avXl3njRR3T6LQmT59OtasWVPj/S1btmDkyJFNv0JEMeB///d/8dhjjyE3NxcDBgzAU089haFDh4Z7tYhixtatWzFq1Kga70+bNg2rV69u+hUiijFCiFrfX7VqVYNd1xBR7GBykIiIiIiIiIiIKE6xYzciIiIiIiIiIqI4xeQgERERERERERFRnGJykIiIiIiIiIiIKE4xOUhERERERERERBSnmBwkIiIiIiIiIiKKU0wOEhERERERERERxSkmB4mIiIiIiIiIiOIUk4NERERERERERERxislBIiIiogasXLkS48aNU/497777LgYMGADbtpV/FxERERERwOQgERERUb3Ky8vx4IMPYtGiRcq/Kzs7G06nEy+99JLy7yIiIiIiApgcJCIiIqrX66+/jhYtWmDEiBFN8n3Tp0/HU0891STfRURERETE5CARERHFhVOnTiEjIwOPPPKI772PP/4YLpcLmzZtqnO+V155BRMmTKj23siRIzF//vxq702aNAnTp0/3ve7SpQsefvhhTJ06FcnJyejcuTPeeustnDp1ChMnTkRycjL69++PTz/9tNpyJkyYgE8//RTffvtt8IUlIiIiIvITk4NEREQUF9q0aYM///nPWLx4MT799FMUFxfjF7/4BebOnYsxY8bUOd+HH36IwYMHB/WdTzzxBEaMGIE9e/bgqquuwi9+8QtMnToVN910Ez777DN0794dU6dOhZTSN0+nTp2Qnp6ODz74IKjvJCIiIiIKBJODREREFDeuvPJKzJo1C1OmTMFtt92G5s2bY9myZXV+vqCgAIWFhWjfvn3Q33frrbeiZ8+eWLhwIYqKijBkyBBcd911uPDCC3H//ffjm2++wcmTJ6vN1759e3z33XdBfScRERERUSCYHCQiIqK48vjjj8M0Taxbtw4vvfQSEhIS6vzs2bNnAQCJiYlBfVf//v190+np6QCAiy++uMZ7eXl51eZLSkpCWVlZUN9JRERERBQIJgeJiIgornz77bc4fvw4bNvG4cOH6/1s69atIYTAmTNnqr2vaVq1psAAYBhGjfmdTqdvWghR53u2bVebLz8/H23atGm4MEREREREjcTkIBEREcUNj8eDm266Cddffz2WLFmCW265pUatvapcLhf69u2Lr7/+utr7bdq0wYkTJ3yvLcvCl19+GZJ1LC8vx7fffouBAweGZHlERERERPVhcpCIiIjixq9//WsUFhbiqaeewv33348LL7wQN998c73zZGVl4cMPP6z23ujRo/HOO+/gnXfewb59+3D77bejoKAgJOu4Y8cOJCQkIDMzMyTLIyIiIiKqD5ODREREFBe2bt2KJ598En/5y1/QokULaJqGv/zlL/jggw+wYsWKOuebOXMm/vWvf6GwsND33s0334xp06Zh6tSpuPzyy9GtWzeMGjUqJOv58ssvY8qUKWjWrFlIlkdEREREVB8hz+8wh4iIiIique666/DjH/8YCxYsUPo9P/zwA3r16oVPP/0UXbt2VfpdREREREQAaw4SERERNeixxx5DcnKy8u85fPgwnn32WSYGiYiIiKjJsOYgERERERERERFRnGLNQSIiIiIiIiIiojjF5CAREREREREREVGcYnKQiIiIiIiIiIgoTjE5SEREREREREREFKeYHCQiIiIiIiIiIopTTA4SERERERERERHFKSYHiYiIiIiIiIiI4hSTg0RERERERERERHGKyUEiIiIiIiIiIqI4xeQgERERERERERFRnPr/wlzEnf2YuY8AAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "showGrid = False\n", + "\n", + "fig, (ax) = plt.subplots(2, 1, figsize=(14, 8))\n", + "\n", + "contour0 = ax[0].contourf(XI1, YI1, TI_cst, levels=250, cmap='turbo')\n", + "ax[0].set_xlabel('x (um)')\n", + "ax[0].set_ylabel('y (um)')\n", + "ax[0].set_title('Interpolated Temperature Distribution from Tidy3D - Const. DOS')\n", + "fig.colorbar(contour0, label='Temperature (K)', ax=ax[0])\n", + "\n", + "\n", + "contour1 = ax[1].contourf(XI1, YI1, TI1, levels=250, cmap='turbo')\n", + "ax[1].set_xlabel('x (um)')\n", + "ax[1].set_ylabel('y (um)')\n", + "ax[1].set_title('Interpolated Temperature Distribution from Tidy3D - Eff. DOS')\n", + "fig.colorbar(contour1, label='Temperature (K)', ax=ax[1])\n", + "\n", + "\n", + "plt.tight_layout()" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "id": "02e34772-5e3e-49bf-bd30-fbeba326df49", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABQYAAAGGCAYAAAApXFxmAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8fJSN1AAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOydd7jcxPX+PzPS7r3XvWGKAdvY9GYwYLohGEzHNFMSjJ1QEloIIYUUWop/SQgllCRA6OSbBEJCGj2QkIQAwZgOAWNMMM027va9u5qZ3x9aaSWtVqvdu2tf23qfZ58djc6MRiutNHr1nnOEMcaQIUOGDBkyZMiQIUOGDBkyZMiQIUOGdQpydQ8gQ4YMGTJkyJAhQ4YMGTJkyJAhQ4YMqx4ZMZghQ4YMGTJkyJAhQ4YMGTJkyJAhwzqIjBjMkCFDhgwZMmTIkCFDhgwZMmTIkGEdREYMZsiQIUOGDBkyZMiQIUOGDBkyZMiwDiIjBjNkyJAhQ4YMGTJkyJAhQ4YMGTJkWAeREYMZMmTIkCFDhgwZMmTIkCFDhgwZMqyDyIjBDBkyZMiQIUOGDBkyZMiQIUOGDBnWQWTEYIYMGTJkyJAhQ4YMGTJkyJAhQ4YM6yAyYjBDhgwZMmTIkCFDhgwZMmTIkCFDhnUQGTGYIUOGDBkyrCKMGDGCqVOntnw777zzDkIIbrvtNr9u6tSp9OnTp+Xb9iCE4NJLL11l26uFqVOnMmLEiFBd3BifffZZ9txzT3r37o0QgpkzZwLw4IMPMmbMGNrb2xFCsGjRolUy7jUZ++23H/vtt19NuyeeeAIhBE888UTLx9STUe0cu/POO9lqq63I5XIMGDBgtY4xQ4YMGTJkyLD2ISMGM2TI0KNw2223IYTgP//5T91tV6xYwaWXXrrGPFwKIVJ91pT9aQVuuOGGELnVk7Dffvv5x0hKSb9+/dhyyy055ZRTeOSRR5q2nb/85S89imALoiePrREUi0WOP/54PvnkE6666iruvPNOhg8fzoIFC5g8eTIdHR1cf/313HnnnfTu3Xt1D3eVwyOc03zeeeedVTKmm266ifHjx7P++uvT1tbGyJEjmTZtWsX2o2PP5XIMGTKEPffck2984xu8++67LRnfiBEjqv5GBx98sG9X7Rx7/fXXmTp1KqNGjeKmm27ixhtvTL3tSy+9NLS9Xr16semmm3LEEUdw66230tXVVbXtn/70Jw4++GAGDx5Me3s7W2yxBRdeeCELFiyItf/jH//I+PHjGTp0KL169WKzzTZj8uTJPPjgg+l/rBais7OTq666inHjxtG/f39/n8455xz++9//rtaxvf/++1x66aX+S4hWYk2bJ2XIkCFDhlUDe3UPIEOGDBmahRUrVnDZZZcBpFKprG7ceeedoeU77riDRx55pKJ+6623XpXD6lG44YYbGDJkyCpR2TWCjTfemOnTpwOwfPly3nrrLe677z7uuusuJk+ezF133UUul/Pt33jjDaSs753cX/7yF66//vq6CLjhw4ezcuXK0LZbgaSxrVy5Etvu2dOM6BhnzZrFnDlzuOmmmzjttNP8+gcffJClS5fyne98hwkTJqyOofYIrLfeehXXpx//+Me89957XHXVVRW2Dz/8cMvH9PzzzzNy5EiOPPJIBg4cyOzZs7npppv405/+xAsvvMBGG20Usj/ppJM49NBD0VqzcOFCnn32Wa6++mquueYafvGLX3DiiSc2fYxjxozhy1/+ckV9cGzPPvts7Dn2xBNPoLXmmmuuYfTo0Q1t/6c//Sl9+vShq6uLuXPn8tBDD/HZz36Wq6++mj/96U9ssskmIfsLL7yQH//4x+y444587WtfY9CgQcyYMYPrrruOX/3qVzz22GNsueWWvv0VV1zBV77yFcaPH89FF11Er169eOutt3j00Uf51a9+FSJAVwfmz5/PwQcfzHPPPcfhhx/OySefTJ8+fXjjjTf41a9+xY033kihUFht43v//fe57LLLGDFiBGPGjGnptta0eVKGDBkyZFg16Nkz9gwZMmToAVi+fHlL1EGf+cxnQsv//ve/eeSRRyrq1xYYY+js7KSjo2OtGUf//v0rjtf/+3//j/POO48bbriBESNG8IMf/MBf19bW1u1tJsFxHLTW5PN52tvbW7qtWljd20+D6Bg//vhjgAp3zWr13UGrriutRO/evSvO91/96lcsXLhwtV23brjhhoq6SZMmscsuu3DHHXfw9a9/PbRu5513rhjrnDlzOOiggzj11FPZeuut2XHHHZs6xmHDhtX8fVp57h133HEMGTLEX7744ou5++67mTJlCscffzz//ve//XX/93//x49//GNOOOEE7r77bizL8tdNnTqV/fffn+OPP54ZM2Zg2zaO4/Cd73yHAw88MJYI9sa/OjF16lSef/557r33Xo499tjQuu985zt885vfXE0jy5AhQ4YMGXoGMlfiDBky9Hh4sdHmzp3LpEmT6NOnD+uttx4XXnghSinAdRNbb731ALjssst816mgkun111/nuOOOY9CgQbS3t7PLLrvwhz/8IbQtz5X5b3/7G2eddRZDhw5l4403BspuWa+//jqTJ0+mX79+DB48mC9+8Yt0dna2ZN+11lx99dVsu+22tLe3s/7663PmmWeycOHCkN2IESM4/PDDeeKJJ9hll13o6Ohg++23992F7rvvPrbffnva29sZO3Yszz//fKi99xu//fbbTJw4kd69e7PRRhtx+eWXY4zp1pgeeughf0w///nPAbj11lv51Kc+xdChQ2lra2Obbbbhpz/9aUX7V155hb/97W/+8fQUDt6xiMI7fkE3wqRxLFq0iPPPP59NNtmEtrY2Ro8ezQ9+8AO01ukOUAwsy+InP/kJ22yzDddddx2LFy8OjSWofiwWi1x22WVsvvnmtLe3M3jwYPbee2/fFXnq1Klcf/31QNj1HMqukVdccQVXX301o0aNoq2tjVdffTU2xqCHWse4Wry3aJ9JY/PqokrC559/nkMOOYR+/frRp08fDjjggBApAeVj+M9//pMLLriA9dZbj969e3P00Uczb9682gcA+P3vf892221He3s72223Hb/73e9i7YJjnDp1KuPHjwfg+OOP98+3/fbbj1NPPRWAXXfdFSFE6Bg+/fTTHHzwwfTv359evXoxfvx4/vnPf4a2452vr776KieffDIDBw5k77339tffddddjB07lo6ODgYNGsSJJ57I//73v1Af++23H9tttx2vvvoq+++/P7169WLYsGH88Ic/rNivzs5OLr30UrbYYgva29vZcMMNOeaYY5g1a5Zvk/Z/3B3ExRh87733mDRpEr1792bo0KF86UtfqnBpveSSS8jlcrHH+4wzzmDAgAGJ11wvlmTaOJDDhw/ntttuo1AoxP6erUa1c2zEiBFccsklgKvAbGbczk9/+tOcdtppPP3006HQB5dddhkDBw7kxhtvDJGCALvtthtf+9rXeOmll7j33nsBV423ZMkS9tprr9jtDB06NHEc2223Hfvvv39FvdaaYcOGcdxxx/l1v/rVrxg7dix9+/alX79+bL/99lxzzTWJ/T/99NP8+c9/5nOf+1wFKQjuy5orrrgiVPfXv/6VffbZh969ezNgwACOOuooXnvttZCN959+6623mDp1KgMGDKB///5MmzaNFStWhGwfeeQR9t57bwYMGECfPn3Ycsst+cY3vgG419tdd90VgGnTpvnXUe86++STT3L88cez6aab0tbWxiabbMKXvvQlVq5cGdpGs+ZJGTJkyJBh3USmGMyQIcMaAaUUEydOZNy4cVxxxRU8+uij/PjHP2bUqFF84QtfYL311uOnP/0pX/jCFzj66KM55phjANhhhx0AeOWVV9hrr70YNmwYX//61+nduze/+c1vmDRpEr/97W85+uijQ9s766yzWG+99bj44otZvnx5aN3kyZMZMWIE06dP59///jc/+clPWLhwIXfccUfT9/vMM8/ktttuY9q0aZx33nnMnj2b6667jueff55//vOfIVfRt956i5NPPpkzzzyTz3zmM1xxxRUcccQR/OxnP+Mb3/gGZ511FgDTp09n8uTJFW6tSikOPvhgdt99d374wx/y4IMPcskll+A4DpdffnlDY3rjjTc46aSTOPPMMzn99NN997Of/vSnbLvtthx55JHYts0f//hHzjrrLLTWnH322QBcffXVnHvuufTp08dXdKy//voN/Y5x41ixYgXjx49n7ty5nHnmmWy66ab861//4qKLLuKDDz7g6quvbmhb4JKDJ510Et/+9rf5xz/+wWGHHRZrd+mllzJ9+nROO+00dtttN5YsWcJ//vMfZsyYwYEHHsiZZ57J+++/H+ti7uHWW2+ls7OTM844g7a2NgYNGlSV2Ex7jNMgzdiCeOWVV9hnn33o168fX/3qV8nlcvz85z9nv/32429/+xvjxo0L2Z977rkMHDiQSy65hHfeeYerr76ac845h1//+teJ23n44Yc59thj2WabbZg+fToLFixg2rRpPsGftD/Dhg3j+9//Pueddx677rqrf75tueWW3HjjjVx++eWMHDmSUaNGAS6BcMghhzB27FguueQSpJQ+6f3kk0+y2267hbZx/PHHs/nmm/P973/fJ2O/973v8e1vf5vJkydz2mmnMW/ePK699lr23Xdfnn/++ZBSbOHChRx88MEcc8wxTJ48mXvvvZevfe1rbL/99hxyyCGAe4wPP/xwHnvsMU488US++MUvsnTpUh555BFefvllf+z1/I+bhZUrV3LAAQfw7rvvct5557HRRhtx55138te//jVkd8opp3D55Zfz61//mnPOOcevLxQKvuorqvZcsGABSineffdd/1w+4IADUo9tjz32YNSoUU2ND+qhWCwyf/78ivrevXvT0dHBN7/5zdhzbNKkSdxxxx387ne/892BvXtaM3DKKadw44038vDDD3PggQfy5ptv8sYbbzB16lT69esX22bKlClccskl/OlPf+LEE09k6NChdHR08Mc//pFzzz2XQYMG1TWGE044gUsvvZQPP/yQDTbYwK//xz/+wfvvv++7dj/yyCOcdNJJHHDAAb4K+7XXXuOf//wnX/ziF6v27738O+WUU1KN59FHH+WQQw5hs80249JLL2XlypVce+217LXXXsyYMaMigdHkyZMZOXIk06dPZ8aMGdx8880MHTrUH+Mrr7zC4Ycfzg477MDll19OW1sbb731lv/yYOutt+byyy/n4osv5owzzmCfffYBYM899wTgnnvuYcWKFXzhC19g8ODBPPPMM1x77bW899573HPPPaGxdHeelCFDhgwZ1mGYDBkyZOhBuPXWWw1gnn32Wb/u1FNPNYC5/PLLQ7Y77bSTGTt2rL88b948A5hLLrmkot8DDjjAbL/99qazs9Ov01qbPffc02y++eYV2997772N4zihPi655BIDmCOPPDJUf9ZZZxnAvPDCCw3ts4ezzz7bBC/LTz75pAHM3XffHbJ78MEHK+qHDx9uAPOvf/3Lr3vooYcMYDo6OsycOXP8+p///OcGMI8//rhf5/3G5557rl+ntTaHHXaYyefzZt68eQ2P6cEHH6zY1xUrVlTUTZw40Wy22Wahum233daMHz++wtY7FlF4x2/27Nk1x/Gd73zH9O7d2/z3v/8N1X/96183lmWZd999t6L/IMaPH2+23Xbbqut/97vfGcBcc801obGceuqp/vKOO+5oDjvssMTtRM8LD7NnzzaA6devn/n4449j1916661+Xdpj/Pjjj1ecH9X6rDY2Y0zFf3HSpEkmn8+bWbNm+XXvv/++6du3r9l33339Ou8YTpgwwWit/fovfelLxrIss2jRotjteRgzZozZcMMNQ3YPP/ywAczw4cMTx+jt+z333BOyi7suaa3N5ptvbiZOnBga54oVK8zIkSPNgQce6Nd55+tJJ50U6vedd94xlmWZ733ve6H6l156ydi2HaofP368Acwdd9zh13V1dZkNNtjAHHvssX7dLbfcYgBz5ZVXVvw23jjr+R/XwmGHHVbxuwbHHPz/Xn311QYwv/nNb/y65cuXm9GjR1ecc3vssYcZN25cqL/77rsv9tw0xpi2tjYDGMAMHjzY/OQnPwmt987fH/3oR1X35aijjjKAWbx4cfUdrhPe9SfuM336dN8u7hwzpnzueP/PelCr7cKFCw1gjj76aGOMMb///e8NYK666qrEfvv162d23nlnf/niiy82gOndu7c55JBDzPe+9z3z3HPPpRrjG2+8YQBz7bXXhurPOuss06dPH/9e8cUvftH069ev4r5cC0cffbQBzMKFC1PZjxkzxgwdOtQsWLDAr3vhhReMlNJMmTLFr/N+289+9rMV2xs8eLC/fNVVV9U8fs8++2zFtdVD3L1y+vTpRggRuq83Y56UIUOGDBnWXWSuxBkyZFhj8PnPfz60vM8++/D222/XbPfJJ5/w17/+lcmTJ7N06VLmz5/P/PnzWbBgARMnTuTNN99k7ty5oTann356hRuVB0/R5uHcc88F3EQMzcQ999xD//79OfDAA/0xz58/n7Fjx9KnTx8ef/zxkP0222zDHnvs4S97CqxPfepTbLrpphX1cb9dUJ0jhOCcc86hUCjw6KOPNjSmkSNHMnHixIrtBOP7LV68mPnz5zN+/HjefvvtkOttsxA3jnvuuYd99tmHgQMHhvZlwoQJKKX4+9//3q1t9unTB4ClS5dWtRkwYACvvPIKb775ZsPbOfbYY333sDSodYxbAaUUDz/8MJMmTWKzzTbz6zfccENOPvlk/vGPf7BkyZJQmzPOOCPkmrzPPvuglGLOnDlVt/PBBx8wc+ZMTj31VPr37+/XH3jggWyzzTZN3COYOXMmb775JieffDILFizwz5/ly5dzwAEH8Pe//71CuRm9ht13331orZk8eXLoHNxggw3YfPPNK/5Pffr0CcWqy+fz7LbbbqH/8m9/+1uGDBniX5eC8H7Pev/HzcJf/vIXNtxww5B7aK9evTjjjDMqbKdMmcLTTz8dcn++++672WSTTXyX7yAeeOAB/vKXv/DjH/+YTTfdtELpnQZp/rONYNy4cTzyyCMVn5NOOqmp26kX0f31vvv27ZvYrm/fvqH/62WXXcYvf/lLdtppJx566CG++c1vMnbsWHbeeecKF9wotthi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eaJyJIrJkyfz1FNP8dBDD1WsW7RoEY7jpO4rCKUU5513Hq+99hrnnXdeovpowYIFoeU+ffowevToEKHhPYg263jXOsbDhw/HsqyKGIs33HBDRV9px2ZZFgcddBD3339/yGX5o48+4pe//CV777134u+UFhtuuCFjxozh9ttvD7nZPfLII7z66qvd7j+IsWPHMmrUKK644grfJTOINNeVY445BsuyuOyyyypUf8aYivMjDY499ljmz58fOs7BPmH1XFsADj30UN5//33uvfdev27FihXceOONsfaHHHIIQ4YM4Qc/+AF/+9vfKkg7x3Fi3SSfeeYZXnrpJXbZZZdU45ozZw5Tp04ln8/zla98JdF2r732YsKECf5ndRCDs2bNCsVebAS//OUvufnmm9ljjz1C2ZsvvvhiFi5cyOc///kKlfBzzz3HD37wA7bbbjuOPfZYwD1+Tz31VOw2HnjgASDeNTeKE044gX//+9/ccsstzJ8/P+RGDJXXSimlH3IhiQDeY489OPjgg7n55pv5/e9/X7G+UChw4YUXAuHrR/A/8PLLL/Pwww9z6KGH1tyPKD755JOKOk9h7I272nU07l5pjOGaa66pexweqs2TMmTIkCHDuo1MMZghQ4a1Bh0dHWyzzTb8+te/ZosttmDQoEFst912bLfddlx//fXsvffebL/99px++ulsttlmfPTRRzz11FO89957vPDCC6m3M3v2bI488kgOPvhgnnrqKe666y5OPvlkdtxxR99mypQp/O1vf+uW2+P48eM588wzmT59OjNnzuSggw4il8vx5ptvcs8993DNNdeEgvh3F+3t7Tz44IOceuqpjBs3jgceeIA///nPfOMb3/BdC5sxpoMOOshXfpx55pksW7aMm266iaFDh1YQt2PHjuWnP/0p3/3udxk9ejRDhw7lU5/6FAcddBCbbropn/vc5/jKV76CZVnccsstrLfeerz77rup9vcrX/kKf/jDHzj88MOZOnUqY8eOZfny5bz00kvce++9vPPOOwwZMiSxj8WLF3PXXXcB7gPyW2+9xX333cesWbM48cQTY4mXILbZZhv2228/xo4dy6BBg/jPf/7DvffeG3J/HDt2LADnnXceEydOxLIsTjzxxFT7GEWaY9y/f3+OP/54rr32WoQQjBo1ij/96U+xcefqGdt3v/tdHnnkEfbee2/OOussbNvm5z//OV1dXfzwhz9saH/iMH36dA477DD23ntvPvvZz/LJJ59w7bXXsu2228YSeI1CSsnNN9/MIYccwrbbbsu0adMYNmwYc+fO5fHHH6dfv3788Y9/TOxj1KhRfPe73+Wiiy7inXfeYdKkSfTt25fZs2fzu9/9jjPOOMMnLdJiypQp3HHHHVxwwQU888wz7LPPPixfvpxHH32Us846i6OOOmqVX1s8nH766Vx33XVMmTKF5557jg033JA777zTJyuiyOVynHjiiVx33XVYllWRrGPZsmVssskmnHDCCWy77bb07t2bl156iVtvvZX+/fvHxpSdMWMGd911F1prFi1axLPPPstvf/tbhBDceeeddcX3TIu5c+f614kg+vTpw6RJk+ruzyPy0sYFvffee+nTpw+FQoG5c+fy0EMP8c9//pMdd9yRe+65J2T76U9/mmeffZZrrrmGV199lU9/+tMMHDiQGTNmcMsttzB48GDuvfdeX426YsUK9txzT3bffXcOPvhgNtlkExYtWsTvf/97nnzySSZNmsROO+1Uc4yTJ0/mwgsv5MILL2TQoEEVKtzTTjuNTz75hE996lNsvPHGzJkzh2uvvZYxY8b4LtDVcMcdd3DQQQdxzDHHcMQRR3DAAQfQu3dv3nzzTX71q1/xwQcfcMUVVwBuaIBDDjmEPfbYg8997nOsXLmSa6+9lv79+zfkMn755Zfz97//ncMOO4zhw4fz8ccfc8MNN7Dxxhv7avJRo0YxYMAAfvazn9G3b1969+7NuHHj2GqrrRg1ahQXXnghc+fOpV+/fvz2t7/tVszApHlShgwZMmRYh7Gq0yBnyJAhQxJuvfVWA5hnn33Wrzv11FNN7969K2wvueQSE72M/etf/zJjx441+XzeAOaSSy7x182aNctMmTLFbLDBBiaXy5lhw4aZww8/3Nx7772J249u79VXXzXHHXec6du3rxk4cKA555xzzMqVK0O248ePrxhbLZx99tmxbW688UYzduxY09HRYfr27Wu2335789WvftW8//77vs3w4cPNYYcdVtEWMGeffXaobvbs2QYwP/rRj/w67zeeNWuWOeigg0yvXr3M+uuvby655BKjlGrqmIwx5g9/+IPZYYcdTHt7uxkxYoT5wQ9+YG655RYDmNmzZ/t2H374oTnssMNM3759DWDGjx/vr3vu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x46VbZxEUoPMnz+f888/nyOPPJLx48dz55130tzczIUXXljppkkkdcPu3btZvXp15t8ffvghy5cvp3v37gwYMKCCLZNI6oMrrriCRx55hP/3//4fnTp1ysyT26VLF9q1a1fh1kkkknKgGIZhVLoRkrbNww8/bPsQJT+eEklwXHDBBSxatKjg9WeffZYpU6aUv0ESSR1wzz33cMcdd9DU1MTo0aO56667mDBhQqWbJZHUDc899xxTp04teP3888/n4YcfLn+DJJI6Q1EUy9cfeuihotPVSCSS+kCKQYlEIpFIJBKJRCKRSCQSiaQNIidyk0gkEolEIpFIJBKJRCKRSNogUgxKJBKJRCKRSCQSiUQikUgkbRApBiUSiUQikUgkEolEIpFIJJI2iBSDEolEIpFIJBKJRCKRSCQSSRtEikGJRCKRSCQSiUQikUgkEomkDSLFoEQikUgkEolEIpFIJBKJRNIGkWJQIpFIJBKJRCKRSCQSiUQiaYNIMSiRSCQSiUQikUgkEolEIpG0QaQYlEgkEolEIinCAw88wAknnBB6PU899RSjR49GCBF6XRKJRCKRSCQSiRSDEolEIpFIJA7s27ePG264gZtuuin0umbOnEk0GuV3v/td6HVJJBKJRCKRSCRSDEokEolEIpE48Mc//pHOnTtz9NFHl6W+Cy64gLvuuqssdUkkEolEIpFI2jZSDEokEolEImkTbNq0ib59+/L9738/89rLL79MLBZj8eLFtsc9+uijnHzyyTmvTZkyhXnz5uW8NmvWLC644ILMvwcNGsRtt93G7Nmz6dixIwMHDuSvf/0rmzZt4otf/CIdO3bk8MMP5/XXX88p5+STT+b1119nzZo1/jsrkUgkEolEIpG4QIpBiUQikUgkbYJevXrx4IMPcvPNN/P666+za9cuvvKVr3DllVdy/PHH2x734osvcuSRR/qq82c/+xlHH300b7zxBl/4whf4yle+wuzZsznvvPNYtmwZBx54ILNnz8YwjMwxAwYMoE+fPrzwwgu+6pRIJBKJRCKRSNwixaBEIpFIJJI2w4knnsicOXM499xz+epXv0qHDh1YsGCB7f7bt29nx44d9OvXz3d9l112GcOGDePGG29k586djBs3jjPOOIODDjqI73znO7z33nts3Lgx57h+/fqxbt06X3VKJBKJRCKRSCRukWJQIpFIJBJJm+LHP/4xyWSSxx9/nN/97nc0NDTY7rt3714AGhsbfdV1+OGHZ7b79OkDwGGHHVbw2meffZZzXLt27dizZ4+vOiUSiUQikUgkErdIMSiRSCQSiaRNsWbNGj799FOEEKxdu9Zx3x49eqAoCtu2bct5XVXVnPRfgEQiUXB8NBrNbCuKYvuaECLnuK1bt9KrV6/inZFIJBKJRCKRSEpAikGJRCKRSCRthng8znnnnceZZ57JrbfeyiWXXFIQrZdNLBbjkEMOYcWKFTmv9+rViw0bNmT+res677zzTiBt3LdvH2vWrGHMmDGBlCeRSCQSiUQikdghxaBEIpFIJJI2w3e/+1127NjBXXfdxXe+8x0OOuggLrroIsdjZsyYwYsvvpjz2rRp03jyySd58sknWblyJZdffjnbt28PpI3/+c9/aGhoYOLEiYGUJ5FIJBKJRCKR2CHFoEQikUgkkjbBc889x5133slvf/tbOnfujKqq/Pa3v+WFF17gvvvusz3u4osv5u9//zs7duzIvHbRRRdx/vnnM3v2bI477jiGDBnC1KlTA2nn73//e84991zat28fSHkSiUQikUgkEokdipE/QY5EIpFIJBKJJIczzjiDI444gmuvvTbUejZv3szw4cN5/fXXGTx4cKh1SSQSiUQikUgkMmJQIpFIJBKJpAh33HEHHTt2DL2etWvX8otf/EJKQYlEIpFIJBJJWZARgxKJRCKRSCQSiUQikUgkEkkbREYMSiQSiUQikUgkEolEIpFIJG0QKQYlEolEIpFIJBKJRCKRSCSSNogUgxKJRCKRSCQSiUQikUgkEkkbRIpBiUQikUgkEolEIpFIJBKJpA0ixaBEIpFIJBKJRCKRSCQSiUTSBpFiUCKRSCQSiUQikUgkEolEImmDSDEokUgkEolEIpFIJBKJRCKRtEGkGJRIJBKJRCKRSCQSiUQikUjaIFIMSiQSiUQikUgkEolEIpFIJG0QKQYlEolEIpFIJBKJRCKRSCSSNsj/B1hLO+uG6OwLAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "showGrid = False\n", + "\n", + "fig, (ax) = plt.subplots(1, 1, figsize=(14, 4))\n", + "\n", + "contour1 = ax.contourf(XI1, YI1, 100*np.abs((TI_cst-TI1)/TI1), levels=250, cmap='turbo')\n", + "ax.set_xlabel('x (um)')\n", + "ax.set_ylabel('y (um)')\n", + "ax.set_title('Interp. Temperature Distribution difference Tidy3D - Eff. DOS vs Constant')\n", + "fig.colorbar(contour1, label='Temperature difference %', ax=ax)\n", + "\n", + "plt.tight_layout()" + ] + }, + { + "cell_type": "markdown", + "id": "cc74b335-f1ae-4128-b5fd-a9fe725a4713", + "metadata": {}, + "source": [ + "### IV-Curve" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "22fa81b5-1467-40ac-8140-54ced69a3a80", + "metadata": {}, + "outputs": [], + "source": [ + "norm_length = 500\n", + "voltage = results.device_characteristics.steady_dc_current_voltage['v'].as_numpy()\n", + "current = results.device_characteristics.steady_dc_current_voltage.values*norm_length\n", + "current_cst = results_cst.device_characteristics.steady_dc_current_voltage.values*norm_length\n", + "current_iso = results_iso.device_characteristics.steady_dc_current_voltage.values*norm_length" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "9dddde51-7a0c-4be4-916a-9f103b55fd37", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABKEAAAHWCAYAAACv2Jr5AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8fJSN1AAAACXBIWXMAAA9hAAAPYQGoP6dpAADiWUlEQVR4nOzdd3RURRvH8e/upiekEFIIvSfUQOi9g6BIEVGxA2J/BWzYAMWCIthARVAsoBSVIkjvvYP03kmBJIQUUnbv+0dgMSZAAhsg8Pucs2dz586dee4yLuFxZq7JMAwDERERERERERGRfGS+2QGIiIiIiIiIiMjtT0koERERERERERHJd0pCiYiIiIiIiIhIvlMSSkRERERERERE8p2SUCIiIiIiIiIiku+UhBIRERERERERkXynJJSIiIiIiIiIiOQ7JaFERERERERERCTfKQklIiIiIiIiIiL5TkkoERERkVtA6dKlefzxx292GNelQ4cO9OnTx2HtnTlzBk9PT2bPnu2wNkVEROTmURJKRERE8uTAgQP07duXsmXL4ubmhre3N40aNeLzzz8nJSXlZod3zWbPns3gwYOvWm/EiBGYTCYWLFhw2TrfffcdJpOJGTNmXHM8O3fuZPDgwRw+fPia27iRVq5cybx583jttdfsZUuWLMFkMjF16lQAOnXqhIeHB+fOnbtsOz179sTFxYUzZ87g7+9P7969efvtt/MUS1RUFC+//DKhoaF4eHjg6elJREQEQ4cOJT4+/pruT0RERK6fklAiIiKSa7NmzaJatWpMnjyZe+65hy+//JIPP/yQkiVL8sorr/C///3vZod4zWbPns2QIUOuWu+BBx7AbDYzceLEy9aZOHEi/v7+3HXXXdccz86dOxkyZEiBSUJ98skntGrVivLly1+2Ts+ePUlJSeHPP//M8XxycjLTp0+nffv2+Pv7A/D000+zadMmFi1alKs41q9fT9WqVRk1ahRNmjRhxIgRfPrpp9SsWZOPPvqI+++/P+83JyIiIg7hdLMDEBERkYLh0KFDPPDAA5QqVYpFixZRtGhR+7nnnnuO/fv3M2vWLIf0lZSUhKenZ7ZywzA4f/487u7uDunnWoSEhNCiRQv++OMPvv76a1xdXbOcP3HiBMuWLeOpp57C2dn5JkV5Y0VHRzNr1iy++eabK9br1KkThQoVYuLEiTz66KPZzk+fPp2kpCR69uxpLwsLC6Nq1aqMHz+eli1bXrH9+Ph4unTpgsViYfPmzYSGhmY5//777/Pdd9/l4c4u73JjVERERC5PM6FEREQkVz7++GMSExMZN25clgTUReXLl7fPhDp8+DAmk4nx48dnq2cymbIsexs8eDAmk4mdO3fy0EMP4efnR+PGjYHMfZLuvvtu5s6dS+3atXF3d+fbb78FMhMOL730EiVKlMDV1ZXy5cszbNgwbDabve2LcQwfPpwxY8ZQrlw5XF1dqVOnDuvXr7fXe/zxxxk1apQ9vouvy3n44Yc5e/Zsjkm33377DZvNZk+kJCUlMWDAAHuclSpVYvjw4RiGcdn2x48fT/fu3QFo0aKFPZ4lS5YAmcmajh07EhISgqurK+XKleO9997DarVma2vUqFGULVsWd3d36taty/Lly2nevDnNmzfPUi81NZVBgwZRvnx5XF1dKVGiBK+++iqpqamXjfOiWbNmkZGRQevWra9Yz93dna5du7Jw4UKio6OznZ84cSKFChWiU6dOWcrbtGnDzJkzr/iZAXz77becOHGCESNGZEtAAQQFBfHWW2/Zj/87Fi/67/5c48ePx2QysXTpUp599lkCAwMpXrw4U6dOtZfnFIvJZGL79u32st27d3PfffdRuHBh3NzcqF279nUt2RQRESloNBNKREREcmXmzJmULVuWhg0b5kv73bt3p0KFCnzwwQdZkg179uzhwQcfpG/fvvTp04dKlSqRnJxMs2bNOHHiBH379qVkyZKsWrWKgQMHcurUKT777LMsbU+cOJFz587Rt29fTCYTH3/8MV27duXgwYM4OzvTt29fTp48yfz58/n555+vGmvXrl155plnmDhxIl27ds3WV6lSpWjUqBGGYdCpUycWL15Mr169CA8PZ+7cubzyyiucOHGCkSNH5th+06ZNefHFF/niiy944403CAsLA7C/jx8/Hi8vL/r374+XlxeLFi3inXfeISEhgU8++cTeztdff83zzz9PkyZN6NevH4cPH6Zz5874+flRvHhxez2bzUanTp1YsWIFTz31FGFhYfzzzz+MHDmSvXv3Mm3atCt+HqtWrcLf359SpUpd9bPr2bMnP/74I5MnT+b555+3l8fGxjJ37lwefPDBbDPdIiIiGDlyJDt27KBq1aqXbXvGjBm4u7tz3333XTWOa/Hs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dhmAsWDBgqvGcNHJkyeNfv36GRUrVjTc3NwMDw8PIyIiwnj//fez3IvVajVee+01o0iRIoaHh4fRrl07Y//+/dn+LH744QcDMNavX3/ZPufPn28AhslkMo4dO5ZjnQMHDhiPPvqoERwcbDg7OxvFihUz7r77bmPq1Km5vjcREZGCzGQYeXiUiYiIiIgUaDabjYCAALp27Zrj8rtrtXz5cpo3b87u3bupUKGCw9p96aWXWLZsGRs3brym/apERETk1qE9oURERERuU+fPn8+2TO+nn34iNjaW5s2bO7SvJk2a0LZtW4c+HfDMmTOMHTuWoUOHKgElIiJyG9BMKBEREZHb1JIlS+jXrx/du3fH39+fTZs2MW7cOMLCwti4cSMuLi43O0QRERG5g2hjchEREZHbVOnSpSlRogRffPEFsbGxFC5cmEcffZSPPvpICSgRERG54TQTSkRERERERERE8p32hBIRERERERERkXynJJSIiIiIiIiIiOQ77Ql1A9hsNgzDhgkT6MkuIiIiIiIiInK7MAwMDEwmM2bzlec6KQl1AxiGjfi4uJsdhoiIiIiIiIhIvvD18+NqC+6UhLohMmc/+fr5YTIV3BWQGRkZzJs3j7Zt2+LkpKEjjqOxJflJ40vyk8aX5CeNL8kvGluSnzS+7jyXJt5cfeWXRsQNYLqwBC83U9NuZSaTCavVislkKtD3IbcejS3JTxpfkp80viQ/aXxJftHYkvyk8XXnsdky30252H5II0JERERERERERPKdklAiIiIiIiIiIpLvlIQSEREREREREZF8pySUiIiIiIiIiIjkOyWhREREREREREQk3ykJJSIiIiIiIiIi+U5JKBERERERERERyXdKQomIiIiIiIiISL5TEkpERERERERERPKd080OQAoGq83K6n2bWXdyB377itIoNAKL2XKzwxIREQey2qys2beF6IQzBHr7U79C+C3xXX8rx3Ur/t14K39et2JcIiIicuMUuJlQo0aNonTp0ri5uVGvXj3WrVt3xfpTpkwhNDQUNzc3qlWrxuzZs7OcNwyDd955h6JFi+Lu7k7r1q3Zt29fljqxsbH07NkTb29vfH196dWrF4mJiQ6/t1vVrM2Lqf1GF0b98A6h6QajfniH2m90YdbmxTc7NBERcZCL3/VfjH2TxNXr+WLsm7fEd/2tHtet9nfjrf553WpxQWZybOXCX/n9m09ZufBXrDbrzQ5JRETktlWgklCTJk2if//+DBo0iE2bNlGjRg3atWtHdHR0jvVXrVrFgw8+SK9evdi8eTOdO3emc+fObN++3V7n448/5osvvuCbb75h7dq1eHp60q5dO86fP2+v07NnT3bs2MH8+fP566+/WLZsGU899VS+3++tYNbmxfT+diCn4qNpGVCJJI+KtAyoSGR8NL2/HXhL/PIoIiLX51b9rldciutGxFb7jS5s37iGGKeSbN+4+pZJjgGc3rWGjBP7OL1rzc0ORURExCEKVBJqxIgR9OnThyeeeILKlSvzzTff4OHhwffff59j/c8//5z27dvzyiuvEBYWxnvvvUetWrX46quvgMxZUJ999hlvvfUW9957L9WrV+enn37i5MmTTJs2DYBdu3YxZ84cxo4dS7169WjcuDFffvklv/32GydPnrxRt35TWG1Wvv/9S5p4+dDEywcX7+oAuHjXoLGXD029fPjhj6/0fwxFRAqwW/W7XnEprvw2d/EkfprwEeUzUrPEVSEjlZ8mfMTcxZNueEz/ZrVZ2bZhFTEupdi2YfUt9ftWdEwsM2YtITom9maHIiIiBYzJMAzjZgeRG2lpaXh4eDB16lQ6d+5sL3/ssceIj49n+vTp2a4pWbIk/fv356WXXrKXDRo0iGnTprF161YOHjxIuXLl2Lx5M+Hh4fY6zZo1Izw8nM8//5zvv/+eAQMGEBcXZz+fkZGBm5sbU6ZMoUuXLtn6TU1NJTU11X5sGAYZ6WkU8vbBZDJd3wdxA63et5mdq45cKjAMMJkuvV/glXZ7J+PkBvnPuBJxKI2vK0p0Cbl0cAt91yuu3DOApFzFdQLIj/8WTDn+aBhGruLyTDuJyWS6dOkV/nvN/ruUKYfqF8tMZH46pgvXGfYA4/C/alwh7imYTObMa//9bjZhMpnBlPluMpsvlJszyy+8Z5ZbMt/NlgtlFvs9mEwX4rxw7yaTibTEeCJPH2f3yYMUL1QOq9kVi+08h87uoFbpMMqXqIhnQAhOFgtOThYsFgtOFgsWp4vvZpwsFsxmc7793rl67TZ27j5I5bCyNKhbPV/6kPyVnp7O/PnzadOmDc7Ozjc7HLnNaHzdeQzD4FzCWfwK+2M2X3muU4HZmPz06dNYrVaCgoKylAcFBbF79+4cr4mMjMyxfmRkpP38xbIr1QkMDMxy3snJicKFC9vr/NeHH37IkCFD7MdeXl4cPnSQefPmYbXeOv8X62rWndyBEbmVUsW7YJgsl34p+88vNFl+GRcRkYLtVv2uV1x5c9m4it2EYP7lMnEl3aKf18kU9ytcZLvwnh+/27lR1KeyvWWr2Y2SfhGcPgunzx4HjueqlYt5ONPF14Xk3KXjC0m9/xxnPZ9ZZjUMMDLLziWmARb27NpH9KmjmX2ZTThZlOwvaObPn3+zQ5DbmMbXncNisdCgfr1c1S0wSaiCZODAgfTv399+fHEmVNu2bQvUTCi/fUW5/4sZNEn6gVahvbOdjzk+nWOpZ2lVpSFB3v45tCCSOzbDxokTJyhWrBhmU4FaJSwFgMbXlUUlnGHhjlWUcPUhoPi92c7frO/62yGuwMvEZXC5SehXmJx+2VOZJ6LPnmHxrrUUv0xcp49P50TqWZqE1iGgUOFLMVyYEJ9tYrxhs3eZecqw93Xx+NIVBhgXjo1LZYYBsUnxbDy0nRBXH3yLZY/r3MnpRJ4/S+Vi5Snk5oFh2DAMA8OwZbZp2OwvDANblnMXf7ZhGJn3YPDv64wLwV48vhirjXRrBmnpafi4+JARnD2uQtEzSEs/i5PJhAUDi8mEBbCYTJgxYTGBBRNmU+Yv06YL5832chNmwGICM2YMkwkjM6WDgQnD9K+fL5abzBhAnHMxjrpXhZy+rwwD3/STuNrOk2F2JsPkgtWU+Z5hcsZqcsH413X2WzaylPy30RzKribzqYZWzJyOz7CX1q1dBS8vDwp5eeLl6YGrq3OB+t33TqKZKpKfNL7uPBdnQuVGgUlCFSlSBIvFQlRUVJbyqKgogoODc7wmODj4ivUvvkdFRVG0aNEsdS4uzwsODs628XlGRgaxsbGX7dfV1RVXV1f7sc1mIy72DE5OTledmnYraRQaQVHfQEwZF5YWGrbMX4guvP+TGMN+Zze+fuhVPWJZrkt6ejqzZ8+mSYcO+otKHE7j68qsNisfvdGF+MQYWsIt812vuPIe17A3uhB3mbi2XYjrq0fevOFxffZGFyqcyzmu9QmZcX38zPAbGtfKPRvpNvI5mnil0So4e1zTYqNZnniWYQ+9RpmgkiSdTyLxfDIJqckknk8mKTXFXpZ4sexfPyeeTyQpNYWUtPOAgRPgjIGzycAFA6eL7xi4mDLfL51bT1WP5RSt8Fy2uIOPDMcl9QQVfXwIcAb3jGScU89hsqUDmekkG5bM5JT5YnLqUoLK/rM58z3D5ILV2YsMZx8yXAqR4eSJ1cmTDIs7GRa3f13jRFKqlcTU/0aUNcG0bsOOLMdOThYKFfKkkJcnhQplJqcKeXnYy9zcXJSkusmcnZ31d6PkG42vO4fNZrt6pQsKTBLKxcWFiIgIFi5caN8TymazsXDhQp5//vkcr2nQoAELFy7MsifU/PnzadCgAQBlypQhODiYhQsX2pNOCQkJrF27lmeeecbeRnx8PBs3biQiIgKARYsWYbPZqFcvd9PNCiqL2cLQHv34aPwQXDPO4pQRx+EzWyntX4MMJz9OpafyXs/XlYASESnAbtXvesWluPJT/QrhFPUNJDIlIce4ItNTCfEL4uHGna4rNqvNSlJqyoXEVNKFBFZylvd//7z92D5W7tuE2epKUciWHJtw3o/liWY4d7EHbyAIf2dnKvv7U8nXl3JeXpTydKeoqxMBTuBrysApNQGSYzNfKbGQHAfn4/89RSpXYlxK8nvIoGzlNeP+ApOJczX7ci4phXOJSSQnnycjw0pcXAJxcQk5tufkZLEnqLz+k6DyLuSBm5trnpJU0TGxrFm3jfp1qxMYUDhP9yYiIjdGgUlCAfTv35/HHnuM2rVrU7duXT777DOSkpJ44oknAHj00UcpVqwYH374IQD/+9//aNasGZ9++ikdO3bkt99+Y8OGDYwZMwbInDr90ksvMXToUCpUqECZMmV4++23CQkJsSe6wsLCaN++PX369OGbb74hPT2d559/ngceeICQkNt/L6SONVsA8N6kkRyOjwJMcGofZfyCeevxQfbzIiJScN2q3/WKS3Hll4vJsd7fDuS9reNINmz2uDxMZlIMg7GPD7ru5JjFbMHb3Qtvd69c1c+cobWJU+mpl03aAbSu2pDz6WkcOX2CE7FRnEnPYHlkFMsjo3JsN9gngFIBIZQsUp1SxUMoVaQYpf2DKV2oEEUsBqbzcZeSVMmxkHLxOO7ScfwxjIubVP0nOVY2ZSMBaUdh2V8QUAmCwsgoV5lE30qccy/BOZvHheRUMufOJWVNUsUnEBd/mSSVxZK5vK9Q1gTVxVlV7u5Zk1R79x3h5KkY9u4/oiSUiMgtqsA8He+ir776ik8++YTIyEjCw8P54osv7DOSmjdvTunSpRk/fry9/pQpU3jrrbc4fPgwFSpU4OOPP6ZDhw7284ZhMGjQIMaMGUN8fDyNGzdm9OjRVKxY0V4nNjaW559/npkzZ2I2m+nWrRtffPEFXl65+4Xi4nK83OwUf6uy2qys3L2RuUsX0K5ZaxqFRmgGlDjMxeVSHbRcSvKBxlfuWW1W1uzbQnTCGQK9/alfIfyW+K6/leO6Ff9uvJU/r1strlmbF/PWpJGcir+09UKIXxDv3f/STUmOWW1War/Rhcj4aNxMJlIuJscwcDeZOW8YFPULYv37f9g/u3RrBsfPnOLI6ZMcOX2CIzEn7D8fjjlO4vnkK/bp7uxKyYBilCoSQukixSkZkJmkKlUkhBL+RXF3cQMyP6sxP75N19DH8bLGEnZuObsKNSHRUpgaxz6iqlMCTtbzOXfi4gWBoRBUGYLCILAy1iKhnMOTxKSUC4mpSwmqc+eSSUpOuernZbGY8fRwx93dFQ8Pd44djyQjw4qbmysd2zcBwM3VhUKFPHP9Z3Cn0N+Nkp80vu48ecl5FLgkVEF0OyShQF8mkn80tiQ/aXxJftL4KvhuteTYrM2L6f3tQCDrluEX5/uM7fthrhNkhmEQl5SQmZyyJ6guJKliTnAyLhqbceV9PIr6BlDSP4Rtx/ZQ3hrHHL9jGEYGTibIMMBkcuKuuBKc8S7Fupc/wxKzB6J2Zr6id0HMHrCm59y4R2EIqmJPTBFUOTNZ5e6L1WojMSk5xwRVYmISiUlXT1Jd9HTv7rmue6fQd5fkJ42vO09ech4FajmeiIiIiIgjWcwWGlWKuNlh2HWs2YKxfT/MNkOr6DXM0DKZTBT28qGwlw81S1fOdj4tIz3rLKrTJzl6+gSHYzJfSanJnIqP4VR8DACnzU6cthmctLoxMdWPh1zjCLGkE2M4cSoumjWn42gUeheE3nWpE2s6nDmQNTEVtRNiD2Yu9Tu0PPP1b97FsASF4RNUGZ/AsMzkVJlK4OJxqVmrjaSkZHbtOcSWbbuvuL3Vr5P/pkTxYEoUDyKkaCDOzvonkIjIzaJvYBERERGRW0jHmi1oX6Npvi/3dHFypmxQScoGlcx2zjAMYpPOciTmBL+vncO4JVM4ZXOmTmwF0jABJn4+74sLBmlk/l/vtyePpGvddjQOrU21EhUz47U4Z85uCgyFal0vdZCWDKf3XkhO7YLoC+9nj0PCiczXvgWX6ptMULjMhRlTYViCquAdVJl6tUIpW6Y4v09bwH/5F/YlNu4sZxMSObtzP9t37sdsNhEcVORCUioY/8I+ekKfiMgNpCSUiIiIiMgtxmK20KBCTeL2naJBhZo3fImgyWTC38sXfy9fUtLOM27JFAB7wulCrQsJqUw7T+xn55/7AfB296JhxVo0rhRBo0q1CQ0pmzXZ4+IBIeGZr39Lic9cwhe1E6J2ZCamonZkzpo6czDzteuvS/XNTlC4Lnj1yrZhevNQL7yLlONksivHjkdy7Hgk5xKTOXkqhpOnYli7/h/c3V0zE1LFgileLAh3d1eHfo4iIpKVklAiIiIiInJZ9SuEU9Q3kMj4aHJa9WYCingX5vm2j7Bq7yZW7d1EQkoic7YuY87WZQAUKeRHo0oRNK5Um8aVIigdUDznGUjuvlCyXubrIsOApJhLS/r+PXMqLRH3uF24u53NtmG6+6SXcbXGUWZoAmVKF8MwDM4mJF5ISEVx8lQ0KSmp7N13hL37jgAQUMSP4sWCKFE8mKAgfywFeD9XEZFbkZJQIiIiIiJyWRazhaE9+tH724EXntV3ycU00kcPvkLHmi3o2/pBMqwZ/HNsLyv2bGDlno2s3beF0+fimL5hAdM3ZC6bK1Y4mMYXklKNKkUQ4hd4+QBMJvAKzHyVa36p3DBg9dd4/f0mDx9/FTMZmICwxKXYcMJCBlhcYeLDENYBU6V2+Pr44+tTiGpVKmC1WomMOmOfJXUm9iwxp+OIOR3H5q27cXZ2olhIICWKZe4n5e2duydji4jI5SkJJSIiIiIiV5SXDdOdLE7ULF2ZmqUr80K7R0lNT2Pz4Z2s2LOBFXs2svHgP5yIjWTS6llMWj0LgHJBJe0zpRpWrEWRQn5XD8pkgobPQumGWEY3vVQMmQkozyKQdBp2zsh8mcxQqgGEdYTQDlj8y1IsJJBiIYHUr1udpOQUjp+I4tjxKI6fiOT8+TQOHznJ4SMnAfD29qJE8SBKFAumWIg2OBcRuRb65hQRERERkau6uGH6mn1biE44Q6C3P/UrhF91vypXZxfqVwinfoVwXr67N8lp51m/fysr9mxkxZ4NbD2ymwNRRzkQdZSflv0JQOVi5TOX7oVGUL9CTbzdrz4LycCECcP+zqO/Z57YNQt2z4bI7XB4Zebr7zcgMCwzIRXWAUJq4enhTqUKpalUoTSGYXD6TLx9llRU1BkSEhLZsTORHTsPZN3gvFgQ/v6+l93gPDomljXrtlG/bnUCAwrn7UMXEbnNKAklIiIiIiK5YjFbaFQp4rra8HBxo1nlejSrnLnvU0JKImv2bWbF7syk1M4T++2vMYt+w2wyU6NUqH0/qTrla+Dh4mZvb+GhfdQwnDmWYWFiqh8PucZRwsnK1sP7adWoOxSrCa3fgtjDmcmo3X/D4RUQvSvztXQ4FAqGSndlJqTKNsPk7EZAET8CivhRKzyMtLR0TpyMzkxKnYji3LmkbBucFy8WZF+65+5+Kb69+45w8lQMe/cfURJKRO54SkKJiIiIiMhN4+3uRdvqTWhbvQkAp8/FsWrvJvueUgeijrL58E42H97Jl3N/wsXJmVplqtK4UgQWs4WPZ3yLM+UuPKnPxM/nfXHFIO3nTxnrUeTSUsHCpTOX7zV8FlLiYM+8zKTU3vlwLhI2/JD5cvGECq0htANUagse/ri4OFOmdLEsG5wfPx7FseORnLiwwfm+/UfZt/8oAH6+3gQGFCYoyJ/9B48BcODAMSpVKA2Am6sLhQp53uBPWkTk5lMSSkREREREbhlFCvnRKaIVnSJaAXAyLpqVF5burdi9gRNxUazZt5k1+zbbr0nj30+xM5GKCRPw9uTPaF+jafYlg+5+EN4j85WRCoeWX1i29zcknIQd0zNfZguUbJA5QyqsIxQug8lkwtenEL4+hahapXzWDc5PRHHmTDxx8QnExSewZ99he5cp51P5fdoC+/HTvbvnw6cnInJrUxJKRERERERuWSF+gXSvfxfd69+FYRgcOX2CFbs38Of6eazcu+my1xnAybgo1uzbcuUlhE6umTOfKrSGe0bAyc2XElKR2zOX7h1ekeM+UpjNWCyWSxucA8nJ59mwaQc7dx/MsTuTyUSLZnWu70MRESmglIQSEREREZECwWQyUTqgOKUDiuPp5nHFJNRFB6KP5n4fK5MJitXKfLV++9I+Urtmw5GV2feRCu2QmZAq0xScM/eB8vBwo2njCMJCy2aZ+XSRYRgcOnwCX59C2iNKRO44SkKJiIiIiEiBE+jtn6t6b/76Kev2b+OJZt2oVabKZZ9il6N/7yOVHJu5f9S/95Fa/33my8ULKrS6sI9UO/D4d3LJAEz/eodDh09w6PAJihcLomaNUEKKBuQtLhGRAkpJKBERERERKXDqVwinqG8gkfHRGJep42xxIt2awdS1fzN17d9UK1GRx5t1o0vddlmesJcrHoWz7iN1cNmlWVLnTmXdRyqkFu7FGuHuXA2v5OOEnV3MLp8WJHqVplX1QPZGpbPv2BmOn4ji+IkoggILU7NGGKVKFlUySkRua0pCiYiIiIhIgWMxWxjaox+9vx1on2d00cU0zte93iPEL5DxS39n+oYF/HNsLwN++ZAhv3/JAw3u5tGmXSgfXCrvnTu5QsU2ma9/7yO1azZE7YDj6/E6vp6HccJMBiYgLHEZNixY9mRQHKj92im2btvD7r2HiIqOZc78lRT28ya8Rijly5bAbDZfLQoRkQJH32wiIiIiIlIgdazZgrF9PyTYNzBLeVG/IMb2/ZC7a7WgVpkqfPH4O2z+aCbvdH2BUkWKkZCSyJhFv9F4cA/u/+wFZm9eQoY149qCuLiPVOu34YXV0H8b1OgBmLBcSEABmDCwkAFmJ7jvO7wLedKkUS169uhIePVKODs7ERuXwKIl6/h1yhx27DpARob1uj4fEZFbjWZCiYiIiIhIgdWxZgva12jKmn1biE44Q6C3P/UrhGMxW7LUK+zlw7Nte/J06wdZsmst45f+zvx/VrJs93qW7V5PUd8AHmnShZ6NOxHkU+TaAypcGrp/B42eg9FNs593coOYPZAYA14BeHi4Ub9udWrWCGX7zgP8s2Mv584lsXzlJjZu2kn1ahWpHFoWFxfna49JROQWoSSUiIiIiIgUaBazJddPwDObzbSs0oCWVRpw9PRJflkxnQkrZ3AqPoaPZ45hxKxxdKjZnMebdaNBhZrXv0eTyQyGDfvm5GmJmU/XWzUKIh6Fxi+CbwlcXV2IqBlG9WoV2L37EFv/2UNiUgpr1m1j05ZdVK1cnmpVK+Du5np98YiI3ERajiciIiIiInekkkVCeKPzM2z6YDqjnxxC3XLVybBZmbFxIV1HPEuzdx/i+yVTOZeSlPfGPQPAKxBCwqHTZ1CsZuZx5y8yl++lp8Cab2FEDfjjWYjZB4CzkxPVqlbgwfs70LxpbXx9CpGWls6mLbuY8NssVq7eQmJiskM/BxGRG0UzoURERERE5I7m6uxC17rt6Fq3HTuO7+PHpX8wdd0c9p46xBu/DWfon6O4r157nmjWjbBi5XPXqE8xeHkHWFwy942q8wRY0zI3NY94DA4sgWUj4OBS2PQLbJ4Ale+FZv0hJByLxUxoxTJULF+aw0dOsGnLLk6fieefHfvYsWs/FcuXIrxGKL4+hfL1sxERcSTNhBIREREREbmgSvEKfNzzNbZ8NJP3ewygQnBpklNT+GnZn7R472HuHd6XP9fPIy0j/eqNOblmJqAg893J9dLP5VvAkzOh70II6wiGATumZe4jNb4zHFoBhoHZbKJsmeJ069yaju2bEFI0AJvNYPfew/w2ZQ7zFq7m9Om4/Po4REQcSjOhRERERERE/sPb3YteLbrzZPP7WLV3E+OX/sHfW5awdv9W1u7fSpFCfvRs1IlHmnaheOHgHNuw2qxX3TCdEnWg568QtROWjYR/psL+RZmvEnWh2QCo1B6TyUSJ4sGUKB5MZNQZNm/dxZGjpzh46DgHDx2nRPFgatYIpWhwkevfx0pEJJ8oCSUiIiIiInIZJpOJRpUiaFQpgsj4GCasnMHPy6YReTaGz+f8yJdzf6ZNtUY83qwbzcLqYjZnLjaZtXkxb00ayan4aHtbRX0DGdqjHx1rtsjeUVDlzKfqtXoTVnyeuUTv2Dr4pQcEVYGm/aFqF7A4ERzkz11tG3Mm9iybt+7mwMGjHDseybHjkQQF+lMrPIySJYKVjBKRW46W44mIiIiIiORCsG8AAzr2Yv0HfzKu74c0Ca2NzbAxd9tyHvzyJRoNup9vFkxk0upZ9P52YJYEFEBkfDS9vx3IrM2LL99J4dLQaSQM+AeavAQuXhC1A6b0gs9qwfofICMVAP/CPrRuUY8Hut9F5dCymM1moqLP8Pe8FUz9cz77DxzFZjPy7wMREckjJaFERERERETywNniRMeaLZjy0lcsH/wbvVvcTyE3Tw7FHGfw1C/434/vkVPq52LZ25M/w2qzXrmTQsHQ7l14ZUfm7CiPwhB3GKb/Dz6tBiu+hNREAHy8vWjaOIKePTpQo1pFnJ2dOBN7lgWL1/Lb1L/ZufsgVuul/mJOx3EmPp0Y7SUlIjeYklAiIiIiIiLXqEJwaYb26M+WYX8xvOfrlA4ofsX6BnAyLoo1+7bkrgN3P2jxWuaT9jp8CN4hcC4S5rwJwyvDwg8g+QwAnp7uNKhXg549OlInogpuri4kJCSxbMVGJkyazdZte0hPz2D/gWOkpRvsP3js+m5eRCSPlIQSERERERG5Tp6u7jzcpDOv3tMnV/WjE87krQMXT2j4HPTfBl1GgX85SImHxR/B8Krw9xuQcBIANzcXImpWpucDHWlYvwaeHu4kJ59n9bpt/DRxJnv3HwHg4KHjxJyOI+Z0HOfOJeUtHhGRa6AklIiIiIiIiIME+RTJVb1Ab/9r68DJBSIegf9tgB7joWh1SEuClV/Bp9Vh2otw5gAAzs5OVK9akYd63GW/PD09g4yMzKV558+n8fu0Bfw+bQETJs2+tnhERPJASSgREREREREHqV8hnKK+gVzpuXQWs4WUtPPX15HZAtW6wrPL4dGpUKohWNNgw3j4LAImPQGn/snsz2KhZfO6l31anslkomXzutcXj4hILigJJSIiIiIi4iAWs4WhPfoBXDYRZbVZeXjUAJ74+jWOnj55fR2aTFCxLfSZA73nZv5s2OCf32FUI/i5OxxZQ8Xypeh6b6scm3B2suDs5HR9cYiI5IKSUCIiIiIiIg7UsWYLxvb9kGDfwCzlIX5BfPXEYPq2fhCL2cLfW5fSbMiDjJz9PefTU6+/49INMmdFPbcic5aUyQR75sJ3bWHsXXBkzYWKRpb3tPQM5i5YxZLlG0hPz7j+OERELkPpbhEREREREQfrWLMF7Ws0Zc2+LUQnnCHQ25/6FcKxmC3cV689DzS4mzd+G87qfZsZNmMMk1fP5v0HBtCySoPr77xo9cz9olq9Bcs/hy0T4fBK3I/txL3YYLwyYglLWMIunxYkepamTJAnO48lsHvPIU6eiqFV83oEBRa+/jhERP5DSSgREREREZF8YDFbaFQpIsdzYcXK8Uf/0UzbMJ/BU7/gUMxxHvqyH3fVaMaQ7v+jZJGQ6w+gSHno8iW0fB0+CcPLGsfDRwdgJgMTEJq4FAMnLHszKOdWiUXlBpGQkMi0mYuoXasyNWuEYjZr8YyIOI6+UURERERERG4Ck8lElzptWTF4Uv4t0QPwKQb3fQdmJywXElCQ+Y9BCxlgdqLY3S9zf9e2lCtbAsMwWL9xB9P/WkLCuSTHxCAigpJQIiIiIiIiN1Uhd0+G3Pc/Frz5Ew0q1CQlPZVhM8bQ4t2eLNqx2jGdhPeApxflfM7dDzyL4OrqQusW9WjZrC4uzk5ERZ9hyh/z2LP3MIZh5HytiEgeKAklIiIiIiJyC7i4RG/0k0MI8iliX6LnkKfo/YtxYS7UxXeSYuDHLvDnC5hSz1GxQinu69qW4KAipKdnsHjZeuYvWsP582kOi0FE7kxKQomIiIiIiNwiTCYTXeu2y58lep4B4BWIERLOllJPYISEZ5bV7Jl5fuOP8GV92L8I70KedOrYnLq1q2I2mTh46DhT/pjHiZPRDrlPEbkzKQklIiIiIiJyi8mXJXo+xeDlHVh7z+dIYEusvefDKzuh29fQazb4lYazx2F8Z5j2P8xp56gVHkbnTi3x8fYiKTmFmbOXsnrtVqxWqyNvV0TuEEpCiYiIiIiI3KIcvkTPyRVMF5bhmUyZxwBlGsMLq6H+U5nHG36ALxvA/sUEBhTmvi5tCAstC8DWf/byx/SFxMaddcAdisidREkoERERERGRW1i+LtH7NxdPuHs4PDkLfEvB2WMw/l6Y/hLOthSaNY6gXZuGuLm5cCb2LL9PW8A/O/Zp03IRybUCk4SKjY2lZ8+eeHt74+vrS69evUhMTLziNefPn+e5557D398fLy8vunXrRlRUlP381q1befDBBylRogTu7u6EhYXx+eefZ2ljyZIlmEymbK/IyMh8uU8REREREZGc3JCn6AGUbZI5K6pe78zj9d9nzoo6sJQypYpxf9d2lCgejNVqY+XqLcyeu5yk5BTH9S8it60Ck4Tq2bMnO3bsYP78+fz1118sW7aMp5566orX9OvXj5kzZzJlyhSWLl3KyZMn6dq1q/38xo0bCQwM5JdffmHHjh28+eabDBw4kK+++ipbW3v27OHUqVP2V2BgoMPvUURERERE5GpuyFP0XL3gnhHwxMzMWVHxR+GHe2BGPzwsGXRo15jGDWpisZg5djyKKX/M49CRE47pW0RuW043O4Dc2LVrF3PmzGH9+vXUrl0bgC+//JIOHTowfPhwQkJCsl1z9uxZxo0bx8SJE2nZsiUAP/zwA2FhYaxZs4b69evz5JNPZrmmbNmyrF69mj/++IPnn38+y7nAwEB8fX3z5wZFRERERETy4OISvTbVGjN81ljGLprM31uXsmTnGl686zGeadMTN2fX6++oXDN4YRXMfQfWjct87V2AqesoqlZpSkhIAAsXr+VM7Fnmzl9FWKUyNKwfjrNzgfinpojcYAXim2H16tX4+vraE1AArVu3xmw2s3btWrp06ZLtmo0bN5Kenk7r1q3tZaGhoZQsWZLVq1dTv379HPs6e/YshQsXzlYeHh5OamoqVatWZfDgwTRq1Oiy8aamppKaemld9sU10hkZGZgubgJYAKWnp2d5F3EUjS3JTxpfkp80viQ/aXxJbrg5ufDWvc9yX532vD1lJGv2b2HYjDFMWj2bd+97iRaV62W7Js9jy+wGd32MqVJHLDP+hyn+CHx/N9baT1KozSDu6dCUjZt38c+O/ezac4gTp6Jp3rg2AQF+jrxVKSD03XXnycu+cCajAOwi98EHH/Djjz+yZ8+eLOWBgYEMGTKEZ555Jts1EydO5IknnsiSDAKoW7cuLVq0YNiwYdmuWbVqFc2aNWPWrFm0bdsWyFyGt2TJEmrXrk1qaipjx47l559/Zu3atdSqVSvHeAcPHsyQIUPsx15eXhw+dJDVa9bqUaYiIiIiIpIvDMNg/amdTN29iLOpmfvnhgdVpHtoK4p4+AJgM2zsiz3G2dREfFy9qFC4BGZT7ndpcbKmUPnYb5SJWQRAkmsAm0v34Yx3GKlpNuLPZWCzZdb18rDg5WEu0P8jXkSuzmKx0KB+PfwK+2M2X/n75KbOhHr99ddzTAb9265du25ILNu3b+fee+9l0KBB9gQUQKVKlahUqZL9uGHDhhw4cICRI0fy888/59jWwIED6d+/v/3YMAwy0tNo27Ztgf4CTk9PZ/78+bRp0wZnZ+ebHY7cRjS2JD9pfEl+0viS/KTxJdeiIx0ZkPIsI//+ge+XTmVL1F52xx7h+baPUDqgGO9PG82p+Bh7/aK+AQzp9j/uCm+Wh166kXFwCZYZ/8Pz7HEa7/kAa53e2Dq8Q6rhzMo1Wzl0+ASJyVY8vXxo2jiCQoU8HX+zckvSd9edxzAMziWczVXdm5qEGjBgAI8//vgV65QtW5bg4GCio6OzlGdkZBAbG0twcHCO1wUHB5OWlkZ8fHyWvZyioqKyXbNz505atWrFU089xVtvvXXVuOvWrcuKFSsue97V1RVX10vrr202G3GxZ3BycrpqVrAgcHZ21peJ5AuNLclPGl+SnzS+JD9pfEleFXb25b0e/XiocSfe+G04q/dtZvissTnWjYyPoe+4txjb90M61myR+04qtYEX1sCct2HDD1jWj8WyfwHOXUfTtlUj9u4/wopVm4mKjuXPmYtp3LAmFcuXKtD/U17yRt9ddw7bxemPuXBTMyIBAQGEhoZe8eXi4kKDBg2Ij49n48aN9msXLVqEzWajXr3sa5wBIiIicHZ2ZuHChfayPXv2cPToURo0aGAv27FjBy1atOCxxx7j/fffz1XcW7ZsoWjRotd41yIiIiIiIvnv4lP0vnp80GWX3F3cm+XtyZ9hteVx6xA3b+j8OTz2J/gUh7jDMK4DptmvUalUAN27tiU4yJ/09AwWL13PgkVrSE1Nu657EpGCrUBMywkLC6N9+/b06dOHdevWsXLlSp5//nkeeOAB+5PxTpw4QWhoKOvWrQPAx8eHXr160b9/fxYvXszGjRt54oknaNCggX1T8u3bt9OiRQvatm1L//79iYyMJDIykpiYS9NTP/vsM6ZPn87+/fvZvn07L730EosWLeK555678R+EiIiIiIhIHphMJor6BWIzLj9TwQBOxkWxZt+Wa+ukQit4YTVEPJZ5vPob+Koh3me20qljc+pEVMFkMnHg0HEm/zGPEyejr9yeiNy2CkQSCmDChAmEhobSqlUrOnToQOPGjRkzZoz9fHp6Onv27CE5OdleNnLkSO6++266detG06ZNCQ4O5o8//rCfnzp1KjExMfzyyy8ULVrU/qpTp469TlpaGgMGDKBatWo0a9aMrVu3smDBAlq1anVjblxEREREROQ6RCeccWi9HLn5QJcv4bE/wLsYxB6CcXdh/nsgEVVK0/melnh7e5GUlMLM2UtZvXabHtokcge6qXtC5UXhwoWZOHHiZc+XLl0622MB3dzcGDVqFKNGjcrxmsGDBzN48OAr9vvqq6/y6quv5jleERERERGRW0Ggt79D611Rhdbw4hr4+03Y+BOs/hr2ziWoy9d079KGVWu2sGvPIbb+s4fjJ6No1bwehf28r79fESkQCsxMKBEREREREcm7+hXCKeobyJW2BDebzLi5uDmmQzcf6PIVPDoVvEPgzEEY1x7n+W/RrF5l2rVuiJurC2fOxPP7tPls37EfwzCIjollxqwlRMfEOiYOEbnlKAklIiIiIiJyG7OYLQzt0Q/gsokom2Gj66fPMHnNbMd1XLFt5hP0aj0MhgGrRsOoRpQxHaN7t7aUKB6E1WpjxerNzJ67gp27DnLyVAx79x9xXAwicktREkpEREREROQ217FmC8b2/ZBg38As5SF+QXz5xCDaVGtEakYaL45/l3cmf0aGNcMxHbv7QtfR8MgUKFQUzhyAse3wXPoeHVrWJqJmZcxmE8eOR7J77yEADhw4RszpOGJOx3HuXJJj4hCRW0KB2RNKRERERERErl3Hmi1oX6MpK3dvZO7SBbRr1ppGoRFYzBa61WnHJ3+NZeTs7xmz6Dd2ntjPt32G4u/l65jOK7WDF9fC7IGweQKs/ArTnjls9BqYrWrK+VR+n7bAfvx07+6OiUFEbjrNhBIREREREblDWMwWGlSoSd2QKjSoUBOL2QKA2WzmtU5PMa7vh3i4urNizwbaf/gEO47vc1zn7r7Q7Wt4ZDIUCobT+2l5+jtMGDlWN5lMtGxe13H9i8hNpySUiIiIiIiIAJmzpWa9OpZSRYpx7Mwp7h7Wm2kb5ju2k0rtM2dFhT9IxcQ1dD35bo7VypYpRoVyJR3bt4jcVEpCiYiIiIiIiF1YsXLMGfg9zSvXIyU9lafHvs3QP0dhtVkd14m7H9z3LXT+Ctx8M8sM24X3zJlRBw4eZ+nCpdhsOc+UEpGCR0koERERERERycLP04cJz4/gubYPA/DV3J95+KsBxCclOLajac/jnnQM94yzBKQdoenpnwhIO4yLNRkMG7sPx7Bo6TpsNptj+xWRm0Ibk4uIiIiIiEg2FrOFt7s+T7USlej301AW71xD+4+eZPwzHxMaUtYxndz3HV5/PMPDx1/FTAYmICxxKTacOORVi0UBT7H/wFGsGVZat6yHxWJxTL8iclNoJpSIiIiIiIhcVuc6bZj56ncULxzM4ZjjdBzWm9mblzim8fAe8PQiLBcSUAAmwEIG5a37aVsrBLPZzKEjJ5gzfxUZGQ5cEigiN5ySUCIiIiIiInJFVUtUZO4b42lUKYKk1GSe/PZ1Pp75nWOXyZku/vP0QjoqJZbSM7tzVxV3nCwWjh2PZPbc5aSnZziuTxG5oZSEEhERERERkavy9/Lltxc/p0/LHgCMmDWOJ755jXMpSdfXsGcAeAVCSDh0+gyK1cwsK1kf0pIoMasnHcsk4+zsxMlTMfz19zJSU9Ou+35E5MZTEkpERERERERyxdnixHv39+Pzx97G1cmFuduW02HYkxyIOnrtjfoUg5d3wNOLoe6Tme+v7IQn/4LwB8BmpeiCZ7m7yAFcXJyJij7DzNlLSTmf6rgbE5EbQkkoERERERERyZMeDTry54CvKeobwL7II7T/8Anm/7Py2ht0cgXThWV4JlPmsZMLdPsWmr8CQNDqd+nkugw3NxdOn4lnxqwlJCefd8DdiMiNoiSUiIiIiIiI5FmtMlWYO3A8dctV59z5JB4d/TKf/z0ewzAc14nJBK3fhnu/ALOFIv+M5d7UKXi4uxIXl8D0vxaTmJjsuP5EJF8pCSUiIiIiIiLXJNDHn6n9RvFo0y4YhsGH07+hz3dvknTewYmhOo/Dw5PAxRO/QzO4N240Xh6unE1IZNpfizmbkOjY/kQkXygJJSIiIiIiItfMxcmZjx96jU96vo6zxYm/Ni3i7k/6cCTmhGM7qtgWev8NXkH4RK6i88mh+Hi6kJiYzPS/FhMXn+DY/kTE4ZSEEhERERERkev2SJPO/NF/NIHe/uw6cYB2Hz7B0p1rHdtJSDj0XQABlfCK3829B1/Dz8NCcvJ5pv+1hNNn4h3bn4g4lJJQIiIiIiIi4hB1ylVn7sAfqFm6MvHJCTz4ZT++nj/BsftE+ZWCp+ZB6cZ4pJyk097/UcTdxvnzqcycvYSo6FjH9SUiDqUklIiIiIiIiDhMUb9A/hzwNQ80vBubYWPI71/y3PeDSE5z4JPs3P3g8T+hWjfcM85yz54XCXI9T2pqOn/9vZRTkTGO60tEHEZJKBEREREREXEoN2dXRj7yJu/3GIDFbOGP9fO495OnOHbmlOM6cXKF7uOgST9cbSncvbc/IU7xpKdnMOvv5Rw7HuW4vkTEIZSEEhEREREREYczmUz0atGdyf/7gsJevvxzbC/tPnyCVXs3Oa4TsxnaDYF7RuBMOh0OvE4J00kyrFb+nreCw0dOOq4vEbluSkKJiIiIiIhIvmlUKYK5A3+gWomKxCbGc/9nLzBu8RTH7hNVrzf0/BUnJ2faHxpCGet+bDYb8xasYv/BY47rR0Sui5JQIiIiIiIikq9K+Bdl+itj6FqnLRk2K29O+pT+P3/A+fRUx3USehf0moXF0482x4ZRPnUbNsNg4eI17Nl72HH9iMg1UxJKRERERERE8p2HixujnhzCoG4vYDaZ+XXVTLqOeJZTcdFYbVZW7tnIn+vnsXLPRqw267V1UjwC+i7AXKQsLU99QWjyGgwDFi9bz46dBxx7QyKSZ043OwARERERERG5M5hMJp5p05PKxcrTd+zbbDq0g2bvPoSzxZkziXH2ekV9Axnaox8da7bIeyeFy8BT8zH/8iDNjo7FyT+Z7YVasnzVJjIyMqhRvZID70hE8kIzoUREREREROSGala5HnMH/kAxvyASUhKzJKAAIuOj6f3tQGZtXnxtHXj4wxPTMVW5l0ZnJlAzfhYAq9dtY+PmnY7dj0pEck1JKBEREREREbnhivsHYzVsOZ67mCJ6e/Jn1740z9kdeozH1Oh56sb/QZ24PwFYv3EHa9f/o0SUyE2gJJSIiIiIiIjccGv2bSEyPuay5w3gZFwUa/ZtufZOzGa46wNMHYcRkTCLBrG/AbBl2x5Wrt6iRJTIDaY9oUREREREROSGi04449B6V9TgGfApTo3JvXAy0lju/yjbd+4nI8NK08YRmM2m6+9DRK5KM6FERERERETkhgv09ndovauqfA88OZMq1n9oETMWk2Fj995DLFq6Dqst52WBIuJYSkKJiIiIiIjIDVe/QjhFfQO50hwkdxc36pSr5rhOS9aDpxZQyTWS1jHfYjas7D9wlPkLV2O1XuPeUyKSa0pCiYiIiIiIyA1nMVsY2qMfwGUTUSlp53n5l4+wOXKmUpHy0Hch5QpDu+ivsBjpHD5ykjnzV5GekeG4fkQkGyWhRERERERE5KboWLMFY/t+SLBvYJbyEL8gnmn9EBazhclrZvPyhA8dm4jyLAJP/kWp0iW5K+pznGypHDseyd9zV5CWlu64fkQkC21MLiIiIiIiIjdNx5otaF+jKWv2bSE64QyB3v7UrxCOxWyhRukwnh03iIkrZ2IxWxj24KuYzQ6aS+HiAQ/+TPHZr9Nx8whmB73EyVMxzPp7GR3aN8HV1cUx/YiInWZCiYiIiIiIyE1lMVtoVCmCLnXa0qhSBBazBYDOtdvw1RODMJvM/Lx8Gm9M+hTDMBzXsdkCHT+maIsnuCdyOK7WJKJiYpk5azEp51Md14+IAEpCiYiIiIiIyC2sa912fPbYW5hMJsYv/Z23J490bCLKZILGLxDYdQidTn+GmzWB07EJzJi5kKTkFKJjYpkxawnRMbGO61PkDqUklIiIiIiIiNzS7q/fgRGPvAnA2MWTGTz1c8cmogCqdsG/59fcG/c1HhlxxJ1NYvr0+ezYsJaTp2LYu2WDY/sTuQMpCSUiIiIiIiK3vAcb3s3wnq8D8O3C3xj65yjHJ6JKN8Cv16+0SZmGR3ocCUmp7DlxDoADx04TczqOmNNxnDuX5Nh+Re4Q2phcRERERERECoSHm3TGath4beLHjJr3C05mC6/f+zQmk8lxnQRUYHqhJ/5VkNl2itWJ36ctsJc+3bu74/oUuUMUmJlQsbGx9OzZE29vb3x9fenVqxeJiYlXvOb8+fM899xz+Pv74+XlRbdu3YiKispSx2QyZXv99ttvWeosWbKEWrVq4erqSvny5Rk/fryjb09ERERERERy4bGmXXm/xwAAPp/zI8P/GuvwPlrGjMFkWLMWXkh0mQwrLWPGOLxPkTtBgUlC9ezZkx07djB//nz++usvli1bxlNPPXXFa/r168fMmTOZMmUKS5cu5eTJk3Tt2jVbvR9++IFTp07ZX507d7afO3ToEB07dqRFixZs2bKFl156id69ezN37lxH36KIiIiIiIjkQq8W3Xm3+0sAfDprHCNmfe/Q9ive1ZuukR/meK5L5EdUvKu3Q/sTuVMUiOV4u3btYs6cOaxfv57atWsD8OWXX9KhQweGDx9OSEhItmvOnj3LuHHjmDhxIi1btgQyk01hYWGsWbOG+vXr2+v6+voSHBycY9/ffPMNZcqU4dNPPwUgLCyMFStWMHLkSNq1a+foWxUREREREZFceKrVA1htVob8/iUfzxyDk8XCi+0fc0zj4T3AtRSsPAaGDUxmMAwwmfin8mu0Cu/hmH5E7jAFIgm1evVqfH197QkogNatW2M2m1m7di1dunTJds3GjRtJT0+ndevW9rLQ0FBKlizJ6tWrsyShnnvuOXr37k3ZsmV5+umneeKJJ+xrilevXp2lDYB27drx0ksvXTbe1NRUUlNT7ccXN8vLyMhw7FrlGyw9PT3Lu4ijaGxJftL4kvyk8SX5SeNL8svtNLZ6N7+f1LQ0Ppr5LR9M+xqTAU+3fsghbTtbwD3jLF7WWMLOLWezT3vOOQeyL86JomuXU6FW/as3cge6ncaX5E5eHhBQIJJQkZGRBAYGZilzcnKicOHCREZGXvYaFxcXfH19s5QHBQVluebdd9+lZcuWeHh4MG/ePJ599lkSExN58cUX7e0EBQVlayMhIYGUlBTc3d2z9f3hhx8yZMgQ+7GXlxeHDx1k3rx5WK3WbPULmvnz59/sEOQ2pbEl+UnjS/KTxpfkJ40vyS+3y9gqQ2E6VWjKjH3LeH/61+zds5fWZeped7tuabHcFzWUVGcfjgY0p0PMt+x2rc1Wn7tYse04Bw78jM3T3wF3cHu6XcaXXJ3FYqFB/Xq5qntTk1Cvv/46w4YNu2KdXbt25WsMb7/9tv3nmjVrkpSUxCeffGJPQl2LgQMH0r9/f/uxYRhkpKfRtm3bAj8Tav78+bRp0wZnZ+ebHY7cRjS2JD9pfEl+0viS/KTxJfnldhxbHehAudnfM/LvH5iyeyHVqlbliWb3XX/Dd3fHxeJCFZMJDIOIxGjOTv6Jw04ViE000alZVbwCS15/P7eR23F8yZUZhsG5hLO5qntTk1ADBgzg8ccfv2KdsmXLEhwcTHR0dJbyjIwMYmNjL7uXU3BwMGlpacTHx2eZDRUVFXXZawDq1avHe++9R2pqKq6urgQHB2d7ol5UVBTe3t45zoICcHV1xdXV1X5ss9mIiz2Dk5MTZnOB2Qv+spydnfVlIvlCY0vyk8aX5CeNL8lPGl+SX263sfVqp6cwMPjs7/G8M/VznJ2ceaL5dSai/vv5FC5Oq/sf488pfxJrCWLhrL+598EHcS6kGVH/dbuNL7k8m82W67o3NQkVEBBAQEDAVes1aNCA+Ph4Nm7cSEREBACLFi3CZrNRr17OU74iIiJwdnZm4cKFdOvWDYA9e/Zw9OhRGjRocNm+tmzZgp+fnz2J1KBBA2bPnp2lzvz586/YhoiIiIiIiNxYJpOJ1zr1JcNm5au5PzPwt+E4WZx4pElnh/bjXLgY7e9qxR9z1nDaHMSS38bS+rEXMLl4OLQfkdtRgZiWExYWRvv27enTpw/r1q1j5cqVPP/88zzwwAP2J+OdOHGC0NBQ1q1bB4CPjw+9evWif//+LF68mI0bN/LEE0/QoEED+6bkM2fOZOzYsWzfvp39+/fz9ddf88EHH/DCCy/Y+3766ac5ePAgr776Krt372b06NFMnjyZfv363fgPQkRERERERC7LZDLxZudn7ZuTvzLhIyaunOnwfrxLhtG2YWXMhpUDprJsmvgxWDMc3o/I7aZAJKEAJkyYQGhoKK1ataJDhw40btyYMWPG2M+np6ezZ88ekpOT7WUjR47k7rvvplu3bjRt2pTg4GD++OMP+3lnZ2dGjRpFgwYNCA8P59tvv2XEiBEMGjTIXqdMmTLMmjWL+fPnU6NGDT799FPGjh1Lu3btbsyNi4iIiIiISK6ZTCYGdXuBPi17ADDglw+YtHqWw/sJqVqPxpUzl+Gtz6jCwclDIA/LkkTuRAXi6XgAhQsXZuLEiZc9X7p06WyPBXRzc2PUqFGMGjUqx2vat29P+/btr9p38+bN2bx5c94CFhERERERkZvCZDLxbveXyLBa+WHpVF76aSgWs5n76t3l0H4qN2pDbPw0tp9KZ9G5Snj/9T5F7nkLCvADqUTyU4GZCSUiIiIiIiKSWyaTiQ8eGMCjTbtgGAYvjn+PaevnO7yfhnd1olghGxlmV+acDCBl0ecO70PkdqEklIiIiIiIiNyWTCYTHz3wCj0bdcJm2Hjuh8HM2LjQoX2YzWbadu6Cj0sGiU7+zN2VjHXteIf2IXK7UBJKREREREREbltms5lPer5OjwYdsdqsPDvuHWZvXuLQPlxdXWjfqSMuJiuRbhVYvnozxvZpDu1D5HagJJSIiIiIiIjc1sxmMyMeeYP76t1Fhs3KU9+9ydytyxzah5+vN63bNsOEwW6vxvzz90Q4sMShfYgUdEpCiYiIiIiIyG3PYrbw+WNv0bVOWzJsVnqPeYP5/6x0aB8lSxSlft3qAKz27caxqe/CiU0O7UOkIFMSSkRERERERO4IFrOFLx5/h04RrUi3ZtDr29dZvGONQ/uoXq0SlcqXwDCZme/3GPG/PA0xex3ah0hBpSSUiIiIiIiI3DGcLE6MenIIHWu2IC0jnce/fpVlu9Y5rH2TyUTTJnUICvAlzezB396PkPrjAxB/3GF9iBRUSkKJiIiIiIjIHcXZ4sQ3vd/jrhrNSM1I49HRr7Bi9waHtW+xWGjXpgleHq6cdQ5mvus92H7sAklnHNaHSEGkJJSIiIiIiIjccZwtTnzbZyhtqzfmfHoqj4x+mVV7Hbd/k4eHG+3bNcXJYua4e1VWZ4TDT90g9ZzD+hApaJSEEhERERERkTuSi5Mz3/X5gFZVG5KSdp6HRw1g7f4tDmu/iL8vLZvXA+Afn7bsOusBEx+GjFSH9SFSkCgJJSIiIiIiIncsV2cXxvX9kOaV65GcmsJDX/Znw8F/HNZ+2TLFqV2rMgDL/R/h1PFjMPUpsFkd1odIQaEklIiIiIiIiNzR3Jxd+eHpYTSuVJuk1GQe+OJ/bDq0HavNyso9G/lz/TxW7tmI9RoTRxE1K1O2THFsJifmBj7HuV3LYOYAMAwH34nIrc3pZgcgIiIiIiIicrO5u7jx03PDefir/qzau4luI5/H09Wd0+fi7HWK+gYytEc/OtZskae2TSYTLZrW4WxCImfOwJygF+i84UOcPf2h9duOvhWRW5ZmQomIiIiIiIgAHi5u/PzscCoGlyYl7XyWBBRAZHw0vb8dyKzNi/PctrOzE+3bNMLd3ZUzLiVYVKQXxpLhsGq0o8IXueUpCSUiIiIiIiJygZuLKwnnk3I8d3Hx3NuTP7umpXmFvDxo17oRZrOZQ54RbPDtBLNfhy2/XUfEIgWHklAiIiIiIiIiF6zZt4XI+JjLnjeAk3FRrNm35ZraDw7yp1njCAA2+nZiv0dt+OMZ2DPnmtoTKUiUhBIRERERERG5IDrhjEPr5aRSxdLUqFYRgCWBTxHjVAx+fRQOr77mNkUKAiWhRERERERERC4I9PZ3aL3LqVenOiWKB5OBhTkhr5BkuMIv90Pk9utqV+RWpiSUiIiIiIiIyAX1K4RT1DcQ0xXqhPgFUb9C+HX1YzabaN2yPr4+hUjCg7nFXycjNQnGd4HYQ9fVtsitSkkoERERERERkQssZgtDe/QDuGwiql31JljMluvuy9XFmfZtG+Hq6ky0KZBlxf+HkRgFP9wL56Kuu32RW42SUCIiIiIiIiL/0rFmC8b2/ZBg38As5YXcPAGYsHI6Gw7+45C+fH0K0aZlA0wmE3stldka9CDEHYYfu0BKvEP6ELlVKAklIiIiIiIi8h8da7Zgwwd/8nu/UXzd611+7zeKncPn0LFmc9Iy0nnim9c4GRftkL6KFwuiUf1wANa4t+aIX5PMvaF+6QFpyQ7pQ+RWoCSUiIiIiIiISA4sZguNKkXQpU5bGlWKwNnJmS8ee4fKxcoTkxDL41+/SkraeYf0VaVyOcJCywKwwP9JYj0rwpHVMOlxsKY7pA+Rm01JKBEREREREZFc8nTzYPwzH1PYy5dtR3fT/+cPMAzjuts1mUw0blCTosFFSM+wMafkG5x38Yc9c+DP58Bmc0D0IjeXklAiIiIiIiIieVCySAjj+n6Ik9nCn+vn8dXcnx3SrsVipm3rhhTy8iAhxcr8sE+xml1gy28w5w1wQLJL5GZSEkpEREREREQkjxpUqMkHD7wMwAfTv2betuUOadfdzZX2bRvj7OzEibNWVkV8lXli1WhY+qlD+hC5WZSEEhEREREREbkGjzbtwuPNumEYBs+MG8Tukwcd0q5/YR9aNa8HwI4YCzvqj8w8seBdWP+DQ/oQuRmUhBIRERERERG5Ru/d34+GFWuRlJrMY6NfITbxrEPaLV0qhLq1qwKwMsqHE/XeyTwx4yXYPg1ObIJxd2e+ixQQSkKJiIiIiIiIXCNnixPfPfUBJYuEcOT0CZ767k3SrRkOabtmjVDKlyuJzTCYF1+BhJpPZ+4LNaU3LPkEDi3L3C9KpIBQEkpERERERETkOvh7+fLjM5/g6erBij0bGDz1c4e0azKZaN6kNgEBfqSmpvG3tQlpZdqANQ12zcqstO13OLkFTmyGuKMO6VckvzjlpXJ8fDx//vkny5cv58iRIyQnJxMQEEDNmjVp164dDRs2zK84RURERERERG5ZYcXKMeqJwTz+zauMWzyFsJByPNyk83W36+RkoV3rRvwxfQFxCedZmBxKOxZg5sKT8pJiYHTTSxcMTbjuPkXyS65mQp08eZLevXtTtGhRhg4dSkpKCuHh4bRq1YrixYuzePFi2rRpQ+XKlZk0aVJ+xywiIiIiIiJyy2kf3pTXO/UFYOBvw1mzb4tD2vXydKdd60ZYTAZHPMJZ79uFaJdSzAh6mWiXUpmVzE5w33cO6U8kv+RqJlTNmjV57LHH2LhxI5UrV86xTkpKCtOmTeOzzz7j2LFjvPzyyw4NVERERERERORW97+7HmfXyQNM37CAXmMGMuf17ynhX/S62w0KLEzzZvVZuGQtm307EuNSipPuYexNb0hg7BHouxCK1XTAHYjkn1wloXbu3Im/v/8V67i7u/Pggw/y4IMPcubMGYcEJyIiIiIiIlKQmEwmRj76FgejjvLPsb08/vWrzHhlDJ6u7tfddnCQP5WKF2LP8XMcd68CwAHPulRKXAmb5uLmXZFChTyvux+R/JKr5XhXS0AB2Gw2/vrrr1zXFxEREREREbkdebi4Mf6ZTyhSyI8dx/fxvx/fwzCM6253wqTZ7Dl+LvPAZAIgxVyI30MG8XtUOSZMmn3dfYjkp+t+Ot7+/ft54403KF68OF26dHFETCIiIiIiIiIFWrHCQXzf9yOcLU78tWkRI2f/cN1ttmxeF9OF5JPdhWOTYaVl4lRIOn3d/Yjkl2tKQqWkpPDTTz/RtGlTKlWqxKpVq3jnnXc4fvy4o+MTERERERERKZDqlq/BsIdeA+DjmWOYvXnJdbVXsXwput7bKsdzXVN+pOLpv2FyL7BZr6sfkfySpyTU+vXr6du3L8HBwXz22Wfce++9mEwmRo8ezdNPP01QUFB+xSkiIiIiIiJS4DzU6B76tOwBwPPjh7Dz+L586Sep2WBw9oADi2Hh+/nSh8j1ynUSqnr16nTv3h1/f39WrVrFpk2bGDBgQPapgCIiIiIiIiJiN6jbCzQNrUNyagqPjn6F0+firrktd3dX3N3dCCjiR+OGtXB2sgCw6fA5bPd+mVlp6XDYpf2h5NaT6yTUnj17aNq0KS1atKBy5cr5GZOIiIiIiIjIbcPJ4sS3fYZSJqA4x2Mj6T3mDdIy0q+pLS9PDx5+oANd721F1crluK9rW5ycLETHxLHNXB3q982sOPUpOHPAgXchcv1ynYQ6ePAglSpV4plnnqF48eK8/PLLbN68+YbNhIqNjaVnz554e3vj6+tLr169SExMvOI158+f57nnnsPf3x8vLy+6detGVFSU/fz48eMxmUw5vqKjowFYsmRJjucjIyPz9X5FRERERETk9uHn6cOPz36Cl5sHa/Zt5q3JI665LYvFYv+3uI+3F40a1ARg3YbtxNZ7DUrUhdQE+PURSEt2SPwijpDrJFSxYsV488032b9/Pz///DORkZE0atSIjIwMxo8fz969e/MzTnr27MmOHTuYP38+f/31F8uWLeOpp5664jX9+vVj5syZTJkyhaVLl3Ly5Em6du1qP9+jRw9OnTqV5dWuXTuaNWtGYGBglrb27NmTpd5/z4uIiIiIiIhcScWiZfi613uYTCZ+WvYn45f+7pB2QyuWpmSJothsNhat2Iz1/vHgGQCR22HGS2AYDulH5Hpd09PxWrZsyS+//MKpU6f46quvWLRoEaGhoVSvXt3R8QGwa9cu5syZw9ixY6lXrx6NGzfmyy+/5LfffuPkyZM5XnP27FnGjRvHiBEjaNmyJREREfzwww+sWrWKNWvWAODu7k5wcLD9ZbFYWLRoEb169crWXmBgYJa6ZvM1fXQiIiIiIiJyB2tTrRFvdH4GgLcmjWDFno3X3abJZKJ5k9q4ubpw+kw8Gw/EQ4/xYLbAlt9g3bjr7kPEEZyu52IfHx+effZZnn32WbZs2cL333/vqLiyWL16Nb6+vtSuXdte1rp1a8xmM2vXrqVLly7Zrtm4cSPp6em0bt3aXhYaGkrJkiVZvXo19evXz3bNTz/9hIeHB/fdd1+2c+Hh4aSmplK1alUGDx5Mo0aNLhtvamoqqamp9mPjQtY5IyOjQG/knp6enuVdxFE0tiQ/aXxJftL4kvyk8SX5RWPr5uvb4gF2HNvHtA3z6TPmDWa+PIZSRUKuq01nZwsN69dg0dL1bN66i2J3NSW45dtYFgzGmPUa1sAqGMVrX72h66Txdecx8jDTzmTkpfZN8sEHH/Djjz+yZ8+eLOWBgYEMGTKEZ555Jts1EydO5IknnsiSDAKoW7cuLVq0YNiwYdmuqVy5Ms2bN2f06NH2sj179rBkyRJq165NamoqY8eO5eeff2bt2rXUqlUrx3gHDx7MkCFD7MdeXl4cPnSQ1WvWYrVa83TvIiIiIiIicvtJs6YzfO0vHDkbSYhXAK81eAQ3J9frbjcuIYPzqTYsFgjwdaLuwS8JidtAinNhllR5jzRnbwdEL3KJxWKhQf16+BX2v+qqsVzNhGrfvj2DBw/OcfbQv507d47Ro0fj5eXFc889d9V2X3/99RyTQf+2a9eu3IR43VavXs2uXbv4+eefs5RXqlSJSpUq2Y8bNmzIgQMHGDlyZLa6Fw0cOJD+/fvbjw3DICM9jbZt2xb4mVDz58+nTZs2ODs73+xw5DaisSX5SeNL8pPGl+QnjS/JLxpbt456TRpy9ye9OZkQw+yo9YzpNfS6t35JTU3jjxmLSE4+T+GAkgS0mYLxXWvczxygXcJkrD2nZC7TyycaX3cewzA4l3A2V3VzlYTq3r073bp1w8fHh3vuuYfatWsTEhKCm5sbcXFx7Ny5kxUrVjB79mw6duzIJ598kqvOBwwYwOOPP37FOmXLliU4ONj+tLqLMjIyiI2NJTg4OMfrgoODSUtLIz4+Hl9fX3t5VFRUjteMHTuW8PBwIiIirhp33bp1WbFixWXPu7q64up6KYNts9mIiz2Dk5PTbbGXlLOzs75MJF9obEl+0viS/KTxJflJ40vyi8bWzVcyIITxz3xMl0+fZe625Xw290de63TlB3BdjbOzMy2a1mHWnOXs3H2QsmWKU/yhifBNC8wHl2Je9jG0ecdBd3DlODS+7gw2my3XdXOVhOrVqxcPP/wwU6ZMYdKkSYwZM4azZzOzXCaTicqVK9OuXTvWr19PWFhYrjsPCAggICDgqvUaNGhAfHw8GzdutCeJFi1ahM1mo169ejleExERgbOzMwsXLqRbt25A5tK6o0eP0qBBgyx1ExMTmTx5Mh9++GGu4t6yZQtFixbNVV0RERERERGRy6lVpiqfPPw6L45/l5Gzvyc0pCz31m599QuvoETxYKqElWPHrgMsXrae+7u2xbXzlzClFywdDsVrQ1gHB92BSO7lemNyV1dXHn74YR5++GEg8+lzKSkp+Pv753t2MywsjPbt29OnTx+++eYb0tPTef7553nggQcICcncvO3EiRO0atWKn376ibp16+Lj40OvXr3o378/hQsXxtvbmxdeeIEGDRpkW1Y4adIkMjIy7Pf2b5999hllypShSpUqnD9/nrFjx7Jo0SLmzZuXr/csIiIiIiIid4b763dg14kDfD1/Ai/9+B5lA0tQrWSlq194BfXrVufYiSgSEhJZuXoLLZt3h2PrYM23MPUpeHYp+Jdz0B2I5M41rw3z8fEhODj4hk2vmzBhAqGhobRq1YoOHTrQuHFjxowZYz+fnp7Onj17SE5OtpeNHDmSu+++m27dutG0aVOCg4P5448/srU9btw4unbtmmXZ3kVpaWkMGDCAatWq0axZM7Zu3cqCBQto1apVvtyniIiIiIiI3Hne6vIsLarUJyU9lce/fpWYhDPX1Z6zsxMtm9XFZIK9+49w8NBxaP8+lKwHqQnw6yOQlnz1hkQcKNczoW62woULM3HixMueL126dLbHArq5uTFq1ChGjRp1xbZXrVp12XOvvvoqr776at6CFREREREREckDi9nCN73eo+Ow3uyPOsKT37zO1H6jcHV2ueY2g4P8Ca8eyuatu1m2ciPBXdvh8cCPMKoJRG6HGS9Bt2+hAD9ASwqWgr9LtoiIiIiIiMhtwMejED8++wne7l6sP/gPr//6SbbJFnlVu1YV/Av7cP58GktXbMAoVBR6jM98Qt6W32DdOMcEL5ILSkKJiIiIiIiI3CLKBZXk295DMZvM/LpqJuMWT76u9iwWMy2b1cVsNnPk6Cn27DsMZZtAm8GZFWa/BsfWX3fcIrmhJJSIiIiIiIjILaRFlfq80+15AN6Z8jlLd669rvb8/X2pE1EFgJWrt5BwLgkavwiVO4E1HX59FJJOX3fcIleT5yRU2bJlOXMm+wZp8fHxlC1b1iFBiYiIiIiIiNzJ+rZ6kPvrd8Bm2Og79m0ORR+7rvZqVKtEcJA/6ekZLF66HgOg62goUh4STsDkXmCzOiR2kcvJcxLq8OHDWK3ZB2ZqaionTpxwSFAiIiIiIiIidzKTycTHPV8jokxV4pMTeHT0K5xLSbrm9sxmEy2a1cXJycKpyBj+2bEP3LzhwQng7AEHFsPC9x14ByLZ5frpeDNmzLD/PHfuXHx8fOzHVquVhQsXUrp0aYcGJyIiIiIiInKncnN25funP6L9h0+wL/Iwz3z/Dj8+8zEWs+Wa2vPx9qJhvRosW7mJtev/oXixYAoHhUHnL2FKL1g6HIpHQFhHB9+JSKZcJ6E6d+4MZGZjH3vssSznnJ2dKV26NJ9++qlDgxMRERERERG5kwX5FOGHZz6m8/CnWfDPSj6a/i2v39uXNfu2EJ1whkBvf+pXCM91YiostCyHjpzk2PFIFi9dR+dOLbHU6A7H1sGab2FqX3h2KfiXy+c7kztRrpNQNpsNgDJlyrB+/XqKFCmSb0GJiIiIiIiISKbwUmGMfPRNnhn3Dl/O/Ymfl08jPjnBfr6obyBDe/SjY80WV23LZDLRvEltJv8xl5jTcWzavCtz0/L278PJLXB0Lfz6CDy1AFw88vGu5E6U5z2hDh06pASUiIiIiIiIyA3UpU5b7gpvBpAlAQUQGR9N728HMmvz4ly15enpTpOGtQDYtGUX0TGx4OQCD/wIngEQuR1mvASG4dB7EMn1TKh/W7hwIQsXLiQ6Oto+Q+qi77//3iGBiYiIiIiIiEgmq83KlsM7czxnACbg7cmf0b5G01wtzStfriSHjpzkwMFjLFqyjvu6tMHJOwR6jIfxnWDLb1CiLtTr7dD7kDtbnmdCDRkyhLZt27Jw4UJOnz5NXFxclpeIiIiIiIiIONaafVs4FR9z2fMGcDIuijX7tuS6zSYNa+Lh4Ub82XOs3fBPZmHZJtBmcObPs1+DY+uvOWaR/8rzTKhvvvmG8ePH88gjj+RHPCIiIiIiIiLyH9EJZxxaD8DNzZXmTWoze+4K/tm+j9IlQygWEgiNX8xMPu2cAb8+Cs8tB09tyyPXL88zodLS0mjYsGF+xCIiIiIiIiIiOQj09ndovYtKlihK5dCyACxetp7UtHQwmaDraChSHhJOwOReYLPmOWaR/8pzEqp3795MnDgxP2IRERERERERkRzUrxBOUd9ATJc5bwJC/IKoXyE8z203qFcD70KeJCYms2r1lsxCN294cAI4e8CBxbDw/WuMXOSSPC/HO3/+PGPGjGHBggVUr14dZ2fnLOdHjBjhsOBEREREREREBCxmC0N79KP3twMxkbkH1L8ZwLvdX8rVpuT/5ezsRItmdZn+12L27DtM6dIhlClVDILCoPOXMKUXLB0OxSMgrKMjbkfuUHmeCbVt2zbCw8Mxm81s376dzZs3219btmzJhxBFREREREREpGPNFozt+yHBvoE5no9LOnvNbRcNLkJ49UoALF2+kZSU85knanSHBk9n/jy1L5w5cM19iOR5JtTixYvzIw4RERERERERuYqONVvQvkZT1uzbQnTCGQK9/dlyZCfv/TGKdyaPpH6FcCoEl76mtutEVOHosVPExiWwbMUm2rZugMlkgnZD4cRmOLoWfn0EnloALh6OvTG5I+R5JtRF+/fvZ+7cuaSkpABgGP+dDCgiIiIiIiIijmYxW2hUKYIuddrSqFIEz7TuSZPQ2qSkp/Lc94NIy0i/tnYtFlo2r4fZbOLQkRPs3X8k84STCzzwI3gGQOR2mPESKAcg1yDPSagzZ87QqlUrKlasSIcOHTh16hQAvXr1YsCAAQ4PUEREREREREQuz2w288Vj7+Dn6c22o3v4ZOZ319xWEX9fateqAsDKVZs5l5icecI7BHqMB7MFtvwG68Y5IHK50+Q5CdWvXz+cnZ05evQoHh6Xpt/16NGDOXPmODQ4EREREREREbm6on6BfPrwGwB8Ne9nVu7ZeM1thVevRFBgYdLSM1iybP2llU9lm0CbwZk/z34Njq2/zqjlTpPnJNS8efMYNmwYxYsXz1JeoUIFjhw54rDARERERERERCT3OtRsTs9GnTAMgxfGDyE+KeGa2jGbzbRoVhcnJwsnTkazfef+SycbvwiVO4E1HX59FJJOOyZ4uSPkOQmVlJSUZQbURbGxsbi6ujokKBERERERERHJu3e7v0SZgOKcjIvmlQnDrnn/Zl+fQtSvWx2ANeu2ERd/IaFlMkHX0VCkPCScgMm9wGZ1VPhym8tzEqpJkyb89NNP9mOTyYTNZuPjjz+mRYsWDg1ORERERERERHLP082D0b3exclsYeamhUxeM/ua26oSVo7ixYKwWm0sWroOm82WecLNGx6cAM4ecGAxLHzfQdHL7S7PSaiPP/6YMWPGcNddd5GWlsarr75K1apVWbZsGcOGDcuPGEVEREREREQkl2qWrswr9/QB4I3fPuVwzPFrasdkMtG8aW1cXJyJiYlj89bdl04GhUHnLzN/Xjocds263rDlDpDnJFTVqlXZu3cvjRs35t577yUpKYmuXbuyefNmypUrlx8xioiIiIiIiEgePN/uEeqXDycpNZnnvh9MhjXjmtrx8vSgccOaAGzctJOY03GXTtboDg2ezvx5al84c+B6w5bbXJ6SUOnp6bRq1Yro6GjefPNNJk+ezOzZsxk6dChFixbNrxhFREREREREJA8sZgtfPjEIb3cvNh7azsjZP1xzWxXKlaRsmeLYDINFS9aRkfGvPaDaDYWS9SA1AX59BNPR1TTc/QGmk5sdcBdyu8lTEsrZ2Zlt27blVywiIiIiIiIi4iAl/Isy7KFXARg5+wfWH7i2f8+bTCaaNKqFu7srcfEJrN+4/dJJJxd44EfwDIDI7VhmvETAuV2Ytk52xC3IbSbPy/Eefvhhxo0blx+xiIiIiIiIiIgDdanTlvvqtcdm2Hjuh8GcS0m6pnbc3Vxp1rg2AFv/2cvJUzGXTlozoNWbYDJjOrMfAPOOP+DkFjixGeKOXu9tyG3CKa8XZGRk8P3337NgwQIiIiLw9PTMcn7EiBEOC05ERERERERErs8HD7zM2v1bOXr6JG9M+pQvH3/nmtopXSqE0Ipl2L33EIuXrqN717a4uDjDp1WzV046DaObXjoemnCN0cvtJM8zobZv306tWrUoVKgQe/fuZfPmzfbXli1b8iFEEREREREREblW3u5ejHpiMGaTmSlrZjNt/fxrbqth/RoU8vLgXGIyq9ZuzSy87zswZ53jYrr4g9kp87wIeZwJZbVaGTJkCNWqVcPPzy+/YhIRERERERERB6pbvgb/u+txRs7+nlcnDqN2uWoULxyc53ZcXJxp0awuM2YtYfeeQ5QpFUKp8B4QWCnrzKeLnl4EIeHXfwNyW8jTTCiLxULbtm2Jj4/Pp3BEREREREREJD/07/gktcpUISElked/GILVZr36RTkIKRpA9aoVAViyfAMp51Pt54xLc6AyRW5H5KI8L8erWrUqBw8ezI9YRERERERERCSfOFucGP3kEDxdPVizbzOj50245rbq1q6Kn683KSmpLF+xEcOjCHgFYoSEs6XUExjuF1ZPLfoI0q5tM3S5/eQ5CTV06FBefvll/vrrL06dOkVCQkKWl4iIiIiIiIjcmkoHFOf9Hv0BGDbjW7Yc2XVN7Tg5WWjZvC5mk4mDh0+w77QVXt6Btfd8jgS2JOOFDVAoBOKPwtxr2whdbj95TkJ16NCBrVu30qlTJ4oXL46fnx9+fn74+vpqnygRERERERGRW1yPBh25p1YrMmxWnh33DkmpKdfUTkARPyJqVQZgxarNJKZawXRhOZ67L3Qdlfnz2u9g/2IHRC4FXZ42JgdYvFgDR0RERERERKSgMplMfNzzVTYc3MbB6GMMmvIZwx8eeE1t1awRyuGjJ4mJiWPJsg20bVX/0skKraBuL1g3Dv58Dl5YDW4+DroLKYjynIRq1qxZfsQhIiIiIiIiIjeIn6cPXz4xmO6fPc8vK6bTskoDOtRsnud2zGYzLZvVZeqf8zl+Ior1G3dwJj6dmNNxhBQNhHbvwf5FEHsIZr0O3b52+L1IwZHnJNSyZcuueL5p0xweySgiIiIiIiIit5TGlSJ4tk1PRs37hZd/+ZBaZaoQ7BuQ53b8fL2pX6c6K9dsYfvOAxiGwf6DxzKTUK5e0PUbGNceNk+AyvdAWId8uBspCPKchGrevHm2MpPp0iMYrdZre8SjiIiIiIiIiNxYr3Xqy/Ld69l2dA//+/E9fn3hM8zmvG0ffe5cEkFB/gQU8SPmdBwABw8dJ6xSWQDc/KtTqNGLsOJzmP4ilKwHnv4Ovxe59eV5Y/K4uLgsr+joaObMmUOdOnWYN29efsQoIiIiIiIiIvnAxcmZUU8Owd3ZlaW71vHdokl5bmPCpNn8MX2hPQEFcP58Gr9PW8Dv0xYwYdJsaPUmBIZCYjTM6AeG4cjbkAIiz0koHx+fLK8iRYrQpk0bhg0bxquvvpofMQIQGxtLz5498fb2xtfXl169epGYmHjFa8aMGUPz5s3x9vbGZDIRHx9/Te1u27aNJk2a4ObmRokSJfj4448deWsiIiIiIiIiN02F4NIM7v4/AN6fNpodx/fl6fqWzetmWSH1byaTiZbN64KzG3T7FsxOsGMabJt6vWFLAZTnJNTlBAUFsWfPHkc1l03Pnj3ZsWMH8+fP56+//mLZsmU89dRTV7wmOTmZ9u3b88Ybb1xzuwkJCbRt25ZSpUqxceNGPvnkEwYPHsyYMWMcdm8iIiIiIiIiN9OjTbrQtnpj0jLSeWbcO6Sknc/1tRXLl6Lrva1yPNf13lZULF8q86BYTWj+SubPfw2AhFPXG7YUMHneE2rbtm1Zjg3D4NSpU3z00UeEh4c7Kq4sdu3axZw5c1i/fj21a9cG4Msvv6RDhw4MHz6ckJCQHK976aWXAFiyZMk1tzthwgTS0tL4/vvvcXFxoUqVKmzZsoURI0ZcNQkmIiIiIiIiUhCYTCZGPPImLd7ryd5Thxj65yje7zHgutuNjT1LQBG/SwXNXobdc+DkZpj2PDwyFS4zi0puP3lOQoWHh2MymTD+s36zfv36fP/99w4L7N9Wr16Nr6+vPVEE0Lp1a8xmM2vXrqVLly751u7q1atp2rQpLi4u9jrt2rVj2LBhxMXF4efnl63d1NRUUlNT7ccXP6uMjIzLTlEsCNLT07O8iziKxpbkJ40vyU8aX5KfNL4kv2hsyeX4uHnxac83ePTrlxm3eApNK9WhZZUGubrW2cmCu5srHh5upKclcj7NTFpaOlu27aFM6ZCs/xa+9yucxrTEtHc+Get+wKj1SD7dkdwI/80PXUmek1CHDh3Kcmw2mwkICMDNzS2vTeVaZGQkgYGBWcqcnJwoXLgwkZGR+dpuZGQkZcqUyVInKCjIfi6nJNSHH37IkCFD7MdeXl4cPnSQefPm3RZPD5w/f/7NDkFuUxpbkp80viQ/aXxJftL4kvyisSWX07JUbRYd2cDz3w/mnca98Xb1zNV1Pl4GkIyLuwVXFxsxsRAXn8Dvf/yFh7slS91yRbtQ9fhvMOt1Fh+xkeIakA93IjeCxWKhQf16uaqb5yRUqVKl8hzQ5bz++usMGzbsinV27drlsP5ulIEDB9K/f3/7sWEYZKSn0bZt2wI/E2r+/Pm0adMGZ2fnmx2O3EY0tiQ/aXxJftL4kvyk8SX5RWNLrqZlm1bc/clT7Dl1kDlR6/mh77Bc/1v24vi6q3079uw9wtoN2zmfbuGeu1vj6npphRG2dth+PIzT0TW0Pvs71semgclh21bLDWQYBucSzuaqbq6TUIsWLeL5559nzZo1eHt7Zzl39uxZGjZsyDfffEOTJk1yHeiAAQN4/PHHr1inbNmyBAcHEx0dnaU8IyOD2NhYgoODc93ff+Wm3eDgYKKiorLUuXh8ub5dXV1xdXW1H9tsNuJiz+Dk5ITZXPD/o3J2dtZfVpIvNLYkP2l8SX7S+JL8pPEl+UVjSy7H2dmZb3q/S/sPn2ThjtVMWDWDJ5rfl+c2qlevxN4DR4mLS2Dz1j00aVTr3zWg2zfwVUPMR1Zi3jAOGj7r2BuRG8Jms+W6bq4zIp999hl9+vTJloAC8PHxoW/fvowYMSLXHQMEBAQQGhp6xZeLiwsNGjQgPj6ejRs32q9dtGgRNpuNevVyN+UrJ7lpt0GDBixbtizLeun58+dTqVKlHJfiiYiIiIiIiBR0YcXK81aX5wAY8vuX7D116CpXZGcxm2ncoCYAO3cf4PTpuKwV/MtC+6GZP88bDDF7rydkKQBynYTaunUr7du3v+z5tm3bZknmOFJYWBjt27enT58+rFu3jpUrV/L888/zwAMP2J+Md+LECUJDQ1m3bp39usjISLZs2cL+/fsB+Oeff9iyZQuxsbG5bvehhx7CxcWFXr16sWPHDiZNmsTnn3+eZbmdiIiIiIiIyO2mV4vuNK9cj/PpqTz7/SBS09Py3EaxkEDKlS2BYcDyVZuzb2JdtxeUawEZ5+H3vmDNcFD0civKdRIqKirqilM1nZyciImJcUhQOZkwYQKhoaG0atWKDh060LhxY8aMGWM/n56ezp49e0hOTraXffPNN9SsWZM+ffoA0LRpU2rWrMmMGTNy3a6Pjw/z5s3j0KFDREREMGDAAN555x2eeuqpfLtXERERERERkZvNbDbz+WNvU9jTh+3H9vLRjG+vqZ0G9arj5GQhKvoM+/YfzXrSZIKuo8HNB45vhOUjHRC53KpyvSdUsWLF2L59O+XLl8/x/LZt2yhatKjDAvuvwoULM3HixMueL126dLaM6uDBgxk8ePB1tQtQvXp1li9fnutYRURERERERG4HQT5FGPHImzz+zat8PX8CLSrXo2lY3Ty14eXpQUTNyqxd/w+r122ldKkQXFz+NcnFpxh0/DhzJtTij6BSOyha3cF3IreCXM+E6tChA2+//Tbnz5/Pdi4lJYVBgwZx9913OzQ4EREREREREbm52oc35dEmXQB4cfx7xCbm7klo/1a9agV8vL1ISUllw6ad2SuEPwBhd4M1HX5/GjJSrzdsuQXlOgn11ltvERsbS8WKFfn444+ZPn0606dPZ9iwYVSqVInY2FjefPPN/IxVRERERERERG6CQfe9SPmgUkSejeGVCR9l39vpKiwWC40ubFL+z459xMb9J5FlMsG9n4OHP0Ruh0UfOSp0uYXkOgkVFBTEqlWrqFq1KgMHDqRLly506dKFN954g6pVq7JixQqCgoLyM1YRERERERERuQk8Xd0Z9eQQnMwWZm1ezK+r/spzGyVLBFO6VAiGYbBy9ZbsiSyvgMxEFGTuDXVsXfZGpEDLdRIKoFSpUsyePZvTp0+zdu1a1qxZw+nTp5k9ezZlypTJrxhFRERERERE5CarUSqU1+7tC8Bbk0dwMOroVa7IrmH9cCwWMydORnPw0PHsFap0ghr3g2HLXJaXlpy9jhRYeUpCXeTn50edOnWoW7cufn5+jo5JRERERERERG5Bz7bpScOKtUhOTeHZ7weTbs3I0/XehTwJrx4KwKq1W0lPz+H6uz+BQkXh9H6YP9gBUcut4pqSUCIiIiIiIiJy57GYLXz5+CB8PAqx5chORswal+c2atYIpZCXB0lJKWzasit7BXc/6PJV5s+rv4EDS68zarlVKAklIiIiIiIiIrlWrHAQn/R8HYDP//6RNfu25Ol6JycLDRuEA/y/vfuOr/H8/zj+Oic7ksggEjNEYpMQe9f8UkoHqrVqtFVtzbaqrdUWNbuLEjoUNVrfVhVB1aid2mpWkaCEiMg85/dHfjnfnmYIchKJ9/PxOA/n3Pfnuq/PfecSycd1Xze/H/iDa9dvZAwKbgN1n0l7v2IwJMTeQ8Zyv1ARSkRERERERETuSOc6rejWoAMms4kXwsdxPT6TQlI2AsqWpExpP0wmU+aLlAO0nwheAXD9L/jp9dxJXPKVilAiIiIiIiIicsfe6T6CcsVKcf5qNKO/mXpHbQ0GA40bhmA0GvjrXDR/no3KGOTkDo9+CgYD7PkCjq3Jpcwlv6gIJSIiIiIiIiJ3zN2lCB8/Mw47ox0rdq3l2+2r2X58HzsvHGL78X2kmlKzbe9Z1J1aNSoBsPW3SFJSMokv3xgavZD2fuWLEH8ll89C8pKKUCIiIiIiIiJyV8Iq1GB4x7S1m15aOJFuH7zEvN9X0e2Dlwh7vSs/7tuYbfvaIVUo4urCjRs3idx/LPOg1m9C8UoQdxH+OyK3T0HykIpQIiIiIiIiInLXgvwCADBjva5T9LVLDJg9OttClIODPQ3r1wJg3+9HiL1xM5MgF3jsMzDawYEVcGB5ruUueUtFKBERERERERG5K6mmVMZ++36m+9JLUm8unZXtrXmBFUpT0r84qakmtv/2e+ZBpetAs/+fBbVqONy4eA9ZS35REUpERERERERE7spvxyOJunYpy/1m4ELMRX47HplljMFgoEnDUAwGA6f/PM9f56IzD2zxCvjXglsx8N2LkNkT9eS+piKUiIiIiIiIiNyVS7E5Wyj8dnHe3kWpXq0iAFu27yM11ZQxyN4RHp8Ndo5pT8rb+/Ud5yv5S0UoEREREREREbkrvh4+uRYXVrsaLi5OXL8ex/6Df2QeVKIqtH4j7f3qVyHmbE5TlfuAilAiIiIiIiIiclcaBIXg7+mLIZuYkl4laBAUcttjOTk60KBeTQD27DtM3M1bmQc2fhHK1IPEG7DyBTBlMmtK7ksqQomIiIiIiIjIXbEz2vF292EAWRaiJjwxFDujXY6OF1yxHCV8fUhJSeW3nVksUm60S3tanoMrnPoFdsy5i8wlP6gIJSIiIiIiIiJ3rWNoSz5/dhJ+nr6Z7k9KScrxsQwGA00bhQJw4uRfnL+QxaLnxSpCuwlp79eOhb+P31HOkj9UhBIRERERERGRe9IxtCW7313J0pc+oH+tzix96QNGdRoAwJvfzuJq3PUcH6tYMS+qVgkEYOv2faRmdbtdvQFQoQUk34Llz4Ep9V5PQ2xMRSgRERERERERuWd2RjsaBoVSr2Q1GgaF8mK7PlQqWYErN2IYv/yDOzpWvTrVcXZy5GpMLIcOn8w8yGiERz8GJw/4axf8+n4unIXYkopQIiIiIiIiIpLrHO0dmP70aAwGA0u2/8iWo7tz3NbZ2ZF6dWsAsHvPQeLjEzIP9CwDHaekvd/wDkQfute0xYZUhBIRERERERERmwirUIM+zR4FYNTXk7mVlEUxKROVg8tTvJgXSckp7Nh1IOvA0J5QuQOkJsOyQXAHa1BJ3lIRSkRERERERERs5vUuz+NXtDinL59j5urwHLczGg00+f9Fyo8dP0P0xSuZBxoM8Mj74OoN0Qdg05TcSFtsQEUoEREREREREbEZDxc3Jj05EoBP1n7F4XM5f5JdCV8fKgUHALBl215MJnPmge4loPOstPebZ8C5nN/6J3lHRSgRERERERERsan/hDSnQ0hzUkypjPx6Mql38CS7BnVr4OjowN9XrnH02KmsA6t3gZqPpz0lb9mzaU/Nk/uKilAiIiIiIiIiYnPvdB+Bu3MR9p4+xIJfVuS4nYuLM3XrVANgx+6DJCQkZh388DRw94O/j8O6CfeasuQyFaFERERERERExOb8vXwZ03UwAO9+9ynnr17McdtqVQLx9ipKYmISO3cfzDrQ1Ru6fJj2fvsncHrLvaQsuUxFKBERERERERHJE72bdqVuhRrcTIxn9OKpmM1ZrPH0L0aj0bJI+eGjp7j8d0zWwZXaQZ0+YDbD8uch8UZupC65QEUoEREREREREckTRqORqU+PxsHOnrX7t/Djvo05blvSvzgVA8sCsGXbvuwLWB3eBc9ycO1P+GnMvaYtuURFKBERERERERHJM5VLVmBIu94AvL54Otfjcz5TqWG9mjg42HPx0hWOHf8z60And3j0k7T3uxfAtk9g3sNwfu89ZC73SkUoEREREREREclTL/+nD4ElynIp9grvrPwkx+2KFHGhTmhVAHbs3E9iYlLWwRWaQqO0NahYNwFOb4bIxfeSttwjFaFEREREREREJE85Ozgx9anXAPji15XsOBGZ47Y1qgXhWdSdWwmJ7N57OOvAmLNQrQt4loHk+LRt+5fDhUg4vy9tv+QpFaFEREREREREJM81Cq5Nz8adABj51SQSk7OZ1fQPdnZGGjcMAeDg4RNcuXo988Dp1WFuW7j21/+23bwMnzSDT5un7Zc8pSKUiIiIiIiIiOSLtx59keIe3hyP/pMPf/4ix+3KlPajfEApzGZz1ouUPz4XjPaZH8Bon7Zf8pSKUCIiIiIiIiKSLzyLeDCx2zAAPlizkD+iTue4baP6tbC3syMq+jInT/2VMSCkOzy3IfPGz21I2y95SkUoEREREREREck3j9RpTavqjUhKSeaVr6dgMply1M7dvQihIZUB2Lbjd5KTU7IONvyr/HE1myfric2oCCUiIiIiIiIi+cZgMDD5yVG4Ornw24lIvt66Ksdta9WohId7EeLjE9izL5NFyosUBzdfKBkCnWeCk0fa9q0fQma38IlNqQglIiIiIiIiIvmqjI8/r3V+FoCJKz7i4vW/c9TO3t7Oskj5/oN/cO3aDeuAoqVg5CF4biPU6w8vbAF7Z/hrJ0Quzs1TkBxQEUpERERERERE8l3/lk9Qq1wVYm/F8caSmTluV65sScqW8cdkMrNleyaLlNs7gcGQ9t47AFq+lvZ+zRi4FZM7yUuOFJgi1NWrV3nqqafw8PDA09OT/v37ExcXl22bOXPm0KJFCzw8PDAYDFy7ds1q/5kzZ+jfvz/ly5fHxcWFwMBAxo4dS1JSklWMwWDI8Prtt99scZoiIiIiIiIiDyQ7ox3Tnx6NndGO/+6NYO3+X3PctnGDEIxGI+fOX+TMnxduEzwEfCvDzb9h7fh7zFruRIEpQj311FMcOnSIdevW8cMPP7B582YGDRqUbZv4+Hjat2/P66+/nun+o0ePYjKZmD17NocOHWLmzJl89tlnmcavX7+eqKgoy6tOnTq5cl4iIiIiIiIikqZ6mWCea/0kAK99M5W4hJs5ale0qBshNSsBsPW3SFJSUrMOtneETjPS3u8Oh7923VPOknMFogh15MgR1qxZw+eff079+vVp0qQJH374IYsXL+bChawrnEOHDuW1116jQYMGme5v37494eHhtG3blgoVKtC5c2dGjhzJihUrMsT6+Pjg5+dneTk4OOTa+YmIiIiIiIhImhEPD6BssZJciLnE5O9n57hdaK3KuBVxIS4unn2/H80+uHwTCHkybXHyVcMgNZsn60musc/vBHJi+/bteHp6EhYWZtnWunVrjEYjO3bsoGvXrrnW1/Xr1/H29s6wvXPnziQkJBAcHMwrr7xC586dszxGYmIiiYmJls/p96OmpKRgSL8PtQBKTk62+lMkt2hsiS1pfIktaXyJLWl8ia1obIkt5cb4cjDYMan7SJ76eDjzNn1L59oPERpQLUdt64VVZ8Mvu4j8/SgVypfCw71I1sGtx2J/9CcMUftJ3fYZpgbP3nXOD7IMa3Blo0AUoaKjo/H19bXaZm9vj7e3N9HR0bnWz4kTJ/jwww+ZNm2aZZubmxvTp0+ncePGGI1Gli9fTpcuXfjuu++yLERNmjSJ8ePHWx3jzOlTrF27ltTUbKYEFhDr1q3L7xSkkNLYElvS+BJb0vgSW9L4ElvR2BJbyo3x1aBkdX67cJDn57zJmEb9sDPa3baN2WzG0cFAUrKJVT+sx7to9ncxlSvRlZA/wzGtm8CGaDcSHL3uOe8HjZ2dHQ0b1M9RbL4WoV577TWmTJmSbcyRI0fyJJfz58/Tvn17nnjiCQYOHGjZXqxYMYYPH275XLduXS5cuMDUqVOzLEKNHj3aqo3ZbCYlOYm2bdsW+JlQ69ato02bNrodUXKVxpbYksaX2JLGl9iSxpfYisaW2FJujq/6TRvS8p1enL9xmbOO13mh7dM5anft2g1WrNpAYpKZGjVrU6a0X9bB5vaY5u3H4fwe2qRsILXLvHvK+UFkNpu5EXs9R7H5WoQaMWIEffv2zTamQoUK+Pn5cenSJavtKSkpXL16FT+/bAZTDl24cIGWLVvSqFEj5syZc9v4+vXrZ1vVdXJywsnJyfLZZDIRc/UK9vb2GI0FYhmubDk4OOgfK7EJjS2xJY0vsSWNL7EljS+xFY0tsaXcGF9+3r6Mf+JlXlowgVlrFvBI3daU9y1z23bFi3tTs3oQvx/4g992HaRc2ZLY2WUzi+qRWfBpc4yHvsMY1geCWt1T3g8ak8mU49h8rYgUL16cypUrZ/tydHSkYcOGXLt2jT179ljabtiwAZPJRP36OZvylZXz58/TokUL6tSpQ3h4eI6KRJGRkfj7+99TvyIiIiIiIiKSvSfq/4dmleuSkJzIK4um5Hj9oTqhVXF1dSY2No7fD/yRfXDJWpC+HtQPIyA54R6zlqwUiGk5VapUoX379gwcOJCdO3eydetWhgwZQo8ePShZsiSQVkyqXLkyO3futLSLjo4mMjKSEydOAHDgwAEiIyO5evWqpU2LFi0oW7Ys06ZN4/Lly0RHR1utM7Vw4UK++eYbjh49ytGjR3n33XeZP38+L774Yh5eAREREREREZEHj8Fg4L2nXsXZwYlfj+5m6W+rc9TO0dGBBvVqArA38gh/nr3Aqh83ceny1cwbtBoD7v5w5RRsnpFb6cu/FIgiFMDXX39N5cqVadWqFR06dKBJkyZWt84lJydz7Ngx4uPjLds+++wzQkNDLWs8NWvWjNDQUFatWgWkLZR24sQJIiIiKF26NP7+/pbXP02cOJE6depQv359vv/+e5YsWUK/fv3y4KxFREREREREHmwBxUsz4uH+AIxb9j5/34jJUbugwLL4lShGSkoq2377nQtRl/njxJ+ZBzt7QMfJae83z4C/T+RG6vIvBaYI5e3tzaJFi7hx4wbXr19n/vz5uLm5WfYHBARgNptp0aKFZdu4ceMwm80ZXunrUPXt2zfT/f+c3tenTx8OHz7MzZs3uX79Ojt27ODxxx/Pq9MWEREREREReeA917on1UoHEXMzlrHfzspRm7i4eKpVCQTgemwcACdP/sXlv2O4/HcMN27ctG5QrUvaelCpSfDfEZDDW/8k5wpMEUpEREREREREHkwOdvZMe3o0BoOB5Tt/ZuOh327b5uslq4nYtMNq262ERJZ/t57l363n6yX/urXPYICHp4G9E5zcCAdX5OYpCCpCiYiIiIiIiEgBEBpQlQEtuwHwyqIp3Ey8lW38Qy3qYTAYMt1nMBh4qEW9jDt8AqHZiLT3P74GCdfvKWexpiKUiIiIiIiIiBQIr3V+llLefvx1JYppP3yebWxwxXI8+kirTPc9+kgrgiuWy7xhs2Fpxai4i7D+7XtNWf5BRSgRERERERERKRCKOLsy+clRAMxe/w37zx7N/U7snaDT/z8hb8dcuBCZ+308oFSEEhEREREREZECo02NxnSu0wqT2cTIryaTkpqSZayLixMuLs4UL+ZlNfPJznibckjFllDjMTCb4PuhYErNpewfbCpCiYiIiIiIiEiB8na34RR1dWf/2aPM2/htlnFuRVx5ukcHHn2kFS2a1cWzqDsAJ079dftOOkwCJw84vxd2hedW6g80FaFEREREREREpEDxLerDW48OAWDyqtmc/ftClrF2dnYYDAaMRgP169YAYP/BP4iPT8i+E3c/aP1G2vt14yHuUq7k/iBTEUpERERERERECpwnG3WiQVAot5ISePWb9zCbzbdtE1CuJL7FvUlJSWVv5JHbd1J/IJQMSXtK3k9j7j3pB5yKUCIiIiIiIiJS4BiNRqY+9SqO9g5sPPQb3+9ef9s2BsP/ZkMdPnqS2Bs3b9OJHXSeCQYD/L4ETm3OjdQfWCpCiYiIiIiIiEiBFOQXwND/9APgjaUziLl5/bZtSpX0pXSpEphMZnbvOXT7TkrXgXr9097/dzikJN1Lyg80FaFEREREREREpMAa0q4Xwf7l+ftGDBOWf5SjNvXCqgPwx4k/uXr19oUrWr8Fbr5w+Q/Y8sG9pPtAUxFKRERERERERAosR3sHpj31GgDfbPsvW47tuW0b3+LeVChfGoCduw/evhMXT2j/Ttr7Te/B1TN3me2DTUUoERERERERESnQ6lWsRZ9mjwLwyteTuZV0myffAXXrVMNggDNnLxB98crtO6nVDSo0h5QE+GEk5GAhdLGmIpSIiIiIiIiIFHhjug6mRNFinLr0F+//tOC28V6eHlQKKg/Ajl0Hbv90PYMBOk0HOwf4Yy0c/m8uZP1gURFKRERERERERAo8Dxc33u0xAoCPfv6SI+dP3rZNWO2q2NkZiYq+zLnzF2/fSfFgaPJy2vsfX4XEuHtJ+YGjIpSIiIiIiIiIFAodQ1vyn1rNSTGlMvKrSZhMpmzj3dxcqValIpDD2VAALUaBVwDEnocNk3Ih6weHilAiIiIiIiIiUmi802MEbs6u7Dl9kAWbV9w2PjSkMg4O9vx95RonT5+7fQcOLvDw1LT32z+B6BwsbC6AilAiIiIiIiIiUoiU9PLl9S6DAXj3u0+4EHMp23gXZydq1agEwK7dB0m9zewpACq1g6qdwZQKq4ZBTtqIilAiIiIiIiIiUrj0adaVOuWrE5cQz+vfTGPrsT2s3LWWrcf2kGpKzRBfs3oQzs5OXI+N49gfZ3LWSccp4OgGZ3fA3q9y9wQKKRWhRERERERERKRQsTPaMe3p0RgNRtbs38xjM1/g+Xlv8djMFwh7vSs/7ttoFe/o6EDtkMoA7Nl7mJSUjIWqDIqWglavp73/+U24eSW3T6PQURFKRERERERERAqdU5fOYjJnvE0u+tolBswenaEQVbVyIG5urtyMv8Whwydy1kmD58CvOtyKgZ/fyo20CzUVoURERERERESkUEk1pfLGkpmZ7kt//t2bS2dZ3Zpnb29HWO2qAOz9/SiJScm378jOHjr/fz97v4Q/f7uXtAs9FaFEREREREREpFD57XgkUdeyXpDcDFyIuchvxyOttgdXLIeXpzuJiUnsP3AsZ52VrQ91+qS9XzUUUnNQvHpAqQglIiIiIiIiIoXKpdicrc/07zij0UjdOtUB+P3AH8THJ+Ssw3bjwNUHLh6G7Z/eSaoPFBWhRERERERERKRQ8fXwueu48gGlKF7ci5SUVPb+fiRnHbr6QLuJae83TIJrf+U01QeKilAiIiIiIiIiUqg0CArB39MXQxb7DUBJrxI0CArJuM9goH5YDQAOHzlJ7I2bOes0tCeUawhJN+HHV+8q78JORSgRERERERERKVTsjHa83X0YQKaFKDMwsdtQ7Ix2mbYvXaoEpUr6YjKZ2b33UM46NRrTFik32sORH+DoT3eXfCGmIpSIiIiIiIiIFDodQ1vy+bOT8PP0zbDP3mhH9dLB2bavXzdtNtTxE39yNeZ6zjotURUavZD2/odXICn+jnIu7FSEEhEREREREZFCqWNoS3a/u5Llwz7m0/4TWD7sY5pVrkuKKZVxyz7Itq1vcW/KB5TCbIaduw/mvNOWr0LR0nDtT9g09R7PoHBREUpERERERERECi07ox2NK9Wha922NK5UhwndhmFntOOn339h85Gd2batV6c6BgOc+fMCFy/l7Il7OLnBw/9ffNr6AVw6do9nUHioCCUiIiIiIiIiD4zKJSvQt/mjALz57SxSUlOyjPXy8iA4KACAHbsOYDabc9ZJlY5Q+T+Qmgz/HQ45bVfI2ed3AvI/qampJCcn53caWUpOTsbe3p6EhARSU1PzOx0pRDS28p6DgwN2dpkvwigiIiIiUtiNenggK3eu5diFUyzcvJL+LZ/IMjasdjWOnzjLhajLnDt/iTKlS+Ssk47vwclNcPpXiFwMoU/mTvIFmIpQ9wGz2Ux0dDTXrl3L71SyZTab8fPz46+//sJgyOpBlyJ3TmMrf3h6euLn56drLiIiIiIPHM8iHrzSeRCvfTOVqf+dS9e6bfF2K5pprLubK9WqBnLg4HF27j5A6VK+OfsZ2qsctHgV1o2DNWOgcntw8crdEylgVIS6D6QXoHx9fXF1db1vfyE0mUzExcXh5uaG0ag7OSX3aGzlLbPZTHx8PJcuXQLA398/nzMSEREREcl7vZp24YvNKzl8/gRT/zuXSU+OzDK2dq0qHD12mst/x3DqzHkCy5fOWSeNh8Dvi+HSUVg3ATrPzKXsCyYVofJZamqqpQDl4+OT3+lky2QykZSUhLOzswoFkqs0tvKei4sLAJcuXcLX11e35omIiIjIA8fOaMeEbsN4fOYLLNy8gt7NulClVMVMY11cnKhZPZg9+w6za/dBypcrmbPfXewdodMMmNcBds2H2k9B6bBcPpOCQ7/t5bP0NaBcXV3zORMRedCkf9+5n9eiExERERGxpSaV6tAxtCUms4k3ls7MduHxWjWCcXZy5Nr1Gxw7/mfOOynfBEKeTFuc/PthkM1C6IWdilD3ifv1FjwRKbz0fUdEREREBMY+9iJO9o5sPbaHnyJ/yTLO0dGB0JAqAOzee4iUlDt4qFL7t8HFE6J+h51z7zHjgktFKBERERERERF5YJUtVpLBbZ8CYNzyD0hITswytlqVQIoUceHmzVscOnIy5524FYc249Ler38bYqPuIeOCS0WoQiTVlMrWY3tYuWstW4/tIdWUv4+679u3L126dMk2pkWLFgwdOjRP8ikMcnJNC0IfuS0vx9GcOXMoU6YMRqORWbNmZblNREREREQKjiHteuPvWZyzf19g9vpvsoyzt7cjrHY1APZFHiEp6Q6Wtgjrm7YeVOINWD36HjMumFSEKiR+3LeRsNe78tjMF3h+3ls8NvMFwl7vyo/7NtqkP4PBkO1r3LhxvP/++yxYsCBX+12xYgVhYWF4enpSpEgRQkJC+PLLL61iWrRoYcnDycmJUqVK0alTJ1asWJGrueSH3LymZ86cwWAwEBkZmSvHK+jSr0dmr99++w2A2NhYhgwZwquvvsr58+cZNGhQpttup2/fvpZjOzg4UKJECdq0acP8+fMxmUwZ4rdt20aHDh3w8vLC2dmZGjVqMGPGDFJTrQvNv/zyCw899BDe3t64uroSFBREnz59SEpKyp2LJCIiIiJSSBVxcuHNR4cA8P6ahUTFXMoytlJQOTyLupOQmMTvB/7IeSdGIzwyCwxGOLgCjkfcY9YFT4EpQl29epWnnnoKDw8PPD096d+/P3Fxcdm2mTNnDi1atMDDwwODwcC1a9cyxAQEBGT4hXPy5MlWMfv376dp06Y4OztTpkwZ3nvvvdw8tXv2476NDJg9mqhr1n9Joq9dYsDs0TYpREVFRVles2bNwsPDw2rbyJEjKVq0KJ6enrnar7e3N2PGjGH79u3s37+ffv360a9fP37++WeruIEDBxIVFcXJkydZvnw5VatWpUePHjkqENzPbHFN80JqamqmxZX70fr1663GclRUFHXq1AHg7NmzJCcn07FjR/z9/XF1dc10W060b9+eqKgozpw5w08//UTLli15+eWXefjhh0lJ+d9ChStXrqR58+aULl2ajRs3cvToUV5++WXefvttevToYVk48fDhw7Rv356wsDA2b97MgQMH+PDDD3F0dMxQrBIRERERkYy61m1L3Qo1iE+8xTvffZJlnNFopG5YdQD2H/yDW7eyvn0vA/+a0PC5tPc/jIA/f4N5D8P5vfeSeoFRYIpQTz31FIcOHWLdunX88MMPbN68+bYFhfj4eNq3b8/rr7+ebdyECROsfuF88cUXLftiY2Np27Yt5cqVY8+ePUydOpVx48YxZ86cXDmvzJjNZm4m3srRK/ZWHGOWzCCz9fvTt72xZAaxt+JydLzsngTwT35+fpZX0aJFMRgMVtvc3Nwy3NZ18+ZNevfujZubG/7+/kyfPt3qmBMmTKB69eoZ+goJCeHNN98E0mY5de3alSpVqhAYGMjLL79MzZo12bJli1UbV1dX/Pz8KF26NA0aNGDKlCnMnj2buXPnsn79+hydY1bGjRtnmYEVEBBA0aJF6dGjBzdu3LDEJCYm8tJLL+Hr64uzszNNmjRh165dlv2bNm3CYDAQERFBWFgYrq6uNGrUiGPHjmXb97+v6bJly6hRowYuLi74+PjQunVrbt68CYDJZGLChAmULl0aJycnQkJCWLNmjaVt+fLlAQgNDcVgMNCiRQurvqZNm4a/vz8+Pj688MILVk9QS0xMZOTIkZQqVYoiRYpQv359Nm3aZNm/YMECPD09WbVqFVWrVsXJyYmzZ88SEBDA22+/bRkH5cqVY9WqVVy+fJmePXvi4eFBzZo12b17t+VYV65c4cknn6RUqVK4urpSo0YNvvkm6+mx98rHx8dqLPv5+eHg4MCCBQuoUaMGABUqVMBgMGS67cyZMznqx8nJCT8/P0qVKkXt2rV5/fXX+f777/npp58ss91u3rzJwIED6dy5M3PmzCEkJISAgAAGDBjAwoULWbZsGUuXLgVg7dq1+Pn58d5771G9enUCAwNp3749c+fOxcXFJdevk4iIiIhIYWMwGJjYfTgGg4FlO9aw+9SBLGMrBJSieDEvkpNT2Pv7kTvrqNUYcPeHK6fSbss7vRkiF99j9gVDgShCHTlyhDVr1vD5559Tv359mjRpwocffsjixYu5cOFClu2GDh3Ka6+9RoMGDbI9vru7u9UvnEWKFLHs+/rrr0lKSmL+/PlUq1aNHj168NJLLzFjxoxcO79/i09KIPDlljl6BQ9rTfS1y1keywxEXbtM8LDWOTpefFKCzc5r1KhR/PLLL3z//fesXbuWTZs2sXfv/6q9zzzzDEeOHLEq1uzbt88y4ynDuZnNREREcOzYMZo1a3bb/vv06YOXl1eu3JZ38uRJvvvuO3744Qd++OEHfvnlF6sZdK+88grLly9n4cKF7N27l4oVK9KuXTuuXr1qdZwxY8Ywffp0du/ejb29Pc8880yOc4iKiuLJJ5+0XLdNmzbx6KOPWgqJ77//PtOnT2fatGns37+fdu3a0blzZ44fPw7Azp07gf/N/Pnnddm4cSMnT55k48aNLFy4kAULFljdBjhkyBC2b9/O4sWL2b9/P0888QTt27e3HBvSisBTpkzh888/59ChQ/j6+gIwc+ZMGjduzL59++jYsSO9evWiT58+dOvWjd27dxMYGEjv3r0t55GQkECdOnX48ccfOXjwIIMGDaJXr16W/PNK9+7dLQXMnTt3EhUVxRNPPJFhW5kyZe66j4ceeohatWpZvhZr167lypUrjBw5MkNsp06dCA4OthTk/Pz8iIqKYvPmzXfdv4iIiIjIgy6kXBV6NHwYgDeWzMzyjg6DwUC9sLT/kD50+CQ34uJz3kl8DDR8Nu39+T1pf+5fDhci4fw+iDl7t+nf9+zzO4Gc2L59O56enoSFhVm2tW7dGqPRyI4dO+jates9HX/y5MlMnDiRsmXL0rNnT4YNG4a9vb2l72bNmuHo6GiJb9euHVOmTCEmJgYvL68Mx0tMTCQx8X/T8dJ/mU5JScnwSPTk5GTMZjMmk8kyuM35eNuS+R95ZNj3/+eRnm+69Pf/bmc2my2xcXFxzJs3jy+++IKWLVsCEB4eTtmyZS0xJUuWpG3btsyfP99y+9P8+fNp3rw5AQEBluNfv36dMmXKkJiYiJ2dHR999BGtWrWy6v/fOaYLDg7m9OnT93RrWPqx58+fj7u7OwBPP/00ERERTJw4kZs3b/Lpp58yf/582rVrB8Ds2bNZt24dn3/+OSNHjrT0P3HiRJo2bQqkFa46depEfHw8zs7OWfad3v/58+dJSUmhS5culC1bFoBq1dIWyDOZTEybNo1XXnmFbt26ATBp0iQ2btzIzJkz+eijj/Dx8QHAy8vLUiAymUyYzWa8vLz44IMPsLOzIzg4mA4dOrB+/Xr69+/P2bNnCQ8P58yZM5QsWRKA4cOHs2bNGubPn88777yDyWQiOTmZjz76iFq1almdw3/+8x8GDhwIwBtvvMGnn35KWFgYXbp0wd3dnVGjRtG4cWOioqLw8/PD39+f4cOHW9q/8MILrFmzhiVLllh9T8jqa55T6W0bNWqE0Whdn4+NjcXJycny993Hx8dyzTLbdrs8/vl1/LdKlSpx4MABTCaTZWZcpUqVsoz9448/MJlMPPbYY6xZs4bmzZvj5+dH/fr1adWqFb169cLDwyPLczabzSQnJ2NnZ5dtzgVZ+iy+f87mE8ktGl9iSxpfYisaW2JLhWF8jezYn//ujSDyz8N8s/W/dGvQIdO4Er5e+PsVIyr6b3buPkCzxrVzdHyH6RnvADLf/BvDJ/+bXJE89srdJZ8PcnpHFRSQIlR0dLTll7t09vb2eHt7Ex0dfU/Hfumll6hduzbe3t5s27aN0aNHExUVZZnpFB0dbbltKV2JEiUs+zIrQk2aNInx48dbPru5uXHm9CnWrl2bYW0We3t7/Pz8iIuLsywebDab2Tvhuxzlv/v0AQaFv3nbuDn9JhJWvsZt45ITkohNzP6bxT9vO4O0mSpms5nY2FjrYyUnk5KSQmxsLAcOHCApKYmqVata4uzt7alYsSJJSUmWbU899RRDhgxh7NixGI1GFi1axDvvvGN1bLPZzObNm7l58ya//PILI0aMwM/PjyZNmgBpxb5/HvOfUlJSSE1NzXTf0qVLrYodS5cupVGjRhniEhMTLcWz9ON4eXkRHR1NbGwsBw8eJDk5mZo1a1r1Exoayv79+4mNjSU+Pq1KXr58eUtMeqHg5Mm0x3w2bNjQ0nbYsGGMGDHC6pqWL1+e5s2bU6tWLR566CFatmzJI488gqenJ7GxsVy4cIGQkBCrHMLCwjh48CCxsbGWNdVu3rxpFZOcnExwcLDltj5IK7AcPnyY2NhYduzYQWpqKpUrV85wXTw8PIiNjSUhIQFHR0cCAgKsjm0ymQgODrZsS79NrGLFikDa2EqfiXjq1ClcXV1JTU1lxowZrFy5kqioKJKTk0lMTMTR0dFynOy+5n/99Vem1/Lf0q/HvHnzqFSpktW+9OOmX5O4uLhst93OP7+Ome1LH1sJCQmW/v9dGIO08zaZTJbjzJo1i1deeYXNmzezZ88e3n33XSZPnkxERAR+fn4Z2iclJXHr1i02b95stQ5VYbVu3br8TkEKMY0vsSWNL7EVjS2xpYI+vtqWq8+KYxsZ/+0H2F1MxMXBKdO4pOS0/yw+fuIsMVeicLA3ZBr3T6UrPEfoqTkY+d9/NBv+f0EdE0b2VRjEudWrc+Es8oadnR0NG9TPUWy+FqFee+01pkyZkm3MkSN3eG/lHfpn0aFmzZo4Ojry7LPPMmnSJJycMh9ktzN69Gir45rNZlKSk2jbtm2GmVAJCQn89ddfuLm5Wc1+KZrDvv7j3QL/lb5EX7uU6bpQBsDfy5f/1GmBnfHeZjqYzWZu3LiBu7u71Xk4OztjMBgyzLZwcHDA3t4eDw8P3NzcgLRbH/8ZZ2dnh6Ojo2Vbt27dGDlyJBERETg6OpKSkkKvXr0yrGkTEhICQOPGjTl9+jQffPABHTqkVaft7e2tjpkuNTWVU6dOUb9+/UxnhnTv3t1qXaRSpUplupaOk5MTTk5OVsdIj8vuXO3t7XFwcMDDw8OyeLW3t7clJr1dkSJFKF26tNWtiulx/7ymABEREWzbto1169Yxb9483nnnHbZv326Z5eTq6mqVg6OjY4avSZEiRaxiHBwccHFxsdrm5OSE0WjEw8MDk8mEnZ0du3btyjB7xs3NDQ8PD5ydnXFxcaFoUeuRbDQaM1yX9OuWfs3SZ5el556+nteMGTOoUaMGRYoUYdiwYZhMJku7rL7mkDZbKLNr+W/p16NSpUqW8fVv6QWy9PPMatvt/Pvr+E8nTpygQoUKeHh4WNabOnfunGW2279jq1SpYnUcDw8PS4EwJiaGypUrs2jRIsaNG5ehfUJCAi4uLjRr1izL2XeFQXJyMuvWraNNmzY4ODjkdzpSyGh8iS1pfImtaGyJLRWW8dU6pQ373j3O6cvn+IOLjO7wXJax6zfs4M+/onBzL0arljkpxnQgNaobxjkPZdiTOmg9Nf1rUfMecs9rZrOZG7HXcxSbr0WoESNG0Ldv32xjKlSogJ+fH5cuWT/5LSUlhatXr2b6v/v3on79+qSkpHDmzBkqVaqEn58fFy9etIpJ/5xV3+lFinQmk4mYq1ewt7fPMJshNTUVg8GA0WjMdKbD7RiNRt7uPowBs0djAKtCVHqZaGK3YTjY3/tf/vTbgdLz/WcO//zT0v//P23QaDQSFBSEg4MDu3btIiAgAEj7BfmPP/6gefPmlraOjo706dOHhQsX4ujoSI8ePazW6MqM2WwmKSnJqv9/5whpi2XHxMTw+OOPZ3qtixYtmqFokpn0Aty/+0vfFhQUhKOjI9u3b7fMoktOTmb37t0MHTrU6mv97/fpfzo6OhIcHJxp3/8+t6ZNm9K0aVPGjh1LuXLl+P777xk+fDglS5Zk+/btltsfAbZt20a9evUwGo2WooPZbM5wLv/u45/nV6dOHVJTU/n7778ttxL+W1ZjIv1YWY31f+5Lvzbbtm3jkUceoXfv3kDaODx+/DhVq1a97dccyPJaZpdzVvnd7uuW07/DmV1jgA0bNnDgwAGGDRuG0Wikffv2eHt7M3PmTMtMv3SrVq3i+PHjTJw4Mct+fXx88Pf3Jz4+PtMYo9GIwWDAwcGhQP+AkFMPynlK/tD4ElvS+BJb0dgSWyro48vBwYHxTwyl9ycj+XzTUno160J538zXf61frwZ//hXFmbNRxFy7gW9x79t38P9LAGEwgtlk+dPB3h4K2HW7k2VR8rUIVbx4cYoXL37buIYNG3Lt2jX27NljWStow4YNmEwm6tfP2ZSvnIqMjMRoNFpu/2vYsCFjxowhOTnZ8hdo3bp1VKpUKdNb8fJDx9CWfP7sJN5YMpOoa/8r1vl7lWBit6F0DG2ZTeu84ebmRv/+/Rk1apRl7ZwxY8Zk+ovxgAEDqFKlCgBbt2612jdp0iTCwsIIDAwkMTGR1atX8+WXX/Lpp59axcXHxxMdHU1KSgrnzp1j5cqVzJw5k+eff96qKGMLRYoU4fnnn2fUqFF4e3tTtmxZ3nvvPeLj4+nfv3+u9bNjxw4iIiJo27Ytvr6+7Nixg8uXL1uu3ahRoxg7diyBgYGEhIQQHh5OZGQkX3/9NQC+vr64uLiwZs0aSpcujbOzc46KcMHBwTz11FP07t2b6dOnExoayuXLl4mIiKBmzZp07Ngx184RICgoiGXLlrFt2za8vLyYMWMGFy9epGrVqrnaT7orV65kuM3X09MzxzOFdu7cSe/evYmIiKBUqVJZxiUmJhIdHU1qaioXL15kzZo1TJo0iYcffthScCtSpAizZ8+mR48eDBo0iCFDhuDh4UFERASjRo3i8ccft6z5NXv2bCIjI+natSuBgYEkJCTwxRdfcOjQIT788MO7vBoiIiIiIg+uNjUa07JqAzYe/o1xyz5g4eCpmcZ5exUlOKgcfxz/kx27DtCpQ/PbH7xIcXDzhaKloU5v2PMFXD+Xtr0QKxBrQlWpUoX27dszcOBAPvvsM5KTkxkyZAg9evSwLIx8/vx5WrVqxRdffEG9evWAtDWboqOjOXHiBAAHDhzA3d2dsmXL4u3tzfbt29mxYwctW7bE3d2d7du3M2zYMJ5++mlLgalnz56MHz+e/v378+qrr3Lw4EHef/99Zs6cmT8XIwsdQ1vSvlYzfjseyaXYK/h6+NAgKOSeb8HLTVOnTiUuLo5OnTrh7u7OiBEjuH4945S9oKAgGjVqxNWrVzMUGW/evMngwYM5d+4cLi4uVK5cma+++oru3btbxc2dO5e5c+fi6OiIj48PderUYcmSJfe8iH1OTZ48GZPJRK9evbhx4wZhYWH8/PPPuVq49PDwYPPmzcyaNYvY2FjKlSvH9OnT+c9//gOkrXd2/fp1RowYwaVLl6hatSqrVq0iKCgISLuF7YMPPmDChAm89dZbNG3alE2bNuWo7/DwcN5++21GjBjB+fPnKVasGA0aNODhhx/OtfNL98Ybb3Dq1CnatWuHq6srgwYNokuXLpmOndzQunXrDNu++eYbevTokaP28fHxHDt27LYLMa5ZswZ/f3/s7e3x8vKiVq1afPDBB/Tp08eqOPv444+zceNG3nnnHZo2bUpCQgJBQUGMGTOGoUOHWmap1atXjy1btvDcc89x4cIF3NzcqFatGt999x3Nm+fgH0EREREREbFiMBgY/8TL/DpxFz/v/5VNh3fQomrmE2HCalfjxMmznL9wiXPnL1K6VInsD160FIw8BHaOYDBA3X6QmgT2d7csUEFhMN/JMub56OrVqwwZMoT//ve/GI1GHnvsMT744APLOi5nzpyhfPnybNy40bKuz7hx46wWCE8XHh5O37592bt3L4MHD+bo0aMkJiZSvnx5evXqxfDhw61up9u/fz8vvPACu3btolixYrz44ou8+uqrOc49/XY8L2+fDDN/EhISOH36NOXLl7/v12RJXwDZw8Pjrm4dzCmz2UxQUBCDBw+2WltLCq+8GltirSB9/7kXycnJrF69mg4dOhToKeFyf9L4ElvS+BJb0dgSWyqM4+utpbOYs2ExQX4BbHjzKxzsMp/Ps2X7Pg4eOkHx4l482rlVhjWhC6vsah7/ViBmQkHaYsKLFi3Kcn9AQECGxwKOGzcu08V409WuXZvffvvttn3XrFmTX3/9Nce5yt27fPkyixcvJjo6mn79+uV3OiIiIiIiIvKAG/Fwf5btXMPx6DMs/GU5Ax7qnmlcnZAqHD12msuXYzh95jwVypfO40zvf5pyIPcVX19fJkyYwJw5c+6bNbdERERERETkwVXU1Z3Rj6Q9HW/qD59zJe5apnEuLs7UrJ72UKRdew7e0YLdDwoVoeS+YjabuXz5Mj179szvVEREREREREQA6Nm4E9VKB3E9/gZTVs3OMq5WzUo4OTkSc+0Gf5z4Mw8zLBhUhBIRERERERERyYad0Y63u6etWfzVr99z6NzxTOOcHB0IrVUZgN17D5OamppnORYEKkKJiIiIiIiIiNxGw6BQOtdphcls4s2lMzOsS52uetWKFHF1IS4unkNHTuVxlvc3FaFERERERERERHLgzUeH4OzgxLY/9vLD3o2Zxtjb21GndlUA9kYeJikpOS9TvK+pCCUiIiIiIiIikgNlfPwZ3PZpAMYv/4BbSQmZxlUODqCohxsJCUnsP5j5rXsPIhWhRERERERERERyaEi7XpT08uXc1Wg+W78o0xij0UjdsOoA/H7gGLcSEvMyxfuWilAiIiIiIiIiIjnk6ujMW4++CMAHa77gQsylTOMCy5emmI8nyckp7Is8mpcp3rdUhBKb6du3L126dMk2pkWLFgwdOjRP8ikMcnJNC0IfuU3jSERERERE8tIjYa2pX7EWt5ISeHvFR5nGGAwG6tetAcChIyeIi4vPyxTvSypCFTbn98K8h9P+tCGDwZDta9y4cbz//vssWLAgV/tdsWIFYWFheHp6UqRIEUJCQvjyyy+tYlq0aGHJw8nJiVKlStGpUydWrFiRq7nkh9y8pmfOnMFgMBAZGZkrxyssli9fTosWLShatChubm7UrFmTCRMmcPXq1du2XbBgAZ6enrZPUkRERERE8pXBYGBit2EYDAZW7FrLzhO/ZxpXulQJ/P2Kk5pqYvfew3mc5f1HRajCZt83cHozRC62aTdRUVGW16xZs/Dw8LDaNnLkSIoWLZrrv5B7e3szZswYtm/fzv79++nXrx/9+vXj559/toobOHAgUVFRnDx5kuXLl1O1alV69OjBoEGDcjWfvGaLa5oXUlNTMZlM+Z3GbY0ZM4bu3btTt25dfvrpJw4ePMj06dP5/fffMxQ7RURERETkwVazbGV6NuoEwBtLZ2b6O88/Z0MdO36amGuxeZrj/UZFqPuR2QxJN3P+unQUzmyDP7fD/uVpx9i/LO3zmW1p+3N6LLM5Ryn6+flZXkWLFsVgMFhtc3Nzy3Bb182bN+nduzdubm74+/szffp0q2NOmDCB6tWrZ+grJCSEN998E0ib5dS1a1eqVKlCYGAgL7/8MjVr1mTLli1WbVxdXfHz86N06dI0aNCAKVOmMHv2bObOncv69evv4IuR0bhx4ywzsAICAihatCg9evTgxo0blpjExEReeuklfH19cXZ2pkmTJuzatcuyf9OmTRgMBiIiIggLC8PV1ZVGjRpx7NixbPv+9zVdtmwZNWrUwMXFBR8fH1q3bs3NmzcBMJlMTJgwgdKlS+Pk5ERISAhr1qyxtC1fvjwAoaGhGAwGWrRoYdXXtGnT8Pf3x8fHhxdeeIHk5P89VjQxMZGRI0dSqlQpihQpQv369dm0aZNlf/qMoFWrVlG1alWcnJw4e/YsAQEBvP3225ZxUK5cOVatWsXly5fp2bMnHh4e1KxZk927d1uOdeXKFZ588klKlSqFq6srNWrU4Jtvvrn9F+oO7dy5k3fffZfp06czdepUGjVqREBAAG3atGH58uX06dMHgN9//52WLVvi7u6Oh4cHderUYffu3WzatIl+/fpx/fp1qxmBIiIiIiJSeL32yHO4Oxdh/9mjLN7+Y6YxfiV8CChbErMZdu05lMcZ3l/s8zsByURyPEzwv7dj3Pwb5ra783ZvRYFjkXvrOwujRo3il19+4fvvv8fX15fXX3+dvXv3EhISAsAzzzzD+PHj2bVrF3Xr1gVg37597N+/P9Nb6cxmMxs2bODYsWNMmTLltv336dOHESNGsGLFClq3bn1P53Ly5Em+++47fvjhB2JiYujWrRuTJ0/mnXfeAeCVV15h+fLlLFy4kHLlyvHee+/Rrl07Tpw4gbe3t+U4Y8aMYfr06RQvXpznnnuOZ555hq1bt+Yoh6ioKJ588knee+89unbtyo0bN/j1118x/38h8f3332f69OnMnj2b0NBQ5s+fT+fOnTl06BBBQUHs3LmTevXqsX79eqpVq4ajo6Pl2Bs3bsTf35+NGzdy4sQJunfvTkhICAMHDgRgyJAhHD58mMWLF1OyZElWrlxJ+/btOXDgAEFBQQDEx8czZcoUPv/8c3x8fPD19QVg5syZvPvuu7z55pvMnDmTXr160bBhQ3r06MGMGTMYPXo0vXv35tChQxgMBhISEqhTpw6vvvoqHh4e/Pjjj/Tq1YvAwEDq1at3T1/Hf/r6669xc3Nj8ODBme5Pn4H21FNPERoayqeffoqdnR2RkZE4ODjQqFEjZs2axVtvvWUpJrq5ueVafiIiIiIicv8p7uHNiIf7M27ZB7z73Sd0qv0Q7i4Zf6euF1adM2cvcOr0OS5dvopvce9Mjlb4aSaU5Im4uDjmzZvHtGnTaNWqFTVq1GDhwoWkpKRYYkqXLk27du0IDw+3bAsPD6d58+ZUqFDBsu369eu4ubnh6OhIx44d+fDDD2nTps1tczAajQQHB3PmzJl7Ph+TycSCBQuoXr06TZs2pVevXkRERABpM74+/fRTpk6dyn/+8x+qVq3K3LlzcXFxYd68eVbHeeedd2jevDlVq1bltddeY9u2bSQkJOQoh6ioKFJSUnj00UcJCAigRo0aDB482FL4mDZtGq+++io9evSgUqVKTJkyhZCQEGbNmgVA8eLFAfDx8cHPz8+qOObl5cVHH31E5cqVefjhh+nYsaPl/M6ePUt4eDjffvstTZs2JTAwkJEjR9KkSROrr11ycjKffPIJjRo1olKlSri6ugLQoUMHnn32WYKCgnjrrbeIjY2lbt26dOnSheDgYF599VWOHDnCxYsXAShVqhQjR44kJCSEChUq8OKLL9K+fXuWLl16p1+2bB0/fpwKFSrg4OCQbdzZs2dp3bo1lStXJigoiCeeeIJatWrh6OiYYVagilAiIiIiIoXfMy2eoGKJcvx9I4YZq+dnGuPtXZTgiuUA2Ln7YF6md1/RTKj7kYNr2oykOxG1P/OZTwN/Bv+ad9a3DZw8eZKkpCTq169v2ebt7U2lSpWs4gYOHMgzzzzDjBkzMBqNLFq0iJkzZ1rFuLu7ExkZSVxcHBEREQwfPpwKFSpkuJ0sM2azGYPBkOm+r7/+mmeffdby+aeffqJp06aZxgYEBODu7m757O/vz6VLlyznmpycTOPGjS37HRwcqFevHkeOHLE6Ts2aNa2OAViOU7VqVcu+119/nddff92qba1atSwFvXbt2tG2bVsef/xxvLy8iI2N5cKFC1Y5ADRu3Jjff898wbx/qlatGnZ2dla5HThwAIADBw6QmppKcHCwVZvExER8fHwsnx0dHa3OL7NzLlGiBIDVbZjp2y5duoSfnx+pqam8++67LF26lPPnz5OUlERiYqKlqHU7Z8+eve21BCwzyG5n+PDhDBgwgC+//JLWrVvzxBNPEBgYmKO2IiIiIiJS+DjaOzD+iZd56qPhfL5hCU83eYTAEmUzxIXVqcaJU2c5d/4i5y9colRJ33zINn+pCHU/Mhju/JY4B5f/b2sEs+l/fzq42Oz2Olvo1KkTTk5OrFy5EkdHR5KTk3n88cetYoxGIxUrVgTS1os6cuQIkyZNum0RKjU1lePHj1tu9fu3zp07WxXJSpUqleWx/j1bxmAw3NXC2/88TnpxzGQyUbp0aaun1v1zllI6Ozs71q1bx7Zt21i7di0ffvghY8aMYceOHVbFoLuR3fnFxcVhZ2fHnj17rApVYH37mYuLS6YFv8zOOavrADB16lTef/99Zs2aRY0aNShSpAhDhw4lKSkpR+dSsmTJ215LgODgYLZs2UJycnK2s6HGjRtHz549+fHHH/npp58YO3YsixcvpmvXrjnKR0RERERECp9W1RvRqnojIg5uY9yy9/nyhekZYjzci1C1ciAHD59gx64DdO38UJaTJAor3Y5XWBQpDm6+UDIEOs9K+9PNN237fSAwMBAHBwd27Nhh2RYTE8Mff/xhFWdvb0+fPn0IDw8nPDycHj164OLiku2xTSYTiYmJt81h4cKFxMTE8Nhjj2W6393dnYoVK1pet+s3K4GBgTg6Olqt7ZScnMyuXbusZuRkx97e3iqXrAonBoOBxo0bM378ePbt24ejoyMrV67Ew8ODkiVLZlhfauvWrZYc0teASk1NvaPzCw0NJTU1lUuXLlnlWLFiRfz8/O7oWDmxdetWHnnkEZ5++mlq1apFhQoVMoyb7OT0Wvbs2ZO4uDg++eSTTPdfu3bN8j44OJhhw4axdu1aHn30UcttiI6Ojnd8PUVEREREpHAY//jL2BvtWHdgKxsObc80pnZIFezt7bh0+Spn/ryQxxnmP82EKiyKloKRh8DOMW0mVd1+kJoE9k75nRmQNkOmf//+jBo1yrJI9ZgxYzAaM9ZBBwwYQJUqVQAyFFEmTZpEWFgYgYGBJCYmsnr1ar788ks+/fRTq7j4+Hiio6NJSUnh3LlzrFy5kpkzZ/L888/TsmVL250oUKRIEZ5//nlGjRqFt7c3ZcuW5b333iM+Pp7+/fvnWj87duwgIiKCtm3b4uvry44dO7h8+bLl2o0aNYqxY8cSGBhISEgI4eHhREZG8vXXXwPg6+uLi4sLa9asoXTp0jg7O1O0aNHb9hscHMxTTz1F7969mT59OqGhoVy+fJmIiAhq1qxJx44dc+0cAYKCgli2bBnbtm3Dy8uLGTNmcPHixRwX9HKqfv36vPLKK4wYMYLz58/TtWtXSpYsyYkTJ/jss89o0qQJgwYNYtSoUTz++OOUL1+ec+fOsWvXLkthMyAgwHKbaK1atXB1dc3xbYMiIiIiIlKwVfQrx4CHuvPZ+kW8tXQWTd+qi4OdddnF1dWZGtWC2Pf7UXbuPki5siUxGh+c2VAqQhUm/yw4GQz3TQEq3dSpU4mLi6NTp064u7szYsQIrl+/niEuKCiIRo0acfXqVavb4yBt0e/Bgwdz7tw5XFxcqFy5Ml999RXdu3e3ips7dy5z587F0dERHx8f6tSpw5IlS/LslqnJkydjMpno1asXN27cICwsjJ9//hkvL69c68PDw4PNmzcza9YsYmNjKVeuHNOnT+c///kPAC+99BLXr19nxIgRXLp0iapVq7Jq1SrL0+vs7e354IMPmDBhAm+99RZNmzZl06ZNOeo7PDyct99+21KwKVasGA0aNODhhx/OtfNL98Ybb3Dq1CnatWuHq6srgwYNokuXLpmOnXs1ZcoU6tSpw8cff8xnn32GyWQiMDCQxx9/nD59+mBnZ8eVK1fo3bs3Fy9epFixYjz66KOMHz8egEaNGvHcc8/RvXt3rly5wtixYxk3blyu5ykiIiIiIven4R2f4dsdP3Hi4p+Eb1rGoFY9MsSE1KzE4aMnibkWy559h4mKvkyDejUfiCfmGcw5XY1X7prJZCLm6hW8vH0yzPxJSEjg9OnTlC9fHmdn53zKMGdMJhOxsbF4eHhkOoMpt5jNZoKCghg8eDDDhw+3WT9y/8irsSXWCtL3n3uRnJzM6tWr6dChw22ffihypzS+xJY0vsRWNLbEljS+4Ost3zPiq0l4uLixbcK3FHPPOBlh3+9H2bHrAA4O9iQnp1C9WkWaNAzNh2zvXXY1j3/Tb3tyX7l8+TIfffQR0dHR9OvXL7/TEREREREREbkjPRo9TM2ylYi9FceUVbMz7L9x4yZ+JXxwdnYkOTkFgJMn/+Ly3zFc/juGGzdu5nXKeUa348l9xdfXl2LFijFnzpxcvXVNREREREREJC/YGe2Y2G0Yj0x7jq+2fE+fZo9SvUywZf/XS1ZnaHMrIZHl3623fH5uwBN5kmte00woua+YzWYuX75Mz5498zsVERERERERkbtSv2IIXcLaYDabeWPJDP65EtJDLephMGS+GLnBYOChFvXyKs08pyKUiIiIiIiIiEgue/PRIbg4OPHbiUhW7YmwbA+uWI5HH2mVaZtHH2lFcMVyeZVinlMRSkREREREREQkl5XyLsGQ9r0BmLDiI+KTEvI5o/ynIpSIiIiIiIiIiA083+YpSnn7cf5qNJ+s/cqy3cXFCRcXZ4oX86JZ49oUL+aFi4szLi5O+Zit7WlhchERERERERERG3B1dGbsYy8yaO4YPv75S3o0epjS3n64FXHl6R4dMBqNGAwGqlSugMlkws7OLr9TtinNhBIRERERERERsZFOtR+iQVAot5ITeXvFx5btdnZ2lgXKDQZDoS9AgYpQIiIiIiIiIiI2YzAYeLvbMIwGI9/tXsdvxyPzO6V8oyKU2Ezfvn3p0qVLtjEtWrRg6NCheZJPbhk3bhwhISEFvo/clpOvt4iIiIiIyIOoeplgnm7yCABvLp1Bqik1nzPKHypCFTKXLl9l1Y+buHT5qk37MRgM2b7GjRvH+++/z4IFC3K13xUrVhAWFoanpydFihQhJCSEL7/80iqmRYsWljycnJwoVaoUnTp1YsWKFbmSw8iRI4mIiLh9YA4ZDAa+++67XDueiIiIiIiI3H9e6TwIDxc3Dvz1B4u3/ZDf6eQLFaEKmT+O/8mFqMv8ceJPm/YTFRVlec2aNQsPDw+rbSNHjqRo0aJ4enrmar/e3t6MGTOG7du3s3//fvr160e/fv34+eefreIGDhxIVFQUJ0+eZPny5VStWpUePXowaNCge87Bzc0NHx+fez5OXjObzaSkpOR3GiIiIiIiIg+kYu5ejHx4AADvfv8Z1+Nv5HNGeU9FqPuQ2WwmOTklx6+rMbFERV8mKvpvTpz6C4ATJ/8iKvpvoqIvczUmNsfHMpvNOcrRz8/P8ipatCgGg8Fqm5ubW4bbs27evEnv3r1xc3PD39+f6dOnWx1zwoQJVK9ePUNfISEhvPnmm0DaLKeuXbtSpUoVAgMDefnll6lZsyZbtmyxauPq6oqfnx+lS5emQYMGTJkyhdmzZzN37lzWr19/J1+ODP59q9ymTZuoV68eRYoUwdPTk8aNG/Pnn/8rAn766acEBgbi6OhIpUqVrGZuBQQEANC1a1cMBoPlc7ovv/ySgIAAihYtSo8ePbhx43/fpEwmE5MmTaJ8+fK4uLhQq1Ytli1bZpWXwWDgp59+ok6dOjg5ObFlyxZatGjBiy++yNChQ/Hy8qJEiRLMnTuXmzdv0q9fP9zd3alYsSI//fST5Vipqan079/f0lelSpV4//337+k6ioiIiIiIPGj6tXicIL9yXLkRw7QfP2frsT2s3LWWrcf2PBC36NnndwKSUUpKKvMWrrynYyQkJPL9DxvvuF3/Pl1xcLDNsBg1ahS//PIL33//Pb6+vrz++uvs3bvXUtB55plnGD9+PLt27aJu3boA7Nu3j/3792d6K53ZbGbDhg0cO3aMKVOm3Lb/Pn36MGLECFasWEHr1q1z5ZxSUlLo0qULAwcO5JtvviEpKYmdO3dannCwcuVKXn75ZWbNmkXr1q354Ycf6NevH6VLl6Zly5bs2rULX19fwsPDad++vdXTEE6ePMl3333HDz/8QExMDN26dWPy5Mm88847AEyaNImvvvqKzz77jKCgIDZv3szTTz9N8eLFad68ueU4r732GtOmTaNChQp4eXkBsHDhQl555RV27tzJkiVLeP7551m5ciVdu3bl9ddfZ+bMmfTq1YuzZ8/i6uqKyWSidOnSfPvtt/j4+LBt2zYGDRqEv78/3bp1y5VrKSIiIiIiUtg52Nkz4YlhPPnhUOZGLGFuxBLLPn9PX97uPoyOoS3zMUPbUhFK8kRcXBzz5s3jq6++olWrVkBaIaR06dKWmNKlS9OuXTvCw8MtRajw8HCaN29OhQoVLHHXr1+nVKlSJCYmYmdnxyeffEKbNm1um4PRaCQ4OJgzZ87k2nnFxsZy/fp1Hn74YQIDAwGoUqWKZf+0adPo27cvgwcPBmD48OH89ttvTJs2jZYtW1K8eHEAPD098fPzszq2yWRiwYIFuLu7A9CrVy8iIiJ45513SExM5N1332X9+vU0bNgQgAoVKrBlyxZmz55tVYSaMGFChutTq1Yt3njjDQBGjx7N5MmTKVasGAMHDgTgrbfe4tNPP2X//v00aNAABwcHxo8fb2lfvnx5tm/fztKlS1WEEhERERERuQPxSbcy3R597RIDZo/m82cnFdpClIpQ9yF7ezv69+l6R23+vnIt05lPjzzckmI+nnfUty2cPHmSpKQk6tevb9nm7e1NpUqVrOIGDhzIM888w4wZMzAajSxatIiZM2daxbi7uxMZGUlcXBwREREMHz6cChUq0KJFi9vmYTabLbOU/u3rr7/m2WeftXz+6aefaNq0abbH8/b2pm/fvrRr1442bdrQunVrunXrhr+/PwBHjhzJsA5V48aNc3QrW0BAgKUABeDv78+lS5cAOHHiBPHx8RmKS0lJSYSGhlptCwsLy3DsmjVrWt7b2dnh4+NDjRo1LNtKlCgBYOkP4OOPP2b+/PmcPXuWW7dukZSUVOCe4CciIiIiIpKfUk2pvLFkZqb7zIABeHPpLNrXaoad0Ta/n+cnFaHuQwaD4Y5vicuqeGRvb2ez2+tsoVOnTjg5ObFy5UocHR1JTk7m8ccft4oxGo1UrFgRSFsv6siRI0yaNOm2RajU1FSOHz9umWX1b507d7YqkpUqVSpHOYeHh/PSSy+xZs0alixZwhtvvMG6deto0KBBjtpnxcHBweqzwWDAZDIBaTPLAH788ccMeTo5OVl9LlKkSI6O/c9t6YW69P4WL17MyJEjmT59Og0bNsTd3Z2pU6eyY8eOuzk1ERERERGRB9JvxyOJunYpy/1m4ELMRX47HknjSnXyLrE8UnCqE5ItFxcnXFyccSviQpVK5Tly7DRxN2/h4uJ0+8Z5IDAwEAcHB3bs2EHZsmUBiImJ4Y8//rC6dcze3p4+ffoQHh6Oo6MjPXr0wMXFJdtjm0wmEhMTb5vDwoULiYmJ4bHHHst0v7u7u9XMozsRGhpKaGgoo0ePpmHDhixatIgGDRpQpUoVtm7dSp8+fSyxW7dupWrVqpbPDg4OpKbe2QJ0VatWxcnJibNnz1pdP1vZunUrjRo1stxWCGmz20RERERERCTnLsVeydW4gkZFqELCrYgrT/fogNFoxGAwUKVyBUwmk9VC1/nJzc2N/v37M2rUKHx8fPD19WXMmDEYjRkf0DhgwADLukpbt2612jdp0iTCwsIIDAwkMTGR1atX8+WXX/Lpp59axcXHxxMdHU1KSgrnzp1j5cqVzJw5k+eff56WLXPv3trTp08zZ84cOnfuTMmSJTl27BjHjx+nd+/eQNpi7N26dSM0NJTWrVvz3//+lxUrVlg9oS8gIICIiAgaN26Mk5OTZfHw7Li7uzNy5EiGDRuGyWSiSZMmXL9+na1bt+Lh4WFV9MoNQUFBfPHFF/z888+UL1+eL7/8kl27dlG+fPlc7UdERERERKQw8/XwydW4gkZFqELknwUng8Fw3xSg0k2dOpW4uDg6deqEu7s7I0aM4Pr16xnigoKCaNSoEVevXrW6PQ7g5s2bDB48mHPnzuHi4kLlypX56quv6N69u1Xc3LlzmTt3Lo6Ojvj4+FCnTh2WLFlC1653ttbW7bi6unL06FEWLlzIlStX8Pf354UXXrCsLdWlSxfef/99pk2bxssvv0z58uUJDw+3unVw+vTpDB8+nLlz51KqVKkcL5w+ceJEihcvzqRJkzh16hSenp7Url2b119/PVfPEeDZZ59l3759dO/eHYPBwJNPPsngwYP56aefcr0vERERERGRwqpBUAj+nr5EX7uEOZP9BsDfqwQNgkLyOLO8YTCbzZmd933n6tWrvPjii/z3v//FaDTy2GOP8f777+Pm5pZlmzlz5rBo0SL27t3LjRs3iImJwdPT07J/06ZNWc6K2blzJ3Xr1uXMmTOZzvbYvn17jtf8MZlMxFy9gpe3T4aZPwkJCZw+fZry5cvj7Oyco+PlF5PJRGxsLB4eHpnOYMotZrOZoKAgBg8ezPDhw23Wj9w/8mpsibWC9P3nXiQnJ7N69Wo6dOiQYT00kXul8SW2pPEltqKxJbak8XV7P+7byIDZowGsClHpj9AqaE/Hy67m8W8F5re9p556ikOHDrFu3Tp++OEHNm/enOGpY/8WHx9P+/bts5wZ0qhRI6KioqxeAwYMoHz58hmeKLZ+/XqruDp1Ct8CYfeDy5cv89FHHxEdHU2/fv3yOx0RERERERGRXNUxtCWfPzsJP09fq+3+XiUKXAHqThWI2/GOHDnCmjVr2LVrl6U49OGHH9KhQwemTZtGyZIlM203dOhQIG3GU2YcHR3x8/OzfE5OTub777/nxRdftDwdLJ2Pj49VrNiGr68vxYoVY86cOTlaG0lERERERESkoOkY2pL2tZrx2/FILsVewdfDhwZBIdgZ769ldXJbgShCbd++HU9PT6vZSa1bt8ZoNLJjx45cW+dn1apVXLlyJdMZOJ07dyYhIYHg4GBeeeUVOnfunOVxEhMTrZ7Wln7HY0pKSobiVnJyMmazGZPJhMlkypXzsJX080jP1xb++ZS4+/16SO7Ji7ElGZlMJsxmM8nJyffdGnK5KTk52epPkdyk8SW2pPEltqKxJbak8XVn6lWoaXlvSjVhSi14vw/dySpPBaIIFR0dja+v9TQ1e3t7vL29iY6OzrV+5s2bR7t27ShdurRlm5ubG9OnT6dx48YYjUaWL19Oly5d+O6777IsRE2aNInx48dbHePM6VOsXbvWqsiSfh5+fn7ExcWRlJSUa+diSzdu3MjvFKSQ0tjKW0lJSdy6dYvNmzeTkpKS3+nY3Lp16/I7BSnENL7EljS+xFY0tsSWNL4eHHZ2djRsUP/2geRzEeq1115jypQp2cYcOXIkT3I5d+4cP//8M0uXLrXaXqxYMavFsevWrcuFCxeYOnVqlkWo0aNHW7Uxm82kJCfRtm3bDDOhEhMTOXv2LEWKFMHFxSUXzyj3mc1mbty4gbu7e4bzELkXGlv549atW7i4uNC8eXOcnJzyOx2bSU5OZt26dbRp00aLY0qu0/gSW9L4ElvR2BJb0vh68JjNZm7EXs9RbL4WoUaMGEHfvn2zjalQoQJ+fn5cunTJantKSgpXr17NtXWawsPD8fHxyfY2u3T169fPtqrr5ORk9Qtd+krx9vb2GVaKNxqNGAwGEhISKFKkyN2fQB5Iv03KYDDoCWaSqzS28kdCQgIGgwEXF5dCfTteOgcHB/0gJDaj8SW2pPEltqKxJbak8fXguJMlVfK1CFW8eHGKFy9+27iGDRty7do19uzZY3kq3YYNGzCZTNSvn7MpX9kxm82Eh4fTu3fvHP0liYyMxN/f/577hbRpa56enpYim6ur6307E8RkMpGUlERCQoIKBZKrNLbyltlsJj4+nkuXLuHp6flAFKBERERERCT/FYg1oapUqUL79u0ZOHAgn332GcnJyQwZMoQePXpYnox3/vx5WrVqxRdffEG9evWAtLWkoqOjOXHiBAAHDhzA3d2dsmXL4u3tbTn+hg0bOH36NAMGDMjQ98KFC3F0dCQ0NBSAFStWMH/+fD7//PNcO7/02Vz/nu11vzGbzZbbd+7XQpkUTBpb+cPT01NP/RQRERERkTxTIIpQAF9//TVDhgyhVatWGI1GHnvsMT744APL/uTkZI4dO0Z8fLxl22effWa1QHizZs2AtFvv/nkb4Lx582jUqBGVK1fOtO+JEyfy559/Ym9vT+XKlVmyZAmPP/54rp2bwWDA398fX1/f+/oJAsnJyWzevJlmzZppWqXkKo2tvOfg4KAZUCIiIiIikqcKTBHK29ubRYsWZbk/ICAgw2MBx40bx7hx42577OyO26dPH/r06ZPjPO+FnZ3dff1LoZ2dHSkpKTg7O6tQILlKY0tERERERKTw0+IrIiIiIiIiIiJicypCiYiIiIiIiIiIzakIJSIiIiIiIiIiNldg1oQqyNLXqjKbTZhM+ZzMPTCbzdjZ2WE2mzEV5BOR+47GltiSxpfYksaX2JLGl9iKxpbYksbXg8dsNv3/n+bbRILBnJMouSepqSlci4nJ7zRERERERERERGzC08sLO7vs5zqpCJUHTCYTZrMJAwYwGPI7nbt248YNSpcuzblz53B3d8/vdKQQ0dgSW9L4ElvS+BJb0vgSW9HYElvS+HoAmc2YMWMwGDEas1/1Sbfj5YG0L0LBX37LYDAQFxeHwWC47cASuRMaW2JLGl9iSxpfYksaX2IrGltiSxpfkh2NCBERERERERERsTkVoURERERERERExOZUhJIcc3JyYuzYsTg5OeV3KlLIaGyJLWl8iS1pfIktaXyJrWhsiS1pfEl2tDC5iIiIiIiIiIjYnGZCiYiIiIiIiIiIzakIJSIiIiIiIiIiNqcilIiIiIiIiIiI2JyKUCIiIiIiIiIiYnMqQomVjz/+mICAAJydnalfvz47d+7MNv7bb7+lcuXKODs7U6NGDVavXp1HmUpBcydja+7cuTRt2hQvLy+8vLxo3br1bceiPNju9HtXusWLF2MwGOjSpYttE5QC7U7H17Vr13jhhRfw9/fHycmJ4OBg/fsoWbrT8TVr1iwqVaqEi4sLZcqUYdiwYSQkJORRtlJQbN68mU6dOlGyZEkMBgPffffdbdts2rSJ2rVr4+TkRMWKFVmwYIHN85SC6U7H14oVK2jTpg3FixfHw8ODhg0b8vPPP+dNsnLfURFKLJYsWcLw4cMZO3Yse/fupVatWrRr145Lly5lGr9t2zaefPJJ+vfvz759++jSpQtdunTh4MGDeZy53O/udGxt2rSJJ598ko0bN7J9+3bKlClD27ZtOX/+fB5nLgXBnY6vdGfOnGHkyJE0bdo0jzKVguhOx1dSUhJt2rThzJkzLFu2jGPHjjF37lxKlSqVx5lLQXCn42vRokW89tprjB07liNHjjBv3jyWLFnC66+/nseZy/3u5s2b1KpVi48//jhH8adPn6Zjx460bNmSyMhIhg4dyoABA1QokEzd6fjavHkzbdq0YfXq1ezZs4eWLVvSqVMn9u3bZ+NM5b5kFvl/9erVM7/wwguWz6mpqeaSJUuaJ02alGl8t27dzB07drTaVr9+ffOzzz5r0zyl4LnTsfVvKSkpZnd3d/PChQttlaIUYHczvlJSUsyNGjUyf/755+Y+ffqYH3nkkTzIVAqiOx1fn376qblChQrmpKSkvEpRCrA7HV8vvPCC+aGHHrLaNnz4cHPjxo1tmqcUbIB55cqV2ca88sor5mrVqllt6969u7ldu3Y2zEwKg5yMr8xUrVrVPH78+NxPSO57mgklQNr/3O7Zs4fWrVtbthmNRlq3bs327dszbbN9+3areIB27dplGS8PprsZW/8WHx9PcnIy3t7etkpTCqi7HV8TJkzA19eX/v3750WaUkDdzfhatWoVDRs25IUXXqBEiRJUr16dd999l9TU1LxKWwqIuxlfjRo1Ys+ePZZb9k6dOsXq1avp0KFDnuQshZd+rpe8ZDKZuHHjhn62f0DZ53cCcn/4+++/SU1NpUSJElbbS5QowdGjRzNtEx0dnWl8dHS0zfKUguduxta/vfrqq5QsWTLDD0cidzO+tmzZwrx584iMjMyDDKUgu5vxderUKTZs2MBTTz3F6tWrOXHiBIMHDyY5OZmxY8fmRdpSQNzN+OrZsyd///03TZo0wWw2k5KSwnPPPafb8eSeZfVzfWxsLLdu3cLFxSWfMpPCaNq0acTFxdGtW7f8TkXygWZCich9bfLkySxevJiVK1fi7Oyc3+lIAXfjxg169erF3LlzKVasWH6nI4WQyWTC19eXOXPmUKdOHbp3786YMWP47LPP8js1KQQ2bdrEu+++yyeffMLevXtZsWIFP/74IxMnTszv1EREcmTRokWMHz+epUuX4uvrm9/pSD7QTCgBoFixYtjZ2XHx4kWr7RcvXsTPzy/TNn5+fncULw+muxlb6aZNm8bkyZNZv349NWvWtGWaUkDd6fg6efIkZ86coVOnTpZtJpMJAHt7e44dO0ZgYKBtk5YC426+f/n7++Pg4ICdnZ1lW5UqVYiOjiYpKQlHR0eb5iwFx92MrzfffJNevXoxYMAAAGrUqMHNmzcZNGgQY8aMwWjU/y/L3cnq53oPDw/NgpJcs3jxYgYMGMC3336rOxweYPqXSgBwdHSkTp06REREWLaZTCYiIiJo2LBhpm0aNmxoFQ+wbt26LOPlwXQ3YwvgvffeY+LEiaxZs4awsLC8SFUKoDsdX5UrV+bAgQNERkZaXp07d7Y8DahMmTJ5mb7c5+7m+1fjxo05ceKEpbgJ8Mcff+Dv768ClFi5m/EVHx+fodCUXvA0m822S1YKPf1cL7b2zTff0K9fP7755hs6duyY3+lIfsrvldHl/rF48WKzk5OTecGCBebDhw+bBw0aZPb09DRHR0ebzWazuVevXubXXnvNEr9161azvb29edq0aeYjR46Yx44da3ZwcDAfOHAgv05B7lN3OrYmT55sdnR0NC9btswcFRVled24cSO/TkHuY3c6vv5NT8eT7Nzp+Dp79qzZ3d3dPGTIEPOxY8fMP/zwg9nX19f89ttv59cpyH3sTsfX2LFjze7u7uZvvvnGfOrUKfPatWvNgYGB5m7duuXXKch96saNG+Z9+/aZ9+3bZwbMM2bMMO/bt8/8559/ms1ms/m1114z9+rVyxJ/6tQps6urq3nUqFHmI0eOmD/++GOznZ2dec2aNfl1CnIfu9Px9fXXX5vt7e3NH3/8sdXP9teuXcuvU5B8pCKUWPnwww/NZcuWNTs6Oprr1atn/u233yz7mjdvbu7Tp49V/NKlS83BwcFmR0dHc7Vq1cw//vhjHmcsBcWdjK1y5cqZgQyvsWPH5n3iUiDc6feuf1IRSm7nTsfXtm3bzPXr1zc7OTmZK1SoYH7nnXfMKSkpeZy1FBR3Mr6Sk5PN48aNMwcGBpqdnZ3NZcqUMQ8ePNgcExOT94nLfW3jxo2Z/iyVPp769Oljbt68eYY2ISEhZkdHR3OFChXM4eHheZ63FAx3Or6aN2+ebbw8WAxms+buioiIiIiIiIiIbWlNKBERERERERERsTkVoURERERERERExOZUhBIREREREREREZtTEUpERERERERERGxORSgREREREREREbE5FaFERERERERERMTmVIQSERERERERERGbUxFKRERERERERERsTkUoERERkXwWEBDArFmz8juNbM2bN4+2bdveUZu///4bX19fzp07Z6OsREREpCBREUpERETkLnXq1In27dtnuu/XX3/FYDCwf//+Oz6uwWDgu+++u8fsck9CQgJvvvkmY8eOBeDFF1+kSpUqmcaePXsWOzs7Vq1aRbFixejdu7elnYiIiDzYVIQSERERuUv9+/dn3bp1mc70CQ8PJywsjJo1a+ZDZrlr2bJleHh40LhxYyDtvI8ePcq2bdsyxC5YsABfX186dOgAQL9+/fj666+5evVqnuYsIiIi9x8VoURERETu0sMPP0zx4sVZsGCB1fa4uDi+/fZb+vfvD8Dy5cupVq0aTk5OBAQEMH369CyPGRAQAEDXrl0xGAyWzydPnuSRRx6hRIkSuLm5UbduXdavX2/VNioqio4dO+Li4kL58uVZtGhRhlv9rl27xoABAyhevDgeHh489NBD/P7779me5+LFi+nUqZPlc0hICLVr12b+/PlWcWazmQULFtCnTx/s7e0BqFatGiVLlmTlypXZ9iEiIiKFn4pQIiIiInfJ3t6e3r17s2DBAsxms2X7t99+S2pqKk8++SR79uyhW7du9OjRgwMHDjBu3DjefPPNDIWrdLt27QLSZlJFRUVZPsfFxdGhQwciIiLYt28f7du3p1OnTpw9e9bStnfv3ly4cIFNmzaxfPly5syZw6VLl6yO/8QTT3Dp0iV++ukn9uzZQ+3atWnVqlW2M5W2bNlCWFiY1bb+/fuzdOlSbt68adm2adMmTp8+zTPPPGMVW69ePX799ddsrqSIiIg8CFSEEhEREbkHzzzzDCdPnuSXX36xbAsPD+exxx6jaNGizJgxg1atWvHmm28SHBxM3759GTJkCFOnTs30eMWLFwfA09MTPz8/y+datWrx7LPPUr16dYKCgpg4cSKBgYGsWrUKgKNHj7J+/Xrmzp1L/fr1qV27Np9//jm3bt2yHHvLli3s3LmTb7/9lrCwMIKCgpg2bRqenp4sW7Ys03yuXbvG9evXKVmypNX2nj17kpyczLfffmt13k2aNCE4ONgqtmTJkvz55585vaQiIiJSSKkIJSIiInIPKleuTKNGjSy3pp04cYJff/3VcivekSNHLGsppWvcuDHHjx8nNTU1x/3ExcUxcuRIqlSpgqenJ25ubhw5csQyE+rYsWPY29tTu3ZtS5uKFSvi5eVl+fz7778TFxeHj48Pbm5ultfp06c5efJkpv2mF7GcnZ2ttnt6evLoo49azjs2Npbly5dbzvufXFxciI+Pz/G5ioiISOFkn98JiIiIiBR0/fv358UXX+Tjjz8mPDycwMBAmjdvnqt9jBw5knXr1jFt2jQqVqyIi4sLjz/+OElJSTk+RlxcHP7+/mzatCnDPk9Pz0zb+Pj4YDAYiImJybCvf//+tGrVihMnTrBx40bs7Ox44oknMsRdvXrVMqNLREREHlyaCSUiIiJyj7p164bRaGTRokV88cUXPPPMMxgMBgCqVKnC1q1breK3bt1KcHAwdnZ2mR7PwcEhwyyprVu30rdvX7p27UqNGjXw8/PjzJkzlv2VKlUiJSWFffv2WbadOHHCqnhUu3ZtoqOjsbe3p2LFilavYsWKZZqLo6MjVatW5fDhwxn2tWzZkvLlyxMeHk54eDg9evSgSJEiGeIOHjxIaGhopscXERGRB4eKUCIiIiL3yM3Nje7duzN69GiioqLo27evZd+IESOIiIhg4sSJ/PHHHyxcuJCPPvqIkSNHZnm8gIAAIiIiiI6OthSRgoKCWLFiBZGRkfz+++/07NkTk8lkaVO5cmVat27NoEGD2LlzJ/v27WPQoEG4uLhYCmKtW7emYcOGdOnShbVr13LmzBm2bdvGmDFj2L17d5b5tGvXji1btmTYbjAYeOaZZ/j000/Zvn17prfixcfHs2fPHtq2bXvb6ygiIiKFm4pQIiIiIrmgf//+xMTE0K5dO6tFvGvXrs3SpUtZvHgx1atX56233mLChAlWhap/mz59OuvWraNMmTKWGUQzZszAy8uLRo0a0alTJ9q1a2e1/hPAF198QYkSJWjWrBldu3Zl4MCBuLu7W9ZzMhgMrF69mmbNmtGvXz+Cg4Pp0aMHf/75JyVKlMj23FavXs3169cz7Ovbty/Xr1+nWrVq1K9fP8P+77//nrJly9K0adNsr5+IiIgUfgbzP58nLCIiIiKFxrlz5yhTpgzr16+nVatW93SsJ554gtq1azN69Og7ategQQNeeuklevbseU/9i4iISMGnmVAiIiIihcSGDRtYtWoVp0+fZtu2bfTo0YOAgACaNWt2z8eeOnUqbm5ud9Tm77//5tFHH+XJJ5+85/5FRESk4NNMKBEREZFC4ueff2bEiBGcOnUKd3d3GjVqxKxZsyhXrlx+pyYiIiKiIpSIiIiIiIiIiNiebscTERERERERERGbUxFKRERERERERERsTkUoERERERERERGxORWhRERERERERETE5lSEEhERERERERERm1MRSkREREREREREbE5FKBERERERERERsTkVoURERERERERExOb+Dxql6nPTPGq/AAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "fig, ax = plt.subplots(figsize=(14, 5))\n", + "ax.plot(voltage, current, marker='o', linestyle='-')\n", + "ax.plot(voltage, current_cst, marker='*', linestyle='-')\n", + "ax.plot(voltage, current_iso, marker='*', linestyle='-')\n", + "# --- ADJUSTED LABELS ---\n", + "ax.set_xlabel(\"Voltage (V)\")\n", + "ax.set_ylabel(\"Current (A)\")\n", + "ax.set_title(\"Current-Voltage (IV) Curve\")\n", + "ax.legend(['Tidy3D - non-isothermal - Eff. DOS',\n", + " 'Tidy3D - non-isothermal - Cst',\n", + " 'Tidy3D - isothermal'])\n", + "ax.grid(True, which=\"both\", ls=\"-\") \n", + "plt.show()" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.13" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From 0ff1c70e5820a3433e5b22543fe3225475053511 Mon Sep 17 00:00:00 2001 From: Marc Bolinches Date: Wed, 27 Aug 2025 14:03:50 +0200 Subject: [PATCH 2/2] Modified geometry so that we can converge using convection BCs NOTE: to converge we need to use a modified version of DevSim --- PINMachZenhder.ipynb | 86845 +++++++++++++++-------------------------- 1 file changed, 30993 insertions(+), 55852 deletions(-) diff --git a/PINMachZenhder.ipynb b/PINMachZenhder.ipynb index 0572c364..3267f9c1 100644 --- a/PINMachZenhder.ipynb +++ b/PINMachZenhder.ipynb @@ -68,20 +68,21 @@ "rib_size = (x_rib_w, y_rib_h, z_size)\n", "\n", "# enclosing box + sox\n", - "soxbox_center = (0, -0.545, 0)\n", - "y_soxbox_h = 3.09\n", + "offset_soxbox = 1.7\n", + "soxbox_center = (0, offset_soxbox, 0)\n", + "y_soxbox_h = 5\n", "x_box_w = 5\n", "soxbox_size = (x_box_w, y_soxbox_h, z_size)\n", "\n", "# cathode\n", - "cathode_center = (-2.25, 0.25, 0)\n", - "y_cathode_h = 0.5\n", + "cathode_center = (-2.25, 1, 0)\n", + "y_cathode_h = 2\n", "x_cathode_w = 0.5\n", "cathode_size = (x_cathode_w, y_cathode_h, z_size)\n", "\n", "# anode\n", - "anode_center = (2.25, 0.25, 0)\n", - "y_cathode_h = 0.5\n", + "anode_center = (2.25, 1, 0)\n", + "y_cathode_h = 2\n", "x_anode_w = 0.5\n", "anode_size = (x_anode_w, y_cathode_h, z_size)" ] @@ -346,7 +347,7 @@ "\n", "cb_thick = 0.5\n", "contact_bottom = td.Structure(\n", - " geometry=td.Box(center=(0, -2 -y_pad_h - cb_thick/2, 0), size=(x_pad_w, cb_thick, 4)),\n", + " geometry=td.Box(center=(0, -y_soxbox_h/2 + offset_soxbox - cb_thick/2, 0), size=(x_pad_w, cb_thick, 4)),\n", " medium=contact_medium_bottom,\n", " name=\"contact_bottom\",\n", ")\n", @@ -414,7 +415,7 @@ "outputs": [ { "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAABOEAAAG3CAYAAADyykGmAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8fJSN1AAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOydeXwU9f3/nzO7m81BEhJyJxDClYQbkRvFg69Y8aBqPb61oFWpWq2WtrZUBUG/orVerQceVahXEX8WWlFEOUS5L4VAEgKEBHJx5L53dz6/P5ZdsslmswFCZsjn+XjMg09mZ2Y/r3nNzM77w+fzeStCCIFEIpFIJBKJRCKRSCQSiUQi6TDUzq6ARCKRSCQSiUQikUgkEolEcqEjG+EkEolEIpFIJBKJRCKRSCSSDkY2wkkkEolEIpFIJBKJRCKRSCQdjGyEk0gkEolEIpFIJBKJRCKRSDoY2QgnkUgkEolEIpFIJBKJRCKRdDCyEU4ikUgkEolEIpFIJBKJRCLpYGQjnEQikUgkEolEIpFIJBKJRNLByEY4iUQikUgkEolEIpFIJBKJpIORjXASiUQikUgkEolEIpFIJBJJByMb4SQSyXln3bp1KIrCunXrOrsqknPMJ598QmRkJNXV1ef9u/ft24fZbCYjI+O8f7dEIpFIJBKJRCKRtIVshJNIJB3G66+/zqJFizq7GmfERx99xMsvv9zZ1QBA0zT+8pe/kJKSQmBgIEOHDuXjjz/2e//y8nJmzpxJdHQ0ISEhXH755ezcudPrtv/5z3+46KKLCAwMpFevXsydOxe73e7X9zgcDubOnctDDz1Et27d/K7fuWLgwIFMnTqVOXPmnPfvlkgkEolEIpFIJJK2UIQQorMrIZFILkwGDx5MVFRUix5vmqbR2NhIQEAAqqrP/wu49tprycjI4PDhw51dFWbPns2zzz7Lvffey6hRo1i+fDkrVqzg448/5rbbbvO5r6ZpXHLJJfz444/84Q9/ICoqitdff50jR46wY8cO+vfv7972yy+/ZOrUqVx22WXcfvvt7Nmzh9dee42ZM2fyxhtvtFnPZcuWceONN3LkyBESExPPWveZ8OWXX3LNNddw4MAB+vbt2yl1kEgkEolEIpFIJBJvyEY4iaSDqampISQkpLOr0Sm01ghnBPTSCFdQUEBKSgozZ87k1VdfBUAIwaRJk8jNzeXw4cOYTKZW9//kk0+49dZbWbp0KTfffDMAx48fZ8CAAfzkJz/ho48+cm87aNAgLBYL27dvx2w2A/D444/zzDPPsG/fPtLS0nzW9YYbbqC0tJTvvvvubGWfMTabjdjYWB588EHmz5/fafWQSCQSiUQikUgkkuboswuKRKJTCgoKuPvuu0lISMBqtZKSksL9999PY2MjAIsWLUJRFL799lseeOABYmJiSEpKcu//+uuvM2jQIKxWKwkJCfz617+mvLzc4ztycnK46aabiIuLIzAwkKSkJG677TYqKirc23z99ddMnDiR7t27061bN1JTU/nzn//cZv392a+hoYG5c+fSr18/rFYrPXv25NFHH6WhoaHF8T744ANGjx5NcHAwERERXHrppaxatQqA3r17s3fvXr799lsURUFRFC677DKg9Tnhli5dysiRIwkKCiIqKoo77riDgoICj23uvPNOunXrRkFBAdOmTaNbt25ER0fz+9//HofD0eY5WL58OVOnTnV72LdvX5566imPfS+77DJWrFhBXl6eu+69e/du9Zh33nmne7vmy5NPPtlmndqqr81m44EHHnCvUxSF+++/n6NHj7Jp0yaf+3/66afExsZy4403utdFR0dzyy23sHz5crev+/btY9++fcycOdPdAAfwwAMPIITg008/9fk99fX1rFy5ksmTJ3usP3z4MIqieB2W3Pz8PPnkkyiKwv79+7njjjsIDw8nOjqaJ554AiEER44c4YYbbiAsLIy4uDheeOGFFse0WCxcdtllLF++3Gd9JRKJRCKRSCQSieR8Y257E4lEAlBYWMjo0aPd82ulpaVRUFDAp59+Sm1tLQEBAe5tH3jgAaKjo5kzZw41NTWAs4Fh3rx5TJ48mfvvv5/s7GzeeOMNtm3bxoYNG7BYLDQ2NjJlyhQaGhp46KGHiIuLo6CggM8//5zy8nLCw8PZu3cv1157LUOHDmX+/PlYrVYOHDjAhg0bfNbfn/00TeP666/n+++/Z+bMmaSnp7Nnzx5eeukl9u/fz7Jly9zbzps3jyeffJLx48czf/58AgIC2LJlC2vWrOGqq67i5Zdfds8N9thjjwEQGxvbav0WLVrEXXfdxahRo1iwYAElJSW88sorbNiwgV27dtG9e3f3tg6HgylTpjBmzBj++te/8s033/DCCy/Qt29f7r//fp/nYdGiRXTr1o1Zs2bRrVs31qxZw5w5c6isrOT5558H4LHHHqOiooKjR4/y0ksvAfic4+xXv/pVi8anlStX8uGHHxITE+Ned+LECZ91cxEaGorVagVg165dhISEkJ6e7rHN6NGj3Z9PnDix1WPt2rWLiy66qMWw39GjR/PWW2+xf/9+hgwZwq5duwC4+OKLPbZLSEggKSnJ/Xlr7Nixg8bGRi666CK/NPri1ltvJT09nWeffZYVK1bw9NNPExkZyZtvvskVV1zBc889x4cffsjvf/97Ro0axaWXXuqx/8iRI1m+fDmVlZWEhYWddX0kEolEIpFIJBKJ5JwgJBKJX0yfPl2oqiq2bdvW4jNN04QQQrz33nsCEBMnThR2u939+bFjx0RAQIC46qqrhMPhcK9/9dVXBSDeffddIYQQu3btEoBYunRpq/V46aWXBCCOHz/ervr7s9/7778vVFUV3333ncf6hQsXCkBs2LBBCCFETk6OUFVV/PSnP/XQI8TpcyGEEIMGDRKTJk1q8T1r164VgFi7dq0QQojGxkYRExMjBg8eLOrq6tzbff755wIQc+bMca+bMWOGAMT8+fM9jjlixAgxcuRI3ydBCFFbW9ti3a9+9SsRHBws6uvr3eumTp0qkpOT2zyeN3JyckR4eLj4n//5H4/rAPBree+99zzq0adPnxbfUVNTIwDxpz/9yWddQkJCxC9/+csW61esWCEAsXLlSiGEEM8//7wARH5+fottR40aJcaOHevze9555x0BiD179nisz83NbaHJBSDmzp3r/nvu3LkCEDNnznSvs9vtIikpSSiKIp599ln3+rKyMhEUFCRmzJjR4rgfffSRAMSWLVt81lkikUgkEolEIpFIzidyOKpE4geaprFs2TKuu+66Fj2FwDmsrin33nuvxzxd33zzDY2NjTzyyCMePZLuvfdewsLCWLFiBQDh4eEAfPXVV9TW1nqti6tH2PLly9E0zW8N/uy3dOlS0tPTSUtL48SJE+7liiuuAGDt2rWAcwJ+TdOYM2dOix5Wzc+FP2zfvp1jx47xwAMPEBgY6F4/depU0tLS3OenKffdd5/H35dccgmHDh1q87uCgoLc5aqqKk6cOMEll1xCbW0tWVlZ7a57c2pqavjpT39KREQEH3/8scd18PXXX/u1TJkyxb1PXV2du1dcU1znqa6uzmd9/N3f9W9r27b1PSdPngQgIiLC53b+cM8997jLJpOJiy++GCEEd999t3t99+7dSU1N9eq5qw7+9jyUSCQSiUQikUgkkvOBHI4qkfjB8ePHqaysZPDgwX5tn5KS4vF3Xl4eAKmpqR7rAwIC6NOnj/vzlJQUZs2axYsvvsiHH37IJZdcwvXXX++eHwucQ/Xeeecd7rnnHv70pz9x5ZVXcuONN3LzzTf7zDTqz345OTlkZmYSHR3t9RjHjh0D4ODBg6iqysCBA/06H23R2vkBSEtL4/vvv/dYFxgY2KKOERERlJWVtflde/fu5fHHH2fNmjVUVlZ6fNZ03r0z5d577+XgwYNs3LiRHj16eHzWfMiqPwQFBXmdj6++vt79+bnY3/Vva9u29T0uxDnI9dOrVy+Pv8PDwwkMDCQqKqrFelfjn7c6nEmDsEQikUgkEolEIpF0FLIRTiLpAPxtsPDGCy+8wJ133sny5ctZtWoVv/nNb1iwYAGbN28mKSmJoKAg1q9fz9q1a1mxYgUrV65kyZIlXHHFFaxatarVTJn+7KdpGkOGDOHFF1/0eoyePXuesa5zia9soL4oLy9n0qRJhIWFMX/+fPr27UtgYCA7d+7kj3/8Y7t6FnrjlVde4eOPP+aDDz5g+PDhLT4vLi726zjh4eHuayg+Pp61a9cihPBoVCoqKgKcc7b5Ij4+3r1tU5rvHx8f717f3OeioiL3HHSt4WpwLCsr80hG0hq+Guu8+dua596O42qMbd5oJ5FIJBKJRCKRSCSdiRyOKpH4QXR0NGFhYWRkZJzR/snJyQBkZ2d7rG9sbCQ3N9f9uYshQ4bw+OOPs379er777jsKCgpYuHCh+3NVVbnyyit58cUX2bdvH//3f//HmjVr3MNFW6Ot/fr27UtpaSlXXnklkydPbrG4eqr17dsXTdPYt2+fz+/ztydSa+fHta75+TlT1q1bx8mTJ1m0aBEPP/ww1157LZMnT/Y6hLK9vai+++47fv/73/PII4/w85//3Os28fHxfi1Llixx7zN8+HBqa2vJzMz0ONaWLVvcn/ti+PDh7Ny5s0UD45YtWwgODmbAgAEex9m+fbvHdoWFhRw9erTN70lLSwMgNzfX6+dVVVUef5eUlPg83tmQm5uLqqpubRKJRCKRSCQSiUSiB2QjnETiB6qqMm3aNP773/+2aKSAtofgTZ48mYCAAP72t795bPuPf/yDiooKpk6dCkBlZSV2u91j3yFDhqCqqnuYYGlpaYvjuxpIvA0ldOHPfrfccgsFBQW8/fbbLbatq6tzZ3qdNm0aqqoyf/78Fo07TfWFhIRQXl7eap1cXHzxxcTExLBw4UIPDV9++SWZmZnu83O2uHpTNa1jY2Mjr7/+eottQ0JC/B6eWlRUxC233MLEiRPdGVa9cSZzwt1www1YLBaPOgohWLhwIYmJiYwfP96jHllZWdhsNve6m2++mZKSEj777DP3uhMnTrB06VKuu+469xxwgwYNIi0tjbfeeguHw+He9o033kBRFG6++Waf52DkyJEEBAR4vT+AFg3E//73v91azjU7duxg0KBB7iHcEolEIpFIJBKJRKIH5HBUicRPnnnmGVatWsWkSZOYOXMm6enpFBUVsXTpUr7//nt34gNvREdHM3v2bObNm8fVV1/N9ddfT3Z2Nq+//jqjRo3ijjvuAGDNmjU8+OCD/OxnP2PAgAHY7Xbef/99TCYTN910EwDz589n/fr1TJ06leTkZI4dO8brr79OUlISEydObLUO/uz3i1/8gk8++YT77ruPtWvXMmHCBBwOB1lZWXzyySd89dVXXHzxxfTr14/HHnuMp556iksuuYQbb7wRq9XKtm3bSEhIYMGCBYCzYeaNN97g6aefpl+/fsTExLiTPDTFYrHw3HPPcddddzFp0iRuv/12SkpKeOWVV+jduze//e1vz9Q2D8aPH09ERAQzZszgN7/5DYqi8P7773ttCBo5ciRLlixh1qxZjBo1im7dunHdddd5Pe5vfvMbjh8/zqOPPsq//vUvj8+GDh3K0KFDgTObEy4pKYlHHnmE559/HpvNxqhRo1i2bBnfffcdH374occwzdmzZ7N48WJyc3Pp3bs34GyEGzt2LHfddRf79u0jKiqK119/HYfDwbx58zy+6/nnn+f666/nqquu4rbbbiMjI4NXX32Ve+65h/T0dJ/1DAwM5KqrruKbb75h/vz5LT5fuXIlP//5z7n00kvZv38/b731FsHBwaxatYpRo0Zx7bXXtvvceMNms/Htt9/ywAMPnJPjSSQSiUQikUgkEsk5o1NyskokBiUvL09Mnz5dREdHC6vVKvr06SN+/etfi4aGBiGEEO+9954AxLZt27zu/+qrr4q0tDRhsVhEbGysuP/++0VZWZn780OH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4eHh7N27l2uvvZahQ4cyf/58rFYrBw4cYMOGDT7r789+mqZx/fXX8/333zNz5kzS09PZs2cPL730Evv37/foCDBv3jyefPJJxo8fz/z58wkICGDLli2sWbOGq666ipdfftk9N9hjjz0GQGxsbKv1W7RoEXfddRejRo1iwYIFlJSU8Morr7BhwwZ27dpF9+7d3ds6HA6mTJnCmDFj+Otf/8o333zDCy+8QN++fbn//vt9nodFixbRrVs3Zs2aRbdu3VizZg1z5syhsrKS559/HoDHHnuMiooKjh49yksvvQTgc46zX/3qVy0an1auXMmHH37oEVedOHHCZ91chIaGYrVaAdi1axchISGkp6d7bDN69Gj35xMnTmz1WLt27eKiiy5qMex39OjRvPXWW+zfv58hQ4awa9cuAC6++GKP7RISEkhKSnJ/3ho7duygsbGRiy66yC+Nvrj11ltJT0/n2WefZcWKFTz99NNERkby5ptvcsUVV/Dcc8/x4Ycf8vvf/55Ro0Zx6aWXeuw/cuRIli9fTmVlJWFhYWddH4lEch7orLSs/gCIf//73z63efTRR8WgQYM81t16661iypQp7r9Hjx4tfv3rX7v/djgcIiEhQSxYsOCc1lcikUgkEolEIjE606dPF6qqim3btrX4TNM0IYQQ7733ngDExIkThd1ud39+7NgxERAQIK666irhcDjc61999VUBiHfffVcIIcSuXbsEIJYuXdpqPV566SUBiOPHj7er/v7s9/777wtVVcV3333nsX7hwoUCEBs2bBBCCJGTkyNUVRU//elPPfQIcfpcCCHEoEGDxKRJk1p8z9q1awUg1q5dK4QQorGxUcTExIjBgweLuro693aff/65AMScOXPc62bMmCEAMX/+fI9jjhgxQowcOdL3SRBC1NbWtlj3q1/9SgQHB4v6+nr3uqlTp4rk5OQ2j+eNnJwcER4eLv7nf/7H4zoA/Free+89j3r06dOnxXfU1NQIQPzpT3/yWZeQkBDxy1/+ssX6FStWCECsXLlSCCHE888/LwCRn5/fYttRo0aJsWPH+vyed955RwBiz549Hutzc3NbaHIBiLlz57r/njt3rgDEzJkz3evsdrtISkoSiqKIZ5991r2+rKxMBAUFiRkzZrQ47kcffSQAsWXLFp91lkgk+kF3PeHay6ZNm1r8b8yUKVN45JFH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4MYbb8SJEydw5MgRqNVqv+uaTCbEx8fj0KFDuPnmm4X7b7vtNsyaNQvvvvuucN+yZcsQFxeHzZs3AwDGjx+Pm2++GZ9//jkA10zYycnJWLduHf7rv/4LAFBYWIjc3Fw0NTV5jQF6ww034J577rkm49ARQshwQGPCEUIIIYQQQojIvP3223A4HNi+fTu2bNkSsAMOAPr7+wEAUVFRl/Va119/vbCclJQEAJgxY8aA+1pbW72202g06Ovru6zXJISQkYg64QghhBBCCCFEZM6ePYvGxkbwPI/z588HXTcxMREcx6GzszPk8zqdzgH3KZVKYZnjuID38TzvtV1HRwdGjx4d8jUJIYS4UCccIYQQQgghhIiIzWbDL37xCzz44IN47bXX8Otf/3rAWWieVCoVpk6divLy8gGPtbS0eP197ty5q/IeLRYLzp49i9mzZ1+V5yOEkJGAOuEIIYQQQgghRET++Mc/wmw247333sPatWuRkZGBX/3qV0G3Wbx4MX788ccB93/99dfYsWMHzp49i9dffx3l5eWoqalBQ0PDFb3HwsJCqNVq5ObmXtHzEELISEKdcIQQQgghhBAiEgcOHMC7776Lzz//HDqdDjKZDJ9//jl++OEHfPTRRwG3e/zxx5GXlwez2ex1/913340333wTU6dOxaFDh/Dhhx+iuLhYmIjhcv3973/Hww8/jOjo6Ct6HkIIGUlodlRCCCGEEEIIGQYeeOAB3HDDDfjDH/4AwP/sqFdDW1sbMjMzcfToUUyYMOGqPjchhAxndCYcIYQQQgghhAwDb731FmJjYyP+OufPn8eHH35IHXCEEDJIdCYcIYQQQgghhAxDkToTjhBCyOWhM+EIIcPeJ598gjvvvDPir7Nz507MmjULPM9H/LUIIYQQQkJxjy9HCCFEHKgTjhAyrFksFqxbtw7r16+P+GvdddddUCqV2LJlS8RfixBCCCGEEEKItFAnHCFkWPvHP/4BnU6HBQsWXJPX++Uvf4n33nvvmrwWIYQQQgghhBDpoE44QogkXLhwAQaDAX/605+E+/Lz86FSqbB3796A223btg0///nPve677bbb8Mwzz3jdt2zZMvzyl78U/h4/fjz++7//G48++ihiY2ORnp6Ob775BhcuXMA999yD2NhYXH/99Th69KjX8/z85z/H0aNHcfbs2csPSwghhBBCCCFk2KFOOEKIJIwePRqffvopXnnlFRw9ehTd3d145JFHsGbNGixcuDDgdj/++CNuvPHGy3rNd955BwsWLEBpaSnuvvtuPPLII3j00Ufxi1/8AseOHcN1112HRx99FJ7z26SlpSEpKQk//PDDZb0mIYQQQgghhJDhiTrhCCGSsWTJEjzxxBN4+OGH8dvf/hYxMTHYsGFDwPVNJhPMZjNSUlIu+/WefPJJTJ48GS+//DK6urowd+5cPPDAA8jIyMDatWtRUVGBlpYWr+1SUlJQU1NzWa9JCCGEEEIIIWR4ok44QoikvP3223A4HNi+fTu2bNkCtVodcN3+/n4AQFRU1GW91vXXXy8sJyUlAQBmzJgx4L7W1lav7TQaDfr6+i7rNQkhhBBCCCGEDE/UCUcIkZSzZ8+isbERPM/j/PnzQddNTEwEx3Ho7OwM+bxOp3PAfUqlUljmOC7gfTzPe23X0dGB0aNHh3xNQgghhBBCCCEjB3XCEUIkw2az4Re/+AUefPBBvPbaa/j1r3894Cw0TyqVClOnTkV5efmAx3wvIT137txVeY8WiwVnz57F7Nmzr8rzEUIIIYQQQggZHqgTjhAiGX/84x9hNpvx3nvvYe3atcjIyMCvfvWroNssXrwYP/7444D7v/76a+zYsQNnz57F66+/jvLyctTU1KChoeGK3mNhYSHUajVyc3Ov6HkIIYQQQgghhAwv1AlHCJGEAwcO4N1338Xnn38OnU4HmUyGzz//HD/88AM++uijgNs9/vjjyMvLg9ls9rr/7rvvxptvvompU6fi0KFD+PDDD1FcXIzPP//8it7n3//+dzz88MOIjo6+ouchhBBCCCGEEDK8cIwxNtRvghBCIumBBx7ADTfcgD/84Q8AgNtuuw2zZs3Cu+++e1Vfp62tDZmZmTh69CgmTJhwVZ+bEEIIIYQQQoi00ZlwhJBh76233kJsbGzEX+f8+fP48MMPqQOOEEIIIYQQQsgAdCYcIWTEidSZcIQQQgghhBBCSCDUCUcIIYQQQgghhBBCSITR5aiEEEIIIYQQQgghhEQYdcIRQgghhBBCCCGEEBJh1AlHCCGEEEIIIYQQQkiEUSccIYQQQgghhBBCCCERRp1whBBCCCGEEEIIIYREGHXCEUIIIYQQQgghhBASYdQJRwghhBBCCCGEEEJIhFEnHCGEEEIIIYQQQgghEfb/A+0Zwhz3wfkeAAAAAElFTkSuQmCC", + "image/png": "iVBORw0KGgoAAAANSUhEUgAABGIAAAHWCAYAAAA8UC9bAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjMsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvZiW1igAAAAlwSFlzAAAPYQAAD2EBqD+naQAAvtpJREFUeJzs3XlcVPX+P/DXsA2MMAMIMpC4lYoL7kISabf4hjcrrW5Xu960smy1jJab3dLSbqaVLbfFLM3qZpr9yu61soxSM819yQWzXHBhMASGZYAB5vz+oDPMwCyfwzDMDLyej8d5lMM5c84Lkj7vz5zzeaskSZJAREREREREREReF+TrCyAiIiIiIiIi6ig4EUNERERERERE1EY4EUNERERERERE1EY4EUNERERERERE1EY4EUNERERERERE1EY4EUNERERERERE1EY4EUNERERERERE1EY4EUNERERERERE1EY4EUNERERERERE1EY4EUPkBRs2bIBKpcKGDRt8fSnUyj7++GPExsaioqKizc996NAhhISE4MCBA21+biIiInc4/mm/OP4hal2ciCHywBtvvIHly5f7+jJaZMWKFXj55Zd9fRkAAIvFgoULF6Jnz54IDw/HoEGD8NFHHwkfX1paiunTpyM+Ph6dOnXCn/70J+zevdvhvv/9738xbNgwhIeHo1u3bpgzZw7q6uqEzlNfX485c+ZgxowZiIyMFL6+1tK/f3+MGzcOs2fPbvNzExERyTj+aR0c/4jh+IfaJYmIWmzAgAHSmDFjmr1eX18vVVVVSfX19W1/UYLGjRsnde/e3deXIUmSJD322GMSAOmOO+6QlixZIo0bN04CIH300Uduj62vr5cyMjKkTp06SU899ZT02muvSf3795eioqKkX375xW7fL7/8UlKpVNKf/vQnacmSJdKMGTOkoKAg6a677hK6zs8++0xSqVTS6dOnW5SzNXz55ZcSAOnXX3/12TUQEVHHxvFP6+D4RxzHP9TecCKGPFZRUeHrS/AZZwORQOAvA5HTp09LoaGh0r333mt9zWKxSJdeeqnUtWtXqa6uzuXxq1atkgBIq1evtr527tw5KTo6Wrrpppvs9u3fv780ePBgqba21vraP//5T0mlUkmHDx92e63XXnutlJmZKRrNK8xmsxQTEyM9+eSTPr0OIqKOjuOfMb6+jBbh+KcBxz9EvsVHk8jOmTNnMG3aNCQlJUGtVqNnz564++67YTabAQDLly+HSqXCxo0bcc8996BLly7o2rWr9fg33ngDAwYMgFqtRlJSEu69916UlpbanePo0aO44YYboNfrER4ejq5du2LSpEkwGo3WfdavX4/MzExER0cjMjISffv2xeOPP+72+kWOq6mpwZw5c3DRRRdBrVYjOTkZjz76KGpqapq933/+8x+kpaVBo9EgJiYGo0ePxjfffAMA6NGjBw4ePIiNGzdCpVJBpVLhsssuA+D8GenVq1dj+PDhiIiIQFxcHP7+97/jzJkzdvvccsstiIyMxJkzZzBhwgRERkYiPj4eDz/8MOrr691+Dz7//HOMGzfO+jO88MILMW/ePLtjL7vsMnzxxRc4efKk9dp79Ojh9D1vueUW635Nt6eeesrtNbm73traWtxzzz3W11QqFe6++26cPn0aW7dudXn8J598goSEBFx//fXW1+Lj4/HXv/4Vn3/+ufXneujQIRw6dAjTp09HSEiIdd977rkHkiThk08+cXme6upqrFu3DllZWXavnzhxAiqVyuEt2k2/P0899RRUKhV++eUX/P3vf4dOp0N8fDyefPJJSJKEU6dOYfz48dBqtdDr9XjxxRebvWdoaCguu+wyfP755y6vl4iIxHH8Y4/jn8Zr4viH4x8ibwhxvwt1FGfPnkVaWpr1edOUlBScOXMGn3zyCUwmE8LCwqz73nPPPYiPj8fs2bNRWVkJoOGX7NNPP42srCzcfffdOHLkCN58803s2LEDP/74I0JDQ2E2m5GdnY2amhrMmDEDer0eZ86cwdq1a1FaWgqdToeDBw/i6quvxqBBgzB37lyo1Wr8+uuv+PHHH11ev8hxFosF1157LTZv3ozp06ejX79++Pnnn/HSSy/hl19+wZo1a6z7Pv3003jqqaeQkZGBuXPnIiwsDNu2bcN3332HK6+8Ei+//LL1Wdl//vOfAICEhASn17d8+XLceuutGDlyJObPn4/CwkK88sor+PHHH7Fnzx5ER0db962vr0d2djbS09Pxwgsv4Ntvv8WLL76ICy+8EHfffbfL78Py5csRGRmJnJwcREZG4rvvvsPs2bNRVlaG559/HgDwz3/+E0ajEadPn8ZLL70EAC6f+b3zzjub/Q943bp1+PDDD9GlSxfra0VFRS6vTRYVFQW1Wg0A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K0OGDMHu3bubDbK2bdsGjUZj/bRPfp+dO3fa7Xf27FmcPn3a7XlSUlIAAMePH3f49fLycrs/FxYWunw/Txw/fhxBQUHWbERE1DIc/3D84w7HPxz/tLU///nPeOaZZ3Ddddc5/HpNTQ0efvhhXHDBBejUqRPS09PtOpU9/vjjmDdvHjIyMnDhhRfigQcewNixY/Hpp59a93nllVcwduxYPPLII+jXrx/mzZuHYcOG4bXXXvN2PPoDJ2IIQMP/wCdMmID//e9/zX5RA+5vR8zKykJYWBheffVVu32XLl0Ko9GIcePGAQDKyspQV1dnd2xqaiqCgoKst0wWFxc3e3/5fxKObquUiRz317/+FWfOnMHbb7/dbN+qqiprB4QJEyYgKCgIc+fObfY/ONt8nTp1atae0pERI0agS5cuWLx4sV2Gr776CocPH7Z+fzwlf6pge41msxlvvPFGs307deokfKtuQUEB/vrXvyIzM9PaecCRljwjPX78eISGhtpdoyRJWLx4MS644AJkZGTYXUdeXh5qa2utr/3lL39BYWGh3f9cioqKsHr1alxzzTXWZ6IHDBiAlJQULFmyxK6V5ZtvvgmVSoW//OUvLr8Hw4cPR1hYmMO/HwCaDZI/++wza5bWtmvXLgwYMMC65gAREbUMxz8c/7jC8Q/HP/7ovvvuw9atW7Fy5Urs378fN954I8aOHYujR486PcZoNCI2Ntb6561btzbrCJadne22bTq1Hj6aRFbPPvssvvnmG4wZM8ba2rCgoACrV6/G5s2b7doLNhUfH49Zs2bh6aefxtixY3HttdfiyJEjeOONNzBy5EjrM7rfffcd7rvvPtx4443o06cP6urq8MEHHyA4OBg33HADAGDu3LnYtGkTxo0bh+7du+PcuXN444030LVrV5dt/ESOu/nmm/Hxxx/jrrvuwvfff49LLrkE9fX1yMvLw8cff4yvv/4aI0aMwEUXXYR//vOfmDdvHi699FJcf/31UKvV2LFjB5KSkjB//nwADf9zevPNN/HMM8/goosuQpcuXawL39kKDQ3FggULcOutt2LMmDG46aabrO0be/TogQcffLClPzY7GRkZiImJwdSpU3H//fdDpVLhgw8+cPg/w+HDh2PVqlXIycnByJEjERkZiWuuucbh+95///34/fff8eijj2LlypV2Xxs0aBAGDRoEAM1+oYvo2rUrZs6cieeffx61tbUYOXIk1qxZgx9++AEffvih3S2rs2bNwnvvvYfjx4+jR48eABoGIhdffDFuvfVWHDp0CHFxcXjjjTdQX1+Pp59+2u5czz//PK699lpceeWVmDRpEg4cOIDXXnsNt99+e7P2kU2Fh4fjyiuvxLfffou5c+c2+/q6deswefJkjB49Gr/88guWLFkCjUaDb775BiNHjrTeCuqp2tpabNy4Effcc0+rvB8RUUfH8Q/HPxz/OMfxj3/Jz8/Hu+++i/z8fOvjZw8//DDWrVuHd999F88++2yzYz7++GPs2LEDb731lvU1g8HQrO18QkKC8GN21Araqj0TBYaTJ09KU6ZMkeLj4yW1Wi316tVLuvfee6WamhpJkhrbNzpq8ShJDe0aU1JSpNDQUCkhIUG6++67pZKSEuvXjx07Jt12223ShRdeKIWHh0uxsbHSn/70J+nbb7+17pObmyuNHz9eSkpKksLCwqSkpCTppptukn755ReX1y56nNlslhYsWCANGDBAUqvVUkxMjDR8+HDp6aefloxGo92+y5Ytk4YOHWrdb8yYMdL69eutXzcYDNK4ceOkqKgoCYC1lWPT9o2yVatWWd8vNjZWmjx5snT69Gm7faZOnSp16tSpWT659Z87P/74o3TxxRdLERERUlJSkvToo49KX3/9dbPrqaiokP72t79J0dHREgCXrRzHjBnjtBWjbXvClqqvr5eeffZZqXv37lJYWJg0YMAA6T//+U+z/eTWlsePH7d7vbi4WJo2bZrUuXNnSaPRSGPGjHH63+hnn30mDRkyRFKr1VLXrl2lJ554QjKbzULX+emnn0oqlcquBaTcvvHZZ5+VsrKyJLVaLfXs2VP65JNPpMcff1zSaDTS008/LUlS48+waYtRZz/zMWPGSAMGDLB77auvvpIASEePHhW6ZiIico/jH45/HOH4pwHHP74DQPrss8+sf5Zbv3fq1MluCwkJkf761782O/67776TNBqN9N5779m9HhoaKq1YscLutddff13q0qWLV3JQcypJ8sJ9Y0RE7VB9fT369++Pv/71r5g3bx4A4MSJE+jZsyfeffdd3HLLLV6/hgkTJkClUllv/SUiIiLyJo5/fEfOPGHCBADAqlWrMHnyZBw8eLDZQseRkZHQ6/XWP2/cuBHjxo3DokWLMH36dLt9u3XrhpycHMycOdP62pw5c7BmzRrs27fPa3moEdeIISISFBwcjLlz5+L1119HRUVFm5//8OHDWLt2rXUQRERERORtHP/4j6FDh6K+vh7nzp3DRRddZLfZTsJs2LAB48aNw4IFC5pNwgDAqFGjkJuba/fa+vXrMWrUKK9noAZcI4aISIGJEydi4sSJPjl3v379mi32SERERORtHP+0nYqKCvz666/WPx8/fhx79+5FbGws+vTpg8mTJ2PKlCl48cUXMXToUPz+++/Izc3FoEGDMG7cOHz//fe4+uqr8cADD+CGG26wrvsSFhZmXbD3gQcewJgxY/Diiy9i3LhxWLlyJXbu3IklS5b4JHNHxDtiiIiIiIiIiPzAzp07MXToUAwdOhQAkJOTg6FDh2L27NkAgHfffRdTpkzBQw89hL59+2LChAnYsWMHunXrBgB47733YDKZMH/+fLv26ddff731HBkZGVixYgWWLFmCwYMH45NPPsGaNWswcODAtg/cQXGNGCIiIiIiIiJSbNOmTXj++eexa9cuFBQU2K1p48yGDRuQk5ODgwcPIjk5GU888USztYZef/11PP/88zAYDBg8eDD+/e9/Iy0tzXtB2hjviCEiIiIiIiIixSorKzF48GC8/vrrQvsfP34c48aNw5/+9Cfs3bsXM2fOxO23346vv/7auo/cYn7OnDnYvXs3Bg8ejOzsbJw7d85bMdoc74ghIiIiIiIiIo807fLkyD/+8Q988cUXOHDggPW1SZMmobS0FOvWrQMApKenY+TIkXjttdcAABaLBcnJyZgxYwYee+wxr2ZoK1ysV5DFYsHZs2cRFRUFlUrl68shImr3JElCeXk5kpKSEBTEGziJ2hrHPkREbcvTsU91dTXMZnOrXEfT3/tqtRpqtdrj9966dSuysrLsXsvOzra20jabzdi1axdmzZpl/XpQUBCysrKwdetWj8/vLzgRI+js2bNITk729WUQEXU4p06dQteuXX19GUQdDsc+RES+0ZKxT3V1NZIiIlGCeo/PHxkZ2axV+Zw5c/DUU095/N4GgwEJCQl2ryUkJKCsrAxVVVUoKSlBfX29w33y8vI8Pr+/4ESMoKioKADA1zfPRqewcB9fDRFR+1dprkb2B3Otv3+JqG3Jf/f2HjiKnsldFB+/88g5FJaYAABXjuiG0BBln+7W1lnwzc58AEBCjAYj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", "text/plain": [ "
" ] @@ -448,7 +449,7 @@ "outputs": [ { "data": { - "image/png": "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CYB08OBBn/d76623PO+XkpIiff7zn5fa29t91rn77ruluLi4cX7y9OyhKC8vl9avXy/pdDopOztbeuSRR6SPPvpo3PYMDw9L//7v/y4lJSVJAKT8/PyA77l161YJgN+H9xTyE0UQBOnHP/6xlJ+fL0VHR0tLly6V/vjHP45b7+6775YASM3NzT7PDw4OSl/84helefPmSbGxsdLWrVsDttG///3v0qpVq6SYmBgpNzdX+sEPfiA5nU5F2/m3v/1NYhhGam1t9TzX3NwsAZB+/OMfS9u2bZNiYmKkhQsXSu+88470ve99T4qNjZWefPJJSZJGY9jX1zfOy1/Mt27dKi1dutTnuX/+858SAKmpqUnRNlPIAoD097//3fP/999/XwIgxcXF+Tw0Go102223jXv9gQMHpNjYWOmNN97weT4qKkr685//7PPciy++KKWnp0+LB4Uy16D1E62f/EHrJze0fqJMJ5Otne6++27plltuGfd8bW2tlJWVJf30pz+Vzpw5I+3evVtavny59IUvfGEabShjYSRpGn4XS6FQKBQiEAQBpaWluO222/D0008DAC5duoSFCxfitddewz333DPt23DrrbeCYRjP5RqU2YUcW3mWrrfeeguf//znUVtbO+7m0/Hx8T73MTl8+DB27NiBX/ziF3jggQd81p0/fz4efvhhPPTQQ57nnnjiCbz77rs4c+bMtPlQKBQKhULrJ8p0MpnaCQDuuecemEymcTOs/sd//Afsdjvefvttz3OffPIJrrrqKnR2dvrMVkyZPujlqBQKhTKH4TgOTz31FB588EF85zvfQXx8fEQ/v76+Hu+//z5Onz4d0c+lzByrV6+GIAjo7e3FVVddFXC9Q4cO4cYbb8Szzz477gAc4L6vyf79+30Owu3duxcbNmyYjs2mUCgUCsUDrZ8okURp7RQKq9UKjcb3EJC/+0dSphd6EI5CoVDmOLfffjtuv/32GfnskpKScTfmppDP8PAwzp8/7/l/c3MzTp8+jZSUFBQWFuLzn/88du7cieeeew6rV69GX18f9u/fjxUrVmDHjh04ePAgbrzxRnzzm9/Ev/3bv3nu8xYdHe2ZnOGb3/wmtm7diueeew47duzAX/7yFxw/fhyvvvrqjDhTKBQKZW5B6yfKVDLZ2gkA6urq4HQ6MTg4CIvF4jlIK09Mc9NNN+H+++/H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aah+mr1Q/UQQxJlAB+EIgvDj+eefx9atW8/1ZpwRr7zyCn7729+e680AADAMg1/+8pdYsGABEhIScN555+Gf//yn6PVtNhvuvvtuZGZmIikpCZdddhkOHz4cctl//etfuOCCC5CQkIDCwkI8+uij8Hg8oj7H6/Xi0UcfxTe+8Q0kJyeL3r7pYunSpdiyZQseeeSRuH82QRAEQUwXVD9ND1Q/iYPqJ4KQLwqWZdlzvREEQUiH5cuXIyMjI+gXW4Zh4HK5oNVqoVRK8/j91Vdfjbq6Opw6depcbwoefvhh/OIXv8Bdd92FtWvX4t1338X777+Pf/7zn7jpppsirsswDC6++GJ8+umn+N73voeMjAw8//zz6OjowKFDh7BkyRJ+2f/85z/YsmULLr30Utx88804duwYnnvuOdx999144YUXom7nO++8g89//vPo6OhAfn7+WXufCf/5z39w1VVX4fjx41i0aNE52QaCIAiCOBuofpoeqH4SD9VPBCFTWIIgghgdHT3Xm3DOWLZsGbtx48ZzvRlnxJYtW9iioqJzvRlsZ2cnq9Fo2Pvuu49/jWEY9uKLL2YLCgpYj8cTcf3XXnuNBcC+8cYb/Gv9/f1sSkoKe/PNN/stu3TpUvb8889n3W43/9qPfvQjVqFQsI2NjVG39ZprrmEvuugisWozgsvlYlNTU9mf/OQn53Q7CIIgiLOD6qeN53ozzgiqn3xQ/UQQRDyQ5s8xBDGNdHV14c4770ReXh50Oh0WLFiAe+65By6XCwCwdetWKBQKfPTRR7j33nuRlZWFgoICfv3nn38ey5Ytg06nQ15eHu677z7YbDa/z2hpacH111+PnJwcJCQkoKCgADfddBPsdju/zIcffoiLLroIKSkpSE5ORklJCX74wx9G3X4x6zmdTjz66KNYvHgxdDod5s2bh+9///twOp1B7/ePf/wDZWVlSExMRGpqKi655BLs2LEDADB//nzU19fjo48+gkKhgEKhwKWXXgog/D1N3njjDaxevRp6vR4ZGRn40pe+hK6uLr9lbr/9diQnJ6OrqwvXXXcdkpOTkZmZie9+97vwer1R98G7776LLVu28DFctGgRfvrTn/qte+mll+L9999HW1sbv+3z588P+5633347v1zg47HHHou6TdG21+1249577+VfUygUuOeee9DZ2YmqqqqI67/55pvIzs7G5z//ef61zMxM3HDDDXj33Xf5uDY0NKChoQF333031Go1v+y9994LlmXx5ptvRvycyclJbN++HZs2bfJ7/dSpU1AoFCEvqwncP4899hgUCgWam5vxpS99CSaTCZmZmfjJT34ClmXR0dGBa6+9FkajETk5OfjVr34V9J4ajQaXXnop3n333YjbSxAEQcQPqp/8ofppapuofqL6iSCIM0cdfRGCkC/d3d0oKyvj7w9hNpvR1dWFN998E+Pj49Bqtfyy9957LzIzM/HII49gbGwMgC9BPv7449i0aRPuueceNDU14YUXXsCBAwdQUVEBjUYDl8uFzZs3w+l04hvf+AZycnLQ1dWF9957DzabDSaTCfX19bj66qtx3nnn4YknnoBOp8Px48dRUVERcfvFrMcwDK655hp88sknuPvuu1FaWopjx47hN7/5DZqbm/HOO+/wyz7++ON47LHHsGHDBjzxxBPQarWorq7G7t27ccUVV+C3v/0tf2+LH/3oRwCA7OzssNu3detW3HHHHVi7di2eeuop9PX14Xe/+x0qKipQW1uLlJQUflmv14vNmzejvLwc//M//4OdO3fiV7/6FRYtWoR77rkn4n7YunUrkpOT8eCDDyI5ORm7d+/GI488gpGRETzzzDMAgB/96Eew2+3o7OzEb37zGwCIeI+Or33ta0HF0/bt2/Hyyy8jKyuLf21wcDDitnEYDAbodDoAQG1tLZKSklBaWuq3TFlZGf/3iy66KOx71dbW4oILLgi6bKWsrAx/+tOf0NzcjBUrVqC2thYAsGbNGr/l8vLyUFBQwP89HIcOHYLL5cIFF1wgyjESN954I0pLS/GLX/wC77//Pn72s58hLS0Nf/zjH/GZz3wGTz/9NF5++WV897vfxdq1a3HJJZf4rb969Wq8++67GBkZgdFoPOvtIQiCIM4cqp+ofgoH1U9UPxEEcZac2xPxCGJmufXWW1mlUskeOHAg6G8Mw7Asy7IvvfQSC4C96KKL/E5z7+/vZ7VaLXvFFVewXq+Xf/3ZZ59lAbB//etfWZZl2dra2qBT3wP5zW9+wwJgBwYGYtp+Mev9/e9/Z5VKJfvxxx/7vf7iiy+yANiKigqWZVm2paWFVSqV7Oc+9zk/H5ad2hcsG/5yij179rAA2D179rAs6zsFPisri12+fDk7MTHBL/fee++xANhHHnmE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0kt48sknRb1Pbm4uXnzxRaxZswZOpxN//vOfcemll6K6uhoXXHDBTCoQxKyH6ieqn6h+Cg/VT8S54Ezqp9dffx0HDhzAH//4R/613t5eZGdn+y2XnZ1N99SNJ/GahpUgzhVtbW3srbfeymZmZrI6nY5duHAhe99997FOp5NlWZZ96aWXWADsgQMHQq7/7LPPsmazmdVoNGx2djZ7zz33sFarlf/7yZMn2a985SvsokWL2ISEBDYtLY297LLL2J07d/LL7Nq1i7322mvZvLw8VqvVsnl5eezNN9/MNjc3R9x2seu5XC726aefZpctW8bqdDo2NTWVXb16Nfv444+zdrvdb9m//vWv7KpVq/jlNm7cyH744Yf833t7e9ktW7awBoOBBcBu3LiRZVmW3bNnDwuA3bNnj9/7vfbaa/z7paWlsbfccgvb2dnpt8xtt93GJiUlBflx07NHo6Kigl23bh2r1+vZvLw89vvf/z77wQcfBG3P6Ogo+//9f/8fm5KSwgJgi4qKwr7nxo0bWQAhH8Ip5M8Ur9fLPvnkk2xRURGr1WrZZcuWsf/4xz+ClrvttttYAGxra6vf68PDw+ydd97Jpqens4mJiezGjRvDttG3336bXblyJavT6diCggL2xz/+MetyuURt51tvvcUqFAq2vb2df621tZUFwD755JPspk2bWJ1Oxy5YsIB988032R/+8IdsYmIi+/jjj7MsOxXDgYGBIK9QMd+4cSO7bNkyv9f+85//sADYlpYWUdtMyAsA7Ntvv83//7333mMBsElJSX4PtVrN3nDDDUHr33bbbey1114r6rMuueQS9ktf+tI0bTlBzG2ofqL6KRRUP/mg+omYac62ftq9ezebmJjI/u1vf/N7XaPRsK+88orfa8899xyblZU1Ix5EMAqWnYHzYgmCIAhZ4PV6sXTpUtxwww346U9/CgA4deoUFixYgJdeegm33377jG/DddddB4VCwV+uQcwuuNhyM5y+9tpruOWWW1BfXx908+nk5OSge8DdfvvtsNlsomYI+973vodPPvmELqkgCIIgZhSqn4iZ5mzqp48++ghbtmzBr3/9a9x9991+yxYWFuLBBx/EAw88wL/26KOP4p133sGnn346Yz7EFHQ5KkEQxBxGpVLhiSeewD333IOHHnoIycnJcf38xsZGvPfeezhy5EhcP5c4d6xa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b94s/Z6TkyMCAwPFq6++KsrLy0VWVpbTr8mOiooSX375pTh16pS46667xvTXZA82PtnHI0ev14vi4mJRXFwsAIjXXntNFBcXS98OuHnzZrFmzRqpfU1NjQgNDRV//vOfRXl5uXj77beFXC4X+/btk9q4s38Zax577DERGRkpDh06ZLef7urqktpwXBN5D+sn72L95B2sn7yH9ZN3sH6isYKTcH7E+lXvzn4OHjwotZs8ebLIysqyW/ett94SycnJQqFQiAULFoj8/Hy7v3d3d4vf/e53Ijo6WoSGhoq7777brlgaiz788EOnfW3btzfffLO4//777db773//K1JSUoRCoRCzZs0S33zzjd3fzWazeO6550RsbKxQKpViyZIlQq1WeyGR7xpofLKPR87Bgwedjmlr/95///3i5ptvdlgnPT1dKBQKcc0114gPP/zQ4X4H27+MNa7207Z9x3FN5D2sn7yL9ZP3sH7yDtZP3sH6icYKmRBCjPzn64iIiIiIiIiIiMiK14QjIiIiIiIiIiLyME7CEREREREREREReRgn4YiIiIiIiIiIiDyMk3BEREREREREREQexkk4IiIiIiIiIiIiD+MkHBERERERERERkYdxEo6IiIiIiIiIiMjDOAlHRERERERERETkYZyEIyKf9O9//xu33nqrxx9n3759SE9Ph9ls9vhjEREREXkS6yciIt/GSTgi8jk9PT147rnnkJWV5fHH+sUvfoGgoCDs2LHD449FRERE5Cmsn4iIfB8n4YjI53z++eeIiIjA4sWLvfJ4DzzwAN58802vPBYRERGRJ7B+IiLyfZyEIyKPaWlpgUqlwt/+9jdpWW5uLhQKBbKzs12ut3PnTtxxxx12y2655RZs2LDBbtny5cvxwAMPSL9PmTIFL7zwAtauXYuwsDBMnjwZX331FVpaWnDXXXchLCwMc+fORVFRkd393HHHHSgqKkJ1dfXwwxIRERGNANZPRESjFyfhiMhjJk6ciA8++ABbt25FUVER9Ho91qxZg/Xr12PJkiUu1zt27BhuuOGGYT3m66+/jsWLF6O4uBi333471qxZg7Vr1+K+++7DiRMnMG3aNKxduxZCCGmd5ORkxMbG4ujRo8N6TCIiIqKRwvqJiGj04iQcEXnUbbfdhoceegj33nsvHn30UYwbNw7btm1z2V6r1UKn0yE+Pn7Yj/fII49gxowZ2LJlC9rb2zF//nzcc889SElJwaZNm1BeXo7m5ma79eLj41FbWzusxyQiIiIaSayfiIhGJ07CEZHHvfrqqzAajdi1axd27NgBpVLpsm13dzcAIDg4eFiPNXfuXOl2bGwsAGDOnDkOyy5evGi3XkhICLq6uob1mEREREQjjfUTEdHow0k4IvK46upqNDY2wmw249y5cwO2jYmJgUwmg0ajGfR+TSaTw7KgoCDptkwmc7nMbDbbrdfW1oaJEycO+phERERE3sD6iYho9OEkHBF5lMFgwH333YdVq1bhr3/9K3772986vItqS6FQYObMmSgrK3P4W/9TIGpqakbkOfb09KC6uhrXXXfdiNwfERER0ZVg/URENDpxEo6IPOqZZ56BTqfDm2++iU2bNiElJQW/+c1vBlxn2bJlOHbsmMPyL7/8Ert370Z1dTVefPFFlJWVoba2FufPn7+i55ifnw+lUonMzMwruh8iIiKikcD6iYhodOIkHBF5zKFDh/DGG2/g448/RkREBAICAvDxxx/j6NGjePfdd12ut27dOuzduxc6nc5u+e23346XX34ZM2fOxJEjR/DOO++gsLAQH3/88RU9z08//RT33nsvQkNDr+h+iIiIiK4U6yciotFLJmy/Z5qIyEfcc889uP766/H0008DAG655Rakp6fjjTfeGNHHaW1tRWpqKoqKijB16tQRvW8iIiIib2L9RETk2/hJOCLySa+88grCwsI8/jjnzp3DO++8wwKSiIiI/B7rJyIi38ZPwhGRX/DUO7lEREREoxXrJyIi38JJOCIiIiIiIiIiIg/j6ahEREREREREREQexkk4IiIiIiIiIiIiD+MkHBERERERERERkYdxEo6IiIiIiIiIiMjDOAlHRERERERERETkYZyEIyIiIiIiIiIi8jBOwhEREREREREREXkYJ+GIiIiIiIiIiIg87P8BKzAW7Gun8BUAAAAASUVORK5CYII=", + "image/png": "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7P0R97V+f5SydetWXLx4EatWrcKDDz6IG264Abm5uQ6nUModhf/uu+/wyCOPYM6cObjzzjsdHpOSkiJpW7t2reWcrKwsmEwmHD9+3O61du/ebfm9K7KysrB///42Cc7u3bsRFRVl+ZZMfJ29e/faHXf+/HkUFxe7vY5erwcAnD592uHvq6qq7H4uLS11+XqecPr0aWi1WoubP3Ldddfh6aefxs033+zw9/X19XjkkUfQrVs3REdHIycnB1u3brX8/m9/+xueeuopjBo1Cn369MGDDz6IcePG2d3gX3nlFYwbNw5/+ctfMGDAADz11FMYOnQoXn311Y7WI4QQAMyfmD+5h/kT8yepeJo7RUdH4/XXX8fMmTORnJzs8DV27dqFnj174oEHHkCvXr0wevRo/OlPf0J+fn5HKBEncBAlSNBqtZg4cSL+85//tAmSgPspeLm5uQgLC8PSpUvtjn377bdhNBoxfvx4AEBlZSWamprszs3IyIBWq7VMEywvL2/z+mKAdjSVUETKebfddhvOnTuHN998s82xtbW1lpXyJ06cCK1Wi0WLFrW5udj6RUdH49KlS07bJDJ8+HB07doVy5cvt3P48ssvcfz4ccv74yniaLxtGxsaGvDaa6+1OTY6Olry9NSSkhLcdtttGD16tGWFekcoeaZ3woQJ6NSpk10bBUHA8uXL0a1bN4waNcquHQUFBWhsbLTs+/3vf4/S0lK7D9dlZWVYv349brzxRsszvIMGDYJer8eKFSvQ3NxsOfb111+HRqPB73//e5fvwbBhwxAWFuawfwBok6B+8sknFpf2Zt++fRg0aJDlGflA5P7778euXbvw4Ycf4tChQ7j11lsxbtw4nDx50uk5RqMRCQkJlp937drVpupBXl4edu3a1WHtJoQQW5g/MX9yBfMn5k/tiZLcqTUjR45EUVERvvjiCwiCgNLSUnz00Ue4/vrrO7DlpDV8nCeI+Mc//oGvv/4aY8eOtZSvKykpwfr16/H999/blZBrTVJSEubNm4eFCxdi3LhxuOmmm3DixAm89tprGDFihOWZ0m+++Qb3338/br31VvTr1w9NTU147733EBISgt/97ncAgEWLFmH79u0YP348evTogQsXLuC1115DWlqay1JtUs774x//iHXr1uHee+/Ft99+i6uuugrNzc0oKCjAunXr8NVXX2H48OG4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LGA/WbD2/tp6z609jyExaJo0yImKigoMGDAAd999N/72t79JPr+hoQFBQUF46KGH8N///tfusSdPnrS4t9n8PnNCCJETzJ9aF+ZPzJ/sPY/c8ydXc6effvoJSUlJePLJJ6FWq7FlyxZMnToVERERuOGGG4zHTJ48GYsWLcINN9yAtWvXYsKECTh06JDowWDiOpyJ4iXExMQgPDwcR48eder8zp07A2j8MmNObW0tzp49a3zcQP/+/fH0009j9+7d+PHHH3HhwgWsWLHC+LiPjw/GjBmD1157DcePH8e///1v7Nixwzhd1BaOzuvevTuKioowZswYqyP8hl86unfvDr1ej+PHj9u9ntiRbFuvj2Ff09fHWXbt2oXLly9jzZo1ePjhh3HDDTcgLS3N6hRKqaPwP/74Ix577DHMmTMHU6ZMsXpMXFycqG39+vXGcwYOHIjKykqcOHHC4rkyMjKMj9tj4MCBOHToULMEJyMjA8HBwcZfyQzPc+DAAYvjLl68iLy8PIfX0Wg0AICzZ89afbysrMzi74KCArvP5wpnz56Fj4+P0U2O/PWvf8ULL7yAW265xerjNTU1eOyxx3DFFVcgJCQEqamp2LVrl/HxkJAQLF++HPfeey9iY2PtXqtjx46IjY01bk2nkBNCSGvB/In5kyOYPzF/EourudP//d//4fnnn8fw4cPRvXt3PPzww7j++uvx+eefG4958803cf311+Pxxx9H79698fzzz2Pw4MF4++23W1uPmMFM1Uvw8fHBhAkT8L///a9ZkAQcT8FLS0uDv78/li5danHsBx98AJ1Oh/HjxwMASktLUV9fb3Fu//794ePjY5wmWFRU1Oz5DQHa2lRCA2LOu/3223HhwgW89957zY6tqqoyrpQ/YcIE+Pj44Lnnnmv24WLuFxISgpKSEpttMjB06FB07NgRK1assHD45ptvcOLECePr4yqG0XjzNtbW1uKdd95pdmxISIjo6an5+fm4/fbbMWLECOMK9dZw5p7em2++Ge3atbNooyAIWLFiBa644goMHz7coh05OTmoq6sz7vv73/+OgoICiw+IwsJCbNy4ETfeeKPxHt6+fftCo9Fg5cqVaGhoMB67fPlyqFQq/P3vf7f7GgwZMgT+/v5W+weAZgnqpk2bjC4tzcGDB9G3b1/jPfKeyKxZs7Bv3z6sW7cOhw8fxm23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kV97IiIj950A9p882HeSx/6TsV9/ij1eidJHMjMzcd5553m39PR0byfgwIEDeOuttzBgwICQv8NsNmPSpEmoqKjwPuZ2u1FRUYEpU6YAACZNmoTU1NQe+9TU1KC2tta7T18LlF2NKVOm9MgFAFu3bvXmGj58OGw2W499mpqasHPnzrhl703kNexND7nVCpddzb9nvCiKgkWLFuGVV17B22+/jeHDh4c9xsivPRGRkftOAPtPHuw7yWP/ydivP/WB+M5ra1zt7e3K5ZdfrgwePFipqqpSjh8/7t3a2tq8+/3oRz9S1qxZ4/37xo0bFYvFojzzzDPKvn37lBtvvFHJyclRHA6Hd59f//rXytChQ5W3335b2bVrlzJlyhRlypQpfZovnO+++07Zs2eP8tprrykAlI0bNyp79uxRjh8/7t3n2muvVe68807v3z/88EMlJSVFefDBB5X9+/crK1euDLhcWU5OjvKvf/1L+fTTT5UrrrhCc8uVhXsN9ZpbURSlublZ2bNnj7Jnzx4FgPLwww8re/bs8a6qcOeddyrXXnutd3/PEn233Xabsn//fmXt2rUBl+gL1ya04Oabb1ays7OVd999t0d7d7lc3n30/NoTEUXK6H0nRTFu/8nIfSdFYf+J/SfSGg6ixIlnabpA2zvvvOPdb9iwYcrKlSt7HLtmzRpl6NChitlsVkpKSpT//Oc/PX7e0tKi/OY3v1Fyc3OVjIwM5cc//nGPN1ctePrppwNm98960UUXKb/4xS96HPfPf/5TGTlypGI2m5WxY8cqr732Wo+fu91uZfny5YrValUsFosyY8YMpaampg8SyQn1Guo59zvvvBPwdffk/cUvfqFcdNFFZxxTXFysmM1mZcSIEcrTTz99xu8N1ya0IFh798+j59eeiChSRu87KYqx+09G7TspCvtP7D+R1pgURVGif30LEREREREREZG+cE4UIiIiIiIiIiIBHEQhIiIiIiIiIhLAQRQiIiIiIiIiIgEcRCEiIiIiIiIiEsBBFCIiIiIiIiIiARxEISIiIiIiIiISwEEUIiIiIiIiIiIBHEQhIiIiIiIiIhLAQRQiDfj73/+OSy65JObPU15ejuLiYrjd7pg/FxEREVEssf9ERPHAQRSiOGttbcXy5cuxcuXKmD/XrFmzkJqaig0bNsT8uYiIiIhihf0nIooXDqIQxdlLL72ErKwsXHjhhX3yfNdddx0ee+yxPnkuIiIiolhg/4mI4oWDKERR8u2338Jms+G+++7zPrZ9+3aYzWZUVFQEPW7jxo247LLLejx28cUXY/HixT0emzt3Lq677jrv38855xzce++9WLBgAfr3749hw4Zhy5Yt+Pbbb3HFFVegf//+KCoqwq5du3r8nssuuwy7du3CwYMH1YclIiIiigL2n4go0XAQhShKBg0ahPXr1+Ouu+7Crl270NzcjGuvvRaLFi3CjBkzgh73wQcf4IILLlD1nH/5y19w4YUXYs+ePZgzZw6uvfZaLFiwAD//+c/x8ccf49xzz8WCBQugKIr3mKFDh8JqteL9999X9ZxERERE0cL+ExElGg6iEEXR7NmzsXDhQlxzzTX49a9/jX79+mHVqlVB929oaEBjYyMKCgpUP99NN92EwsJCrFixAk1NTZg8eTKuvPJKjBw5EnfccQf2798Pp9PZ47iCggJ8/fXXqp6TiIiIKJrYfyKiRMJBFKIoe/DBB9HZ2YlNmzZhw4YNsFgsQfdtaWkBAKSlpal6rqKiIu+frVYrAGD8+PFnPHbixIkex6Wnp8Plcql6TiIiIqJoY/+JiBIFB1GIouzgwYM4duwY3G43Dh8+HHLfAQMGwGQyob6+Puzv7erqOuOx1NRU759NJlPQx3ovyVdXV4dBgwaFfU4iIiKivsD+ExElCg6iEEVRe3s7fv7zn2P+/Pm455578Ktf/eqMbzH8mc1mjBkzBvv27TvjZ70vIT106FBUzrG1tRUHDx7E+eefH5XfR0RERBQJ9p+IKJFwEIUoiv74xz+isbERjz32GO644w6MHDkSv/zlL0MeM3PmTHzwwQdnPP6vf/0LL7/8Mg4ePIg//elP2LdvH77++mt88803EZ3jf/7zH1gsFkyZMiWi30NEREQUDew/EVEi4SAKUZS8++67eOSRR/D8888jKysLSUlJeP755/H+++/jiSeeCHrcDTfcgNdffx2NjY09Hp8zZw7uv/9+jBkzBtu2bcNf//pXVFZW4vnnn4/oPP/xj3/gmmuuQUZGRkS/h4iIiChS7D8RUaIxKf5rdxFRXFx55ZWYOHEili5dCgC4+OKLUVxcjEceeSSqz3Py5EmMGjUKu3btwvDhw6P6u4mIiIj6EvtPRBQPvBKFSAMeeOAB9O/fP+bPc/jwYfz1r39lB4CIiIgSHvtPRBQPvBKFSINi9U0KERERkV6x/0REfYGDKEREREREREREAng7DxERERERERGRAA6iEBEREREREREJ4CAKEREREREREZEADqIQEREREREREQngIAoRERERERERkQAOohARERERERERCeAgChERERERERGRAA6iEBEREREREREJ+P8qdEy1U6gudgAAAABJRU5ErkJggg==", "text/plain": [ "
" ] @@ -500,26 +501,31 @@ "\n", "# Ambient temperature for the heat sink model\n", "temperature = 300\n", - "temperature_electrodes = 350\n", + "temperature_electrodes = 300\n", + "h = 200e-12\n", "\n", "# cathode\n", "bc3 = td.HeatBoundarySpec(\n", - " condition=td.TemperatureBC(temperature=temperature_electrodes),\n", + " # condition=td.TemperatureBC(temperature=temperature_electrodes),\n", + " condition=td.ConvectionBC(ambient_temperature=temperature_electrodes, transfer_coeff=h),\n", " placement=td.StructureStructureInterface(structures=[\"cathode\", \"pad\"]),\n", ")\n", "# anode\n", "bc4 = td.HeatBoundarySpec(\n", - " condition=td.TemperatureBC(temperature=temperature_electrodes),\n", + " # condition=td.TemperatureBC(temperature=temperature_electrodes),\n", + " condition=td.ConvectionBC(ambient_temperature=temperature_electrodes, transfer_coeff=h),\n", " placement=td.StructureStructureInterface(structures=[\"anode\", \"pad\"]),\n", ")\n", "\n", "bc3a = td.HeatBoundarySpec(\n", - " condition=td.TemperatureBC(temperature=temperature_electrodes),\n", + " # condition=td.TemperatureBC(temperature=temperature_electrodes),\n", + " condition=td.ConvectionBC(ambient_temperature=temperature_electrodes, transfer_coeff=h),\n", " placement=td.StructureStructureInterface(structures=[\"cathode\", \"soxbox\"]),\n", ")\n", "# anode\n", "bc4a = td.HeatBoundarySpec(\n", - " condition=td.TemperatureBC(temperature=temperature_electrodes),\n", + " # condition=td.TemperatureBC(temperature=temperature_electrodes),\n", + " condition=td.ConvectionBC(ambient_temperature=temperature_electrodes, transfer_coeff=h),\n", " placement=td.StructureStructureInterface(structures=[\"anode\", \"soxbox\"]),\n", ")\n", "# box\n", @@ -590,12 +596,12 @@ "metadata": {}, "outputs": [], "source": [ - "charge_tolerance = td.ChargeToleranceSpec(rel_tol=1e-4, abs_tol=1e16, max_iters=400, ramp_up_iters=5)\n", + "charge_tolerance = td.ChargeToleranceSpec(rel_tol=1e-4, abs_tol=1e16, max_iters=400, ramp_up_iters=1)\n", "analysis_type_iso = td.IsothermalSteadyChargeDCAnalysis(tolerance_settings=charge_tolerance,\n", - " convergence_dv=0.1,\n", + " convergence_dv=2,\n", " fermi_dirac=False,\n", " temperature=300)\n", - "analysis_type = td.SteadyChargeDCAnalysis(tolerance_settings=charge_tolerance,convergence_dv=0.1,fermi_dirac=False)" + "analysis_type = td.SteadyChargeDCAnalysis(tolerance_settings=charge_tolerance,convergence_dv=2,fermi_dirac=False)" ] }, { @@ -694,8 +700,8 @@ }, "outputs": [], "source": [ - "sim_center = (0, -0.545, 0)\n", - "sim_size = (4.8, 3.5, 0)\n", + "sim_center = (0, offset_soxbox/2, 0)\n", + "sim_size = (4.8, 5, 0)\n", "\n", "def createSim(structures, bcs, analysis_t):\n", " sim = td.HeatChargeSimulation(\n", @@ -725,7 +731,7 @@ "outputs": [ { "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAA94AAAE7CAYAAAAre1kzAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8fJSN1AAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOydd5wURfr/351mdllycAERUEygIhkBPaKgIkEM6BcPRMVTT09FD8UAgnciesYT5XfeGU9PDCd6BlCJKohERUFAwURactgw06F+f8xO78zuzO6EXXZ6qffrNdA709NTn+fprqequ+opRQghkEgkEolEIpFIJBKJRFIlqNVdAIlEIpFIJBKJRCKRSGoysuMtkUgkEolEIpFIJBJJFSI73hKJRCKRSCQSiUQikVQhsuMtkUgkEolEIpFIJBJJFSI73hKJRCKRSCQSiUQikVQhsuMtkUgkEolEIpFIJBJJFSI73hKJRCKRSCQSiUQikVQhsuMtkUgkEolEIpFIJBJJFSI73hKJRCKRSCQSiUQikVQhsuMtkZRi4cKFKIrCwoULq7sokkrmjTfeoGHDhhw+fPiI//a6devQdZ1vv/32iP+2RCKRSCpGxv+ai4z/kkxAdrwlRy3PPPMML774YnUXIyVee+01nnjiieouBgCO4/Dwww9z/PHHk5WVRfv27fnPf/6T8Pf379/PddddR5MmTcjJyaFv376sWrUq5r7vvfcenTp1Iisri5YtWzJ58mQsy0rod2zbZvLkydx8883Url074fJVFu3atWPw4MFMmjTpiP+2RCKRSEqQ8b9ykPE/MWT8l7gIieQo5bTTThO9e/cu875t26KwsFDYtn3kC5UggwcPFq1ataruYgghhLjrrrsEIMaNGyf+8Y9/iMGDBwtA/Oc//6nwu7Zti549e4qcnBxx//33i6efflq0a9dO1KlTR2zcuDFq3w8//FAoiiL69u0r/vGPf4ibb75ZqKoqrr/++oTK+c477whFUcRvv/2Wks7K4MMPPxSA+OGHH6qtDBKJRHK0I+N/5SDjf+LI+C8RQgjZ8T7KOXz4cHUXodqIF3i9QKYE3t9++00YhiH++Mc/uu85jiPOOecc0aJFC2FZVrnfnzVrlgDEm2++6b6Xl5cn6tevL6644oqofdu1ayfOPPNMYZqm+94999wjFEUR69evr7CsQ4cOFWeffXai0qqEYDAoGjRoIO67775qLYdEIpHI+N+7uouREjL+h5DxX+JFZMe7BvHbb7+Jq6++WjRr1kz4fD7RunVrcf3114tAICCEEOKFF14QgFi4cKG44YYbRJMmTUT9+vXd78+YMUO0a9dO+Hw+0axZM3HjjTeKffv2Rf3Gxo0bxYgRI0Rubq7w+/3i2GOPFSNHjhT79+939/n4449Fr169RL169UROTo44+eSTxcSJEyssfyLfKyoqEpMmTRJt2rQRPp9PtGjRQvz5z38WRUVFZY73yiuviK5du4rs7GxRv359cc4554i5c+cKIYRo1aqVAKJe4SC8YMECAYgFCxZEHe+NN94QnTp1EllZWaJRo0Zi1KhRZe6ejhkzRuTk5IjffvtNDBs2TOTk5IjGjRuL22+/vcIgJIQQs2fPFhdccIHrwxNOOEFMnTo16ru9e/cuU/bygvCYMWPK7B9+TZ48ucIylceMGTMEIL777ruo91977TUBiM8++6zc71966aUiNze3zNOF6667TtSqVcv163fffScAMWPGjKj9tm7dKgDxwAMPlPs7hYWFwufzifvvvz/q/S1btghAvPDCC2W+U9o+kydPFoDYsGGDGDVqlKhbt65o3LixuPfee4XjOOKXX34RQ4cOFXXq1BG5ubnib3/7W8yyXHTRRaJ9+/blllcikUiSQcb/aGT8LymTjP8y/ksyB70yh61Lqo9t27bRrVs3d77MqaeeytatW3nrrbcoKCjA5/O5+9544400adKESZMmkZ+fD8D999/PlClTGDBgADfccAMbNmzg2WefZfny5XzxxRcYhkEwGGTQoEEEAgFuvvlmmjZtytatW3n//ffZv38/9erV47vvvuPCCy+kffv2TJ06Fb/fzw8//MAXX3xRbvkT+Z7jOAwdOpTPP/+c6667jrZt27J27Voef/xxNm7cyOzZs919p0yZwv3330/Pnj2ZOnUqPp+PZcuWMX/+fAYOHMgTTzzhzvW55557AMjNzY1bvhdffJGxY8fStWtXpk2bxs6dO3nyySf54osvWL16NfXr13f3tW2bQYMG0b17d/72t7/x6aef8uijj9KmTRtuuOGGcu3w4osvUrt2bcaPH0/t2rWZP38+kyZN4uDBgzzyyCMA3HPPPRw4cIDffvuNxx9/HKDcOUt/+MMfGDBgQNR7c+bM4dVXX+WYY45x39u9e3e5ZQtTp04d/H4/AKtXryYnJ4e2bdtG7dOtWzf387PPPjvusVavXk2nTp1Q1eh0E926deMf//gHGzdu5IwzzmD16tUAdOnSJWq/5s2b06JFC/fzeKxcuZJgMEinTp0S0lgeI0eOpG3btjz00EN88MEH/OUvf6Fhw4b8v//3/+jXrx/Tp0/n1Vdf5Y477qBr16787ne/i/p+586deffddzl48CB169ZNuzwSieToRsZ/Gf/jIeO/jP+SDKO6e/6SymH06NFCVVWxfPnyMp85jiOEKLnjffbZZ0fdQc3LyxM+n08MHDgw6s7j008/LQDx/PPPCyGEWL16dZlhQaV5/PHHBSB27dqVVPkT+d4rr7wiVFUtcxd15syZAhBffPGFEEKITZs2CVVVxUUXXVTmTmrYFkLEH2pW+o53MBgUxxxzjDj99NNFYWGhu9/7778vADFp0iT3vfDd5alTp0Yds2PHjqJz587lG0EIUVBQUOa9P/zhD1F3f4VIb6jZpk2bRL169cS5554bdR4Q56546Vfk3eHBgweLE044ocxv5OfnC0Dcdddd5ZYlJydHXH311WXe/+CDDwQg5syZI4QQ4pFHHhGA+OWXX8rs27VrV3HWWWeV+zv//Oc/BSDWrl0b9X4qd7yvu+469z3LskSLFi2EoijioYcect/ft2+fyM7OFmPGjClz3PDTgGXLlpVbZolEIkkEGf9l/E8UGf9LkPFfUh3IrOY1AMdxmD17NkOGDClzRxBAUZSov8eNG4emae7fn376KcFgkFtvvTXqzuO4ceOoW7cuH3zwAQD16tUDYO7cuRQUFMQsS/jO77vvvovjOAlrSOR7b775Jm3btuXUU09l9+7d7qtfv34ALFiwAIDZs2fjOA6TJk0qcye1tC0SYcWKFeTl5XHjjTeSlZXlvj948GBOPfVU1z6RXH/99VF/n3POOWzevLnC38rOzna3Dx06xO7duznnnHMoKCjg+++/T7rspcnPz+eiiy6iQYMG/Oc//4k6Dz755JOEXoMGDXK/U1hY6N79jiRsp8LCwnLLk+j3w//H27ei39mzZw8ADRo0KHe/RLj22mvdbU3T6NKlC0IIrrnmGvf9+vXrc8opp8T0ebgMiT5hkEgkknjI+C/jf6LI+C/jv6T6kUPNawC7du3i4MGDnH766Qntf/zxx0f9/fPPPwNwyimnRL3v8/k44YQT3M+PP/54xo8fz2OPPcarr77KOeecw9ChQ7nyyivdoDxy5Ej++c9/cu2113LXXXfRv39/RowYwSWXXFImCEaSyPc2bdrE+vXradKkScxj5OXlAfDjjz+iqirt2rVLyB4VEc8+AKeeeiqff/551HtZWVllytigQQP27dtX4W9999133HvvvcyfP5+DBw9GfXbgwIFki16GcePG8eOPP7JkyRIaNWoU9Vnp4WiJkJ2dTSAQKPN+UVGR+3llfD/8f7x9K/qdMEKIhPYrj5YtW0b9Xa9ePbKysmjcuHGZ98MBP1YZUmkESiQSSSQy/oeQ8b9iZPyX8V9S/ciO91FIopVULB599FGuuuoq3n33XT7++GP+9Kc/MW3aNL788ktatGhBdnY2ixcvZsGCBXzwwQfMmTOHWbNm0a9fPz7++OOoO6yly1TR9xzH4YwzzuCxxx6LeYzjjjsuZV2VSTyNFbF//3569+5N3bp1mTp1Km3atCErK4tVq1Zx5513JvUEIRZPPvkk//nPf/j3v/9Nhw4dyny+Y8eOhI5Tr1499xxq1qwZCxYsQAgRFUi2b98OhOZglUezZs3cfSMp/f1mzZq575f28/bt2905ZfEINzL27dtHixYtyt0Xyg/Qsfwbz+exjhNugJUO1BKJRFLVyPhftcj4L+N/eceR8V8ih5rXAJo0aULdunX59ttvU/p+q1atANiwYUPU+8FgkC1btrifhznjjDO49957Wbx4MZ999hlbt25l5syZ7ueqqtK/f38ee+wx1q1bx1//+lfmz5/vDgWLR0Xfa9OmDXv37qV///4MGDCgzCt8R7pNmzY4jsO6devK/b1E7zjGs0/4vdL2SZWFCxeyZ88eXnzxRW655RYuvPBCBgwYEHN4VLJ3Sz/77DPuuOMObr31VkaNGhVzn2bNmiX0mjVrlvudDh06UFBQwPr166OOtWzZMvfz8ujQoQOrVq0q06hYtmwZtWrV4uSTT446zooVK6L227ZtG7/99luFv3PqqacCsGXLlpifHzp0KOrvnTt3lnu8dNiyZQuqqrraJBKJJFVk/JfxvyJk/JfxX5I5yI53DUBVVYYPH87//ve/MhUTVDy8ZsCAAfh8Pp566qmoff/1r39x4MABBg8eDMDBgwexLCvqu2eccQaqqrpDgPbu3Vvm+OFKMdYwoTCJfO+yyy5j69atPPfcc2X2LSwsdDO0Dh8+HFVVmTp1apkKPVJfTk4O+/fvj1umMF26dOGYY45h5syZURo++ugj1q9f79onXcJ3TSPLGAwGeeaZZ8rsm5OTk/DQs+3bt3PZZZdx9tlnu5lRY5HKHK9hw4ZhGEZUGYUQzJw5k2OPPZaePXtGleP777/HNE33vUsuuYSdO3fy3//+131v9+7dvPnmmwwZMsSd03Xaaadx6qmn8o9//APbtt19n332WRRF4ZJLLinXBp07d8bn88W8PoAyjcJ33nnH1VLZrFy5ktNOO80dnimRSCSpIuO/jP/lIeO/jP+SzEIONa8hPPjgg3z88cf07t3bXWpj+/btvPnmm3z++edRy12UpkmTJkycOJEpU6Zw3nnnMXToUDZs2MAzzzxD165dufLKKwGYP38+N910E5deeiknn3wylmXxyiuvoGkaF198MQBTp05l8eLFDB48mFatWpGXl8czzzxDixYtyl1WIpHv/f73v+eNN97g+uuvZ8GCBfTq1Qvbtvn+++954403mDt3Ll26dOHEE0/knnvu4YEHHuCcc85hxIgR+P1+li9fTvPmzZk2bRoQqoyfffZZ/vKXv3DiiSdyzDHHuIlaIjEMg+nTpzN27Fh69+7NFVdc4S4n0rp1a2677bZU3RZFz549adCgAWPGjOFPf/oTiqLwyiuvxKz8O3fuzKxZsxg/fjxdu3aldu3aDBkyJOZx//SnP7Fr1y4mTJjA66+/HvVZ+/btad++PZDaHK8WLVpw66238sgjj2CaJl27dmX27Nl89tlnvPrqq1FDsCZOnMhLL73Eli1baN26NRAKvGeddRZjx45l3bp1NG7cmGeeeQbbtpkyZUrUbz3yyCMMHTqUgQMHcvnll/Ptt9/y9NNPc+2115ZZzqQ0WVlZDBw4kE8//ZSpU6eW+XzOnDmMGjWK3/3ud2zcuJF//OMf1KpVi48//piuXbty4YUXJm2bWJimyaJFi7jxxhsr5XgSiUQi47+M/zL+x0fGf0lGcaTSp0uqnp9//lmMHj1aNGnSRPj9fnHCCSeIP/7xjyIQCAghSpYTibXkiBCh5UNOPfVUYRiGyM3NFTfccIPYt2+f+/nmzZvF1VdfLdq0aSOysrJEw4YNRd++fcWnn37q7jNv3jwxbNgw0bx5c+Hz+UTz5s3FFVdcITZu3Fhu2RP9XjAYFNOnTxennXaa8Pv9okGDBqJz585iypQp4sCBA1H7Pv/886Jjx47ufr179xaffPKJ+/mOHTvE4MGDRZ06dQTgLi1SejmRMLNmzXKP17BhQzFq1Cjx22+/Re0zZswYkZOTU0ZfeCmKivjiiy/EWWedJbKzs0Xz5s3FhAkTxNy5c8uU5/Dhw+L//u//RP369QVQ7tIivXv3jrs0SORyGali27Z48MEHRatWrYTP5xOnnXaa+Pe//11mv/BSK1u2bIl6f+/eveKaa64RjRo1ErVq1RK9e/eOe46+8847okOHDsLv94sWLVqIe++9VwSDwYTK+d///lcoihK1JEl4OZEHH3xQDBgwQPj9fnH88ceLt956S9x9992iVq1aYsqUKUKIEh+WXvImns979+4tTjvttKj3PvroIwGITZs2JVRmiUQiSQQZ/2X8j4WM/yFk/JdkCooQVTCWQiKRSDIM27Zp164dl112GQ888AAAP/30E8cffzwvvPACV111VZWXYfjw4SiK4g5lk0gkEolEUrXI+C/JFOQcb4lEclSgaRpTp05lxowZHD58+Ij//vr163n//ffdoC+RSCQSiaTqkfFfkinIjrdEIjlqGDlyJHv37qV27dpH/Lfbtm2LZVkJr7crkUgkEomkcpDxX5IJyI63RCKRSCQSiUQikUgkVYic4y2RSCQSiUQikUgkEkkVIp94SyQSiUQikUgkEolEUoXIjrdEIpFIJBKJRCKRSCRViF7dBfAKjuMghIOCAopS3cWRSCSSqkEIBAJFUVHV5O/NCiFIZwaToigoso6VZBAy/kskkqMCGf+rHNnxThAhHPbv21fdxZBIJJIjQv0GDUh2UJQQgvXrviM3Nzfl31UUlQYNG9b44CvxDjL+SySSowkZ/6sO2fFOmNBJUH/5YBS7IOoTIaAwYAGgaQp+Q0v66LYjCARtAPw+DU1N/qQLmDa2HbrTlO3Xk74xL3WUIHWUIHWEOFp0CK0W+7t+QLjOS+7YgtzcXNqf2YFDhw4l/f06derwzddrEELU6MAr8Rrx438svHCdJ4LUUYLUEULqKKEm6vBl1+FQ9w+R8b/qkB3vBAmfBIpdgGrnu+87AoKmjSIEmqpgBwWmo+LXE79TZDmCoGmjAg4qvwbPpIX2LT418eEaAcvBsRx0TcF2BMGi0AWYaD1Q2ToAgkXgNzT0JCqjsA5V09hBe3KLviHbUDyrI11/CKGwRzuTRsGvUR08qyMdfwQdhd/s0znG+RoVx7M60vWHg8qv9uk0NNdgaKLKdDjF/6cT+A4fPkx+fn7FO5aiJgfbymbLli189tln/PzzzxQUFNCkSRM6duxIjx49yMrKqu7i1Sjixf9YpHOdO6hs5wwaWl/jWJan6ytIvd4N2yFXrMU0Tc/qcPWk6I+wHZqxFsexPasjkmT9EWkDtTg6eVFHLJLREcsOVaUDZPyvSmRytTRwROhulSMEfkMjy9DQdRXLcghYTsUHIHTSB0wbVVHI8un4fFn8ovWjyFSwnMQ63gHLwbIcdF0ly9DwGxqOEMVlqx4dWT4dVVEImHZKOnyGn1/1fthC87SOdP1hGH5+0fuj6j5P60jHH0Wmwi9aP3y+LE/rSNcfhZbKFqUvqu6rNh2Joqpqyi9J+bz66qt069aNNm3acOeddzJ79mw+++wz/vnPf3LeeeeRm5vLjTfeyM8//1zdRT3qSPc6d9DZJPpgWqrn66t06l0HnR9FXwpNxdM6ID1/OOj8SF+CjuZpHWFS8UfYBk7xc0Kv6ihNsjpK26EqdaSLjP/lI9fxThDHcdi3dw8NvuyLaueXOekj73JFXlDl3XmKPOkj73KVd+zSxPuteMcuo0vqkDqkDqkj4tiOlsO+sxbQoGGjpANhuJ486eRTOHz4cFLfBahduzabNm5I6bePBjp27IjP52PMmDEMGTKE4447LurzQCDA0qVLef3113n77bd55plnuPTSS6uptDWH0vE/Fl67zuMhdUgdUsfRq8NWc9jfQ8b/qqTmKqtCKrrA/Lpa4Z2nuBcvGr8qZ2EYvgrvoJV3gemqUvEdtCrUAaAqFL+XvA4HjZ85C1XVPa0jTKr+CNvBQfO0jkiS1WEYPn5VQjbwso50/aHqBjv0nq4djqSOZAlnJk3lJYnPQw89xLJly7jxxhvLdLoB/H4/ffr0YebMmXz//feccMIJ1VDKmkuwiq/zoKWw3eiFoRtRn3mxvkqn3i00cdtBXtaRrj+Cjspmuxsouqd1pOOPcBuo0FI8rSNMqv4I28FyR4FWjY7KCMEy/peP7HgniUjwrlZ5J395J72DxlY6gKKVexEncler3Iu4inWEqagyiqcjbAcHzdM6IklFR6QdvKyjNMnoQIm2gVd1pOsPQzfK2KEqdMTrXCSDDLxVw6BBgxLet1GjRnTu3LkKS3P0UdXXuaob5Gkdy1zj4L36Kp161xYqu/ROqGrsNERe0ZGuP4pMyNM6FT+I8a6OdPzhoPGrcyampXhaB6TnDweNraIDhSZVriNdZPwvHznUPEHCQyiyF/8OYR2ucChJmNIXWrInfawKI9GhJGHKdGRIfEiM1CF1SB1Hlw5TZBPo81laQ81Obdsu5aFm369fV+OHmlUWpmmyY8cON7law4YNq7tINZLweZ3zeW/swKEacZ3XlPpK6pA6pI7K01EZU81k/C+fmqusikjmpIfoO09Fpl3hSW+j8QN9sOMMqy0y7aQuXoi+g1YUtCgKWlWuozTJ6ihtB6/qiEUyOmLZwYs64pGIjng28JqO8khER3l2qGwd6SLveFcdhw4d4tlnn6V3797UrVuX1q1b07ZtW5o0aUKrVq0YN24cy5cvr+5i1kh8VXydV3SNg3fqq4ooT4ei6hXawQs60vWHbvjYrFRsh0zXkY4/gpbKr0Z/9FLTL7ymI11/FARhi9oXPcb0i6rSkSoy/pdPxnW8Fy9ezJAhQ2jevDmKojB79uwKv7Nw4UI6deqE3+/nxBNP5MUXXyyzz4wZM2jdujVZWVl0796dr776KqXyJXPxut/RVTRNCa3VJyj3pBeo7KM1IsI14YsYAbYtQmv1Jdk4Dl/EQoSGy1e1jlgkoyOWHbyoIx6J6ohnB6/pKI+KdJRnAy/pqIiKdFRkh8rS4ZMd74zlscceo3Xr1rzwwgsMGDCA2bNns2bNGjZu3MjSpUuZPHkylmUxcOBAzjvvPDZt2lTdRU6KTI//ULXXeSLXOHijvkqEeDoStUOm60iGWDoUJXE7ZLKOdPyhaiqHtOMTskEm60jXH45QOKQdj6Ymt053ujpSQcb/8sm4jnd+fj5nnnkmM2bMSGj/LVu2MHjwYPr27cuaNWu49dZbufbaa5k7d667z6xZsxg/fjyTJ09m1apVnHnmmQwaNIi8vLyky2daTszEDeVhOaE1d91j2PHnUOqYdOVFdMzo3434ju2IhJcsCOOIUNnd41WxjngkqiOeHbymIx6J6ohnB/CWjvKoSEd5Noj1nUzVkQjl6UjEDpWhw072CzGQgbdqWL58OYsXL+arr77ivvvuY9CgQZxxxhmceOKJdOvWjauvvpoXXniB7du3M3z4cD777LPqLnJSZHr8h6q9zhO5xsEb9VUixNORqB0gs3UkQywdydgh/J0wmaQjWaK+4wTp6LyQsA0gM3Wk6w8Nk/bm86gicTtA5ehIFhn/yyej53grisI777zD8OHD4+5z55138sEHH/Dtt9+6711++eXs37+fOXPmANC9e3e6du3K008/DYTmIRx33HHcfPPN3HXXXQmVJTx3wb/oHDSnIOG7RqXnVJh2+fM8bDQ2cS4n8QkaNlAqwZKmJj3Po/R8EyDpISfJ6ohFMjpi2cGLOmKRjI5YdvCijngkoiOeDbymoyIq0lGRHSpLR5GTRaB3enO8Tz+jfcpzvL5d+02Nn+NV1Rw+fJjatWtXdzHSIhPjf90lfQgWHayy61xR9XKvcfBOfVUR5enQDR8/KuXbwQs60vWHqvv4WR9YoR0yXUc6/ig0FX5Uz+UU9VP8asWdxkzVka4/bDQ2OANo43xCtiGqTEdlzPGW8b98PK9s6dKlDBgwIOq9QYMGsXTpUgCCwSArV66M2kdVVQYMGODuE4tAIMDBgwfd16FDhwDQDT+OEBSYCqYIZdy0Mdw5OFbEdpFjUGiCqihoRjYoxSe7nkXQKk5khB+n2A0mfgQahdTDJBuBQpHlUGT50HQVn65hK353CFK+aWA5AgcVEz8ADioWPnc7KHyh7IpCRTOy0VUFRdXRjSwcISg0FUxhFOvQsSmrKeDoFJpKhA6tjA4LX5SOaE2hxBIhHRo+XcVW/PhK6RAoETp08mkAqKV0KK4OVdXRjGxXR9DVoWFTVlO0jixElA6ljI5YmiJ1+F0dOoqikG8amKV0RGtSCQp/DB1ahA4ICl+EDj+F1Cv2h1GsQ6OgWIceoUPR/QQtNUKHVkZHeDukw0DV9SgdqqsDhOs/ymgKROmoFUOHcHU4aO45aaNhuTpUCky1WIcfoegxdIR0F1IPC38ZTSEdepQOwzCidESeh6U1hXXYAtQoHbVi6Ii8tko0RevwIRSjWIePQLGOeHVE2E8ByyEQocNRfBE6dIKOAqjk0xBR/N1ITQHhp6iUDk1VUaN0xK4jwttBR6XADM1LSxdVVVN+Scrn8ccfL/fzQ4cOJZX93Msc6fifWH0VfW2XbCdSX6lR8d/b9VVJHRW5nVh9pZAvSuJ/RfWVbvhwinWouo+ApRXriN2mCWsq0WHE0KFF6SjdpsHV4WALgWrUQiulo8h0CETUu7HaaUFHcXUYhg9H8bk6iiydfCc6/sfSFNKhoeq+CB2hJWkLInTEa6eFdTiuDhVNVVCNWtildJRu04S3g07IZiEdRoQOg4ClF/ujJP7HaqeV1WGgGX6CSn0KTIOgU7ZtFrkdFH4KTRGlQ3d1EJrnLGK3aaJ16DF06K6OeG2asKaQjtA15ddVhGKgu/5QCUTpKNtOCwqfq0MzaqGqGrqqEdQaY4nQvPGQjrJ1RFiH6UC+abg6bMXv6ihydcSuI9LlSMX/Z599lvbt21O3bl3q1q1Ljx49+Oijj9zPd+zYwe9//3uaNm1KTk4OnTp14u23364Ujeng+VbOjh07yM3NjXovNzeXgwcPUlhYyO7du7FtO+Y+O3bsiHvcadOmUa9ePffVokULAL5Xh5Hj1/nJN4wNyoUAfMMINnEuAKsZxRbOAWCVeg17/T3I9ml8qdzIds4AYJl+O4VZ7fDrKvOZyH5aAvAxUyigIR2ZxVz+QhF10fRsFmb9DU3Ppoi6fMh0VAUsX3M+9/8FXVXYT0vmMxGA3ZzMYm4DYDtn8KVyI9k+jb3+HqxSrwFgC+fwjXolOX6dX32D+FYZAcB6LmQ9ZTV9o17JTn8fsn0aK5Sr+ZWuAKzUb+JgVkf8uspibmM3JwOU0XSIXPy6ysKsvyH0+lj4+ZDpOIofxdeAhf6/oasKh8jlY6YAcIhm7OYUNEx2czKfK7eR7dM46O/IV+ofAfiVrqxSryHHr7Pd15uvlVEAbOJcvqGspnXqxWz1n0e2T+NrpcRPX+vXsjerB35dZQklfoqlya+rfJ71F4J6MwA+ZDpBpS6GrxYL/X8DNcv1U0hHiab9tGSBMpFsn0ahvx1L1PGun75S/0iOX2e37yxWKFe7fvqay+jILDbTx9W0SR3CL/7hZPs0vlVK/PSd/nt2ZvXBr6t8RYmfYmny6ypfZt1Hod7a9VO+kku2T2Oh/29Yaj3XTxb+Mpo+VaaQ7dMw/SewSL3bPfeWqOPJ8evs93XgS+VG109fUaJpNSE/bVEH8qP/MrJ9GhuUEj9t0C9ha9Z5+HWV1YziF86iI7NYyegymvy6ysqsP3NIP9X100GlJdk+jc/9f6FQber6qYi6ZTTNUaaT7dNw/McyX53q+mmRejc5fp18X1s+V0qupyWU1fSr+js2+MeQ7dP4USk59zbrQ/klazh+XY1bR4T95NdV1mT9ib36ma6f9ionh+oO/30cVluhYbKD9hTQsIymOcp0DF8tNH9DPlYfdv00X51Kjl8n4DueBUrsOiKsabvajW/915HlS24OWSzkULOq4+677+bll1+O+Vl+fj7nnXcee/bsOcKlqh6OdPzfpA9HVRS+E4NZ6wwmYDmsVy/hJ2Mgtu2wwvk/NtlnE7AcvnTGstnuQsBy+FzcwM/madi2w3Lfn9mjnEzAcpgnJrLbboGqKHzme4CDVj3amq8xl79w0KpDgeXjQ6ZTYPk4aNZhjjIdIQRFalPmKVMJWA55VgsWKnejqQp7OJnF4jYCpsOv9ul8Lm4gYDlstrvwpTOWItNms3M23+m/R1UUNogBrHFGELAcNqpD2GwMxbYdVtsXsd4ZQMAqq+lHqzO27bDKdzN5SnsClsMicRs7nBNRFYWlvnvZbbWgyLSZK6awx2pCwHL4kOkhTaaPOcp0LOHHUuvzsfowActhj9WEecpUNFXhMM3YxclYZoBt9oksErcRsEo0FZk2P9md+cYYh6oo/OiczQrn/whYDj+q57LRuBTbdlhrX+D6aY0zIkrTRqsXtu3wjW8cW5Vurp+2OqejKgrLjT+zwzqRItNmnphIntWCgOWUaDId5ijTKRJ1Qc3mY/XhkJ+sOnysPlys4xg+4X4CZshP88REApbjaioybbbap7PKuBlVUfjJCfkpYDn8rJzDBt8VtDVfZYP9O9dPa53BUZrW2f2xbYd1vtH8rJzj+uknpwuqorDKuJmt9ukUmTaLxG1ss090z708qwUB0+ET7ucwx6CpCh+rD7vn3sfqw6BmUyRCsTJghvw0V0xxz715YiJFps0O60SWG39GVRS2OiXn3lalG9/4xmHbDhutXq6f1jsDojXZF4T2MS7lR/Vc108/Od05w3md74yr+MnuTJFp87m4gV/t091zb5t9IgHTYT53cYCWaKrCPGWqe+59rD6MpdbHEqFYWWCG/PQh091zb66YQpFps9tqwVLfvaiKwg6n5NzLU9qzyncztu3wo9XZ9dMm++woTavti7Bth83GUDaqQ1w/bRADQnWH/ns2O2dTZNpl6ohf7dMJmA6LxW3s4WQ0VWGhcjd5VgssK8AO2mOqjRBCMEeZzkGzVB1RrKnItNlnNeYz3wOoisJuu+Tc26OczHLfn7Fth5/N08rUEV5aTrRFixY89NBDrFy5khUrVtCvXz+GDRvGd999B8Do0aPZsGED7733HmvXrmXEiBFcdtllrF69Om2N6eD5oeYnn3wyY8eOZeLEie57H374IYMHD6agoIB9+/Zx7LHHsmTJEnr06OHuM2HCBBYtWsSyZctiHjcQCBAIBNy/hRBYZpB6X56Lbh9w7zhqWMV37Rw0bCwMFHfbh4qN6m5bqDhR2yZ+NEx3W8HhewZzIp/gpwAQWPjRCQAKFj4MAoiIbQcVG8PddtDRCZba1kJrYhPERkOgomMW3wFW0TCrTJNOEAXhbieiycTHeoZwGu+i4NQITan4ycbHRgZxMh8Vf+J9Tcn6yUFlI+dzEh9jEKgRmlLxk0DlO4bRjvfQMatMk6oZaQ8169CxI4cP5yf1XYDatXNYs3p1jR9qlg5vvfUWv//975k1axZDhw5138/Pz3fnLi9atIhmzZpVYynTJxPjf52l5+JzYsd/yzIJWBqGrpCtO1HXdr6l41hBfDpoelbM+iog/ARNkx/UCzlZ/ZRaaiHha1sVAQKmgyl85BgmmqrGvLaDjkKhqeBTTAzDAKXk2g46KrZZCIqBYej4lNj1lWUFS+koqa9COkx8uojSEVlfBYUf0ywCYaMatchSTbcOVkWQgGlhCj+1DBM9QkdkfVXoGKxzLuQUZzZZhhKhQyXoaMU6dAzDh0+JXQdbVoCAFcrqXEt3ourgAkvDtmx8ulOso2wdHBQ+TDMAwkYzauFTS3ymiiBB0yIo/NQyLHSVmHWw6UCBqeNTAhiGgVBK6uASHRqG4cenxI7/65yBtA6+j0+HWrodde5F6/DHjCvROrLxqXZJe1OYmKbp6jBUYsYVK0KHz9BDT9RdHTq2WVBKR9m4YltFBC0VTdeKdZScewVWKPO2X3fQdT+x4n8b8TGOWQDCitJh4QNhFevwkW04+FQRM/5bjkOBaWAoAfwROgQKRY4ROr6iYRhZ+JTYsTKkQ0HVDXJ0K+rcK7RUTEvg12103VemjtCwCQoD07RAmMU6HPfcK9FhkG0IV0fp+I8TJN80MJQgfkPFUUrOvbAORQmNcvUrseN/SAeouo8c3aox8b9hw4Y88sgjXHPNNdSuXZtnn32W3//+9+7njRo1Yvr06Vx77bUpHb8y0KvtlyuJpk2bsnPnzqj3du7cSd26dcnOzkbTNDRNi7lP06ZN4x7X7/fj9/vdv8MnlIoFhC6mMFpE0gc9ajtY4bZBIGo7XKkaBIoHkUTuI9xtJWI7NBgrcjsYYztUCYfKa0PM7arRVP52eZrsGqgpWT+Z7rZWxefekdOUnJ/C14RO0D2O1zXFKntFmmxUVOwY9ULlanJIbNmW8lBI7em1gnziXRGXXHIJ+/fv54orruCDDz6gT58+7pPunTt31ohOd6Ic6fivK/HrYE1XgdCyQQFU/HrougpYDlhF+Nx5lbHrK78SQDV0FAdsswDbEKEh2CJAwLQRQpBjmMXzQ2Nf2z5VoBoOAVNgmiZ+wwEFHMfCdud6ClSlJK6Urq/K6jAr1BFZX/mUALqhEDAVHLMAu3hOa0U6IusrnyowFAfHFpimFaHDxjaDxTpAVYIxdIS2QzocLMsqo0NYVgI6gq4O2yzAMTTUCB1OlI7YdbChQo5hxvBHpA7F1REr/uuqgk8XCCtYrMOKoyN2XInWUZiEDmLqCJoWfkNUoKNsXNHL+APAdnX4Y+ooif8+JYhiUEZH6GZOWIdVgQ4lpg7bcXDMgggd8WNliY6iMjqcKB2x479PMdEr1GGX0REZ/zVXh0PQFPiNAIoCVpQOtZSOQIU6VGyKrPRHvBmGD0UpQNfDN/Os0I0nIbAsC5/Ph+M47rZt29i2jc8XqnMPHToU1X4oXR/HwrZt3nzzTfLz892brD179mTWrFkMHjyY+vXr88Ybb1BUVESfPn3S1pgOnn+k0KNHD+bNmxf13ieffOIa3ufz0blz56h9HMdh3rx5UXfAMwUNi9OZHRXYj0akHUJIO0gbhPGUHVIdZiaHmifEtddey+TJkxk2bBgLFy7k/PPPZ9u2bSxYsIDmzZtXd/GOGJkW/yPXzQ0Uv5JJymQoFu3V9zCU0Jq74eRIySRlilz/N/IYySSXSldH6XWMk9WhYdFeeZdahvC0DkjPH+E6v5bueFpHmFT8ERn3vKwjklR0lI7/VakjXUaOHImiKFxyySVccsklKIrClVdeyYUXXoiiKFx77bX0798fRVG4+eab6dWrF4qicMsttwChIeSRU32mTZsW97fWrl1L7dq18fv9XH/99bzzzju0a9cOgDfeeAPTNGnUqBF+v58//OEPvPPOO5x44olpa0yHjHviffjwYX744Qf37y1btrBmzRoaNmxIy5YtmThxIlu3bnXnuF1//fU8/fTTTJgwgauvvpr58+fzxhtv8MEHH7jHGD9+PGPGjKFLly5069aNJ554gvz8fMaOHXvE9VWEjcE3jKA9/426S3a0Ie0QQtpB2iCMl+yQ6nxtOcc7cSZMmMDevXvp378/rVu3ZuHChe5cZK9SE+J/uOEdbsAmkwnZxuAbZQSnG//FDBYSCIaefvp9ya1DrKsKGBqBoE0gaKMoya/fm44OKOlcFAWtpHW4dZ36X/xG0LM6wqTqj8g6P/zE3os6IknWH6Xjnld1lCZZHbHif5Xo8KsRYwVS480330RRFP773/8Cobj+2muvIYRAURSef/55HMdBURRmzJiBbdsoisLf//53Rv3fFfz2229lnnjH45RTTmHNmjUcOHCAt956izFjxrBo0SLatWvHfffdx/79+/n0009p3Lgxs2fP5rLLLuOzzz7jjDPOSFNl6mRcx3vFihX07dvX/Xv8+FACqjFjxvDiiy+yfft2fvnlF/fz448/ng8++IDbbruNJ598khYtWvDPf/4zKqvryJEj2bVrF5MmTWLHjh106NCBOXPmlEm4khk4ZHMAqPq19jIbaYcQ0g7SBmG8YwfZ8a46RowYEfW3YRg0btzYfVoQJtzo8RIy/nvnGq9apB1CSDtIG4Txjh0sy0JRFGw7dENBURQsy3K3TdMsd7tOnToJz/H2+XzuE+zOnTuzfPlynnzySSZMmMDTTz/Nt99+y2mnnQbAmWeeyWeffcaMGTOYOXNm5QlOkoxOrpZJhOd4NfiyL6qdfNIAiUQi8QKVsY5nl67dyM9Pvp7MyclhxfKvZHK1ckj0Se0LL7xQxSU5ekgm/kcOOwWSXv+39Pq9puUkNZQWotfvNXQ16SGoUofUIXUcnTpMkU2gz2eejf/9+vWjZcuW3H777bRv355169bRtm1b9/NBgwbRqlUr/vGPf6R0/Mog4554H+1YGKxmFB15NSoJ09GGtEMIaQdpgzBesoN84l11yA515hJvrmd4GGdFjfKgMFgl/o924mVqGU7xGsRaaN1e04YEGuUx53pGHCORRnm6Okp3KpLVYWGwUvwfbc2XMRTHszogPX+E6/zTrFcQluVZHWFS8Udk3FOF6VkdkaTij9Lxv6p0CJH+UPMjFf8nTpzI+eefT8uWLTl06BCvvfYaCxcuZO7cuZx66qmceOKJ/OEPf+Bvf/sbjRo1Yvbs2XzyySe8//77SZetMpEd7wxDwaEBP6F4YDhJVSLtEELaQdogjJfsoKpqSnes5VPuxPjyyy857rjjOPbYY9m+fTs//fRTRiYLrWmUNz4wXmO89BzKeI1yR4BpWtRVt+A3FLfhHZ4LmkjnIl6CJXcuaAKN8srQEStRVDI6bMemjrMFrdScVa/pSNcfCg517C3FS4Z5Vwek7o9w3BPC8bSOMKn6IzL+V6UOn66S7pjeIxX/8/LyGD16NNu3b6devXq0b9+euXPncu655wKhpSXvuusuhgwZwuHDhznxxBN56aWXuOCCCyo89vr163n99df57LPP+PnnnykoKKBJkyZ07NiRQYMGcfHFF1eYaT0ecqh5gsih5hKJ5GigMoaan9WjZ8pDzb5cukQONa+AefPm8dxzz/H6669zxRVXMG7cOPr161fdxaqxhM/r7MW/I0stKtOYTSSrcXn7xGuMJ7NPIlmNK9pH6pA6pI6jW8fRHv9XrVrFhAkT+Pzzz+nVqxfdunWjefPmZGdns3fvXr799ls+++wzDh48yIQJE7j11luT7oDLlk2GYeFjCddj4avuolQr0g4hpB2kDcJ4yQ6pLCWW6vC0o5H+/fvTqFEj7r33Xho2bCg73UeI8NI9TsTjikSXEiq9dE/JMUsa2pqRzVfqDTGv8VhLEIVJdCmh0ksQVZWO8uapJqLDUfysNv6Io8Su67yiI11/BCyd1b4/oulZntaRjj+CwscS8QdMYXhaR7r+sPDxhfgDBaZ2RHSkg5fj/8UXX8yIESPYsWMH8+bNY9q0adx8881ce+21TJgwgZdffpktW7bw/vvvs3r1ah599NGkf0MONc8wVGyOZQ0qdnUXpVqRdggh7SBtEMZLdpBzvKuOvn37oigKBw8eZNWqVXTu3Nl9b/78+dVdvBqN39AIFgl3GKdpJ9eILT0c1dDUqMa4qjrlXuOxhqMCSSVVijUctbJ1VDTPtmIdcKxSfl3nDR3p+cPQBcepX1dY52e6jnT8YZpBjlFWkWXgaR3p+sPBoom9Ci0y50EV60gVL8f/jRs3YhhGhfv16NGDHj16uJnYk0F2vDMMFZtWfFndxah2pB1CSDtIG4Txkh28HHgznQULFgDwxz/+kYEDB3LgwAFmzJhRzaU6OtCKnyQFTJvCQGh5nGQbsZGNcstyoLiRHWqMV3yNRzXKi9f/VdXkMhlHNsqrRkfFlK8jsbou83UkVob4OkTCdX5m60jPHyfoX9UIHen5w+Y49csjriMVvBz/E+l0p7M/yKHmGYeFj8Xc6onhpFWJtEMIaQdpgzBesoOXh5p5gXnz5rF7924efPBB9u7dK590H0F0VUGLaPkaWvLNqMjvaGpJIrVEr3FVASOi8WzoasKN8TBVqSNR4ulIpq7LZB3JEEtHsnV+pupIlsjvCNXPEvW2pOJeJupI1x82Pr4yxsedfhGPytCRLDUp/i9fvpyHH36YO+64g/Hjx0e9UkU+8c4wVCzasAAVq7qLUq1IO4SQdpA2COMlO3j5jrcXyM7OdueWPfroo/z000/VW6CjiIDlYNsCTVOwnZJh54m2qcNzPVFCjXHbFgQUB7+uJnyNh+eshi+XirI5H2kdiRJPh6omXtdlso50/WEYFm2UxOyQyTrS8Ydpm7RS56Nqice9TNSRrj9ULI6z5uNoZlKPTNPVkQo1Jf4/+OCD3HvvvZxyyink5uZGlS+dssqOd4ah4nAsX1d3MaodaYcQ0g7SBmG8ZIeaEngzlZ49e7rbzZs3p3nz5tVYmqOHoOVgR8yRDDeME23MxkqwFFCciCWIqPAaL50oCoi7BFE8SidYqnwdFfcMytPhN+BYteK6LtN1pOsP0zRpZnzteR3p+ENRHBqbqzBFYkOkM1VHZfijmbkG0xSoR0hHqtSU+P/kk0/y/PPPc9VVV1XqceVQ8wzDwsd87vTEcNKqRNohhLSDtEEYL9khvI5nKi9JYhQVFfHII49wwQUX0KVLFzp16hT1klQ+pRMTlZc9uDTxshpHZkHOt/Ryr/FY2ZnjZUGOR6ysxpWtIzKbcyo68k2NeaL8us4LOtL1R1AYzBd3EhTx7eAFHen4Q9Oz+NJ/D0WW7mkd6frDUXwsMe7GUfxHREc61JT4r6oqvXr1qvTjyifeGYaKxem864nhpFWJtEMIaQdpgzBesoOipHb3OsNueGc011xzDR9//DGXXHIJ3bp1y7inBTURXVfxK9GNw1jZg0s/SapoKaFwwzhoBTlZeSfmsNrylkSKSsRUzpO98pYSqkwd5T3ZS0SHY9qcZP4XR489rNYrOtL1R7YhONn6LyYBdEPxrI50/KFicYbyLj69/CfGma4jstyp6AjbIdsQmKZSpTrSpabE/9tuu40ZM2bwxBNPVOpxM+v2ggQVh2P4HpXy74jVdKQdQkg7SBuE8ZIdFFJMrkJqkXfGjBm0bt2arKwsunfvzldffVXu/m+++SannnoqWVlZnHHGGXz44YdRnwshmDRpEs2aNSM7O5sBAwawadOmqH327t3LqFGjqFu3LvXr1+eaa67h8OHD7ucLFy5k2LBhNGvWjJycHDp06MCrr76adFni8f777zN79myeffZZ7r//fiZPnhz1klQ+vjhDRMt7kpTo+r1+XcWnQwNzHaYV3fFOZB3iip7sJbJ+b2XpiPdkL1Ed2YZCE77HNE1P60jXHz5V0FzfCML2tI50/BGOe9k6ntYRJlV/hO2gu8uJVY0OUQlPwY90/K8q7rjjDjZs2ECbNm0YMmQII0aMiHqliux4ZxgmfuZyPyb+6i5KtSLtEELaQdogjKfskGpG0xRuec+aNYvx48czefJkVq1axZlnnsmgQYPIy8uLuf+SJUu44ooruOaaa1i9ejXDhw9n+PDhfPvtt+4+Dz/8ME899RQzZ85k2bJl5OTkMGjQIIqKitx9Ro0axXfffccnn3zC+++/z+LFi7nuuuuifqd9+/a8/fbbfPPNN4wdO5bRo0fz/vvvJ1WWeBx77LHUqVMnaXtJqoZYjdlEG+NhVD2bz/x/ocgy3EZ5Ip0K9/txOheJNMYrU0eszkUyOmzFz2LjARwly9M60vWHiZ956hQ0o5andUDq/oiMe17WEUkqOiLtUNU60uYIxv+q5E9/+hMLFizg5JNPplGjRtSrVy/qlSqKEJVxf6Pm4zgO+/buocGXfVHt/Kr7HVT205L6/OKJJ1tVhbRDCGkHaYMwR8oOjpbDvrMW0KBho6TnXIXryf4DzqWgoCDp365VqxbzPv0kqd/u3r07Xbt25emnn3bLcNxxx3HzzTdz1113ldl/5MiR5OfnR3WAzzrrLDp06MDMmTMRQtC8eXNuv/127rjjDgAOHDhAbm4uL774Ipdffjnr16+nXbt2LF++nC5dugAwZ84cLrjgAn777be4yc4GDx5Mbm4uzz//fEJlKY+PPvrIvTnQqlWrhGwlSY1k4r+bibj4b0Hi6/eGr/Fs6yccy3IzESfSqYg6TkRHIJxROdn1e9PRESbcEUhWR9gOdcUvmKbpWR2unhT9EVnnO47tWR2RJOuPWHHPizpikYyOWHaoCh2OlkOg92eeif9VSZ06dXj99dcZPHhwpR63+pVJolBxaMhPR3UHA6Qdwkg7SBuE8ZIdDMNAURQMw4ja1nUdRVHw+XxxtwEOHTrEwYMH3VcgEIj5O8FgkJUrVzJgwAD3PVVVGTBgAEuXLo35naVLl0btDzBo0CB3/y1btrBjx46oferVq0f37t3dfZYuXUr9+vXdTjfAgAEDUFWVZcuWxbXLgQMHaNiwYcJlKY8uXbpQVFTECSecQJ06dWjYsGHUS1I9hJ8kCREatplMYzx8jWfrhBrjtgBBUp0KKHmyh8BdSiiZxni6OsL4dTUlHWE7hIfVelWHqydFf0TW+V7WEUmyOmLFPS/qiEUyOmLZoap0pEtNWce7YcOGtGnTptKPKzveGYaJnw94yBvDSasQaYcQ0g7SBmG8ZIcLL7wQRVE4//zzOf/881EUheHDh9OvXz8URWHkyJH06tULRVEYM2YMnTt3RlEUd9mOFi1aRA3pmjZtWszf2b17N7Ztk5ubG/V+bm4uO3bsiPmdHTt2lLt/+P+K9jnmmGOiPtd1nYYNG8b93TfeeIPly5czduzYhMtSHldccQVbt27lwQcf5O9//zuPP/541EtSPTgCzIi5m6blJJw9OHyNFzo+7IgvmXbyN9siv2M7osIsyKVJR0cYyxEp6Yis67ysI5JUdETawcs6IklWR6y450UdsUhGR7z4XxU60qWmdLzDuVNSeXpfHjKreYahE+QcnkAnWN1FqVakHUJIO0gbhPGSHT788EMURWHu3LlAKBC/9957CCFQFIU333wTx3FQFIVXXnnF3X755ZcZedml/Pbbb1FB2O/P/JsN5bFgwQLGjh3Lc889x2mnnVYpx1yyZAlLly7lzDPPrJTjSdInaq6nr/Ta1BU/ldMJ0tN5HNssRFMU/D4N005u/V+InutpaGqF2ZwrWweUmrOapI5wXWdbRe666V7UESZVf4TtoIqgp3WEScUfpeOeV3WUJlkdseJ/VegoSvbuQQxqyjreTz31FD/++CO5ubm0bt0awzCiPl+1alVKx5Ud7wxDQVCXip921HSkHUJIO0gbhPGSHWzbRlEUbDuUqKX0tlWctTnedp06dRKa49W4cWM0TWPnzp1R7+/cuZOmTZvG/E7Tpk3L3T/8/86dO2nWrFnUPh06dHD3KZ28zbIs9u7dW+Z3Fy1axJAhQ3j88ccZPXp0UmUpj1NPPZXCwsIK95McGeImWEpi6R7bcfCZW6PmeiayBFEksRIsJbKUUmXqiJUoKhkdCgK/tc3zOiA9fygIaosdntcBqfsjMu55WUckqegoHf+rSodf04g9sStxakrHe/jw4VVyXDnUPMMw8fMuT3hiOGlVIu0QQtpB2iCMl+ygqmrKr2Tw+Xx07tyZefPmue85jsO8efPo0aNHzO/06NEjan+ATz75xN3/+OOPp2nTplH7HDx4kGXLlrn79OjRg/3797Ny5Up3n/nz5+M4Dt27d3ffW7hwIYMHD2b69OlRGc8TLUt5PPTQQ9x+++0sXLiQPXv2RM2JP3jwYIXflySPHedpUHlZjctbuicSyxHkmwaf+p9GNWpFNdzLW4IoknhZjStaSqmydcTLzpyojnzLxxz9KdBreVpHuv4ICD//U54gKPye1pGOP8Jxr9DxeVpHmFT9ERn/q1KHluQ89Vgcqfhf1ZReorOyluyUWc0T5EhlNRcoFFGXLA6icPS6RtohhLSDtEGYI2WHyshqfsHgC1POavrhB+8n9duzZs1izJgx/L//9//o1q0bTzzxBG+88Qbff/89ubm5jB49mmOPPdadJ75kyRJ69+7NQw89xODBg3n99dd58MEHWbVqFaeffjoA06dP56GHHuKll17i+OOP57777uObb75h3bp1ZGVlAXD++eezc+dOZs6ciWmajB07li5duvDaa68BoeHlF154Ibfccgt/+tOf3PL6fD43+VkiZYlH2D6lnxKEh/OHRxhI0id8XvsXnUOWWhTVUE10KaHyGtxuZmFFRRgNqKXEvsbLWy4okaWEyitrZeqoKMt0RTpMS2DrDairH4ppB6/oSNcfRaZDoahLXeMwRpzq0As60vGHQOGwUwfF3Ifmdiy9p6Oizyoqazj+K9Z+bMuuMh1ei/9eRA41zzgEOkVwFHcwQkg7hJB2kDYI4x07HMmhZiNHjmTXrl1MmjSJHTt20KFDB+bMmeMmLfvll1+ignjPnj157bXXuPfee7n77rs56aSTmD17dlRHd8KECeTn53Pdddexf/9+zj77bObMmeN2ugFeffVVbrrpJvr374+qqlx88cU89dRT7ucvvfQSBQUFTJs2LSo5XO/evVm4cGHCZYnHggULkraVJD3CT5LCwzgTbYxD6IlYrOGokY1xn6HiKPGv8XjDURNdvzf8RKz0cNTK1lHRUNvEdATi2sFbOtLzRy0jSHmjp72iI3V/ODhmAUYFne7M15GuPwSOVYiwbIwjoCMdaspQc1VVyy1Tqje35RPvBDlST7xN/HzIdC7gToy0Z1p4F2mHENIO0gZhjpQdKuOO94VDhqZ8x/v9/71X4+94S7xF+Lyuv7QvwaKDbsM1lMk4uUZsZAPc0NWoxritJHaNR3YkgIQ6FVF6SjXAK1tHou35eDpUPTshO2S6jnT9oRq1+Fh9OKE6P5N1pOOPfNNgof9vnCfuxK8kFvcyUUe6/rDI4lP9YQZYE8jRE0uwmooOGf9LePfdd6P+Nk2T1atX89JLLzFlyhSuueaalI5b/cpiMGPGDFq3bk1WVhbdu3fnq6++irvviy++WCYdfeRTCQgNvZs0aRLNmjUjOzubAQMGsGnTpqqWkRI6AS7gTvSjuIMB0g5hpB2kDcJ4yQ41ZTmRTGbx4sXlvrxMprYBlOInSQoQCNo4TvJPjty5oI4gELRRKHmSl+g1HjkXNNlOBZQ8EasqHYkST0eidsh0HYkST0eWGky4zs9kHen4Q6eI88Sd+BLsdGeqjnT9IawCBlgTqJVgp7uydKRCTYn/w4YNi3pdcskl/PWvf+Xhhx/mvffeS/m4GTfUfNasWYwfP56ZM2fSvXt3nnjiCQYNGsSGDRvKrJsapm7dumzYsMH9u7TzHn74YZ566qmo+XqDBg2Kmq+XMMIOvaoMBQs/uhLEC0NKqw4Fi6zipROkHY5uO0gbACDAQkenkCq1QyXUbzVlqFkm06dPnzLvRdrPq3O8M74NUKXIui6EtEMIaYewDXxHtQ0gbAcwyXQ71PT4f9ZZZ8VMlpooGffE+7HHHmPcuHGMHTuWdu3aMXPmTGrVqsXzzz8f9zuKotC0aVP3FZ7bB6E73U888QT33nsvw4YNo3379rz88sts27aN2bNnJ1/Agt+g4NcqeykFv6AX/IBtHd3LxFj4+JgpWPiquyjVirSDtAEA1mEo+IXsgu9QCn6p0jqIgt/SLm5NueOdyezbty/qlZeXx5w5c+jatSsff/xxdRcvZTK5DSCKh24KwO/TUNXyswfHwh2CqobW7xWEh4MmXtdFDkFNJJtzaZwq1pEo8XQkaodM15Eo8XQUOUbCsS+TdaTjDws/nypTCIrE438m6kjXH4qezUJ9KgWWUfEXK1FHKtTk+F9YWMhTTz3Fsccem/IxMqrjHQwGWblyJQMGDHDfU1WVAQMGsHTp0rjfO3z4MK1ateK4445j2LBhfPfdd+5nW7ZsYceOHVHHrFevHt27dy/3mIFAIGpplkOHDqWpLnEMCtACeQgRuq9l4kcQymoYXkoocttBjdoOV9LR25q7baNhYbjbtrutYxcPgrAxsNEAsKK2fThR22qZbRN/1LZAidpORJOG6c5rqimaUvGTgsMwbkXFqjGakvWTisUwbkVB1BhNSflJ+BCBvSgk3nCobmpy4M0U6tWrF/Vq3Lgx5557LtOnT2fChAnVXbyUyJQ2QLz4X2AqOEKgG34U1cBvaAjFR6GpYDmiwms7tGSYBooW+q6ahWEYOCK0lJgqggzjVoC49VU463d4qS1D10HPxrIcCi0qrK9MoVFgqsU6fCiqr1iHQUGxjorqK8sRFEToQPVH6NCxRMV1cFEpHT5dA71W8fDgQIXx3xIa+abm6qBYB4pBgakW6yi/Di7RocfQoUXpiBdXiiyBaTmg18JXSkeRJSqMK5ZQXR2G4QPV7+owTZPBzi0Vxv+QDhUUI0KHr4yO8mJlkSVCybz0Wvh0DZ+ugl4Ls5SOeLEyWocRoUOnwNSK/VF+rCyrw0eW4TAgcBNB08ISFcf/QosoHX5XhwidcxXE/5AOPYYOzdVRUfwP6VAQxToU1Yde7I8CU8UUFcf/Eh3ZGLpOjh5kgDUBYRWG6oAK2jS2UMg3DVeHULNcHfmujth1RLocqfj/7LPP0r59e+rWrUvdunXp0aMHH330EQA//fRT3N948803Ezp+gwYNaNiwoftq0KABderU4fnnn+eRRx5J2i5hMqrjvXv3bmzbjrpbDZCbm8uOHTtifueUU07h+eef59133+Xf//43juPQs2dPfvst9NQm/L1kjgkwbdq0qEZNixYt0pGWNAoOReRgFSdUsvBTRF0+ZDoAh8jlY6YAsJ+WzGciALs5mcXcBsB2zmAJNwLwK135iqsB2MI5rGYUAJs4l28YAcB6LmQ9FwLwDSPYxLkArGYUWzgHgK+4ml/pCsASbmQ7ZwCwmNvYzckAzGci+2kJwMdM4RAh23/IdIqom5CmfbRkHvcgUGqMplT8tIpRHKQpG2uQplT8dJCmNU5Ton76jJs81ekG2fGuTnJzc6OGXXuJTGkDxIv/P/ouIsevs0kdwnouRFVgk+9StvrPQ1eVCq9tXVVY6f8z+b62qEqovjqstiLHr7PY9wCHlaYcEE3Lra8sy6FIb8ZCfSoQqq8+1+9B11V2OSexSMSvrxwBP9i9WKtdid/Q2KIO5BtGoCqwxRjGZn0oAdPmaxG/vvrJ6ULAtFll3Mw+owOqEqqv9qun4Dc0vjDuYZd1LI4ovw4OWD5svQGf6g8DoTp4oT4VXVfZax/HpyJ+/HcEbLE7s0a/Fr+h8av6O1YzClWBX4xBbNQvJWDafCcGx62Df3TOJmDafGOMI884C1UJ+WmX2h6/obFMv4PtVhscUX5cybfqoOi1+FR/2PXTp/rD6LrKAbsJc0X8uOII+NU6jZX6TfgNje1qN77ialQFthm9+c4YzR6rCd+L+HFlgxhAwLRZZ4xmm9EbVQn5abvaDb+hsVK/iV+t03BE/Fg5V0zhgN0EXVf5VH/Y9dOn+sMoei3yrTrlxkpHwHarDcv0O/AbGrvU9izhRlQF8oyz+MYYR8C0+dE5O26s/E4MJmDabNQv5RdjEKoS8tOv6u8IGseyRr+WLXZnHBE/Vs4TE9lrH4euqyzUp7p++lR/GFtvQMDylRv/HQG7rGP5wrgHv6GxXz2FxdyGqsA+owOrjJsJmDY/OV3ixv+vxQgCps1mfShbjGGoSshPW9SB+A2NtdqV/GD3whHx4/8icRu7nJPQdZXP9XvYT0sECgv0B7CzWuDX1QrbNPlKLot9D5Dj1zmstmI+E1EVyPe1ZaX/z+iqErdNky5HKv63aNGChx56iJUrV7JixQr69evn3ng97rjj2L59e9RrypQp1K5dm/PPPz+h4z/++ONRr6eeeor333+fn3/+maFDh6ZiGiDDsppv27aNY489liVLltCjRw/3/QkTJrBo0SKWLVtW4TFM06Rt27ZcccUVPPDAAyxZsoRevXqxbds2mjVr5u532WWXoSgKs2bNinmcQCBAIFCSzEEIgWUGaTDvBFT7cBoqE0fUagmKGprzTYDQHA8fBgFExLaDio3hbjvo6ARLbWs4aOgEsdEQqOiYxXeAVTRM9y6q5t5dddCwsTBQ3G0fKjaqu22h4kRtm/jRMN1tnSAKwt0GUaGmANl8wmQGMRkNs0ZoSsVPJtnM4176MxUDs0ZoStZPFgbzmEQ//oKfwhqhKSk/CQ2j4Mcqr2/COFpt9vXfnFZW04svvoSCwuSny9TKzubtt9/KmKymmcw333wT9bcQgu3bt/PQQw9hWRaff/55NZUsdTKlDRAv/tf78lx0+0CV1cEChY/FZPoyjVrKISLrq4AlCFgGWXoQn67FrK8KLQhaKlm6haHrUfWVJTRssxBLaPgMHb9qlamvHAGWGcAUOn5Dwa86UZqKHAPTDKIrDpqRja6U1VTk+DDNInQllJXbp0TXwQHLJmD58OtB/BE6IuvgQ1YWC7XJ9LMnk61bUXWwJfRiHSqG4SNLNcvUwY5QscwiTBF6Iu9X7Sg/BRydoGmhK3axjrJ+CmkNoCsCzaiFrkTHlaBlU2T58Osmfl2JGVeKInxm6HpUXCnRoWAYfrJUs0xcCYhs5nMPvYL3U8uwi31Wcu5F68hCU8qee9E6SnwWPvdMy3J1ZOlKzFhZ3rlnCQPbLCilQ03q3As4oaWvDMVGN7JQlbLx/3fOA2AejnvuhXQY+HSbbJ2Y8b+8cy8ofDiujiyy1NIxv+JzL+CoBEyBoVjohh9VKVtHVHTuhXTo+HTH1RG6Pg3mMoWB3I+Poipr06iakXZW8+qM/w0bNuSRRx6JmXG8Y8eOdOrUiX/961/lHuP5559n6NChNG7cOKUyVERGJVdr3Lgxmqaxc+fOqPd37txJ06ZNEzqGYRh07NiRH374AcD93s6dO6OC7s6dO+nQoUPc4/j9fvx+v/t3+IT6ZTeh3AaVjKbCcaV8rBQnUChZRkK420rEtoqDGrUdjLEdurgBNGyIuW2VlCdCpB61HaxwO3LZi4q3Y2vyU8iF3OXuXxM0peInjcMMjrBDTdCUrJ90zDI28LqminREayqbxfTX3WBX1UNwA+qke4xUn17LJ94J06FDBxRFofS987POOqvc+dCZTKa0AeLFf7X4mq7KOrhv8M+oioIozoBsECBgOdiWQ5Yu3DV9Y9VX2TqoWMXr/1r49eJKQtjYZhBHCLINga6GdUTXV5oCmqGBaWGZAs3Q0NWQJssR2GYhuhJeEim2piw1iG4oBEwHzAKEoaGU0REsoyOyDq6jFzHQuhPLcjBRI3Q42GZhsQ7cspWugzXFLtZhY5lWGR2WWZSADjNKh25oEKHDitIRO65k6QoKwRj+iNShumUrHVdqKYe5QEwkoNgR/rDi6Ih97kXrKExCB3F0ULzGelhHQQwd0bHSp9g4ZfwR8llIRwAjpo6I+K+CZUDAFFE6Qh3qsA6zAh2qqyMYoUMIgROlI1bMd/ApQVeHbRZildERjNARu47wqxaaISrQYZXRoRKIahNXVZvGIfE55PHQDQOlqAhNCw2jt20bXdcRQpTZNgwD27ZxHAfDFxrqfujQoaj2Q+n6OBa2bfPmm2+Sn58fddM2zMqVK1mzZg0zZsyosPz//ve/ufHGG+nUqZOb0fzUU09NxgTlklGPFHw+H507d2bevHnue47jMG/evJiGjIVt26xdu9YNsMcffzxNmzaNOubBgwdZtmxZwseMxBFV86qyRrRHcVDZS2t3zsvRirSDtEEsbKfq6qLKyLsih5pXPVu2bGHz5s1s2bKFLVu28PPPP1NQUMCSJUsqtZFwJPFCG6AqcVApMNpgCcVNxBSZYCmRJZH8pRJKlV7Lt6KlhMJLEKlKSSKmyDWJE1kSyV1KSYiUdDio5OsnoOq6p3VAev5wUNmvtMYwDE/rgNT9ERn/vawjklR0eKkd1K9fPxRFoW/fvvTt2xdFURg4cCA9e/ZEURSGDBlC586dURSFiy++mPbt26MoCpdeeikQGkIeOdVn2rRpcX9r7dq11K5dG7/fz/XXX88777xDu3btyuz3r3/9i7Zt29KzZ88Kyz9//ny2b9/OjTfeyMqVK+nWrRsnnXQSt99+O4sXL8Zx0uuwZZwHx48fz3PPPcdLL73E+vXrueGGG8jPz2fs2LEAjB49mokTJ7r7T506lY8//pjNmzezatUqrrzySn7++WeuvfZaINQAvPXWW/nLX/7Ce++9x9q1axk9ejTNmzdn+PDh1SFRkgA2Bsu5yk2+cbQi7SBt4EVkx7vqadWqVdTruOOOy7ClsVLjaG4D2BisUsdiGFk4QlAYsFJahziyc1EYsBLuVISJ6lwEbQLBxDsVYSI7F8nqCNf5uu73tI4wqfojbIdwki6v6giTij9Kx3+v6ihNsjq81A5auHAhiqKwaNEiFi1ahKIofPrpp3z55ZcoisIHH3zA6tWrURSFd955h2+//RZFUXj77bcB+O233zhw4ID7iqzvS3PKKaewZs0ali1bxg033MCYMWNYt25d1D6FhYW89tprMYefx6NBgwZceeWVvPHGG+zevZu///3vFBYWMmrUKI455hhGjx7NW2+9RX5+ftL2yaih5gAjR45k165dTJo0iR07dtChQwfmzJnjJkb55Zdfosb+79u3j3HjxrFjxw4aNGhA586dWbJkSdQdjwkTJpCfn891113H/v37Ofvss5kzZ06NaKTUVAwCDOL+6i5GtSPtIG3gRVLtRMuOd/m8/vrrXH755Qnt++uvv/LLL7/Qq1evKi5V5XI0twHcuk6FIlXBtounm2nJPyMxNNUdGqypSsKdijCqAoauEgiGhj4buppwpyKMripYKeiIrPMdD+uIJBV/RMU+D+uIJFl/xIr/XtQRi2R0eKkdZNs2iqK4T4YVRcG27ZjblmWV2a5Tp07Cc7x9Ph8nnngiAJ07d2b58uU8+eST/L//9//cfd566y0KCgoYPXp0Snp8Ph/nnXce5513Hs888wwrVqzgvffe44EHHmD9+vXcd999SR0vo5KrZTLhOV4HXj8BzMpPrqYq0PqYUm/WOg4UrdJ/yws4qOzmZBqzEdVjGZ0rE2kHaQOEHVpfO4Kf8ipnSHhMjNrUuzy95GojL7+CwhSSq2RnZzPr9f/I5Gpx6N27N3l5eYwdO5YhQ4bQtm3bqM8PHDjAF198wb///W8++eQT/vWvf6WVfVUSInxeN/iyL6qd/BOOhH+nuK6rY32PY1lomoLtiKSfpkUOn9WKG/bJPhUMD58N/6SApJ4KQsnw2WR1hO3QUGzENE3P6nD1pOiPyNjnOLZndUSSrD9ixX8v6ohFMjqOVDvI0XLSTq5WnfG/X79+tGzZkhdffNF9r0+fPjRu3Ji33norpWOGsSyLoqIiateu7b5nmmZo2bkkkC0bSUbioPMtw3Ayb1DGEUXaQdrAi8ih5lXDokWLmD59Op988gmnn346devW5aSTTuKMM86gRYsWNGrUiKuvvpqWLVvy7bffyk63x3DQWSuGEbRCQ2GzDK3MXNAKj1FqzmqWoUXNaU2EyDmrWT6dLJ8eNac1ESLnrCarI2yHwuJ1072qA9LzRzj2BYuzfntVR5hU/FE6/ntVR2mS1eGldtCRiv8TJ05k8eLF/PTTT6xdu5aJEyeycOFCRo0a5e7zww8/sHjxYnfqUSL873//i+q4A/z1r3+ldu3a1K9fn4EDB7Jv3z6ApDvdkIFDzSUSCGV47Fe8HuHRjLSDtIEXkUPNq46hQ4cydOhQdu3axRdffMHPP/9MYWEhjRs3pmPHjnTs2FGOFvAoOkHOCvw16umbripghDpeAdMu98levERR4WOVZKWOf37ESxTljygDFTzZi5UoKhkdqgjS03zQ8zrS9YdOkN85D3leB6Tuj8j472UdkaSiw0vtoCMV//Py8hg9ejTbt2+nXr16tG/fnrlz53Luuee6+zz//PO0aNGCgQMHJnzcxx57jEsuucT9e8mSJUyaNImpU6fStm1b7rnnHh544AEee+yxpMobRna8JRmJg8p2zqAZa4/O4cXFSDtIG3gR2fGuOjZv3swJJ5xAkyZNMi45mCQ9HFR2G504TvsWIuq6RDoXFWVnTqRzUV525nBCqYo6F+VlZ05UR6Ep2Kl0oIX+Lboa/fjPSzrS9UfQUfjNPoNc5Rv8huJZHen4Ixz/G1pf43hYR5hU/eGldtCRiv8VrccN8OCDD/Lggw8mddzvvvsuqlP91ltvce6553LPPfcAkJWVxS233JJyx1veFpdkJA46P9LXE8NqqhJpB2kDL6KqasovSfm0b9+e008/nbvvvptly5ZVd3EklYiDzs9av5h1XawliNzvJbgkUumllCJJZEmkqGzOMYbVJrK0UyI6bKHxq94PVY09jNMrOtL1R5Gp8IvWD8Pwe1pHOv5w0Nkk+mAWT7/wqg5Izx9eagd5Pf4fOnSIRo0auX9//vnn9O/f3/37tNNOY9u2bSkfPzNUSiSl0AnyO55AJ1jdRalWpB2kDbyInONddezevZtp06aRl5fHsGHDaNasGePGjeN///sfRUVF1V08SRpUVNfFapQnuw5xrM5FMusQx+tcJLOeckU6ahk2vZUny63zvaAjXX8YisnvlCfxKfHt4AUd6fjDtoroGngUv255Wke6/lCFd9pBXo//xx57LOvXrwfg8OHDfP3111Hrf+/Zs4datWqlfHzZ8ZZkJA4aP3MWDkdnVvcw0g7SBl7E64E3k8nKymLIkCH885//ZPv27bz99ts0atSIO++8k8aNGzN8+HCef/55du3aVd1FlSRJInVdZKO8KGhRFEx+HeLIzkVR8bDWZDJDl+5cFJl20uspl6dDVfWE6vxM15GuPwzDx69KxXbIdB3p+CNoKWw3emHoiSWxylQd6fqjICg80w7yevy/9NJLufXWW3nllVcYN24cTZs25ayzznI/X7FiBaecckrKx5cdb0lG4qCxlQ6eqGSqEmkHaQMv4vXA6xUURaFnz5489NBDrFu3jtWrV3POOefw4osv0qJFC2bMmFHdRZQkQaJ1XbhRLgQIkfwyRhDqXGha8RrCgoQ7FWHCnQsE2LZA05SklmMqT0cydX4m60iGWDpQErdDJutIxx+KppOndUwq/meijnT94QjvtIO8Hv8nTZpE165d+dOf/sSaNWv497//jaaV2P0///kPQ4YMSfn4mT9ZQHJUohOkJzOruxjVjrSDtIEXkcnVqo5AIIDf74/52UknncTtt9/O7bffzp49e9i7d+8RLp0kHRKt6xwBZsQcVNNyUJPsGFiOwI6Yg2raTtIdA9MuKYPtCCxHJNXBiadDVxKv8zNZR/r+SC72Za6O1P2hOAG6Oc96Xke6/tA81A7yevzPzs7m5Zdfjvv5ggUL0jq+fOItyUhsNH6gD7YH7u5VJdIO0gZexOt3vDOZevXq0bdvX6ZOncpnn32GaZox92vUqBEnnXTSES6dJB0Sqeui5qz6NPy+5NYxhug5q9l+Pel1jCF6zmq2P/l1jMvTYYrE6vxM15GuPwotNeHYl8k60vEHisFGpzcBJ7HuSqbqSNcfus/nmXaQjP/lIzvekoxEoLKP1oij/BSVdpA28CIy8FYdM2fOpFWrVjz//PP07t2b+vXrc+655zJt2jS+/PJLbNuu7iJKUqSiui5WoqjysjnHIlaiqPKyOceidKKoirI5J69DsFeUX+d7Q0d6/jAtwW6nVYWxL9N1pOMPw9A5qB5PwBSe1pGuPzRV80w7yMvx/7zzzuPLL7+scL9Dhw4xffr0lKZzyaHmkoxEx6QrL1Z3MaodaQdpAy/i9aFmmcxVV13FVVddBYTW9F64cCGLFi1i5syZ3HvvveTk5HDOOefwwQcfVG9BJUmjY9LReSHmcNTysjMnso4xlJ+dOZF1jCF+duZE1zFOTEeQM8x/oRoaeFpHuv6wOSP4L+zijp93daTuD59i0o2XCCg2AVN4Vke6/vBSO8jL8f/SSy/l4osvpl69egwZMoQuXbrQvHlzsrKy2LdvH+vWrePzzz/nww8/ZPDgwTzyyCNJ/0bm3zqRHJXYaHzPeZ4YVlOVSDtIG3gRRUn1rnd1l9xbnHDCCVx99dW89NJLLFy4kIkTJ6IoCnPmzKnuoklSwEZjnTOozLDaRJZEqujJXiJLIlX0ZK+iJZEqerKXqA7d8LFJPZ9CU/G0jnT9oesGW3yDCVqqp3Wk4w8bjY3KeeiGz9M6ID1/eKkd5OX4f80117B582buvvtu1q1bx3XXXcc555xD165dGTRoEM899xwtW7Zk+fLlzJo1i5YtWyb9G/KJtyRDUSmkHqF7Q94dOpm3a3da37cx2Fc7i7zDe9GIPZezIo5p0jitMlQ/NeNcOJpQFBVVTf6+rqLIe8GJ8ssvv7BgwQIWLlzIwoUL2b17N2eddRZ33HEHvXv3ru7iSVJCJajUJ2AKNCOUiCmZdYjjPdlLZh3ieE/2El2HON6TveR0aFhKA2wbT+uwHYGmKjhOaEkoTVVBASEEjiNQAFVRopJwRX0fjYBaH0VVsW2LQkegFv+e4wiEKPm7vCHQ6fujOs+rUPxXFdXjOorVpHxeeacd5PX47/f7ufLKK7nyyisBOHDgAIWFhTRq1AjDSGxZu/KQHW9JRqJh0pFZ1V2MakfDpM3hf1Z3MaoVeS54Dy8PNct0rr76ahYuXMjevXvp1asX55xzDtdddx1du3ZF12VI9zIaJp3UN6KG1ZqWk9Q6xKU7F4auJr0OcenORXg70XWIY3UuktGhYdJJmYVlhOZ7e1UHQJahuR07RwgMTSVgOgnqsOnMLPBBwAo9aY3seCeiI2A5laKjus6rqPjvYR2RpOIPL7WDalr8r1evHvXq1au042XG7QWJpBQ2Ot8yHPsovzfkYPBTzigc0r/L5lXkueA9vJxcJdN58cUXcRyHe+65hwceeIA777yTHj16yE53DcBGZ50yHN3wowCBoI3jJN6pCOMOq3UEgaCNQvLrEEcOq02mUxEm3LlIRUe4zldUw9M6wqTqj8jY52UdkSSro3T896qO0iSrw0vtIBn/yyfzPSiRSCQST1HT7nhnEuvXr3eHmD/66KMEAgHOPvtsevfuTZ8+fejUqVNKw/wkEolEIkkXGf/LR0ZnSUaiYXE6s9Gwqrso1YqKSev8V1FTnN9dE5DngveQd7yrjlNOOYXrr7+e119/nR07dvDFF19wwQUX8NVXX3HhhRfSsGFDLrzwwuoupiQFNCzaidlYZgAB+H0aqprc+r8QMWdVVfD7NATh+aOJlyVyzmoq6xiH56ymoiNc5wvH9LSOMKn6IzL2eVlHJMnqKB3/vaqjNMnq8FI7SMb/8pEdb0lGYmOwmpHYR/EQawjZ4cfa1x7VdpDngveQgffI0a5dO0aMGMGIESMYNmwYQgg++uij6i6WJAVsDFY5l2EK3R12msz6v1A2UVSy6xhD2URRya5jHCtRVDI6bAxWiZEUmKqndUB6/gjHvgJL87SOMKn4IzL+e1lHJKno8FI7SMb/8pEdb0mG4pDNASDxO4g1EQWBz9mLQhK3Ymsc8lzwGjLwVi15eXm88cYb3HDDDbRt25bmzZszduxYvv/+e2677Tbmz59f3UWUpISDT+zHbyjuXM+KliCKJF525mQ6F/GyMyfauYiXnTk5HTa6vQ9NwdM6hEjXHw6Gsx/bslPWQaX4ozrPq1D8d4TjcR3FalL2h3faQTUl/o8ZM4bFixdX+nHlHG9JRqJhcypyLVoVi+MK/lvdxahW5LngPeQcr6qjbdu2bNy4EV3X6dq1K5dccgl9+vShV69eZGVlVXfxJGmgYdNOnVsmwVK8JYgiqWhJpHhLKUVS0ZJI8ZZSClPRkkiJ6rDMICcpH3leh+OItPxhWSbHWx+kpcN2nNBw5jR0VOd5pWFzsphTKf7w8vXhpXZQTYn/Bw4cYMCAAbRq1YqxY8cyZswYjj322LSPK594SzISC4PlXIXlgWE1VYmNjw11b8bGV91FqTbkueA9VFVN+SUpn+HDh/PRRx+xb98+Pv/8cx544AH69+8vO901AAuD1erYmHVdeU/EEl2HuLwne4muQxzvyV6i6yknokMoPtYa1+Aoset8r+iA8rNlV6QjYGms9V2DpvtT1hEuQzo6qvO8CgqDr8SYqOkXXtSR7nnlpXZQTYn/s2fPZuvWrdxwww3MmjWL1q1bc/755/PWW29hmqnnXcoslRJJMQoODfgJxQPDaqoSBYc65g9HtR3kueA9aspQs0xk2rRpDBw4kFq1alV3USSVTEV1XaxGeaKdijCxOheJdirClO5cJNqpSFyHQkOl/DrfCzo0VU3LH4au0Fj9ucLYV54OVVUqwR/Vd16ZpkVdZ0vU9Asv6kj3vLId2zPtoJoU/5s0acL48eP5+uuvWbZsGSeeeCK///3vad68ObfddhubNm1K+pgZ2fGeMWMGrVu3Jisri+7du/PVV1+Vu/+bb77JqaeeSlZWFmeccQYffvhh1OdCCCZNmkSzZs3Izs5mwIABKRlLcuTQsDmRhWjY1V2UakXFonnhR6geyGRZVchzwXvUpMCbSTz00EMUFhYmtO+yZcv44IMPqrhEVcPR2gZIpK6LapQHbQLBxDsVYSI7F4UBK6V1iCM7F4UBK+FORSI6DCWxOj/TdZCmP7J1J+HYF09HonVqpp5XCJOT1UX41cQ6nJmqI93zygoGPdMOqonxf/v27XzyySd88sknaJrGBRdcwNq1a2nXrh2PP/54UsfKuI73rFmzGD9+PJMnT2bVqlWceeaZDBo0iLy8vJj7L1myhCuuuIJrrrmG1atXM3z4cIYPH863337r7vPwww/z1FNPMXPmTJYtW0ZOTg6DBg2iqKgo6fLpCuhq5b8MLcaPiaM3oZaFjyVcj3UUD7EGsPGzrt4EbOIPNavpHPXnglO2wVEVdZD7qoTYVxMDbyawbt06WrZsyY033shHH33Erl273M8sy+Kbb77hmWeeoWfPnowcOZI6depUY2lTI6PbAKZTpS/L1PjK/D2WqZUb/1UFjIhOgKFX/GS1NLqqoEV8ydCSbw5GfkdL4MlqaeLpSKbOz2QdyRBLR7KxL1N1JEvkd4Tq5yv1hqTifybqSNUfmqayJ6iyK+jno8BYdgb87A4oVfbaG0g/BteU+G+aJm+//TYXXnghrVq14s033+TWW29l27ZtvPTSS3z66ae88cYbTJ06NanjKkJkVu+ue/fudO3alaeffhoAx3E47rjjuPnmm7nrrrvK7D9y5Ejy8/N5//333ffOOussOnTowMyZMxFC0Lx5c26//XbuuOMOIDRhPjc3lxdffJHLL788oXI5jsO+vXtoMO8EVPtwJShNgOzmoB6dnQ0HjV/pynEsR/XAHb545O3andb3HTR2ZZ1Dk6LPUrbDMU0ap1WG6qamnAspYxdC0c4j9nOOVpt9/TfToGGjpOdchevJ8bffkdKNzaysLB579G8p/fbRwtdff83TTz/NW2+9xcGDB9E0Db/fT0FBAQAdO3bk2muv5aqrrvLkvO9MbAO48f+ZM1GDRyj+d2gARuxrIDx8NtxMjZc8qzzCw2c1TcEuJwlYPCKHz2qqgm2LpJ8KxtOhqnrCdX4m67AdkfBxYukwDB9blcTsEE8HlE3ylayO6jyvTFtlp3EWJ2grEo7/magj1fNqW76g2+fNEv5OuuT4s/nqvjdk/AcaN26M4zhcccUVjBs3jg4dOpTZZ//+/XTs2JEtW7YkfNzqVxZBMBhk5cqVDBgwwH1PVVUGDBjA0qVLY35n6dKlUfsDDBo0yN1/y5Yt7NixI2qfevXq0b1797jHBAgEAhw8eNB9HTp0KB1pKSGKF5Ey8SOK/zaLn3xGbjuoUdvhO4PR25q7baO5CRpsNHddQBsduzjRvY2BTegxvBW17cOJ2lbLbJv4o7ZFcfUX3k5EEwiasxoV2/OaLCW7eFvFVrJKtl2faXG2dQQauUULAcXV5GDguPoMHFefL2Lbf0T8dCTOPQG04ksctBqjKblzz3s332rKHe9M5Mwzz+S5555jz549rFy5kjfffJPnnnuOuXPnsnPnTlasWMH111/vyU53prQBMjn+W46gyHRwlGyyfDo+nw9HySJg2gQdJaH6KrwutKr7MIws/IaGKTQKTCWUCbuC+soRkG9qWKJ4LWQjG1XXsSyHfMtIqA42S+nw+wwcJbt4TquTUPzPt3RXh16swxIaBaZarKP8OrhEhxpDh55QXDEdKDJtHCUbfykdjiChuFKiw0A3sl0dRabgOPElorj8IR1lNTkCCkwVS2gROgwsyyHoGAnFStMp7igq2fh9Bn6fjqNkU2TaoQEZCcTKEh16hA6VfFMr9kf5sbKsjix0XaOZ+QWFlpJQ/A86SpSOLFeHg+mIhOJ/vmXE0KG4OiqK/yEdCmaxDsPIQtV9WJZDgaUlFP9LdHhvtOORiv/PPvss7du3p27dutStW5cePXrw0UcfRe2zdOlS+vXrR05ODnXr1uV3v/tdwtO1Hn/8cbZt28aMGTNidroB6tevn1SnGzKs4717925s2yY3Nzfq/dzcXHbs2BHzOzt27Ch3//D/yRwTQgls6tWr575atGiRtJ502bZPsH13Ph8yne278/ltj82HTCdv125+3utjrnM/ebt2s2VfXT617yRv125+2J/LfOtP5O3azYYDrVlkjiNv126+O9SWz4NXkrdrN2sPd2Jp4BLydu1mTX4vviocTN6u3aws6M/Kgv7k7drNV4WDWZPfi7xdu1kauIS1hzuRt2s3nwev5LtDbcnbtZtF5jg2HGhN3q7dzLf+xA/7c8nbtZtP7TvZsq8uebt2M9e5n5/3+sjbtZsPmc5ve+yENP2wrzEfib+wfdchT2sq1JqzquFTABzWT2BNg4cBOGCcxtoGUwDY5+vMuvqhJzm7ss5hQ71bANiRfS6b6t7I2vqT+bXWRfxUewwAv+Rcxi85lwHwU+0xbK01FIAf6v6BHdnnArCh3i3syjoHoEr9dCTOva8Pd2Oe+Uc+C44+Iudepl1PK+wrj0R1U6nIjnfVo6oqHTp0YNiwYVx++eUMGDCAxo29PbolU9oAmRD/D1m1KbB8fMh0CiwfB606fMh0gqZNgZLLIuMBTNtht92CL4x7UYAd1oksFLcRsBx+tU/nc3EDAcths92FL52xBCyHjVYvvlZGoaoKP6rnssYZge0INutD2aQOoShoscYZwXpnAAHLYYXzf2yyzyZgOXzpjGWz1YWioMVK/Sb2aGdiO4JF4jb2KCejqgqfaXez0zyWgOUwV0xhj9WEgOXwIdM5aNVxNRWaBkHqMd/3CKbtsM9uwiLjARQgz2rNR+Kv5Fs62+wTWRRD049WZ1ar16CqCj8r57DC+T9sR/CzPpD12iUUBS3W2oNZ6wwmYDkxNRUFLb7Wr2Wn1h3bEXwubiBPaY+qKixVb2er2YaA5TBPTCTPahFT0yGzNg5ZzPc9QpHt47Bdh/m+R1CAQ+IY5or7KTJt8qxjmSfuosi02Wa1YaG4jSLT5mfzNJarf0RVYStd+dIZi2U7/Kb9jm+00SwWt/CdPZDVzkUUmTZr7QtYa19AkWmz2rmI9Xb/kFbtSn7Tfodlh/y0la6oKqzUb+Jn8zQClsMicRvb7BNjaLqffVZjFGC+7xEO23Uosn3M9z2CQxaHzNp8yHQClsMeqwlzxRQClkOe1YJ5YiIBy2Gr2Yal6u2oqkKe0p7PxQ3YjmCn1p2v9WspClpsss9mhfN/BCyH9c4A1jgjCFgOa53BrLUHUxS0WK9dws/6QGxHsML5P7YofVjuu51V6rX8aHUmYDl8Lm7gV/v0GJruYrfVAgVYZDzAPrsJpu0w3/cIQepRaBplrqfSmnaax/KZdjeqqrBHOZlF4jZsR7BHO5OV+k0UBS02WyXXUyxNRUGLTeoQNutDsR3BGmcEP6rnoqoKXyuj2Gj1Krme7C5lNC0Ut7HDOhEF+MoYf8TrnnQ5UvG/RYsWPPTQQ6xcuZIVK1bQr18/hg0bxnfffQeEOt3nnXceAwcO5KuvvmL58uXcdNNNCT9NX7BgQczs5fn5+Vx99dVJlTWSjBpqvm3bNo499liWLFlCjx493PcnTJjAokWLWLZsWZnv+Hw+XnrpJa644gr3vWeeeYYpU6awc+dOlixZQq9evdi2bRvNmpUM17jssstQFIVZs2bFLEsgECAQCLh/CxFaW/JIDjXPK8hBoGAr2WiiEFCwlSx0UVj8fnhbxVF8aKIotI2BRgAHDYEeY1tHoKIRLN5W0DDdp6gqJjYGCgIVCxsfSvE9Whs/ChYqdpltFRMFB1vJQhVBFBwsJRtNFKEg3G0QFWqyMdjr60aj4JcoiBqhKRU/2Rgc9J1BveDXhO73el9Tsn4SKBzwnUnd4Fo0gjVCUzJ+UhSVJtkHj0idA5Uz1PzPEyZQVBSo+AulyMry88jDDyf92zNmzOCRRx5hx44dnHnmmfz973+nW7ducfd/8803ue+++/jpp5846aSTmD59OhdccIH7uRCCyZMn89xzz7F//3569erFs88+y0knneTus3fvXm6++Wb+97//oaoqF198MU8++SS1a9cGoKioiOuvv56VK1eyfv16LrzwQmbPnh1VjoULF9K3b98y5du+fTtNmzZNWH9NIVPaAHHj/xEcai46NARDwcKPTgDLgQJTx6cE8Bk6juLDIICDio2BJgIUmgJLaOQYNqqq4aCjE3RHC9lWEUFLRdM1aul28ZM3FQ0TG714De0AQvHhNxQMxcbCKI49NkHhwzSDICw0IxufaqPiYOFDxUKl+Im3FcCng6pnoxNEIfSkUSeI5TgUmAaGEsAfoUMQelqviQD5psIOpSOttNXoqhKhQw3FRauIoKWg6gY5uoWNhkBFxww9gXQULLMIoRjFydqs4qerYR0GphlK3BXSEbJitA4dxwq6OjRMVBxXh+045JsGhhLEb6g4SshPROgoMh1M4SPHMFHV0NPQsM9KdICq+8jRLddPOkFsNIKOxnb7FJqI78gyNAzFdJ92a1iYwiBYrEM3stBVgebqsFGxo3Roeparz8QfilOO7erIMlRsJaQPBBZ+VBEgEKFDU0NP6yPPPccqLKVDjTr3go6KbRaCYmAYOj7FjDr3TKGHhoaX0REa8ZZHO+pa68EK4NNFlI6wz0I6dHTFIttQXB3hc08VQQKmhSn81DJM9Agd4XOvRIefHN0spUMl6GjFOnQMw4dPCUade6bQCJgCRQTRDX9onjjR516BpWFbNj7dKdZhR517IR0aumKTbSjkBbPoML/eEalzoHKGmh/p+B9Jw4YNeeSRR7jmmms466yzOPfcc3nggQdSOpamaWzfvp1jjjkm6v3du3fTtGlTLCu1pMd6St+qIho3boymaezcGT2fcefOnXEbIU2bNi13//D/O3fujAq6O3fujDt0AMDv9+P3lwzxCJ9QewtrgVW16fxDd0IU919dFLqfhLeVqG2nuFNRvE3ohA/Nh7FjbJecLNHbJXd2tKjtYMR2oOJtUTK3o6Ts8bZja9IwaRL8oszxvawpFT+pWDQKRmf09bqmEh2J+6m0DWqCpnJ1ENnoN9lTkB2lP7KOqHT0WmkfWSG1p9dKCr8cTsY1c+ZMunfvzhNPPMGgQYPYsGFDmYAJJcm4pk2bxoUXXshrr73G8OHDWbVqFaeffjpQkozrpZde4vjjj+e+++5j0KBBrFu3zh3CPWrUKDfTqWmajB07luuuu47XXnsNANu2yc7O5k9/+hNvv/12uRo2bNhA3bp13b9jlftoIFPaAPHiP2fUBzv2OrqWIwhYxRmU9ZK5oKHliIqXEtLLn2casBws20HXVPzFrTODAJYjCJo2PsUunmcqIuolB5UAKJBtKARMk4Ap8BugF2eCVrExLRPLcvDpuMfWIuoxDQtNBc3QCJhBLFNBMzR0xXR12GYhuNmZS+o0PaJOy9FNAhDKBE0hSvGc1mgdThkdCgKjWEeOIWhhLsc0BaqhRehwMK2iYh0qft2KocOO0GFimRaaoaFF6ShKQIcVpcMopSMQpSOyzi7RkWWoKGbA9YdRgY5wJyysI1u1ack3oeH3xf7QFMvVYUXpKIk98XRAkTvvO54ONSL2xNdRcu6ZVmEMHQ5qcRlUbLJUG6vYH7Zp4RgamhLyWUhHACWmjpBvjuVr0CGAKKMjdDMnUR0aihkgaAqUCB0KAidKhxlDh0OW6hTrsLBNO4aOYISOkvnokfG/lm4TwElYxzG+Ir7tF92JFUDAdIozpatoEbE2aAs3C7tPi1/X2EIQMJ3iuetqyXx4LSfudxJF03QUJeh2nh3HQdM0hBAVbIcqpkOHDkW1H0rXxzH12DZvvvkm+fn59OjRg7y8PJYtW8aoUaPo2bMnP/74I6eeeip//etfOfvss8s91sGDBxFCIITg0KFDUdO2bNvmww8/TCtGZ9RQc5/PR+fOnZk3b577nuM4zJs3L+rudyQ9evSI2h/gk08+cfc//vjjadq0adQ+Bw8eZNmyZXGPWR5O8aVYVS+TbFY3eBiLLKqsYe0BbPysafAQR3M2b5B2AGmD4qYkQWqxssEjBKlV/GSk6uqhdFFUFTWFl5LCXe7HHnuMcePGMXbsWNq1a8fMmTOpVasWzz//fMz9n3zySc477zz+/Oc/07ZtWx544AE6derkJvMSQvDEE09w7733MmzYMNq3b8/LL7/Mtm3b3CfW69evZ86cOfzzn/+ke/funH322fz973/n9ddfZ9u2bQDk5OTw7LPPMm7cuAqfXh9zzDE0bdrUfWVCYpnqIOPbAIYa96X7NfzZBo6mEEDg6CqOroa2NQV/toHu18o9hpZdiy9z7qNI8RGwQ7fXklmHONb6v5DcOsSx1jFOdh3i0usYJ6vDUXwsMe7GUfye1pGuPyx8LFbvQjOyPa0DUveHhY/53ImFz9M6IklGh6pAY7+gvt/gG/8E6vsNmvgFzXMUmvgFtRWL+oZDY7+gjmZTT7XIrQXNa4W+F++VmwXNcxQaGDa1FYuGPkFDnyBHSX/p2g4dzkRVVdq3b0/79u1RVZVOnTrRrl07VFWle/funHTSSaiqSq9evWjdujWqqnLOOaHpkS1atIia6jNt2rS4v7V27Vpq166N3+/n+uuv55133qFdu3Zs3rwZgPvvv59x48YxZ84cOnXqRP/+/StcSrJ+/fo0bNgQRVE4+eSTadCggftq3LgxV199NX/84x9Ttk9GPfEGGD9+PGPGjKFLly5069aNJ554gvz8fMaOHQvA6NGjOfbYY11H3HLLLfTu3ZtHH32UwYMH8/rrr7NixQr+8Y9/AKG5Brfeeit/+ctfOOmkk9ynF82bN2f48OHVJTMuKiatD78a9bTsaETaIYS0g7RBGC/ZQdNC68dG3vEu7+634zgIIdD15O54h5NxTZw40X0vkWRc48dHz5sbNGiQ26muKBnX5ZdfztKlS6lfvz5dunRx9xkwYACqqrJs2TIuuuiiZMxFhw4dCAQCnH766dx///306tUrqe/XJLzcBtBVBQyNgGlTFAw1YJPJqKxicYbyLj491BEQQiSdUTncuQiYdqhzkUJG5XR1QEkm7VR0hO2QbQhMU/GsDkjPHyoWp/MuPjX0dNWrOsKk4o+wDcKjybyqozTJ6ihth6rS4Wjpzz7+5pu1KIrizrVWFIU1a9a42ytWrEAIgaIofPnllziOg6IoLFmyhMEXnM9vv/1WJv7H45RTTmHNmjUcOHCAt956izFjxrBo0SKc4mVY//CHP7ixo2PHjsybN4/nn3++3M78ggULEELQr18/3n77bRo2bOh+5vP5aNWqFc2bN0/ZPhnX8R45ciS7du1i0qRJ7Nixgw4dOjBnzhw3Mcovv/wS9TSgZ8+evPbaa9x7773cfffdnHTSScyePdsdMgih+WH5+flcd9117N+/n7PPPps5c+ZkZNZXBYf65trqLka1I+0QQtpB2iCMl+xwZvv2LPvqK7ceXrt2LR07dqSwsJD169fTpUsX9u7dyw8//ECPHj3YunUrP/30Ez179gRCd7wPHy6ZSzt58mTuv//+Mr9TXjKu77//PmbZKiMZ144dO8oMNdN1nYYNG5abtLM0zZo1Y+bMmXTp0oVAIMA///lP+vTpw7Jly+jUqVO5333hhRcYOXIktWrVSvj3vIDX2wBuYzYYGmrq9yXeGFdxOIbvQYciEWpIh4+RzBLA4UZ5YcDCtgWapiS1jFG6OsL4dTXUqUhSh2sHBVQP6wiTqj9cOwCqh3VEkqw/Im3gZR2xSEZHLDtUiQ4jcqJbaoQ71eEUYqW3w53ieNt16tRJeNSXz+fjxBNPBKBz584sX76cJ5980l16sl27dlH7t23bll9++aXcY/bu3RsI3YRv2bJlpSd9zbiON8BNN93ETTfdFPOzhQsXlnnv0ksv5dJLL417PEVRmDp1atKLnMeiceNGqHbVddhN/MxnIv2YFpqXcpQi7RBC2kHaIMyRsoOj5bAvzWOs/fZbFEVh3bp1QKgO/vrrr93tVatWucF52bJl7h3vL7/8Muk73l7mlFNO4ZRTTnH/Ds9Fe/zxx3nllVfK/e5dd93FLbfcwqWXXso111zj3rSoCWRqGyBoOSh2BTleBNiOQ/j0DZo2tqomNHPMws9n2j2cbf0F1bHcYwRMO9TxSgLHEe73HUdQZNrJNSDT0OEeQoiociSqI2yHc+y/ojpFntURSSr+iLSDLgKe1RFdiOT8EWWD4rjnRR0xD5GEjlh2qCod6ZLqCiWV0cF1HIdAIEDr1q1p3rw5GzZsiPp848aNnH/++XG//80333D66aejqioHDhxg7dr4Dzvat2+fUhkzsuN9NKNh0pUXo5IxHI1IO4SQdpA2COMlOxypO97VlYyradOm5OXlRR3Dsiz27t2bdjbybt268fnnn1e439atW/nf//7Hiy++SJ8+fTjhhBMYO3YsY8aMOSozoh8JfLqKqsQ/L8NzPcPDTiFi7qde8VM5A5vOzgsIJ4hSPOzUtEPDzlU18adZAcvBcULDTg1NJWDa2E4oEVMiT+XS1QHhOauOO3w2GR0GNt14ERXT0zrCpOqPsB38mo1pCs/qCJOKP8I2yNZtVFTP6ihNsjpK26GqdBRVQu7oI9XxnjhxIueffz4tW7bk0KFDvPbaayxcuJC5c+eiKAp//vOfmTx5MmeeeSYdOnTgpZde4vvvv+ett96Ke8wOHTq4I9o6dOgQ1XYpXVbbTu0mxdGZwSWDUXFoyE+oVG3m9ExH2iGEtIO0QRgv2eFIreNZXcm4evTowf79+1m5cqW7z/z583Ech+7duyeloTRr1qyJ6vDHQ9d1LrroIt59911+/fVXxo0bx6uvvkrLli0ZOnQo7777rnsjQ1L1xEqwFCsRU7nHcGxqmT+iK8Kd6xkrEVN5lE4UFS+hVFXqiJUoKhkdKg451mYcy/K0DkjPHyoO9cVPmKbpaR2Quj8i456XdUSSio7S8b8qdaTLkYr/eXl5jB49mlNOOYX+/fuzfPly5s6dy7nnngvArbfeysSJE7nttts488wzmTdvHp988glt2rSJe8wtW7bQpEkTd3vz5s1s2bKlzCucvC0VZMc7wzDx8wEPYR61GZxDSDuEkHaQNgjjJTscqcALoWRczz33HC+99BLr16/nhhtuKJOMKzL52i233MKcOXN49NFH+f7777n//vtZsWKFO7Q5MhnXe++9x9q1axk9enRUMq62bdty3nnnMW7cOL766iu++OILbrrpJi6//PKopCvr1q1jzZo17N27lwMHDrBmzRo3yQzAE088wbvvvssPP/zAt99+y6233sr8+fOTzpiam5vL2WefTY8ePVBVlbVr1zJmzBjatGkTc2i2JDXsOI3Z8rIaJ9ootxxBvmmwwPcIqlEr6qlZop2LeNmZE22UV5aOeFmmE9WRb/n4RJsOei1P60jXHwHh50OmERR+T+tIxx/huFfo+DytI0yq/oiM/1WpQ0tyyH4sjlT8/9e//sVPP/1EIBAgLy+PTz/91O10h7nrrrv49ddfyc/PZ8mSJRUuJdaqVSu3HLm5ubRq1SruK1XkUPMMQyfIOTwRtQ7j0Yi0QwhpB2mDMF6yw5Gc41VdybheffVVbrrpJvr374+qqlx88cU89dRTUWW74IIL+Pnnn92/O3bsCOAOXQsGg9x+++1s3bqVWrVq0b59ez799FP69u2bkPadO3fyyiuv8MILL7B582aGDx/O+++/z4ABA8jPz2fq1KmMGTMmqgyS1AmYNooqohqqiSwlFJk9OGDaZRrc4ca4oQjO4Ul8StlrPDILcuTfbtkqWBKpdBZkSpW1MnWUl505ER3CKuQsHqeWXnZajZd0pOsP2yykK49Sy7A8rSMdf+gE6ek8jm0WonlYB6Tnj3D8t60i7CrWkS7VOce7MjnmmGO46KKLuPLKK904XxkoItbgdUkZHMdh3949NPiyL6qdX93FkUgkkirB0XLYd9YCGjRslHSgCdeTk++fQiCQfAI4v9/PlPsnp/TbRxtDhgxh7ty5nHzyyVx77bWMHj06atkTCA3Fa9q0qRxynibh8zp78e8Q1mG3wZpsIzZWwzuZdYghdgcimXWIY5VZ6pA6pA6pA2T8j+Sdd97htdde44MPPqBevXqMHDmSK6+8MmoZ0VSofmWSKEz8vMsTnhhOWpVIO4SQdpA2COMlO6iqmvJLkhjHHHMMixYtcoeol+50AzRp0oQtW7ZUQ+lqJqWHcSb75Kj0cNTSjXFbqfgaLz0cNZnGOMQejlrZOhJ5iFaeDlXPrtAOXtCRrj9UoxYfqE9WWOdnuo50/JFvGnzqf7rM9Auv6UjXH/mWjzn6U2WmX1SljlSpKfH/oosu4s0332Tnzp08+OCDrFu3jrPOOouTTz45rRUyMkulBJ0gA5nsieGkVYm0QwhpB2mDMF6yw5Gc43200rt375hrfQeDQV5++WUg5Id05qJJolGKG7MKEAjaOE7yjVi3Ue4IAkEbBdzGeKLXeGSjPJlORRi1inUkSjwdidoh03UkSjwdWaqZcJ2fyTrS8YdOgAFicszpF17Ska4/hFVIH2tSzOkXVakjFWpa/K9Tpw5jx47l448/5ptvviEnJ4cpU6akfDzZ8c44BDpFwNE+A0DaIYS0g7RBGO/YoaYF3kxk7NixHDhwoMz7hw4dchPLSbyGd67xqkXaIYS0g7RBGO/YoabF/6KiIt544w2GDx9Op06d2Lt3L3/+859TPl7SHe8tW7bw8ssv88ADDzBx4kQee+wxFixYQFFRUcqFkJRg4edDpmN5YDhpVSLtEELaQdogjJfsUNMCbyYSXiu9NL/99hv16tWrkt882uO/iFz31qehqokt3ROJO+xUVfD7NATheZeJX+ORw2eTWUopjFPFOhIlno5E7ZDpOhIlno4ix5dwnZ/JOtLxh0UWc5TpBEXicS8TdaTrD0Wvxaf6wxRYviOqIxVqSvyfO3cuY8aMITc3lxtuuIHc3Fw+/vhjfv75Zx566KGUj5twVvNXX32VJ598khUrVpCbm0vz5s3Jzs5m7969/Pjjj2RlZTFq1CjuvPNOObQtDXQCXMCd6CSfmKAmIe0QQtpB2iCMl+xQU7KaZiIdO3Z07du/f390vSSM27bNli1bOO+88yr1N2X8DxEwbUTEHEm1nOzBsYg51zPiGD4jwAVK+dd4vDmr8bI5lyZWgqXK1pFq8qiwDo1CLtDLt4MXdEB6/rDNAgYaE9DV8odZZ7qOdPxRyzDpE7gDWwngeFhHuv7wEWSANQFhFRAgteRqyepIlZoS/y+66CIuvPBCXn75ZS644AIMw6iU4ybU8e7YsSM+n4+rrrqKt99+m+OOOy7q80AgwNKlS3n99dfp0qULzzzzDJdeemmlFPDoQ8Eiq3hOT+YPKak6pB1CSDtIG4Txjh0UJbUgmmFxNyMJryW+Zs0aBg0aRO3atd3PfD4frVu35uKLL66035PxvwRHCLIiGqwVLd0TSbwES9FLEDkIIwtdiX2Nx+tUVLSUUkn5Y2c1rnwd5XcuKtJhWoIAfurqse3gFR3p+qPIdCgwfehGECNOP8sLOtLzh4pq1MIxAx7Xka4/FFQ9G4UAlmVXuY50qCnxf+fOndSpU6fSj5tQx/uhhx5i0KBBcT/3+/306dOHPn368Ne//pWffvqpssp31GHh42OmcAF3YnjgyVZVIe0QQtpB2iCMl+ygkOIdbzIs8mYgkydPBqB169aMHDkyam3xqkDG/xL8hoYuos/RRBqzFWU1DjfK802DhcoUzhN34leir/GKsjNX1LmoaCmhytRRXuciER0WPhbqUxlgTSBHj37a6yUdkJ4/NCObz5W/0CdwBzmG6Vkd6fjDwsd8dSoDjQk4ZoFndUB6/nDjv34nCoVVqiNdvBz/Dx48SN26dYHQdK6DBw/G3Te8X7LIdbwTRK7jLZFIjgYqYx3PaQ9NJxhMPvu6z+dj4l13Zsw6nhIJJBb/4zV4k1lKKN6+ySyJFGvfZNYhljqkDqnj6NVhKrU42HPhURv/NU1j+/btHHPMMaiqGvMGQji/im3bKf1GwnO8S5OXl0deXh6OE52woH379qkeUgIIFA6RSx12omT4cNKqRNohhLSDtEEYL9mhpszxyjQaNmzIxo0bady4MQ0aNCjXXnv37q2ycsj4X5ZYT5KAhBvjAJqqEjSaYpjb3Cdipp3ckkiln+wZmppwY7yydMR6speMDoFCQG+Oj+3usFov6oD0/CFQOKzkkmPsJGhantUBqfsjMu7pKp7VEUkq/igd/6tMh5NaZzISL8f/+fPn07BhQwAWLFhQJb+RdMd75cqVjBkzhvXr1xN+WK4oStp3ACQhLHx8xq0MZHLGDyetSqQdQkg7SBuE8ZIdVFVN6Y61fMpdPo8//rg75+zxxx8/4g0VGf/LJ6oxGwzZQlUTa4xD6Bpfot5GP2MSjllAYcACSHod4shGuWU5UFyuRIeUpqsDojsXyepw6zp9sjus1os6wqTqD9cOymT8hvCsjjCp+KN03POqjtIkqyNW/K8SHUb6McXL8b93797u9vHHH89xxx1XJs4KIfj1119T/o2kh5qfeeaZtGnThjvvvJPc3NwyBaqpGU3lUHOJRHI0UBlDzR/526MpDzX78x23y6HmGYqM/4nFf8sRbkPW70ttDmWRaWPboeZZtl9PuEHvllngNug1TSGr+IlWMkgdJUgdIaSOEmqiDl923bSHmteU+B857DySPXv2cMwxxxy5oeabN2/m7bff5sQTT0zpByXl46Cyn5bU5xdUEl93sKYh7RBC2kHaIIyX7ODloWZeYcCAAVx55ZWMGDEi5SQvySLjf8WE52+GT+VkEhiFr/Fs6yccW6BpCnbx8ZJ5mhaev4kCmqpg24KA4iT1VDAdHWECloOdgo6wHeqKXzBN07M6XD0p+iOyzncc27M6IknWH7Hinhd1xCIZHbHsUGU60qSmxP/wSK7SHD58OK2kpknfUujfvz9ff/11yj8oKR8bg+VchU3lrBfnVaQdQkg7SBuE8ZIdwoE3lZckMU477TQmTpxI06ZNufTSS3n33XdDnZQqRMb/8olMmpTl08ny6aiKQsC0sZyKBxfaGHwlriJoaei6Spah4Tc0HCGK529WXIbSSZOyjNCxLMshYCV2wy5dHRCd/ClZHTYGy8VVFJqqp3VAev4I1/lBR/e0jjCp+KN03POqjtIkq6O0HapSR7p4Pf6PHz+e8ePHoygK9913n/v3+PHjueWWWxg5ciQdOnRI+fhJDzXfvXs3Y8aMoVu3bpx++ullFhQfOnRoyoXJZORQc4lEcjRQGUPNH3v8iZSHmo2/7daMGWqW6TiOw6effsprr73GO++8g6ZpXHLJJYwaNSpqrlplIeN//PgfL1NxMpmG4y4llGDG5PJ+K9GMyVKH1CF1HL06bDWH/T2O7vjft29fABYtWkSPHj3w+XzuZz6fj9atW3PHHXdw0kknpXT8pIeaL126lC+++IKPPvqozGcyuUr6OKjs5mQaszHjh5NWJdIOIaQdpA3CeMkONWWoWaajqioDBw5k4MCBzJw5k//973/89a9/5V//+leVxOKjPf4HLYesGKdoeQ3mWNmDYzXKA5ZD0IIDRjuaaz9AxDWeyPq/FTX8K1rHuDJ1xGv4J6qj0BTs4VSaGj+gq9HPhrykI11/BB2FHdZJNFI24jcUz+pIxx/huFfH+h7HwzrCpOqPsB0aio2YplllOiojBHs9/oezmY8dO5Ynn3yy0qdyJX1L4eabb+bKK69k+/btOI4T9arpQfdI4KDzLcNwUl/prUYg7RBC2kHaIIyX7OD1oWZeY8eOHcycOZPp06fzzTff0LVr1yr5naM9/scaxpnIU6pwozzecNRwY1zVfWzULop5jevFWZNjDUdN9GmbX1fjDketTB3lPW1LRIclNDYZI1DV2NNqvKIjXX8Umgob9REYht/TOtLxh4POWjGMoKV6Wgek54+wHQpNpcp1pEtNif9PPPEElmWVeX/v3r0cPHgw5eMm3fHes2cPt912G7m5uSn/qCQ+OkH6MR2d5Idp1CSkHUJIO0gbhPGSHWpK4M1kDh48yAsvvMC5557Lcccdx7PPPsvQoUPZtGkTX375ZZX85tEe/0s3ZpNpxMZrlEc2xnN0q9xrPFajPJkhrhC7UV7ZOipK7lSRjhzDpr9Sfl3nBR3p+sOnmPRTpuNT4tvBCzrS8YdtFXFW4K9k6ZandaTrD1UE6Wk+iCoCR0RHOtSU+H/55Zfz+uuvl3n/jTfe4PLLL0/5uEl3vEeMGFFli4oLIZg0aRLNmjUjOzubAQMGsGnTpnK/c//995dx3Kmnnhq1T1FREX/84x9p1KgRtWvX5uKLL2bnzp1VoiFdHFS2ciZO8q6pUUg7hJB2kDYI4yU71JTAm8nk5uZyzz33cPrpp7N06VI2bNjApEmTaNOmTZX95tEe/30Rjdmi4uGgyTRiSzfKi0w7qjGeyDUe2SgvCloUBa2EOxVh/FWsIxHK06GqWkJ1XabrSNcfhmGwXanYDpmuIx1/BC3YbXTC0BMb6ZWpOtL1R0HQYbvSAcMwjpiOVKkp8X/ZsmXufO9I+vTpw7Jly1I+btJjFv8/e2ceH0WR/v93XzNJgARBBJFTQRFF8URcb0AUVDzW9UDxdr2v9WK/3hfe4o3723V1d2VVXM8V8eBQFFQQEBRlkVNuFUIgJDN91O+PSXdmkplMz0yGTCf1fr0GOj09PfV5nul6qrqrntp9990ZPXo0n3/+Of369auXXOWaa67JujAPP/wwTz31FC+//DI9e/bk9ttvZ+jQoSxcuLDB1O177bUXn3zyife3XucCvf7663n//feZMGECZWVlXHXVVZx66ql88cUXWZc1XzjoLOFoOvIDagCebOULaYcY0g7SBi5BsoOqqlklR5EJ1fzz7rvvMmjQoO1qMxn/Y41ZIYS39m44lFkj1m2UV0UsbykhtzHu9xr35oLmsIZwPnX4JZUOK4O6rpB1ZEIyHY7i3w6FrCMXfyhaiBXaMezCj77jXiHqyNUfDjo/68fQTVkEGcT/XHVkQ3OJ/5FIJOlQc9M0qaqqyvq8GWc179mzZ+qTKQpLly7NqiBCCDp37syf/vQnbrzxRgA2b95Mx44deemll1I+1r/rrrt4++23mTdvXtL3N2/eTIcOHRg/fjy///3vAfjxxx/Zc889mTlzJocccoiv8sms5hKJpCXQGFnNn33u+ayzml55xeVNntVUkhwZ/4/GMbfGkifVtJwyeYrl4g47BaCmgZ5Jx8AbPlszjFVVM3+K5Q47lTqkDhepo5aWqkPG/1qOPvpo9t57b55++umE/VdeeSXz589n+vTpWZ03Y2XLli1L+co26LrnXbduHYMHD/b2lZWVMWDAAGbOnNngZxcvXkznzp3ZddddGTlyJCtXrvTe++abbzBNM+G8ffr0oVu3bg2eNxKJUFFR4b22bNkC4CU9sdGxvW0DGw0AK2E7hJOwrdbbNgknbNvorOAQIpQgUBA1+wUgUDAJQ51tBzVh2yKUZFvztm00rJq1AG00b13AfGkSKAnbfjRZGCzlMBy0ZqMpGz9FKWIFh2ASajaaMvWTSYgVHEKU4majKRs/OWgs5TDvnPnUlCvNZahZobH//vuzadMmAPbbbz/233//lK980NLjf9SJZRwWikEoXISuq0QsjSrLvW7TX9uVlk7UijWAjXArUGLnrHJCvuK/I6DadIiKMOGQhhEyiIpQTVIyf/VVpGZdaBSDULi4RofKthodfuqrRB0lno5qJ+SrDrbr6AiFdKIiTMS0iQp/8b/aMTwdRo2OqKWyzdJqdKSvg2M6lCQ6DF9xxRZKbEi0CBOqo8MW/urgWh06RrjE07HVCvmO/9sszUtAFtOh19PRYNtTKDW2DxMK6YRCGlERprqOjobiSq0OLU6HQqXlljd9rEzUUYyjhFlqH8w2p8hXrLSEmqAj7OlwsIW/WFnthJLowNPhJ/5vs2LXlK6rhMLFoMRsE3F0X/G/VkcII2RghEIsVw5jm6ngCH/xvypBR6skOoId/59//nn22WcfSktLKS0tZeDAgQkrbhx11FH1zn/ZZZf5Pv99993HX//6V4444gjuvvtu7r77bo444ghefPFFHnjggYzKGk+j3VJYu3YtDz/8cNafX7duHUC9pC0dO3b03kvGgAEDeOmll5g0aRLPP/88y5Yt4/DDD/cC5bp16wiFQrRt2zaj844ZM4aysjLv1aVLFwC+I7ZO6Q+cwA+cAMB8TmUxQwCYy0iWcTgAX3MhPxPLLjuDK1hLPwA+43p+ZXcApjCacroB8BF3U8HOrKY/k3iAakqxCDORh7AIU00pE3kIgC105CPuBqCcbkxhNAC/sjufcT0Aa+nHDK4A4GcO4msuBGAZhzOXkQAsZgjzOTWvmrYQ8+lEHvKtaRPd+Z4ROGjNRlN2fjqb1fRvZpoy99Nq+jOL85uVpkz95KDxHadQwc5515QripJt8G2Ur2+2jBgxgnA47G039NqetJj4L05CVRSWGSNYpJxAWFdZHPoDixlMxHLSXtsRy2Gm+ic2G30I6ypTldFUGT1RFYXJyt1scjqljf8R02YLO/F56D50VWGr2p0vQ7fjCMFaazc+FQ1f20ucw5gjzkZVFFYaQ/lOOZWwrrI0NIJFnEDEctLWVxHLYZZ6JRuN/oR1lc+V69li7ImqKExTRvOb0xVouA7eZhpUiVKmhR9FVxWq1E58HroPRwg2WF35XjQc/5c7BzKLC1EVhTXGkXyrjCSsq6wIDeV7TiNiOWnr4IjlMEe5iPXGIYR1lS+VK9hk9EdVFD7nBtY7sXV6G4orFWZrTBFmWvhRUIuw1DKmhR/FEYKN1o58JBqug1c7/fiSK1AVhQ3GIcxWLiSsq6w2jmS+cjY/O/umjSsRy+FbZSSrjSMJ6yqzlQvZYByCqih8yRWsdtLESnE3G60dcYRgWvhRLLUM1CKmhR/FFGEqzNZp48p6pzefcwOqorDJ6M+XyhWEdZX1xiHMUS4iYjlpY2XEcvie01gRGkpYV/lWGcka4yg2aPszm/NZ7hyYcD3V0yRG84u1C44QfB66jyq1E7qqMC38KFWilG2mkTZW/uZ0ZZoyGlVR2GLsyefK9YR1lY1Gf2apVxKxnLTxP2I5LOIEloZGENZVvlNOZaUxFFVRmCPOZolzWMo6AuBTcT1rrd1whODL0O1sVbujqjqL9d+zhU5ETDtt/C93dmKycjeqolBl9GSqMpqwrrLZ6MNM9U9ELCfw8b9Lly48+OCDfPPNN8yePZtjjjmGESNG8P3333vHXHLJJaxdu9Z7ZRKnfve73zFz5ky6du3K66+/znvvvUevXr2YP38+hx9+eGaFjSPjoeYXXpjcMStWrODrr7/2Al46XnnlFf74xz96f7///vscddRRrFmzhp133tnb/4c//AFFUXjttdd8nbe8vJzu3bvz+OOPc9FFFzF+/HguuOACIpFIwnEHH3wwRx99NA899FDS80QikYTPCCGwzChlXw5Btzd7d+c0rJo7XA4aNhYGircdQsVG9bYtVJyEbZMwGqa3rRNFQXjbILAIoxMBFCxCGEQQcdsOKjaGt+2goxOts63hoKETxUZDoKJj1tx5U9EwpSapSWqSmlA1I+ehZuPGvUDUNDP6LEDIMLjssj8WzFAzSSItPf6HPjuGVupWhJJ4bUctG8eKouhhwjpJr23TiuJYFuhFFOtOwrWNcKg0DRRRTZGhItSiete2IxS2mTqqqCJk6KCGE65txammyhSgGLQybFDqX9s4EapMBUVRKTEchJJYX0UsB1FPR2J9ZVomjmUm6HDrq5gOHUSUYkPxdMTXV44QbDMNFFFFOE6HW1/V6gjRyrDq6Ihtx3QAik4rw0YoiXVwxAJhRVD0EGFdTVoHmzU+i+kQCXVwTIcGwvR01K2DhRCez8KGCmpRQh2sONVUmw5CKaKVYYJSvw6O6Yj3WWJccXWoeoiQriWNKw399hB2gg7UcL24ku63h1NNJE6HotSPK+l+e1WWAlY1qh7C0LWksbKh357i6bAoNkjQ4fe3hxMhYloIpZgSw0RV6sfKdL+9Kkut0WFg6EbS+N/Qb08RNttMFSEcig1Ro8PO6LeHEyFqWjhKMSWGharUj//pfnu1OnQMPdSs4n+7du145JFHuOiiizjqqKPo378/Y8eOzepc+SLj5GruMDcX27ZZunQpP/zwA88995zv85x00kkMGDDA+9sNcuvXr08IvOvXr6d///6+z9u2bVt23313fvrpJwA6depENBqlvLw84a73+vXr6dSpU8rzhMNh78kC1P6gVGIT7TVqJ9xr1P7A9ITtaNptg0jCto3GMg6nJ9NrBpHEHyO8bSVuO5YLNX47mmQ7dnHHymtD0u38aGp4O7kmgcIKBtKT6WjYzUJTNn6ygZ84qsYOZrPQlKmfbDTPBu55gq4pWdnTabLREq6JfGlySL52bkZkO2xcPvL2za677sqsWbNo3759wv7y8nL233//nIZ+p6Klx/8SQ6A6QJ1ru1iHCCqWFcFCRdPVhGvYtqpxvKzGtZ/1rlsFWhkmVabO/5zD2Y3PUdTa+O8IiJoWqjBr5okCda9tVaHYgIgZIWIqhA3Qldpr23EsIqaNrsTei80TTayvSpLqqK2vUunwtCrQyrCImIKI6RA2qlFqJqTW6rBRhVVPh1dfqQohQ2OJcyjdzekUG06cDgfHicTpsJPosON0RD0dWoKOiA8ddoIOtY6OSIIOxdNBnI4iQyViVnn+MJRan6XSER9XwrrGYmUQu5ifomLV6Kgtr5Wgw/ahI5KBDjwdSoIOrY6O6iQ6EuNKqzh/2MSGX8fHSsuKIpLqiMX/pcpRdDemY5kOEVMk6IjdzPGjAxRDI2JWEa2jQ0GgJOiwkuhwaKU7NTpMbOwkOsw4HQ7g1PjS9PxRYjixIecZ6vDivzqdsCGS6iBOh6YohA0zTkckiQ4Lm1h5GzP+K6qaMHRcCJFyW1Vjyd+EEKhabNj9li1bEtoPdevjZNi2zYQJE6isrGTgwIHe/ldeeYV//etfdOrUiRNPPJHbb7+dkpISXzripy0lo1u3br7OU5eMO95vvfVW0v33338/b7/9dsJd7IZo06YNbdq08f4WQtCpUycmT57sBdqKigq++uorLr/8ct/l27p1K0uWLOHcc88F4IADDsAwDCZPnsxpp50GwKJFi1i5cmWCcwoFgcometCDL3Av5paItEMMaQdpA5cg2SHb+dpyjrd/li9fjm3X/x1EIhFWrVqVl+9s6fG/oZ+nm7DITabk/u13/V5VAcPQqRA9iZjT0QyBrioZrUPsZUGuWTrITcSUyfq9jaEjHFcGasqciQ5N1dii9MS2pwdaR67+EKhs0Xqiic+97MpB1BFf7kz94cU95YtA63DJ1h/x8T+fOqJuMrgc6NKlC8uWLaNz584ArFmzhq5du2KaJuvWraNHjx5UVlbyyy+/0LNnT8rLy9m4cSO77rqr9/mtW7d657vzzju56667kn7XggULGDhwINXV1bRu3Zq33nqLvn37AnD22WfTvXt3OnfuzPz587nllltYtGgRb775pi8dPXr0aLBNkiz++iHjoeapWLp0KXvttVdOKdYfeughHnzwwYTlRObPn5+wnMigQYM45ZRTuOqqqwC48cYbOfHEE+nevTtr1qzhzjvvZN68eSxcuJAOHToAcPnllzNx4kReeuklSktLufrqqwGYMWOG77LJrOYSiaQl0BhZTf/y//6KmcVQM8MwuPSSi+VQ8wZ49913ATj55JN5+eWXKSsr896zbZvJkyfz8ccfs2jRou1WJhn/a4lvgAMZr99btwFuWk7G6xDHN8ANXc1q/V6pQ+qQOlqeDlMUEzlqek7x///99W9Eo9GMn3iHw2EuvuhCdCPk+4l3NBpl5cqVbN68mTfeeIO//vWvfPrpp17nO54pU6YwaNAgfvrpJ3bbbbe0er799tuEv03TZO7cuTz++OPcf//9nHrqqf4MU4eMn3in4ttvv2W//fbL6Rw333wzlZWVXHrppZSXl3PYYYcxadKkhDU8lyxZwq+//ur9vWrVKs466yx+++03OnTowGGHHcaXX37pBV2AJ554AlVVOe2004hEIgwdOjSjYXHbExuNxQyhNx/XDGFpmUg7xJB2kDZwCZIdmss6noXIySefDMRGB5x33nkJ7xmGQY8ePXjssce2a5lk/K+l7pOkTBrjNhqLlSHsZnyMGY1kvQ5x/Pq/kaiNUvOULZNliHLRAbVP9qqjVsY6vLpO/ZiwQWB1uGTrj/g6P1zTWg+ijngy9UfduBdUHXXJVEey+J8XHWE1bpB+diiKkhDL4zvRybbrjpBr06aN77ZAKBSiV69eQGyE06xZs3jyySd54YUX6h3rTm/y2/Hed9996+078MAD6dy5M4888sj263jfcMMN9fatX7+ed955h+HDhye8//jjj2d0bkVRuOeee7jnnntSHrN8+fKEv1999dW05y0qKuLZZ5/l2Wefzag8TYNKFWXEEs4XduM6v0g7xJB2kDZwCY4d5FDz/OE4sQZS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ahRr1qxJ+9lnn32WHj16UFRUxIABA/j6668T3q+urubKK6+kffv2tG7dmtNOO43169fnS0rOvPnmmxx77LG0b98eRVGYN2+er89NmDCBPn36UFRURL9+/Zg4cWLC+0II7rjjDnbeeWeKi4sZPHgwixcvzoOC3Enn07o0J+0An332GSeeeCKdO3dGURTefvvttJ+ZNm0a+++/P+FwmF69evHSSy/VOyZTuzY1Y8aM4aCDDqJNmzbstNNOnHzyySxatCjt55rb70Eiac7I+F+LjP8y/oNsA4CM/y0eIckr5eXlYvDgweK1114TP/74o5g5c6Y4+OCDxQEHHNDg51599VURCoXEiy++KL7//ntxySWXiLZt24r169d7x1x22WWia9euYvLkyWL27NnikEMOEYceemi+JWXNP/7xD3H33XeL//f//p8AxNy5c9N+5osvvhCapomHH35YLFy4UNx2223CMAyxYMEC75gHH3xQlJWVibffflt8++234qSTThI9e/YUVVVVeVSTOX58Gk9z0u4yceJE8X//93/izTffFIB46623Gjx+6dKloqSkRNxwww1i4cKF4umnnxaapolJkyZ5x2Rq10Jg6NCh4u9//7v47rvvxLx588SwYcNEt27dxNatW1N+pjn+HiSS5oyM/7XI+C/jvxCyDSCEjP8tHdnxbgK+/vprAYgVK1akPObggw8WV155pfe3bduic+fOYsyYMUKIWEA3DENMmDDBO+aHH34QgJg5c2b+Ct8ILFu2zHfg/cMf/iCGDx+esG/AgAHij3/8oxBCCMdxRKdOncQjjzzivV9eXi7C4bD497//3ajlzpV0Pq1Lc9KeDD9B9+abbxZ77bVXwr4zzjhDDB061Ps7U7sWIhs2bBCA+PTTT1Me09x/DxJJS0DGfxn/hZDxXwjZBnCR8b9lIYeaNwGbN29GURTatm2b9P1oNMo333zD4MGDvX2qqjJ48GBmzpwJwDfffINpmgnH9OnTh27dunnHNAdmzpyZoBFg6NChnsZly5axbt26hGPKysoYMGBAQdnBj0/r0ly050I6G2Rj10Jk8+bNALRr1y7lMfL3IJEEHxn//dNc6jwZ/7OnJbQBZPxvWciO93amurqaW265hbPOOovS0tKkx/z666/Ytk3Hjh0T9nfs2JF169YBsG7dOkKhUL3gHX9Mc2DdunVp7eDu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", + "image/png": "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PvvsuOu99tpr+spXvpLSNn/xi19oxowZ6ujoUGtrq+bPn68FCxZo3rx5+tvf/qZjjjlGCxYskDEmvE5jY6Pq6uq0adOmlLYJAABGUP+B8kSnGIjjvPPO05VXXqlLL71UCxcu1BFHHKHly5fHXf7AgQPq7u5WQ0NDytu7+uqrdeyxx+qWW25RT0+PTjvtNF144YU67rjjtGjRIm3btk379u2LWq+hoUG7du1KaZsAACAa9R8oP3SKgQRWrFihoaEhPfHEE1qzZo38fn/cZQ8dOiRJqqysTGlbU6dODf+/rq5OknTyyScf9tiHH34YtV5VVZUOHjyY0jYBAMDhqP9AeaFTDCSwY8cOdXZ2KhgM6oMPPki47NixY+VyufTf//436esGAoHDHvN6veH/u1yuuI/F3oJh//79GjduXNJtAgAAe6j/QHmhUwzEMTAwoHnz5uniiy/Wbbfdpu985zuHnaWN5PP5NGXKFG3duvWw52IveXr//fczso99fX3asWOHTjnllIy8HgAA5Y76D5QfOsVAHDfffLO6u7t17733atGiRTruuOP07W9/O+E6s2fP1muvvXbY40899ZSefPJJ7dixQ3fccYe2bt2qXbt26d///nda+/jGG2/I7/erpaUlrdcBAADDqP9A+aFTDFjYuHGj7rnnHj366KOqqamR2+3Wo48+qk2bNmnlypVx17viiiv03HPPqbu7O+rx1tZW3XXXXZoyZYpeffVVPfDAA3rrrbf06KOPprWfjz/+uC699FKNGjUqrdcBAADUf6BcuUzk/O4A0nbhhRfq1FNP1eLFiyUN36ewublZ99xzT0a38/HHH+v4449Xe3u7mpqaMvraAADAGeo/ULz4phjIsLvvvlvV1dVZ384HH3ygBx54gIIIAEABoP4DxYtvioEsy9aZYgAAULio/0DxoFMMAAAAAChbXD4NAAAAAChbdIoBAAAAAGWLTjEAAAAAoGzRKQYAAAAAlC06xQAAAACAskWnGAAAAABQtugUAwAAAADKFp1iAAAAAEDZolMMAAAAAChb/w8nxaISJR5PNgAAAABJRU5ErkJggg==", "text/plain": [ "
" ] @@ -743,7 +749,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 16, "id": "fc882d41-2048-473b-9109-d8ef0e2594a2", "metadata": { "scrolled": true @@ -753,38 +759,38 @@ "name": "stdout", "output_type": "stream", "text": [ - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m815\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mSetting up heat-charge simulation.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m841\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin meshing heat-charge simulation.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m853\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin adding structures to mesh.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m862\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m871\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m880\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m889\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m897\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m907\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m915\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m924\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m932\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m940\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m947\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m957\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m964\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m974\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd adding structures to mesh.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m981\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m991\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:26\u001b[0m.\u001b[1;36m999\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m008\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m017\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m026\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m035\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m044\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m053\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m062\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m071\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m080\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m089\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin adding monitors.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m096\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd adding monitors.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m105\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin combining added structures.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m828\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mSetting up heat-charge simulation.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m848\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin meshing heat-charge simulation.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m856\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin adding structures to mesh.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m862\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m869\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m875\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m881\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m887\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m892\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m898\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m904\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m910\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m916\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m922\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m928\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m935\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m941\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd adding structures to mesh.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m947\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m954\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m959\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m966\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m972\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m978\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m984\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m990\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:11\u001b[0m.\u001b[1;36m996\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:12\u001b[0m.\u001b[1;36m002\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:12\u001b[0m.\u001b[1;36m008\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:12\u001b[0m.\u001b[1;36m014\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:12\u001b[0m.\u001b[1;36m020\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin adding monitors.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:12\u001b[0m.\u001b[1;36m026\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd adding monitors.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:12\u001b[0m.\u001b[1;36m032\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin combining added structures.\u001b[0m \n", "Debug : BOOL (2,1) other \n", "Debug : BOOL (3,1) replaced by 1\n", "Debug : BOOL (3,2) other\n", @@ -804,64 +810,64 @@ "Debug : BOOL (2,47) other\n", "Debug : BOOL (2,48) other\n", "Debug : BOOL (2,49) other\n", - "Debug : BOOL in (2,1) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,1) -> out (2,47) (2,48) (2,7) (2,13) (2,49) (2,8) (2,50) (2,51) (2,52) (2,53) (2,54) (2,12) (2,55) (2,56) (2,35) (2,36) (2,57) (2,58) (2,9) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", "Debug : BOOL in (3,1) -> out (3,1)\n", "Debug : BOOL in (3,2) -> out (3,6) (3,5) (3,3) (3,7) (3,8) (3,4) (3,9)\n", "Debug : BOOL in (3,3) -> out (3,3)\n", "Debug : BOOL in (3,4) -> out (3,4)\n", "Debug : BOOL in (3,5) -> out (3,5)\n", "Debug : BOOL in (3,6) -> out (3,9) (3,8)\n", - "Debug : BOOL in (2,38) -> out (2,13) (2,48) (2,49)\n", - "Debug : BOOL in (2,39) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", - "Debug : BOOL in (2,40) -> out (2,8) (2,51) (2,54)\n", - "Debug : BOOL in (2,41) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,38) -> out (2,13) (2,49) (2,50)\n", + "Debug : BOOL in (2,39) -> out (2,47) (2,48) (2,7) (2,13) (2,49) (2,8) (2,50) (2,51) (2,52) (2,53) (2,54) (2,12) (2,55) (2,56) (2,35) (2,36) (2,57) (2,58) (2,9) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,40) -> out (2,8) (2,52) (2,55)\n", + "Debug : BOOL in (2,41) -> out (2,47) (2,48) (2,7) (2,13) (2,49) (2,8) (2,50) (2,51) (2,52) (2,53) (2,54) (2,12) (2,55) (2,56) (2,35) (2,36) (2,57) (2,58) (2,9) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", "Debug : BOOL in (2,42) -> out (2,11) (2,60) (2,37) (2,43)\n", - "Debug : BOOL in (2,43) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,43) -> out (2,47) (2,48) (2,7) (2,13) (2,49) (2,8) (2,50) (2,51) (2,52) (2,53) (2,54) (2,12) (2,55) (2,56) (2,35) (2,36) (2,57) (2,58) (2,9) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", "Debug : BOOL in (2,44) -> out (2,10) (2,63) (2,44) (2,38)\n", - "Debug : BOOL in (2,45) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", - "Debug : BOOL in (2,46) -> out (2,12) (2,53) (2,36)\n", - "Debug : BOOL in (2,47) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", - "Debug : BOOL in (2,48) -> out (2,9) (2,58) (2,39)\n", - "Debug : BOOL in (2,49) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m194\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd adding structures to mesh.\u001b[0m \n", + "Debug : BOOL in (2,45) -> out (2,47) (2,48) (2,7) (2,13) (2,49) (2,8) (2,50) (2,51) (2,52) (2,53) (2,54) (2,12) (2,55) (2,56) (2,35) (2,36) (2,57) (2,58) (2,9) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,46) -> out (2,12) (2,54) (2,36)\n", + "Debug : BOOL in (2,47) -> out (2,47) (2,48) (2,7) (2,13) (2,49) (2,8) (2,50) (2,51) (2,52) (2,53) (2,54) (2,12) (2,55) (2,56) (2,35) (2,36) (2,57) (2,58) (2,9) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,48) -> out (2,9) (2,59) (2,39)\n", + "Debug : BOOL in (2,49) -> out (2,47) (2,48) (2,7) (2,13) (2,49) (2,8) (2,50) (2,51) (2,52) (2,53) (2,54) (2,12) (2,55) (2,56) (2,35) (2,36) (2,57) (2,58) (2,9) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:12\u001b[0m.\u001b[1;36m096\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd adding structures to mesh.\u001b[0m \n", "Debug : Syncing OCC_Internals with GModel\n", - "Debug : Sync is removing 377 model entities\n", + "Debug : Sync is removing 376 model entities\n", "Debug : Destroying 0 entities in model\n", - "Debug : OCCRTree found 3 matches at (-2.5,-2.09,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 3 matches at (-2.5,-0.8,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (-2.5,-2.09,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 3 matches at (-2.5,-0.8,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (-2.5,-2.09,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 3 matches at (-2.5,-0.8,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (-2.5,-2.09,0.55) in tree of size 654\n", + "Debug : OCCRTree found 3 matches at (-2.5,-0.8,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (-2.5,-2.09,0.55) in tree of size 654\n", + "Debug : OCCRTree found 3 matches at (-2.5,-0.8,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (-2.5,-2.09,0.55) in tree of size 654\n", + "Debug : OCCRTree found 3 matches at (-2.5,-0.8,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (2.5,-2.09,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 3 matches at (2.5,-0.8,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (2.5,-2.09,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 3 matches at (2.5,-0.8,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (2.5,-2.09,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 3 matches at (2.5,-0.8,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (2.5,-2.09,0.55) in tree of size 654\n", + "Debug : OCCRTree found 3 matches at (2.5,-0.8,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (2.5,-2.09,0.55) in tree of size 654\n", + "Debug : OCCRTree found 3 matches at (2.5,-0.8,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (2.5,-2.09,0.55) in tree of size 654\n", + "Debug : OCCRTree found 3 matches at (2.5,-0.8,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-2.09,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.8,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-2.09,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.8,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-2.09,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.8,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-2.09,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.8,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-2.09,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.8,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-2.09,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.8,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (2.5,-0.09,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", @@ -1013,41 +1019,29 @@ "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (-2.4,-0.095,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.5,0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,2,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.5,0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,2,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.5,0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,2,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,1,0) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,2,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,1,0) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,2,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,1,0) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,2,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,1,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2,2,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,1,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2,2,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,1,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2,2,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.5,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.4,2,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.5,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.4,2,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.5,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0.5,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.4,2,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (2,0,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", @@ -1133,17 +1127,17 @@ "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (-0.31,0,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2,0.5,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2,2,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2,0.5,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2,2,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2,0.5,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2,2,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0.5,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2.4,2,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0.5,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2.4,2,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0.5,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2.4,2,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (-1.31,0.005,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", @@ -1181,6 +1175,18 @@ "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (1.31,0.005,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (-0.19,0,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (-0.19,0,0) in tree of size 654\n", @@ -1205,17 +1211,29 @@ "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (-0.19,0.005,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (2.4,-2.295,0) in tree of size 654\n", + "Debug : OCCRTree found 8 matches at (2.4,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,-1.65,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (2.4,-2.295,0) in tree of size 654\n", + "Debug : OCCRTree found 8 matches at (-2.4,-1.65,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (2.4,-2.295,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.3,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (-2.4,-2.295,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.3,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (-2.4,-2.295,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.3,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (-2.4,-2.295,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.3,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (-2.29,0,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", @@ -1265,41 +1283,29 @@ "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (2.29,0.005,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (2.4,1.205,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (2.4,1.205,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (2.4,1.205,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (-2.4,1.205,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (-2.4,1.205,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (-2.4,1.205,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 3 matches at (2.5,0,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", @@ -1313,11 +1319,11 @@ "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 3 matches at (2.5,0,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,-2.09,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (0,-0.8,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,-2.09,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (0,-0.8,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,-2.09,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (0,-0.8,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (-2.345,-0.09,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", @@ -1385,11 +1391,11 @@ "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (2.345,-0.09,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-1.0925,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.4475,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-1.0925,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.4475,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-1.0925,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.4475,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (2.345,-0.095,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", @@ -1487,11 +1493,11 @@ "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (-2.345,-0.095,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-1.0925,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.4475,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-1.0925,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.4475,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-1.0925,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.4475,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (2.4,-0.0925,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", @@ -1505,23 +1511,17 @@ "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (-2.4,-0.0925,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,1,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.2,2,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,1,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.2,2,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,1,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.2,2,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.2,0.5,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2,1,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.2,0.5,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2,1,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.2,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2,0.25,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2,0.25,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2,0.25,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2,1,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (0.28,0,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", @@ -1601,17 +1601,17 @@ "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (-0.28,0,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2,0.25,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2,1,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2,0.25,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2,1,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2,0.25,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2,1,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.2,0.5,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2.2,2,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.2,0.5,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2.2,2,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.2,0.5,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2.2,2,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (-1.31,0.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", @@ -1673,17 +1673,23 @@ "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (1.31,0.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0.75,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.4,2.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,2.675,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0.75,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.4,2.675,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0.75,0) in tree of size 654\n", + "Debug : OCCRTree found 8 matches at (0,3.35,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0.75,0) in tree of size 654\n", + "Debug : OCCRTree found 8 matches at (0,3.35,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0.75,0) in tree of size 654\n", + "Debug : OCCRTree found 8 matches at (0,3.35,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0.75,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2.4,2.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,2.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,2.675,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (-0.22,0,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", @@ -1727,23 +1733,41 @@ "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (-0.19,0.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (0,-2.295,0) in tree of size 654\n", + "Debug : OCCRTree found 8 matches at (0,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,-1.65,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (0,-2.295,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.475,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (0,-2.295,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.475,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-2.1925,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.475,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-2.1925,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (0,-1.3,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-2.1925,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (0,-1.3,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-2.1925,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (0,-1.3,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-2.1925,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.475,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-2.1925,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.05,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (-2.29,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", @@ -1811,11 +1835,11 @@ "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (2.29,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0.2525,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2.4,1.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0.2525,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2.4,1.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0.2525,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2.4,1.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (-1.19,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", @@ -1859,11 +1883,11 @@ "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (-0.31,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0.2525,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.4,1.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0.2525,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.4,1.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0.2525,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.4,1.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (1.19,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", @@ -1871,24 +1895,6 @@ "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (1.19,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,1.1025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,1.1025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,1.1025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (0,1.205,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (0,1.205,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (0,1.205,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,1.1025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,1.1025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,1.1025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (-0.19,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (-0.19,-0.045,0) in tree of size 654\n", @@ -1907,53 +1913,53 @@ "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (0.19,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.28,0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.05,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.28,0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.05,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.28,0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.05,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.28,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.05,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.28,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.05,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.28,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.05,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (0,-1.3,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (0,-1.3,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0,-2.47,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (0,-1.3,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.47,0) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.47,0) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.47,0) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (0,-1.3,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (0,-1.3,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0,-2.47,0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (0,-1.3,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.28,0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.05,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.28,0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.05,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.28,0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.05,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.28,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.05,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.28,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.05,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.28,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.05,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (2.5,-0.045,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", @@ -1961,17 +1967,17 @@ "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (2.5,-0.045,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.25,0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,1,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.25,0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,1,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.25,0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,1,0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.25,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,1,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.25,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,1,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.25,-0.55) in tree of size 654\n", + "Debug : OCCRTree found 2 matches at (2.5,1,-0.55) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCC surface 7 - new wire\n", "Debug : Curve 8 (7 --> 8) ori 1\n", @@ -1998,19 +2004,19 @@ "Debug : Curve 27 (24 --> 21) ori -1\n", "Debug : Curve 26 (23 --> 24) ori -1\n", "Debug : Curve 25 (23 --> 7) ori 1\n", - "Debug : OCC surface 7 with 24 parameter bounds (-2.4,2.4)(-1.545,0.455)\n", - "Debug : OCCRTree found 1 matches at (0,-1.09,0) in tree of size 654\n", + "Debug : OCC surface 7 with 24 parameter bounds (-2.4,2.4)(-1.65,-0.94)\n", + "Debug : OCCRTree found 1 matches at (0,-0.445,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,-1.09,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (0,-0.445,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,-1.09,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (0,-0.445,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCC surface 8 - new wire\n", "Debug : Curve 43 (22 --> 23) ori 1\n", "Debug : Curve 26 (23 --> 24) ori 1\n", "Debug : Curve 27 (24 --> 21) ori 1\n", "Debug : Curve 23 (22 --> 21) ori -1\n", - "Debug : OCC surface 8 with 4 parameter bounds (-2.4,-2.29)(0.45,0.455)\n", + "Debug : OCC surface 8 with 4 parameter bounds (-2.4,-2.29)(-0.945,-0.94)\n", "Debug : OCCRTree found 1 matches at (2.345,-0.0925,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (2.345,-0.0925,0) in tree of size 654\n", @@ -2022,7 +2028,7 @@ "Debug : Curve 28 (20 --> 25) ori 1\n", "Debug : Curve 29 (25 --> 26) ori 1\n", "Debug : Curve 30 (26 --> 19) ori 1\n", - "Debug : OCC surface 9 with 4 parameter bounds (-1.31,-1.19)(0.45,0.455)\n", + "Debug : OCC surface 9 with 4 parameter bounds (-1.31,-1.19)(-0.945,-0.94)\n", "Debug : OCCRTree found 1 matches at (1.25,-0.0925,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (1.25,-0.0925,0) in tree of size 654\n", @@ -2034,7 +2040,7 @@ "Debug : Curve 31 (18 --> 27) ori 1\n", "Debug : Curve 32 (27 --> 28) ori 1\n", "Debug : Curve 33 (28 --> 17) ori 1\n", - "Debug : OCC surface 10 with 4 parameter bounds (-0.31,-0.19)(0.45,0.455)\n", + "Debug : OCC surface 10 with 4 parameter bounds (-0.31,-0.19)(-0.945,-0.94)\n", "Debug : OCCRTree found 1 matches at (0.25,-0.0925,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (0.25,-0.0925,0) in tree of size 654\n", @@ -2046,7 +2052,7 @@ "Debug : Curve 17 (16 --> 15) ori -1\n", "Debug : Curve 34 (16 --> 29) ori 1\n", "Debug : Curve 35 (29 --> 30) ori 1\n", - "Debug : OCC surface 11 with 4 parameter bounds (0.19,0.31)(0.45,0.455)\n", + "Debug : OCC surface 11 with 4 parameter bounds (0.19,0.31)(-0.945,-0.94)\n", "Debug : OCCRTree found 1 matches at (-0.25,-0.0925,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (-0.25,-0.0925,0) in tree of size 654\n", @@ -2058,7 +2064,7 @@ "Debug : Curve 15 (14 --> 13) ori -1\n", "Debug : Curve 37 (14 --> 31) ori 1\n", "Debug : Curve 38 (31 --> 32) ori 1\n", - "Debug : OCC surface 12 with 4 parameter bounds (1.19,1.31)(0.45,0.455)\n", + "Debug : OCC surface 12 with 4 parameter bounds (1.19,1.31)(-0.945,-0.94)\n", "Debug : OCCRTree found 1 matches at (-1.25,-0.0925,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (-1.25,-0.0925,0) in tree of size 654\n", @@ -2070,7 +2076,7 @@ "Debug : Curve 44 (34 --> 12) ori 1\n", "Debug : Curve 13 (11 --> 12) ori -1\n", "Debug : Curve 40 (11 --> 33) ori 1\n", - "Debug : OCC surface 13 with 4 parameter bounds (2.29,2.4)(0.45,0.455)\n", + "Debug : OCC surface 13 with 4 parameter bounds (2.29,2.4)(-0.945,-0.94)\n", "Debug : OCCRTree found 1 matches at (-2.345,-0.0925,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (-2.345,-0.0925,0) in tree of size 654\n", @@ -2078,43 +2084,43 @@ "Debug : OCCRTree found 1 matches at (-2.345,-0.0925,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCC surface 35 - new wire\n", - "Debug : Curve 93 (70 --> 72) ori 1\n", - "Debug : Curve 118 (72 --> 51) ori 1\n", - "Debug : Curve 62 (50 --> 51) ori -1\n", - "Debug : Curve 117 (50 --> 55) ori 1\n", - "Debug : Curve 68 (55 --> 54) ori 1\n", - "Debug : Curve 70 (56 --> 54) ori -1\n", - "Debug : Curve 74 (56 --> 60) ori 1\n", - "Debug : Curve 116 (84 --> 60) ori -1\n", - "Debug : Curve 115 (83 --> 84) ori -1\n", - "Debug : Curve 114 (59 --> 83) ori -1\n", - "Debug : Curve 72 (59 --> 57) ori 1\n", - "Debug : Curve 113 (82 --> 57) ori -1\n", - "Debug : Curve 112 (62 --> 82) ori -1\n", - "Debug : Curve 77 (62 --> 61) ori 1\n", - "Debug : Curve 80 (61 --> 63) ori 1\n", - "Debug : Curve 82 (65 --> 63) ori -1\n", - "Debug : Curve 111 (81 --> 65) ori -1\n", - "Debug : Curve 110 (69 --> 81) ori -1\n", - "Debug : Curve 86 (69 --> 68) ori 1\n", - "Debug : Curve 109 (80 --> 68) ori -1\n", - "Debug : Curve 108 (79 --> 80) ori -1\n", - "Debug : Curve 107 (66 --> 79) ori -1\n", - "Debug : Curve 84 (66 --> 67) ori 1\n", - "Debug : Curve 90 (67 --> 70) ori 1\n", - "Debug : OCC surface 35 with 24 parameter bounds (-2.4,2.4)(0.545,1.545)\n", - "Debug : OCCRTree found 1 matches at (0,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,0.5,0) in tree of size 654\n", + "Debug : Curve 92 (68 --> 70) ori 1\n", + "Debug : Curve 118 (70 --> 84) ori 1\n", + "Debug : Curve 117 (84 --> 83) ori 1\n", + "Debug : Curve 116 (83 --> 53) ori 1\n", + "Debug : Curve 67 (53 --> 52) ori 1\n", + "Debug : Curve 69 (54 --> 52) ori -1\n", + "Debug : Curve 73 (54 --> 58) ori 1\n", + "Debug : Curve 115 (82 --> 58) ori -1\n", + "Debug : Curve 114 (81 --> 82) ori -1\n", + "Debug : Curve 113 (57 --> 81) ori -1\n", + "Debug : Curve 71 (57 --> 55) ori 1\n", + "Debug : Curve 112 (80 --> 55) ori -1\n", + "Debug : Curve 111 (60 --> 80) ori -1\n", + "Debug : Curve 76 (60 --> 59) ori 1\n", + "Debug : Curve 79 (59 --> 61) ori 1\n", + "Debug : Curve 81 (63 --> 61) ori -1\n", + "Debug : Curve 110 (79 --> 63) ori -1\n", + "Debug : Curve 109 (67 --> 79) ori -1\n", + "Debug : Curve 85 (67 --> 66) ori 1\n", + "Debug : Curve 108 (78 --> 66) ori -1\n", + "Debug : Curve 107 (77 --> 78) ori -1\n", + "Debug : Curve 106 (64 --> 77) ori -1\n", + "Debug : Curve 83 (64 --> 65) ori 1\n", + "Debug : Curve 89 (65 --> 68) ori 1\n", + "Debug : OCC surface 35 with 24 parameter bounds (-2.4,2.4)(-0.85,2.5)\n", + "Debug : OCCRTree found 1 matches at (0,1.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,1.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,1.675,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCC surface 36 - new wire\n", - "Debug : Curve 85 (68 --> 66) ori 1\n", - "Debug : Curve 107 (66 --> 79) ori 1\n", - "Debug : Curve 108 (79 --> 80) ori 1\n", - "Debug : Curve 109 (80 --> 68) ori 1\n", - "Debug : OCC surface 36 with 4 parameter bounds (1.19,1.31)(0.545,0.55)\n", + "Debug : Curve 84 (66 --> 64) ori 1\n", + "Debug : Curve 106 (64 --> 77) ori 1\n", + "Debug : Curve 107 (77 --> 78) ori 1\n", + "Debug : Curve 108 (78 --> 66) ori 1\n", + "Debug : OCC surface 36 with 4 parameter bounds (1.19,1.31)(-0.85,-0.845)\n", "Debug : OCCRTree found 1 matches at (-1.25,0.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (-1.25,0.0025,0) in tree of size 654\n", @@ -2122,11 +2128,11 @@ "Debug : OCCRTree found 1 matches at (-1.25,0.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCC surface 37 - new wire\n", - "Debug : Curve 87 (64 --> 69) ori 1\n", - "Debug : Curve 110 (69 --> 81) ori 1\n", - "Debug : Curve 111 (81 --> 65) ori 1\n", - "Debug : Curve 83 (64 --> 65) ori -1\n", - "Debug : OCC surface 37 with 4 parameter bounds (0.25,0.31)(0.545,0.55)\n", + "Debug : Curve 86 (62 --> 67) ori 1\n", + "Debug : Curve 109 (67 --> 79) ori 1\n", + "Debug : Curve 110 (79 --> 63) ori 1\n", + "Debug : Curve 82 (62 --> 63) ori -1\n", + "Debug : OCC surface 37 with 4 parameter bounds (0.25,0.31)(-0.85,-0.845)\n", "Debug : OCCRTree found 1 matches at (-0.28,0.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (-0.28,0.0025,0) in tree of size 654\n", @@ -2134,11 +2140,11 @@ "Debug : OCCRTree found 1 matches at (-0.28,0.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCC surface 38 - new wire\n", - "Debug : Curve 113 (82 --> 57) ori 1\n", - "Debug : Curve 71 (57 --> 58) ori 1\n", - "Debug : Curve 78 (58 --> 62) ori 1\n", - "Debug : Curve 112 (62 --> 82) ori 1\n", - "Debug : OCC surface 38 with 4 parameter bounds (-0.31,-0.25)(0.545,0.55)\n", + "Debug : Curve 112 (80 --> 55) ori 1\n", + "Debug : Curve 70 (55 --> 56) ori 1\n", + "Debug : Curve 77 (56 --> 60) ori 1\n", + "Debug : Curve 111 (60 --> 80) ori 1\n", + "Debug : OCC surface 38 with 4 parameter bounds (-0.31,-0.25)(-0.85,-0.845)\n", "Debug : OCCRTree found 1 matches at (0.28,0.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (0.28,0.0025,0) in tree of size 654\n", @@ -2146,11 +2152,11 @@ "Debug : OCCRTree found 1 matches at (0.28,0.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCC surface 39 - new wire\n", - "Debug : Curve 116 (84 --> 60) ori 1\n", - "Debug : Curve 73 (60 --> 59) ori 1\n", - "Debug : Curve 114 (59 --> 83) ori 1\n", - "Debug : Curve 115 (83 --> 84) ori 1\n", - "Debug : OCC surface 39 with 4 parameter bounds (-1.31,-1.19)(0.545,0.55)\n", + "Debug : Curve 115 (82 --> 58) ori 1\n", + "Debug : Curve 72 (58 --> 57) ori 1\n", + "Debug : Curve 113 (57 --> 81) ori 1\n", + "Debug : Curve 114 (81 --> 82) ori 1\n", + "Debug : OCC surface 39 with 4 parameter bounds (-1.31,-1.19)(-0.85,-0.845)\n", "Debug : OCCRTree found 1 matches at (1.25,0.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (1.25,0.0025,0) in tree of size 654\n", @@ -2160,13 +2166,13 @@ "Debug : OCC surface 42 - new wire\n", "Debug : Curve 121 (86 --> 85) ori 1\n", "Debug : Curve 126 (88 --> 85) ori -1\n", - "Debug : Curve 125 (65 --> 88) ori -1\n", - "Debug : Curve 82 (65 --> 63) ori 1\n", - "Debug : Curve 80 (61 --> 63) ori -1\n", - "Debug : Curve 77 (62 --> 61) ori -1\n", - "Debug : Curve 124 (87 --> 62) ori -1\n", + "Debug : Curve 125 (63 --> 88) ori -1\n", + "Debug : Curve 81 (63 --> 61) ori 1\n", + "Debug : Curve 79 (59 --> 61) ori -1\n", + "Debug : Curve 76 (60 --> 59) ori -1\n", + "Debug : Curve 124 (87 --> 60) ori -1\n", "Debug : Curve 123 (86 --> 87) ori -1\n", - "Debug : OCC surface 42 with 8 parameter bounds (-0.25,0.25)(0.545,0.765)\n", + "Debug : OCC surface 42 with 8 parameter bounds (-0.25,0.25)(-0.85,-0.63)\n", "Debug : OCCRTree found 1 matches at (0,0.11,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (0,0.11,0) in tree of size 654\n", @@ -2174,11 +2180,11 @@ "Debug : OCCRTree found 1 matches at (0,0.11,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCC surface 43 - new wire\n", - "Debug : Curve 120 (85 --> 64) ori 1\n", - "Debug : Curve 83 (64 --> 65) ori 1\n", - "Debug : Curve 125 (65 --> 88) ori 1\n", + "Debug : Curve 120 (85 --> 62) ori 1\n", + "Debug : Curve 82 (62 --> 63) ori 1\n", + "Debug : Curve 125 (63 --> 88) ori 1\n", "Debug : Curve 126 (88 --> 85) ori 1\n", - "Debug : OCC surface 43 with 4 parameter bounds (0.19,0.25)(0.545,0.55)\n", + "Debug : OCC surface 43 with 4 parameter bounds (0.19,0.25)(-0.85,-0.845)\n", "Debug : OCCRTree found 1 matches at (-0.22,0.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (-0.22,0.0025,0) in tree of size 654\n", @@ -2186,11 +2192,11 @@ "Debug : OCCRTree found 1 matches at (-0.22,0.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCC surface 44 - new wire\n", - "Debug : Curve 122 (58 --> 86) ori 1\n", + "Debug : Curve 122 (56 --> 86) ori 1\n", "Debug : Curve 123 (86 --> 87) ori 1\n", - "Debug : Curve 124 (87 --> 62) ori 1\n", - "Debug : Curve 78 (58 --> 62) ori -1\n", - "Debug : OCC surface 44 with 4 parameter bounds (-0.25,-0.19)(0.545,0.55)\n", + "Debug : Curve 124 (87 --> 60) ori 1\n", + "Debug : Curve 77 (56 --> 60) ori -1\n", + "Debug : OCC surface 44 with 4 parameter bounds (-0.25,-0.19)(-0.85,-0.845)\n", "Debug : OCCRTree found 1 matches at (0.22,0.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (0.22,0.0025,0) in tree of size 654\n", @@ -2199,173 +2205,173 @@ "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCC surface 47 - new wire\n", "Debug : Curve 128 (89 --> 90) ori 1\n", - "Debug : Curve 130 (90 --> 8) ori 1\n", - "Debug : Curve 8 (7 --> 8) ori -1\n", - "Debug : Curve 129 (7 --> 89) ori 1\n", - "Debug : OCC surface 47 with 4 parameter bounds (-2.4,2.4)(-1.75,-1.545)\n", - "Debug : OCCRTree found 1 matches at (0,-2.1925,0) in tree of size 654\n", + "Debug : Curve 131 (90 --> 92) ori 1\n", + "Debug : Curve 130 (91 --> 92) ori -1\n", + "Debug : Curve 129 (91 --> 89) ori 1\n", + "Debug : OCC surface 47 with 4 parameter bounds (-2.4,2.4)(-2.5,-2.15)\n", + "Debug : OCCRTree found 1 matches at (0,-1.475,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,-2.1925,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (0,-1.475,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,-2.1925,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (0,-1.475,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCC surface 48 - new wire\n", + "Debug : Curve 130 (91 --> 92) ori 1\n", + "Debug : Curve 133 (92 --> 8) ori 1\n", + "Debug : Curve 8 (7 --> 8) ori -1\n", + "Debug : Curve 132 (7 --> 91) ori 1\n", + "Debug : OCC surface 48 with 4 parameter bounds (-2.4,2.4)(-2.15,-1.65)\n", + "Debug : OCCRTree found 1 matches at (0,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 49 - new wire\n", "Debug : Curve 13 (11 --> 12) ori 1\n", - "Debug : Curve 133 (12 --> 92) ori 1\n", - "Debug : Curve 132 (91 --> 92) ori -1\n", - "Debug : Curve 131 (91 --> 11) ori 1\n", - "Debug : OCC surface 48 with 4 parameter bounds (2.29,2.4)(0.455,0.545)\n", + "Debug : Curve 136 (12 --> 94) ori 1\n", + "Debug : Curve 135 (93 --> 94) ori -1\n", + "Debug : Curve 134 (93 --> 11) ori 1\n", + "Debug : OCC surface 49 with 4 parameter bounds (2.29,2.4)(-0.94,-0.85)\n", "Debug : OCCRTree found 2 matches at (-2.345,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (-2.345,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (-2.345,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 49 - new wire\n", - "Debug : Curve 132 (91 --> 92) ori 1\n", - "Debug : Curve 136 (92 --> 94) ori 1\n", - "Debug : Curve 135 (94 --> 93) ori 1\n", - "Debug : Curve 134 (93 --> 91) ori 1\n", - "Debug : OCC surface 49 with 4 parameter bounds (2.29,2.4)(0.545,0.55)\n", + "Debug : OCC surface 50 - new wire\n", + "Debug : Curve 135 (93 --> 94) ori 1\n", + "Debug : Curve 139 (94 --> 96) ori 1\n", + "Debug : Curve 138 (96 --> 95) ori 1\n", + "Debug : Curve 137 (95 --> 93) ori 1\n", + "Debug : OCC surface 50 with 4 parameter bounds (2.29,2.4)(-0.85,-0.845)\n", "Debug : OCCRTree found 1 matches at (-2.345,0.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (-2.345,0.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (-2.345,0.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 50 - new wire\n", + "Debug : OCC surface 51 - new wire\n", "Debug : Curve 14 (13 --> 11) ori 1\n", - "Debug : Curve 131 (91 --> 11) ori -1\n", - "Debug : Curve 138 (67 --> 91) ori -1\n", - "Debug : Curve 84 (66 --> 67) ori -1\n", - "Debug : Curve 137 (13 --> 66) ori -1\n", - "Debug : OCC surface 50 with 5 parameter bounds (1.31,2.29)(0.455,0.545)\n", + "Debug : Curve 134 (93 --> 11) ori -1\n", + "Debug : Curve 141 (65 --> 93) ori -1\n", + "Debug : Curve 83 (64 --> 65) ori -1\n", + "Debug : Curve 140 (13 --> 64) ori -1\n", + "Debug : OCC surface 51 with 5 parameter bounds (1.31,2.29)(-0.94,-0.85)\n", "Debug : OCCRTree found 1 matches at (-1.8,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (-1.8,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (-1.8,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 51 - new wire\n", - "Debug : Curve 139 (95 --> 22) ori 1\n", + "Debug : OCC surface 52 - new wire\n", + "Debug : Curve 142 (97 --> 22) ori 1\n", "Debug : Curve 23 (22 --> 21) ori 1\n", - "Debug : Curve 141 (21 --> 96) ori 1\n", - "Debug : Curve 140 (95 --> 96) ori -1\n", - "Debug : OCC surface 51 with 4 parameter bounds (-2.4,-2.29)(0.455,0.545)\n", + "Debug : Curve 144 (21 --> 98) ori 1\n", + "Debug : Curve 143 (97 --> 98) ori -1\n", + "Debug : OCC surface 52 with 4 parameter bounds (-2.4,-2.29)(-0.94,-0.85)\n", "Debug : OCCRTree found 2 matches at (2.345,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (2.345,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (2.345,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 52 - new wire\n", - "Debug : Curve 135 (94 --> 93) ori -1\n", - "Debug : Curve 142 (94 --> 72) ori 1\n", - "Debug : Curve 93 (70 --> 72) ori -1\n", - "Debug : Curve 90 (67 --> 70) ori -1\n", - "Debug : Curve 138 (67 --> 91) ori 1\n", - "Debug : Curve 134 (93 --> 91) ori -1\n", - "Debug : OCC surface 52 with 6 parameter bounds (2,2.4)(0.545,1.045)\n", - "Debug : OCCRTree found 1 matches at (-2.2,0.25,0) in tree of size 654\n", + "Debug : OCC surface 53 - new wire\n", + "Debug : Curve 138 (96 --> 95) ori -1\n", + "Debug : Curve 145 (96 --> 70) ori 1\n", + "Debug : Curve 92 (68 --> 70) ori -1\n", + "Debug : Curve 89 (65 --> 68) ori -1\n", + "Debug : Curve 141 (65 --> 93) ori 1\n", + "Debug : Curve 137 (95 --> 93) ori -1\n", + "Debug : OCC surface 53 with 6 parameter bounds (2,2.4)(-0.85,1.15)\n", + "Debug : OCCRTree found 1 matches at (-2.2,1,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.2,0.25,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2.2,1,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.2,0.25,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (-2.2,1,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 53 - new wire\n", + "Debug : OCC surface 54 - new wire\n", "Debug : Curve 15 (14 --> 13) ori 1\n", - "Debug : Curve 137 (13 --> 66) ori 1\n", - "Debug : Curve 85 (68 --> 66) ori -1\n", - "Debug : Curve 143 (68 --> 14) ori 1\n", - "Debug : OCC surface 53 with 4 parameter bounds (1.19,1.31)(0.455,0.545)\n", + "Debug : Curve 140 (13 --> 64) ori 1\n", + "Debug : Curve 84 (66 --> 64) ori -1\n", + "Debug : Curve 146 (66 --> 14) ori 1\n", + "Debug : OCC surface 54 with 4 parameter bounds (1.19,1.31)(-0.94,-0.85)\n", "Debug : OCCRTree found 2 matches at (-1.25,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (-1.25,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (-1.25,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 54 - new wire\n", - "Debug : Curve 144 (97 --> 95) ori 1\n", - "Debug : Curve 140 (95 --> 96) ori 1\n", - "Debug : Curve 146 (96 --> 98) ori 1\n", - "Debug : Curve 145 (98 --> 97) ori 1\n", - "Debug : OCC surface 54 with 4 parameter bounds (-2.4,-2.29)(0.545,0.55)\n", + "Debug : OCC surface 55 - new wire\n", + "Debug : Curve 147 (99 --> 97) ori 1\n", + "Debug : Curve 143 (97 --> 98) ori 1\n", + "Debug : Curve 149 (98 --> 100) ori 1\n", + "Debug : Curve 148 (100 --> 99) ori 1\n", + "Debug : OCC surface 55 with 4 parameter bounds (-2.4,-2.29)(-0.85,-0.845)\n", "Debug : OCCRTree found 1 matches at (2.345,0.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (2.345,0.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (2.345,0.0025,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 55 - new wire\n", - "Debug : Curve 141 (21 --> 96) ori -1\n", + "Debug : OCC surface 56 - new wire\n", + "Debug : Curve 144 (21 --> 98) ori -1\n", "Debug : Curve 22 (21 --> 20) ori 1\n", - "Debug : Curve 148 (60 --> 20) ori -1\n", - "Debug : Curve 74 (56 --> 60) ori -1\n", - "Debug : Curve 147 (96 --> 56) ori -1\n", - "Debug : OCC surface 55 with 5 parameter bounds (-2.29,-1.31)(0.455,0.545)\n", + "Debug : Curve 151 (58 --> 20) ori -1\n", + "Debug : Curve 73 (54 --> 58) ori -1\n", + "Debug : Curve 150 (98 --> 54) ori -1\n", + "Debug : OCC surface 56 with 5 parameter bounds (-2.29,-1.31)(-0.94,-0.85)\n", "Debug : OCCRTree found 1 matches at (1.8,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (1.8,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (1.8,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 56 - new wire\n", + "Debug : OCC surface 57 - new wire\n", "Debug : Curve 16 (15 --> 14) ori 1\n", - "Debug : Curve 143 (68 --> 14) ori -1\n", - "Debug : Curve 86 (69 --> 68) ori -1\n", - "Debug : Curve 149 (15 --> 69) ori -1\n", - "Debug : OCC surface 56 with 4 parameter bounds (0.31,1.19)(0.455,0.545)\n", + "Debug : Curve 146 (66 --> 14) ori -1\n", + "Debug : Curve 85 (67 --> 66) ori -1\n", + "Debug : Curve 152 (15 --> 67) ori -1\n", + "Debug : OCC surface 57 with 4 parameter bounds (0.31,1.19)(-0.94,-0.85)\n", "Debug : OCCRTree found 1 matches at (-0.75,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (-0.75,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (-0.75,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 57 - new wire\n", - "Debug : Curve 150 (55 --> 97) ori 1\n", - "Debug : Curve 145 (98 --> 97) ori -1\n", - "Debug : Curve 146 (96 --> 98) ori -1\n", - "Debug : Curve 147 (96 --> 56) ori 1\n", - "Debug : Curve 70 (56 --> 54) ori 1\n", - "Debug : Curve 68 (55 --> 54) ori -1\n", - "Debug : OCC surface 57 with 6 parameter bounds (-2.4,-2)(0.545,1.045)\n", - "Debug : OCCRTree found 1 matches at (2.2,0.25,0) in tree of size 654\n", + "Debug : OCC surface 58 - new wire\n", + "Debug : Curve 153 (53 --> 99) ori 1\n", + "Debug : Curve 148 (100 --> 99) ori -1\n", + "Debug : Curve 149 (98 --> 100) ori -1\n", + "Debug : Curve 150 (98 --> 54) ori 1\n", + "Debug : Curve 69 (54 --> 52) ori 1\n", + "Debug : Curve 67 (53 --> 52) ori -1\n", + "Debug : OCC surface 58 with 6 parameter bounds (-2.4,-2)(-0.85,1.15)\n", + "Debug : OCCRTree found 1 matches at (2.2,1,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.2,0.25,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.2,1,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.2,0.25,0) in tree of size 654\n", + "Debug : OCCRTree found 1 matches at (2.2,1,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 58 - new wire\n", - "Debug : Curve 148 (60 --> 20) ori 1\n", + "Debug : OCC surface 59 - new wire\n", + "Debug : Curve 151 (58 --> 20) ori 1\n", "Debug : Curve 21 (20 --> 19) ori 1\n", - "Debug : Curve 151 (19 --> 59) ori 1\n", - "Debug : Curve 73 (60 --> 59) ori -1\n", - "Debug : OCC surface 58 with 4 parameter bounds (-1.31,-1.19)(0.455,0.545)\n", + "Debug : Curve 154 (19 --> 57) ori 1\n", + "Debug : Curve 72 (58 --> 57) ori -1\n", + "Debug : OCC surface 59 with 4 parameter bounds (-1.31,-1.19)(-0.94,-0.85)\n", "Debug : OCCRTree found 2 matches at (1.25,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (1.25,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (1.25,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 59 - new wire\n", - "Debug : Curve 62 (50 --> 51) ori 1\n", - "Debug : Curve 154 (51 --> 100) ori 1\n", - "Debug : Curve 153 (100 --> 99) ori 1\n", - "Debug : Curve 152 (99 --> 50) ori 1\n", - "Debug : OCC surface 59 with 4 parameter bounds (-2.4,2.4)(1.545,1.75)\n", - "Debug : OCCRTree found 1 matches at (0,1.1025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,1.1025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,1.1025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCC surface 60 - new wire\n", "Debug : Curve 17 (16 --> 15) ori 1\n", - "Debug : Curve 149 (15 --> 69) ori 1\n", - "Debug : Curve 87 (64 --> 69) ori -1\n", - "Debug : Curve 120 (85 --> 64) ori -1\n", + "Debug : Curve 152 (15 --> 67) ori 1\n", + "Debug : Curve 86 (62 --> 67) ori -1\n", + "Debug : Curve 120 (85 --> 62) ori -1\n", "Debug : Curve 155 (85 --> 16) ori 1\n", - "Debug : OCC surface 60 with 5 parameter bounds (0.19,0.31)(0.455,0.545)\n", + "Debug : OCC surface 60 with 5 parameter bounds (0.19,0.31)(-0.94,-0.85)\n", "Debug : OCCRTree found 2 matches at (-0.25,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (-0.25,-0.045,0) in tree of size 654\n", @@ -2373,11 +2379,11 @@ "Debug : OCCRTree found 2 matches at (-0.25,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCC surface 61 - new wire\n", - "Debug : Curve 151 (19 --> 59) ori -1\n", + "Debug : Curve 154 (19 --> 57) ori -1\n", "Debug : Curve 20 (19 --> 18) ori 1\n", - "Debug : Curve 156 (57 --> 18) ori -1\n", - "Debug : Curve 72 (59 --> 57) ori -1\n", - "Debug : OCC surface 61 with 4 parameter bounds (-1.19,-0.31)(0.455,0.545)\n", + "Debug : Curve 156 (55 --> 18) ori -1\n", + "Debug : Curve 71 (57 --> 55) ori -1\n", + "Debug : OCC surface 61 with 4 parameter bounds (-1.19,-0.31)(-0.94,-0.85)\n", "Debug : OCCRTree found 1 matches at (0.75,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (0.75,-0.045,0) in tree of size 654\n", @@ -2389,7 +2395,7 @@ "Debug : Curve 155 (85 --> 16) ori -1\n", "Debug : Curve 121 (86 --> 85) ori -1\n", "Debug : Curve 157 (17 --> 86) ori -1\n", - "Debug : OCC surface 62 with 4 parameter bounds (-0.19,0.19)(0.455,0.545)\n", + "Debug : OCC surface 62 with 4 parameter bounds (-0.19,0.19)(-0.94,-0.85)\n", "Debug : OCCRTree found 1 matches at (0,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 1 matches at (0,-0.045,0) in tree of size 654\n", @@ -2397,35 +2403,35 @@ "Debug : OCCRTree found 1 matches at (0,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCC surface 63 - new wire\n", - "Debug : Curve 156 (57 --> 18) ori 1\n", + "Debug : Curve 156 (55 --> 18) ori 1\n", "Debug : Curve 19 (18 --> 17) ori 1\n", "Debug : Curve 157 (17 --> 86) ori 1\n", - "Debug : Curve 122 (58 --> 86) ori -1\n", - "Debug : Curve 71 (57 --> 58) ori -1\n", - "Debug : OCC surface 63 with 5 parameter bounds (-0.31,-0.19)(0.455,0.545)\n", + "Debug : Curve 122 (56 --> 86) ori -1\n", + "Debug : Curve 70 (55 --> 56) ori -1\n", + "Debug : OCC surface 63 with 5 parameter bounds (-0.31,-0.19)(-0.94,-0.85)\n", "Debug : OCCRTree found 2 matches at (0.25,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (0.25,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", "Debug : OCCRTree found 2 matches at (0.25,-0.045,0) in tree of size 654\n", "Debug : OCCRtree 0 matches after bounding box filtering\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:12\u001b[0m.\u001b[1;36m112\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin constructing surface dictionary.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:12\u001b[0m.\u001b[1;36m120\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd constructing surface dictionary.\u001b[0m \n", "Debug : GModel imported:\n", "Debug : 81 points\n", "Debug : 110 curves\n", "Debug : 32 surfaces\n", "Debug : 0 volumes\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m212\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin constructing surface dictionary.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m226\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd constructing surface dictionary.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m236\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin create volume zones.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m247\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd create volume zones.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m257\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin create surface zones.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m273\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mContinue create surface zones.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m300\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd create surface zones.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:12\u001b[0m.\u001b[1;36m126\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin create volume zones.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:12\u001b[0m.\u001b[1;36m133\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd create volume zones.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:12\u001b[0m.\u001b[1;36m139\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin create surface zones.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:12\u001b[0m.\u001b[1;36m147\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mContinue create surface zones.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:12\u001b[0m.\u001b[1;36m154\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd create surface zones.\u001b[0m \n", "Debug : Decoded option name 'Mesh' . 'MeshSizeExtendFromBoundary' (index 0)\n", "Debug : Decoded option name 'Mesh' . 'MeshSizeFromPoints' (index 0)\n", "Debug : Decoded option name 'Mesh' . 'MeshSizeFromCurvature' (index 0)\n", "Debug : Destroying 28 entities in model\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m324\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin meshing.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:12\u001b[0m.\u001b[1;36m160\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin meshing.\u001b[0m \n", "Debug : Decoded option name 'Mesh' . 'Algorithm' (index 0)\n", "Debug : Decoded option name 'Mesh' . 'Algorithm3D' (index 0)\n", "Debug : Decoded option name 'General' . 'NumThreads' (index 0)\n", @@ -2455,7 +2461,7 @@ "Info : [ 20%] Meshing curve 23 (Line)\n", "Debug : Meshing curve 23 (Line): 26 interior vertices\n", "Info : [ 20%] Meshing curve 25 (Line)\n", - "Debug : Meshing curve 25 (Line): 15 interior vertices\n", + "Debug : Meshing curve 25 (Line): 11 interior vertices\n", "Info : [ 20%] Meshing curve 26 (Line)\n", "Debug : Meshing curve 26 (Line): 26 interior vertices\n", "Info : [ 20%] Meshing curve 27 (Line)\n", @@ -2489,71 +2495,71 @@ "Info : [ 30%] Meshing curve 41 (Line)\n", "Debug : Meshing curve 41 (Line): 26 interior vertices\n", "Info : [ 40%] Meshing curve 42 (Line)\n", - "Debug : Meshing curve 42 (Line): 15 interior vertices\n", + "Debug : Meshing curve 42 (Line): 11 interior vertices\n", "Info : [ 40%] Meshing curve 43 (Line)\n", "Debug : Meshing curve 43 (Line): 1 interior vertices\n", "Info : [ 40%] Meshing curve 44 (Line)\n", "Debug : Meshing curve 44 (Line): 1 interior vertices\n", - "Info : [ 40%] Meshing curve 62 (Line)\n", - "Debug : Meshing curve 62 (Line): 9 interior vertices\n", - "Info : [ 40%] Meshing curve 68 (Line)\n", - "Debug : Meshing curve 68 (Line): 0 interior vertices\n", + "Info : [ 40%] Meshing curve 67 (Line)\n", + "Debug : Meshing curve 67 (Line): 0 interior vertices\n", + "Info : [ 40%] Meshing curve 69 (Line)\n", + "Debug : Meshing curve 69 (Line): 9 interior vertices\n", "Info : [ 40%] Meshing curve 70 (Line)\n", - "Debug : Meshing curve 70 (Line): 4 interior vertices\n", + "Debug : Meshing curve 70 (Line): 14 interior vertices\n", "Info : [ 40%] Meshing curve 71 (Line)\n", - "Debug : Meshing curve 71 (Line): 14 interior vertices\n", + "Debug : Meshing curve 71 (Line): 40 interior vertices\n", "Info : [ 40%] Meshing curve 72 (Line)\n", - "Debug : Meshing curve 72 (Line): 40 interior vertices\n", + "Debug : Meshing curve 72 (Line): 28 interior vertices\n", "Info : [ 40%] Meshing curve 73 (Line)\n", - "Debug : Meshing curve 73 (Line): 28 interior vertices\n", - "Info : [ 40%] Meshing curve 74 (Line)\n", - "Debug : Meshing curve 74 (Line): 30 interior vertices\n", + "Debug : Meshing curve 73 (Line): 30 interior vertices\n", + "Info : [ 40%] Meshing curve 76 (Line)\n", + "Debug : Meshing curve 76 (Line): 11 interior vertices\n", "Info : [ 50%] Meshing curve 77 (Line)\n", - "Debug : Meshing curve 77 (Line): 11 interior vertices\n", - "Info : [ 50%] Meshing curve 78 (Line)\n", - "Debug : Meshing curve 78 (Line): 1 interior vertices\n", - "Info : [ 50%] Meshing curve 80 (Line)\n", - "Debug : Meshing curve 80 (Line): 19 interior vertices\n", + "Debug : Meshing curve 77 (Line): 1 interior vertices\n", + "Info : [ 50%] Meshing curve 79 (Line)\n", + "Debug : Meshing curve 79 (Line): 19 interior vertices\n", + "Info : [ 50%] Meshing curve 81 (Line)\n", + "Debug : Meshing curve 81 (Line): 11 interior vertices\n", "Info : [ 50%] Meshing curve 82 (Line)\n", - "Debug : Meshing curve 82 (Line): 11 interior vertices\n", + "Debug : Meshing curve 82 (Line): 1 interior vertices\n", "Info : [ 50%] Meshing curve 83 (Line)\n", - "Debug : Meshing curve 83 (Line): 1 interior vertices\n", + "Debug : Meshing curve 83 (Line): 30 interior vertices\n", "Info : [ 50%] Meshing curve 84 (Line)\n", - "Debug : Meshing curve 84 (Line): 30 interior vertices\n", + "Debug : Meshing curve 84 (Line): 28 interior vertices\n", "Info : [ 50%] Meshing curve 85 (Line)\n", - "Debug : Meshing curve 85 (Line): 28 interior vertices\n", + "Debug : Meshing curve 85 (Line): 40 interior vertices\n", "Info : [ 50%] Meshing curve 86 (Line)\n", - "Debug : Meshing curve 86 (Line): 40 interior vertices\n", - "Info : [ 50%] Meshing curve 87 (Line)\n", - "Debug : Meshing curve 87 (Line): 14 interior vertices\n", - "Info : [ 60%] Meshing curve 90 (Line)\n", - "Debug : Meshing curve 90 (Line): 4 interior vertices\n", - "Info : [ 60%] Meshing curve 93 (Line)\n", - "Debug : Meshing curve 93 (Line): 0 interior vertices\n", + "Debug : Meshing curve 86 (Line): 14 interior vertices\n", + "Info : [ 50%] Meshing curve 89 (Line)\n", + "Debug : Meshing curve 89 (Line): 9 interior vertices\n", + "Info : [ 60%] Meshing curve 92 (Line)\n", + "Debug : Meshing curve 92 (Line): 0 interior vertices\n", + "Info : [ 60%] Meshing curve 106 (Line)\n", + "Debug : Meshing curve 106 (Line): 1 interior vertices\n", "Info : [ 60%] Meshing curve 107 (Line)\n", - "Debug : Meshing curve 107 (Line): 1 interior vertices\n", + "Debug : Meshing curve 107 (Line): 28 interior vertices\n", "Info : [ 60%] Meshing curve 108 (Line)\n", - "Debug : Meshing curve 108 (Line): 28 interior vertices\n", + "Debug : Meshing curve 108 (Line): 1 interior vertices\n", "Info : [ 60%] Meshing curve 109 (Line)\n", "Debug : Meshing curve 109 (Line): 1 interior vertices\n", "Info : [ 60%] Meshing curve 110 (Line)\n", - "Debug : Meshing curve 110 (Line): 1 interior vertices\n", + "Debug : Meshing curve 110 (Line): 14 interior vertices\n", "Info : [ 60%] Meshing curve 111 (Line)\n", "Debug : Meshing curve 111 (Line): 14 interior vertices\n", "Info : [ 60%] Meshing curve 112 (Line)\n", - "Debug : Meshing curve 112 (Line): 14 interior vertices\n", + "Debug : Meshing curve 112 (Line): 1 interior vertices\n", "Info : [ 60%] Meshing curve 113 (Line)\n", "Debug : Meshing curve 113 (Line): 1 interior vertices\n", "Info : [ 60%] Meshing curve 114 (Line)\n", - "Debug : Meshing curve 114 (Line): 1 interior vertices\n", + "Debug : Meshing curve 114 (Line): 28 interior vertices\n", "Info : [ 70%] Meshing curve 115 (Line)\n", - "Debug : Meshing curve 115 (Line): 28 interior vertices\n", + "Debug : Meshing curve 115 (Line): 1 interior vertices\n", "Info : [ 70%] Meshing curve 116 (Line)\n", - "Debug : Meshing curve 116 (Line): 1 interior vertices\n", + "Debug : Meshing curve 116 (Line): 2 interior vertices\n", "Info : [ 70%] Meshing curve 117 (Line)\n", - "Debug : Meshing curve 117 (Line): 0 interior vertices\n", + "Debug : Meshing curve 117 (Line): 9 interior vertices\n", "Info : [ 70%] Meshing curve 118 (Line)\n", - "Debug : Meshing curve 118 (Line): 0 interior vertices\n", + "Debug : Meshing curve 118 (Line): 2 interior vertices\n", "Info : [ 70%] Meshing curve 120 (Line)\n", "Debug : Meshing curve 120 (Line): 14 interior vertices\n", "Info : [ 70%] Meshing curve 121 (Line)\n", @@ -2568,32 +2574,32 @@ "Debug : Meshing curve 125 (Line): 14 interior vertices\n", "Info : [ 80%] Meshing curve 126 (Line)\n", "Debug : Meshing curve 126 (Line): 1 interior vertices\n", - "Info : [ 80%] Meshing curve 131 (Line)\n", - "Debug : Meshing curve 131 (Line): 21 interior vertices\n", - "Info : [ 80%] Meshing curve 132 (Line)\n", - "Debug : Meshing curve 132 (Line): 26 interior vertices\n", - "Info : [ 80%] Meshing curve 133 (Line)\n", - "Debug : Meshing curve 133 (Line): 21 interior vertices\n", - "Info : [ 80%] Meshing curve 137 (Line)\n", - "Debug : Meshing curve 137 (Line): 21 interior vertices\n", - "Info : [ 80%] Meshing curve 138 (Line)\n", - "Debug : Meshing curve 138 (Line): 14 interior vertices\n", - "Info : [ 80%] Meshing curve 139 (Line)\n", - "Debug : Meshing curve 139 (Line): 21 interior vertices\n", + "Info : [ 80%] Meshing curve 134 (Line)\n", + "Debug : Meshing curve 134 (Line): 21 interior vertices\n", + "Info : [ 80%] Meshing curve 135 (Line)\n", + "Debug : Meshing curve 135 (Line): 26 interior vertices\n", + "Info : [ 80%] Meshing curve 136 (Line)\n", + "Debug : Meshing curve 136 (Line): 21 interior vertices\n", "Info : [ 80%] Meshing curve 140 (Line)\n", - "Debug : Meshing curve 140 (Line): 26 interior vertices\n", + "Debug : Meshing curve 140 (Line): 21 interior vertices\n", "Info : [ 80%] Meshing curve 141 (Line)\n", - "Debug : Meshing curve 141 (Line): 21 interior vertices\n", - "Info : [ 90%] Meshing curve 143 (Line)\n", - "Debug : Meshing curve 143 (Line): 21 interior vertices\n", - "Info : [ 90%] Meshing curve 147 (Line)\n", - "Debug : Meshing curve 147 (Line): 14 interior vertices\n", - "Info : [ 90%] Meshing curve 148 (Line)\n", - "Debug : Meshing curve 148 (Line): 21 interior vertices\n", - "Info : [ 90%] Meshing curve 149 (Line)\n", - "Debug : Meshing curve 149 (Line): 21 interior vertices\n", + "Debug : Meshing curve 141 (Line): 14 interior vertices\n", + "Info : [ 80%] Meshing curve 142 (Line)\n", + "Debug : Meshing curve 142 (Line): 21 interior vertices\n", + "Info : [ 80%] Meshing curve 143 (Line)\n", + "Debug : Meshing curve 143 (Line): 26 interior vertices\n", + "Info : [ 80%] Meshing curve 144 (Line)\n", + "Debug : Meshing curve 144 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 146 (Line)\n", + "Debug : Meshing curve 146 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 150 (Line)\n", + "Debug : Meshing curve 150 (Line): 14 interior vertices\n", "Info : [ 90%] Meshing curve 151 (Line)\n", "Debug : Meshing curve 151 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 152 (Line)\n", + "Debug : Meshing curve 152 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 154 (Line)\n", + "Debug : Meshing curve 154 (Line): 21 interior vertices\n", "Info : [ 90%] Meshing curve 155 (Line)\n", "Debug : Meshing curve 155 (Line): 21 interior vertices\n", "Info : [ 90%] Meshing curve 156 (Line)\n", @@ -2619,31 +2625,109 @@ "Info : [100%] Meshing curve 171 (Line)\n", "Debug : Meshing curve 171 (Line): 0 interior vertices\n", "Info : [100%] Meshing curve 178 (Line)\n", - "Debug : Meshing curve 178 (Line): 0 interior vertices\n", + "Debug : Meshing curve 178 (Line): 3 interior vertices\n", "Info : [100%] Meshing curve 179 (Line)\n", - "Debug : Meshing curve 179 (Line): 0 interior vertices\n", - "Info : Done meshing 1D (Wall 0.0617277s, CPU 0.064583s)\n", + "Debug : Meshing curve 179 (Line): 3 interior vertices\n", + "Info : Done meshing 1D (Wall 0.0433029s, CPU 0.047033s)\n", "Info : Meshing 2D...\n", "Info : [ 0%] Meshing surface 7 (Plane, Delaunay)\n", "Debug : Recovering 24 model edges\n", - "Debug : Recovering 425 mesh edges (0 not recovered)\n", + "Debug : Recovering 417 mesh edges (0 not recovered)\n", "Debug : Boundary edges recovered for surface 7\n", - "Debug : Computing mesh size field at mesh nodes 425\n", + "Debug : Computing mesh size field at mesh nodes 417\n", "Debug : Delaunizing the initial mesh\n", "Debug : Starting to add internal nodes\n", - "Debug : 425 points created -- Worst tri radius is 47.689\n", - "Debug : Point -2.28753 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point 2.28753 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.31247 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.31247 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.312471 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point 0.312471 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.18753 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.18753 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point 0.187542 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.187542 0.45375 cannot be inserted because it is too close to another point)\n", + "Debug : 417 points created -- Worst tri radius is 16.636\n", + "Debug : Point 0.849571 -0.962496 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.849571 -0.962496 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.92425 -0.994632 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.92425 -0.994632 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.974031 -0.994626 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.974031 -0.994626 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.0245666 -0.994823 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.0236 -0.995088 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.0236 -0.995088 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.0624619 -0.983954 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.99922 -0.961566 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.99922 -0.961566 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.04902 -0.961566 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.04902 -0.961566 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.700214 -0.961558 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.700214 -0.961558 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.188237 -0.952773 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.188237 -0.952773 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.18823 -0.952775 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.18823 -0.952775 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.307931 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.307931 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30793 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30793 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.28753 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.28753 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.31247 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.31247 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.312471 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.312471 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.18753 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.18753 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19207 -0.949745 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19207 -0.949745 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.192069 -0.949739 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.192069 -0.949739 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.187542 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.187542 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30793 -0.949572 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30793 -0.949572 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.307931 -0.949571 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.307931 -0.949571 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.299655 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.299655 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.29966 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.29966 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.20862 -0.950133 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.20862 -0.950133 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.208621 -0.950133 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.245862 -0.949827 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.864448 -1.00756 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.857824 -0.981105 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.817402 -0.981659 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.749674 -0.994294 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.864448 -1.00756 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.857824 -0.981105 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.817402 -0.981659 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.749674 -0.994294 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.200345 -0.949739 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.295517 -0.949413 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.295517 -0.949413 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.29552 -0.949413 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.29552 -0.949413 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.241724 -0.949404 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.13618 -0.985957 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.13618 -0.985957 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19621 -0.948615 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19621 -0.948615 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.20862 -0.94909 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.20862 -0.94909 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.196207 -0.948615 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.212759 -0.948615 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.21276 -0.948743 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.21276 -0.948743 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.241724 -0.948584 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.25 -0.948744 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.25 -0.948744 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.241724 -0.948831 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.24172 -0.948831 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.24172 -0.948831 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.313011 -0.979156 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.313011 -0.979156 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.313 -0.979134 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.313 -0.979134 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.2519 -0.998086 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.2519 -0.998086 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.251899 -0.998093 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.251899 -0.998093 cannot be inserted because it is too close to another point)\n", "Debug : laplacian smoothing ...\n", - "Debug : Type 16 2011 triangles generated, 794 internal nodes\n", + "Debug : Type 16 1685 triangles generated, 635 internal nodes\n", "Info : [ 10%] Meshing surface 8 (Plane, Delaunay)\n", "Debug : Recovering 4 model edges\n", "Debug : Recovering 58 mesh edges (0 not recovered)\n", @@ -2652,10 +2736,10 @@ "Debug : Delaunizing the initial mesh\n", "Debug : Starting to add internal nodes\n", "Debug : 58 points created -- Worst tri radius is 0.792\n", - "Debug : Point -2.39796 0.45125 cannot be inserted because it is too close to another point)\n", - "Debug : Point -2.39796 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point -2.29204 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point -2.29204 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.39796 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.29204 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.29204 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.39796 -0.94375 cannot be inserted because it is too close to another point)\n", "Debug : laplacian smoothing ...\n", "Debug : Type 16 110 triangles generated, 27 internal nodes\n", "Info : [ 10%] Meshing surface 9 (Plane, Delaunay)\n", @@ -2666,12 +2750,12 @@ "Debug : Delaunizing the initial mesh\n", "Debug : Starting to add internal nodes\n", "Debug : 62 points created -- Worst tri radius is 0.794\n", - "Debug : Point -1.19207 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.30793 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.30793 0.45125 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.19207 0.45125 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.30718 0.4525 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.19282 0.4525 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19207 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30793 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30793 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19207 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30718 -0.9425 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19282 -0.9425 cannot be inserted because it is too close to another point)\n", "Debug : laplacian smoothing ...\n", "Debug : Type 16 114 triangles generated, 27 internal nodes\n", "Info : [ 20%] Meshing surface 10 (Plane, Delaunay)\n", @@ -2682,12 +2766,12 @@ "Debug : Delaunizing the initial mesh\n", "Debug : Starting to add internal nodes\n", "Debug : 62 points created -- Worst tri radius is 0.794\n", - "Debug : Point -0.307931 0.45125 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.192069 0.45125 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.192069 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.307931 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.192824 0.4525 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.307176 0.4525 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.307931 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.192069 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.192069 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.307931 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.192824 -0.9425 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.307176 -0.9425 cannot be inserted because it is too close to another point)\n", "Debug : laplacian smoothing ...\n", "Debug : Type 16 114 triangles generated, 27 internal nodes\n", "Info : [ 20%] Meshing surface 11 (Plane, Delaunay)\n", @@ -2698,12 +2782,12 @@ "Debug : Delaunizing the initial mesh\n", "Debug : Starting to add internal nodes\n", "Debug : 62 points created -- Worst tri radius is 0.794\n", - "Debug : Point 0.307931 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point 0.192069 0.45125 cannot be inserted because it is too close to another point)\n", - "Debug : Point 0.307931 0.45125 cannot be inserted because it is too close to another point)\n", - "Debug : Point 0.192069 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point 0.192824 0.4525 cannot be inserted because it is too close to another point)\n", - "Debug : Point 0.307176 0.4525 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.307931 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.192069 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.307931 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.192069 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.192824 -0.9425 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.307176 -0.9425 cannot be inserted because it is too close to another point)\n", "Debug : laplacian smoothing ...\n", "Debug : Type 16 114 triangles generated, 27 internal nodes\n", "Info : [ 20%] Meshing surface 12 (Plane, Delaunay)\n", @@ -2714,12 +2798,12 @@ "Debug : Delaunizing the initial mesh\n", "Debug : Starting to add internal nodes\n", "Debug : 62 points created -- Worst tri radius is 0.794\n", - "Debug : Point 1.30793 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.19207 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.19207 0.45125 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.30793 0.45125 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.19282 0.4525 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.30718 0.4525 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30793 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19207 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19207 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30793 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19282 -0.9425 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30718 -0.9425 cannot be inserted because it is too close to another point)\n", "Debug : laplacian smoothing ...\n", "Debug : Type 16 114 triangles generated, 27 internal nodes\n", "Info : [ 30%] Meshing surface 13 (Plane, Delaunay)\n", @@ -2730,48 +2814,30 @@ "Debug : Delaunizing the initial mesh\n", "Debug : Starting to add internal nodes\n", "Debug : 58 points created -- Worst tri radius is 0.792\n", - "Debug : Point 2.39796 0.45125 cannot be inserted because it is too close to another point)\n", - "Debug : Point 2.39796 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point 2.29204 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point 2.29204 0.45125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.39796 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.39796 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.29204 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.29204 -0.94375 cannot be inserted because it is too close to another point)\n", "Debug : laplacian smoothing ...\n", "Debug : Type 16 110 triangles generated, 27 internal nodes\n", "Info : [ 30%] Meshing surface 35 (Plane, Delaunay)\n", "Debug : Recovering 24 model edges\n", - "Debug : Recovering 312 mesh edges (0 not recovered)\n", + "Debug : Recovering 326 mesh edges (0 not recovered)\n", "Debug : Boundary edges recovered for surface 35\n", - "Debug : Computing mesh size field at mesh nodes 312\n", + "Debug : Computing mesh size field at mesh nodes 326\n", "Debug : Delaunizing the initial mesh\n", "Debug : Starting to add internal nodes\n", - "Debug : 312 points created -- Worst tri radius is 28.183\n", - "Debug : Point 0.278471 0.753119 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.278471 0.753119 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.92425 0.599632 cannot be inserted because it is too close to another point)\n", - "Debug : Point 0.92425 0.599632 cannot be inserted because it is too close to another point)\n", - "Debug : Point 0.974031 0.599626 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.974031 0.599626 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.0236 0.600088 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.0236 0.600088 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.79154 0.598819 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.74272 0.599332 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.79154 0.598819 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.74272 0.599332 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.90192 0.601289 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.90192 0.601289 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.312471 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : Point 0.312471 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.18753 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.18753 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.31243 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.31243 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.268545 0.773526 cannot be inserted because it is too close to another point)\n", - "Debug : Point 0.268545 0.773526 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.60759 0.590312 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.60759 0.590312 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.97768 0.604631 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.97768 0.604631 cannot be inserted because it is too close to another point)\n", + "Debug : 326 points created -- Worst tri radius is 47.641\n", + "Debug : Point -0.312471 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.312471 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.18753 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.18753 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.31243 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.31243 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.8484 -0.80827 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.8484 -0.80827 cannot be inserted because it is too close to another point)\n", "Debug : laplacian smoothing ...\n", - "Debug : Type 16 1284 triangles generated, 487 internal nodes\n", + "Debug : Type 16 1482 triangles generated, 579 internal nodes\n", "Info : [ 40%] Meshing surface 36 (Plane, Delaunay)\n", "Debug : Recovering 4 model edges\n", "Debug : Recovering 62 mesh edges (0 not recovered)\n", @@ -2780,12 +2846,12 @@ "Debug : Delaunizing the initial mesh\n", "Debug : Starting to add internal nodes\n", "Debug : 62 points created -- Worst tri radius is 0.794\n", - "Debug : Point 1.19207 0.54875 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.19207 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.30793 0.54875 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.30793 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.19282 0.5475 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.30718 0.5475 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19207 -0.84625 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19207 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30793 -0.84625 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30793 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19282 -0.8475 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30718 -0.8475 cannot be inserted because it is too close to another point)\n", "Debug : laplacian smoothing ...\n", "Debug : Type 16 114 triangles generated, 27 internal nodes\n", "Info : [ 40%] Meshing surface 37 (Plane, Delaunay)\n", @@ -2816,12 +2882,12 @@ "Debug : Delaunizing the initial mesh\n", "Debug : Starting to add internal nodes\n", "Debug : 62 points created -- Worst tri radius is 0.794\n", - "Debug : Point -1.30793 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.19207 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.30793 0.54875 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.19207 0.54875 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.19282 0.5475 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.30718 0.5475 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30793 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19207 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30793 -0.84625 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19207 -0.84625 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19282 -0.8475 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30718 -0.8475 cannot be inserted because it is too close to another point)\n", "Debug : laplacian smoothing ...\n", "Debug : Type 16 114 triangles generated, 27 internal nodes\n", "Info : [ 50%] Meshing surface 42 (Plane, Delaunay)\n", @@ -2832,10 +2898,10 @@ "Debug : Delaunizing the initial mesh\n", "Debug : Starting to add internal nodes\n", "Debug : 99 points created -- Worst tri radius is 9.102\n", - "Debug : Point 0.187542 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.187542 0.54625 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.187542 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.187542 -0.84875 cannot be inserted because it is too close to another point)\n", "Debug : laplacian smoothing ...\n", - "Debug : Type 16 617 triangles generated, 260 internal nodes\n", + "Debug : Type 16 613 triangles generated, 258 internal nodes\n", "Info : [ 60%] Meshing surface 43 (Plane, Delaunay)\n", "Debug : Recovering 4 model edges\n", "Debug : Recovering 34 mesh edges (0 not recovered)\n", @@ -2856,70 +2922,70 @@ "Debug : 34 points created -- Worst tri radius is 0.800\n", "Debug : laplacian smoothing ...\n", "Debug : Type 16 62 triangles generated, 15 internal nodes\n", - "Info : [ 60%] Meshing surface 48 (Plane, Delaunay)\n", + "Info : [ 60%] Meshing surface 49 (Plane, Delaunay)\n", "Debug : Recovering 4 model edges\n", "Debug : Recovering 98 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 48\n", + "Debug : Boundary edges recovered for surface 49\n", "Debug : Computing mesh size field at mesh nodes 98\n", "Debug : Delaunizing the initial mesh\n", "Debug : Starting to add internal nodes\n", "Debug : 98 points created -- Worst tri radius is 11.057\n", "Debug : laplacian smoothing ...\n", - "Debug : Type 16 1502 triangles generated, 703 internal nodes\n", - "Info : [ 70%] Meshing surface 50 (Plane, Delaunay)\n", + "Debug : Type 16 1506 triangles generated, 705 internal nodes\n", + "Info : [ 70%] Meshing surface 51 (Plane, Delaunay)\n", "Debug : Recovering 5 model edges\n", "Debug : Recovering 135 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 50\n", + "Debug : Boundary edges recovered for surface 51\n", "Debug : Computing mesh size field at mesh nodes 135\n", "Debug : Delaunizing the initial mesh\n", "Debug : Starting to add internal nodes\n", "Debug : 135 points created -- Worst tri radius is 5.960\n", "Debug : laplacian smoothing ...\n", "Debug : Type 16 539 triangles generated, 203 internal nodes\n", - "Info : [ 70%] Meshing surface 51 (Plane, Delaunay)\n", + "Info : [ 70%] Meshing surface 52 (Plane, Delaunay)\n", "Debug : Recovering 4 model edges\n", "Debug : Recovering 98 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 51\n", + "Debug : Boundary edges recovered for surface 52\n", "Debug : Computing mesh size field at mesh nodes 98\n", "Debug : Delaunizing the initial mesh\n", "Debug : Starting to add internal nodes\n", "Debug : 98 points created -- Worst tri radius is 11.057\n", "Debug : laplacian smoothing ...\n", - "Debug : Type 16 1516 triangles generated, 710 internal nodes\n", - "Info : [ 70%] Meshing surface 53 (Plane, Delaunay)\n", + "Debug : Type 16 1522 triangles generated, 713 internal nodes\n", + "Info : [ 70%] Meshing surface 54 (Plane, Delaunay)\n", "Debug : Recovering 4 model edges\n", "Debug : Recovering 102 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 53\n", + "Debug : Boundary edges recovered for surface 54\n", "Debug : Computing mesh size field at mesh nodes 102\n", "Debug : Delaunizing the initial mesh\n", "Debug : Starting to add internal nodes\n", "Debug : 102 points created -- Worst tri radius is 10.917\n", "Debug : laplacian smoothing ...\n", - "Debug : Type 16 1620 triangles generated, 760 internal nodes\n", - "Info : [ 80%] Meshing surface 55 (Plane, Delaunay)\n", + "Debug : Type 16 1608 triangles generated, 754 internal nodes\n", + "Info : [ 80%] Meshing surface 56 (Plane, Delaunay)\n", "Debug : Recovering 5 model edges\n", "Debug : Recovering 135 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 55\n", + "Debug : Boundary edges recovered for surface 56\n", "Debug : Computing mesh size field at mesh nodes 135\n", "Debug : Delaunizing the initial mesh\n", "Debug : Starting to add internal nodes\n", "Debug : 135 points created -- Worst tri radius is 5.960\n", "Debug : laplacian smoothing ...\n", "Debug : Type 16 539 triangles generated, 203 internal nodes\n", - "Info : [ 80%] Meshing surface 56 (Plane, Delaunay)\n", + "Info : [ 80%] Meshing surface 57 (Plane, Delaunay)\n", "Debug : Recovering 4 model edges\n", "Debug : Recovering 126 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 56\n", + "Debug : Boundary edges recovered for surface 57\n", "Debug : Computing mesh size field at mesh nodes 126\n", "Debug : Delaunizing the initial mesh\n", "Debug : Starting to add internal nodes\n", "Debug : 126 points created -- Worst tri radius is 5.990\n", "Debug : laplacian smoothing ...\n", "Debug : Type 16 486 triangles generated, 181 internal nodes\n", - "Info : [ 90%] Meshing surface 58 (Plane, Delaunay)\n", + "Info : [ 90%] Meshing surface 59 (Plane, Delaunay)\n", "Debug : Recovering 4 model edges\n", "Debug : Recovering 102 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 58\n", + "Debug : Boundary edges recovered for surface 59\n", "Debug : Computing mesh size field at mesh nodes 102\n", "Debug : Delaunizing the initial mesh\n", "Debug : Starting to add internal nodes\n", @@ -2935,7 +3001,7 @@ "Debug : Starting to add internal nodes\n", "Debug : 103 points created -- Worst tri radius is 11.128\n", "Debug : laplacian smoothing ...\n", - "Debug : Type 16 1627 triangles generated, 763 internal nodes\n", + "Debug : Type 16 1619 triangles generated, 759 internal nodes\n", "Info : [ 90%] Meshing surface 61 (Plane, Delaunay)\n", "Debug : Recovering 4 model edges\n", "Debug : Recovering 126 mesh edges (0 not recovered)\n", @@ -2965,10 +3031,10 @@ "Debug : Starting to add internal nodes\n", "Debug : 103 points created -- Worst tri radius is 11.128\n", "Debug : laplacian smoothing ...\n", - "Debug : Type 16 1613 triangles generated, 756 internal nodes\n", - "Info : Done meshing 2D (Wall 0.152024s, CPU 0.158448s)\n", - "Info : 8604 nodes 18480 elements\n", - "Debug : Minimum mesh quality (ICN) = 0.348727\n", + "Debug : Type 16 1623 triangles generated, 761 internal nodes\n", + "Info : Done meshing 2D (Wall 0.11802s, CPU 0.124421s)\n", + "Info : 8547 nodes 18360 elements\n", + "Debug : Minimum mesh quality (ICN) = 0.367733\n", "Debug : Renumbering for potentially partial mesh save\n", "Info : Removing duplicate mesh elements...\n", "Info : Done removing duplicate mesh elements\n", @@ -2981,14 +3047,14 @@ "Info : Done writing './output/gmsh.msh'\n", "Info : Writing './output/gmsh.vtk'...\n", "Info : Done writing './output/gmsh.vtk'\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m614\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd meshing.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m624\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd meshing heat-charge simulation.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:27\u001b[0m.\u001b[1;36m633\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mMesh heat-charge simulation time (s): 0.8077\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:12\u001b[0m.\u001b[1;36m380\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd meshing.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:12\u001b[0m.\u001b[1;36m386\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd meshing heat-charge simulation.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:12\u001b[0m.\u001b[1;36m391\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mMesh heat-charge simulation time (s): 0.5564\u001b[0m \n", "Resetting DEVSIM\n", "Physical group name bc_0 has 0 Tetrahedra.\n", "Physical group name bc_0 has 0 Triangles.\n", - "Physical group name bc_0 has 70 Lines.\n", - "Physical group name bc_0 has 72 Points.\n", + "Physical group name bc_0 has 76 Lines.\n", + "Physical group name bc_0 has 78 Points.\n", "Physical group name bc_1 has 0 Tetrahedra.\n", "Physical group name bc_1 has 0 Triangles.\n", "Physical group name bc_1 has 643 Lines.\n", @@ -3006,17 +3072,17 @@ "Physical group name bc_4 has 44 Lines.\n", "Physical group name bc_4 has 46 Points.\n", "Physical group name zone_1 has 0 Tetrahedra.\n", - "Physical group name zone_1 has 4323 Triangles.\n", - "Physical group name zone_1 has 6841 Lines.\n", - "Physical group name zone_1 has 2520 Points.\n", + "Physical group name zone_1 has 4195 Triangles.\n", + "Physical group name zone_1 has 6652 Lines.\n", + "Physical group name zone_1 has 2459 Points.\n", "Physical group name zone_3 has 0 Tetrahedra.\n", - "Physical group name zone_3 has 12615 Triangles.\n", - "Physical group name zone_3 has 19308 Lines.\n", - "Physical group name zone_3 has 6694 Points.\n", - "Device device has 8569 coordinates with max index 8569\n", - "Region zone_1 has 2520 nodes.\n", - "Region zone_3 has 6694 nodes.\n", - "Contact zone_1_bc_0 in region zone_1 with 72 nodes\n", + "Physical group name zone_3 has 12611 Triangles.\n", + "Physical group name zone_3 has 19302 Lines.\n", + "Physical group name zone_3 has 6692 Points.\n", + "Device device has 8506 coordinates with max index 8506\n", + "Region zone_1 has 2459 nodes.\n", + "Region zone_3 has 6692 nodes.\n", + "Contact zone_1_bc_0 in region zone_1 with 78 nodes\n", "Warning, contact \"zone_1_bc_0\" shares a node with contact \"zone_3_bc_2\"\n", "Contact zone_3_bc_2 in region zone_3 with 43 nodes\n", "Warning, contact \"zone_1_bc_0\" shares a node with contact \"zone_3_bc_3\"\n", @@ -3035,7 +3101,7 @@ "Replacing Node Model Electrons in region zone_1 of material Si\n", "Warning: Replacing equation with equation of the same name.\n", "Region: zone_3, Equation: PotentialEquation, Variable: Potential\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:28\u001b[0m.\u001b[1;36m236\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 0.01\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:12\u001b[0m.\u001b[1;36m905\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 1.0\u001b[0m \n", "Replacing Node Model NetDoping in region zone_1 of material Si\n", "Replacing Node Model n_i in region zone_1 of material Si\n", "Replacing Edge Model n_i@n0 in region zone_1 of material Si\n", @@ -3118,328 +3184,994 @@ "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.79782e+07\tAbsError: 2.04000e+18\n", - " Region: \"zone_1\"\tRelError: 1.00000e+00\tAbsError: 3.94714e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00000e+00\tAbsError: 3.94714e-01\n", - " Region: \"zone_3\"\tRelError: 1.79782e+07\tAbsError: 2.04000e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.98918e+06\tAbsError: 1.01999e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.98900e+06\tAbsError: 1.02001e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00000e+00\tAbsError: 3.96698e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.02134e+03\tAbsError: 5.28988e+17\n", - " Region: \"zone_1\"\tRelError: 8.09397e-01\tAbsError: 8.82032e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.09397e-01\tAbsError: 8.82032e-02\n", - " Region: \"zone_3\"\tRelError: 2.02053e+03\tAbsError: 5.28988e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.63152e+02\tAbsError: 2.39643e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.15671e+03\tAbsError: 2.89345e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 6.68292e-01\tAbsError: 8.50469e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 5.29619e+04\tAbsError: 5.40829e+17\n", - " Region: \"zone_1\"\tRelError: 3.49575e+00\tAbsError: 8.50914e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.49575e+00\tAbsError: 8.50914e-02\n", - " Region: \"zone_3\"\tRelError: 5.29584e+04\tAbsError: 5.40829e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84891e+03\tAbsError: 1.73566e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.11077e+04\tAbsError: 3.67263e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86071e+00\tAbsError: 8.36026e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.56340e+02\tAbsError: 1.60913e+17\n", - " Region: \"zone_1\"\tRelError: 7.02286e+01\tAbsError: 8.33246e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.02286e+01\tAbsError: 8.33246e-02\n", - " Region: \"zone_3\"\tRelError: 4.86111e+02\tAbsError: 1.60913e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.58439e+02\tAbsError: 4.77489e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.24056e+02\tAbsError: 1.13164e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03617e+02\tAbsError: 8.33199e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.59462e+03\tAbsError: 1.22966e+16\n", - " Region: \"zone_1\"\tRelError: 6.99663e+02\tAbsError: 8.14001e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.99663e+02\tAbsError: 8.14001e-02\n", - " Region: \"zone_3\"\tRelError: 5.89495e+03\tAbsError: 1.22966e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.96162e+02\tAbsError: 4.98403e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.42866e+02\tAbsError: 7.31259e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 4.55593e+03\tAbsError: 8.14001e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.75617e+03\tAbsError: 3.95067e+15\n", - " Region: \"zone_1\"\tRelError: 2.56000e+02\tAbsError: 7.80984e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.56000e+02\tAbsError: 7.80984e-02\n", - " Region: \"zone_3\"\tRelError: 3.50017e+03\tAbsError: 3.95067e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.11350e+01\tAbsError: 2.15897e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.36945e+03\tAbsError: 1.79170e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95825e+01\tAbsError: 7.80984e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 8.71973e+03\tAbsError: 3.68802e+15\n", - " Region: \"zone_1\"\tRelError: 1.83283e+03\tAbsError: 7.35600e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.83283e+03\tAbsError: 7.35600e-02\n", - " Region: \"zone_3\"\tRelError: 6.88690e+03\tAbsError: 3.68802e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.44856e+01\tAbsError: 2.01861e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.68953e+03\tAbsError: 1.66941e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 4.17288e+03\tAbsError: 7.35600e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.17699e+04\tAbsError: 3.55641e+15\n", - " Region: \"zone_1\"\tRelError: 1.61805e+00\tAbsError: 6.82367e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.61805e+00\tAbsError: 6.82367e-02\n", - " Region: \"zone_3\"\tRelError: 1.17683e+04\tAbsError: 3.55641e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02915e+03\tAbsError: 1.96286e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.07375e+04\tAbsError: 1.59355e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.69644e+00\tAbsError: 6.82367e-02\n", + "number of equations 22535\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.79782e+09\tAbsError: 2.04000e+20\n", + " Region: \"zone_1\"\tRelError: 1.00000e+00\tAbsError: 5.14166e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00000e+00\tAbsError: 5.14166e-01\n", + " Region: \"zone_3\"\tRelError: 1.79782e+09\tAbsError: 2.04000e+20\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.98918e+08\tAbsError: 1.01999e+20\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.98901e+08\tAbsError: 1.02001e+20\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00000e+00\tAbsError: 5.15972e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.13495e+04\tAbsError: 1.61934e+20\n", + " Region: \"zone_1\"\tRelError: 4.11719e-01\tAbsError: 9.01621e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.11719e-01\tAbsError: 9.01621e-02\n", + " Region: \"zone_3\"\tRelError: 3.13491e+04\tAbsError: 1.61934e+20\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.84124e+04\tAbsError: 7.45350e+19\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.93638e+03\tAbsError: 8.73988e+19\n", + " Equation: \"PotentialEquation\"\tRelError: 3.21539e-01\tAbsError: 8.20468e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.03402e+04\tAbsError: 7.37313e+17\n", + " Region: \"zone_1\"\tRelError: 7.00189e-01\tAbsError: 8.82633e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.00189e-01\tAbsError: 8.82633e-02\n", + " Region: \"zone_3\"\tRelError: 2.03395e+04\tAbsError: 7.37313e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.38875e+03\tAbsError: 1.26273e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.59503e+04\tAbsError: 6.11040e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 5.09168e-01\tAbsError: 8.38251e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.36450e+04\tAbsError: 1.30729e+17\n", + " Region: \"zone_1\"\tRelError: 3.04959e+00\tAbsError: 9.33349e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.04959e+00\tAbsError: 9.33349e-02\n", + " Region: \"zone_3\"\tRelError: 1.36419e+04\tAbsError: 1.30729e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.15687e+03\tAbsError: 6.58589e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.48374e+03\tAbsError: 6.48701e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33159e+00\tAbsError: 9.34411e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.45951e+03\tAbsError: 1.57600e+17\n", + " Region: \"zone_1\"\tRelError: 5.95768e+01\tAbsError: 1.01799e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95768e+01\tAbsError: 1.01799e-01\n", + " Region: \"zone_3\"\tRelError: 3.39993e+03\tAbsError: 1.57600e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.06827e+02\tAbsError: 8.19636e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.55579e+03\tAbsError: 7.56366e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37314e+02\tAbsError: 1.02200e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.39810e+03\tAbsError: 1.73113e+17\n", + " Region: \"zone_1\"\tRelError: 3.03907e+02\tAbsError: 9.38749e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.03907e+02\tAbsError: 9.38749e-02\n", + " Region: \"zone_3\"\tRelError: 3.09419e+03\tAbsError: 1.73113e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.48400e+02\tAbsError: 7.80469e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.31076e+03\tAbsError: 9.50663e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43502e+03\tAbsError: 9.44368e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.34685e+04\tAbsError: 7.89957e+16\n", + " Region: \"zone_1\"\tRelError: 2.57385e+02\tAbsError: 8.93472e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57385e+02\tAbsError: 8.93472e-02\n", + " Region: \"zone_3\"\tRelError: 4.32111e+04\tAbsError: 7.89957e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.15833e+03\tAbsError: 3.22804e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.09816e+04\tAbsError: 4.67153e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.11479e+01\tAbsError: 8.98681e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.93873e+03\tAbsError: 4.46569e+16\n", + " Region: \"zone_1\"\tRelError: 6.43775e+01\tAbsError: 8.62754e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.43775e+01\tAbsError: 8.62754e-02\n", + " Region: \"zone_3\"\tRelError: 2.87436e+03\tAbsError: 4.46569e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.86600e+02\tAbsError: 1.74253e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.10906e+03\tAbsError: 2.72316e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.86910e+01\tAbsError: 8.67144e-02\n", "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.90710e+03\tAbsError: 3.56322e+15\n", - " Region: \"zone_1\"\tRelError: 5.40021e-01\tAbsError: 6.20658e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.40021e-01\tAbsError: 6.20658e-02\n", - " Region: \"zone_3\"\tRelError: 3.90656e+03\tAbsError: 3.56322e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.97521e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.89701e+03\tAbsError: 1.58800e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.52609e-01\tAbsError: 6.20658e-02\n", + " Device: \"device\"\tRelError: 1.12292e+04\tAbsError: 3.21725e+16\n", + " Region: \"zone_1\"\tRelError: 1.45840e+02\tAbsError: 8.29389e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45840e+02\tAbsError: 8.29389e-02\n", + " Region: \"zone_3\"\tRelError: 1.10834e+04\tAbsError: 3.21725e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.97996e+02\tAbsError: 1.39684e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.00876e+04\tAbsError: 1.82041e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.97763e+02\tAbsError: 8.34145e-02\n", "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.59564e+03\tAbsError: 3.90856e+15\n", - " Region: \"zone_1\"\tRelError: 3.02279e-01\tAbsError: 5.41457e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.02279e-01\tAbsError: 5.41457e-02\n", - " Region: \"zone_3\"\tRelError: 4.59534e+03\tAbsError: 3.90856e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.15072e+02\tAbsError: 2.13486e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.77996e+03\tAbsError: 1.77370e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 3.09991e-01\tAbsError: 5.41457e-02\n", + " Device: \"device\"\tRelError: 6.43327e+04\tAbsError: 2.24270e+16\n", + " Region: \"zone_1\"\tRelError: 3.45209e+02\tAbsError: 7.93314e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.45209e+02\tAbsError: 7.93314e-02\n", + " Region: \"zone_3\"\tRelError: 6.39875e+04\tAbsError: 2.24270e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.41959e+03\tAbsError: 1.19749e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.31025e+01\tAbsError: 1.04521e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.55548e+04\tAbsError: 7.98331e-02\n", "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.89532e+03\tAbsError: 5.45590e+15\n", - " Region: \"zone_1\"\tRelError: 1.32864e-01\tAbsError: 4.41646e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.32864e-01\tAbsError: 4.41646e-02\n", - " Region: \"zone_3\"\tRelError: 2.89519e+03\tAbsError: 5.45590e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.95366e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.88608e+03\tAbsError: 2.50224e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12497e-01\tAbsError: 4.40685e-02\n", + " Device: \"device\"\tRelError: 1.39167e+03\tAbsError: 1.78224e+16\n", + " Region: \"zone_1\"\tRelError: 6.03544e+01\tAbsError: 7.53936e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.03544e+01\tAbsError: 7.53936e-02\n", + " Region: \"zone_3\"\tRelError: 1.33131e+03\tAbsError: 1.78224e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03436e+02\tAbsError: 1.05743e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.14963e+01\tAbsError: 7.24806e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18638e+03\tAbsError: 7.59179e-02\n", "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.80503e+03\tAbsError: 9.25911e+15\n", - " Region: \"zone_1\"\tRelError: 8.45871e-02\tAbsError: 3.26030e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.45871e-02\tAbsError: 3.26030e-02\n", - " Region: \"zone_3\"\tRelError: 1.80495e+03\tAbsError: 9.25911e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.62604e+03\tAbsError: 4.94846e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.78832e+02\tAbsError: 4.31065e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.47515e-02\tAbsError: 2.89742e-02\n", + " Device: \"device\"\tRelError: 5.53298e+02\tAbsError: 1.69233e+16\n", + " Region: \"zone_1\"\tRelError: 5.16072e-01\tAbsError: 7.09461e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.16072e-01\tAbsError: 7.09461e-02\n", + " Region: \"zone_3\"\tRelError: 5.52782e+02\tAbsError: 1.69233e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99963e+00\tAbsError: 9.97824e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.41910e+02\tAbsError: 6.94508e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.72352e-01\tAbsError: 7.15022e-02\n", "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.02488e+03\tAbsError: 1.35461e+16\n", - " Region: \"zone_1\"\tRelError: 6.19799e-02\tAbsError: 2.54954e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.19799e-02\tAbsError: 2.54954e-02\n", - " Region: \"zone_3\"\tRelError: 1.02482e+03\tAbsError: 1.35461e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.85774e+02\tAbsError: 7.51298e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.39007e+02\tAbsError: 6.03314e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 4.01021e-02\tAbsError: 2.12584e-02\n", + " Device: \"device\"\tRelError: 4.79056e+01\tAbsError: 1.79251e+16\n", + " Region: \"zone_1\"\tRelError: 2.56400e-01\tAbsError: 6.58648e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.56400e-01\tAbsError: 6.58648e-02\n", + " Region: \"zone_3\"\tRelError: 4.76492e+01\tAbsError: 1.79251e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 9.81715e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.85244e+01\tAbsError: 8.10793e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24859e-01\tAbsError: 6.64845e-02\n", "Iteration: 13\n", - " Device: \"device\"\tRelError: 1.63746e+03\tAbsError: 6.22853e+15\n", - " Region: \"zone_1\"\tRelError: 3.24151e-02\tAbsError: 1.77252e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.24151e-02\tAbsError: 1.77252e-02\n", - " Region: \"zone_3\"\tRelError: 1.63743e+03\tAbsError: 6.22853e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.57093e+03\tAbsError: 3.54700e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.64599e+01\tAbsError: 2.68153e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 3.68353e-02\tAbsError: 2.00855e-02\n", + " Device: \"device\"\tRelError: 6.05441e+01\tAbsError: 1.89951e+16\n", + " Region: \"zone_1\"\tRelError: 9.91636e-02\tAbsError: 5.99390e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.91636e-02\tAbsError: 5.99390e-02\n", + " Region: \"zone_3\"\tRelError: 6.04450e+01\tAbsError: 1.89951e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.05995e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.13097e+01\tAbsError: 8.39568e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35258e-01\tAbsError: 6.06318e-02\n", "Iteration: 14\n", - " Device: \"device\"\tRelError: 4.66473e+04\tAbsError: 1.65128e+15\n", - " Region: \"zone_1\"\tRelError: 3.72589e-02\tAbsError: 1.93441e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.72589e-02\tAbsError: 1.93441e-02\n", - " Region: \"zone_3\"\tRelError: 4.66473e+04\tAbsError: 1.65128e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.35588e+04\tAbsError: 1.14975e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.08852e+03\tAbsError: 5.01532e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.08564e-02\tAbsError: 2.10000e-02\n", + " Device: \"device\"\tRelError: 1.04453e+01\tAbsError: 2.28608e+16\n", + " Region: \"zone_1\"\tRelError: 1.03818e-01\tAbsError: 5.28988e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03818e-01\tAbsError: 5.28988e-02\n", + " Region: \"zone_3\"\tRelError: 1.03415e+01\tAbsError: 2.28608e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.24362e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.15863e+00\tAbsError: 1.04247e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82847e-01\tAbsError: 5.36644e-02\n", "Iteration: 15\n", - " Device: \"device\"\tRelError: 2.75087e+04\tAbsError: 1.29732e+14\n", - " Region: \"zone_1\"\tRelError: 1.63751e-03\tAbsError: 8.62426e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.63751e-03\tAbsError: 8.62426e-04\n", - " Region: \"zone_3\"\tRelError: 2.75087e+04\tAbsError: 1.29732e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.46168e+03\tAbsError: 8.16018e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.40470e+04\tAbsError: 4.81304e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.98561e-03\tAbsError: 1.03284e-03\n", + " Device: \"device\"\tRelError: 1.99547e+01\tAbsError: 3.25400e+16\n", + " Region: \"zone_1\"\tRelError: 1.50487e-01\tAbsError: 4.40320e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50487e-01\tAbsError: 4.40320e-02\n", + " Region: \"zone_3\"\tRelError: 1.98043e+01\tAbsError: 3.25400e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.74128e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.05004e+01\tAbsError: 1.51272e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.03808e-01\tAbsError: 4.48247e-02\n", "Iteration: 16\n", - " Device: \"device\"\tRelError: 5.46518e+03\tAbsError: 1.25626e+12\n", - " Region: \"zone_1\"\tRelError: 1.47051e-05\tAbsError: 7.97633e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.47051e-05\tAbsError: 7.97633e-06\n", - " Region: \"zone_3\"\tRelError: 5.46518e+03\tAbsError: 1.25626e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38697e+03\tAbsError: 7.51084e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.07821e+03\tAbsError: 5.05179e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.75881e-05\tAbsError: 9.27716e-06\n", + " Device: \"device\"\tRelError: 9.51508e+02\tAbsError: 5.44450e+16\n", + " Region: \"zone_1\"\tRelError: 3.90909e-01\tAbsError: 3.13452e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.90909e-01\tAbsError: 3.13452e-02\n", + " Region: \"zone_3\"\tRelError: 9.51117e+02\tAbsError: 5.44450e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.36084e+01\tAbsError: 2.93126e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.26860e+02\tAbsError: 2.51325e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.48491e-01\tAbsError: 3.23751e-02\n", "Iteration: 17\n", - " Device: \"device\"\tRelError: 2.77216e-01\tAbsError: 1.06695e+08\n", - " Region: \"zone_1\"\tRelError: 3.00061e-09\tAbsError: 1.68638e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.00061e-09\tAbsError: 1.68638e-09\n", - " Region: \"zone_3\"\tRelError: 2.77216e-01\tAbsError: 1.06695e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46960e-01\tAbsError: 6.29583e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.02562e-02\tAbsError: 4.37368e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 3.30209e-09\tAbsError: 1.76457e-09\n", + " Device: \"device\"\tRelError: 1.30370e+03\tAbsError: 6.27349e+16\n", + " Region: \"zone_1\"\tRelError: 2.64526e+01\tAbsError: 2.58396e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64526e+01\tAbsError: 2.58396e-02\n", + " Region: \"zone_3\"\tRelError: 1.27724e+03\tAbsError: 6.27349e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61154e+02\tAbsError: 3.49677e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11565e+03\tAbsError: 2.77672e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.39149e-01\tAbsError: 2.58511e-02\n", "Iteration: 18\n", - " Device: \"device\"\tRelError: 6.10978e-09\tAbsError: 3.33176e+02\n", - " Region: \"zone_1\"\tRelError: 7.09002e-16\tAbsError: 3.97988e-16\n", - " Equation: \"PotentialEquation\"\tRelError: 7.09002e-16\tAbsError: 3.97988e-16\n", - " Region: \"zone_3\"\tRelError: 6.10977e-09\tAbsError: 3.33176e+02\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.93846e-09\tAbsError: 1.72168e+02\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.71311e-10\tAbsError: 1.61008e+02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.75573e-16\tAbsError: 4.23801e-16\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:32\u001b[0m.\u001b[1;36m827\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 0.03162277660168379\u001b[0m \n", - "Replacing Node Model NetDoping in region zone_1 of material Si\n", - "Replacing Node Model n_i in region zone_1 of material Si\n", - "Replacing Edge Model n_i@n0 in region zone_1 of material Si\n", - "Replacing Edge Model n_i@n1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en2 in region zone_1 of material Si\n", - "Replacing Node Model n_i:Electrons in region zone_1 of material Si\n", - "Replacing Node Model n_i:Holes in region zone_1 of material Si\n", - "Replacing Node Model n_i:T in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en2 in region zone_1 of material Si\n", - "Replacing Node Model NetDoping in region zone_3 of material Si\n", - "Replacing Node Model n_i in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en2 in region zone_3 of material Si\n", - "Replacing Node Model n_i:Electrons in region zone_3 of material Si\n", - "Replacing Node Model n_i:Holes in region zone_3 of material Si\n", - "Replacing Node Model n_i:T in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:Electrons@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:Holes@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:T@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:Electrons@n1 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:Holes@n1 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:T@n1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en2 in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 4.05154e+02\tAbsError: 2.17962e+16\n", + " Region: \"zone_1\"\tRelError: 1.75568e+00\tAbsError: 3.56334e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75568e+00\tAbsError: 3.56334e-02\n", + " Region: \"zone_3\"\tRelError: 4.03399e+02\tAbsError: 2.17962e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.43755e+01\tAbsError: 1.53195e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.08845e+02\tAbsError: 6.47671e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77914e-01\tAbsError: 3.56334e-02\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 3.22071e+03\tAbsError: 1.19115e+16\n", + " Region: \"zone_1\"\tRelError: 5.45716e+00\tAbsError: 4.99284e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.45716e+00\tAbsError: 4.99284e-02\n", + " Region: \"zone_3\"\tRelError: 3.21525e+03\tAbsError: 1.19115e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.08876e+03\tAbsError: 6.51020e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.26394e+02\tAbsError: 5.40133e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.82810e-02\tAbsError: 5.04050e-02\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 5.42161e+03\tAbsError: 3.80286e+15\n", + " Region: \"zone_1\"\tRelError: 3.17594e-01\tAbsError: 4.04582e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.17594e-01\tAbsError: 4.04582e-02\n", + " Region: \"zone_3\"\tRelError: 5.42129e+03\tAbsError: 3.80286e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.87358e+03\tAbsError: 1.32366e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.54765e+03\tAbsError: 2.47920e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.69893e-02\tAbsError: 4.11670e-02\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 1.53646e+03\tAbsError: 1.68685e+15\n", + " Region: \"zone_1\"\tRelError: 1.04962e+00\tAbsError: 3.46395e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04962e+00\tAbsError: 3.46395e-02\n", + " Region: \"zone_3\"\tRelError: 1.53541e+03\tAbsError: 1.68685e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53242e+03\tAbsError: 8.70961e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.93513e+00\tAbsError: 8.15888e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.19036e-02\tAbsError: 3.54876e-02\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 1.13065e+04\tAbsError: 2.65992e+14\n", + " Region: \"zone_1\"\tRelError: 1.38577e-01\tAbsError: 2.53046e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38577e-01\tAbsError: 2.53046e-02\n", + " Region: \"zone_3\"\tRelError: 1.13063e+04\tAbsError: 2.65992e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00536e+04\tAbsError: 1.34888e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.25264e+03\tAbsError: 1.31104e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.04331e-02\tAbsError: 2.58092e-02\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 1.54939e+04\tAbsError: 1.08703e+14\n", + " Region: \"zone_1\"\tRelError: 6.27076e-02\tAbsError: 1.43440e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.27076e-02\tAbsError: 1.43440e-02\n", + " Region: \"zone_3\"\tRelError: 1.54939e+04\tAbsError: 1.08703e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54858e+04\tAbsError: 5.67413e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.07959e+00\tAbsError: 5.19614e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42712e-02\tAbsError: 1.57831e-02\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 8.56298e+05\tAbsError: 1.14664e+13\n", + " Region: \"zone_1\"\tRelError: 6.60096e-03\tAbsError: 1.12529e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.60096e-03\tAbsError: 1.12529e-04\n", + " Region: \"zone_3\"\tRelError: 8.56298e+05\tAbsError: 1.14664e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.56297e+05\tAbsError: 6.08801e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.27103e-01\tAbsError: 5.37841e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83489e-04\tAbsError: 1.21997e-04\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 4.89388e+03\tAbsError: 1.00947e+11\n", + " Region: \"zone_1\"\tRelError: 3.08830e-07\tAbsError: 8.89678e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.08830e-07\tAbsError: 8.89678e-09\n", + " Region: \"zone_3\"\tRelError: 4.89388e+03\tAbsError: 1.00947e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89388e+03\tAbsError: 9.97472e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.18978e-04\tAbsError: 1.19949e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23241e-08\tAbsError: 9.18009e-09\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 8.07285e-04\tAbsError: 6.96911e+05\n", + " Region: \"zone_1\"\tRelError: 2.05164e-10\tAbsError: 6.86329e-12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05164e-10\tAbsError: 6.86329e-12\n", + " Region: \"zone_3\"\tRelError: 8.07285e-04\tAbsError: 6.96911e+05\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.07274e-04\tAbsError: 2.73018e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03397e-08\tAbsError: 4.23893e+05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40769e-10\tAbsError: 7.10830e-12\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 1.62755e-12\tAbsError: 3.14441e+04\n", + " Region: \"zone_1\"\tRelError: 3.66917e-13\tAbsError: 2.11061e-16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.66917e-13\tAbsError: 2.11061e-16\n", + " Region: \"zone_3\"\tRelError: 1.26063e-12\tAbsError: 3.14441e+04\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.60446e-13\tAbsError: 1.58740e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.54950e-16\tAbsError: 1.55701e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.99532e-13\tAbsError: 2.12773e-16\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:20\u001b[0m.\u001b[1;36m454\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:20\u001b[0m.\u001b[1;36m470\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mBuilt-in potential: % (-1.0659654762908735,)\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:20\u001b[0m.\u001b[1;36m470\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mnot all arguments converted during string formatting\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:20\u001b[0m.\u001b[1;36m555\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.55 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:20\u001b[0m.\u001b[1;36m555\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.65 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:20\u001b[0m.\u001b[1;36m555\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.7 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:20\u001b[0m.\u001b[1;36m555\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.5 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:20\u001b[0m.\u001b[1;36m555\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.6 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:20\u001b[0m.\u001b[1;36m570\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: 0.65\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:20\u001b[0m.\u001b[1;36m570\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: 0.55\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:20\u001b[0m.\u001b[1;36m570\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.6\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:20\u001b[0m.\u001b[1;36m572\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: 0.5\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:20\u001b[0m.\u001b[1;36m573\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.7\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.18667e+04\tAbsError: 4.42639e+18\n", - " Region: \"zone_1\"\tRelError: 4.54590e-01\tAbsError: 3.65435e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.54590e-01\tAbsError: 3.65435e-02\n", - " Region: \"zone_3\"\tRelError: 6.18663e+04\tAbsError: 4.42639e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.16910e+04\tAbsError: 2.21325e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.01748e+04\tAbsError: 2.21314e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 4.55812e-01\tAbsError: 3.74548e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.75398e+00\tAbsError: 3.67168e+16\n", - " Region: \"zone_1\"\tRelError: 1.54414e-01\tAbsError: 1.18873e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.54414e-01\tAbsError: 1.18873e-02\n", - " Region: \"zone_3\"\tRelError: 2.59956e+00\tAbsError: 3.67168e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.44312e+00\tAbsError: 1.84482e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.00167e+00\tAbsError: 1.82685e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.54775e-01\tAbsError: 1.19406e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.21359e+00\tAbsError: 2.73096e+15\n", - " Region: \"zone_1\"\tRelError: 2.12576e-03\tAbsError: 2.90809e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.12576e-03\tAbsError: 2.90809e-04\n", - " Region: \"zone_3\"\tRelError: 1.21147e+00\tAbsError: 2.73096e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.69344e-01\tAbsError: 1.45487e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.39562e-01\tAbsError: 1.27610e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.55964e-03\tAbsError: 3.14523e-04\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 6.75330e-03\tAbsError: 2.19594e+12\n", - " Region: \"zone_1\"\tRelError: 1.15504e-06\tAbsError: 1.24812e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15504e-06\tAbsError: 1.24812e-07\n", - " Region: \"zone_3\"\tRelError: 6.75214e-03\tAbsError: 2.19594e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.50950e-03\tAbsError: 1.03504e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.24140e-03\tAbsError: 1.16090e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.24282e-06\tAbsError: 1.46046e-07\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.09534e-08\tAbsError: 1.52655e+06\n", - " Region: \"zone_1\"\tRelError: 7.26821e-13\tAbsError: 7.85393e-14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.26821e-13\tAbsError: 7.85393e-14\n", - " Region: \"zone_3\"\tRelError: 2.09527e-08\tAbsError: 1.52655e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98949e-09\tAbsError: 6.59404e+05\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.09623e-08\tAbsError: 8.67143e+05\n", - " Equation: \"PotentialEquation\"\tRelError: 8.44838e-13\tAbsError: 9.68488e-14\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:34\u001b[0m.\u001b[1;36m479\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 0.1\u001b[0m \n", - "Replacing Node Model NetDoping in region zone_1 of material Si\n", - "Replacing Node Model n_i in region zone_1 of material Si\n", - "Replacing Edge Model n_i@n0 in region zone_1 of material Si\n", - "Replacing Edge Model n_i@n1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en2 in region zone_1 of material Si\n", - "Replacing Node Model n_i:Electrons in region zone_1 of material Si\n", - "Replacing Node Model n_i:Holes in region zone_1 of material Si\n", - "Replacing Node Model n_i:T in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en2 in region zone_1 of material Si\n", - "Replacing Node Model NetDoping in region zone_3 of material Si\n", - "Replacing Node Model n_i in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en2 in region zone_3 of material Si\n", - "Replacing Node Model n_i:Electrons in region zone_3 of material Si\n", - "Replacing Node Model n_i:Holes in region zone_3 of material Si\n", - "Replacing Node Model n_i:T in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:Electrons@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:Holes@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:T@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:Electrons@n1 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:Holes@n1 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:T@n1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en2 in region zone_3 of material Si\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22535\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "number of equations 22535\n", + "number of equations 22535\n", + "number of equations 22535\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22535\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.49687e+01\tAbsError: 5.15788e+16\n", + " Region: \"zone_1\"\tRelError: 1.28715e+01\tAbsError: 7.79815e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28715e+01\tAbsError: 7.79815e-02\n", + " Region: \"zone_3\"\tRelError: 2.09722e+00\tAbsError: 5.15788e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.50566e-01\tAbsError: 2.81866e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.50502e-01\tAbsError: 2.33921e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96151e-01\tAbsError: 7.79815e-02\n", + "Iteration: 0\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.16864e+04\tAbsError: 6.70524e+16\n", + " Region: \"zone_1\"\tRelError: 1.16842e+04\tAbsError: 8.44807e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16842e+04\tAbsError: 8.44807e-02\n", + " Region: \"zone_3\"\tRelError: 2.11876e+00\tAbsError: 6.70524e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.61535e-01\tAbsError: 3.66426e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.61484e-01\tAbsError: 3.04098e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95736e-01\tAbsError: 8.44807e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.66208e+01\tAbsError: 6.18946e+16\n", + " Region: \"zone_1\"\tRelError: 5.45184e+01\tAbsError: 8.24901e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.45184e+01\tAbsError: 8.24901e-02\n", + " Region: \"zone_3\"\tRelError: 2.10248e+00\tAbsError: 6.18946e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.58463e-01\tAbsError: 3.38240e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.58408e-01\tAbsError: 2.80706e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85604e-01\tAbsError: 8.24901e-02\n", + " Device: \"device\"\tRelError: 6.20225e+01\tAbsError: 5.67367e+16\n", + " Region: \"zone_1\"\tRelError: 5.98928e+01\tAbsError: 8.03338e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.98928e+01\tAbsError: 8.03338e-02\n", + " Region: \"zone_3\"\tRelError: 2.12974e+00\tAbsError: 5.67367e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.54857e-01\tAbsError: 3.10053e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.54798e-01\tAbsError: 2.57314e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20083e-01\tAbsError: 8.03338e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.42426e+01\tAbsError: 7.22103e+16\n", + " Region: \"zone_1\"\tRelError: 4.21088e+01\tAbsError: 8.63291e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.21088e+01\tAbsError: 8.63291e-02\n", + " Region: \"zone_3\"\tRelError: 2.13379e+00\tAbsError: 7.22103e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.64184e-01\tAbsError: 3.94613e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.64137e-01\tAbsError: 3.27490e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05468e-01\tAbsError: 8.63291e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 9.80377e+01\tAbsError: 6.71992e+15\n", + " Region: \"zone_1\"\tRelError: 9.59621e+01\tAbsError: 7.38245e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.59621e+01\tAbsError: 7.38245e-02\n", + " Region: \"zone_3\"\tRelError: 2.07565e+00\tAbsError: 6.71992e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.42181e-01\tAbsError: 3.33832e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.86421e-01\tAbsError: 3.38160e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47049e-01\tAbsError: 7.38245e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.44150e+01\tAbsError: 9.76474e+15\n", + " Region: \"zone_1\"\tRelError: 2.22811e+01\tAbsError: 8.10225e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.22811e+01\tAbsError: 8.10225e-02\n", + " Region: \"zone_3\"\tRelError: 2.13394e+00\tAbsError: 9.76474e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.56282e-01\tAbsError: 4.56417e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.91862e-01\tAbsError: 5.20057e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85792e-01\tAbsError: 8.10225e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 7.51282e+01\tAbsError: 8.04045e+15\n", + " Region: \"zone_1\"\tRelError: 7.30318e+01\tAbsError: 7.64428e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.30318e+01\tAbsError: 7.64428e-02\n", + " Region: \"zone_3\"\tRelError: 2.09649e+00\tAbsError: 8.04045e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.47718e-01\tAbsError: 4.07804e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.88720e-01\tAbsError: 3.96241e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60048e-01\tAbsError: 7.64428e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.34196e+01\tAbsError: 8.52783e+15\n", + " Region: \"zone_1\"\tRelError: 2.12973e+01\tAbsError: 7.88298e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12973e+01\tAbsError: 7.88298e-02\n", + " Region: \"zone_3\"\tRelError: 2.12228e+00\tAbsError: 8.52783e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.52425e-01\tAbsError: 3.95911e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.90475e-01\tAbsError: 4.56872e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79384e-01\tAbsError: 7.88298e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.91573e+01\tAbsError: 1.10515e+16\n", + " Region: \"zone_1\"\tRelError: 1.70066e+01\tAbsError: 8.30498e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70066e+01\tAbsError: 8.30498e-02\n", + " Region: \"zone_3\"\tRelError: 2.15071e+00\tAbsError: 1.10515e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.59569e-01\tAbsError: 5.19706e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.92969e-01\tAbsError: 5.85441e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.98171e-01\tAbsError: 8.30498e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 4.87578e+00\tAbsError: 3.18591e+15\n", + " Region: \"zone_1\"\tRelError: 2.82347e+00\tAbsError: 6.91598e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.82347e+00\tAbsError: 6.91598e-02\n", + " Region: \"zone_3\"\tRelError: 2.05230e+00\tAbsError: 3.18591e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.30614e-01\tAbsError: 1.54891e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.80127e-01\tAbsError: 1.63700e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41563e-01\tAbsError: 6.91598e-02\n", + "Iteration: 2\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.97922e+00\tAbsError: 5.21431e+15\n", + " Region: \"zone_1\"\tRelError: 7.85157e+00\tAbsError: 7.72065e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.85157e+00\tAbsError: 7.72065e-02\n", + " Region: \"zone_3\"\tRelError: 2.12765e+00\tAbsError: 5.21431e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.49286e-01\tAbsError: 2.54970e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.89514e-01\tAbsError: 2.66460e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88850e-01\tAbsError: 7.72065e-02\n", + " Device: \"device\"\tRelError: 3.68845e+00\tAbsError: 3.83858e+15\n", + " Region: \"zone_1\"\tRelError: 1.61006e+00\tAbsError: 7.21036e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61006e+00\tAbsError: 7.21036e-02\n", + " Region: \"zone_3\"\tRelError: 2.07839e+00\tAbsError: 3.83858e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.37961e-01\tAbsError: 1.86979e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.84367e-01\tAbsError: 1.96879e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56061e-01\tAbsError: 7.21036e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.86796e+00\tAbsError: 4.52243e+15\n", + " Region: \"zone_1\"\tRelError: 1.76412e+00\tAbsError: 7.47705e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76412e+00\tAbsError: 7.47705e-02\n", + " Region: \"zone_3\"\tRelError: 2.10383e+00\tAbsError: 4.52243e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.44164e-01\tAbsError: 2.20789e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.87192e-01\tAbsError: 2.31455e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72477e-01\tAbsError: 7.47705e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 7.41819e+00\tAbsError: 5.92217e+15\n", + " Region: \"zone_1\"\tRelError: 5.26837e+00\tAbsError: 7.94473e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.26837e+00\tAbsError: 7.94473e-02\n", + " Region: \"zone_3\"\tRelError: 2.14982e+00\tAbsError: 5.92217e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.53459e-01\tAbsError: 2.90162e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.91325e-01\tAbsError: 3.02055e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05034e-01\tAbsError: 7.94473e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 8.25042e+00\tAbsError: 9.27356e+14\n", + " Region: \"zone_1\"\tRelError: 6.23790e+00\tAbsError: 6.38656e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.23790e+00\tAbsError: 6.38656e-02\n", + " Region: \"zone_3\"\tRelError: 2.01252e+00\tAbsError: 9.27356e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.14610e-01\tAbsError: 5.19725e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.60339e-01\tAbsError: 4.07631e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37566e-01\tAbsError: 6.38656e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.27806e+00\tAbsError: 1.32126e+15\n", + " Region: \"zone_1\"\tRelError: 1.22563e+00\tAbsError: 6.72141e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22563e+00\tAbsError: 6.72141e-02\n", + " Region: \"zone_3\"\tRelError: 2.05243e+00\tAbsError: 1.32126e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.24947e-01\tAbsError: 8.37316e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.69471e-01\tAbsError: 4.83948e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58007e-01\tAbsError: 6.72141e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.40572e+00\tAbsError: 2.07330e+15\n", + " Region: \"zone_1\"\tRelError: 1.28636e+00\tAbsError: 7.29586e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28636e+00\tAbsError: 7.29586e-02\n", + " Region: \"zone_3\"\tRelError: 2.11936e+00\tAbsError: 2.07330e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.40137e-01\tAbsError: 1.44384e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.81276e-01\tAbsError: 6.29459e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97948e-01\tAbsError: 7.29586e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.05870e+00\tAbsError: 1.56046e+15\n", + " Region: \"zone_1\"\tRelError: 9.71154e-01\tAbsError: 7.02257e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.71154e-01\tAbsError: 7.02257e-02\n", + " Region: \"zone_3\"\tRelError: 2.08754e+00\tAbsError: 1.56046e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.33208e-01\tAbsError: 1.00219e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.76202e-01\tAbsError: 5.58270e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78132e-01\tAbsError: 7.02257e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.84264e+01\tAbsError: 2.73710e+15\n", + " Region: \"zone_1\"\tRelError: 1.62782e+01\tAbsError: 7.54578e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62782e+01\tAbsError: 7.54578e-02\n", + " Region: \"zone_3\"\tRelError: 2.14821e+00\tAbsError: 2.73710e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.45573e-01\tAbsError: 1.97229e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.85089e-01\tAbsError: 7.64808e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17552e-01\tAbsError: 7.54578e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.24930e+00\tAbsError: 4.02317e+14\n", + " Region: \"zone_1\"\tRelError: 2.31268e+00\tAbsError: 5.77787e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31268e+00\tAbsError: 5.77787e-02\n", + " Region: \"zone_3\"\tRelError: 1.93663e+00\tAbsError: 4.02317e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.91931e-01\tAbsError: 2.11177e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.15097e-01\tAbsError: 1.91140e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29600e-01\tAbsError: 5.77787e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.24051e+00\tAbsError: 6.80104e+14\n", + " Region: \"zone_1\"\tRelError: 2.44247e-01\tAbsError: 6.16382e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.44247e-01\tAbsError: 6.16382e-02\n", + " Region: \"zone_3\"\tRelError: 1.99626e+00\tAbsError: 6.80104e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.07098e-01\tAbsError: 4.14228e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.38121e-01\tAbsError: 2.65876e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51043e-01\tAbsError: 6.16382e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.48722e+00\tAbsError: 1.58115e+15\n", + " Region: \"zone_1\"\tRelError: 3.83598e-01\tAbsError: 6.81819e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.83598e-01\tAbsError: 6.81819e-02\n", + " Region: \"zone_3\"\tRelError: 2.10362e+00\tAbsError: 1.58115e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.27939e-01\tAbsError: 1.05870e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.65736e-01\tAbsError: 5.22451e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09944e-01\tAbsError: 6.81819e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.32064e+00\tAbsError: 9.81683e+14\n", + " Region: \"zone_1\"\tRelError: 2.68038e-01\tAbsError: 6.50809e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.68038e-01\tAbsError: 6.50809e-02\n", + " Region: \"zone_3\"\tRelError: 2.05260e+00\tAbsError: 9.81683e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.18550e-01\tAbsError: 6.20559e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.54530e-01\tAbsError: 3.61124e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79518e-01\tAbsError: 6.50809e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.83357e+00\tAbsError: 2.43765e+15\n", + " Region: \"zone_1\"\tRelError: 6.82958e-01\tAbsError: 7.09985e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.82958e-01\tAbsError: 7.09985e-02\n", + " Region: \"zone_3\"\tRelError: 2.15061e+00\tAbsError: 2.43765e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.35359e-01\tAbsError: 1.69734e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.73968e-01\tAbsError: 7.40308e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41286e-01\tAbsError: 7.09985e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.34856e+00\tAbsError: 1.79498e+14\n", + " Region: \"zone_1\"\tRelError: 5.67293e-01\tAbsError: 5.06818e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.67293e-01\tAbsError: 5.06818e-02\n", + " Region: \"zone_3\"\tRelError: 1.78126e+00\tAbsError: 1.79498e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.58266e-01\tAbsError: 8.75206e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.01469e-01\tAbsError: 9.19770e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21530e-01\tAbsError: 5.06818e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.03418e+00\tAbsError: 3.96294e+14\n", + " Region: \"zone_1\"\tRelError: 1.46774e-01\tAbsError: 5.51934e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46774e-01\tAbsError: 5.51934e-02\n", + " Region: \"zone_3\"\tRelError: 1.88740e+00\tAbsError: 3.96294e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.81081e-01\tAbsError: 2.19541e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.61474e-01\tAbsError: 1.76753e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44847e-01\tAbsError: 5.51934e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.38886e+00\tAbsError: 1.51240e+15\n", + " Region: \"zone_1\"\tRelError: 3.45152e-01\tAbsError: 6.27474e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.45152e-01\tAbsError: 6.27474e-02\n", + " Region: \"zone_3\"\tRelError: 2.04371e+00\tAbsError: 1.51240e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.11137e-01\tAbsError: 9.33427e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.28199e-01\tAbsError: 5.78975e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04373e-01\tAbsError: 6.27475e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.19739e+00\tAbsError: 7.80718e+14\n", + " Region: \"zone_1\"\tRelError: 2.26814e-01\tAbsError: 5.91833e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.26814e-01\tAbsError: 5.91833e-02\n", + " Region: \"zone_3\"\tRelError: 1.97057e+00\tAbsError: 7.80718e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.98088e-01\tAbsError: 4.55450e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.00606e-01\tAbsError: 3.25268e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.71877e-01\tAbsError: 5.91833e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.63654e+00\tAbsError: 2.71800e+15\n", + " Region: \"zone_1\"\tRelError: 1.52724e+00\tAbsError: 6.59600e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52724e+00\tAbsError: 6.59600e-02\n", + " Region: \"zone_3\"\tRelError: 2.10930e+00\tAbsError: 2.71800e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.21568e-01\tAbsError: 1.72054e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.46139e-01\tAbsError: 9.97454e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41598e-01\tAbsError: 6.59600e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.78427e+00\tAbsError: 8.63192e+13\n", + " Region: \"zone_1\"\tRelError: 3.45136e-01\tAbsError: 4.22987e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.45136e-01\tAbsError: 4.22987e-02\n", + " Region: \"zone_3\"\tRelError: 1.43913e+00\tAbsError: 8.63192e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.04767e-01\tAbsError: 3.84476e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.25810e-01\tAbsError: 4.78716e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08557e-01\tAbsError: 4.22987e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.82751e+00\tAbsError: 2.90652e+14\n", + " Region: \"zone_1\"\tRelError: 1.93291e-01\tAbsError: 4.76391e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93291e-01\tAbsError: 4.76391e-02\n", + " Region: \"zone_3\"\tRelError: 1.63422e+00\tAbsError: 2.90652e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.41214e-01\tAbsError: 1.61292e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.57982e-01\tAbsError: 1.29360e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35020e-01\tAbsError: 4.76391e-02\n", + "Iteration: 6\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.33906e+00\tAbsError: 2.04180e+15\n", + " Region: \"zone_1\"\tRelError: 4.49197e-01\tAbsError: 5.64827e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.49197e-01\tAbsError: 5.64827e-02\n", + " Region: \"zone_3\"\tRelError: 1.88987e+00\tAbsError: 2.04180e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.87146e-01\tAbsError: 1.30047e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.05027e-01\tAbsError: 7.41332e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97694e-01\tAbsError: 5.64827e-02\n", + " Device: \"device\"\tRelError: 2.02518e+00\tAbsError: 8.34667e+14\n", + " Region: \"zone_1\"\tRelError: 2.42807e-01\tAbsError: 5.23282e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42807e-01\tAbsError: 5.23282e-02\n", + " Region: \"zone_3\"\tRelError: 1.78238e+00\tAbsError: 8.34667e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.67626e-01\tAbsError: 5.18549e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.49661e-01\tAbsError: 3.16118e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65091e-01\tAbsError: 5.23282e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 9.34304e+00\tAbsError: 4.36305e+15\n", + " Region: \"zone_1\"\tRelError: 7.37316e+00\tAbsError: 6.01966e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.37316e+00\tAbsError: 6.01966e-02\n", + " Region: \"zone_3\"\tRelError: 1.96988e+00\tAbsError: 4.36305e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.02427e-01\tAbsError: 2.59684e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.36076e-01\tAbsError: 1.76620e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31374e-01\tAbsError: 6.01966e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.04103e+00\tAbsError: 4.19038e+13\n", + " Region: \"zone_1\"\tRelError: 1.19485e-01\tAbsError: 3.23490e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19485e-01\tAbsError: 3.23490e-02\n", + " Region: \"zone_3\"\tRelError: 9.21547e-01\tAbsError: 4.19038e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.13843e-01\tAbsError: 1.60191e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.16718e-01\tAbsError: 2.58847e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.09860e-02\tAbsError: 3.23490e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.27787e+00\tAbsError: 1.90353e+14\n", + " Region: \"zone_1\"\tRelError: 1.16729e-01\tAbsError: 3.86842e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16729e-01\tAbsError: 3.86842e-02\n", + " Region: \"zone_3\"\tRelError: 1.16114e+00\tAbsError: 1.90353e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.76047e-01\tAbsError: 8.75823e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.67413e-01\tAbsError: 1.02771e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17684e-01\tAbsError: 3.86842e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.51802e+00\tAbsError: 6.06552e+14\n", + " Region: \"zone_1\"\tRelError: 1.51043e-01\tAbsError: 4.42512e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51043e-01\tAbsError: 4.42512e-02\n", + " Region: \"zone_3\"\tRelError: 1.36698e+00\tAbsError: 6.06552e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.19558e-01\tAbsError: 2.81305e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.95635e-01\tAbsError: 3.25247e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51782e-01\tAbsError: 4.42512e-02\n", + "Iteration: 7\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.76360e+00\tAbsError: 1.55299e+15\n", + " Region: \"zone_1\"\tRelError: 2.67605e-01\tAbsError: 4.91584e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67605e-01\tAbsError: 4.91584e-02\n", + " Region: \"zone_3\"\tRelError: 1.49600e+00\tAbsError: 1.55299e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.50735e-01\tAbsError: 7.62636e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.55919e-01\tAbsError: 7.90350e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89345e-01\tAbsError: 4.91584e-02\n", + " Device: \"device\"\tRelError: 3.32033e+01\tAbsError: 3.08736e+15\n", + " Region: \"zone_1\"\tRelError: 3.16404e+01\tAbsError: 5.35129e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.16404e+01\tAbsError: 5.35129e-02\n", + " Region: \"zone_3\"\tRelError: 1.56289e+00\tAbsError: 3.08736e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.74096e-01\tAbsError: 1.62426e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.59644e-01\tAbsError: 1.46310e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29151e-01\tAbsError: 5.35129e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 7.24373e-01\tAbsError: 1.51141e+13\n", + " Region: \"zone_1\"\tRelError: 7.99631e-02\tAbsError: 2.58699e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.99631e-02\tAbsError: 2.58699e-02\n", + " Region: \"zone_3\"\tRelError: 6.44409e-01\tAbsError: 1.51141e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.53912e-01\tAbsError: 8.01456e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.86606e-03\tAbsError: 7.09953e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.06313e-02\tAbsError: 2.52278e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 9.34996e-01\tAbsError: 9.66376e+13\n", + " Region: \"zone_1\"\tRelError: 1.04339e-01\tAbsError: 2.81019e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04339e-01\tAbsError: 2.81019e-02\n", + " Region: \"zone_3\"\tRelError: 8.30658e-01\tAbsError: 9.66376e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.63016e-01\tAbsError: 5.12597e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.19119e-02\tAbsError: 4.53780e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05730e-01\tAbsError: 2.81019e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.14099e+00\tAbsError: 4.48417e+14\n", + " Region: \"zone_1\"\tRelError: 1.25800e-01\tAbsError: 3.46607e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25800e-01\tAbsError: 3.46607e-02\n", + " Region: \"zone_3\"\tRelError: 1.01519e+00\tAbsError: 4.48417e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.38531e-01\tAbsError: 2.42713e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.48405e-01\tAbsError: 2.05703e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28251e-01\tAbsError: 3.46607e-02\n", + "Iteration: 8\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.17497e+00\tAbsError: 3.60327e+15\n", + " Region: \"zone_1\"\tRelError: 7.71450e-01\tAbsError: 4.56537e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.71450e-01\tAbsError: 4.56537e-02\n", + " Region: \"zone_3\"\tRelError: 1.40352e+00\tAbsError: 3.60327e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.29675e-01\tAbsError: 2.01706e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.55375e-01\tAbsError: 1.58621e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18474e-01\tAbsError: 4.56538e-02\n", + " Device: \"device\"\tRelError: 1.37318e+00\tAbsError: 1.46065e+15\n", + " Region: \"zone_1\"\tRelError: 1.68436e-01\tAbsError: 4.04896e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68436e-01\tAbsError: 4.04896e-02\n", + " Region: \"zone_3\"\tRelError: 1.20475e+00\tAbsError: 1.46065e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.91681e-01\tAbsError: 8.07981e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.42241e-01\tAbsError: 6.52669e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70824e-01\tAbsError: 4.04896e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 3.64407e-01\tAbsError: 6.51451e+12\n", + " Region: \"zone_1\"\tRelError: 2.88322e-02\tAbsError: 1.11974e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88322e-02\tAbsError: 1.11974e-02\n", + " Region: \"zone_3\"\tRelError: 3.35575e-01\tAbsError: 6.51451e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.02685e-01\tAbsError: 3.07898e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.93419e-03\tAbsError: 3.43553e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.99550e-02\tAbsError: 1.11975e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 6.44981e-01\tAbsError: 6.21874e+13\n", + " Region: \"zone_1\"\tRelError: 6.96056e-02\tAbsError: 2.26489e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.96056e-02\tAbsError: 2.26489e-02\n", + " Region: \"zone_3\"\tRelError: 5.75375e-01\tAbsError: 6.21874e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.67969e-01\tAbsError: 3.56707e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.51968e-02\tAbsError: 2.65167e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.22091e-02\tAbsError: 2.26489e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 9.68576e-01\tAbsError: 3.47731e+14\n", + " Region: \"zone_1\"\tRelError: 1.17329e-01\tAbsError: 2.56163e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17329e-01\tAbsError: 2.56163e-02\n", + " Region: \"zone_3\"\tRelError: 8.51247e-01\tAbsError: 3.47731e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.97524e-01\tAbsError: 1.90999e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.36394e-01\tAbsError: 1.56733e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17329e-01\tAbsError: 2.50335e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.27714e+00\tAbsError: 1.43622e+15\n", + " Region: \"zone_1\"\tRelError: 1.50139e-01\tAbsError: 3.02166e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50139e-01\tAbsError: 3.02166e-02\n", + " Region: \"zone_3\"\tRelError: 1.12700e+00\tAbsError: 1.43622e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90601e-01\tAbsError: 8.15738e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.84079e-01\tAbsError: 6.20479e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52322e-01\tAbsError: 3.02166e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.21930e+00\tAbsError: 4.25498e+15\n", + " Region: \"zone_1\"\tRelError: 2.85311e+00\tAbsError: 3.63252e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.85311e+00\tAbsError: 3.63252e-02\n", + " Region: \"zone_3\"\tRelError: 1.36620e+00\tAbsError: 4.25498e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.55998e-01\tAbsError: 2.47475e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.21756e-01\tAbsError: 1.78023e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88441e-01\tAbsError: 3.63252e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.33841e-01\tAbsError: 4.27938e+12\n", + " Region: \"zone_1\"\tRelError: 2.29585e-02\tAbsError: 3.33461e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29585e-02\tAbsError: 3.33461e-05\n", + " Region: \"zone_3\"\tRelError: 1.10883e-01\tAbsError: 4.27938e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09189e-01\tAbsError: 1.73450e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.57176e-03\tAbsError: 2.54488e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21704e-04\tAbsError: 3.47459e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.69292e-01\tAbsError: 1.84573e+13\n", + " Region: \"zone_1\"\tRelError: 1.10279e-02\tAbsError: 1.42166e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10279e-02\tAbsError: 1.42166e-04\n", + " Region: \"zone_3\"\tRelError: 2.58264e-01\tAbsError: 1.84573e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.49978e-01\tAbsError: 1.08680e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.66711e-03\tAbsError: 7.58924e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.18533e-04\tAbsError: 1.47849e-04\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 5.28673e-01\tAbsError: 1.94879e+14\n", + " Region: \"zone_1\"\tRelError: 5.18835e-02\tAbsError: 1.47172e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.18835e-02\tAbsError: 1.47172e-02\n", + " Region: \"zone_3\"\tRelError: 4.76789e-01\tAbsError: 1.94879e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.62147e-01\tAbsError: 1.18270e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.03783e-02\tAbsError: 7.66097e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.42637e-02\tAbsError: 1.47172e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 9.41281e-01\tAbsError: 9.86926e+14\n", + " Region: \"zone_1\"\tRelError: 1.15462e-01\tAbsError: 2.58736e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15462e-01\tAbsError: 2.58736e-02\n", + " Region: \"zone_3\"\tRelError: 8.25820e-01\tAbsError: 9.86926e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.11491e-01\tAbsError: 5.73939e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.93549e-01\tAbsError: 4.12987e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20780e-01\tAbsError: 2.50203e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.74912e+00\tAbsError: 3.97626e+15\n", + " Region: \"zone_1\"\tRelError: 1.59752e+00\tAbsError: 2.55516e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59752e+00\tAbsError: 2.55516e-02\n", + " Region: \"zone_3\"\tRelError: 1.15160e+00\tAbsError: 3.97626e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.26088e-01\tAbsError: 2.33897e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.52026e-01\tAbsError: 1.63729e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73482e-01\tAbsError: 2.53669e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 6.17309e-05\tAbsError: 6.65219e+08\n", + " Region: \"zone_1\"\tRelError: 3.50528e-06\tAbsError: 5.24405e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.50528e-06\tAbsError: 5.24405e-09\n", + " Region: \"zone_3\"\tRelError: 5.82257e-05\tAbsError: 6.65219e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.72484e-05\tAbsError: 2.73793e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.57515e-07\tAbsError: 3.91426e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97249e-08\tAbsError: 5.59279e-09\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 4.28332e-04\tAbsError: 3.92837e+10\n", + " Region: \"zone_1\"\tRelError: 2.10438e-05\tAbsError: 2.73255e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.10438e-05\tAbsError: 2.73255e-07\n", + " Region: \"zone_3\"\tRelError: 4.07289e-04\tAbsError: 3.92837e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.93156e-04\tAbsError: 2.67594e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29367e-05\tAbsError: 1.25243e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19605e-06\tAbsError: 2.83745e-07\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.61180e-01\tAbsError: 5.13150e+13\n", + " Region: \"zone_1\"\tRelError: 7.58398e-03\tAbsError: 1.51461e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.58398e-03\tAbsError: 1.51461e-04\n", + " Region: \"zone_3\"\tRelError: 1.53596e-01\tAbsError: 5.13150e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43570e-01\tAbsError: 3.00135e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.25274e-03\tAbsError: 2.13014e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.73861e-04\tAbsError: 1.56414e-04\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 3.96293e-01\tAbsError: 4.47774e+14\n", + " Region: \"zone_1\"\tRelError: 3.20439e-02\tAbsError: 8.53141e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.20439e-02\tAbsError: 8.53141e-03\n", + " Region: \"zone_3\"\tRelError: 3.64249e-01\tAbsError: 4.47774e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.64277e-01\tAbsError: 2.48829e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.51709e-02\tAbsError: 1.98945e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.48007e-02\tAbsError: 8.53142e-03\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.16065e+00\tAbsError: 2.45466e+15\n", + " Region: \"zone_1\"\tRelError: 4.71373e-01\tAbsError: 1.77023e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.71373e-01\tAbsError: 1.77023e-02\n", + " Region: \"zone_3\"\tRelError: 6.89274e-01\tAbsError: 2.45466e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.01124e-01\tAbsError: 1.37486e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.99629e-01\tAbsError: 1.07980e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.85210e-02\tAbsError: 1.77023e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.41940e-09\tAbsError: 1.23306e+05\n", + " Region: \"zone_1\"\tRelError: 3.48997e-11\tAbsError: 4.53395e-13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.48997e-11\tAbsError: 4.53395e-13\n", + " Region: \"zone_3\"\tRelError: 1.38450e-09\tAbsError: 1.23306e+05\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33231e-09\tAbsError: 9.46372e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.01981e-11\tAbsError: 2.86692e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.98962e-12\tAbsError: 4.71071e-13\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.66797e-04\tAbsError: 9.36411e+10\n", + " Region: \"zone_1\"\tRelError: 2.78046e-05\tAbsError: 5.63140e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78046e-05\tAbsError: 5.63140e-07\n", + " Region: \"zone_3\"\tRelError: 2.38992e-04\tAbsError: 9.36411e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.27463e-04\tAbsError: 6.40978e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.53499e-06\tAbsError: 2.95434e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.99392e-06\tAbsError: 6.01839e-07\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.97990e-01\tAbsError: 6.75521e+14\n", + " Region: \"zone_1\"\tRelError: 8.16716e-02\tAbsError: 5.90242e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.16716e-02\tAbsError: 5.90242e-04\n", + " Region: \"zone_3\"\tRelError: 2.16319e-01\tAbsError: 6.75521e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.67536e-01\tAbsError: 3.77151e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.44198e-02\tAbsError: 2.98370e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.36259e-03\tAbsError: 6.18197e-04\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 9.68114e-02\tAbsError: 1.28080e+14\n", + " Region: \"zone_1\"\tRelError: 4.63892e-03\tAbsError: 1.61036e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.63892e-03\tAbsError: 1.61036e-04\n", + " Region: \"zone_3\"\tRelError: 9.21725e-02\tAbsError: 1.28080e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.28870e-02\tAbsError: 1.85829e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.35372e-03\tAbsError: 1.09497e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.31711e-04\tAbsError: 1.67507e-04\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.09010e-09\tAbsError: 3.66440e+05\n", + " Region: \"zone_1\"\tRelError: 1.08644e-10\tAbsError: 2.37565e-12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08644e-10\tAbsError: 2.37565e-12\n", + " Region: \"zone_3\"\tRelError: 9.81458e-10\tAbsError: 3.66440e+05\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.42453e-10\tAbsError: 2.46344e+05\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.63615e-11\tAbsError: 1.20096e+05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26433e-11\tAbsError: 2.53041e-12\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 2.55050e-03\tAbsError: 5.56357e+12\n", + " Region: \"zone_1\"\tRelError: 1.38097e-03\tAbsError: 9.45823e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38097e-03\tAbsError: 9.45823e-06\n", + " Region: \"zone_3\"\tRelError: 1.16952e-03\tAbsError: 5.56357e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.84104e-04\tAbsError: 3.58660e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.15813e-04\tAbsError: 1.97697e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.96061e-05\tAbsError: 9.83585e-06\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 2.41686e-04\tAbsError: 7.84120e+10\n", + " Region: \"zone_1\"\tRelError: 3.54133e-06\tAbsError: 1.98436e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 3.54133e-06\tAbsError: 1.98436e-07\n", + " Region: \"zone_3\"\tRelError: 2.38145e-04\tAbsError: 7.84120e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.15545e-04\tAbsError: 2.05552e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.14120e-05\tAbsError: 5.78568e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18763e-06\tAbsError: 2.07855e-07\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 2.02784e-07\tAbsError: 3.51322e+08\n", + " Region: \"zone_1\"\tRelError: 1.23790e-07\tAbsError: 8.96494e-10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23790e-07\tAbsError: 8.96494e-10\n", + " Region: \"zone_3\"\tRelError: 7.89943e-08\tAbsError: 3.51322e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.18742e-08\tAbsError: 2.60533e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04797e-08\tAbsError: 9.07884e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 6.64042e-09\tAbsError: 9.35771e-10\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.14995e-10\tAbsError: 1.16709e+05\n", + " Region: \"zone_1\"\tRelError: 3.02973e-12\tAbsError: 2.00105e-13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.02973e-12\tAbsError: 2.00105e-13\n", + " Region: \"zone_3\"\tRelError: 1.11965e-10\tAbsError: 1.16709e+05\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.21653e-11\tAbsError: 6.28585e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.85483e-11\tAbsError: 5.38509e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25116e-12\tAbsError: 2.15781e-13\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:25\u001b[0m.\u001b[1;36m751\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:25\u001b[0m.\u001b[1;36m771\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.75 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:25\u001b[0m.\u001b[1;36m784\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: 0.75\u001b[0m \n", "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", @@ -3478,92 +4210,10 @@ "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.39694e+03\tAbsError: 1.39693e+19\n", - " Region: \"zone_1\"\tRelError: 1.06972e+00\tAbsError: 3.13057e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06972e+00\tAbsError: 3.13057e-02\n", - " Region: \"zone_3\"\tRelError: 2.39587e+03\tAbsError: 1.39693e+19\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.53044e+02\tAbsError: 6.98446e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.64175e+03\tAbsError: 6.98488e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07292e+00\tAbsError: 3.13057e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.01295e+00\tAbsError: 5.30343e+16\n", - " Region: \"zone_1\"\tRelError: 4.68874e-01\tAbsError: 9.69744e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 4.68874e-01\tAbsError: 9.69744e-03\n", - " Region: \"zone_3\"\tRelError: 2.54407e+00\tAbsError: 5.30343e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07579e+00\tAbsError: 2.59554e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.98430e-01\tAbsError: 2.70789e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.69858e-01\tAbsError: 9.86343e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 6.06000e-01\tAbsError: 4.02078e+15\n", - " Region: \"zone_1\"\tRelError: 1.21931e-03\tAbsError: 2.40897e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21931e-03\tAbsError: 2.40897e-04\n", - " Region: \"zone_3\"\tRelError: 6.04781e-01\tAbsError: 4.02078e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.12380e-01\tAbsError: 2.14256e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.91182e-01\tAbsError: 1.87822e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21931e-03\tAbsError: 2.54339e-04\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.84065e-03\tAbsError: 2.23230e+12\n", - " Region: \"zone_1\"\tRelError: 4.74964e-07\tAbsError: 9.96724e-08\n", - " Equation: \"PotentialEquation\"\tRelError: 4.74964e-07\tAbsError: 9.96724e-08\n", - " Region: \"zone_3\"\tRelError: 1.84017e-03\tAbsError: 2.23230e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.44793e-04\tAbsError: 1.36966e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.09483e-03\tAbsError: 8.62644e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.43349e-07\tAbsError: 1.12867e-07\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.11523e-09\tAbsError: 4.82934e+05\n", - " Region: \"zone_1\"\tRelError: 2.15869e-13\tAbsError: 4.52167e-14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.15869e-13\tAbsError: 4.52167e-14\n", - " Region: \"zone_3\"\tRelError: 1.11501e-09\tAbsError: 4.82934e+05\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83261e-10\tAbsError: 3.45065e+05\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.31495e-10\tAbsError: 1.37869e+05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.54655e-13\tAbsError: 5.34272e-14\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:36\u001b[0m.\u001b[1;36m088\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 0.31622776601683794\u001b[0m \n", - "Replacing Node Model NetDoping in region zone_1 of material Si\n", - "Replacing Node Model n_i in region zone_1 of material Si\n", - "Replacing Edge Model n_i@n0 in region zone_1 of material Si\n", - "Replacing Edge Model n_i@n1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en2 in region zone_1 of material Si\n", - "Replacing Node Model n_i:Electrons in region zone_1 of material Si\n", - "Replacing Node Model n_i:Holes in region zone_1 of material Si\n", - "Replacing Node Model n_i:T in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en2 in region zone_1 of material Si\n", - "Replacing Node Model NetDoping in region zone_3 of material Si\n", - "Replacing Node Model n_i in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en2 in region zone_3 of material Si\n", - "Replacing Node Model n_i:Electrons in region zone_3 of material Si\n", - "Replacing Node Model n_i:Holes in region zone_3 of material Si\n", - "Replacing Node Model n_i:T in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:Electrons@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:Holes@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:T@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:Electrons@n1 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:Holes@n1 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:T@n1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en2 in region zone_3 of material Si\n", + "number of equations 22535\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:26\u001b[0m.\u001b[1;36m065\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:26\u001b[0m.\u001b[1;36m084\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.8 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:26\u001b[0m.\u001b[1;36m098\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.8\u001b[0m \n", "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", @@ -3602,92 +4252,18 @@ "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.95472e+03\tAbsError: 4.41411e+19\n", - " Region: \"zone_1\"\tRelError: 3.81043e+02\tAbsError: 2.85345e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.81043e+02\tAbsError: 2.85345e-02\n", - " Region: \"zone_3\"\tRelError: 6.57367e+03\tAbsError: 4.41411e+19\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14821e+03\tAbsError: 2.20694e+19\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.40994e+03\tAbsError: 2.20718e+19\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01552e+03\tAbsError: 2.85345e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.80786e+03\tAbsError: 6.59033e+16\n", - " Region: \"zone_1\"\tRelError: 2.19832e+02\tAbsError: 1.26527e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.19832e+02\tAbsError: 1.26527e-02\n", - " Region: \"zone_3\"\tRelError: 2.58803e+03\tAbsError: 6.59033e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.51340e+00\tAbsError: 3.52905e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.98731e-01\tAbsError: 3.06128e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.58452e+03\tAbsError: 1.34324e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.63105e-01\tAbsError: 8.92986e+14\n", - " Region: \"zone_1\"\tRelError: 2.25408e-01\tAbsError: 6.58954e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25408e-01\tAbsError: 6.58954e-04\n", - " Region: \"zone_3\"\tRelError: 7.37696e-01\tAbsError: 8.92986e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.80759e-01\tAbsError: 8.00842e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.45120e-01\tAbsError: 9.21447e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18173e-02\tAbsError: 7.04254e-04\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 8.06680e-03\tAbsError: 2.77776e+12\n", - " Region: \"zone_1\"\tRelError: 6.08613e-04\tAbsError: 1.98093e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.08613e-04\tAbsError: 1.98093e-06\n", - " Region: \"zone_3\"\tRelError: 7.45819e-03\tAbsError: 2.77776e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.65188e-03\tAbsError: 2.73367e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.79286e-03\tAbsError: 4.40855e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.34515e-05\tAbsError: 2.15181e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.07461e-07\tAbsError: 2.67458e+07\n", - " Region: \"zone_1\"\tRelError: 6.49905e-09\tAbsError: 2.34425e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 6.49905e-09\tAbsError: 2.34425e-11\n", - " Region: \"zone_3\"\tRelError: 1.00962e-07\tAbsError: 2.67458e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94056e-08\tAbsError: 2.64009e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.13963e-08\tAbsError: 3.44866e+05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.59744e-10\tAbsError: 2.55539e-11\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:37\u001b[0m.\u001b[1;36m675\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 1.0\u001b[0m \n", - "Replacing Node Model NetDoping in region zone_1 of material Si\n", - "Replacing Node Model n_i in region zone_1 of material Si\n", - "Replacing Edge Model n_i@n0 in region zone_1 of material Si\n", - "Replacing Edge Model n_i@n1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en2 in region zone_1 of material Si\n", - "Replacing Node Model n_i:Electrons in region zone_1 of material Si\n", - "Replacing Node Model n_i:Holes in region zone_1 of material Si\n", - "Replacing Node Model n_i:T in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en2 in region zone_1 of material Si\n", - "Replacing Node Model NetDoping in region zone_3 of material Si\n", - "Replacing Node Model n_i in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en2 in region zone_3 of material Si\n", - "Replacing Node Model n_i:Electrons in region zone_3 of material Si\n", - "Replacing Node Model n_i:Holes in region zone_3 of material Si\n", - "Replacing Node Model n_i:T in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:Electrons@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:Holes@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:T@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:Electrons@n1 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:Holes@n1 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:T@n1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en2 in region zone_3 of material Si\n", + "number of equations 22535\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.56879e+01\tAbsError: 2.56861e+16\n", + " Region: \"zone_1\"\tRelError: 4.36072e+01\tAbsError: 6.12741e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.36072e+01\tAbsError: 6.12741e-02\n", + " Region: \"zone_3\"\tRelError: 2.08069e+00\tAbsError: 2.56861e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.06271e-01\tAbsError: 1.77863e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.06252e-01\tAbsError: 7.89985e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.68167e-01\tAbsError: 6.12741e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:26\u001b[0m.\u001b[1;36m323\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:26\u001b[0m.\u001b[1;36m344\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.85 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:26\u001b[0m.\u001b[1;36m358\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: 0.85\u001b[0m \n", "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", @@ -3726,199 +4302,81 @@ "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.33861e+04\tAbsError: 1.39514e+20\n", - " Region: \"zone_1\"\tRelError: 2.79494e+02\tAbsError: 4.20836e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.79494e+02\tAbsError: 4.20836e-02\n", - " Region: \"zone_3\"\tRelError: 1.31066e+04\tAbsError: 1.39514e+20\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.86187e+03\tAbsError: 6.97553e+19\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.24838e+02\tAbsError: 6.97585e+19\n", - " Equation: \"PotentialEquation\"\tRelError: 9.61994e+03\tAbsError: 4.30246e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.25022e+02\tAbsError: 5.51056e+16\n", - " Region: \"zone_1\"\tRelError: 3.98460e+01\tAbsError: 3.11827e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.98460e+01\tAbsError: 3.11827e-02\n", - " Region: \"zone_3\"\tRelError: 2.85176e+02\tAbsError: 5.51056e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.99835e+01\tAbsError: 2.78545e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.26461e+00\tAbsError: 2.72511e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.33928e+02\tAbsError: 3.22725e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.58594e+00\tAbsError: 1.77512e+15\n", - " Region: \"zone_1\"\tRelError: 5.05411e-02\tAbsError: 2.57431e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.05411e-02\tAbsError: 2.57431e-02\n", - " Region: \"zone_3\"\tRelError: 1.53540e+00\tAbsError: 1.77512e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.84777e-01\tAbsError: 8.67365e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.04763e-01\tAbsError: 9.07757e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.58597e-02\tAbsError: 2.58832e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 8.67888e+00\tAbsError: 5.91098e+13\n", - " Region: \"zone_1\"\tRelError: 1.67922e-02\tAbsError: 8.54135e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.67922e-02\tAbsError: 8.54135e-03\n", - " Region: \"zone_3\"\tRelError: 8.66209e+00\tAbsError: 5.91098e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.42042e+00\tAbsError: 2.76016e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.26176e-01\tAbsError: 3.15082e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.54893e-02\tAbsError: 9.88817e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.81690e-01\tAbsError: 5.88696e+12\n", - " Region: \"zone_1\"\tRelError: 1.48229e-03\tAbsError: 5.31753e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.48229e-03\tAbsError: 5.31753e-05\n", - " Region: \"zone_3\"\tRelError: 7.80207e-01\tAbsError: 5.88696e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.04708e-01\tAbsError: 2.85353e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.54154e-02\tAbsError: 3.03343e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.43580e-05\tAbsError: 5.79660e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.81047e-04\tAbsError: 4.19141e+08\n", - " Region: \"zone_1\"\tRelError: 2.16246e-08\tAbsError: 1.50485e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.16246e-08\tAbsError: 1.50485e-09\n", - " Region: \"zone_3\"\tRelError: 4.81025e-04\tAbsError: 4.19141e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39973e-04\tAbsError: 4.84100e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.10496e-05\tAbsError: 3.70731e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.37568e-09\tAbsError: 1.64465e-09\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.08814e-11\tAbsError: 3.17736e+04\n", - " Region: \"zone_1\"\tRelError: 1.06569e-14\tAbsError: 2.06294e-16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06569e-14\tAbsError: 2.06294e-16\n", - " Region: \"zone_3\"\tRelError: 2.08708e-11\tAbsError: 3.17736e+04\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.06175e-11\tAbsError: 1.55596e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.34811e-13\tAbsError: 1.62139e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.84794e-14\tAbsError: 2.16987e-16\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m466\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m485\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBuilt-in potential: % (np.float64(-1.0659654762908737),)\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m485\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mnot all arguments converted during string formatting\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m575\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.65 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m576\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.6 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m577\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.55 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m577\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.7 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m578\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.5 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m598\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.1\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m599\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: 0.1\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m599\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: 0.1\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m599\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: 0.1\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:40\u001b[0m.\u001b[1;36m599\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.1\u001b[0m \n", + "number of equations 22535\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.45125e+01\tAbsError: 2.56497e+16\n", + " Region: \"zone_1\"\tRelError: 6.23830e+01\tAbsError: 6.12741e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.23830e+01\tAbsError: 6.12741e-02\n", + " Region: \"zone_3\"\tRelError: 2.12948e+00\tAbsError: 2.56497e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.06262e-01\tAbsError: 1.70361e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.06227e-01\tAbsError: 8.61360e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.16991e-01\tAbsError: 6.12741e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 5.98703e+00\tAbsError: 5.88448e+15\n", + " Region: \"zone_1\"\tRelError: 3.87586e+00\tAbsError: 5.47695e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87586e+00\tAbsError: 5.47695e-02\n", + " Region: \"zone_3\"\tRelError: 2.11117e+00\tAbsError: 5.88448e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.79263e-01\tAbsError: 3.43900e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.47302e-01\tAbsError: 2.44547e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.84603e-01\tAbsError: 5.47695e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:26\u001b[0m.\u001b[1;36m576\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:26\u001b[0m.\u001b[1;36m596\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.9 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:26\u001b[0m.\u001b[1;36m605\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:26\u001b[0m.\u001b[1;36m609\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.9\u001b[0m \n", "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:26\u001b[0m.\u001b[1;36m626\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.95 bias\u001b[0m \n", "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:26\u001b[0m.\u001b[1;36m639\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.95\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", + "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", @@ -3926,280 +4384,348 @@ "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22535\n", "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "number of equations 22602\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "number of equations 22602\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.73717e+01\tAbsError: 8.69288e+15\n", - " Region: \"zone_1\"\tRelError: 2.57083e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.57083e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.66335e+00\tAbsError: 8.69288e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.93654e-01\tAbsError: 4.53799e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.93414e-01\tAbsError: 4.15490e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.62866e-02\tAbsError: 4.09542e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.73717e+01\tAbsError: 8.69288e+15\n", - " Region: \"zone_1\"\tRelError: 2.57083e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.57083e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.66335e+00\tAbsError: 8.69288e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.93654e-01\tAbsError: 4.53799e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.93414e-01\tAbsError: 4.15490e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.62866e-02\tAbsError: 4.09542e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.73717e+01\tAbsError: 8.69288e+15\n", - " Region: \"zone_1\"\tRelError: 2.57083e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.57083e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.66335e+00\tAbsError: 8.69288e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.93654e-01\tAbsError: 4.53799e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.93414e-01\tAbsError: 4.15490e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.62866e-02\tAbsError: 4.09542e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.73717e+01\tAbsError: 8.69288e+15\n", - " Region: \"zone_1\"\tRelError: 2.57083e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.57083e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.66335e+00\tAbsError: 8.69288e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.93654e-01\tAbsError: 4.53799e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.93414e-01\tAbsError: 4.15490e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.62866e-02\tAbsError: 4.09542e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.73717e+01\tAbsError: 8.69288e+15\n", - " Region: \"zone_1\"\tRelError: 2.57083e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.57083e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.66335e+00\tAbsError: 8.69288e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.93654e-01\tAbsError: 4.53799e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.93414e-01\tAbsError: 4.15490e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.62866e-02\tAbsError: 4.09542e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.74300e+00\tAbsError: 2.93645e+14\n", - " Region: \"zone_1\"\tRelError: 2.20462e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20462e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.52254e+00\tAbsError: 2.93645e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90423e-01\tAbsError: 1.21723e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.85863e-01\tAbsError: 1.71921e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.62516e-02\tAbsError: 3.07632e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.74300e+00\tAbsError: 2.93645e+14\n", - " Region: \"zone_1\"\tRelError: 2.20462e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20462e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.52254e+00\tAbsError: 2.93645e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90423e-01\tAbsError: 1.21723e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.85863e-01\tAbsError: 1.71921e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.62516e-02\tAbsError: 3.07632e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.74300e+00\tAbsError: 2.93645e+14\n", - " Region: \"zone_1\"\tRelError: 2.20462e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20462e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.52254e+00\tAbsError: 2.93645e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90423e-01\tAbsError: 1.21723e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.85863e-01\tAbsError: 1.71921e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.62516e-02\tAbsError: 3.07632e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.74300e+00\tAbsError: 2.93645e+14\n", - " Region: \"zone_1\"\tRelError: 2.20462e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20462e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.52254e+00\tAbsError: 2.93645e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90423e-01\tAbsError: 1.21723e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.85863e-01\tAbsError: 1.71921e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.62516e-02\tAbsError: 3.07632e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.74300e+00\tAbsError: 2.93645e+14\n", - " Region: \"zone_1\"\tRelError: 2.20462e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20462e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.52254e+00\tAbsError: 2.93645e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90423e-01\tAbsError: 1.21723e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.85863e-01\tAbsError: 1.71921e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.62516e-02\tAbsError: 3.07632e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.07714e+00\tAbsError: 4.48799e+13\n", - " Region: \"zone_1\"\tRelError: 4.05238e-02\tAbsError: 2.58454e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.05238e-02\tAbsError: 2.58454e-02\n", - " Region: \"zone_3\"\tRelError: 1.03661e+00\tAbsError: 4.48799e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14392e-01\tAbsError: 2.36249e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.86252e-01\tAbsError: 2.12550e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.59693e-02\tAbsError: 2.57490e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.07714e+00\tAbsError: 4.48799e+13\n", - " Region: \"zone_1\"\tRelError: 4.05238e-02\tAbsError: 2.58454e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.05238e-02\tAbsError: 2.58454e-02\n", - " Region: \"zone_3\"\tRelError: 1.03661e+00\tAbsError: 4.48799e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14392e-01\tAbsError: 2.36249e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.86252e-01\tAbsError: 2.12550e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.59693e-02\tAbsError: 2.57490e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.07714e+00\tAbsError: 4.48799e+13\n", - " Region: \"zone_1\"\tRelError: 4.05238e-02\tAbsError: 2.58454e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.05238e-02\tAbsError: 2.58454e-02\n", - " Region: \"zone_3\"\tRelError: 1.03661e+00\tAbsError: 4.48799e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14392e-01\tAbsError: 2.36249e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.86252e-01\tAbsError: 2.12550e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.59693e-02\tAbsError: 2.57490e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.07714e+00\tAbsError: 4.48799e+13\n", - " Region: \"zone_1\"\tRelError: 4.05238e-02\tAbsError: 2.58454e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.05238e-02\tAbsError: 2.58454e-02\n", - " Region: \"zone_3\"\tRelError: 1.03661e+00\tAbsError: 4.48799e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14392e-01\tAbsError: 2.36249e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.86252e-01\tAbsError: 2.12550e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.59693e-02\tAbsError: 2.57490e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.07714e+00\tAbsError: 4.48799e+13\n", - " Region: \"zone_1\"\tRelError: 4.05238e-02\tAbsError: 2.58454e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.05238e-02\tAbsError: 2.58454e-02\n", - " Region: \"zone_3\"\tRelError: 1.03661e+00\tAbsError: 4.48799e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14392e-01\tAbsError: 2.36249e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.86252e-01\tAbsError: 2.12550e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.59693e-02\tAbsError: 2.57490e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.81042e-01\tAbsError: 7.01282e+12\n", - " Region: \"zone_1\"\tRelError: 1.15331e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15331e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.69508e-01\tAbsError: 7.01282e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87363e-01\tAbsError: 9.92393e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.03912e-02\tAbsError: 6.02043e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17537e-02\tAbsError: 9.16534e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.81042e-01\tAbsError: 7.01282e+12\n", - " Region: \"zone_1\"\tRelError: 1.15331e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15331e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.69508e-01\tAbsError: 7.01282e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87363e-01\tAbsError: 9.92393e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.03912e-02\tAbsError: 6.02043e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17537e-02\tAbsError: 9.16534e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.81042e-01\tAbsError: 7.01282e+12\n", - " Region: \"zone_1\"\tRelError: 1.15331e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15331e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.69508e-01\tAbsError: 7.01282e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87363e-01\tAbsError: 9.92393e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.03912e-02\tAbsError: 6.02043e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17537e-02\tAbsError: 9.16534e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.81042e-01\tAbsError: 7.01282e+12\n", - " Region: \"zone_1\"\tRelError: 1.15331e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15331e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.69508e-01\tAbsError: 7.01282e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87363e-01\tAbsError: 9.92393e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.03912e-02\tAbsError: 6.02043e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17537e-02\tAbsError: 9.16534e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.81042e-01\tAbsError: 7.01282e+12\n", - " Region: \"zone_1\"\tRelError: 1.15331e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15331e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.69508e-01\tAbsError: 7.01282e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87363e-01\tAbsError: 9.92393e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.03912e-02\tAbsError: 6.02043e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17537e-02\tAbsError: 9.16534e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.40625e-02\tAbsError: 6.64799e+12\n", - " Region: \"zone_1\"\tRelError: 2.74618e-03\tAbsError: 3.10429e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.74618e-03\tAbsError: 3.10429e-05\n", - " Region: \"zone_3\"\tRelError: 9.13164e-02\tAbsError: 6.64799e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.88453e-02\tAbsError: 1.24813e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.42442e-03\tAbsError: 5.39986e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.66460e-05\tAbsError: 3.16854e-05\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.40625e-02\tAbsError: 6.64799e+12\n", - " Region: \"zone_1\"\tRelError: 2.74618e-03\tAbsError: 3.10429e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.74618e-03\tAbsError: 3.10429e-05\n", - " Region: \"zone_3\"\tRelError: 9.13164e-02\tAbsError: 6.64799e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.88453e-02\tAbsError: 1.24813e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.42442e-03\tAbsError: 5.39986e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.66460e-05\tAbsError: 3.16854e-05\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.40625e-02\tAbsError: 6.64799e+12\n", - " Region: \"zone_1\"\tRelError: 2.74618e-03\tAbsError: 3.10429e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.74618e-03\tAbsError: 3.10429e-05\n", - " Region: \"zone_3\"\tRelError: 9.13164e-02\tAbsError: 6.64799e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.88453e-02\tAbsError: 1.24813e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.42442e-03\tAbsError: 5.39986e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.66460e-05\tAbsError: 3.16854e-05\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.40625e-02\tAbsError: 6.64799e+12\n", - " Region: \"zone_1\"\tRelError: 2.74618e-03\tAbsError: 3.10429e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.74618e-03\tAbsError: 3.10429e-05\n", - " Region: \"zone_3\"\tRelError: 9.13164e-02\tAbsError: 6.64799e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.88453e-02\tAbsError: 1.24813e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.42442e-03\tAbsError: 5.39986e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.66460e-05\tAbsError: 3.16854e-05\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.40625e-02\tAbsError: 6.64799e+12\n", - " Region: \"zone_1\"\tRelError: 2.74618e-03\tAbsError: 3.10429e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.74618e-03\tAbsError: 3.10429e-05\n", - " Region: \"zone_3\"\tRelError: 9.13164e-02\tAbsError: 6.64799e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.88453e-02\tAbsError: 1.24813e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.42442e-03\tAbsError: 5.39986e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.66460e-05\tAbsError: 3.16854e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.20145e-05\tAbsError: 8.69361e+08\n", - " Region: \"zone_1\"\tRelError: 2.45098e-07\tAbsError: 3.49761e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.45098e-07\tAbsError: 3.49761e-09\n", - " Region: \"zone_3\"\tRelError: 6.17694e-05\tAbsError: 8.69361e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.00240e-05\tAbsError: 1.13923e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.74001e-06\tAbsError: 7.55438e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 5.37090e-09\tAbsError: 3.64623e-09\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:42\u001b[0m.\u001b[1;36m724\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.22\u001b[0m \n", + "number of equations 22535\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 9.35225e+00\tAbsError: 2.59809e+16\n", + " Region: \"zone_1\"\tRelError: 7.16390e+00\tAbsError: 6.12741e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.16390e+00\tAbsError: 6.12741e-02\n", + " Region: \"zone_3\"\tRelError: 2.18835e+00\tAbsError: 2.59809e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.06231e-01\tAbsError: 1.56937e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.06171e-01\tAbsError: 1.02872e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.75948e-01\tAbsError: 6.12741e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.71421e+01\tAbsError: 1.35557e+16\n", + " Region: \"zone_1\"\tRelError: 1.49912e+01\tAbsError: 5.47695e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49912e+01\tAbsError: 5.47695e-02\n", + " Region: \"zone_3\"\tRelError: 2.15089e+00\tAbsError: 1.35557e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.78654e-01\tAbsError: 7.48766e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.40049e-01\tAbsError: 6.06806e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.32189e-01\tAbsError: 5.47695e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.11079e+01\tAbsError: 9.12959e+15\n", + " Region: \"zone_1\"\tRelError: 9.13345e+00\tAbsError: 4.71388e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.13345e+00\tAbsError: 4.71388e-02\n", + " Region: \"zone_3\"\tRelError: 1.97445e+00\tAbsError: 9.12959e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.37589e-01\tAbsError: 4.59838e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.65474e-01\tAbsError: 4.53122e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.71383e-01\tAbsError: 4.71388e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.40224e+01\tAbsError: 6.39890e+16\n", + " Region: \"zone_1\"\tRelError: 2.17534e+01\tAbsError: 5.60955e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17534e+01\tAbsError: 5.60955e-02\n", + " Region: \"zone_3\"\tRelError: 2.26903e+00\tAbsError: 6.39890e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.85015e-01\tAbsError: 3.22038e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.84706e-01\tAbsError: 3.17853e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.99309e-01\tAbsError: 5.60955e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.61023e+01\tAbsError: 3.88462e+16\n", + " Region: \"zone_1\"\tRelError: 1.37522e+01\tAbsError: 6.55878e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37522e+01\tAbsError: 6.55878e-02\n", + " Region: \"zone_3\"\tRelError: 2.35012e+00\tAbsError: 3.88462e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.20534e-01\tAbsError: 1.98180e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.20438e-01\tAbsError: 1.90282e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.09149e-01\tAbsError: 6.55878e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.94146e+01\tAbsError: 3.26929e+16\n", + " Region: \"zone_1\"\tRelError: 3.72028e+01\tAbsError: 5.47695e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.72028e+01\tAbsError: 5.47695e-02\n", + " Region: \"zone_3\"\tRelError: 2.21180e+00\tAbsError: 3.26929e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.77756e-01\tAbsError: 1.60838e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.32276e-01\tAbsError: 1.66091e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.01769e-01\tAbsError: 5.47695e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.71217e+00\tAbsError: 2.52346e+16\n", + " Region: \"zone_1\"\tRelError: 7.16043e-01\tAbsError: 4.71388e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.16043e-01\tAbsError: 4.71388e-02\n", + " Region: \"zone_3\"\tRelError: 1.99613e+00\tAbsError: 2.52346e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.37489e-01\tAbsError: 1.16717e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.34154e-01\tAbsError: 1.35630e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.24486e-01\tAbsError: 4.71388e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.06802e+00\tAbsError: 1.32012e+16\n", + " Region: \"zone_1\"\tRelError: 3.58886e-01\tAbsError: 3.80896e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.58886e-01\tAbsError: 3.80896e-02\n", + " Region: \"zone_3\"\tRelError: 1.70913e+00\tAbsError: 1.32012e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.70059e-01\tAbsError: 6.59641e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.02313e-01\tAbsError: 6.60483e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36763e-01\tAbsError: 3.80896e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.39935e+01\tAbsError: 1.42641e+17\n", + " Region: \"zone_1\"\tRelError: 1.16003e+01\tAbsError: 4.87025e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16003e+01\tAbsError: 4.87025e-02\n", + " Region: \"zone_3\"\tRelError: 2.39324e+00\tAbsError: 1.42641e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.43408e-01\tAbsError: 7.01992e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.96527e-01\tAbsError: 7.24422e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.53305e-01\tAbsError: 4.87025e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.53781e+01\tAbsError: 1.19890e+17\n", + " Region: \"zone_1\"\tRelError: 3.29337e+01\tAbsError: 5.97678e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.29337e+01\tAbsError: 5.97678e-02\n", + " Region: \"zone_3\"\tRelError: 2.44445e+00\tAbsError: 1.19890e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.98563e-01\tAbsError: 5.82183e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.43937e-01\tAbsError: 6.16712e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.01948e-01\tAbsError: 5.97678e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.97013e+00\tAbsError: 6.24910e+16\n", + " Region: \"zone_1\"\tRelError: 1.88838e+00\tAbsError: 4.71388e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88838e+00\tAbsError: 4.71388e-02\n", + " Region: \"zone_3\"\tRelError: 2.08175e+00\tAbsError: 6.24910e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.36416e-01\tAbsError: 3.15308e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.45206e-01\tAbsError: 3.09602e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.00127e-01\tAbsError: 4.71388e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.28323e+00\tAbsError: 3.26073e+16\n", + " Region: \"zone_1\"\tRelError: 4.89833e-01\tAbsError: 3.80896e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.89833e-01\tAbsError: 3.80896e-02\n", + " Region: \"zone_3\"\tRelError: 1.79339e+00\tAbsError: 3.26073e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.67932e-01\tAbsError: 1.76486e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.41646e-01\tAbsError: 1.49587e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83816e-01\tAbsError: 3.80896e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.08831e+00\tAbsError: 1.26748e+16\n", + " Region: \"zone_1\"\tRelError: 4.65637e+00\tAbsError: 2.74092e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.65637e+00\tAbsError: 2.74092e-02\n", + " Region: \"zone_3\"\tRelError: 1.43193e+00\tAbsError: 1.26748e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.51633e-01\tAbsError: 6.91306e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.54217e-01\tAbsError: 5.76176e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.26084e-01\tAbsError: 2.74092e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 7.87318e+00\tAbsError: 1.92281e+17\n", + " Region: \"zone_1\"\tRelError: 2.58358e+00\tAbsError: 3.99479e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58358e+00\tAbsError: 3.99479e-02\n", + " Region: \"zone_3\"\tRelError: 5.28959e+00\tAbsError: 1.92281e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.72943e-01\tAbsError: 9.95574e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.71674e-01\tAbsError: 9.27240e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74498e+00\tAbsError: 3.99479e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.44270e+01\tAbsError: 2.49785e+17\n", + " Region: \"zone_1\"\tRelError: 1.80237e+01\tAbsError: 5.30119e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80237e+01\tAbsError: 5.30119e-02\n", + " Region: \"zone_3\"\tRelError: 6.40333e+00\tAbsError: 2.49785e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.66744e-01\tAbsError: 1.30938e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.81013e-01\tAbsError: 1.18846e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.65557e+00\tAbsError: 5.30119e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.81078e+00\tAbsError: 8.12851e+16\n", + " Region: \"zone_1\"\tRelError: 1.80471e+00\tAbsError: 3.80896e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80471e+00\tAbsError: 3.80896e-02\n", + " Region: \"zone_3\"\tRelError: 2.00606e+00\tAbsError: 8.12851e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.65121e-01\tAbsError: 4.43742e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.38068e-01\tAbsError: 3.69109e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.02875e-01\tAbsError: 3.80896e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.70761e+00\tAbsError: 7.50626e+15\n", + " Region: \"zone_1\"\tRelError: 8.27642e-01\tAbsError: 2.13187e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.27642e-01\tAbsError: 2.13187e-02\n", + " Region: \"zone_3\"\tRelError: 8.79965e-01\tAbsError: 7.50626e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.45016e-01\tAbsError: 4.05815e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.06834e-01\tAbsError: 3.44811e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28115e-01\tAbsError: 2.13187e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.96220e+00\tAbsError: 3.28141e+16\n", + " Region: \"zone_1\"\tRelError: 4.88872e-01\tAbsError: 2.74092e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.88872e-01\tAbsError: 2.74092e-02\n", + " Region: \"zone_3\"\tRelError: 1.47333e+00\tAbsError: 3.28141e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.49839e-01\tAbsError: 1.75296e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.44905e-01\tAbsError: 1.52845e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78585e-01\tAbsError: 2.74092e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.40803e+01\tAbsError: 2.12237e+17\n", + " Region: \"zone_1\"\tRelError: 7.59038e+00\tAbsError: 2.95805e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.59038e+00\tAbsError: 2.95805e-02\n", + " Region: \"zone_3\"\tRelError: 6.48990e+00\tAbsError: 2.12237e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.34158e-01\tAbsError: 1.08296e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.13268e-01\tAbsError: 1.03940e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 5.34248e+00\tAbsError: 2.95806e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.25422e+01\tAbsError: 4.07884e+17\n", + " Region: \"zone_1\"\tRelError: 4.37634e+00\tAbsError: 4.50609e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.37634e+00\tAbsError: 4.50609e-02\n", + " Region: \"zone_3\"\tRelError: 8.16581e+00\tAbsError: 4.07884e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.05731e-01\tAbsError: 2.06580e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.57147e-01\tAbsError: 2.01304e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 6.60294e+00\tAbsError: 4.50610e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.76733e+00\tAbsError: 7.48577e+16\n", + " Region: \"zone_1\"\tRelError: 1.82109e+00\tAbsError: 2.74092e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82109e+00\tAbsError: 2.74092e-02\n", + " Region: \"zone_3\"\tRelError: 6.94625e+00\tAbsError: 7.48577e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38358e-01\tAbsError: 4.05156e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.11369e-01\tAbsError: 3.43421e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.79652e+00\tAbsError: 2.74092e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.43408e-01\tAbsError: 2.38416e+15\n", + " Region: \"zone_1\"\tRelError: 1.27126e-01\tAbsError: 1.15218e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27126e-01\tAbsError: 1.15218e-03\n", + " Region: \"zone_3\"\tRelError: 3.16282e-01\tAbsError: 2.38416e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.06292e-01\tAbsError: 1.20143e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.24262e-02\tAbsError: 1.18272e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.75631e-02\tAbsError: 1.21213e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.93768e+00\tAbsError: 1.67528e+16\n", + " Region: \"zone_1\"\tRelError: 1.00953e+00\tAbsError: 2.13186e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00953e+00\tAbsError: 2.13186e-02\n", + " Region: \"zone_3\"\tRelError: 9.28151e-01\tAbsError: 1.67528e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.30183e-01\tAbsError: 9.21979e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.97813e-01\tAbsError: 7.53303e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.00155e-01\tAbsError: 2.13187e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.60920e+00\tAbsError: 1.24538e+17\n", + " Region: \"zone_1\"\tRelError: 1.28928e+00\tAbsError: 2.56733e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28928e+00\tAbsError: 2.56733e-02\n", + " Region: \"zone_3\"\tRelError: 2.31992e+00\tAbsError: 1.24538e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.77541e-01\tAbsError: 6.26841e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.09738e-01\tAbsError: 6.18535e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73264e+00\tAbsError: 2.56735e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.01213e+02\tAbsError: 5.03288e+17\n", + " Region: \"zone_1\"\tRelError: 1.10117e+01\tAbsError: 3.56212e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10117e+01\tAbsError: 3.56212e-02\n", + " Region: \"zone_3\"\tRelError: 9.02011e+01\tAbsError: 5.03288e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.73840e-01\tAbsError: 2.52693e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.04407e-01\tAbsError: 2.50595e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 8.90228e+01\tAbsError: 3.56213e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.08434e+00\tAbsError: 4.76995e+16\n", + " Region: \"zone_1\"\tRelError: 3.16709e+00\tAbsError: 2.13186e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.16709e+00\tAbsError: 2.13186e-02\n", + " Region: \"zone_3\"\tRelError: 1.91724e+00\tAbsError: 4.76995e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.99806e-01\tAbsError: 2.44942e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.50736e-01\tAbsError: 2.32053e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26670e+00\tAbsError: 2.13187e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 8.31577e-01\tAbsError: 5.99899e+15\n", + " Region: \"zone_1\"\tRelError: 4.74011e-01\tAbsError: 1.08711e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.74011e-01\tAbsError: 1.08711e-03\n", + " Region: \"zone_3\"\tRelError: 3.57566e-01\tAbsError: 5.99899e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.00781e-01\tAbsError: 3.13918e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.37319e-02\tAbsError: 2.85981e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.30528e-02\tAbsError: 1.17708e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.08161e-03\tAbsError: 3.10177e+13\n", + " Region: \"zone_1\"\tRelError: 3.52261e-03\tAbsError: 3.20308e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52261e-03\tAbsError: 3.20308e-05\n", + " Region: \"zone_3\"\tRelError: 2.55900e-03\tAbsError: 3.10177e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61676e-03\tAbsError: 1.72635e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.47399e-04\tAbsError: 1.37543e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.94838e-04\tAbsError: 3.36175e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.48496e-01\tAbsError: 2.54767e+16\n", + " Region: \"zone_1\"\tRelError: 4.06698e-01\tAbsError: 9.00788e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.06698e-01\tAbsError: 9.00788e-04\n", + " Region: \"zone_3\"\tRelError: 4.41797e-01\tAbsError: 2.54767e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18529e-01\tAbsError: 1.28095e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.74199e-02\tAbsError: 1.26672e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.85848e-01\tAbsError: 1.00616e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.60973e+01\tAbsError: 2.63320e+17\n", + " Region: \"zone_1\"\tRelError: 1.27396e+01\tAbsError: 2.57961e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27396e+01\tAbsError: 2.57961e-02\n", + " Region: \"zone_3\"\tRelError: 4.33577e+01\tAbsError: 2.63320e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.19662e-01\tAbsError: 1.32212e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.16904e-01\tAbsError: 1.31108e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.27211e+01\tAbsError: 2.58400e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.76292e+00\tAbsError: 1.63181e+16\n", + " Region: \"zone_1\"\tRelError: 1.23862e+00\tAbsError: 1.03208e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23862e+00\tAbsError: 1.03208e-03\n", + " Region: \"zone_3\"\tRelError: 5.24299e-01\tAbsError: 1.63181e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.57545e-01\tAbsError: 8.25629e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.61785e-02\tAbsError: 8.06180e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.10576e-01\tAbsError: 1.10097e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.23521e-03\tAbsError: 7.84122e+13\n", + " Region: \"zone_1\"\tRelError: 3.41819e-03\tAbsError: 2.50373e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.41819e-03\tAbsError: 2.50373e-05\n", + " Region: \"zone_3\"\tRelError: 2.81702e-03\tAbsError: 7.84122e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01223e-03\tAbsError: 4.77460e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.96618e-04\tAbsError: 3.06662e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.08174e-04\tAbsError: 2.72023e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.29874e-06\tAbsError: 5.30293e+09\n", + " Region: \"zone_1\"\tRelError: 8.36549e-07\tAbsError: 8.90313e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 8.36549e-07\tAbsError: 8.90313e-09\n", + " Region: \"zone_3\"\tRelError: 4.62187e-07\tAbsError: 5.30293e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87369e-07\tAbsError: 3.36735e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.25187e-08\tAbsError: 1.93558e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 8.22993e-08\tAbsError: 9.37281e-09\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.41835e-03\tAbsError: 1.67891e+14\n", + " Region: \"zone_1\"\tRelError: 9.61954e-04\tAbsError: 5.49762e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 9.61954e-04\tAbsError: 5.49762e-06\n", + " Region: \"zone_3\"\tRelError: 1.45639e-03\tAbsError: 1.67891e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.94487e-04\tAbsError: 8.52659e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.30774e-04\tAbsError: 8.26255e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.31132e-04\tAbsError: 5.73995e-06\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.79340e+01\tAbsError: 3.59483e+16\n", + " Region: \"zone_1\"\tRelError: 4.20983e+01\tAbsError: 1.63911e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.20983e+01\tAbsError: 1.63911e-02\n", + " Region: \"zone_3\"\tRelError: 5.83570e+00\tAbsError: 3.59483e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27562e-01\tAbsError: 1.80645e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.38364e-02\tAbsError: 1.78837e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.66430e+00\tAbsError: 1.63915e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.84598e-02\tAbsError: 2.06047e+14\n", + " Region: \"zone_1\"\tRelError: 1.49627e-02\tAbsError: 1.48128e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49627e-02\tAbsError: 1.48128e-05\n", + " Region: \"zone_3\"\tRelError: 3.49711e-03\tAbsError: 2.06047e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.45203e-03\tAbsError: 1.13418e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.65296e-04\tAbsError: 9.26290e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67978e-03\tAbsError: 1.56778e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.40270e-06\tAbsError: 1.92043e+10\n", + " Region: \"zone_1\"\tRelError: 7.89527e-07\tAbsError: 5.79852e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 7.89527e-07\tAbsError: 5.79852e-09\n", + " Region: \"zone_3\"\tRelError: 6.13174e-07\tAbsError: 1.92043e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.58417e-07\tAbsError: 1.30639e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.80122e-08\tAbsError: 6.14042e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 7.67443e-08\tAbsError: 6.25222e-09\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.52000e-08\tAbsError: 5.49075e+09\n", + " Region: \"zone_1\"\tRelError: 1.22854e-08\tAbsError: 3.95259e-10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22854e-08\tAbsError: 3.95259e-10\n", + " Region: \"zone_3\"\tRelError: 3.29146e-08\tAbsError: 5.49075e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34551e-08\tAbsError: 3.15520e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.63400e-09\tAbsError: 2.33555e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18255e-08\tAbsError: 4.22503e-10\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.14642e+00\tAbsError: 3.62759e+15\n", + " Region: \"zone_1\"\tRelError: 1.41253e+00\tAbsError: 1.03896e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41253e+00\tAbsError: 1.03896e-04\n", + " Region: \"zone_3\"\tRelError: 7.33891e-01\tAbsError: 3.62759e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.44234e-02\tAbsError: 1.90823e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.68744e-03\tAbsError: 1.71936e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.17780e-01\tAbsError: 1.04462e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.83777e-06\tAbsError: 4.01551e+10\n", + " Region: \"zone_1\"\tRelError: 1.34147e-06\tAbsError: 9.81955e-10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34147e-06\tAbsError: 9.81955e-10\n", + " Region: \"zone_3\"\tRelError: 4.96307e-07\tAbsError: 4.01551e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.77833e-07\tAbsError: 2.33330e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.06467e-08\tAbsError: 1.68221e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77827e-07\tAbsError: 1.76747e-09\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:29\u001b[0m.\u001b[1;36m804\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:29\u001b[0m.\u001b[1;36m823\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.0 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:29\u001b[0m.\u001b[1;36m838\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 1.0\u001b[0m \n", "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", @@ -4226,6 +4752,14 @@ "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.96669e-04\tAbsError: 8.64560e+11\n", + " Region: \"zone_1\"\tRelError: 1.98650e-04\tAbsError: 1.54007e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.98650e-04\tAbsError: 1.54007e-08\n", + " Region: \"zone_3\"\tRelError: 9.80185e-05\tAbsError: 8.64560e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.60351e-06\tAbsError: 4.40612e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.82749e-07\tAbsError: 4.23948e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.49322e-05\tAbsError: 1.54461e-08\n", "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", @@ -4233,128 +4767,73 @@ "Contact: zone_3_bc_2, Equation: PotentialEquation\n", "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.20145e-05\tAbsError: 8.69361e+08\n", - " Region: \"zone_1\"\tRelError: 2.45098e-07\tAbsError: 3.49761e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.45098e-07\tAbsError: 3.49761e-09\n", - " Region: \"zone_3\"\tRelError: 6.17694e-05\tAbsError: 8.69361e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.00240e-05\tAbsError: 1.13923e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.74001e-06\tAbsError: 7.55438e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 5.37090e-09\tAbsError: 3.64623e-09\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.20145e-05\tAbsError: 8.69361e+08\n", - " Region: \"zone_1\"\tRelError: 2.45098e-07\tAbsError: 3.49761e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.45098e-07\tAbsError: 3.49761e-09\n", - " Region: \"zone_3\"\tRelError: 6.17694e-05\tAbsError: 8.69361e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.00240e-05\tAbsError: 1.13923e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.74001e-06\tAbsError: 7.55438e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 5.37090e-09\tAbsError: 3.64623e-09\n", "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:42\u001b[0m.\u001b[1;36m871\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:42\u001b[0m.\u001b[1;36m871\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.21250000000000002\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:42\u001b[0m.\u001b[1;36m875\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.225\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "number of equations 22535\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:30\u001b[0m.\u001b[1;36m143\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:30\u001b[0m.\u001b[1;36m160\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.05 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:30\u001b[0m.\u001b[1;36m175\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: 1.05\u001b[0m \n", "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.29211e-11\tAbsError: 1.06683e+05\n", + " Region: \"zone_1\"\tRelError: 1.86938e-11\tAbsError: 2.11263e-15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86938e-11\tAbsError: 2.11263e-15\n", + " Region: \"zone_3\"\tRelError: 4.22724e-12\tAbsError: 1.06683e+05\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.81371e-13\tAbsError: 5.52431e+04\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.73247e-14\tAbsError: 5.14397e+04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.89854e-12\tAbsError: 2.13321e-15\n", "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.20145e-05\tAbsError: 8.69361e+08\n", - " Region: \"zone_1\"\tRelError: 2.45098e-07\tAbsError: 3.49761e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.45098e-07\tAbsError: 3.49761e-09\n", - " Region: \"zone_3\"\tRelError: 6.17694e-05\tAbsError: 8.69361e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.00240e-05\tAbsError: 1.13923e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.74001e-06\tAbsError: 7.55438e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 5.37090e-09\tAbsError: 3.64623e-09\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.20145e-05\tAbsError: 8.69361e+08\n", - " Region: \"zone_1\"\tRelError: 2.45098e-07\tAbsError: 3.49761e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.45098e-07\tAbsError: 3.49761e-09\n", - " Region: \"zone_3\"\tRelError: 6.17694e-05\tAbsError: 8.69361e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.00240e-05\tAbsError: 1.13923e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.74001e-06\tAbsError: 7.55438e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 5.37090e-09\tAbsError: 3.64623e-09\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_2, Equation: PotentialEquation\n", "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:42\u001b[0m.\u001b[1;36m991\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:42\u001b[0m.\u001b[1;36m991\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.21000000000000002\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:43\u001b[0m.\u001b[1;36m002\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: 0.2\u001b[0m \n", + "number of equations 22535\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.44247e+01\tAbsError: 2.01126e+17\n", + " Region: \"zone_1\"\tRelError: 1.18322e+01\tAbsError: 6.12741e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18322e+01\tAbsError: 6.12741e-02\n", + " Region: \"zone_3\"\tRelError: 2.59251e+00\tAbsError: 2.01126e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.04977e-01\tAbsError: 1.00473e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.04300e-01\tAbsError: 1.00653e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 7.83233e-01\tAbsError: 6.12741e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:30\u001b[0m.\u001b[1;36m277\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:30\u001b[0m.\u001b[1;36m297\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.1 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:30\u001b[0m.\u001b[1;36m316\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 1.1\u001b[0m \n", "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", @@ -4381,6 +4860,22 @@ "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_2, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_3, Equation: PotentialEquation\n", + "number of equations 22535\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:30\u001b[0m.\u001b[1;36m423\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:30\u001b[0m.\u001b[1;36m441\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.15 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:30\u001b[0m.\u001b[1;36m459\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 1.15\u001b[0m \n", "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", @@ -4398,7 +4893,6 @@ "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", @@ -4408,7 +4902,6 @@ "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", @@ -4416,425 +4909,79 @@ "Contact: zone_3_bc_2, Equation: PotentialEquation\n", "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.43252e+01\tAbsError: 1.03421e+16\n", - " Region: \"zone_1\"\tRelError: 2.25819e+01\tAbsError: 4.47728e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25819e+01\tAbsError: 4.47728e-02\n", - " Region: \"zone_3\"\tRelError: 1.74335e+00\tAbsError: 1.03421e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.22691e-01\tAbsError: 5.59498e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.22662e-01\tAbsError: 4.74717e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.79926e-02\tAbsError: 4.47728e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.99855e+02\tAbsError: 1.07731e+16\n", - " Region: \"zone_1\"\tRelError: 3.98095e+02\tAbsError: 4.56455e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.98095e+02\tAbsError: 4.56455e-02\n", - " Region: \"zone_3\"\tRelError: 1.75960e+00\tAbsError: 1.07731e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.28567e-01\tAbsError: 5.82810e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.28539e-01\tAbsError: 4.94497e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02494e-01\tAbsError: 4.56455e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.05002e+01\tAbsError: 9.69576e+15\n", - " Region: \"zone_1\"\tRelError: 8.77946e+00\tAbsError: 4.34059e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.77946e+00\tAbsError: 4.34059e-02\n", - " Region: \"zone_3\"\tRelError: 1.72076e+00\tAbsError: 9.69576e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.13079e-01\tAbsError: 5.24529e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.13050e-01\tAbsError: 4.45048e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.46281e-02\tAbsError: 4.34059e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 9.99488e+00\tAbsError: 9.48030e+15\n", - " Region: \"zone_1\"\tRelError: 8.28205e+00\tAbsError: 4.29338e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.28205e+00\tAbsError: 4.29338e-02\n", - " Region: \"zone_3\"\tRelError: 1.71283e+00\tAbsError: 9.48030e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09640e-01\tAbsError: 5.12873e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.09610e-01\tAbsError: 4.35158e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.35761e-02\tAbsError: 4.29338e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.60543e+00\tAbsError: 4.89557e+14\n", - " Region: \"zone_1\"\tRelError: 9.64208e-01\tAbsError: 3.52793e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.64208e-01\tAbsError: 3.52793e-02\n", - " Region: \"zone_3\"\tRelError: 1.64122e+00\tAbsError: 4.89557e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.40829e-01\tAbsError: 2.23317e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.35914e-01\tAbsError: 2.66240e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.44805e-02\tAbsError: 3.52793e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.21485e+01\tAbsError: 8.61846e+15\n", - " Region: \"zone_1\"\tRelError: 3.04717e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.04717e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.67686e+00\tAbsError: 8.61846e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94516e-01\tAbsError: 4.66248e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94484e-01\tAbsError: 3.95598e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.78603e-02\tAbsError: 4.09542e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.78928e+00\tAbsError: 5.28938e+14\n", - " Region: \"zone_1\"\tRelError: 1.12561e+00\tAbsError: 3.63154e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12561e+00\tAbsError: 3.63154e-02\n", - " Region: \"zone_3\"\tRelError: 1.66367e+00\tAbsError: 5.28938e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.50678e-01\tAbsError: 2.41685e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.46054e-01\tAbsError: 2.87253e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.69416e-02\tAbsError: 3.63154e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.84157e+00\tAbsError: 4.32896e+14\n", - " Region: \"zone_1\"\tRelError: 2.36912e-01\tAbsError: 3.36589e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.36912e-01\tAbsError: 3.36589e-02\n", - " Region: \"zone_3\"\tRelError: 1.60466e+00\tAbsError: 4.32896e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.24168e-01\tAbsError: 1.96905e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.19345e-01\tAbsError: 2.35991e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.11504e-02\tAbsError: 3.36589e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.85366e+00\tAbsError: 4.14640e+14\n", - " Region: \"zone_1\"\tRelError: 2.61180e-01\tAbsError: 3.31000e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.61180e-01\tAbsError: 3.31000e-02\n", - " Region: \"zone_3\"\tRelError: 1.59248e+00\tAbsError: 4.14640e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.17871e-01\tAbsError: 1.88389e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.13734e-01\tAbsError: 2.26251e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.08768e-02\tAbsError: 3.31000e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.43347e+00\tAbsError: 7.21532e+13\n", - " Region: \"zone_1\"\tRelError: 1.81992e-01\tAbsError: 2.58895e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81992e-01\tAbsError: 2.58895e-02\n", - " Region: \"zone_3\"\tRelError: 1.25148e+00\tAbsError: 7.21532e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.01180e-01\tAbsError: 4.01174e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.02411e-01\tAbsError: 3.20358e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.78909e-02\tAbsError: 2.58895e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.07800e+00\tAbsError: 3.45404e+14\n", - " Region: \"zone_1\"\tRelError: 5.44178e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.44178e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.53382e+00\tAbsError: 3.45404e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90662e-01\tAbsError: 1.56300e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.87478e-01\tAbsError: 1.89103e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.56802e-02\tAbsError: 3.07632e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.45137e+00\tAbsError: 8.09526e+13\n", - " Region: \"zone_1\"\tRelError: 1.57705e-01\tAbsError: 2.56964e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.57705e-01\tAbsError: 2.56964e-02\n", - " Region: \"zone_3\"\tRelError: 1.29366e+00\tAbsError: 8.09526e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.19167e-01\tAbsError: 4.49957e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.25437e-01\tAbsError: 3.59570e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.90582e-02\tAbsError: 2.58393e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.22755e+00\tAbsError: 6.01612e+13\n", - " Region: \"zone_1\"\tRelError: 4.61375e-02\tAbsError: 2.58854e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.61375e-02\tAbsError: 2.58854e-02\n", - " Region: \"zone_3\"\tRelError: 1.18141e+00\tAbsError: 6.01612e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.71455e-01\tAbsError: 3.35148e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.63762e-01\tAbsError: 2.66464e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.61967e-02\tAbsError: 2.58870e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.20078e+00\tAbsError: 5.64838e+13\n", - " Region: \"zone_1\"\tRelError: 4.55160e-02\tAbsError: 2.58865e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.55160e-02\tAbsError: 2.58865e-02\n", - " Region: \"zone_3\"\tRelError: 1.15526e+00\tAbsError: 5.64838e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.61025e-01\tAbsError: 3.15083e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.48693e-01\tAbsError: 2.49756e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.55410e-02\tAbsError: 2.58905e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.89326e-01\tAbsError: 4.13996e+12\n", - " Region: \"zone_1\"\tRelError: 2.41774e-02\tAbsError: 1.57805e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.41774e-02\tAbsError: 1.57805e-02\n", - " Region: \"zone_3\"\tRelError: 5.65148e-01\tAbsError: 4.13996e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.73951e-01\tAbsError: 2.57829e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.66640e-01\tAbsError: 1.56166e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.45580e-02\tAbsError: 1.57805e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.11313e+00\tAbsError: 4.26791e+13\n", - " Region: \"zone_1\"\tRelError: 7.05940e-02\tAbsError: 2.58377e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.05940e-02\tAbsError: 2.58377e-02\n", - " Region: \"zone_3\"\tRelError: 1.04254e+00\tAbsError: 4.26791e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14646e-01\tAbsError: 2.38411e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.85599e-01\tAbsError: 1.88379e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.22941e-02\tAbsError: 2.58015e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.96834e-01\tAbsError: 3.38950e+12\n", - " Region: \"zone_1\"\tRelError: 1.98031e-02\tAbsError: 1.31065e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.98031e-02\tAbsError: 1.31065e-02\n", - " Region: \"zone_3\"\tRelError: 4.77031e-01\tAbsError: 3.38950e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.31319e-01\tAbsError: 2.13807e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.25594e-01\tAbsError: 1.25143e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.01182e-02\tAbsError: 1.31065e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.67195e-01\tAbsError: 2.99700e+12\n", - " Region: \"zone_1\"\tRelError: 1.84458e-02\tAbsError: 1.22654e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.84458e-02\tAbsError: 1.22654e-02\n", - " Region: \"zone_3\"\tRelError: 4.48750e-01\tAbsError: 2.99700e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.16869e-01\tAbsError: 1.89558e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.13140e-01\tAbsError: 1.10142e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87406e-02\tAbsError: 1.22654e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 6.52999e-01\tAbsError: 4.87650e+12\n", - " Region: \"zone_1\"\tRelError: 2.73515e-02\tAbsError: 1.76835e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.73515e-02\tAbsError: 1.76835e-02\n", - " Region: \"zone_3\"\tRelError: 6.25648e-01\tAbsError: 4.87650e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.01915e-01\tAbsError: 3.02544e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.95961e-01\tAbsError: 1.85106e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.77724e-02\tAbsError: 1.76835e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.59775e-01\tAbsError: 2.80288e+11\n", - " Region: \"zone_1\"\tRelError: 1.96302e-04\tAbsError: 1.31500e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.96302e-04\tAbsError: 1.31500e-06\n", - " Region: \"zone_3\"\tRelError: 1.59578e-01\tAbsError: 2.80288e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.59143e-01\tAbsError: 4.20993e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.33221e-04\tAbsError: 2.38189e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.47952e-06\tAbsError: 1.35652e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.83480e-01\tAbsError: 2.88954e+12\n", - " Region: \"zone_1\"\tRelError: 1.35212e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35212e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.69958e-01\tAbsError: 2.88954e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88338e-01\tAbsError: 2.12977e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.78790e-02\tAbsError: 2.67656e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37417e-02\tAbsError: 9.16534e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.27801e-01\tAbsError: 4.34192e+11\n", - " Region: \"zone_1\"\tRelError: 2.46783e-04\tAbsError: 4.60435e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.46783e-04\tAbsError: 4.60435e-06\n", - " Region: \"zone_3\"\tRelError: 1.27554e-01\tAbsError: 4.34192e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27237e-01\tAbsError: 2.24685e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.08059e-04\tAbsError: 2.09506e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 8.98221e-06\tAbsError: 4.88811e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.18420e-01\tAbsError: 2.77452e+11\n", - " Region: \"zone_1\"\tRelError: 1.60281e-04\tAbsError: 2.62019e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60281e-04\tAbsError: 2.62019e-06\n", - " Region: \"zone_3\"\tRelError: 1.18259e-01\tAbsError: 2.77452e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18060e-01\tAbsError: 1.27601e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.94154e-04\tAbsError: 1.49851e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.08922e-06\tAbsError: 2.78229e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.84172e-01\tAbsError: 1.90697e+11\n", - " Region: \"zone_1\"\tRelError: 6.30141e-05\tAbsError: 1.39710e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.30141e-05\tAbsError: 1.39710e-06\n", - " Region: \"zone_3\"\tRelError: 1.84109e-01\tAbsError: 1.90697e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.83263e-01\tAbsError: 3.06155e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.42765e-04\tAbsError: 1.60082e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.64032e-06\tAbsError: 1.43554e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.92675e-06\tAbsError: 1.03497e+06\n", - " Region: \"zone_1\"\tRelError: 7.52446e-10\tAbsError: 5.33045e-12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.52446e-10\tAbsError: 5.33045e-12\n", - " Region: \"zone_3\"\tRelError: 5.92599e-06\tAbsError: 1.03497e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.92250e-06\tAbsError: 2.38573e+05\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.48197e-09\tAbsError: 7.96401e+05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02976e-11\tAbsError: 5.60919e-12\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.38444e-02\tAbsError: 3.70458e+12\n", - " Region: \"zone_1\"\tRelError: 3.59871e-03\tAbsError: 2.71390e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.59871e-03\tAbsError: 2.71390e-05\n", - " Region: \"zone_3\"\tRelError: 9.02457e-02\tAbsError: 3.70458e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.84320e-02\tAbsError: 1.19345e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.76575e-03\tAbsError: 2.51114e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.79561e-05\tAbsError: 2.71828e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:44\u001b[0m.\u001b[1;36m997\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:44\u001b[0m.\u001b[1;36m997\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.33999999999999997\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.29843e-05\tAbsError: 5.43351e+06\n", - " Region: \"zone_1\"\tRelError: 1.09761e-09\tAbsError: 3.62523e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09761e-09\tAbsError: 3.62523e-11\n", - " Region: \"zone_3\"\tRelError: 1.29832e-05\tAbsError: 5.43351e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.29355e-05\tAbsError: 5.10581e+05\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.76677e-08\tAbsError: 4.92293e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.63478e-11\tAbsError: 3.77119e-11\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:45\u001b[0m.\u001b[1;36m089\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:45\u001b[0m.\u001b[1;36m089\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.32500000000000007\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.49173e-06\tAbsError: 2.80652e+06\n", - " Region: \"zone_1\"\tRelError: 5.46308e-10\tAbsError: 1.14586e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.46308e-10\tAbsError: 1.14586e-11\n", - " Region: \"zone_3\"\tRelError: 6.49119e-06\tAbsError: 2.80652e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.47826e-06\tAbsError: 4.87875e+05\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.29012e-08\tAbsError: 2.31865e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.30092e-11\tAbsError: 1.26062e-11\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.87003e-06\tAbsError: 3.02548e+06\n", - " Region: \"zone_1\"\tRelError: 1.49583e-09\tAbsError: 1.05811e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49583e-09\tAbsError: 1.05811e-11\n", - " Region: \"zone_3\"\tRelError: 4.86853e-06\tAbsError: 3.02548e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.85850e-06\tAbsError: 6.55593e+05\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.00060e-08\tAbsError: 2.36989e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.59711e-11\tAbsError: 1.24054e-11\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:45\u001b[0m.\u001b[1;36m223\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:45\u001b[0m.\u001b[1;36m223\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.32000000000000006\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.96038e-05\tAbsError: 5.27330e+08\n", - " Region: \"zone_1\"\tRelError: 3.38320e-07\tAbsError: 2.80513e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.38320e-07\tAbsError: 2.80513e-09\n", - " Region: \"zone_3\"\tRelError: 4.92654e-05\tAbsError: 5.27330e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.82203e-05\tAbsError: 1.20057e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.04006e-06\tAbsError: 4.07273e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 5.04648e-09\tAbsError: 2.84942e-09\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:45\u001b[0m.\u001b[1;36m267\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.35\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:45\u001b[0m.\u001b[1;36m310\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: \u001b[0m \n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:45\u001b[0m.\u001b[1;36m310\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", + "number of equations 22535\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 5.11548e+01\tAbsError: 4.88537e+17\n", + " Region: \"zone_1\"\tRelError: 4.12351e+01\tAbsError: 5.47695e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.12351e+01\tAbsError: 5.47695e-02\n", + " Region: \"zone_3\"\tRelError: 9.91974e+00\tAbsError: 4.88537e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.71058e-01\tAbsError: 2.50170e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.12265e-01\tAbsError: 2.38367e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 8.13642e+00\tAbsError: 5.47695e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 9.74408e+02\tAbsError: 4.82367e+17\n", + " Region: \"zone_1\"\tRelError: 9.67891e+02\tAbsError: 6.12741e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.67891e+02\tAbsError: 6.12741e-02\n", + " Region: \"zone_3\"\tRelError: 6.51704e+00\tAbsError: 4.82367e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.02125e-01\tAbsError: 2.44263e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.00267e-01\tAbsError: 2.38104e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.71465e+00\tAbsError: 6.12741e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.80886e+04\tAbsError: 2.03456e+18\n", + " Region: \"zone_1\"\tRelError: 4.57982e+03\tAbsError: 5.60953e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.57982e+03\tAbsError: 5.60953e-02\n", + " Region: \"zone_3\"\tRelError: 8.35088e+04\tAbsError: 2.03456e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.48091e-01\tAbsError: 9.93575e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.34908e-01\tAbsError: 1.04099e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 8.35071e+04\tAbsError: 5.60955e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.38310e+03\tAbsError: 1.39439e+18\n", + " Region: \"zone_1\"\tRelError: 1.07371e+03\tAbsError: 6.55877e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07371e+03\tAbsError: 6.55877e-02\n", + " Region: \"zone_3\"\tRelError: 3.09392e+02\tAbsError: 1.39439e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.09452e-01\tAbsError: 6.63760e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.05027e-01\tAbsError: 7.30627e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 3.07578e+02\tAbsError: 6.55878e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 6.08699e+03\tAbsError: 8.84294e+17\n", + " Region: \"zone_1\"\tRelError: 5.99690e+03\tAbsError: 4.71387e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.99690e+03\tAbsError: 4.71387e-02\n", + " Region: \"zone_3\"\tRelError: 9.00889e+01\tAbsError: 8.84294e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.95770e-01\tAbsError: 4.46555e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.62605e-01\tAbsError: 4.37739e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 8.85306e+01\tAbsError: 4.71388e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.37613e+03\tAbsError: 1.30940e+18\n", + " Region: \"zone_1\"\tRelError: 5.38137e+02\tAbsError: 5.47694e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.38137e+02\tAbsError: 5.47694e-02\n", + " Region: \"zone_3\"\tRelError: 1.83800e+03\tAbsError: 1.30940e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.52533e-01\tAbsError: 6.57007e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.79966e-01\tAbsError: 6.52396e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83626e+03\tAbsError: 5.47695e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:31\u001b[0m.\u001b[1;36m057\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:31\u001b[0m.\u001b[1;36m077\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.2 bias\u001b[0m \n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.13258e+04\tAbsError: 1.94064e+18\n", + " Region: \"zone_1\"\tRelError: 8.97841e+03\tAbsError: 4.87020e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.97841e+03\tAbsError: 4.87020e-02\n", + " Region: \"zone_3\"\tRelError: 2.34736e+03\tAbsError: 1.94064e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.05721e-01\tAbsError: 9.72579e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.95713e-01\tAbsError: 9.68059e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34596e+03\tAbsError: 4.87025e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:31\u001b[0m.\u001b[1;36m093\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 1.2\u001b[0m \n", + "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", @@ -4852,217 +4999,263 @@ "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_2, Equation: PotentialEquation\n", "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.47853e+01\tAbsError: 1.02519e+16\n", - " Region: \"zone_1\"\tRelError: 1.30252e+01\tAbsError: 4.47728e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.30252e+01\tAbsError: 4.47728e-02\n", - " Region: \"zone_3\"\tRelError: 1.76018e+00\tAbsError: 1.02519e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.22739e-01\tAbsError: 5.83243e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.22729e-01\tAbsError: 4.41946e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14714e-01\tAbsError: 4.47728e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.89525e+01\tAbsError: 9.61793e+15\n", - " Region: \"zone_1\"\tRelError: 1.72162e+01\tAbsError: 4.34059e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72162e+01\tAbsError: 4.34059e-02\n", - " Region: \"zone_3\"\tRelError: 1.73629e+00\tAbsError: 9.61793e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.13130e-01\tAbsError: 5.45653e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.13119e-01\tAbsError: 4.16140e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10045e-01\tAbsError: 4.34059e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.10506e+01\tAbsError: 9.40634e+15\n", - " Region: \"zone_1\"\tRelError: 9.32438e+00\tAbsError: 4.29338e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.32438e+00\tAbsError: 4.29338e-02\n", - " Region: \"zone_3\"\tRelError: 1.72626e+00\tAbsError: 9.40634e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09691e-01\tAbsError: 5.33144e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.09680e-01\tAbsError: 4.07489e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06894e-01\tAbsError: 4.29338e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.20730e+00\tAbsError: 4.79565e+14\n", - " Region: \"zone_1\"\tRelError: 5.48136e-01\tAbsError: 3.52793e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.48136e-01\tAbsError: 3.52793e-02\n", - " Region: \"zone_3\"\tRelError: 1.65917e+00\tAbsError: 4.79565e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.41117e-01\tAbsError: 2.59100e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.36240e-01\tAbsError: 2.20465e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.18119e-02\tAbsError: 3.52793e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.62677e+00\tAbsError: 8.55868e+15\n", - " Region: \"zone_1\"\tRelError: 3.93566e+00\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.93566e+00\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.69111e+00\tAbsError: 8.55868e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94568e-01\tAbsError: 4.83229e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94557e-01\tAbsError: 3.72639e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01989e-01\tAbsError: 4.09542e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.85666e+01\tAbsError: 1.06738e+16\n", - " Region: \"zone_1\"\tRelError: 2.67884e+01\tAbsError: 4.56455e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.67884e+01\tAbsError: 4.56455e-02\n", - " Region: \"zone_3\"\tRelError: 1.77824e+00\tAbsError: 1.06738e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.28615e-01\tAbsError: 6.08350e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.28605e-01\tAbsError: 4.59032e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21017e-01\tAbsError: 4.56455e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 4.51523e+00\tAbsError: 4.22739e+14\n", - " Region: \"zone_1\"\tRelError: 2.89450e+00\tAbsError: 3.36589e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.89450e+00\tAbsError: 3.36589e-02\n", - " Region: \"zone_3\"\tRelError: 1.62073e+00\tAbsError: 4.22739e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.23769e-01\tAbsError: 2.24190e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.20407e-01\tAbsError: 1.98549e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.65581e-02\tAbsError: 3.36589e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.26294e+00\tAbsError: 4.04710e+14\n", - " Region: \"zone_1\"\tRelError: 6.55990e-01\tAbsError: 3.31000e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.55990e-01\tAbsError: 3.31000e-02\n", - " Region: \"zone_3\"\tRelError: 1.60695e+00\tAbsError: 4.04710e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.17961e-01\tAbsError: 2.13363e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.14153e-01\tAbsError: 1.91347e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.48377e-02\tAbsError: 3.31000e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.33125e+00\tAbsError: 4.12213e+13\n", - " Region: \"zone_1\"\tRelError: 6.47491e-02\tAbsError: 2.57580e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.47491e-02\tAbsError: 2.57580e-02\n", - " Region: \"zone_3\"\tRelError: 1.26650e+00\tAbsError: 4.12213e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.01161e-01\tAbsError: 2.62343e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.03820e-01\tAbsError: 1.49870e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.15242e-02\tAbsError: 2.57829e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.64610e+00\tAbsError: 3.68437e+13\n", - " Region: \"zone_1\"\tRelError: 4.53119e-01\tAbsError: 2.58087e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.53119e-01\tAbsError: 2.58087e-02\n", - " Region: \"zone_3\"\tRelError: 1.19298e+00\tAbsError: 3.68437e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.71779e-01\tAbsError: 2.36334e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.63005e-01\tAbsError: 1.32103e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.81958e-02\tAbsError: 2.58820e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.68467e+00\tAbsError: 3.35446e+14\n", - " Region: \"zone_1\"\tRelError: 1.36557e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36557e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.54812e+00\tAbsError: 3.35446e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90679e-01\tAbsError: 1.72457e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.87899e-01\tAbsError: 1.62989e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.95382e-02\tAbsError: 3.07632e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 6.89383e+00\tAbsError: 5.18509e+14\n", - " Region: \"zone_1\"\tRelError: 5.21126e+00\tAbsError: 3.63154e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.21126e+00\tAbsError: 3.63154e-02\n", - " Region: \"zone_3\"\tRelError: 1.68257e+00\tAbsError: 5.18509e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.50957e-01\tAbsError: 2.83335e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.46413e-01\tAbsError: 2.35173e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.51973e-02\tAbsError: 3.63154e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.24212e+00\tAbsError: 3.49826e+13\n", - " Region: \"zone_1\"\tRelError: 7.44892e-02\tAbsError: 2.58685e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.44892e-02\tAbsError: 2.58685e-02\n", - " Region: \"zone_3\"\tRelError: 1.16763e+00\tAbsError: 3.49826e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.61171e-01\tAbsError: 2.23843e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.49557e-01\tAbsError: 1.25983e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.68989e-02\tAbsError: 2.58685e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 6.01287e-01\tAbsError: 4.15111e+12\n", - " Region: \"zone_1\"\tRelError: 3.07780e-02\tAbsError: 1.57805e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.07780e-02\tAbsError: 1.57805e-02\n", - " Region: \"zone_3\"\tRelError: 5.70509e-01\tAbsError: 4.15111e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.73696e-01\tAbsError: 2.44163e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.65705e-01\tAbsError: 1.70948e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.11079e-02\tAbsError: 1.57805e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.10405e+00\tAbsError: 2.84626e+13\n", - " Region: \"zone_1\"\tRelError: 5.09442e-02\tAbsError: 2.58970e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.09442e-02\tAbsError: 2.58970e-02\n", - " Region: \"zone_3\"\tRelError: 1.05311e+00\tAbsError: 2.84626e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14915e-01\tAbsError: 1.81960e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.86897e-01\tAbsError: 1.02666e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.12979e-02\tAbsError: 2.58565e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.68433e+00\tAbsError: 4.64869e+13\n", - " Region: \"zone_1\"\tRelError: 3.73668e-01\tAbsError: 2.58485e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.73668e-01\tAbsError: 2.58485e-02\n", - " Region: \"zone_3\"\tRelError: 1.31067e+00\tAbsError: 4.64869e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.19200e-01\tAbsError: 3.02498e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.27007e-01\tAbsError: 1.62371e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.44592e-02\tAbsError: 2.58694e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.05251e-01\tAbsError: 2.85806e+12\n", - " Region: \"zone_1\"\tRelError: 2.46961e-02\tAbsError: 1.31065e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.46961e-02\tAbsError: 1.31065e-02\n", - " Region: \"zone_3\"\tRelError: 4.80555e-01\tAbsError: 2.85806e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.31249e-01\tAbsError: 1.68183e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.24321e-01\tAbsError: 1.17623e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49853e-02\tAbsError: 1.31065e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.59361e-01\tAbsError: 2.03855e+11\n", - " Region: \"zone_1\"\tRelError: 1.21525e-04\tAbsError: 1.10173e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21525e-04\tAbsError: 1.10173e-06\n", - " Region: \"zone_3\"\tRelError: 1.59240e-01\tAbsError: 2.03855e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.58701e-01\tAbsError: 6.56291e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.35370e-04\tAbsError: 1.38226e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.20073e-06\tAbsError: 1.24268e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.74278e-01\tAbsError: 2.59384e+12\n", - " Region: \"zone_1\"\tRelError: 2.28487e-02\tAbsError: 1.22654e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.28487e-02\tAbsError: 1.22654e-02\n", - " Region: \"zone_3\"\tRelError: 4.51429e-01\tAbsError: 2.59384e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.16516e-01\tAbsError: 1.52691e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.11789e-01\tAbsError: 1.06693e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.31245e-02\tAbsError: 1.22654e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.87738e-01\tAbsError: 1.50257e+12\n", - " Region: \"zone_1\"\tRelError: 1.63299e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.63299e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.71408e-01\tAbsError: 1.50257e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88723e-01\tAbsError: 2.92089e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.61472e-02\tAbsError: 1.21048e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65380e-02\tAbsError: 9.16534e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 6.67356e-01\tAbsError: 4.97105e+12\n", - " Region: \"zone_1\"\tRelError: 3.52993e-02\tAbsError: 1.76835e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52993e-02\tAbsError: 1.76835e-02\n", - " Region: \"zone_3\"\tRelError: 6.32056e-01\tAbsError: 4.97105e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.01229e-01\tAbsError: 2.83328e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.95149e-01\tAbsError: 2.13777e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.56785e-02\tAbsError: 1.76835e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.18030e-06\tAbsError: 1.23059e+06\n", - " Region: \"zone_1\"\tRelError: 2.53347e-11\tAbsError: 5.61891e-12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.53347e-11\tAbsError: 5.61891e-12\n", - " Region: \"zone_3\"\tRelError: 2.18028e-06\tAbsError: 1.23059e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16612e-06\tAbsError: 1.68178e+05\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.41360e-08\tAbsError: 1.06241e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46617e-11\tAbsError: 6.26882e-12\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.19005e-01\tAbsError: 5.46470e+11\n", - " Region: \"zone_1\"\tRelError: 5.19598e-04\tAbsError: 3.00981e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.19598e-04\tAbsError: 3.00981e-06\n", - " Region: \"zone_3\"\tRelError: 1.18486e-01\tAbsError: 5.46470e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18069e-01\tAbsError: 1.59389e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.09405e-04\tAbsError: 3.87081e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 7.48302e-06\tAbsError: 3.25953e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:47\u001b[0m.\u001b[1;36m224\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:47\u001b[0m.\u001b[1;36m224\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.45999999999999996\u001b[0m \n", + "number of equations 22535\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.00553e+04\tAbsError: 3.20403e+18\n", + " Region: \"zone_1\"\tRelError: 7.92776e+03\tAbsError: 5.97675e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.92776e+03\tAbsError: 5.97675e-02\n", + " Region: \"zone_3\"\tRelError: 2.12757e+03\tAbsError: 3.20403e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.41912e-01\tAbsError: 1.59701e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.45144e-01\tAbsError: 1.60702e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12589e+03\tAbsError: 5.97678e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.75707e+04\tAbsError: 8.12348e+17\n", + " Region: \"zone_1\"\tRelError: 2.23821e+03\tAbsError: 3.80893e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23821e+03\tAbsError: 3.80893e-02\n", + " Region: \"zone_3\"\tRelError: 3.53325e+04\tAbsError: 8.12348e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.27808e-01\tAbsError: 4.08175e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.60886e-01\tAbsError: 4.04172e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53314e+04\tAbsError: 3.80896e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 7.81913e+03\tAbsError: 1.53943e+18\n", + " Region: \"zone_1\"\tRelError: 1.67313e+03\tAbsError: 4.71385e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67313e+03\tAbsError: 4.71385e-02\n", + " Region: \"zone_3\"\tRelError: 6.14600e+03\tAbsError: 1.53943e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.33895e-01\tAbsError: 7.72467e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.54507e-01\tAbsError: 7.66965e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 6.14461e+03\tAbsError: 4.71388e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.98047e+04\tAbsError: 7.40355e+17\n", + " Region: \"zone_1\"\tRelError: 9.71856e+00\tAbsError: 3.99472e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.71856e+00\tAbsError: 3.99472e-02\n", + " Region: \"zone_3\"\tRelError: 3.97950e+04\tAbsError: 7.40355e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.05646e-01\tAbsError: 3.70892e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.34424e-01\tAbsError: 3.69463e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 3.97942e+04\tAbsError: 3.99479e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.02612e+04\tAbsError: 4.07776e+18\n", + " Region: \"zone_1\"\tRelError: 8.75080e+02\tAbsError: 6.12738e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.75080e+02\tAbsError: 6.12738e-02\n", + " Region: \"zone_3\"\tRelError: 2.93861e+04\tAbsError: 4.07776e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.48920e-01\tAbsError: 2.02424e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.33982e-01\tAbsError: 2.05352e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 2.93845e+04\tAbsError: 6.12741e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.22385e+01\tAbsError: 2.09746e+18\n", + " Region: \"zone_1\"\tRelError: 1.04600e+01\tAbsError: 5.30113e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04600e+01\tAbsError: 5.30113e-02\n", + " Region: \"zone_3\"\tRelError: 1.17785e+01\tAbsError: 2.09746e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.69788e-01\tAbsError: 1.05223e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.02853e-01\tAbsError: 1.04523e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05058e+01\tAbsError: 5.30119e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.92212e+02\tAbsError: 2.26010e+17\n", + " Region: \"zone_1\"\tRelError: 5.47761e+02\tAbsError: 2.74088e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.47761e+02\tAbsError: 2.74088e-02\n", + " Region: \"zone_3\"\tRelError: 2.44451e+02\tAbsError: 2.26010e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.28725e-01\tAbsError: 1.13537e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.57200e-01\tAbsError: 1.12473e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.43965e+02\tAbsError: 2.74092e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.01618e+04\tAbsError: 6.16235e+17\n", + " Region: \"zone_1\"\tRelError: 4.34054e+03\tAbsError: 3.80891e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.34054e+03\tAbsError: 3.80891e-02\n", + " Region: \"zone_3\"\tRelError: 5.82131e+03\tAbsError: 6.16235e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73471e-01\tAbsError: 3.09342e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.14971e-01\tAbsError: 3.06893e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 5.82052e+03\tAbsError: 3.80896e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.75491e+00\tAbsError: 8.13903e+16\n", + " Region: \"zone_1\"\tRelError: 5.78219e-01\tAbsError: 2.95797e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.78219e-01\tAbsError: 2.95797e-02\n", + " Region: \"zone_3\"\tRelError: 1.17669e+00\tAbsError: 8.13903e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06484e-01\tAbsError: 4.07727e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.41913e-02\tAbsError: 4.06176e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02601e+00\tAbsError: 2.95806e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.96136e+00\tAbsError: 2.84061e+18\n", + " Region: \"zone_1\"\tRelError: 1.29467e+00\tAbsError: 5.47687e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29467e+00\tAbsError: 5.47687e-02\n", + " Region: \"zone_3\"\tRelError: 2.66668e+00\tAbsError: 2.84061e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.77315e-01\tAbsError: 1.42307e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.94014e-01\tAbsError: 1.41754e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29536e+00\tAbsError: 5.47695e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.37474e+00\tAbsError: 7.06349e+17\n", + " Region: \"zone_1\"\tRelError: 8.97055e-01\tAbsError: 4.50600e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.97055e-01\tAbsError: 4.50600e-02\n", + " Region: \"zone_3\"\tRelError: 1.47769e+00\tAbsError: 7.06349e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.44734e-01\tAbsError: 3.53598e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.35501e-01\tAbsError: 3.52751e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 8.97454e-01\tAbsError: 4.50610e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.11318e+03\tAbsError: 3.06287e+16\n", + " Region: \"zone_1\"\tRelError: 6.74775e+02\tAbsError: 2.13178e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.74775e+02\tAbsError: 2.13178e-02\n", + " Region: \"zone_3\"\tRelError: 4.38401e+02\tAbsError: 3.06287e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.03549e-02\tAbsError: 1.53264e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.34413e-02\tAbsError: 1.53023e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.38307e+02\tAbsError: 2.13187e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.39760e+02\tAbsError: 1.25230e+17\n", + " Region: \"zone_1\"\tRelError: 7.23746e+01\tAbsError: 2.74086e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.23746e+01\tAbsError: 2.74086e-02\n", + " Region: \"zone_3\"\tRelError: 6.73856e+01\tAbsError: 1.25230e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54284e-01\tAbsError: 6.27517e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.49424e-02\tAbsError: 6.24780e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.71663e+01\tAbsError: 2.74092e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.74932e-01\tAbsError: 1.45571e+16\n", + " Region: \"zone_1\"\tRelError: 3.33090e-01\tAbsError: 2.56716e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.33090e-01\tAbsError: 2.56716e-02\n", + " Region: \"zone_3\"\tRelError: 3.41842e-01\tAbsError: 1.45571e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.05949e-03\tAbsError: 7.33490e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.56370e-03\tAbsError: 7.22217e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.33219e-01\tAbsError: 2.56735e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.71167e+00\tAbsError: 9.05791e+17\n", + " Region: \"zone_1\"\tRelError: 5.22273e-01\tAbsError: 4.71377e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.22273e-01\tAbsError: 4.71377e-02\n", + " Region: \"zone_3\"\tRelError: 1.18939e+00\tAbsError: 9.05791e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61387e-01\tAbsError: 4.53279e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.05563e-01\tAbsError: 4.52513e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 5.22445e-01\tAbsError: 4.71388e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.20142e-01\tAbsError: 1.30578e+17\n", + " Region: \"zone_1\"\tRelError: 4.13601e-01\tAbsError: 3.56202e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.13601e-01\tAbsError: 3.56202e-02\n", + " Region: \"zone_3\"\tRelError: 5.06541e-01\tAbsError: 1.30578e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.67672e-02\tAbsError: 6.57283e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.60303e-02\tAbsError: 6.48500e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.13744e-01\tAbsError: 3.56213e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.74074e-01\tAbsError: 1.81658e+15\n", + " Region: \"zone_1\"\tRelError: 1.31911e-01\tAbsError: 1.90158e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31911e-01\tAbsError: 1.90158e-05\n", + " Region: \"zone_3\"\tRelError: 4.21636e-02\tAbsError: 1.81658e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.27607e-03\tAbsError: 9.08915e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.63394e-04\tAbsError: 9.07667e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85241e-02\tAbsError: 1.90544e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.76619e+00\tAbsError: 1.32678e+16\n", + " Region: \"zone_1\"\tRelError: 8.17883e-01\tAbsError: 2.13174e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.17883e-01\tAbsError: 2.13174e-02\n", + " Region: \"zone_3\"\tRelError: 1.94831e+00\tAbsError: 1.32678e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49404e-02\tAbsError: 6.65190e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.91989e-03\tAbsError: 6.61590e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93045e+00\tAbsError: 2.13187e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.80109e-03\tAbsError: 9.89872e+14\n", + " Region: \"zone_1\"\tRelError: 2.48373e-03\tAbsError: 9.18813e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.48373e-03\tAbsError: 9.18813e-06\n", + " Region: \"zone_3\"\tRelError: 5.31736e-03\tAbsError: 9.89872e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61608e-04\tAbsError: 4.95137e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.46725e-04\tAbsError: 4.94735e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.80903e-03\tAbsError: 9.18813e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.01391e-01\tAbsError: 1.69041e+17\n", + " Region: \"zone_1\"\tRelError: 2.96769e-01\tAbsError: 3.80883e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96769e-01\tAbsError: 3.80883e-02\n", + " Region: \"zone_3\"\tRelError: 4.04622e-01\tAbsError: 1.69041e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.08434e-02\tAbsError: 8.50889e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.69411e-02\tAbsError: 8.39522e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96838e-01\tAbsError: 3.80896e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.52954e-01\tAbsError: 1.50154e+16\n", + " Region: \"zone_1\"\tRelError: 2.21878e-01\tAbsError: 2.58885e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21878e-01\tAbsError: 2.58885e-02\n", + " Region: \"zone_3\"\tRelError: 2.31076e-01\tAbsError: 1.50154e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.84714e-03\tAbsError: 7.53377e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.29117e-03\tAbsError: 7.48162e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21938e-01\tAbsError: 2.58931e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.94814e-05\tAbsError: 3.94168e+11\n", + " Region: \"zone_1\"\tRelError: 3.14491e-05\tAbsError: 5.58748e-09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.14491e-05\tAbsError: 5.58748e-09\n", + " Region: \"zone_3\"\tRelError: 8.03229e-06\tAbsError: 3.94168e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.99226e-07\tAbsError: 1.97246e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.88188e-08\tAbsError: 1.96922e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.55424e-06\tAbsError: 5.65234e-09\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.51671e-01\tAbsError: 8.61274e+14\n", + " Region: \"zone_1\"\tRelError: 1.46424e-01\tAbsError: 2.19031e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46424e-01\tAbsError: 2.19031e-05\n", + " Region: \"zone_3\"\tRelError: 5.05247e-01\tAbsError: 8.61274e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57513e-04\tAbsError: 4.31692e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.69661e-04\tAbsError: 4.29582e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.04320e-01\tAbsError: 2.22517e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.19198e-07\tAbsError: 6.53147e+10\n", + " Region: \"zone_1\"\tRelError: 1.31121e-07\tAbsError: 9.46986e-10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31121e-07\tAbsError: 9.46986e-10\n", + " Region: \"zone_3\"\tRelError: 2.88077e-07\tAbsError: 6.53147e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.44830e-08\tAbsError: 3.26740e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.89433e-09\tAbsError: 3.26407e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.53699e-07\tAbsError: 9.52178e-10\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.62213e-01\tAbsError: 1.73175e+16\n", + " Region: \"zone_1\"\tRelError: 1.75971e-01\tAbsError: 2.74077e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75971e-01\tAbsError: 2.74077e-02\n", + " Region: \"zone_3\"\tRelError: 1.86243e-01\tAbsError: 1.73175e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.50249e-03\tAbsError: 8.67921e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.73545e-03\tAbsError: 8.63826e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76005e-01\tAbsError: 2.74092e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.66809e-01\tAbsError: 1.80926e+16\n", + " Region: \"zone_1\"\tRelError: 1.28980e-01\tAbsError: 1.63895e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28980e-01\tAbsError: 1.63895e-02\n", + " Region: \"zone_3\"\tRelError: 1.37829e-01\tAbsError: 1.80926e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.53189e-03\tAbsError: 8.99623e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.28611e-03\tAbsError: 9.09636e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29011e-01\tAbsError: 1.63915e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.53161e-05\tAbsError: 4.99905e+10\n", + " Region: \"zone_1\"\tRelError: 4.15454e-06\tAbsError: 6.97863e-10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.15454e-06\tAbsError: 6.97863e-10\n", + " Region: \"zone_3\"\tRelError: 2.11615e-05\tAbsError: 4.99905e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.80837e-08\tAbsError: 2.61279e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.87119e-08\tAbsError: 2.38626e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.10848e-05\tAbsError: 7.79879e-10\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.41699e-01\tAbsError: 2.69752e+15\n", + " Region: \"zone_1\"\tRelError: 1.20381e-01\tAbsError: 2.13158e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20381e-01\tAbsError: 2.13158e-02\n", + " Region: \"zone_3\"\tRelError: 1.21318e-01\tAbsError: 2.69752e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.26704e-04\tAbsError: 1.35516e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.88604e-04\tAbsError: 1.34235e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20403e-01\tAbsError: 2.13187e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 8.48925e-04\tAbsError: 1.06201e+15\n", + " Region: \"zone_1\"\tRelError: 2.34367e-04\tAbsError: 7.55645e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34367e-04\tAbsError: 7.55645e-06\n", + " Region: \"zone_3\"\tRelError: 6.14559e-04\tAbsError: 1.06201e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.22110e-04\tAbsError: 4.20837e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.48947e-04\tAbsError: 6.41177e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.43502e-04\tAbsError: 7.55708e-06\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.72886e-04\tAbsError: 4.24758e+14\n", + " Region: \"zone_1\"\tRelError: 1.99628e-05\tAbsError: 3.74407e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.99628e-05\tAbsError: 3.74407e-06\n", + " Region: \"zone_3\"\tRelError: 1.52924e-04\tAbsError: 4.24758e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.57413e-05\tAbsError: 2.13949e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.68481e-05\tAbsError: 2.10810e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03342e-05\tAbsError: 3.84859e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:33\u001b[0m.\u001b[1;36m591\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:33\u001b[0m.\u001b[1;36m610\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.25 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:33\u001b[0m.\u001b[1;36m624\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: 1.25\u001b[0m \n", "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", @@ -5075,14 +5268,6 @@ "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.32086e-01\tAbsError: 3.58732e+11\n", - " Region: \"zone_1\"\tRelError: 3.52069e-03\tAbsError: 3.46952e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52069e-03\tAbsError: 3.46952e-06\n", - " Region: \"zone_3\"\tRelError: 1.28565e-01\tAbsError: 3.58732e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28060e-01\tAbsError: 1.88253e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.95953e-04\tAbsError: 1.70479e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 8.82064e-06\tAbsError: 3.74489e-06\n", "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", @@ -5098,49568 +5283,2674 @@ "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.96849e-02\tAbsError: 2.07362e+12\n", - " Region: \"zone_1\"\tRelError: 7.02885e-04\tAbsError: 1.90198e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.02885e-04\tAbsError: 1.90198e-05\n", - " Region: \"zone_3\"\tRelError: 8.89820e-02\tAbsError: 2.07362e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.78375e-02\tAbsError: 8.90891e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10276e-03\tAbsError: 1.18273e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.17313e-05\tAbsError: 1.96984e-05\n", "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_2, Equation: PotentialEquation\n", "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:33\u001b[0m.\u001b[1;36m674\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.82975e-08\tAbsError: 4.55171e+10\n", + " Region: \"zone_1\"\tRelError: 4.96601e-09\tAbsError: 5.42623e-10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.96601e-09\tAbsError: 5.42623e-10\n", + " Region: \"zone_3\"\tRelError: 2.33315e-08\tAbsError: 4.55171e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27951e-08\tAbsError: 2.42431e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.35828e-09\tAbsError: 2.12739e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.17811e-09\tAbsError: 5.61292e-10\n", "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.85665e-01\tAbsError: 3.55505e+11\n", - " Region: \"zone_1\"\tRelError: 1.22203e-03\tAbsError: 2.29161e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.22203e-03\tAbsError: 2.29161e-06\n", - " Region: \"zone_3\"\tRelError: 1.84443e-01\tAbsError: 3.55505e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.83320e-01\tAbsError: 1.35128e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.11619e-03\tAbsError: 2.20377e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 6.84121e-06\tAbsError: 2.55517e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.40982e-05\tAbsError: 1.92019e+08\n", - " Region: \"zone_1\"\tRelError: 4.03285e-08\tAbsError: 1.17477e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 4.03285e-08\tAbsError: 1.17477e-09\n", - " Region: \"zone_3\"\tRelError: 3.40579e-05\tAbsError: 1.92019e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.36060e-05\tAbsError: 5.55444e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.49187e-07\tAbsError: 1.36475e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.67835e-09\tAbsError: 1.26430e-09\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.06553e-05\tAbsError: 3.01286e+06\n", - " Region: \"zone_1\"\tRelError: 1.31838e-08\tAbsError: 2.69287e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31838e-08\tAbsError: 2.69287e-11\n", - " Region: \"zone_3\"\tRelError: 1.06421e-05\tAbsError: 3.01286e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05960e-05\tAbsError: 5.16247e+05\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.60244e-08\tAbsError: 2.49661e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.27167e-11\tAbsError: 2.84312e-11\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:47\u001b[0m.\u001b[1;36m647\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: 0.4\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:47\u001b[0m.\u001b[1;36m649\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: 0.4375\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", + "number of equations 22535\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:33\u001b[0m.\u001b[1;36m693\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.3 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:33\u001b[0m.\u001b[1;36m707\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 1.3\u001b[0m \n", "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Iteration: 5\n", "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 8.63620e-06\tAbsError: 2.22522e+06\n", - " Region: \"zone_1\"\tRelError: 2.53869e-09\tAbsError: 2.37681e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.53869e-09\tAbsError: 2.37681e-11\n", - " Region: \"zone_3\"\tRelError: 8.63366e-06\tAbsError: 2.22522e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.60416e-06\tAbsError: 5.72923e+05\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.94484e-08\tAbsError: 1.65229e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.35026e-11\tAbsError: 2.45711e-11\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_2, Equation: PotentialEquation\n", "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 5\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 5.34503e-06\tAbsError: 4.05779e+06\n", - " Region: \"zone_1\"\tRelError: 3.22995e-10\tAbsError: 2.21843e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.22995e-10\tAbsError: 2.21843e-11\n", - " Region: \"zone_3\"\tRelError: 5.34471e-06\tAbsError: 4.05779e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.27797e-06\tAbsError: 6.65666e+05\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.66791e-08\tAbsError: 3.39213e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.85320e-11\tAbsError: 2.41530e-11\n", "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:47\u001b[0m.\u001b[1;36m741\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:47\u001b[0m.\u001b[1;36m741\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.43000000000000005\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:47\u001b[0m.\u001b[1;36m776\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.475\u001b[0m \n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.64361e+01\tAbsError: 1.00688e+16\n", - " Region: \"zone_1\"\tRelError: 1.46549e+01\tAbsError: 4.47728e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46549e+01\tAbsError: 4.47728e-02\n", - " Region: \"zone_3\"\tRelError: 1.78122e+00\tAbsError: 1.00688e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.22740e-01\tAbsError: 5.91653e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.22726e-01\tAbsError: 4.15223e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35753e-01\tAbsError: 4.47728e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.36121e+00\tAbsError: 9.46924e+15\n", - " Region: \"zone_1\"\tRelError: 3.60591e+00\tAbsError: 4.34059e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.60591e+00\tAbsError: 4.34059e-02\n", - " Region: \"zone_3\"\tRelError: 1.75530e+00\tAbsError: 9.46924e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.13131e-01\tAbsError: 5.54964e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.13117e-01\tAbsError: 3.91961e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29049e-01\tAbsError: 4.34059e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.56244e+00\tAbsError: 8.45570e+15\n", - " Region: \"zone_1\"\tRelError: 3.85573e+00\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.85573e+00\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.70670e+00\tAbsError: 8.45570e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94571e-01\tAbsError: 4.92914e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94557e-01\tAbsError: 3.52655e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17574e-01\tAbsError: 4.09542e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 4.57466e+00\tAbsError: 9.26788e+15\n", - " Region: \"zone_1\"\tRelError: 2.82864e+00\tAbsError: 4.29338e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.82864e+00\tAbsError: 4.29338e-02\n", - " Region: \"zone_3\"\tRelError: 1.74602e+00\tAbsError: 9.26788e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09693e-01\tAbsError: 5.42632e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.09679e-01\tAbsError: 3.84156e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.26649e-01\tAbsError: 4.29338e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.02844e+01\tAbsError: 1.04643e+16\n", - " Region: \"zone_1\"\tRelError: 1.84861e+01\tAbsError: 4.56455e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.84861e+01\tAbsError: 4.56455e-02\n", - " Region: \"zone_3\"\tRelError: 1.79828e+00\tAbsError: 1.04643e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.28615e-01\tAbsError: 6.15809e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.28601e-01\tAbsError: 4.30618e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41062e-01\tAbsError: 4.56455e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.89083e+00\tAbsError: 4.70583e+14\n", - " Region: \"zone_1\"\tRelError: 2.07990e-01\tAbsError: 3.52793e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.07990e-01\tAbsError: 3.52793e-02\n", - " Region: \"zone_3\"\tRelError: 1.68284e+00\tAbsError: 4.70583e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.41003e-01\tAbsError: 3.14025e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.36896e-01\tAbsError: 1.56557e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04944e-01\tAbsError: 3.52793e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.75354e+00\tAbsError: 4.15023e+14\n", - " Region: \"zone_1\"\tRelError: 1.11621e-01\tAbsError: 3.36589e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11621e-01\tAbsError: 3.36589e-02\n", - " Region: \"zone_3\"\tRelError: 1.64192e+00\tAbsError: 4.15023e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.24008e-01\tAbsError: 2.68102e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.20579e-01\tAbsError: 1.46921e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.73304e-02\tAbsError: 3.36589e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.67739e+00\tAbsError: 3.26551e+14\n", - " Region: \"zone_1\"\tRelError: 1.13651e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13651e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.56374e+00\tAbsError: 3.26551e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91179e-01\tAbsError: 1.98410e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.87607e-01\tAbsError: 1.28141e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.49517e-02\tAbsError: 3.07632e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.73313e+00\tAbsError: 3.96589e+14\n", - " Region: \"zone_1\"\tRelError: 1.05624e-01\tAbsError: 3.31000e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.05624e-01\tAbsError: 3.31000e-02\n", - " Region: \"zone_3\"\tRelError: 1.62751e+00\tAbsError: 3.96589e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.17540e-01\tAbsError: 2.53211e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.15147e-01\tAbsError: 1.43378e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.48212e-02\tAbsError: 3.31000e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.03555e+00\tAbsError: 5.15225e+14\n", - " Region: \"zone_1\"\tRelError: 3.28232e-01\tAbsError: 3.63154e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.28232e-01\tAbsError: 3.63154e-02\n", - " Region: \"zone_3\"\tRelError: 1.70731e+00\tAbsError: 5.15225e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.51762e-01\tAbsError: 3.53233e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.46051e-01\tAbsError: 1.61993e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09502e-01\tAbsError: 3.63154e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.37866e+00\tAbsError: 9.07304e+13\n", - " Region: \"zone_1\"\tRelError: 8.45133e-02\tAbsError: 2.58376e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.45133e-02\tAbsError: 2.58376e-02\n", - " Region: \"zone_3\"\tRelError: 1.29414e+00\tAbsError: 9.07304e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.01230e-01\tAbsError: 6.48171e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.08400e-01\tAbsError: 2.59132e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.45133e-02\tAbsError: 2.58376e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.13583e+00\tAbsError: 3.35166e+13\n", - " Region: \"zone_1\"\tRelError: 6.49986e-02\tAbsError: 2.58787e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.49986e-02\tAbsError: 2.58787e-02\n", - " Region: \"zone_3\"\tRelError: 1.07083e+00\tAbsError: 3.35166e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14794e-01\tAbsError: 2.31889e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.90894e-01\tAbsError: 1.03277e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.51440e-02\tAbsError: 2.58923e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.29377e+00\tAbsError: 6.84080e+13\n", - " Region: \"zone_1\"\tRelError: 7.72791e-02\tAbsError: 2.58679e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.72791e-02\tAbsError: 2.58679e-02\n", - " Region: \"zone_3\"\tRelError: 1.21649e+00\tAbsError: 6.84080e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.71768e-01\tAbsError: 5.01523e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.67427e-01\tAbsError: 1.82557e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.72992e-02\tAbsError: 2.58679e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.43276e+00\tAbsError: 1.07866e+14\n", - " Region: \"zone_1\"\tRelError: 8.84483e-02\tAbsError: 2.55894e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.84483e-02\tAbsError: 2.55894e-02\n", - " Region: \"zone_3\"\tRelError: 1.34431e+00\tAbsError: 1.07866e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.19179e-01\tAbsError: 7.49207e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.35012e-01\tAbsError: 3.29455e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.01174e-02\tAbsError: 2.58079e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 6.27863e-01\tAbsError: 1.70405e+13\n", - " Region: \"zone_1\"\tRelError: 4.19952e-02\tAbsError: 1.57805e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.19952e-02\tAbsError: 1.57805e-02\n", - " Region: \"zone_3\"\tRelError: 5.85867e-01\tAbsError: 1.70405e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.73355e-01\tAbsError: 8.63901e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.70241e-01\tAbsError: 8.40152e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.22716e-02\tAbsError: 1.57805e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.26176e+00\tAbsError: 6.17820e+13\n", - " Region: \"zone_1\"\tRelError: 7.36238e-02\tAbsError: 2.56439e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.36238e-02\tAbsError: 2.56439e-02\n", - " Region: \"zone_3\"\tRelError: 1.18814e+00\tAbsError: 6.17820e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.61240e-01\tAbsError: 4.55005e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.51872e-01\tAbsError: 1.62815e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.50269e-02\tAbsError: 2.58894e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.97006e-01\tAbsError: 3.97798e+12\n", - " Region: \"zone_1\"\tRelError: 2.05644e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.05644e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.76441e-01\tAbsError: 3.97798e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88505e-01\tAbsError: 1.01871e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.71832e-02\tAbsError: 2.95927e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.07533e-02\tAbsError: 9.16534e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.23128e-01\tAbsError: 9.62684e+12\n", - " Region: \"zone_1\"\tRelError: 3.26236e-02\tAbsError: 1.31065e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.26236e-02\tAbsError: 1.31065e-02\n", - " Region: \"zone_3\"\tRelError: 4.90504e-01\tAbsError: 9.62684e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.30875e-01\tAbsError: 4.28253e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.26769e-01\tAbsError: 5.34431e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.28603e-02\tAbsError: 1.31065e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 7.00731e-01\tAbsError: 2.44819e+13\n", - " Region: \"zone_1\"\tRelError: 4.92915e-02\tAbsError: 1.76835e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.92915e-02\tAbsError: 1.76835e-02\n", - " Region: \"zone_3\"\tRelError: 6.51440e-01\tAbsError: 2.44819e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.00079e-01\tAbsError: 1.28123e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.01755e-01\tAbsError: 1.16695e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.96058e-02\tAbsError: 1.76835e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.89862e-01\tAbsError: 7.99664e+12\n", - " Region: \"zone_1\"\tRelError: 2.98842e-02\tAbsError: 1.22654e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.98842e-02\tAbsError: 1.22654e-02\n", - " Region: \"zone_3\"\tRelError: 4.59978e-01\tAbsError: 7.99664e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.16917e-01\tAbsError: 3.30963e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.12949e-01\tAbsError: 4.68701e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.01113e-02\tAbsError: 1.22654e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.61764e-01\tAbsError: 1.88685e+12\n", - " Region: \"zone_1\"\tRelError: 8.28721e-05\tAbsError: 8.34626e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.28721e-05\tAbsError: 8.34626e-06\n", - " Region: \"zone_3\"\tRelError: 1.61681e-01\tAbsError: 1.88685e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.59331e-01\tAbsError: 9.23461e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.31979e-03\tAbsError: 9.63390e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.04564e-05\tAbsError: 8.70001e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.28686e-01\tAbsError: 7.78584e+11\n", - " Region: \"zone_1\"\tRelError: 8.41818e-05\tAbsError: 5.98192e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.41818e-05\tAbsError: 5.98192e-06\n", - " Region: \"zone_3\"\tRelError: 1.28601e-01\tAbsError: 7.78584e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27790e-01\tAbsError: 3.25797e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.90479e-04\tAbsError: 4.52787e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.13119e-05\tAbsError: 6.66099e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.75905e-02\tAbsError: 6.14178e+11\n", - " Region: \"zone_1\"\tRelError: 1.87871e-04\tAbsError: 5.35919e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87871e-04\tAbsError: 5.35919e-06\n", - " Region: \"zone_3\"\tRelError: 8.74026e-02\tAbsError: 6.14178e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.70791e-02\tAbsError: 2.57149e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.08574e-04\tAbsError: 3.57029e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49985e-05\tAbsError: 5.65537e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.86955e-01\tAbsError: 3.78131e+12\n", - " Region: \"zone_1\"\tRelError: 1.86505e-04\tAbsError: 1.66794e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86505e-04\tAbsError: 1.66794e-05\n", - " Region: \"zone_3\"\tRelError: 1.86768e-01\tAbsError: 3.78131e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.82184e-01\tAbsError: 1.93089e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.52284e-03\tAbsError: 1.85042e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 6.18724e-05\tAbsError: 1.90993e-05\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.19535e-01\tAbsError: 7.67511e+11\n", - " Region: \"zone_1\"\tRelError: 1.02132e-04\tAbsError: 6.40339e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02132e-04\tAbsError: 6.40339e-06\n", - " Region: \"zone_3\"\tRelError: 1.19432e-01\tAbsError: 7.67511e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18713e-01\tAbsError: 3.47334e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.98127e-04\tAbsError: 4.20177e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.17746e-05\tAbsError: 7.06173e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.50521e-05\tAbsError: 3.76327e+08\n", - " Region: \"zone_1\"\tRelError: 3.48964e-08\tAbsError: 3.16416e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.48964e-08\tAbsError: 3.16416e-09\n", - " Region: \"zone_3\"\tRelError: 3.50172e-05\tAbsError: 3.76327e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.44276e-05\tAbsError: 2.07077e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.78619e-07\tAbsError: 1.69251e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10178e-08\tAbsError: 3.56939e-09\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:49\u001b[0m.\u001b[1;36m790\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.58\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.49501e-05\tAbsError: 5.71953e+07\n", - " Region: \"zone_1\"\tRelError: 5.68261e-09\tAbsError: 4.84224e-10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.68261e-09\tAbsError: 4.84224e-10\n", - " Region: \"zone_3\"\tRelError: 1.49444e-05\tAbsError: 5.71953e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.48629e-05\tAbsError: 3.20709e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.97586e-08\tAbsError: 2.51244e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72322e-09\tAbsError: 5.34422e-10\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.95471e-06\tAbsError: 1.37438e+07\n", - " Region: \"zone_1\"\tRelError: 1.96050e-09\tAbsError: 6.30623e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.96050e-09\tAbsError: 6.30623e-11\n", - " Region: \"zone_3\"\tRelError: 9.95275e-06\tAbsError: 1.37438e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.91827e-06\tAbsError: 3.21260e+06\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.43047e-08\tAbsError: 1.05312e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.78389e-10\tAbsError: 6.72817e-11\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:49\u001b[0m.\u001b[1;36m913\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: 0.55\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:49\u001b[0m.\u001b[1;36m961\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: 0.5\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 5\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 7.08853e-05\tAbsError: 1.42552e+09\n", - " Region: \"zone_1\"\tRelError: 4.19440e-07\tAbsError: 1.37162e-08\n", - " Equation: \"PotentialEquation\"\tRelError: 4.19440e-07\tAbsError: 1.37162e-08\n", - " Region: \"zone_3\"\tRelError: 7.04658e-05\tAbsError: 1.42552e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.80448e-05\tAbsError: 7.64375e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.36999e-06\tAbsError: 6.61144e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 5.10689e-08\tAbsError: 1.57552e-08\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:50\u001b[0m.\u001b[1;36m078\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.6\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Iteration: 5\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 1.39115e-05\tAbsError: 3.56195e+07\n", - " Region: \"zone_1\"\tRelError: 4.59619e-09\tAbsError: 3.23674e-10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.59619e-09\tAbsError: 3.23674e-10\n", - " Region: \"zone_3\"\tRelError: 1.39069e-05\tAbsError: 3.56195e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38108e-05\tAbsError: 1.93540e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.49639e-08\tAbsError: 1.62655e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15594e-09\tAbsError: 3.70759e-10\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:50\u001b[0m.\u001b[1;36m181\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: 0.54\u001b[0m \n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.63822e+02\tAbsError: 9.99860e+15\n", - " Region: \"zone_1\"\tRelError: 1.62022e+02\tAbsError: 4.47728e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.62022e+02\tAbsError: 4.47728e-02\n", - " Region: \"zone_3\"\tRelError: 1.80004e+00\tAbsError: 9.99860e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.22736e-01\tAbsError: 5.99873e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.22714e-01\tAbsError: 3.99987e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.54591e-01\tAbsError: 4.47728e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.18638e+01\tAbsError: 9.38144e+15\n", - " Region: \"zone_1\"\tRelError: 3.00933e+01\tAbsError: 4.34059e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.00933e+01\tAbsError: 4.34059e-02\n", - " Region: \"zone_3\"\tRelError: 1.77059e+00\tAbsError: 9.38144e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.13128e-01\tAbsError: 5.61995e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.13108e-01\tAbsError: 3.76149e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.44356e-01\tAbsError: 4.34059e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.87556e+01\tAbsError: 8.34767e+15\n", - " Region: \"zone_1\"\tRelError: 6.70313e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.70313e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.72426e+00\tAbsError: 8.34767e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94570e-01\tAbsError: 4.96926e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94551e-01\tAbsError: 3.37841e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35138e-01\tAbsError: 4.09542e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.68568e+01\tAbsError: 1.04087e+16\n", - " Region: \"zone_1\"\tRelError: 1.50335e+01\tAbsError: 4.56455e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.50335e+01\tAbsError: 4.56455e-02\n", - " Region: \"zone_3\"\tRelError: 1.82326e+00\tAbsError: 1.04087e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.28610e-01\tAbsError: 6.24214e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.28586e-01\tAbsError: 4.16658e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66069e-01\tAbsError: 4.56455e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.50411e+01\tAbsError: 9.17516e+15\n", - " Region: \"zone_1\"\tRelError: 2.32813e+01\tAbsError: 4.29338e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.32813e+01\tAbsError: 4.29338e-02\n", - " Region: \"zone_3\"\tRelError: 1.75981e+00\tAbsError: 9.17516e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09690e-01\tAbsError: 5.49119e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.09670e-01\tAbsError: 3.68397e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40449e-01\tAbsError: 4.29338e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.96710e+00\tAbsError: 7.06642e+14\n", - " Region: \"zone_1\"\tRelError: 2.55041e-01\tAbsError: 3.52793e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.55041e-01\tAbsError: 3.52793e-02\n", - " Region: \"zone_3\"\tRelError: 1.71206e+00\tAbsError: 7.06642e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.41689e-01\tAbsError: 4.35939e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.35147e-01\tAbsError: 2.70703e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35224e-01\tAbsError: 3.52793e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.22954e+00\tAbsError: 5.42067e+14\n", - " Region: \"zone_1\"\tRelError: 5.61058e-01\tAbsError: 3.36589e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.61058e-01\tAbsError: 3.36589e-02\n", - " Region: \"zone_3\"\tRelError: 1.66849e+00\tAbsError: 5.42067e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.24386e-01\tAbsError: 3.71154e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.20213e-01\tAbsError: 1.70913e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.23887e-01\tAbsError: 3.36589e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.18244e+00\tAbsError: 3.45808e+14\n", - " Region: \"zone_1\"\tRelError: 5.95786e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95786e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.58666e+00\tAbsError: 3.45808e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91491e-01\tAbsError: 2.56450e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.87672e-01\tAbsError: 8.93573e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07491e-01\tAbsError: 3.07632e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.94995e+00\tAbsError: 8.76084e+14\n", - " Region: \"zone_1\"\tRelError: 2.06767e-01\tAbsError: 3.63154e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06767e-01\tAbsError: 3.63154e-02\n", - " Region: \"zone_3\"\tRelError: 1.74318e+00\tAbsError: 8.76084e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.52450e-01\tAbsError: 4.97626e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.43319e-01\tAbsError: 3.78459e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.47410e-01\tAbsError: 3.63154e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.82843e+00\tAbsError: 4.96905e+14\n", - " Region: \"zone_1\"\tRelError: 1.74894e-01\tAbsError: 3.31000e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74894e-01\tAbsError: 3.31000e-02\n", - " Region: \"zone_3\"\tRelError: 1.65354e+00\tAbsError: 4.96905e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.18406e-01\tAbsError: 3.48442e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.14285e-01\tAbsError: 1.48463e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20848e-01\tAbsError: 3.31000e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.65271e+00\tAbsError: 2.27191e+14\n", - " Region: \"zone_1\"\tRelError: 3.95002e-01\tAbsError: 2.57709e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.95002e-01\tAbsError: 2.57709e-02\n", - " Region: \"zone_3\"\tRelError: 1.25770e+00\tAbsError: 2.27191e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.72445e-01\tAbsError: 1.34608e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.75411e-01\tAbsError: 9.25828e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09847e-01\tAbsError: 2.58536e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.10064e+00\tAbsError: 4.54473e+14\n", - " Region: \"zone_1\"\tRelError: 7.63192e-01\tAbsError: 2.58969e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.63192e-01\tAbsError: 2.58969e-02\n", - " Region: \"zone_3\"\tRelError: 1.33745e+00\tAbsError: 4.54473e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.02310e-01\tAbsError: 2.67136e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.12917e-01\tAbsError: 1.87336e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.22224e-01\tAbsError: 2.58495e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.19247e+00\tAbsError: 8.54805e+13\n", - " Region: \"zone_1\"\tRelError: 9.12229e-02\tAbsError: 2.58978e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.12229e-02\tAbsError: 2.58978e-02\n", - " Region: \"zone_3\"\tRelError: 1.10125e+00\tAbsError: 8.54805e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14822e-01\tAbsError: 5.48784e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.98551e-01\tAbsError: 3.06021e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.78742e-02\tAbsError: 2.58989e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.74358e+00\tAbsError: 6.95805e+14\n", - " Region: \"zone_1\"\tRelError: 3.59029e-01\tAbsError: 2.58870e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.59029e-01\tAbsError: 2.58870e-02\n", - " Region: \"zone_3\"\tRelError: 1.38455e+00\tAbsError: 6.95805e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.20623e-01\tAbsError: 3.94554e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.32523e-01\tAbsError: 3.01251e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31406e-01\tAbsError: 2.58603e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.37737e+00\tAbsError: 1.78105e+14\n", - " Region: \"zone_1\"\tRelError: 1.48634e-01\tAbsError: 2.57619e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.48634e-01\tAbsError: 2.57619e-02\n", - " Region: \"zone_3\"\tRelError: 1.22873e+00\tAbsError: 1.78105e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.61703e-01\tAbsError: 1.04558e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.61460e-01\tAbsError: 7.35471e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.05569e-01\tAbsError: 2.58968e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 6.80745e-01\tAbsError: 1.10410e+14\n", - " Region: \"zone_1\"\tRelError: 1.47166e-01\tAbsError: 1.31065e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.47166e-01\tAbsError: 1.31065e-02\n", - " Region: \"zone_3\"\tRelError: 5.33579e-01\tAbsError: 1.10410e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.30651e-01\tAbsError: 5.09385e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.57058e-01\tAbsError: 5.94711e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.58703e-02\tAbsError: 1.31065e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 8.32791e-01\tAbsError: 2.51857e+14\n", - " Region: \"zone_1\"\tRelError: 1.94730e-01\tAbsError: 1.57805e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.94730e-01\tAbsError: 1.57805e-02\n", - " Region: \"zone_3\"\tRelError: 6.38061e-01\tAbsError: 2.51857e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.74054e-01\tAbsError: 1.12814e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.03778e-01\tAbsError: 1.39043e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.02300e-02\tAbsError: 1.57805e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 7.88147e-01\tAbsError: 4.23450e+14\n", - " Region: \"zone_1\"\tRelError: 8.68826e-02\tAbsError: 1.76835e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.68826e-02\tAbsError: 1.76835e-02\n", - " Region: \"zone_3\"\tRelError: 7.01264e-01\tAbsError: 4.23450e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.01742e-01\tAbsError: 1.87764e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.28166e-01\tAbsError: 2.35687e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.13557e-02\tAbsError: 1.76835e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.52183e-01\tAbsError: 2.83225e+13\n", - " Region: \"zone_1\"\tRelError: 5.95279e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95279e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.92655e-01\tAbsError: 2.83225e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.85164e-01\tAbsError: 1.34603e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.99920e-02\tAbsError: 1.48622e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.74993e-02\tAbsError: 9.16534e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.72011e-01\tAbsError: 8.49829e+13\n", - " Region: \"zone_1\"\tRelError: 7.44559e-02\tAbsError: 1.22654e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.44559e-02\tAbsError: 1.22654e-02\n", - " Region: \"zone_3\"\tRelError: 4.97555e-01\tAbsError: 8.49829e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.15246e-01\tAbsError: 4.00907e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.40638e-01\tAbsError: 4.48922e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.16711e-02\tAbsError: 1.22654e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.57506e-01\tAbsError: 2.43354e+13\n", - " Region: \"zone_1\"\tRelError: 1.98853e-02\tAbsError: 1.46090e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.98853e-02\tAbsError: 1.46090e-04\n", - " Region: \"zone_3\"\tRelError: 1.37621e-01\tAbsError: 2.43354e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.25248e-01\tAbsError: 1.21923e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.16835e-02\tAbsError: 1.21432e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.88777e-04\tAbsError: 1.56043e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.32076e-01\tAbsError: 6.53765e+13\n", - " Region: \"zone_1\"\tRelError: 4.91696e-02\tAbsError: 3.68622e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.91696e-02\tAbsError: 3.68622e-04\n", - " Region: \"zone_3\"\tRelError: 1.82906e-01\tAbsError: 6.53765e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53357e-01\tAbsError: 3.17111e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.76638e-02\tAbsError: 3.36654e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88533e-03\tAbsError: 3.90599e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.59308e-01\tAbsError: 1.15477e+14\n", - " Region: \"zone_1\"\tRelError: 3.78271e-02\tAbsError: 6.12666e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.78271e-02\tAbsError: 6.12666e-04\n", - " Region: \"zone_3\"\tRelError: 2.21481e-01\tAbsError: 1.15477e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.73784e-01\tAbsError: 5.52720e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.43391e-02\tAbsError: 6.02054e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.35832e-03\tAbsError: 6.56549e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.52644e-02\tAbsError: 2.55837e+12\n", - " Region: \"zone_1\"\tRelError: 7.16041e-03\tAbsError: 2.30338e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.16041e-03\tAbsError: 2.30338e-05\n", - " Region: \"zone_3\"\tRelError: 8.81040e-02\tAbsError: 2.55837e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.71797e-02\tAbsError: 1.35830e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.38768e-04\tAbsError: 1.20006e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.54583e-05\tAbsError: 2.40500e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.03413e-04\tAbsError: 7.94574e+10\n", - " Region: \"zone_1\"\tRelError: 6.70321e-05\tAbsError: 5.82251e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 6.70321e-05\tAbsError: 5.82251e-07\n", - " Region: \"zone_3\"\tRelError: 4.36381e-04\tAbsError: 7.94574e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.00904e-04\tAbsError: 5.18181e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.27552e-05\tAbsError: 2.76393e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.72259e-06\tAbsError: 6.15178e-07\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.54505e-03\tAbsError: 5.10916e+11\n", - " Region: \"zone_1\"\tRelError: 4.30658e-04\tAbsError: 3.74485e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.30658e-04\tAbsError: 3.74485e-06\n", - " Region: \"zone_3\"\tRelError: 1.11439e-03\tAbsError: 5.10916e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.36752e-04\tAbsError: 3.20803e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.58614e-04\tAbsError: 1.90113e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.90289e-05\tAbsError: 3.92494e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.35620e-01\tAbsError: 1.72712e+13\n", - " Region: \"zone_1\"\tRelError: 9.74579e-03\tAbsError: 1.05058e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.74579e-03\tAbsError: 1.05058e-04\n", - " Region: \"zone_3\"\tRelError: 1.25874e-01\tAbsError: 1.72712e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.17031e-01\tAbsError: 8.70382e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.35880e-03\tAbsError: 8.56740e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.84384e-04\tAbsError: 1.13804e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.58292e-05\tAbsError: 4.59514e+08\n", - " Region: \"zone_1\"\tRelError: 9.81723e-07\tAbsError: 3.18909e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.81723e-07\tAbsError: 3.18909e-09\n", - " Region: \"zone_3\"\tRelError: 3.48474e-05\tAbsError: 4.59514e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.45053e-05\tAbsError: 3.33895e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.30263e-07\tAbsError: 1.25619e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18628e-08\tAbsError: 3.31754e-09\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.52128e-09\tAbsError: 1.00152e+06\n", - " Region: \"zone_1\"\tRelError: 5.76028e-10\tAbsError: 7.90239e-12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.76028e-10\tAbsError: 7.90239e-12\n", - " Region: \"zone_3\"\tRelError: 5.94525e-09\tAbsError: 1.00152e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.51837e-09\tAbsError: 7.00920e+05\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.93070e-10\tAbsError: 3.00596e+05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.38074e-11\tAbsError: 8.27676e-12\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.27011e-03\tAbsError: 1.28677e+12\n", - " Region: \"zone_1\"\tRelError: 5.62187e-04\tAbsError: 1.00891e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.62187e-04\tAbsError: 1.00891e-05\n", - " Region: \"zone_3\"\tRelError: 1.70792e-03\tAbsError: 1.28677e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34924e-03\tAbsError: 7.92563e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.04077e-04\tAbsError: 4.94210e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.46001e-05\tAbsError: 1.06469e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.16833e-07\tAbsError: 3.97603e+07\n", - " Region: \"zone_1\"\tRelError: 2.48086e-08\tAbsError: 2.94098e-10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.48086e-08\tAbsError: 2.94098e-10\n", - " Region: \"zone_3\"\tRelError: 9.20242e-08\tAbsError: 3.97603e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.92851e-08\tAbsError: 2.72716e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.13386e-08\tAbsError: 1.24887e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40050e-09\tAbsError: 3.06568e-10\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.15889e-04\tAbsError: 3.71681e+10\n", - " Region: \"zone_1\"\tRelError: 2.41579e-05\tAbsError: 2.90587e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.41579e-05\tAbsError: 2.90587e-07\n", - " Region: \"zone_3\"\tRelError: 2.91731e-04\tAbsError: 3.71681e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.74902e-04\tAbsError: 2.46870e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.54957e-05\tAbsError: 1.24811e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33364e-06\tAbsError: 3.11133e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:52\u001b[0m.\u001b[1;36m657\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.7\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.90842e-07\tAbsError: 2.29484e+08\n", - " Region: \"zone_1\"\tRelError: 8.07789e-08\tAbsError: 1.50187e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 8.07789e-08\tAbsError: 1.50187e-09\n", - " Region: \"zone_3\"\tRelError: 3.10063e-07\tAbsError: 2.29484e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52989e-07\tAbsError: 1.55818e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.89546e-08\tAbsError: 7.36663e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 8.11933e-09\tAbsError: 1.58002e-09\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.90380e-09\tAbsError: 2.12026e+05\n", - " Region: \"zone_1\"\tRelError: 1.00300e-10\tAbsError: 1.55136e-12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00300e-10\tAbsError: 1.55136e-12\n", - " Region: \"zone_3\"\tRelError: 1.80350e-09\tAbsError: 2.12026e+05\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.71088e-09\tAbsError: 1.50477e+05\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.62945e-11\tAbsError: 6.15487e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.32889e-12\tAbsError: 1.60667e-12\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:52\u001b[0m.\u001b[1;36m992\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: 0.65\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:53\u001b[0m.\u001b[1;36m186\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.97666e+00\tAbsError: 1.01000e+16\n", - " Region: \"zone_1\"\tRelError: 6.10143e+00\tAbsError: 4.47728e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.10143e+00\tAbsError: 4.47728e-02\n", - " Region: \"zone_3\"\tRelError: 1.87523e+00\tAbsError: 1.01000e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.22692e-01\tAbsError: 5.64880e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.22609e-01\tAbsError: 4.45116e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29929e-01\tAbsError: 4.47728e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:53\u001b[0m.\u001b[1;36m220\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.75 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:53\u001b[0m.\u001b[1;36m249\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.04122e+01\tAbsError: 9.15719e+15\n", - " Region: \"zone_1\"\tRelError: 5.85997e+01\tAbsError: 4.29338e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.85997e+01\tAbsError: 4.29338e-02\n", - " Region: \"zone_3\"\tRelError: 1.81249e+00\tAbsError: 9.15719e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09671e-01\tAbsError: 5.35064e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.09616e-01\tAbsError: 3.80655e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.93207e-01\tAbsError: 4.29338e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.14611e+00\tAbsError: 5.45375e+15\n", - " Region: \"zone_1\"\tRelError: 3.96880e-01\tAbsError: 3.52793e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.96880e-01\tAbsError: 3.52793e-02\n", - " Region: \"zone_3\"\tRelError: 1.74923e+00\tAbsError: 5.45375e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.40967e-01\tAbsError: 2.70333e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.16719e-01\tAbsError: 2.75043e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.91546e-01\tAbsError: 3.52793e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:53\u001b[0m.\u001b[1;36m537\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:53\u001b[0m.\u001b[1;36m586\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.8 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:53\u001b[0m.\u001b[1;36m624\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.17038e+03\tAbsError: 3.32754e+16\n", - " Region: \"zone_1\"\tRelError: 8.06380e+02\tAbsError: 7.25190e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.06380e+02\tAbsError: 7.25190e-02\n", - " Region: \"zone_3\"\tRelError: 1.36400e+03\tAbsError: 3.32754e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.34381e+02\tAbsError: 1.98676e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.29412e+02\tAbsError: 1.34077e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03625e-01\tAbsError: 7.25190e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:53\u001b[0m.\u001b[1;36m739\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:53\u001b[0m.\u001b[1;36m768\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.85 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:53\u001b[0m.\u001b[1;36m796\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: 0.1\u001b[0m \n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.66737e+00\tAbsError: 2.26108e+15\n", - " Region: \"zone_1\"\tRelError: 9.89112e-01\tAbsError: 3.31000e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.89112e-01\tAbsError: 3.31000e-02\n", - " Region: \"zone_3\"\tRelError: 1.67826e+00\tAbsError: 2.26108e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.18687e-01\tAbsError: 1.24573e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.03123e-01\tAbsError: 1.01535e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.56453e-01\tAbsError: 3.31000e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.52675e+00\tAbsError: 5.28945e+15\n", - " Region: \"zone_1\"\tRelError: 1.72040e-01\tAbsError: 2.58808e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72040e-01\tAbsError: 2.58808e-02\n", - " Region: \"zone_3\"\tRelError: 1.35471e+00\tAbsError: 5.28945e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.06193e-01\tAbsError: 2.41324e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.69802e-01\tAbsError: 2.87620e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.78720e-01\tAbsError: 2.55235e-02\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.24679e+02\tAbsError: 4.01088e+15\n", - " Region: \"zone_1\"\tRelError: 3.95733e+00\tAbsError: 6.76846e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.95733e+00\tAbsError: 6.76846e-02\n", - " Region: \"zone_3\"\tRelError: 3.20722e+02\tAbsError: 4.01088e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.70129e+01\tAbsError: 2.67793e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.93558e+02\tAbsError: 1.33295e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51138e-01\tAbsError: 6.76846e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.37416e+02\tAbsError: 3.75122e+16\n", - " Region: \"zone_1\"\tRelError: 1.70857e+02\tAbsError: 7.53940e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.70857e+02\tAbsError: 7.53940e-02\n", - " Region: \"zone_3\"\tRelError: 6.65589e+01\tAbsError: 3.75122e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05162e+01\tAbsError: 2.17236e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.58128e+01\tAbsError: 1.57886e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29865e-01\tAbsError: 7.53940e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.57562e+00\tAbsError: 1.85067e+15\n", - " Region: \"zone_1\"\tRelError: 3.48899e-01\tAbsError: 2.58724e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.48899e-01\tAbsError: 2.58724e-02\n", - " Region: \"zone_3\"\tRelError: 1.22672e+00\tAbsError: 1.85067e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.65203e-01\tAbsError: 7.94760e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.14656e-01\tAbsError: 1.05591e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46858e-01\tAbsError: 2.56646e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 8.09161e-01\tAbsError: 2.63764e+15\n", - " Region: \"zone_1\"\tRelError: 8.96528e-02\tAbsError: 1.57805e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.96528e-02\tAbsError: 1.57805e-02\n", - " Region: \"zone_3\"\tRelError: 7.19508e-01\tAbsError: 2.63764e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.72631e-01\tAbsError: 1.36770e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.67164e-01\tAbsError: 1.26994e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.97131e-02\tAbsError: 1.57805e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.25791e+02\tAbsError: 4.25995e+16\n", - " Region: \"zone_1\"\tRelError: 4.60002e+01\tAbsError: 7.79815e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.60002e+01\tAbsError: 7.79815e-02\n", - " Region: \"zone_3\"\tRelError: 2.79791e+02\tAbsError: 4.25995e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.31837e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.70530e+02\tAbsError: 1.94157e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.60749e-01\tAbsError: 7.79815e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.71515e+02\tAbsError: 8.34333e+14\n", - " Region: \"zone_1\"\tRelError: 6.48480e-01\tAbsError: 6.21778e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.48480e-01\tAbsError: 6.21778e-02\n", - " Region: \"zone_3\"\tRelError: 2.70867e+02\tAbsError: 8.34333e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.08231e+01\tAbsError: 6.11932e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.49923e+02\tAbsError: 2.22401e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20191e-01\tAbsError: 6.21778e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.15214e-01\tAbsError: 6.36762e+14\n", - " Region: \"zone_1\"\tRelError: 2.12397e-02\tAbsError: 7.08897e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.12397e-02\tAbsError: 7.08897e-04\n", - " Region: \"zone_3\"\tRelError: 1.93974e-01\tAbsError: 6.36762e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43220e-01\tAbsError: 3.40835e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.55466e-02\tAbsError: 2.95927e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.20806e-03\tAbsError: 7.36504e-04\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 6.62870e-01\tAbsError: 8.58491e+14\n", - " Region: \"zone_1\"\tRelError: 9.69362e-02\tAbsError: 1.22653e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.69362e-02\tAbsError: 1.22653e-02\n", - " Region: \"zone_3\"\tRelError: 5.65934e-01\tAbsError: 8.58491e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14889e-01\tAbsError: 4.34973e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.96689e-01\tAbsError: 4.23518e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.43556e-02\tAbsError: 1.22654e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.20129e+02\tAbsError: 4.00033e+15\n", - " Region: \"zone_1\"\tRelError: 6.98278e+00\tAbsError: 7.09268e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.98278e+00\tAbsError: 7.09268e-02\n", - " Region: \"zone_3\"\tRelError: 1.13146e+02\tAbsError: 4.00033e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.89107e+01\tAbsError: 2.82869e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.40617e+01\tAbsError: 1.17164e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.73521e-01\tAbsError: 7.09268e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 5.64331e+02\tAbsError: 6.50244e+15\n", - " Region: \"zone_1\"\tRelError: 5.93412e+00\tAbsError: 7.38245e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.93412e+00\tAbsError: 7.38245e-02\n", - " Region: \"zone_3\"\tRelError: 5.58397e+02\tAbsError: 6.50244e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33785e+01\tAbsError: 3.20431e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.44821e+02\tAbsError: 3.29813e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.97731e-01\tAbsError: 7.38245e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.84400e-01\tAbsError: 1.84489e+14\n", - " Region: \"zone_1\"\tRelError: 5.08949e-02\tAbsError: 4.34577e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.08949e-02\tAbsError: 4.34577e-04\n", - " Region: \"zone_3\"\tRelError: 1.33505e-01\tAbsError: 1.84489e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07596e-01\tAbsError: 1.04840e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.33209e-02\tAbsError: 7.96491e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.58735e-03\tAbsError: 4.38742e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.43586e-03\tAbsError: 5.13181e+12\n", - " Region: \"zone_1\"\tRelError: 3.56695e-04\tAbsError: 1.12706e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.56695e-04\tAbsError: 1.12706e-05\n", - " Region: \"zone_3\"\tRelError: 1.07916e-03\tAbsError: 5.13181e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.13872e-04\tAbsError: 3.41370e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.83111e-04\tAbsError: 1.71811e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.21790e-05\tAbsError: 1.15889e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 4.63879e+02\tAbsError: 1.84326e+15\n", - " Region: \"zone_1\"\tRelError: 3.13835e+00\tAbsError: 6.58786e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.13835e+00\tAbsError: 6.58786e-02\n", - " Region: \"zone_3\"\tRelError: 4.60741e+02\tAbsError: 1.84326e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.71445e+00\tAbsError: 9.31874e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.50886e+02\tAbsError: 9.11387e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40118e-01\tAbsError: 6.58786e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.44475e+03\tAbsError: 2.23451e+14\n", - " Region: \"zone_1\"\tRelError: 1.78721e-01\tAbsError: 5.58210e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.78721e-01\tAbsError: 5.58210e-02\n", - " Region: \"zone_3\"\tRelError: 1.44457e+03\tAbsError: 2.23451e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10094e+03\tAbsError: 1.56875e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.43535e+02\tAbsError: 6.65760e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.64317e-02\tAbsError: 5.58210e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 4.38653e+02\tAbsError: 5.85580e+15\n", - " Region: \"zone_1\"\tRelError: 8.57649e+00\tAbsError: 6.91598e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.57649e+00\tAbsError: 6.91598e-02\n", - " Region: \"zone_3\"\tRelError: 4.30076e+02\tAbsError: 5.85580e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.62250e+01\tAbsError: 2.43153e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.63689e+02\tAbsError: 3.42426e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.62308e-01\tAbsError: 6.91598e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.66432e-04\tAbsError: 7.61489e+11\n", - " Region: \"zone_1\"\tRelError: 4.42890e-04\tAbsError: 3.54702e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.42890e-04\tAbsError: 3.54702e-06\n", - " Region: \"zone_3\"\tRelError: 5.23542e-04\tAbsError: 7.61489e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.54885e-04\tAbsError: 5.60496e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.72654e-05\tAbsError: 2.00993e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.13918e-05\tAbsError: 3.60294e-06\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 9.86672e-08\tAbsError: 3.37805e+08\n", - " Region: \"zone_1\"\tRelError: 2.92240e-08\tAbsError: 9.88161e-10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.92240e-08\tAbsError: 9.88161e-10\n", - " Region: \"zone_3\"\tRelError: 6.94432e-08\tAbsError: 3.37805e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.06757e-08\tAbsError: 2.17314e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.15885e-08\tAbsError: 1.20491e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 7.17900e-09\tAbsError: 1.00963e-09\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 3.15655e+03\tAbsError: 4.54227e+13\n", - " Region: \"zone_1\"\tRelError: 7.59588e-02\tAbsError: 4.83791e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.59588e-02\tAbsError: 4.83791e-02\n", - " Region: \"zone_3\"\tRelError: 3.15648e+03\tAbsError: 4.54227e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.11021e+03\tAbsError: 3.33738e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.61933e+01\tAbsError: 1.20489e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.62264e-02\tAbsError: 4.83791e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 7.29918e+03\tAbsError: 4.20610e+14\n", - " Region: \"zone_1\"\tRelError: 4.04058e-01\tAbsError: 6.01028e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.04058e-01\tAbsError: 6.01028e-02\n", - " Region: \"zone_3\"\tRelError: 7.29878e+03\tAbsError: 4.20610e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.71144e+02\tAbsError: 2.66090e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.52752e+03\tAbsError: 1.54520e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11913e-01\tAbsError: 6.01028e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.21163e+03\tAbsError: 5.71211e+14\n", - " Region: \"zone_1\"\tRelError: 5.79636e-01\tAbsError: 6.38656e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.79636e-01\tAbsError: 6.38656e-02\n", - " Region: \"zone_3\"\tRelError: 2.21106e+03\tAbsError: 5.71211e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.77921e+02\tAbsError: 3.25592e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.83301e+03\tAbsError: 2.45619e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28645e-01\tAbsError: 6.38656e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.97260e-08\tAbsError: 1.61510e+07\n", - " Region: \"zone_1\"\tRelError: 9.39372e-09\tAbsError: 7.94516e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 9.39372e-09\tAbsError: 7.94516e-11\n", - " Region: \"zone_3\"\tRelError: 1.03323e-08\tAbsError: 1.61510e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.49613e-09\tAbsError: 1.01388e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.34196e-09\tAbsError: 6.01217e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.94202e-10\tAbsError: 8.30962e-11\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.35612e+03\tAbsError: 1.55095e+13\n", - " Region: \"zone_1\"\tRelError: 5.75455e-02\tAbsError: 3.95636e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.75455e-02\tAbsError: 3.95636e-02\n", - " Region: \"zone_3\"\tRelError: 6.35606e+03\tAbsError: 1.55095e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89427e+03\tAbsError: 6.28140e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.46173e+03\tAbsError: 9.22806e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.78836e-02\tAbsError: 3.95636e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.14832e+02\tAbsError: 1.37556e+14\n", - " Region: \"zone_1\"\tRelError: 1.13605e-01\tAbsError: 5.34033e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13605e-01\tAbsError: 5.34033e-02\n", - " Region: \"zone_3\"\tRelError: 7.14718e+02\tAbsError: 1.37556e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.40858e+02\tAbsError: 5.31618e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.73771e+02\tAbsError: 8.43944e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.91929e-02\tAbsError: 5.34033e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.74418e+01\tAbsError: 2.44384e+14\n", - " Region: \"zone_1\"\tRelError: 1.58166e-01\tAbsError: 5.77787e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.58166e-01\tAbsError: 5.77787e-02\n", - " Region: \"zone_3\"\tRelError: 7.72836e+01\tAbsError: 2.44384e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.22063e+01\tAbsError: 1.55967e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.49742e+01\tAbsError: 8.84166e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03068e-01\tAbsError: 5.77787e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.16646e+02\tAbsError: 4.64268e+12\n", - " Region: \"zone_1\"\tRelError: 4.14390e-02\tAbsError: 2.91301e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.14390e-02\tAbsError: 2.91301e-02\n", - " Region: \"zone_3\"\tRelError: 1.16605e+02\tAbsError: 4.64268e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.15564e+02\tAbsError: 2.67332e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.98998e-01\tAbsError: 1.96936e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.18180e-02\tAbsError: 2.91301e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:56\u001b[0m.\u001b[1;36m114\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:56\u001b[0m.\u001b[1;36m140\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.9 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:56\u001b[0m.\u001b[1;36m169\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.64511e+03\tAbsError: 6.98723e+13\n", - " Region: \"zone_1\"\tRelError: 8.18118e-02\tAbsError: 5.06818e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.18118e-02\tAbsError: 5.06818e-02\n", - " Region: \"zone_3\"\tRelError: 1.64503e+03\tAbsError: 6.98723e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84310e+02\tAbsError: 1.77441e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.46064e+03\tAbsError: 5.21282e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.20392e-02\tAbsError: 5.06818e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.69280e+03\tAbsError: 8.64639e+13\n", - " Region: \"zone_1\"\tRelError: 7.66306e-02\tAbsError: 4.55241e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.66306e-02\tAbsError: 4.55241e-02\n", - " Region: \"zone_3\"\tRelError: 1.69273e+03\tAbsError: 8.64639e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53627e+02\tAbsError: 4.60213e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.53903e+03\tAbsError: 4.04426e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.98236e-02\tAbsError: 4.55241e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:56\u001b[0m.\u001b[1;36m478\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.11219e+00\tAbsError: 1.21037e+12\n", - " Region: \"zone_1\"\tRelError: 3.15041e-02\tAbsError: 2.47247e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.15041e-02\tAbsError: 2.47247e-02\n", - " Region: \"zone_3\"\tRelError: 1.08069e+00\tAbsError: 1.21037e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99731e-01\tAbsError: 3.71567e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.89803e-02\tAbsError: 8.38801e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.19791e-02\tAbsError: 2.47248e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:56\u001b[0m.\u001b[1;36m504\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.95 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:56\u001b[0m.\u001b[1;36m527\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.13554e+02\tAbsError: 1.05627e+14\n", - " Region: \"zone_1\"\tRelError: 9.04876e-02\tAbsError: 4.22987e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.04876e-02\tAbsError: 4.22987e-02\n", - " Region: \"zone_3\"\tRelError: 2.13463e+02\tAbsError: 1.05627e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84186e+02\tAbsError: 6.63679e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.92139e+01\tAbsError: 3.92586e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.32116e-02\tAbsError: 4.22987e-02\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.20368e+02\tAbsError: 3.16867e+13\n", - " Region: \"zone_1\"\tRelError: 5.14732e-02\tAbsError: 3.61712e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.14732e-02\tAbsError: 3.61712e-02\n", - " Region: \"zone_3\"\tRelError: 6.20316e+02\tAbsError: 3.16867e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.09455e+02\tAbsError: 2.20751e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.08092e+01\tAbsError: 9.61157e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.17894e-02\tAbsError: 3.61713e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.67213e+02\tAbsError: 1.38177e+17\n", - " Region: \"zone_1\"\tRelError: 5.79299e+01\tAbsError: 8.24901e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.79299e+01\tAbsError: 8.24901e-02\n", - " Region: \"zone_3\"\tRelError: 2.09283e+02\tAbsError: 1.38177e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 7.25461e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.99891e+02\tAbsError: 6.56314e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.92743e-01\tAbsError: 8.24902e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.17367e+00\tAbsError: 1.24826e+12\n", - " Region: \"zone_1\"\tRelError: 6.08211e-04\tAbsError: 6.10243e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.08211e-04\tAbsError: 6.10243e-06\n", - " Region: \"zone_3\"\tRelError: 1.17306e+00\tAbsError: 1.24826e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.17019e+00\tAbsError: 3.41542e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.85589e-03\tAbsError: 9.06713e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07451e-05\tAbsError: 6.52377e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.41399e+00\tAbsError: 6.14949e+12\n", - " Region: \"zone_1\"\tRelError: 3.96641e-02\tAbsError: 2.58319e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.96641e-02\tAbsError: 2.58319e-02\n", - " Region: \"zone_3\"\tRelError: 3.37432e+00\tAbsError: 6.14949e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.95682e-01\tAbsError: 2.72768e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.33871e+00\tAbsError: 3.42181e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.99293e-02\tAbsError: 2.58939e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.31055e+02\tAbsError: 2.53177e+13\n", - " Region: \"zone_1\"\tRelError: 4.50617e-02\tAbsError: 3.23490e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.50617e-02\tAbsError: 3.23490e-02\n", - " Region: \"zone_3\"\tRelError: 3.31010e+02\tAbsError: 2.53177e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14071e+02\tAbsError: 1.67282e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.16893e+02\tAbsError: 8.58953e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.54021e-02\tAbsError: 3.23491e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.94925e+03\tAbsError: 5.70592e+16\n", - " Region: \"zone_1\"\tRelError: 1.68789e+02\tAbsError: 8.03338e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.68789e+02\tAbsError: 8.03338e-02\n", - " Region: \"zone_3\"\tRelError: 2.78046e+03\tAbsError: 5.70592e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.37175e+01\tAbsError: 3.26918e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.76645e+03\tAbsError: 2.43673e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.95175e-01\tAbsError: 8.03338e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.54688e+01\tAbsError: 7.28460e+16\n", - " Region: \"zone_1\"\tRelError: 4.05779e+00\tAbsError: 7.88298e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.05779e+00\tAbsError: 7.88298e-02\n", - " Region: \"zone_3\"\tRelError: 2.14110e+01\tAbsError: 7.28460e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.78884e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.18413e+01\tAbsError: 3.49576e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 5.69762e-01\tAbsError: 7.88298e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.97212e-04\tAbsError: 5.28965e+06\n", - " Region: \"zone_1\"\tRelError: 2.74725e-09\tAbsError: 3.88867e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.74725e-09\tAbsError: 3.88867e-11\n", - " Region: \"zone_3\"\tRelError: 1.97210e-04\tAbsError: 5.28965e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.96560e-04\tAbsError: 1.88403e+06\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.49815e-07\tAbsError: 3.40562e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.55943e-11\tAbsError: 4.14441e-11\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 5.84987e+02\tAbsError: 3.31667e+12\n", - " Region: \"zone_1\"\tRelError: 3.70722e-02\tAbsError: 2.57858e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.70722e-02\tAbsError: 2.57858e-02\n", - " Region: \"zone_3\"\tRelError: 5.84950e+02\tAbsError: 3.31667e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.83958e+02\tAbsError: 1.18352e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.55224e-01\tAbsError: 2.13316e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.72734e-02\tAbsError: 2.57631e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.50753e+02\tAbsError: 8.15936e+11\n", - " Region: \"zone_1\"\tRelError: 2.19781e-02\tAbsError: 1.74093e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.19781e-02\tAbsError: 1.74093e-02\n", - " Region: \"zone_3\"\tRelError: 1.50731e+02\tAbsError: 8.15936e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50624e+02\tAbsError: 1.19984e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.39476e-02\tAbsError: 6.95952e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.24006e-02\tAbsError: 1.74094e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.07290e+02\tAbsError: 2.40888e+16\n", - " Region: \"zone_1\"\tRelError: 2.14527e+00\tAbsError: 7.64427e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.14527e+00\tAbsError: 7.64427e-02\n", - " Region: \"zone_3\"\tRelError: 2.05145e+02\tAbsError: 2.40888e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.20017e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.95921e+02\tAbsError: 1.20871e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.23648e-01\tAbsError: 7.64428e-02\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.21711e-13\tAbsError: 3.14873e+04\n", - " Region: \"zone_1\"\tRelError: 9.14172e-14\tAbsError: 1.14796e-16\n", - " Equation: \"PotentialEquation\"\tRelError: 9.14172e-14\tAbsError: 1.14796e-16\n", - " Region: \"zone_3\"\tRelError: 1.30294e-13\tAbsError: 3.14873e+04\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.60212e-14\tAbsError: 1.58694e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.70418e-15\tAbsError: 1.56178e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.25687e-14\tAbsError: 1.19262e-16\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.92851e+02\tAbsError: 2.89384e+16\n", - " Region: \"zone_1\"\tRelError: 1.14740e+00\tAbsError: 7.47705e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14740e+00\tAbsError: 7.47705e-02\n", - " Region: \"zone_3\"\tRelError: 2.91703e+02\tAbsError: 2.89384e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.26797e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.82502e+02\tAbsError: 1.62587e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.01675e-01\tAbsError: 7.47705e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:57\u001b[0m.\u001b[1;36m462\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:57\u001b[0m.\u001b[1;36m462\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.20833333333333334\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 9.81687e-01\tAbsError: 7.37661e+11\n", - " Region: \"zone_1\"\tRelError: 2.81044e-04\tAbsError: 3.08580e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.81044e-04\tAbsError: 3.08580e-06\n", - " Region: \"zone_3\"\tRelError: 9.81406e-01\tAbsError: 7.37661e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.80950e-01\tAbsError: 1.46501e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.51588e-04\tAbsError: 5.91160e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.97537e-06\tAbsError: 3.17226e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.80848e+02\tAbsError: 1.10456e+16\n", - " Region: \"zone_1\"\tRelError: 4.53931e+00\tAbsError: 7.21036e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.53931e+00\tAbsError: 7.21036e-02\n", - " Region: \"zone_3\"\tRelError: 1.76309e+02\tAbsError: 1.10456e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.22278e+01\tAbsError: 2.44374e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.63899e+02\tAbsError: 8.60186e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82421e-01\tAbsError: 7.21036e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 9.32143e+01\tAbsError: 1.23916e+16\n", - " Region: \"zone_1\"\tRelError: 1.85187e+01\tAbsError: 7.02256e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.85187e+01\tAbsError: 7.02256e-02\n", - " Region: \"zone_3\"\tRelError: 7.46956e+01\tAbsError: 1.23916e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.25956e+01\tAbsError: 6.77522e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.19341e+01\tAbsError: 5.61636e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65943e-01\tAbsError: 7.02257e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.04040e+00\tAbsError: 2.10389e+12\n", - " Region: \"zone_1\"\tRelError: 1.40276e-02\tAbsError: 1.11974e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40276e-02\tAbsError: 1.11974e-02\n", - " Region: \"zone_3\"\tRelError: 1.02637e+00\tAbsError: 2.10389e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.94847e-01\tAbsError: 2.84106e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.71950e-02\tAbsError: 1.81979e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43257e-02\tAbsError: 1.11975e-02\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 7.70036e-05\tAbsError: 2.07098e+06\n", - " Region: \"zone_1\"\tRelError: 8.41736e-10\tAbsError: 1.25497e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 8.41736e-10\tAbsError: 1.25497e-11\n", - " Region: \"zone_3\"\tRelError: 7.70028e-05\tAbsError: 2.07098e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69590e-05\tAbsError: 5.09430e+05\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.37439e-08\tAbsError: 1.56155e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.01100e-11\tAbsError: 1.29285e-11\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:57\u001b[0m.\u001b[1;36m951\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.2\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 4.45029e-01\tAbsError: 2.51715e+12\n", - " Region: \"zone_1\"\tRelError: 1.62807e-03\tAbsError: 1.83760e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.62807e-03\tAbsError: 1.83760e-05\n", - " Region: \"zone_3\"\tRelError: 4.43401e-01\tAbsError: 2.51715e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.41371e-01\tAbsError: 8.04152e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.00240e-03\tAbsError: 1.71300e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.83249e-05\tAbsError: 1.84337e-05\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 8.78638e+02\tAbsError: 2.94859e+15\n", - " Region: \"zone_1\"\tRelError: 2.84018e+00\tAbsError: 6.72141e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.84018e+00\tAbsError: 6.72141e-02\n", - " Region: \"zone_3\"\tRelError: 8.75798e+02\tAbsError: 2.94859e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.57596e+02\tAbsError: 1.73463e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.18056e+02\tAbsError: 1.21397e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46332e-01\tAbsError: 6.72141e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.58281e+03\tAbsError: 1.21837e+15\n", - " Region: \"zone_1\"\tRelError: 1.36885e+01\tAbsError: 6.50809e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36885e+01\tAbsError: 6.50809e-02\n", - " Region: \"zone_3\"\tRelError: 1.56912e+03\tAbsError: 1.21837e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.97257e+02\tAbsError: 8.33773e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.27173e+03\tAbsError: 3.84593e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.32580e-01\tAbsError: 6.50809e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.10347e+01\tAbsError: 9.33666e+15\n", - " Region: \"zone_1\"\tRelError: 9.32699e+00\tAbsError: 4.26142e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.32699e+00\tAbsError: 4.26142e-02\n", - " Region: \"zone_3\"\tRelError: 1.70771e+00\tAbsError: 9.33666e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.07276e-01\tAbsError: 5.05102e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.07245e-01\tAbsError: 4.28564e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.31893e-02\tAbsError: 4.26142e-02\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.72810e-04\tAbsError: 1.68937e+08\n", - " Region: \"zone_1\"\tRelError: 8.13209e-08\tAbsError: 1.07762e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 8.13209e-08\tAbsError: 1.07762e-09\n", - " Region: \"zone_3\"\tRelError: 1.72728e-04\tAbsError: 1.68937e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.71767e-04\tAbsError: 4.50513e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.59619e-07\tAbsError: 1.23886e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 1.69289e-09\tAbsError: 1.09594e-09\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 8.47095e-13\tAbsError: 3.17846e+04\n", - " Region: \"zone_1\"\tRelError: 1.89137e-13\tAbsError: 1.13043e-16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.89137e-13\tAbsError: 1.13043e-16\n", - " Region: \"zone_3\"\tRelError: 6.57957e-13\tAbsError: 3.17846e+04\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.94024e-13\tAbsError: 1.58952e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.50744e-14\tAbsError: 1.58894e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.48859e-13\tAbsError: 1.13805e-16\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.82433e+02\tAbsError: 1.43454e+15\n", - " Region: \"zone_1\"\tRelError: 1.48090e+00\tAbsError: 5.91833e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.48090e+00\tAbsError: 5.91833e-02\n", - " Region: \"zone_3\"\tRelError: 4.80952e+02\tAbsError: 1.43454e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.57272e+02\tAbsError: 8.66708e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.35743e+01\tAbsError: 5.67830e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.05889e-01\tAbsError: 5.91833e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.86518e+00\tAbsError: 4.02662e+14\n", - " Region: \"zone_1\"\tRelError: 2.81960e-01\tAbsError: 3.27220e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.81960e-01\tAbsError: 3.27220e-02\n", - " Region: \"zone_3\"\tRelError: 1.58322e+00\tAbsError: 4.02662e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.13443e-01\tAbsError: 1.82808e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.09901e-01\tAbsError: 2.19855e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.98791e-02\tAbsError: 3.27220e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:58\u001b[0m.\u001b[1;36m489\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:58\u001b[0m.\u001b[1;36m489\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.20714285714285713\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Iteration: 0\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 3.21485e+01\tAbsError: 8.61846e+15\n", - " Region: \"zone_1\"\tRelError: 3.04717e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.04717e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.67686e+00\tAbsError: 8.61846e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94516e-01\tAbsError: 4.66248e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94484e-01\tAbsError: 3.95598e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.78603e-02\tAbsError: 4.09542e-02\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.42447e+03\tAbsError: 3.70580e+14\n", - " Region: \"zone_1\"\tRelError: 4.53729e-01\tAbsError: 6.16382e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.53729e-01\tAbsError: 6.16382e-02\n", - " Region: \"zone_3\"\tRelError: 9.42401e+03\tAbsError: 3.70580e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.61616e+01\tAbsError: 9.68714e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.39773e+03\tAbsError: 2.73708e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17913e-01\tAbsError: 6.16382e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.18212e+00\tAbsError: 5.40940e+13\n", - " Region: \"zone_1\"\tRelError: 4.50065e-02\tAbsError: 2.58606e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.50065e-02\tAbsError: 2.58606e-02\n", - " Region: \"zone_3\"\tRelError: 1.13712e+00\tAbsError: 5.40940e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.53826e-01\tAbsError: 3.02007e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.38163e-01\tAbsError: 2.38932e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.51291e-02\tAbsError: 2.58973e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.07800e+00\tAbsError: 3.45404e+14\n", - " Region: \"zone_1\"\tRelError: 5.44178e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.44178e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.53382e+00\tAbsError: 3.45404e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90662e-01\tAbsError: 1.56300e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.87478e-01\tAbsError: 1.89103e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.56802e-02\tAbsError: 3.07632e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.00096e+02\tAbsError: 3.25866e+14\n", - " Region: \"zone_1\"\tRelError: 2.42568e-01\tAbsError: 5.23282e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.42568e-01\tAbsError: 5.23282e-02\n", - " Region: \"zone_3\"\tRelError: 3.99853e+02\tAbsError: 3.25866e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97144e+02\tAbsError: 2.25150e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.02625e+02\tAbsError: 1.00716e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.47475e-02\tAbsError: 5.23282e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.67376e+02\tAbsError: 5.27737e+14\n", - " Region: \"zone_1\"\tRelError: 4.70139e-01\tAbsError: 5.51934e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.70139e-01\tAbsError: 5.51934e-02\n", - " Region: \"zone_3\"\tRelError: 1.66906e+02\tAbsError: 5.27737e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.26954e+02\tAbsError: 3.23447e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.98575e+01\tAbsError: 2.04290e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.42599e-02\tAbsError: 5.51934e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.19813e+01\tAbsError: 9.23407e+15\n", - " Region: \"zone_1\"\tRelError: 1.02779e+01\tAbsError: 4.23835e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02779e+01\tAbsError: 4.23835e-02\n", - " Region: \"zone_3\"\tRelError: 1.70346e+00\tAbsError: 9.23407e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.05551e-01\tAbsError: 4.99552e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.05520e-01\tAbsError: 4.23855e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.23930e-02\tAbsError: 4.23835e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.47964e-01\tAbsError: 2.72816e+12\n", - " Region: \"zone_1\"\tRelError: 1.75691e-02\tAbsError: 1.17190e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.75691e-02\tAbsError: 1.17190e-02\n", - " Region: \"zone_3\"\tRelError: 4.30394e-01\tAbsError: 2.72816e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.07313e-01\tAbsError: 1.74663e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.05231e-01\tAbsError: 9.81531e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.78508e-02\tAbsError: 1.17190e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.11313e+00\tAbsError: 4.26791e+13\n", - " Region: \"zone_1\"\tRelError: 7.05940e-02\tAbsError: 2.58377e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.05940e-02\tAbsError: 2.58377e-02\n", - " Region: \"zone_3\"\tRelError: 1.04254e+00\tAbsError: 4.26791e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14646e-01\tAbsError: 2.38411e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.85599e-01\tAbsError: 1.88379e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.22941e-02\tAbsError: 2.58015e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 9.63412e+03\tAbsError: 7.11539e+13\n", - " Region: \"zone_1\"\tRelError: 6.58173e-02\tAbsError: 4.42512e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.58173e-02\tAbsError: 4.42512e-02\n", - " Region: \"zone_3\"\tRelError: 9.63405e+03\tAbsError: 7.11539e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.27619e+02\tAbsError: 1.01552e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.30637e+03\tAbsError: 6.09987e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.62284e-02\tAbsError: 4.42513e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.45643e+02\tAbsError: 1.41192e+14\n", - " Region: \"zone_1\"\tRelError: 9.40268e-02\tAbsError: 4.76391e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.40268e-02\tAbsError: 4.76391e-02\n", - " Region: \"zone_3\"\tRelError: 6.45549e+02\tAbsError: 1.41192e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.67511e+02\tAbsError: 9.22825e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.77963e+02\tAbsError: 4.89099e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.43903e-02\tAbsError: 4.76391e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.12618e-01\tAbsError: 1.67703e+11\n", - " Region: \"zone_1\"\tRelError: 8.07019e-05\tAbsError: 1.19119e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.07019e-05\tAbsError: 1.19119e-06\n", - " Region: \"zone_3\"\tRelError: 1.12538e-01\tAbsError: 1.67703e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12411e-01\tAbsError: 5.81197e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.24559e-04\tAbsError: 1.09583e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.31628e-06\tAbsError: 1.26920e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.83480e-01\tAbsError: 2.88954e+12\n", - " Region: \"zone_1\"\tRelError: 1.35212e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35212e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.69958e-01\tAbsError: 2.88954e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88338e-01\tAbsError: 2.12977e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.78790e-02\tAbsError: 2.67656e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37417e-02\tAbsError: 9.16534e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.87614e+00\tAbsError: 3.94195e+14\n", - " Region: \"zone_1\"\tRelError: 2.99922e-01\tAbsError: 3.24492e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.99922e-01\tAbsError: 3.24492e-02\n", - " Region: \"zone_3\"\tRelError: 1.57621e+00\tAbsError: 3.94195e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.10160e-01\tAbsError: 1.78861e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.07263e-01\tAbsError: 2.15334e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.87924e-02\tAbsError: 3.24493e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.16512e+02\tAbsError: 9.24158e+13\n", - " Region: \"zone_1\"\tRelError: 7.94582e-02\tAbsError: 3.46606e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.94582e-02\tAbsError: 3.46606e-02\n", - " Region: \"zone_3\"\tRelError: 2.16432e+02\tAbsError: 9.24158e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04810e+02\tAbsError: 5.48422e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.15737e+01\tAbsError: 3.75736e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.86497e-02\tAbsError: 3.46607e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.75979e-06\tAbsError: 9.15943e+05\n", - " Region: \"zone_1\"\tRelError: 2.41515e-10\tAbsError: 4.07741e-12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.41515e-10\tAbsError: 4.07741e-12\n", - " Region: \"zone_3\"\tRelError: 2.75955e-06\tAbsError: 9.15943e+05\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.75771e-06\tAbsError: 1.84364e+05\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.83413e-09\tAbsError: 7.31579e+05\n", - " Equation: \"PotentialEquation\"\tRelError: 8.05841e-12\tAbsError: 4.42587e-12\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.85209e+03\tAbsError: 3.15377e+13\n", - " Region: \"zone_1\"\tRelError: 5.58938e-02\tAbsError: 3.86842e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.58938e-02\tAbsError: 3.86842e-02\n", - " Region: \"zone_3\"\tRelError: 5.85204e+03\tAbsError: 3.15377e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.78253e+03\tAbsError: 8.91278e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.94521e+01\tAbsError: 2.26249e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.62456e-02\tAbsError: 3.86842e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:59\u001b[0m.\u001b[1;36m773\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:21:59\u001b[0m.\u001b[1;36m773\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.31666666666666665\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.16827e+00\tAbsError: 5.24298e+13\n", - " Region: \"zone_1\"\tRelError: 4.47125e-02\tAbsError: 2.58923e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.47125e-02\tAbsError: 2.58923e-02\n", - " Region: \"zone_3\"\tRelError: 1.12355e+00\tAbsError: 5.24298e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.48461e-01\tAbsError: 2.92951e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.30280e-01\tAbsError: 2.31347e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.48109e-02\tAbsError: 2.58991e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.38444e-02\tAbsError: 3.70458e+12\n", - " Region: \"zone_1\"\tRelError: 3.59871e-03\tAbsError: 2.71390e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.59871e-03\tAbsError: 2.71390e-05\n", - " Region: \"zone_3\"\tRelError: 9.02457e-02\tAbsError: 3.70458e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.84320e-02\tAbsError: 1.19345e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.76575e-03\tAbsError: 2.51114e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.79561e-05\tAbsError: 2.71828e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.59514e+02\tAbsError: 2.50534e+13\n", - " Region: \"zone_1\"\tRelError: 4.08268e-02\tAbsError: 2.81019e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.08268e-02\tAbsError: 2.81019e-02\n", - " Region: \"zone_3\"\tRelError: 3.59473e+02\tAbsError: 2.50534e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.58860e+02\tAbsError: 1.45093e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.72615e-01\tAbsError: 1.05441e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.08214e-02\tAbsError: 2.81020e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.01135e+03\tAbsError: 1.36473e+13\n", - " Region: \"zone_1\"\tRelError: 3.79634e-02\tAbsError: 2.58868e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.79634e-02\tAbsError: 2.58868e-02\n", - " Region: \"zone_3\"\tRelError: 1.01132e+03\tAbsError: 1.36473e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00963e+03\tAbsError: 8.33029e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.64673e+00\tAbsError: 5.31702e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.81405e-02\tAbsError: 2.57846e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.96038e-05\tAbsError: 5.27330e+08\n", - " Region: \"zone_1\"\tRelError: 3.38320e-07\tAbsError: 2.80513e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.38320e-07\tAbsError: 2.80513e-09\n", - " Region: \"zone_3\"\tRelError: 4.92654e-05\tAbsError: 5.27330e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.82203e-05\tAbsError: 1.20057e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.04006e-06\tAbsError: 4.07273e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 5.04648e-09\tAbsError: 2.84942e-09\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.34212e-01\tAbsError: 2.61245e+12\n", - " Region: \"zone_1\"\tRelError: 1.69568e-02\tAbsError: 1.13359e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.69568e-02\tAbsError: 1.13359e-02\n", - " Region: \"zone_3\"\tRelError: 4.17255e-01\tAbsError: 2.61245e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.00635e-01\tAbsError: 1.65011e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.93911e-02\tAbsError: 9.62337e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72292e-02\tAbsError: 1.13359e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.80016e+00\tAbsError: 9.26520e+15\n", - " Region: \"zone_1\"\tRelError: 7.07643e+00\tAbsError: 4.26142e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.07643e+00\tAbsError: 4.26142e-02\n", - " Region: \"zone_3\"\tRelError: 1.72373e+00\tAbsError: 9.26520e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.07327e-01\tAbsError: 5.24812e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.07316e-01\tAbsError: 4.01709e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09088e-01\tAbsError: 4.26142e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:00\u001b[0m.\u001b[1;36m322\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:00\u001b[0m.\u001b[1;36m322\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.07850e+00\tAbsError: 1.70830e+12\n", - " Region: \"zone_1\"\tRelError: 1.83637e-02\tAbsError: 1.47172e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.83637e-02\tAbsError: 1.47172e-02\n", - " Region: \"zone_3\"\tRelError: 1.06013e+00\tAbsError: 1.70830e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.97311e-01\tAbsError: 5.14807e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.40601e-02\tAbsError: 1.19349e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87632e-02\tAbsError: 1.47172e-02\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.22208e+00\tAbsError: 2.75802e+12\n", - " Region: \"zone_1\"\tRelError: 2.87771e-02\tAbsError: 2.26488e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.87771e-02\tAbsError: 2.26488e-02\n", - " Region: \"zone_3\"\tRelError: 1.19330e+00\tAbsError: 2.75802e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99833e-01\tAbsError: 1.67616e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.64198e-01\tAbsError: 1.08185e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.92713e-02\tAbsError: 2.26489e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.08767e-01\tAbsError: 9.15820e+10\n", - " Region: \"zone_1\"\tRelError: 3.50074e-06\tAbsError: 2.32618e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 3.50074e-06\tAbsError: 2.32618e-07\n", - " Region: \"zone_3\"\tRelError: 1.08764e-01\tAbsError: 9.15820e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.08683e-01\tAbsError: 2.45142e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.10349e-05\tAbsError: 8.91305e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.11010e-07\tAbsError: 2.47753e-07\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 6.03578e-01\tAbsError: 1.20875e+12\n", - " Region: \"zone_1\"\tRelError: 6.45299e-04\tAbsError: 7.15824e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.45299e-04\tAbsError: 7.15824e-06\n", - " Region: \"zone_3\"\tRelError: 6.02933e-01\tAbsError: 1.20875e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.02052e-01\tAbsError: 3.27309e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.69519e-04\tAbsError: 8.81446e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13066e-05\tAbsError: 7.27175e-06\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 8.97893e-01\tAbsError: 7.55600e+11\n", - " Region: \"zone_1\"\tRelError: 1.29308e-04\tAbsError: 2.23218e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29308e-04\tAbsError: 2.23218e-06\n", - " Region: \"zone_3\"\tRelError: 8.97763e-01\tAbsError: 7.55600e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.96369e-01\tAbsError: 1.03886e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.39021e-03\tAbsError: 6.51714e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.72140e-06\tAbsError: 2.34576e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.02057e+00\tAbsError: 3.92740e+14\n", - " Region: \"zone_1\"\tRelError: 4.23022e-01\tAbsError: 3.27220e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.23022e-01\tAbsError: 3.27220e-02\n", - " Region: \"zone_3\"\tRelError: 1.59755e+00\tAbsError: 3.92740e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.13652e-01\tAbsError: 2.06183e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.10105e-01\tAbsError: 1.86557e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.37891e-02\tAbsError: 3.27220e-02\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.04952e-04\tAbsError: 1.41961e+07\n", - " Region: \"zone_1\"\tRelError: 1.02048e-08\tAbsError: 1.35544e-10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02048e-08\tAbsError: 1.35544e-10\n", - " Region: \"zone_3\"\tRelError: 1.04942e-04\tAbsError: 1.41961e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04766e-04\tAbsError: 6.03537e+06\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.75523e-07\tAbsError: 8.16076e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.19763e-10\tAbsError: 1.41360e-10\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.64184e-07\tAbsError: 6.99685e+04\n", - " Region: \"zone_1\"\tRelError: 1.53583e-11\tAbsError: 2.11293e-13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.53583e-11\tAbsError: 2.11293e-13\n", - " Region: \"zone_3\"\tRelError: 5.64169e-07\tAbsError: 6.99685e+04\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.64107e-07\tAbsError: 1.79086e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.20585e-11\tAbsError: 5.20599e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.03557e-13\tAbsError: 2.20449e-13\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 6.66959e-05\tAbsError: 3.18899e+06\n", - " Region: \"zone_1\"\tRelError: 7.45090e-10\tAbsError: 1.97675e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 7.45090e-10\tAbsError: 1.97675e-11\n", - " Region: \"zone_3\"\tRelError: 6.66952e-05\tAbsError: 3.18899e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.66668e-05\tAbsError: 1.78142e+05\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.83350e-08\tAbsError: 3.01085e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.11360e-11\tAbsError: 2.08037e-11\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.62677e+00\tAbsError: 8.55868e+15\n", - " Region: \"zone_1\"\tRelError: 3.93566e+00\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.93566e+00\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.69111e+00\tAbsError: 8.55868e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94568e-01\tAbsError: 4.83229e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94557e-01\tAbsError: 3.72639e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01989e-01\tAbsError: 4.09542e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:01\u001b[0m.\u001b[1;36m044\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.20625\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:01\u001b[0m.\u001b[1;36m044\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:01\u001b[0m.\u001b[1;36m044\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.3142857142857143\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.20591e+00\tAbsError: 3.39308e+13\n", - " Region: \"zone_1\"\tRelError: 5.60532e-02\tAbsError: 2.58742e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.60532e-02\tAbsError: 2.58742e-02\n", - " Region: \"zone_3\"\tRelError: 1.14986e+00\tAbsError: 3.39308e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.53907e-01\tAbsError: 2.17210e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.39740e-01\tAbsError: 1.22098e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.62087e-02\tAbsError: 2.58980e-02\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 1.88658e-13\tAbsError: 3.08154e+04\n", - " Region: \"zone_1\"\tRelError: 8.30400e-14\tAbsError: 1.14869e-16\n", - " Equation: \"PotentialEquation\"\tRelError: 8.30400e-14\tAbsError: 1.14869e-16\n", - " Region: \"zone_3\"\tRelError: 1.05618e-13\tAbsError: 3.08154e+04\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.97303e-14\tAbsError: 1.58947e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.24995e-15\tAbsError: 1.49207e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.46374e-14\tAbsError: 1.12518e-16\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:01\u001b[0m.\u001b[1;36m245\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.2\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.54174e-01\tAbsError: 2.63999e+12\n", - " Region: \"zone_1\"\tRelError: 2.16661e-02\tAbsError: 1.17190e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.16661e-02\tAbsError: 1.17190e-02\n", - " Region: \"zone_3\"\tRelError: 4.32508e-01\tAbsError: 2.63999e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.06955e-01\tAbsError: 1.55437e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03619e-01\tAbsError: 1.08561e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.19328e-02\tAbsError: 1.17190e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.68467e+00\tAbsError: 3.35446e+14\n", - " Region: \"zone_1\"\tRelError: 1.36557e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36557e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.54812e+00\tAbsError: 3.35446e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90679e-01\tAbsError: 1.72457e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.87899e-01\tAbsError: 1.62989e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.95382e-02\tAbsError: 3.07632e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.28470e+01\tAbsError: 9.15711e+15\n", - " Region: \"zone_1\"\tRelError: 1.11470e+01\tAbsError: 4.22091e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11470e+01\tAbsError: 4.22091e-02\n", - " Region: \"zone_3\"\tRelError: 1.70000e+00\tAbsError: 9.15711e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.04237e-01\tAbsError: 4.95388e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.04206e-01\tAbsError: 4.20323e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.15525e-02\tAbsError: 4.22091e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.73208e+00\tAbsError: 9.16435e+15\n", - " Region: \"zone_1\"\tRelError: 6.01267e+00\tAbsError: 4.23835e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.01267e+00\tAbsError: 4.23835e-02\n", - " Region: \"zone_3\"\tRelError: 1.71942e+00\tAbsError: 9.16435e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.05602e-01\tAbsError: 5.18862e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.05591e-01\tAbsError: 3.97573e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08224e-01\tAbsError: 4.23835e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.12470e-01\tAbsError: 2.41978e+11\n", - " Region: \"zone_1\"\tRelError: 3.41928e-05\tAbsError: 3.25966e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 3.41928e-05\tAbsError: 3.25966e-07\n", - " Region: \"zone_3\"\tRelError: 1.12436e-01\tAbsError: 2.41978e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12179e-01\tAbsError: 1.55249e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.56546e-04\tAbsError: 2.26453e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 7.79208e-07\tAbsError: 3.44024e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.21485e+01\tAbsError: 8.61846e+15\n", - " Region: \"zone_1\"\tRelError: 3.04717e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.04717e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.67686e+00\tAbsError: 8.61846e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94516e-01\tAbsError: 4.66248e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94484e-01\tAbsError: 3.95598e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.78603e-02\tAbsError: 4.09542e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.10405e+00\tAbsError: 2.84626e+13\n", - " Region: \"zone_1\"\tRelError: 5.09442e-02\tAbsError: 2.58970e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.09442e-02\tAbsError: 2.58970e-02\n", - " Region: \"zone_3\"\tRelError: 1.05311e+00\tAbsError: 2.84626e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14915e-01\tAbsError: 1.81960e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.86897e-01\tAbsError: 1.02666e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.12979e-02\tAbsError: 2.58565e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.88714e+00\tAbsError: 3.87948e+14\n", - " Region: \"zone_1\"\tRelError: 3.15624e-01\tAbsError: 3.22432e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.15624e-01\tAbsError: 3.22432e-02\n", - " Region: \"zone_3\"\tRelError: 1.57151e+00\tAbsError: 3.87948e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.07930e-01\tAbsError: 1.75972e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.04835e-01\tAbsError: 2.11976e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.87474e-02\tAbsError: 3.22432e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.48978e-07\tAbsError: 3.61558e+05\n", - " Region: \"zone_1\"\tRelError: 1.68628e-12\tAbsError: 3.44674e-13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.68628e-12\tAbsError: 3.44674e-13\n", - " Region: \"zone_3\"\tRelError: 4.48977e-07\tAbsError: 3.61558e+05\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.48424e-07\tAbsError: 1.54412e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.51743e-10\tAbsError: 3.46117e+05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.60385e-13\tAbsError: 3.52997e-13\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.92499e+00\tAbsError: 3.84281e+14\n", - " Region: \"zone_1\"\tRelError: 3.34214e-01\tAbsError: 3.24492e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.34214e-01\tAbsError: 3.24492e-02\n", - " Region: \"zone_3\"\tRelError: 1.59078e+00\tAbsError: 3.84281e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.10494e-01\tAbsError: 2.01137e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.07227e-01\tAbsError: 1.83145e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.30565e-02\tAbsError: 3.24492e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.07800e+00\tAbsError: 3.45404e+14\n", - " Region: \"zone_1\"\tRelError: 5.44178e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.44178e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.53382e+00\tAbsError: 3.45404e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90662e-01\tAbsError: 1.56300e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.87478e-01\tAbsError: 1.89103e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.56802e-02\tAbsError: 3.07632e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:02\u001b[0m.\u001b[1;36m164\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:02\u001b[0m.\u001b[1;36m164\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.42500000000000004\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.15902e+00\tAbsError: 5.11241e+13\n", - " Region: \"zone_1\"\tRelError: 4.51307e-02\tAbsError: 2.58740e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.51307e-02\tAbsError: 2.58740e-02\n", - " Region: \"zone_3\"\tRelError: 1.11389e+00\tAbsError: 5.11241e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.44316e-01\tAbsError: 2.85584e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.25056e-01\tAbsError: 2.25657e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.45193e-02\tAbsError: 2.58647e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.87738e-01\tAbsError: 1.50257e+12\n", - " Region: \"zone_1\"\tRelError: 1.63299e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.63299e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.71408e-01\tAbsError: 1.50257e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88723e-01\tAbsError: 2.92089e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.61472e-02\tAbsError: 1.21048e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65380e-02\tAbsError: 9.16534e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.19211e+00\tAbsError: 3.32532e+13\n", - " Region: \"zone_1\"\tRelError: 5.53890e-02\tAbsError: 2.58920e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.53890e-02\tAbsError: 2.58920e-02\n", - " Region: \"zone_3\"\tRelError: 1.13672e+00\tAbsError: 3.32532e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.48642e-01\tAbsError: 2.13165e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.32451e-01\tAbsError: 1.19367e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.56280e-02\tAbsError: 2.58962e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.23439e-01\tAbsError: 2.48858e+12\n", - " Region: \"zone_1\"\tRelError: 1.65047e-02\tAbsError: 1.10525e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65047e-02\tAbsError: 1.10525e-02\n", - " Region: \"zone_3\"\tRelError: 4.06934e-01\tAbsError: 2.48858e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.94927e-01\tAbsError: 1.39921e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.52365e-02\tAbsError: 1.08937e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.67704e-02\tAbsError: 1.10525e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.11313e+00\tAbsError: 4.26791e+13\n", - " Region: \"zone_1\"\tRelError: 7.05940e-02\tAbsError: 2.58377e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.05940e-02\tAbsError: 2.58377e-02\n", - " Region: \"zone_3\"\tRelError: 1.04254e+00\tAbsError: 4.26791e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14646e-01\tAbsError: 2.38411e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.85599e-01\tAbsError: 1.88379e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.22941e-02\tAbsError: 2.58015e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.96849e-02\tAbsError: 2.07362e+12\n", - " Region: \"zone_1\"\tRelError: 7.02885e-04\tAbsError: 1.90198e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.02885e-04\tAbsError: 1.90198e-05\n", - " Region: \"zone_3\"\tRelError: 8.89820e-02\tAbsError: 2.07362e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.78375e-02\tAbsError: 8.90891e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10276e-03\tAbsError: 1.18273e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.17313e-05\tAbsError: 1.96984e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 4.19960e+00\tAbsError: 9.13325e+15\n", - " Region: \"zone_1\"\tRelError: 2.46103e+00\tAbsError: 4.26142e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.46103e+00\tAbsError: 4.26142e-02\n", - " Region: \"zone_3\"\tRelError: 1.73857e+00\tAbsError: 9.13325e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.07329e-01\tAbsError: 5.34387e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.07315e-01\tAbsError: 3.78938e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.23925e-01\tAbsError: 4.26142e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.39831e-01\tAbsError: 2.55802e+12\n", - " Region: \"zone_1\"\tRelError: 2.08443e-02\tAbsError: 1.13359e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.08443e-02\tAbsError: 1.13359e-02\n", - " Region: \"zone_3\"\tRelError: 4.18986e-01\tAbsError: 2.55802e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.00015e-01\tAbsError: 1.46829e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.78664e-02\tAbsError: 1.08972e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.11047e-02\tAbsError: 1.13359e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.06933e-01\tAbsError: 5.18671e+11\n", - " Region: \"zone_1\"\tRelError: 3.54917e-04\tAbsError: 4.66744e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.54917e-04\tAbsError: 4.66744e-06\n", - " Region: \"zone_3\"\tRelError: 1.06578e-01\tAbsError: 5.18671e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06131e-01\tAbsError: 2.20799e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.37889e-04\tAbsError: 2.97871e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 8.78698e-06\tAbsError: 4.85813e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.83480e-01\tAbsError: 2.88954e+12\n", - " Region: \"zone_1\"\tRelError: 1.35212e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35212e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.69958e-01\tAbsError: 2.88954e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88338e-01\tAbsError: 2.12977e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.78790e-02\tAbsError: 2.67656e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37417e-02\tAbsError: 9.16534e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.40982e-05\tAbsError: 1.92019e+08\n", - " Region: \"zone_1\"\tRelError: 4.03285e-08\tAbsError: 1.17477e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 4.03285e-08\tAbsError: 1.17477e-09\n", - " Region: \"zone_3\"\tRelError: 3.40579e-05\tAbsError: 1.92019e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.36060e-05\tAbsError: 5.55442e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.49187e-07\tAbsError: 1.36475e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.67835e-09\tAbsError: 1.26430e-09\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.71932e+00\tAbsError: 3.84693e+14\n", - " Region: \"zone_1\"\tRelError: 1.01771e-01\tAbsError: 3.27220e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01771e-01\tAbsError: 3.27220e-02\n", - " Region: \"zone_3\"\tRelError: 1.61755e+00\tAbsError: 3.84693e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.13531e-01\tAbsError: 2.43732e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.10807e-01\tAbsError: 1.40961e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.32090e-02\tAbsError: 3.27220e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:03\u001b[0m.\u001b[1;36m095\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.4\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.08419e-01\tAbsError: 1.78582e+11\n", - " Region: \"zone_1\"\tRelError: 4.38975e-05\tAbsError: 5.32125e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 4.38975e-05\tAbsError: 5.32125e-07\n", - " Region: \"zone_3\"\tRelError: 1.08375e-01\tAbsError: 1.78582e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.08198e-01\tAbsError: 2.44620e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.75328e-04\tAbsError: 1.54120e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21401e-06\tAbsError: 5.53297e-07\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.38444e-02\tAbsError: 3.70458e+12\n", - " Region: \"zone_1\"\tRelError: 3.59871e-03\tAbsError: 2.71390e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.59871e-03\tAbsError: 2.71390e-05\n", - " Region: \"zone_3\"\tRelError: 9.02457e-02\tAbsError: 3.70458e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.84320e-02\tAbsError: 1.19345e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.76575e-03\tAbsError: 2.51114e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.79561e-05\tAbsError: 2.71828e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.24334e+00\tAbsError: 5.69750e+13\n", - " Region: \"zone_1\"\tRelError: 7.33683e-02\tAbsError: 2.58826e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.33683e-02\tAbsError: 2.58826e-02\n", - " Region: \"zone_3\"\tRelError: 1.16997e+00\tAbsError: 5.69750e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.53959e-01\tAbsError: 4.18873e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.42390e-01\tAbsError: 1.50877e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.36175e-02\tAbsError: 2.58826e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.11708e-05\tAbsError: 9.26273e+06\n", - " Region: \"zone_1\"\tRelError: 4.48579e-09\tAbsError: 6.49167e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.48579e-09\tAbsError: 6.49167e-11\n", - " Region: \"zone_3\"\tRelError: 1.11663e-05\tAbsError: 9.26273e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.11195e-05\tAbsError: 3.00525e+06\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.66737e-08\tAbsError: 6.25748e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.25761e-10\tAbsError: 6.95491e-11\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:03\u001b[0m.\u001b[1;36m456\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.3125\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.56244e+00\tAbsError: 8.45570e+15\n", - " Region: \"zone_1\"\tRelError: 3.85573e+00\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.85573e+00\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.70670e+00\tAbsError: 8.45570e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94571e-01\tAbsError: 4.92914e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94557e-01\tAbsError: 3.52655e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17574e-01\tAbsError: 4.09542e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.30803e-06\tAbsError: 1.39215e+05\n", - " Region: \"zone_1\"\tRelError: 4.09874e-11\tAbsError: 4.86456e-13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.09874e-11\tAbsError: 4.86456e-13\n", - " Region: \"zone_3\"\tRelError: 1.30799e-06\tAbsError: 1.39215e+05\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.30706e-06\tAbsError: 2.54601e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.20349e-10\tAbsError: 1.13755e+05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14721e-12\tAbsError: 5.00050e-13\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.96038e-05\tAbsError: 5.27329e+08\n", - " Region: \"zone_1\"\tRelError: 3.38319e-07\tAbsError: 2.80513e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.38319e-07\tAbsError: 2.80513e-09\n", - " Region: \"zone_3\"\tRelError: 4.92654e-05\tAbsError: 5.27329e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.82203e-05\tAbsError: 1.20057e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.04006e-06\tAbsError: 4.07273e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 5.04648e-09\tAbsError: 2.84942e-09\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:03\u001b[0m.\u001b[1;36m734\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:03\u001b[0m.\u001b[1;36m734\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.4214285714285714\u001b[0m \n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.67898e-01\tAbsError: 7.04138e+12\n", - " Region: \"zone_1\"\tRelError: 2.81523e-02\tAbsError: 1.17190e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.81523e-02\tAbsError: 1.17190e-02\n", - " Region: \"zone_3\"\tRelError: 4.39746e-01\tAbsError: 7.04138e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.06769e-01\tAbsError: 2.74850e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.04598e-01\tAbsError: 4.29289e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.83778e-02\tAbsError: 1.17190e-02\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:03\u001b[0m.\u001b[1;36m755\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: \u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:03\u001b[0m.\u001b[1;36m755\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.67739e+00\tAbsError: 3.26551e+14\n", - " Region: \"zone_1\"\tRelError: 1.13651e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13651e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.56374e+00\tAbsError: 3.26551e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91179e-01\tAbsError: 1.98410e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.87607e-01\tAbsError: 1.28141e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.49517e-02\tAbsError: 3.07632e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.10811e+00\tAbsError: 9.08870e+15\n", - " Region: \"zone_1\"\tRelError: 5.39249e+00\tAbsError: 4.22091e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.39249e+00\tAbsError: 4.22091e-02\n", - " Region: \"zone_3\"\tRelError: 1.71562e+00\tAbsError: 9.08870e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.04288e-01\tAbsError: 5.14403e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.04277e-01\tAbsError: 3.94467e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07055e-01\tAbsError: 4.22091e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.13460e-01\tAbsError: 6.89826e+11\n", - " Region: \"zone_1\"\tRelError: 1.18399e-04\tAbsError: 6.54909e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18399e-04\tAbsError: 6.54909e-06\n", - " Region: \"zone_3\"\tRelError: 1.13342e-01\tAbsError: 6.89826e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12681e-01\tAbsError: 3.53309e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.39335e-04\tAbsError: 3.36517e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.16295e-05\tAbsError: 7.19104e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.13583e+00\tAbsError: 3.35166e+13\n", - " Region: \"zone_1\"\tRelError: 6.49986e-02\tAbsError: 2.58787e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.49986e-02\tAbsError: 2.58787e-02\n", - " Region: \"zone_3\"\tRelError: 1.07083e+00\tAbsError: 3.35166e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14794e-01\tAbsError: 2.31889e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.90894e-01\tAbsError: 1.03277e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.51440e-02\tAbsError: 2.58923e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.42127e-05\tAbsError: 2.61598e+07\n", - " Region: \"zone_1\"\tRelError: 3.82398e-09\tAbsError: 2.37448e-10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.82398e-09\tAbsError: 2.37448e-10\n", - " Region: \"zone_3\"\tRelError: 1.42089e-05\tAbsError: 2.61598e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.41120e-05\tAbsError: 1.42128e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.60310e-08\tAbsError: 1.19470e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 8.29382e-10\tAbsError: 2.71915e-10\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.87280e+00\tAbsError: 3.78063e+14\n", - " Region: \"zone_1\"\tRelError: 2.87477e-01\tAbsError: 3.22432e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.87477e-01\tAbsError: 3.22432e-02\n", - " Region: \"zone_3\"\tRelError: 1.58533e+00\tAbsError: 3.78063e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.08269e-01\tAbsError: 1.97458e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.04792e-01\tAbsError: 1.80605e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.22654e-02\tAbsError: 3.22432e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.97996e+00\tAbsError: 9.03690e+15\n", - " Region: \"zone_1\"\tRelError: 2.24677e+00\tAbsError: 4.23835e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.24677e+00\tAbsError: 4.23835e-02\n", - " Region: \"zone_3\"\tRelError: 1.73319e+00\tAbsError: 9.03690e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.05604e-01\tAbsError: 5.28487e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.05590e-01\tAbsError: 3.75204e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21995e-01\tAbsError: 4.23835e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:04\u001b[0m.\u001b[1;36m472\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:04\u001b[0m.\u001b[1;36m472\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5333333333333333\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.62677e+00\tAbsError: 8.55868e+15\n", - " Region: \"zone_1\"\tRelError: 3.93566e+00\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.93566e+00\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.69111e+00\tAbsError: 8.55868e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94568e-01\tAbsError: 4.83229e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94557e-01\tAbsError: 3.72639e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01989e-01\tAbsError: 4.09542e-02\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.97006e-01\tAbsError: 3.97798e+12\n", - " Region: \"zone_1\"\tRelError: 2.05644e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.05644e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.76441e-01\tAbsError: 3.97798e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88505e-01\tAbsError: 1.01871e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.71832e-02\tAbsError: 2.95927e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.07533e-02\tAbsError: 9.16534e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.71120e+00\tAbsError: 3.76250e+14\n", - " Region: \"zone_1\"\tRelError: 1.01047e-01\tAbsError: 3.24492e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01047e-01\tAbsError: 3.24492e-02\n", - " Region: \"zone_3\"\tRelError: 1.61015e+00\tAbsError: 3.76250e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.10602e-01\tAbsError: 2.37048e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.07623e-01\tAbsError: 1.39202e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.19253e-02\tAbsError: 3.24493e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.18219e+00\tAbsError: 3.25905e+13\n", - " Region: \"zone_1\"\tRelError: 5.50731e-02\tAbsError: 2.58881e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.50731e-02\tAbsError: 2.58881e-02\n", - " Region: \"zone_3\"\tRelError: 1.12712e+00\tAbsError: 3.25905e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.44603e-01\tAbsError: 2.08693e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.27351e-01\tAbsError: 1.17212e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.51633e-02\tAbsError: 2.58974e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.68467e+00\tAbsError: 3.35446e+14\n", - " Region: \"zone_1\"\tRelError: 1.36557e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36557e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.54812e+00\tAbsError: 3.35446e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90679e-01\tAbsError: 1.72457e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.87899e-01\tAbsError: 1.62989e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.95382e-02\tAbsError: 3.07632e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.75905e-02\tAbsError: 6.14178e+11\n", - " Region: \"zone_1\"\tRelError: 1.87871e-04\tAbsError: 5.35919e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87871e-04\tAbsError: 5.35919e-06\n", - " Region: \"zone_3\"\tRelError: 8.74026e-02\tAbsError: 6.14178e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.70791e-02\tAbsError: 2.57149e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.08574e-04\tAbsError: 3.57029e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49985e-05\tAbsError: 5.65537e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.22827e+00\tAbsError: 5.37376e+13\n", - " Region: \"zone_1\"\tRelError: 7.15835e-02\tAbsError: 2.58629e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.15835e-02\tAbsError: 2.58629e-02\n", - " Region: \"zone_3\"\tRelError: 1.15669e+00\tAbsError: 5.37376e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.48602e-01\tAbsError: 3.94447e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.35622e-01\tAbsError: 1.42929e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.24649e-02\tAbsError: 2.58483e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.29005e-01\tAbsError: 2.53945e+12\n", - " Region: \"zone_1\"\tRelError: 2.02409e-02\tAbsError: 1.10525e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.02409e-02\tAbsError: 1.10525e-02\n", - " Region: \"zone_3\"\tRelError: 4.08764e-01\tAbsError: 2.53945e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.94460e-01\tAbsError: 1.43263e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.38075e-02\tAbsError: 1.10682e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.04965e-02\tAbsError: 1.10525e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.35717e+02\tAbsError: 9.03749e+15\n", - " Region: \"zone_1\"\tRelError: 1.33965e+02\tAbsError: 4.26142e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33965e+02\tAbsError: 4.26142e-02\n", - " Region: \"zone_3\"\tRelError: 1.75243e+00\tAbsError: 9.03749e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.07326e-01\tAbsError: 5.40486e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.07307e-01\tAbsError: 3.63263e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37792e-01\tAbsError: 4.26142e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.10405e+00\tAbsError: 2.84626e+13\n", - " Region: \"zone_1\"\tRelError: 5.09442e-02\tAbsError: 2.58970e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.09442e-02\tAbsError: 2.58970e-02\n", - " Region: \"zone_3\"\tRelError: 1.05311e+00\tAbsError: 2.84626e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14915e-01\tAbsError: 1.81960e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.86897e-01\tAbsError: 1.02666e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.12979e-02\tAbsError: 2.58565e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.95471e-06\tAbsError: 1.37438e+07\n", - " Region: \"zone_1\"\tRelError: 1.96051e-09\tAbsError: 6.30623e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.96051e-09\tAbsError: 6.30623e-11\n", - " Region: \"zone_3\"\tRelError: 9.95275e-06\tAbsError: 1.37438e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.91827e-06\tAbsError: 3.21256e+06\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.43047e-08\tAbsError: 1.05312e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.78389e-10\tAbsError: 6.72816e-11\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:05\u001b[0m.\u001b[1;36m405\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.5\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Iteration: 3\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - " Device: \"device\"\tRelError: 4.52390e-01\tAbsError: 6.45583e+12\n", - " Region: \"zone_1\"\tRelError: 2.69601e-02\tAbsError: 1.13359e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.69601e-02\tAbsError: 1.13359e-02\n", - " Region: \"zone_3\"\tRelError: 4.25430e-01\tAbsError: 6.45583e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.99644e-01\tAbsError: 2.39511e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.86014e-02\tAbsError: 4.06072e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.71842e-02\tAbsError: 1.13359e-02\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.05316e-01\tAbsError: 5.79540e+10\n", - " Region: \"zone_1\"\tRelError: 7.85176e-06\tAbsError: 1.71162e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 7.85176e-06\tAbsError: 1.71162e-07\n", - " Region: \"zone_3\"\tRelError: 1.05308e-01\tAbsError: 5.79540e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05226e-01\tAbsError: 5.43885e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.20943e-05\tAbsError: 5.25152e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.65925e-07\tAbsError: 1.77014e-07\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.33167e+00\tAbsError: 4.68608e+14\n", - " Region: \"zone_1\"\tRelError: 6.88547e-01\tAbsError: 3.27220e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.88547e-01\tAbsError: 3.27220e-02\n", - " Region: \"zone_3\"\tRelError: 1.64312e+00\tAbsError: 4.68608e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.14298e-01\tAbsError: 3.32999e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.10136e-01\tAbsError: 1.35609e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18685e-01\tAbsError: 3.27220e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.87738e-01\tAbsError: 1.50257e+12\n", - " Region: \"zone_1\"\tRelError: 1.63299e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.63299e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.71408e-01\tAbsError: 1.50257e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88723e-01\tAbsError: 2.92089e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.61472e-02\tAbsError: 1.21048e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65380e-02\tAbsError: 9.16534e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.09153e-01\tAbsError: 6.52102e+11\n", - " Region: \"zone_1\"\tRelError: 1.28718e-04\tAbsError: 6.46805e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28718e-04\tAbsError: 6.46805e-06\n", - " Region: \"zone_3\"\tRelError: 1.09024e-01\tAbsError: 6.52102e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.08417e-01\tAbsError: 3.48257e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.86286e-04\tAbsError: 3.03845e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.10131e-05\tAbsError: 7.10532e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.94336e-07\tAbsError: 3.10240e+04\n", - " Region: \"zone_1\"\tRelError: 2.64468e-12\tAbsError: 8.09012e-14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.64468e-12\tAbsError: 8.09012e-14\n", - " Region: \"zone_3\"\tRelError: 5.94333e-07\tAbsError: 3.10240e+04\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94222e-07\tAbsError: 1.55669e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10786e-10\tAbsError: 1.54571e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49149e-13\tAbsError: 8.55910e-14\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:05\u001b[0m.\u001b[1;36m882\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:05\u001b[0m.\u001b[1;36m882\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.41874999999999996\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.87556e+01\tAbsError: 8.34767e+15\n", - " Region: \"zone_1\"\tRelError: 6.70313e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.70313e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.72426e+00\tAbsError: 8.34767e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94570e-01\tAbsError: 4.96926e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94551e-01\tAbsError: 3.37841e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35138e-01\tAbsError: 4.09542e-02\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.83071e+00\tAbsError: 1.53197e+14\n", - " Region: \"zone_1\"\tRelError: 6.21775e-01\tAbsError: 2.56371e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.21775e-01\tAbsError: 2.56371e-02\n", - " Region: \"zone_3\"\tRelError: 1.20894e+00\tAbsError: 1.53197e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.54286e-01\tAbsError: 8.99731e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.51877e-01\tAbsError: 6.32239e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02774e-01\tAbsError: 2.58431e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.45285e-05\tAbsError: 1.94103e+07\n", - " Region: \"zone_1\"\tRelError: 2.89450e-09\tAbsError: 1.67720e-10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.89450e-09\tAbsError: 1.67720e-10\n", - " Region: \"zone_3\"\tRelError: 1.45256e-05\tAbsError: 1.94103e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.44344e-05\tAbsError: 1.03183e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.06255e-08\tAbsError: 9.09197e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.79572e-10\tAbsError: 1.93371e-10\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.96849e-02\tAbsError: 2.07362e+12\n", - " Region: \"zone_1\"\tRelError: 7.02885e-04\tAbsError: 1.90198e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.02885e-04\tAbsError: 1.90198e-05\n", - " Region: \"zone_3\"\tRelError: 8.89820e-02\tAbsError: 2.07362e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.78375e-02\tAbsError: 8.90891e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10276e-03\tAbsError: 1.18273e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.17313e-05\tAbsError: 1.96984e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:06\u001b[0m.\u001b[1;36m182\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:06\u001b[0m.\u001b[1;36m182\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5285714285714286\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.18244e+00\tAbsError: 3.45808e+14\n", - " Region: \"zone_1\"\tRelError: 5.95786e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95786e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.58666e+00\tAbsError: 3.45808e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91491e-01\tAbsError: 2.56450e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.87672e-01\tAbsError: 8.93573e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07491e-01\tAbsError: 3.07632e-02\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 4.07391e+00\tAbsError: 8.96454e+15\n", - " Region: \"zone_1\"\tRelError: 2.34478e+00\tAbsError: 4.22091e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.34478e+00\tAbsError: 4.22091e-02\n", - " Region: \"zone_3\"\tRelError: 1.72912e+00\tAbsError: 8.96454e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.04290e-01\tAbsError: 5.24055e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.04276e-01\tAbsError: 3.72398e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20557e-01\tAbsError: 4.22091e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.40982e-05\tAbsError: 1.92019e+08\n", - " Region: \"zone_1\"\tRelError: 4.03284e-08\tAbsError: 1.17477e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 4.03284e-08\tAbsError: 1.17477e-09\n", - " Region: \"zone_3\"\tRelError: 3.40579e-05\tAbsError: 1.92019e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.36060e-05\tAbsError: 5.55442e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.49187e-07\tAbsError: 1.36475e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.67835e-09\tAbsError: 1.26430e-09\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:06\u001b[0m.\u001b[1;36m509\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.4\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 2\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 1.19247e+00\tAbsError: 8.54805e+13\n", - " Region: \"zone_1\"\tRelError: 9.12229e-02\tAbsError: 2.58978e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.12229e-02\tAbsError: 2.58978e-02\n", - " Region: \"zone_3\"\tRelError: 1.10125e+00\tAbsError: 8.54805e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14822e-01\tAbsError: 5.48784e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.98551e-01\tAbsError: 3.06021e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.78742e-02\tAbsError: 2.58989e-02\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 9.07379e-01\tAbsError: 7.09930e+13\n", - " Region: \"zone_1\"\tRelError: 4.33630e-01\tAbsError: 1.17190e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.33630e-01\tAbsError: 1.17190e-02\n", - " Region: \"zone_3\"\tRelError: 4.73749e-01\tAbsError: 7.09930e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.05206e-01\tAbsError: 3.39039e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.29527e-01\tAbsError: 3.70891e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.90150e-02\tAbsError: 1.17190e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.77164e+01\tAbsError: 8.93909e+15\n", - " Region: \"zone_1\"\tRelError: 2.59693e+01\tAbsError: 4.23835e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.59693e+01\tAbsError: 4.23835e-02\n", - " Region: \"zone_3\"\tRelError: 1.74706e+00\tAbsError: 8.93909e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.05602e-01\tAbsError: 5.34299e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.05583e-01\tAbsError: 3.59610e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35874e-01\tAbsError: 4.23835e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.70349e+00\tAbsError: 3.69951e+14\n", - " Region: \"zone_1\"\tRelError: 9.90112e-02\tAbsError: 3.22432e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.90112e-02\tAbsError: 3.22432e-02\n", - " Region: \"zone_3\"\tRelError: 1.60448e+00\tAbsError: 3.69951e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.08368e-01\tAbsError: 2.32085e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.05186e-01\tAbsError: 1.37866e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.09261e-02\tAbsError: 3.22432e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.72006e-01\tAbsError: 1.34673e+13\n", - " Region: \"zone_1\"\tRelError: 5.38023e-02\tAbsError: 8.38576e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.38023e-02\tAbsError: 8.38576e-05\n", - " Region: \"zone_3\"\tRelError: 1.18204e-01\tAbsError: 1.34673e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.11488e-01\tAbsError: 6.83755e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.33436e-03\tAbsError: 6.62974e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.82194e-04\tAbsError: 9.17770e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.52183e-01\tAbsError: 2.83225e+13\n", - " Region: \"zone_1\"\tRelError: 5.95279e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95279e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.92655e-01\tAbsError: 2.83225e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.85164e-01\tAbsError: 1.34603e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.99920e-02\tAbsError: 1.48622e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.74993e-02\tAbsError: 9.16534e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.21707e+00\tAbsError: 5.14100e+13\n", - " Region: \"zone_1\"\tRelError: 7.05172e-02\tAbsError: 2.58330e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.05172e-02\tAbsError: 2.58330e-02\n", - " Region: \"zone_3\"\tRelError: 1.14655e+00\tAbsError: 5.14100e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.44586e-01\tAbsError: 3.76870e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.30328e-01\tAbsError: 1.37229e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.16401e-02\tAbsError: 2.58529e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.47389e+00\tAbsError: 4.49152e+14\n", - " Region: \"zone_1\"\tRelError: 8.38694e-01\tAbsError: 3.24492e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.38694e-01\tAbsError: 3.24492e-02\n", - " Region: \"zone_3\"\tRelError: 1.63520e+00\tAbsError: 4.49152e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.11302e-01\tAbsError: 3.21890e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.07074e-01\tAbsError: 1.27262e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16820e-01\tAbsError: 3.24492e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.56244e+00\tAbsError: 8.45570e+15\n", - " Region: \"zone_1\"\tRelError: 3.85573e+00\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.85573e+00\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.70670e+00\tAbsError: 8.45570e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94571e-01\tAbsError: 4.92914e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94557e-01\tAbsError: 3.52655e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17574e-01\tAbsError: 4.09542e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.20842e-04\tAbsError: 2.15808e+10\n", - " Region: \"zone_1\"\tRelError: 1.03547e-04\tAbsError: 1.76087e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03547e-04\tAbsError: 1.76087e-07\n", - " Region: \"zone_3\"\tRelError: 2.17295e-04\tAbsError: 2.15808e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07574e-04\tAbsError: 1.44905e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.92433e-06\tAbsError: 7.09027e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 7.96777e-07\tAbsError: 1.90604e-07\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.52644e-02\tAbsError: 2.55837e+12\n", - " Region: \"zone_1\"\tRelError: 7.16041e-03\tAbsError: 2.30338e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.16041e-03\tAbsError: 2.30338e-05\n", - " Region: \"zone_3\"\tRelError: 8.81040e-02\tAbsError: 2.55837e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.71797e-02\tAbsError: 1.35830e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.38768e-04\tAbsError: 1.20006e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.54583e-05\tAbsError: 2.40500e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.47221e+00\tAbsError: 1.38206e+14\n", - " Region: \"zone_1\"\tRelError: 2.77597e-01\tAbsError: 2.57923e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.77597e-01\tAbsError: 2.57923e-02\n", - " Region: \"zone_3\"\tRelError: 1.19461e+00\tAbsError: 1.38206e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.48886e-01\tAbsError: 8.13987e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.44879e-01\tAbsError: 5.68069e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00850e-01\tAbsError: 2.58970e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.67739e+00\tAbsError: 3.26551e+14\n", - " Region: \"zone_1\"\tRelError: 1.13651e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13651e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.56374e+00\tAbsError: 3.26551e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91179e-01\tAbsError: 1.98410e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.87607e-01\tAbsError: 1.28141e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.49517e-02\tAbsError: 3.07632e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 9.98204e-10\tAbsError: 6.88449e+04\n", - " Region: \"zone_1\"\tRelError: 2.51168e-10\tAbsError: 4.66791e-13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.51168e-10\tAbsError: 4.66791e-13\n", - " Region: \"zone_3\"\tRelError: 7.47037e-10\tAbsError: 6.88449e+04\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16501e-10\tAbsError: 4.91562e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.84705e-11\tAbsError: 1.96886e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06479e-12\tAbsError: 4.91347e-13\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:07\u001b[0m.\u001b[1;36m651\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:07\u001b[0m.\u001b[1;36m651\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6416666666666667\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Iteration: 3\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 4.40857e-01\tAbsError: 6.00505e+12\n", - " Region: \"zone_1\"\tRelError: 2.60893e-02\tAbsError: 1.10525e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.60893e-02\tAbsError: 1.10525e-02\n", - " Region: \"zone_3\"\tRelError: 4.14768e-01\tAbsError: 6.00505e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.94016e-01\tAbsError: 2.13559e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.44396e-02\tAbsError: 3.86946e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.63124e-02\tAbsError: 1.10525e-02\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.58292e-05\tAbsError: 4.59514e+08\n", - " Region: \"zone_1\"\tRelError: 9.81723e-07\tAbsError: 3.18909e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.81723e-07\tAbsError: 3.18909e-09\n", - " Region: \"zone_3\"\tRelError: 3.48474e-05\tAbsError: 4.59514e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.45053e-05\tAbsError: 3.33895e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.30263e-07\tAbsError: 1.25619e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18628e-08\tAbsError: 3.31754e-09\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.13583e+00\tAbsError: 3.35166e+13\n", - " Region: \"zone_1\"\tRelError: 6.49986e-02\tAbsError: 2.58787e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.49986e-02\tAbsError: 2.58787e-02\n", - " Region: \"zone_3\"\tRelError: 1.07083e+00\tAbsError: 3.35166e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14794e-01\tAbsError: 2.31889e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.90894e-01\tAbsError: 1.03277e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.51440e-02\tAbsError: 2.58923e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:07\u001b[0m.\u001b[1;36m859\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.6\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.79000e-01\tAbsError: 6.23803e+13\n", - " Region: \"zone_1\"\tRelError: 1.22093e-01\tAbsError: 1.13359e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.22093e-01\tAbsError: 1.13359e-02\n", - " Region: \"zone_3\"\tRelError: 4.56906e-01\tAbsError: 6.23803e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.98027e-01\tAbsError: 2.99509e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.21690e-01\tAbsError: 3.24293e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.71902e-02\tAbsError: 1.13359e-02\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.06340e-01\tAbsError: 7.39211e+11\n", - " Region: \"zone_1\"\tRelError: 1.63325e-04\tAbsError: 7.71560e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.63325e-04\tAbsError: 7.71560e-06\n", - " Region: \"zone_3\"\tRelError: 1.06177e-01\tAbsError: 7.39211e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05521e-01\tAbsError: 4.07148e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.31950e-04\tAbsError: 3.32064e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.43075e-05\tAbsError: 8.33799e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.97006e-01\tAbsError: 3.97798e+12\n", - " Region: \"zone_1\"\tRelError: 2.05644e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.05644e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.76441e-01\tAbsError: 3.97798e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88505e-01\tAbsError: 1.01871e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.71832e-02\tAbsError: 2.95927e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.07533e-02\tAbsError: 9.16534e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 4.25793e+02\tAbsError: 9.01354e+15\n", - " Region: \"zone_1\"\tRelError: 4.23991e+02\tAbsError: 4.26142e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.23991e+02\tAbsError: 4.26142e-02\n", - " Region: \"zone_3\"\tRelError: 1.80182e+00\tAbsError: 9.01354e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.07310e-01\tAbsError: 5.29382e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.07259e-01\tAbsError: 3.71973e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87247e-01\tAbsError: 4.26142e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.29396e-01\tAbsError: 1.11086e+13\n", - " Region: \"zone_1\"\tRelError: 1.63271e-02\tAbsError: 7.10138e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.63271e-02\tAbsError: 7.10138e-05\n", - " Region: \"zone_3\"\tRelError: 1.13069e-01\tAbsError: 1.11086e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07610e-01\tAbsError: 5.70070e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.13801e-03\tAbsError: 5.40789e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.20942e-04\tAbsError: 7.85800e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.78346e-05\tAbsError: 2.12339e+07\n", - " Region: \"zone_1\"\tRelError: 2.08951e-09\tAbsError: 1.24570e-10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.08951e-09\tAbsError: 1.24570e-10\n", - " Region: \"zone_3\"\tRelError: 1.78325e-05\tAbsError: 2.12339e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.77106e-05\tAbsError: 9.80122e+06\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.21506e-07\tAbsError: 1.14326e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 4.37674e-10\tAbsError: 1.47768e-10\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:08\u001b[0m.\u001b[1;36m417\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.525\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.75905e-02\tAbsError: 6.14178e+11\n", - " Region: \"zone_1\"\tRelError: 1.87871e-04\tAbsError: 5.35919e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87871e-04\tAbsError: 5.35919e-06\n", - " Region: \"zone_3\"\tRelError: 8.74026e-02\tAbsError: 6.14178e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.70791e-02\tAbsError: 2.57149e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.08574e-04\tAbsError: 3.57029e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49985e-05\tAbsError: 5.65537e-06\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.45236e+01\tAbsError: 8.31884e+15\n", - " Region: \"zone_1\"\tRelError: 1.27753e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.27753e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.74827e+00\tAbsError: 8.31884e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94561e-01\tAbsError: 4.96691e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94525e-01\tAbsError: 3.35193e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.59186e-01\tAbsError: 4.09542e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.98520e-04\tAbsError: 1.42293e+10\n", - " Region: \"zone_1\"\tRelError: 2.60200e-05\tAbsError: 1.21066e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.60200e-05\tAbsError: 1.21066e-07\n", - " Region: \"zone_3\"\tRelError: 1.72500e-04\tAbsError: 1.42293e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.66144e-04\tAbsError: 9.64960e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.81290e-06\tAbsError: 4.57971e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 5.42901e-07\tAbsError: 1.32074e-07\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 4.09319e+00\tAbsError: 1.95003e+15\n", - " Region: \"zone_1\"\tRelError: 2.42608e+00\tAbsError: 3.27220e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.42608e+00\tAbsError: 3.27220e-02\n", - " Region: \"zone_3\"\tRelError: 1.66711e+00\tAbsError: 1.95003e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.14648e-01\tAbsError: 1.08906e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.00229e-01\tAbsError: 8.60967e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.52238e-01\tAbsError: 3.27220e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.95471e-06\tAbsError: 1.37438e+07\n", - " Region: \"zone_1\"\tRelError: 1.96050e-09\tAbsError: 6.30624e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.96050e-09\tAbsError: 6.30624e-11\n", - " Region: \"zone_3\"\tRelError: 9.95275e-06\tAbsError: 1.37438e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.91827e-06\tAbsError: 3.21255e+06\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.43047e-08\tAbsError: 1.05312e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.78389e-10\tAbsError: 6.72817e-11\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.91465e+00\tAbsError: 8.82588e+14\n", - " Region: \"zone_1\"\tRelError: 3.03324e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.03324e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.61133e+00\tAbsError: 8.82588e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91758e-01\tAbsError: 5.05615e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83634e-01\tAbsError: 3.76973e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35939e-01\tAbsError: 3.07632e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.53033e+01\tAbsError: 8.86526e+15\n", - " Region: \"zone_1\"\tRelError: 1.35603e+01\tAbsError: 4.22091e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35603e+01\tAbsError: 4.22091e-02\n", - " Region: \"zone_3\"\tRelError: 1.74298e+00\tAbsError: 8.86526e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.04288e-01\tAbsError: 5.29650e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.04269e-01\tAbsError: 3.56876e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.34425e-01\tAbsError: 4.22091e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:08\u001b[0m.\u001b[1;36m931\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.5\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 4.55085e+00\tAbsError: 1.52020e+15\n", - " Region: \"zone_1\"\tRelError: 3.34328e+00\tAbsError: 2.57301e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.34328e+00\tAbsError: 2.57301e-02\n", - " Region: \"zone_3\"\tRelError: 1.20757e+00\tAbsError: 1.52020e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.57600e-01\tAbsError: 6.59311e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.06886e-01\tAbsError: 8.60885e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43086e-01\tAbsError: 2.58820e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.17968e-10\tAbsError: 3.68902e+04\n", - " Region: \"zone_1\"\tRelError: 4.10813e-11\tAbsError: 2.01096e-13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.10813e-11\tAbsError: 2.01096e-13\n", - " Region: \"zone_3\"\tRelError: 3.76886e-10\tAbsError: 3.68902e+04\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.64075e-10\tAbsError: 2.06737e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.19115e-11\tAbsError: 1.62165e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 8.99293e-13\tAbsError: 2.18109e-13\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.95950e+00\tAbsError: 4.34971e+14\n", - " Region: \"zone_1\"\tRelError: 3.29888e-01\tAbsError: 3.22432e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.29888e-01\tAbsError: 3.22432e-02\n", - " Region: \"zone_3\"\tRelError: 1.62961e+00\tAbsError: 4.34971e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.09020e-01\tAbsError: 3.13542e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.04723e-01\tAbsError: 1.21429e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15866e-01\tAbsError: 3.22432e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.34467e+00\tAbsError: 5.44154e+14\n", - " Region: \"zone_1\"\tRelError: 2.20632e-01\tAbsError: 2.58931e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20632e-01\tAbsError: 2.58931e-02\n", - " Region: \"zone_3\"\tRelError: 1.12404e+00\tAbsError: 5.44154e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.17234e-01\tAbsError: 2.66383e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.89208e-01\tAbsError: 2.77771e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17596e-01\tAbsError: 2.58999e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:09\u001b[0m.\u001b[1;36m267\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:09\u001b[0m.\u001b[1;36m267\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6357142857142857\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 9.15949e-01\tAbsError: 7.10976e+14\n", - " Region: \"zone_1\"\tRelError: 3.77162e-01\tAbsError: 1.17190e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.77162e-01\tAbsError: 1.17190e-02\n", - " Region: \"zone_3\"\tRelError: 5.38787e-01\tAbsError: 7.10976e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.04705e-01\tAbsError: 3.54664e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.83282e-01\tAbsError: 3.56312e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.07995e-02\tAbsError: 1.17190e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.87556e+01\tAbsError: 8.34767e+15\n", - " Region: \"zone_1\"\tRelError: 6.70313e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.70313e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.72426e+00\tAbsError: 8.34767e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94570e-01\tAbsError: 4.96926e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94551e-01\tAbsError: 3.37841e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35138e-01\tAbsError: 4.09542e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.29903e+00\tAbsError: 1.28270e+14\n", - " Region: \"zone_1\"\tRelError: 1.15748e-01\tAbsError: 2.56301e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15748e-01\tAbsError: 2.56301e-02\n", - " Region: \"zone_3\"\tRelError: 1.18328e+00\tAbsError: 1.28270e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.44766e-01\tAbsError: 7.58073e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.39540e-01\tAbsError: 5.24626e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.89722e-02\tAbsError: 2.57921e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.58303e-01\tAbsError: 2.58889e+14\n", - " Region: \"zone_1\"\tRelError: 3.50075e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.50075e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 4.23296e-01\tAbsError: 2.58889e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.70968e-01\tAbsError: 1.16796e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.16540e-01\tAbsError: 1.42093e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.57873e-02\tAbsError: 9.16534e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.67979e+01\tAbsError: 8.91230e+15\n", - " Region: \"zone_1\"\tRelError: 2.50038e+01\tAbsError: 4.23835e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.50038e+01\tAbsError: 4.23835e-02\n", - " Region: \"zone_3\"\tRelError: 1.79419e+00\tAbsError: 8.91230e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.05587e-01\tAbsError: 5.25148e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.05539e-01\tAbsError: 3.66082e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.83062e-01\tAbsError: 4.23835e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.18244e+00\tAbsError: 3.45808e+14\n", - " Region: \"zone_1\"\tRelError: 5.95786e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95786e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.58666e+00\tAbsError: 3.45808e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91491e-01\tAbsError: 2.56450e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.87672e-01\tAbsError: 8.93573e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07491e-01\tAbsError: 3.07632e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 3.12901e-01\tAbsError: 1.51064e+14\n", - " Region: \"zone_1\"\tRelError: 1.87797e-01\tAbsError: 3.92494e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87797e-01\tAbsError: 3.92494e-04\n", - " Region: \"zone_3\"\tRelError: 1.25105e-01\tAbsError: 1.51064e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02833e-01\tAbsError: 8.54481e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.00100e-02\tAbsError: 6.56163e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.26152e-03\tAbsError: 3.94188e-04\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.00758e-01\tAbsError: 5.64850e+13\n", - " Region: \"zone_1\"\tRelError: 5.60005e-02\tAbsError: 1.10525e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.60005e-02\tAbsError: 1.10525e-02\n", - " Region: \"zone_3\"\tRelError: 4.44758e-01\tAbsError: 5.64850e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.92751e-01\tAbsError: 2.72341e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.16145e-01\tAbsError: 2.92508e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.58616e-02\tAbsError: 1.10525e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.06225e-01\tAbsError: 3.99157e+13\n", - " Region: \"zone_1\"\tRelError: 1.41229e-02\tAbsError: 1.62376e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41229e-02\tAbsError: 1.62376e-04\n", - " Region: \"zone_3\"\tRelError: 9.21025e-02\tAbsError: 3.99157e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.51238e-02\tAbsError: 2.25076e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.14819e-03\tAbsError: 1.74081e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.30563e-04\tAbsError: 1.67642e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.19247e+00\tAbsError: 8.54805e+13\n", - " Region: \"zone_1\"\tRelError: 9.12229e-02\tAbsError: 2.58978e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.12229e-02\tAbsError: 2.58978e-02\n", - " Region: \"zone_3\"\tRelError: 1.10125e+00\tAbsError: 8.54805e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14822e-01\tAbsError: 5.48784e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.98551e-01\tAbsError: 3.06021e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.78742e-02\tAbsError: 2.58989e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.16759e-01\tAbsError: 9.63744e+12\n", - " Region: \"zone_1\"\tRelError: 7.49074e-03\tAbsError: 6.25327e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.49074e-03\tAbsError: 6.25327e-05\n", - " Region: \"zone_3\"\tRelError: 1.09268e-01\tAbsError: 9.63744e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04636e-01\tAbsError: 4.92578e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.35150e-03\tAbsError: 4.71165e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.81133e-04\tAbsError: 6.96737e-05\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 9.91832e+00\tAbsError: 1.75141e+15\n", - " Region: \"zone_1\"\tRelError: 8.25926e+00\tAbsError: 3.24492e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.25926e+00\tAbsError: 3.24492e-02\n", - " Region: \"zone_3\"\tRelError: 1.65906e+00\tAbsError: 1.75141e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.11671e-01\tAbsError: 9.86267e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.98064e-01\tAbsError: 7.65145e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49326e-01\tAbsError: 3.24493e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.77778e-04\tAbsError: 4.11734e+10\n", - " Region: \"zone_1\"\tRelError: 2.64497e-05\tAbsError: 2.72288e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.64497e-05\tAbsError: 2.72288e-07\n", - " Region: \"zone_3\"\tRelError: 1.51329e-04\tAbsError: 4.11734e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47345e-04\tAbsError: 2.82922e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.54557e-06\tAbsError: 1.28813e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43781e-06\tAbsError: 2.89039e-07\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.90192e-03\tAbsError: 5.23223e+11\n", - " Region: \"zone_1\"\tRelError: 1.45474e-03\tAbsError: 2.69983e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.45474e-03\tAbsError: 2.69983e-06\n", - " Region: \"zone_3\"\tRelError: 4.47183e-04\tAbsError: 5.23223e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.96135e-04\tAbsError: 3.92343e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.50366e-05\tAbsError: 1.30880e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60123e-05\tAbsError: 2.77806e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.52183e-01\tAbsError: 2.83225e+13\n", - " Region: \"zone_1\"\tRelError: 5.95279e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95279e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.92655e-01\tAbsError: 2.83225e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.85164e-01\tAbsError: 1.34603e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.99920e-02\tAbsError: 1.48622e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.74993e-02\tAbsError: 9.16534e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.53636e-04\tAbsError: 1.02507e+10\n", - " Region: \"zone_1\"\tRelError: 1.02124e-05\tAbsError: 9.04311e-08\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02124e-05\tAbsError: 9.04311e-08\n", - " Region: \"zone_3\"\tRelError: 1.43423e-04\tAbsError: 1.02507e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38889e-04\tAbsError: 7.00540e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.13077e-06\tAbsError: 3.24531e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 4.03096e-07\tAbsError: 9.92951e-08\n", - "Iteration: 4\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.52644e-02\tAbsError: 2.55837e+12\n", - " Region: \"zone_1\"\tRelError: 7.16041e-03\tAbsError: 2.30338e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.16041e-03\tAbsError: 2.30338e-05\n", - " Region: \"zone_3\"\tRelError: 8.81040e-02\tAbsError: 2.55837e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.71797e-02\tAbsError: 1.35830e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.38768e-04\tAbsError: 1.20006e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.54583e-05\tAbsError: 2.40500e-05\n", - " Device: \"device\"\tRelError: 1.94888e+00\tAbsError: 1.31586e+15\n", - " Region: \"zone_1\"\tRelError: 7.52860e-01\tAbsError: 2.57556e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.52860e-01\tAbsError: 2.57556e-02\n", - " Region: \"zone_3\"\tRelError: 1.19602e+00\tAbsError: 1.31586e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.52100e-01\tAbsError: 5.76348e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.05857e-01\tAbsError: 7.39516e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.38064e-01\tAbsError: 2.55829e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.06514e-10\tAbsError: 5.16648e+04\n", - " Region: \"zone_1\"\tRelError: 2.76360e-11\tAbsError: 2.68296e-13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.76360e-11\tAbsError: 2.68296e-13\n", - " Region: \"zone_3\"\tRelError: 1.78878e-10\tAbsError: 5.16648e+04\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.71768e-10\tAbsError: 3.00847e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.70903e-12\tAbsError: 2.15800e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40086e-12\tAbsError: 2.79958e-13\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:10\u001b[0m.\u001b[1;36m829\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.7000000000000001\u001b[0m\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Iteration: 6\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 3.03122e-08\tAbsError: 8.48023e+06\n", - " Region: \"zone_1\"\tRelError: 2.36894e-08\tAbsError: 4.35270e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.36894e-08\tAbsError: 4.35270e-11\n", - " Region: \"zone_3\"\tRelError: 6.62277e-09\tAbsError: 8.48023e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.47509e-09\tAbsError: 5.20890e+06\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.80542e-10\tAbsError: 3.27133e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.67134e-10\tAbsError: 4.62569e-11\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.30961e-10\tAbsError: 3.18796e+04\n", - " Region: \"zone_1\"\tRelError: 1.14293e-11\tAbsError: 1.05399e-13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14293e-11\tAbsError: 1.05399e-13\n", - " Region: \"zone_3\"\tRelError: 2.19532e-10\tAbsError: 3.18796e+04\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13023e-10\tAbsError: 1.58426e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.04015e-12\tAbsError: 1.60370e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.68049e-13\tAbsError: 1.14963e-13\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:11\u001b[0m.\u001b[1;36m016\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: 0.75\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:11\u001b[0m.\u001b[1;36m071\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.63125\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Iteration: 3\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 6.21302e-01\tAbsError: 6.18803e+14\n", - " Region: \"zone_1\"\tRelError: 1.01501e-01\tAbsError: 1.13359e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01501e-01\tAbsError: 1.13359e-02\n", - " Region: \"zone_3\"\tRelError: 5.19801e-01\tAbsError: 6.18803e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.97738e-01\tAbsError: 3.04418e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.73552e-01\tAbsError: 3.14385e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.85106e-02\tAbsError: 1.13359e-02\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.58292e-05\tAbsError: 4.59514e+08\n", - " Region: \"zone_1\"\tRelError: 9.81723e-07\tAbsError: 3.18909e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.81723e-07\tAbsError: 3.18909e-09\n", - " Region: \"zone_3\"\tRelError: 3.48474e-05\tAbsError: 4.59514e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.45053e-05\tAbsError: 3.33895e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.30263e-07\tAbsError: 1.25619e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18628e-08\tAbsError: 3.31754e-09\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:11\u001b[0m.\u001b[1;36m201\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.6\u001b[0m \n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "number of equations 22602\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.22389e+00\tAbsError: 8.51989e+15\n", - " Region: \"zone_1\"\tRelError: 5.41698e+00\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.41698e+00\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.80691e+00\tAbsError: 8.51989e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94484e-01\tAbsError: 4.63675e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94370e-01\tAbsError: 3.88315e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18056e-01\tAbsError: 4.09542e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.06329e-01\tAbsError: 1.29092e+14\n", - " Region: \"zone_1\"\tRelError: 8.73098e-02\tAbsError: 3.61435e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 8.73098e-02\tAbsError: 3.61435e-04\n", - " Region: \"zone_3\"\tRelError: 1.19019e-01\tAbsError: 1.29092e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.90943e-02\tAbsError: 7.25515e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.78743e-02\tAbsError: 5.65410e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.05040e-03\tAbsError: 3.64470e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.36839e+00\tAbsError: 1.17799e+16\n", - " Region: \"zone_1\"\tRelError: 6.49050e+00\tAbsError: 4.26142e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.49050e+00\tAbsError: 4.26142e-02\n", - " Region: \"zone_3\"\tRelError: 1.87789e+00\tAbsError: 1.17799e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.07111e-01\tAbsError: 6.02482e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.06929e-01\tAbsError: 5.75508e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.63853e-01\tAbsError: 4.26142e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.83930e+01\tAbsError: 8.83697e+15\n", - " Region: \"zone_1\"\tRelError: 3.66046e+01\tAbsError: 4.22091e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.66046e+01\tAbsError: 4.22091e-02\n", - " Region: \"zone_3\"\tRelError: 1.78846e+00\tAbsError: 8.83697e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.04274e-01\tAbsError: 5.21875e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.04228e-01\tAbsError: 3.61823e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.79960e-01\tAbsError: 4.22091e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.89109e+00\tAbsError: 5.48219e+15\n", - " Region: \"zone_1\"\tRelError: 2.49390e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49390e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.64170e+00\tAbsError: 5.48219e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90716e-01\tAbsError: 2.59543e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.66285e-01\tAbsError: 2.88675e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.84697e-01\tAbsError: 3.07632e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.45236e+01\tAbsError: 8.31884e+15\n", - " Region: \"zone_1\"\tRelError: 1.27753e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.27753e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.74827e+00\tAbsError: 8.31884e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94561e-01\tAbsError: 4.96691e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94525e-01\tAbsError: 3.35193e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.59186e-01\tAbsError: 4.09542e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.00380e-03\tAbsError: 4.00864e+11\n", - " Region: \"zone_1\"\tRelError: 6.01786e-04\tAbsError: 2.19773e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.01786e-04\tAbsError: 2.19773e-06\n", - " Region: \"zone_3\"\tRelError: 4.02017e-04\tAbsError: 4.00864e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61344e-04\tAbsError: 3.02524e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.77744e-05\tAbsError: 9.83399e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28989e-05\tAbsError: 2.28510e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.27347e+00\tAbsError: 1.45254e+16\n", - " Region: \"zone_1\"\tRelError: 5.52729e-01\tAbsError: 3.27220e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.52729e-01\tAbsError: 3.27220e-02\n", - " Region: \"zone_3\"\tRelError: 1.72074e+00\tAbsError: 1.45254e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.12137e-01\tAbsError: 7.08362e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83962e-01\tAbsError: 7.44180e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.24645e-01\tAbsError: 3.27220e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.31531e+00\tAbsError: 1.61409e+15\n", - " Region: \"zone_1\"\tRelError: 1.66184e+00\tAbsError: 3.22432e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66184e+00\tAbsError: 3.22432e-02\n", - " Region: \"zone_3\"\tRelError: 1.65347e+00\tAbsError: 1.61409e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.09389e-01\tAbsError: 9.13798e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.96380e-01\tAbsError: 7.00294e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.47701e-01\tAbsError: 3.22432e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.28809e+00\tAbsError: 4.35524e+15\n", - " Region: \"zone_1\"\tRelError: 1.47109e-01\tAbsError: 2.58916e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.47109e-01\tAbsError: 2.58916e-02\n", - " Region: \"zone_3\"\tRelError: 1.14098e+00\tAbsError: 4.35524e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.22693e-01\tAbsError: 2.04103e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.66769e-01\tAbsError: 2.31421e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51518e-01\tAbsError: 2.53379e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.91465e+00\tAbsError: 8.82588e+14\n", - " Region: \"zone_1\"\tRelError: 3.03324e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.03324e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.61133e+00\tAbsError: 8.82588e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91758e-01\tAbsError: 5.05615e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83634e-01\tAbsError: 3.76973e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35939e-01\tAbsError: 3.07632e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.25937e-08\tAbsError: 5.25364e+06\n", - " Region: \"zone_1\"\tRelError: 7.69679e-09\tAbsError: 2.75782e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 7.69679e-09\tAbsError: 2.75782e-11\n", - " Region: \"zone_3\"\tRelError: 4.89691e-09\tAbsError: 5.25364e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.09704e-09\tAbsError: 3.18003e+06\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.32194e-10\tAbsError: 2.07360e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.67668e-10\tAbsError: 2.96314e-11\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:12\u001b[0m.\u001b[1;36m226\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:12\u001b[0m.\u001b[1;36m226\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7428571428571428\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.46941e+00\tAbsError: 1.18382e+16\n", - " Region: \"zone_1\"\tRelError: 1.96893e-01\tAbsError: 2.58653e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.96893e-01\tAbsError: 2.58653e-02\n", - " Region: \"zone_3\"\tRelError: 1.27252e+00\tAbsError: 1.18382e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.59625e-01\tAbsError: 5.91923e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.16005e-01\tAbsError: 5.91901e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.96893e-01\tAbsError: 2.54683e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.59444e+00\tAbsError: 1.17799e+15\n", - " Region: \"zone_1\"\tRelError: 4.05057e-01\tAbsError: 2.56335e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.05057e-01\tAbsError: 2.56335e-02\n", - " Region: \"zone_3\"\tRelError: 1.18938e+00\tAbsError: 1.17799e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.47890e-01\tAbsError: 5.20055e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.05564e-01\tAbsError: 6.57931e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35930e-01\tAbsError: 2.56335e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.61364e-01\tAbsError: 1.56107e+15\n", - " Region: \"zone_1\"\tRelError: 1.02187e-01\tAbsError: 9.16531e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02187e-01\tAbsError: 9.16531e-03\n", - " Region: \"zone_3\"\tRelError: 4.59177e-01\tAbsError: 1.56107e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52513e-01\tAbsError: 8.30423e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.62306e-01\tAbsError: 7.30643e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.43577e-02\tAbsError: 9.16534e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.34467e+00\tAbsError: 5.44154e+14\n", - " Region: \"zone_1\"\tRelError: 2.20632e-01\tAbsError: 2.58931e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20632e-01\tAbsError: 2.58931e-02\n", - " Region: \"zone_3\"\tRelError: 1.12404e+00\tAbsError: 5.44154e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.17234e-01\tAbsError: 2.66383e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.89208e-01\tAbsError: 2.77771e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17596e-01\tAbsError: 2.58999e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 8.75005e-01\tAbsError: 5.02949e+15\n", - " Region: \"zone_1\"\tRelError: 3.13766e-01\tAbsError: 1.17190e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.13766e-01\tAbsError: 1.17190e-02\n", - " Region: \"zone_3\"\tRelError: 5.61239e-01\tAbsError: 5.02949e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.93040e-01\tAbsError: 2.67220e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.02032e-01\tAbsError: 2.35729e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 6.61665e-02\tAbsError: 1.17190e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.50542e-01\tAbsError: 5.55015e+14\n", - " Region: \"zone_1\"\tRelError: 4.54885e-02\tAbsError: 1.10525e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.54885e-02\tAbsError: 1.10525e-02\n", - " Region: \"zone_3\"\tRelError: 5.05053e-01\tAbsError: 5.55015e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91973e-01\tAbsError: 2.69181e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.66277e-01\tAbsError: 2.85834e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.68029e-02\tAbsError: 1.10525e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.25460e+01\tAbsError: 1.05704e+16\n", - " Region: \"zone_1\"\tRelError: 1.06788e+01\tAbsError: 4.23835e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06788e+01\tAbsError: 4.23835e-02\n", - " Region: \"zone_3\"\tRelError: 1.86719e+00\tAbsError: 1.05704e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.05413e-01\tAbsError: 5.48694e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.05244e-01\tAbsError: 5.08345e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.56536e-01\tAbsError: 4.23835e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.58303e-01\tAbsError: 2.58889e+14\n", - " Region: \"zone_1\"\tRelError: 3.50075e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.50075e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 4.23296e-01\tAbsError: 2.58889e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.70968e-01\tAbsError: 1.16796e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.16540e-01\tAbsError: 1.42093e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.57873e-02\tAbsError: 9.16534e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.02751e-01\tAbsError: 2.88406e+14\n", - " Region: \"zone_1\"\tRelError: 3.60577e-03\tAbsError: 2.29628e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.60577e-03\tAbsError: 2.29628e-04\n", - " Region: \"zone_3\"\tRelError: 9.91456e-02\tAbsError: 2.88406e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.45252e-02\tAbsError: 1.12757e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.29594e-02\tAbsError: 1.75650e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66104e-03\tAbsError: 2.42032e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.51571e-01\tAbsError: 1.03733e+15\n", - " Region: \"zone_1\"\tRelError: 1.05569e-02\tAbsError: 3.64353e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.05569e-02\tAbsError: 3.64353e-04\n", - " Region: \"zone_3\"\tRelError: 1.41014e-01\tAbsError: 1.03733e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03208e-01\tAbsError: 5.91205e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.34455e-02\tAbsError: 4.46122e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43599e-02\tAbsError: 3.90053e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.53315e-01\tAbsError: 1.14074e+14\n", - " Region: \"zone_1\"\tRelError: 3.81468e-02\tAbsError: 3.36449e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.81468e-02\tAbsError: 3.36449e-04\n", - " Region: \"zone_3\"\tRelError: 1.15168e-01\tAbsError: 1.14074e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.71088e-02\tAbsError: 6.46008e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.61726e-02\tAbsError: 4.94737e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88681e-03\tAbsError: 3.40626e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.43197e+00\tAbsError: 1.27930e+16\n", - " Region: \"zone_1\"\tRelError: 1.72392e+00\tAbsError: 3.24492e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72392e+00\tAbsError: 3.24492e-02\n", - " Region: \"zone_3\"\tRelError: 1.70805e+00\tAbsError: 1.27930e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.09557e-01\tAbsError: 6.17279e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.80692e-01\tAbsError: 6.62016e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.17802e-01\tAbsError: 3.24492e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.06225e-01\tAbsError: 3.99157e+13\n", - " Region: \"zone_1\"\tRelError: 1.41229e-02\tAbsError: 1.62376e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41229e-02\tAbsError: 1.62376e-04\n", - " Region: \"zone_3\"\tRelError: 9.21025e-02\tAbsError: 3.99157e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.51238e-02\tAbsError: 2.25076e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.14819e-03\tAbsError: 1.74081e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.30563e-04\tAbsError: 1.67642e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.04675e-04\tAbsError: 3.04021e+11\n", - " Region: \"zone_1\"\tRelError: 6.05493e-06\tAbsError: 5.20454e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 6.05493e-06\tAbsError: 5.20454e-07\n", - " Region: \"zone_3\"\tRelError: 2.98620e-04\tAbsError: 3.04021e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.67672e-04\tAbsError: 1.93910e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.70905e-05\tAbsError: 1.10111e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.85729e-06\tAbsError: 5.51479e-07\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.26215e-04\tAbsError: 3.47082e+12\n", - " Region: \"zone_1\"\tRelError: 1.68789e-05\tAbsError: 1.98685e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.68789e-05\tAbsError: 1.98685e-06\n", - " Region: \"zone_3\"\tRelError: 5.09336e-04\tAbsError: 3.47082e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.10584e-04\tAbsError: 2.32737e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.17851e-05\tAbsError: 1.14346e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.69672e-05\tAbsError: 2.13719e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.03561e-04\tAbsError: 3.24187e+11\n", - " Region: \"zone_1\"\tRelError: 2.35722e-04\tAbsError: 1.82349e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.35722e-04\tAbsError: 1.82349e-06\n", - " Region: \"zone_3\"\tRelError: 3.67839e-04\tAbsError: 3.24187e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.34888e-04\tAbsError: 2.42190e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.23647e-05\tAbsError: 8.19967e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.05865e-05\tAbsError: 1.90371e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.44621e+00\tAbsError: 1.02247e+16\n", - " Region: \"zone_1\"\tRelError: 1.89936e-01\tAbsError: 2.58588e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.89936e-01\tAbsError: 2.58588e-02\n", - " Region: \"zone_3\"\tRelError: 1.25627e+00\tAbsError: 1.02247e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.54587e-01\tAbsError: 5.05790e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.11749e-01\tAbsError: 5.16683e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.89936e-01\tAbsError: 2.56589e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.77778e-04\tAbsError: 4.11734e+10\n", - " Region: \"zone_1\"\tRelError: 2.64497e-05\tAbsError: 2.72288e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.64497e-05\tAbsError: 2.72288e-07\n", - " Region: \"zone_3\"\tRelError: 1.51329e-04\tAbsError: 4.11734e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47345e-04\tAbsError: 2.82922e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.54557e-06\tAbsError: 1.28813e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43781e-06\tAbsError: 2.89039e-07\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.59425e-10\tAbsError: 1.22832e+06\n", - " Region: \"zone_1\"\tRelError: 9.68754e-11\tAbsError: 2.65442e-12\n", - " Equation: \"PotentialEquation\"\tRelError: 9.68754e-11\tAbsError: 2.65442e-12\n", - " Region: \"zone_3\"\tRelError: 6.62549e-10\tAbsError: 1.22832e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38517e-10\tAbsError: 7.28669e+05\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03770e-10\tAbsError: 4.99652e+05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.02616e-11\tAbsError: 2.83300e-12\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:13\u001b[0m.\u001b[1;36m777\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.8\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.03046e-08\tAbsError: 6.74445e+07\n", - " Region: \"zone_1\"\tRelError: 1.11183e-09\tAbsError: 1.07725e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11183e-09\tAbsError: 1.07725e-11\n", - " Region: \"zone_3\"\tRelError: 9.19276e-09\tAbsError: 6.74445e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.60782e-09\tAbsError: 4.48423e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.49946e-10\tAbsError: 2.26022e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 6.34993e-10\tAbsError: 1.07947e-11\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.10130e-09\tAbsError: 3.42919e+06\n", - " Region: \"zone_1\"\tRelError: 2.42570e-09\tAbsError: 1.82661e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.42570e-09\tAbsError: 1.82661e-11\n", - " Region: \"zone_3\"\tRelError: 3.67560e-09\tAbsError: 3.42919e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.12934e-09\tAbsError: 2.08088e+06\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.36715e-10\tAbsError: 1.34831e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09546e-10\tAbsError: 1.96712e-11\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.07504e+00\tAbsError: 4.26851e+15\n", - " Region: \"zone_1\"\tRelError: 5.30266e-01\tAbsError: 1.13358e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.30266e-01\tAbsError: 1.13358e-02\n", - " Region: \"zone_3\"\tRelError: 5.44776e-01\tAbsError: 4.26851e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.85152e-01\tAbsError: 2.27652e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.96788e-01\tAbsError: 1.99199e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 6.28352e-02\tAbsError: 1.13359e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:14\u001b[0m.\u001b[1;36m009\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:14\u001b[0m.\u001b[1;36m009\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7374999999999999\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.06529e-10\tAbsError: 4.94075e+04\n", - " Region: \"zone_1\"\tRelError: 2.76502e-11\tAbsError: 2.68329e-13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.76502e-11\tAbsError: 2.68329e-13\n", - " Region: \"zone_3\"\tRelError: 1.78878e-10\tAbsError: 4.94075e+04\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.71769e-10\tAbsError: 3.00848e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.70893e-12\tAbsError: 1.93227e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40075e-12\tAbsError: 2.79937e-13\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:14\u001b[0m.\u001b[1;36m140\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.7000000000000001\u001b[0m\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.06248e+01\tAbsError: 3.16044e+16\n", - " Region: \"zone_1\"\tRelError: 1.87257e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87257e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.89912e+00\tAbsError: 3.16044e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.93746e-01\tAbsError: 1.57387e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.93249e-01\tAbsError: 1.58657e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.12130e-01\tAbsError: 4.09543e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.49122e-01\tAbsError: 8.74518e+14\n", - " Region: \"zone_1\"\tRelError: 1.60013e-02\tAbsError: 3.43893e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60013e-02\tAbsError: 3.43893e-04\n", - " Region: \"zone_3\"\tRelError: 1.33121e-01\tAbsError: 8.74518e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01241e-01\tAbsError: 4.86514e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.17497e-02\tAbsError: 3.88004e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01303e-02\tAbsError: 3.66897e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.25674e+01\tAbsError: 9.91926e+15\n", - " Region: \"zone_1\"\tRelError: 2.07081e+01\tAbsError: 4.22091e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.07081e+01\tAbsError: 4.22091e-02\n", - " Region: \"zone_3\"\tRelError: 1.85938e+00\tAbsError: 9.91926e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.04116e-01\tAbsError: 5.29079e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.03957e-01\tAbsError: 4.62846e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.51307e-01\tAbsError: 4.22091e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:14\u001b[0m.\u001b[1;36m805\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.45748e+00\tAbsError: 3.69441e+16\n", - " Region: \"zone_1\"\tRelError: 4.13331e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.13331e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 2.04415e+00\tAbsError: 3.69441e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.88321e-01\tAbsError: 1.86445e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.52684e-01\tAbsError: 1.82996e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.03145e-01\tAbsError: 3.07632e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.91660e-04\tAbsError: 2.54040e+12\n", - " Region: \"zone_1\"\tRelError: 1.35073e-05\tAbsError: 1.64927e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35073e-05\tAbsError: 1.64927e-06\n", - " Region: \"zone_3\"\tRelError: 4.78152e-04\tAbsError: 2.54040e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.93348e-04\tAbsError: 1.71253e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.78162e-05\tAbsError: 8.27868e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.69884e-05\tAbsError: 1.78053e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.22389e+00\tAbsError: 8.51989e+15\n", - " Region: \"zone_1\"\tRelError: 5.41698e+00\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.41698e+00\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.80691e+00\tAbsError: 8.51989e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94484e-01\tAbsError: 4.63675e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94370e-01\tAbsError: 3.88315e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18056e-01\tAbsError: 4.09542e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:14\u001b[0m.\u001b[1;36m838\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.0 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:14\u001b[0m.\u001b[1;36m874\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 6.07101e+00\tAbsError: 1.14165e+16\n", - " Region: \"zone_1\"\tRelError: 4.37111e+00\tAbsError: 3.22431e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.37111e+00\tAbsError: 3.22431e-02\n", - " Region: \"zone_3\"\tRelError: 1.69990e+00\tAbsError: 1.14165e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.07074e-01\tAbsError: 5.53066e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.79620e-01\tAbsError: 5.88581e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.13207e-01\tAbsError: 3.22432e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 4.80876e+00\tAbsError: 2.48392e+16\n", - " Region: \"zone_1\"\tRelError: 2.08564e-01\tAbsError: 2.58396e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.08564e-01\tAbsError: 2.58396e-02\n", - " Region: \"zone_3\"\tRelError: 4.60020e+00\tAbsError: 2.48392e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.12756e-01\tAbsError: 1.24031e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.61077e-01\tAbsError: 1.24362e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.62637e+00\tAbsError: 2.33304e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.89109e+00\tAbsError: 5.48219e+15\n", - " Region: \"zone_1\"\tRelError: 2.49390e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49390e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.64170e+00\tAbsError: 5.48219e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90716e-01\tAbsError: 2.59543e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.66285e-01\tAbsError: 2.88675e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.84697e-01\tAbsError: 3.07632e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 8.13140e-09\tAbsError: 3.88209e+07\n", - " Region: \"zone_1\"\tRelError: 1.56368e-09\tAbsError: 8.49011e-12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.56368e-09\tAbsError: 8.49011e-12\n", - " Region: \"zone_3\"\tRelError: 6.56771e-09\tAbsError: 3.88209e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.49331e-09\tAbsError: 2.53073e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.15049e-10\tAbsError: 1.35136e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 3.59356e-10\tAbsError: 8.61252e-12\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:15\u001b[0m.\u001b[1;36m275\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: 0.85\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.98506e+00\tAbsError: 9.22482e+15\n", - " Region: \"zone_1\"\tRelError: 7.44294e-01\tAbsError: 2.58187e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.44294e-01\tAbsError: 2.58187e-02\n", - " Region: \"zone_3\"\tRelError: 1.24077e+00\tAbsError: 9.22482e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.51188e-01\tAbsError: 4.56555e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.04989e-01\tAbsError: 4.65926e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.84591e-01\tAbsError: 2.57518e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 4.82261e+02\tAbsError: 3.52167e+17\n", - " Region: \"zone_1\"\tRelError: 6.12444e+01\tAbsError: 8.44807e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.12444e+01\tAbsError: 8.44807e-02\n", - " Region: \"zone_3\"\tRelError: 4.21017e+02\tAbsError: 3.52167e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.77839e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.97707e+02\tAbsError: 1.74328e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43100e+01\tAbsError: 8.44807e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.55071e+00\tAbsError: 8.48657e+15\n", - " Region: \"zone_1\"\tRelError: 8.11805e-01\tAbsError: 9.16529e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 8.11805e-01\tAbsError: 9.16529e-03\n", - " Region: \"zone_3\"\tRelError: 2.73890e+00\tAbsError: 8.48657e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.34197e-01\tAbsError: 4.50158e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.40806e-01\tAbsError: 3.98499e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.36390e+00\tAbsError: 9.16533e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.28809e+00\tAbsError: 4.35524e+15\n", - " Region: \"zone_1\"\tRelError: 1.47109e-01\tAbsError: 2.58916e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.47109e-01\tAbsError: 2.58916e-02\n", - " Region: \"zone_3\"\tRelError: 1.14098e+00\tAbsError: 4.35524e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.22693e-01\tAbsError: 2.04103e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.66769e-01\tAbsError: 2.31421e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51518e-01\tAbsError: 2.53379e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.75902e+00\tAbsError: 3.77919e+15\n", - " Region: \"zone_1\"\tRelError: 1.22599e+00\tAbsError: 1.10525e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.22599e+00\tAbsError: 1.10525e-02\n", - " Region: \"zone_3\"\tRelError: 5.33038e-01\tAbsError: 3.77919e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.79636e-01\tAbsError: 2.01911e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.93051e-01\tAbsError: 1.76009e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 6.03505e-02\tAbsError: 1.10525e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.03144e+01\tAbsError: 2.22942e+17\n", - " Region: \"zone_1\"\tRelError: 4.58501e+00\tAbsError: 8.10225e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.58501e+00\tAbsError: 8.10225e-02\n", - " Region: \"zone_3\"\tRelError: 2.57294e+01\tAbsError: 2.22942e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.11571e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.31347e+01\tAbsError: 1.11371e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 3.59472e+00\tAbsError: 8.10225e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.42490e+01\tAbsError: 7.52592e+16\n", - " Region: \"zone_1\"\tRelError: 1.08478e+01\tAbsError: 4.23835e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08478e+01\tAbsError: 4.23835e-02\n", - " Region: \"zone_3\"\tRelError: 3.40120e+00\tAbsError: 7.52592e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.03566e-01\tAbsError: 3.76063e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.02485e-01\tAbsError: 3.76529e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.79515e+00\tAbsError: 4.23835e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 5.10055e-01\tAbsError: 1.79008e+15\n", - " Region: \"zone_1\"\tRelError: 7.10147e-02\tAbsError: 3.19256e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.10147e-02\tAbsError: 3.19256e-04\n", - " Region: \"zone_3\"\tRelError: 4.39040e-01\tAbsError: 1.79008e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39314e-02\tAbsError: 9.39738e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.81226e-02\tAbsError: 8.50345e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.56986e-01\tAbsError: 3.21663e-04\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.61364e-01\tAbsError: 1.56107e+15\n", - " Region: \"zone_1\"\tRelError: 1.02187e-01\tAbsError: 9.16531e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02187e-01\tAbsError: 9.16531e-03\n", - " Region: \"zone_3\"\tRelError: 4.59177e-01\tAbsError: 1.56107e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52513e-01\tAbsError: 8.30423e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.62306e-01\tAbsError: 7.30643e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.43577e-02\tAbsError: 9.16534e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.61775e-01\tAbsError: 7.66138e+14\n", - " Region: \"zone_1\"\tRelError: 3.36594e-02\tAbsError: 3.29572e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.36594e-02\tAbsError: 3.29572e-04\n", - " Region: \"zone_3\"\tRelError: 1.28116e-01\tAbsError: 7.66138e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.96948e-02\tAbsError: 4.16285e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.05597e-02\tAbsError: 3.49853e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.86134e-03\tAbsError: 3.48882e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.63152e+02\tAbsError: 9.44307e+16\n", - " Region: \"zone_1\"\tRelError: 6.85128e+00\tAbsError: 7.72065e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.85128e+00\tAbsError: 7.72065e-02\n", - " Region: \"zone_3\"\tRelError: 2.56301e+02\tAbsError: 9.44307e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09414e+01\tAbsError: 5.77259e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.45135e+02\tAbsError: 3.67049e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.24279e-01\tAbsError: 7.72065e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 6.60752e+00\tAbsError: 8.84428e+16\n", - " Region: \"zone_1\"\tRelError: 3.94093e+00\tAbsError: 3.24492e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.94093e+00\tAbsError: 3.24492e-02\n", - " Region: \"zone_3\"\tRelError: 2.66659e+00\tAbsError: 8.84428e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.02377e-01\tAbsError: 4.49927e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.60258e-01\tAbsError: 4.34502e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20395e+00\tAbsError: 3.24492e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.33163e-03\tAbsError: 7.03544e+12\n", - " Region: \"zone_1\"\tRelError: 6.88994e-05\tAbsError: 8.74550e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 6.88994e-05\tAbsError: 8.74550e-07\n", - " Region: \"zone_3\"\tRelError: 1.26273e-03\tAbsError: 7.03544e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.78279e-04\tAbsError: 4.08452e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.87916e-05\tAbsError: 2.95092e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.95662e-04\tAbsError: 9.67670e-07\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.02751e-01\tAbsError: 2.88406e+14\n", - " Region: \"zone_1\"\tRelError: 3.60577e-03\tAbsError: 2.29628e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.60577e-03\tAbsError: 2.29628e-04\n", - " Region: \"zone_3\"\tRelError: 9.91456e-02\tAbsError: 2.88406e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.45252e-02\tAbsError: 1.12757e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.29594e-02\tAbsError: 1.75650e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66104e-03\tAbsError: 2.42032e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.91192e-04\tAbsError: 1.99218e+12\n", - " Region: \"zone_1\"\tRelError: 3.52940e-05\tAbsError: 1.42123e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52940e-05\tAbsError: 1.42123e-06\n", - " Region: \"zone_3\"\tRelError: 4.55898e-04\tAbsError: 1.99218e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.79849e-04\tAbsError: 1.34746e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.47342e-05\tAbsError: 6.44716e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.13148e-05\tAbsError: 1.54165e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 7.45533e+02\tAbsError: 3.05911e+16\n", - " Region: \"zone_1\"\tRelError: 3.90969e+01\tAbsError: 7.29586e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.90969e+01\tAbsError: 7.29586e-02\n", - " Region: \"zone_3\"\tRelError: 7.06436e+02\tAbsError: 3.05911e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.79786e+01\tAbsError: 1.48185e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.88272e+02\tAbsError: 1.57727e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.85829e-01\tAbsError: 7.29586e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.09243e+01\tAbsError: 6.47175e+16\n", - " Region: \"zone_1\"\tRelError: 1.64997e+01\tAbsError: 2.57213e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.64997e+01\tAbsError: 2.57213e-02\n", - " Region: \"zone_3\"\tRelError: 4.42461e+00\tAbsError: 6.47175e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.25399e-01\tAbsError: 3.23288e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.61564e-01\tAbsError: 3.23887e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.43764e+00\tAbsError: 2.58341e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.48938e-08\tAbsError: 9.78087e+07\n", - " Region: \"zone_1\"\tRelError: 2.39367e-09\tAbsError: 9.98115e-12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.39367e-09\tAbsError: 9.98115e-12\n", - " Region: \"zone_3\"\tRelError: 1.25002e-08\tAbsError: 9.78087e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.82653e-09\tAbsError: 5.13414e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.35560e-10\tAbsError: 4.64673e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 9.13807e-09\tAbsError: 1.21236e-11\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.04675e-04\tAbsError: 3.04021e+11\n", - " Region: \"zone_1\"\tRelError: 6.05493e-06\tAbsError: 5.20454e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 6.05493e-06\tAbsError: 5.20454e-07\n", - " Region: \"zone_3\"\tRelError: 2.98620e-04\tAbsError: 3.04021e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.67672e-04\tAbsError: 1.93910e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.70905e-05\tAbsError: 1.10111e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.85729e-06\tAbsError: 5.51479e-07\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 8.14411e-09\tAbsError: 2.52751e+07\n", - " Region: \"zone_1\"\tRelError: 3.10247e-09\tAbsError: 7.66784e-12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.10247e-09\tAbsError: 7.66784e-12\n", - " Region: \"zone_3\"\tRelError: 5.04165e-09\tAbsError: 2.52751e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.24046e-09\tAbsError: 1.61978e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.68440e-10\tAbsError: 9.07731e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.32744e-10\tAbsError: 7.83237e-12\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:16\u001b[0m.\u001b[1;36m974\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.84375\u001b[0m \n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 3.52323e+04\tAbsError: 2.58880e+15\n", - " Region: \"zone_1\"\tRelError: 3.55607e+00\tAbsError: 6.81819e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.55607e+00\tAbsError: 6.81819e-02\n", - " Region: \"zone_3\"\tRelError: 3.52288e+04\tAbsError: 2.58880e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.44264e+04\tAbsError: 1.67252e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.02246e+02\tAbsError: 9.16280e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46351e-01\tAbsError: 6.81819e-02\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 3\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 2.12792e+00\tAbsError: 2.83243e+16\n", - " Region: \"zone_1\"\tRelError: 1.14894e+00\tAbsError: 1.13358e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14894e+00\tAbsError: 1.13358e-02\n", - " Region: \"zone_3\"\tRelError: 9.78978e-01\tAbsError: 2.83243e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.37101e-01\tAbsError: 1.51418e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.37082e-01\tAbsError: 1.31825e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.04795e-01\tAbsError: 1.13359e-02\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.59430e-10\tAbsError: 1.22833e+06\n", - " Region: \"zone_1\"\tRelError: 9.68792e-11\tAbsError: 2.65442e-12\n", - " Equation: \"PotentialEquation\"\tRelError: 9.68792e-11\tAbsError: 2.65442e-12\n", - " Region: \"zone_3\"\tRelError: 6.62551e-10\tAbsError: 1.22833e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38518e-10\tAbsError: 7.28675e+05\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03772e-10\tAbsError: 4.99657e+05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.02617e-11\tAbsError: 2.83302e-12\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:17\u001b[0m.\u001b[1;36m250\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.8\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.83787e+01\tAbsError: 1.33604e+15\n", - " Region: \"zone_1\"\tRelError: 2.07590e+00\tAbsError: 6.27474e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.07590e+00\tAbsError: 6.27474e-02\n", - " Region: \"zone_3\"\tRelError: 5.63028e+01\tAbsError: 1.33604e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.22975e+01\tAbsError: 7.85057e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.38884e+01\tAbsError: 5.50987e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16846e-01\tAbsError: 6.27475e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 4.10994e-01\tAbsError: 6.33231e+15\n", - " Region: \"zone_1\"\tRelError: 2.03112e-01\tAbsError: 4.63625e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03112e-01\tAbsError: 4.63625e-04\n", - " Region: \"zone_3\"\tRelError: 2.07882e-01\tAbsError: 6.33231e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.54885e-02\tAbsError: 3.31801e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.90225e-02\tAbsError: 3.01430e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.23371e-01\tAbsError: 4.85010e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.18672e+01\tAbsError: 6.77330e+16\n", - " Region: \"zone_1\"\tRelError: 2.92339e+01\tAbsError: 4.22091e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.92339e+01\tAbsError: 4.22091e-02\n", - " Region: \"zone_3\"\tRelError: 2.63329e+00\tAbsError: 6.77330e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.02473e-01\tAbsError: 3.37687e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.01495e-01\tAbsError: 3.39643e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02932e+00\tAbsError: 4.22091e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.31378e+02\tAbsError: 7.60663e+14\n", - " Region: \"zone_1\"\tRelError: 7.71613e-01\tAbsError: 5.64827e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.71613e-01\tAbsError: 5.64827e-02\n", - " Region: \"zone_3\"\tRelError: 2.30606e+02\tAbsError: 7.60663e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52408e+02\tAbsError: 5.17768e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.81037e+01\tAbsError: 2.42894e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.43265e-02\tAbsError: 5.64827e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:17\u001b[0m.\u001b[1;36m819\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.06248e+01\tAbsError: 3.16044e+16\n", - " Region: \"zone_1\"\tRelError: 1.87257e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87257e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.89912e+00\tAbsError: 3.16044e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.93746e-01\tAbsError: 1.57387e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.93249e-01\tAbsError: 1.58657e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.12130e-01\tAbsError: 4.09543e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:17\u001b[0m.\u001b[1;36m852\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.05 bias\u001b[0m \n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.61528e-03\tAbsError: 4.57027e+13\n", - " Region: \"zone_1\"\tRelError: 6.59185e-04\tAbsError: 1.10622e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.59185e-04\tAbsError: 1.10622e-06\n", - " Region: \"zone_3\"\tRelError: 9.56097e-04\tAbsError: 4.57027e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.75674e-04\tAbsError: 2.40788e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.45396e-04\tAbsError: 2.16239e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.35027e-04\tAbsError: 1.16216e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:17\u001b[0m.\u001b[1;36m883\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 5.28950e+00\tAbsError: 7.92389e+16\n", - " Region: \"zone_1\"\tRelError: 2.40844e+00\tAbsError: 3.22431e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.40844e+00\tAbsError: 3.22431e-02\n", - " Region: \"zone_3\"\tRelError: 2.88106e+00\tAbsError: 7.92389e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.00584e-01\tAbsError: 4.07058e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.61442e-01\tAbsError: 3.85331e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41903e+00\tAbsError: 3.22432e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.71787e+04\tAbsError: 1.75933e+14\n", - " Region: \"zone_1\"\tRelError: 7.47327e-02\tAbsError: 4.91583e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.47327e-02\tAbsError: 4.91583e-02\n", - " Region: \"zone_3\"\tRelError: 1.71786e+04\tAbsError: 1.75933e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47883e+04\tAbsError: 8.79941e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.39026e+03\tAbsError: 8.79391e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.51412e-02\tAbsError: 4.91584e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.45748e+00\tAbsError: 3.69441e+16\n", - " Region: \"zone_1\"\tRelError: 4.13331e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.13331e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 2.04415e+00\tAbsError: 3.69441e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.88321e-01\tAbsError: 1.86445e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.52684e-01\tAbsError: 1.82996e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.03145e-01\tAbsError: 3.07632e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.14099e-08\tAbsError: 4.54906e+08\n", - " Region: \"zone_1\"\tRelError: 4.36669e-09\tAbsError: 5.33468e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.36669e-09\tAbsError: 5.33468e-11\n", - " Region: \"zone_3\"\tRelError: 7.04323e-09\tAbsError: 4.54906e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.71744e-09\tAbsError: 2.24456e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.78894e-10\tAbsError: 2.30450e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.74690e-09\tAbsError: 5.92822e-11\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.20466e+01\tAbsError: 5.52934e+16\n", - " Region: \"zone_1\"\tRelError: 2.16515e+00\tAbsError: 2.58803e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.16515e+00\tAbsError: 2.58803e-02\n", - " Region: \"zone_3\"\tRelError: 9.88145e+00\tAbsError: 5.52934e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.25644e-01\tAbsError: 2.74416e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.60760e-01\tAbsError: 2.78518e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 8.89504e+00\tAbsError: 2.54624e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.88372e+02\tAbsError: 9.95901e+17\n", - " Region: \"zone_1\"\tRelError: 9.83806e+01\tAbsError: 8.63290e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.83806e+01\tAbsError: 8.63290e-02\n", - " Region: \"zone_3\"\tRelError: 4.89991e+02\tAbsError: 9.95901e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.64932e+02\tAbsError: 4.41210e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.04095e+01\tAbsError: 5.54690e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 4.64997e+00\tAbsError: 8.63291e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 8.00464e+02\tAbsError: 1.76846e+14\n", - " Region: \"zone_1\"\tRelError: 1.51285e-01\tAbsError: 4.04895e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51285e-01\tAbsError: 4.04895e-02\n", - " Region: \"zone_3\"\tRelError: 8.00313e+02\tAbsError: 1.76846e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.76154e+02\tAbsError: 1.03150e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.41019e+01\tAbsError: 7.36963e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.75475e-02\tAbsError: 4.04896e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 4.80876e+00\tAbsError: 2.48392e+16\n", - " Region: \"zone_1\"\tRelError: 2.08564e-01\tAbsError: 2.58396e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.08564e-01\tAbsError: 2.58396e-02\n", - " Region: \"zone_3\"\tRelError: 4.60020e+00\tAbsError: 2.48392e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.12756e-01\tAbsError: 1.24031e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.61077e-01\tAbsError: 1.24362e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.62637e+00\tAbsError: 2.33304e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.43062e+00\tAbsError: 2.48503e+16\n", - " Region: \"zone_1\"\tRelError: 3.72922e+00\tAbsError: 1.10524e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.72922e+00\tAbsError: 1.10524e-02\n", - " Region: \"zone_3\"\tRelError: 1.70140e+00\tAbsError: 2.48503e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.43322e-01\tAbsError: 1.33123e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.40880e-01\tAbsError: 1.15380e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31720e+00\tAbsError: 1.10525e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.27833e+03\tAbsError: 7.47754e+17\n", - " Region: \"zone_1\"\tRelError: 2.20826e+01\tAbsError: 8.30497e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20826e+01\tAbsError: 8.30497e-02\n", - " Region: \"zone_3\"\tRelError: 1.25625e+03\tAbsError: 7.47754e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.20804e+01\tAbsError: 3.45452e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.21005e+03\tAbsError: 4.02302e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41176e+01\tAbsError: 8.30498e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.98801e+02\tAbsError: 3.29823e+13\n", - " Region: \"zone_1\"\tRelError: 4.03852e-02\tAbsError: 3.02166e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.03852e-02\tAbsError: 3.02166e-02\n", - " Region: \"zone_3\"\tRelError: 2.98761e+02\tAbsError: 3.29823e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88198e+02\tAbsError: 2.12465e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.05220e+01\tAbsError: 1.17358e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.08123e-02\tAbsError: 3.02167e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.55071e+00\tAbsError: 8.48657e+15\n", - " Region: \"zone_1\"\tRelError: 8.11805e-01\tAbsError: 9.16529e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 8.11805e-01\tAbsError: 9.16529e-03\n", - " Region: \"zone_3\"\tRelError: 2.73890e+00\tAbsError: 8.48657e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.34197e-01\tAbsError: 4.50158e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.40806e-01\tAbsError: 3.98499e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.36390e+00\tAbsError: 9.16533e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 3.49152e+00\tAbsError: 5.38829e+15\n", - " Region: \"zone_1\"\tRelError: 3.18911e+00\tAbsError: 4.54221e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.18911e+00\tAbsError: 4.54221e-04\n", - " Region: \"zone_3\"\tRelError: 3.02408e-01\tAbsError: 5.38829e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.21294e-02\tAbsError: 2.89081e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.87533e-02\tAbsError: 2.49748e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.21525e-01\tAbsError: 4.70929e-04\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 4.88396e+00\tAbsError: 4.23056e+12\n", - " Region: \"zone_1\"\tRelError: 3.34297e-02\tAbsError: 2.58995e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.34297e-02\tAbsError: 2.58995e-02\n", - " Region: \"zone_3\"\tRelError: 4.85053e+00\tAbsError: 4.23056e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.29475e+00\tAbsError: 4.51961e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.21955e-01\tAbsError: 3.77860e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.38273e-02\tAbsError: 2.55819e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:19\u001b[0m.\u001b[1;36m285\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.40949e+03\tAbsError: 2.06202e+17\n", - " Region: \"zone_1\"\tRelError: 1.35262e+01\tAbsError: 7.94472e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35262e+01\tAbsError: 7.94472e-02\n", - " Region: \"zone_3\"\tRelError: 1.39597e+03\tAbsError: 2.06202e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.04789e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.38616e+03\tAbsError: 1.01413e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 8.03041e-01\tAbsError: 7.94473e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:19\u001b[0m.\u001b[1;36m314\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.1 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:19\u001b[0m.\u001b[1;36m341\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 5.10055e-01\tAbsError: 1.79008e+15\n", - " Region: \"zone_1\"\tRelError: 7.10147e-02\tAbsError: 3.19256e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.10147e-02\tAbsError: 3.19256e-04\n", - " Region: \"zone_3\"\tRelError: 4.39040e-01\tAbsError: 1.79008e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39314e-02\tAbsError: 9.39738e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.81226e-02\tAbsError: 8.50345e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.56986e-01\tAbsError: 3.21663e-04\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.35643e+00\tAbsError: 1.11855e+14\n", - " Region: \"zone_1\"\tRelError: 1.12239e-02\tAbsError: 8.53138e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12239e-02\tAbsError: 8.53138e-03\n", - " Region: \"zone_3\"\tRelError: 1.34521e+00\tAbsError: 1.11855e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32958e+00\tAbsError: 4.27147e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.01792e-03\tAbsError: 1.07583e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06154e-02\tAbsError: 8.53144e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.62592e-03\tAbsError: 3.88409e+13\n", - " Region: \"zone_1\"\tRelError: 8.48628e-03\tAbsError: 1.12576e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.48628e-03\tAbsError: 1.12576e-06\n", - " Region: \"zone_3\"\tRelError: 1.13964e-03\tAbsError: 3.88409e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.87588e-04\tAbsError: 2.04690e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.11011e-04\tAbsError: 1.83719e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.41039e-04\tAbsError: 1.18470e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.95503e+02\tAbsError: 4.24862e+16\n", - " Region: \"zone_1\"\tRelError: 2.94334e+02\tAbsError: 7.54578e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.94334e+02\tAbsError: 7.54578e-02\n", - " Region: \"zone_3\"\tRelError: 1.01169e+02\tAbsError: 4.24862e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38365e+01\tAbsError: 1.85875e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.71030e+01\tAbsError: 2.38987e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29656e-01\tAbsError: 7.54578e-02\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 3.20441e-01\tAbsError: 1.14285e+14\n", - " Region: \"zone_1\"\tRelError: 1.39310e-02\tAbsError: 1.62545e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39310e-02\tAbsError: 1.62545e-04\n", - " Region: \"zone_3\"\tRelError: 3.06510e-01\tAbsError: 1.14285e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.97341e-01\tAbsError: 5.84084e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.93145e-03\tAbsError: 1.08444e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.37145e-04\tAbsError: 1.67877e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.33163e-03\tAbsError: 7.03544e+12\n", - " Region: \"zone_1\"\tRelError: 6.88994e-05\tAbsError: 8.74550e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 6.88994e-05\tAbsError: 8.74550e-07\n", - " Region: \"zone_3\"\tRelError: 1.26273e-03\tAbsError: 7.03544e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.78279e-04\tAbsError: 4.08452e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.87916e-05\tAbsError: 2.95092e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.95662e-04\tAbsError: 9.67670e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.36114e+02\tAbsError: 2.84935e+18\n", - " Region: \"zone_1\"\tRelError: 8.09924e+01\tAbsError: 8.80542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.09924e+01\tAbsError: 8.80542e-02\n", - " Region: \"zone_3\"\tRelError: 7.55122e+02\tAbsError: 2.84935e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.43696e+02\tAbsError: 1.30907e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.47319e+00\tAbsError: 1.54028e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 2.01953e+02\tAbsError: 8.80543e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 8.88631e-08\tAbsError: 3.64677e+08\n", - " Region: \"zone_1\"\tRelError: 7.93721e-08\tAbsError: 3.00603e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 7.93721e-08\tAbsError: 3.00603e-11\n", - " Region: \"zone_3\"\tRelError: 9.49096e-09\tAbsError: 3.64677e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.13123e-09\tAbsError: 1.87502e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.36663e-10\tAbsError: 1.77175e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 5.72307e-09\tAbsError: 3.29037e-11\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 8.69833e-04\tAbsError: 5.99552e+10\n", - " Region: \"zone_1\"\tRelError: 6.49723e-06\tAbsError: 1.04391e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 6.49723e-06\tAbsError: 1.04391e-07\n", - " Region: \"zone_3\"\tRelError: 8.63335e-04\tAbsError: 5.99552e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.33783e-04\tAbsError: 2.55001e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.93958e-05\tAbsError: 5.74052e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.56229e-07\tAbsError: 1.10596e-07\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 4.94286e+02\tAbsError: 9.83428e+15\n", - " Region: \"zone_1\"\tRelError: 5.09637e+00\tAbsError: 7.09984e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.09637e+00\tAbsError: 7.09984e-02\n", - " Region: \"zone_3\"\tRelError: 4.89190e+02\tAbsError: 9.83428e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34021e+01\tAbsError: 5.67320e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.75629e+02\tAbsError: 4.16108e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.58896e-01\tAbsError: 7.09985e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:20\u001b[0m.\u001b[1;36m102\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.95\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 6\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 1.48929e-08\tAbsError: 9.78087e+07\n", - " Region: \"zone_1\"\tRelError: 2.39367e-09\tAbsError: 9.98115e-12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.39367e-09\tAbsError: 9.98115e-12\n", - " Region: \"zone_3\"\tRelError: 1.24992e-08\tAbsError: 9.78087e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.82653e-09\tAbsError: 5.13414e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.35561e-10\tAbsError: 4.64672e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 9.13709e-09\tAbsError: 1.21236e-11\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 2.93063e-10\tAbsError: 3.78900e+04\n", - " Region: \"zone_1\"\tRelError: 2.84034e-12\tAbsError: 4.64333e-14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.84034e-12\tAbsError: 4.64333e-14\n", - " Region: \"zone_3\"\tRelError: 2.90222e-10\tAbsError: 3.78900e+04\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.66433e-10\tAbsError: 1.60248e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.37165e-11\tAbsError: 2.18653e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.25207e-14\tAbsError: 4.91959e-14\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:20\u001b[0m.\u001b[1;36m352\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.9\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Iteration: 1\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 2.12599e+03\tAbsError: 2.38404e+18\n", - " Region: \"zone_1\"\tRelError: 3.81488e+02\tAbsError: 8.49344e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.81488e+02\tAbsError: 8.49344e-02\n", - " Region: \"zone_3\"\tRelError: 1.74450e+03\tAbsError: 2.38404e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13077e+01\tAbsError: 1.11961e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.44770e+03\tAbsError: 1.26443e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 2.75501e+02\tAbsError: 8.49344e-02\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:20\u001b[0m.\u001b[1;36m390\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.2\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.12665e+04\tAbsError: 6.12458e+14\n", - " Region: \"zone_1\"\tRelError: 6.44959e-01\tAbsError: 6.59600e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.44959e-01\tAbsError: 6.59600e-02\n", - " Region: \"zone_3\"\tRelError: 5.12658e+04\tAbsError: 6.12458e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.80729e+04\tAbsError: 2.42664e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.31928e+04\tAbsError: 3.69795e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.27747e-01\tAbsError: 6.59600e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.78763e+01\tAbsError: 4.03409e+17\n", - " Region: \"zone_1\"\tRelError: 4.29478e+00\tAbsError: 8.15209e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.29478e+00\tAbsError: 8.15209e-02\n", - " Region: \"zone_3\"\tRelError: 2.35815e+01\tAbsError: 4.03409e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06155e+01\tAbsError: 1.97169e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.06241e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 3.96600e+00\tAbsError: 8.15210e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.27822e+01\tAbsError: 4.38306e+17\n", - " Region: \"zone_1\"\tRelError: 2.71885e+01\tAbsError: 4.22090e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.71885e+01\tAbsError: 4.22090e-02\n", - " Region: \"zone_3\"\tRelError: 5.59377e+00\tAbsError: 4.38306e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83490e-01\tAbsError: 2.08688e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.75359e-01\tAbsError: 2.29619e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 4.03492e+00\tAbsError: 4.22091e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.20842e+03\tAbsError: 4.11496e+14\n", - " Region: \"zone_1\"\tRelError: 3.41372e-01\tAbsError: 6.01966e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.41372e-01\tAbsError: 6.01966e-02\n", - " Region: \"zone_3\"\tRelError: 1.20808e+03\tAbsError: 4.11496e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.72015e+02\tAbsError: 2.66199e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.35961e+02\tAbsError: 1.45297e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03148e-01\tAbsError: 6.01966e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.19725e+01\tAbsError: 1.92958e+17\n", - " Region: \"zone_1\"\tRelError: 2.64183e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.64183e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 5.55416e+00\tAbsError: 1.92958e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86635e-01\tAbsError: 9.77277e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83108e-01\tAbsError: 9.52302e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.98441e+00\tAbsError: 4.09542e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.21485e+01\tAbsError: 8.61846e+15\n", - " Region: \"zone_1\"\tRelError: 3.04717e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.04717e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.67686e+00\tAbsError: 8.61846e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94516e-01\tAbsError: 4.66248e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94484e-01\tAbsError: 3.95598e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.78603e-02\tAbsError: 4.09542e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 6.15676e+01\tAbsError: 4.87835e+17\n", - " Region: \"zone_1\"\tRelError: 5.20397e+01\tAbsError: 3.22429e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.20397e+01\tAbsError: 3.22429e-02\n", - " Region: \"zone_3\"\tRelError: 9.52795e+00\tAbsError: 4.87835e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.21731e-01\tAbsError: 2.43628e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.25441e-01\tAbsError: 2.44207e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 8.28077e+00\tAbsError: 3.22432e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 8.30077e+02\tAbsError: 1.03233e+17\n", - " Region: \"zone_1\"\tRelError: 1.14748e+00\tAbsError: 7.77584e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14748e+00\tAbsError: 7.77584e-02\n", - " Region: \"zone_3\"\tRelError: 8.28930e+02\tAbsError: 1.03233e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61472e+02\tAbsError: 6.58302e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.67005e+02\tAbsError: 3.74024e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.53792e-01\tAbsError: 7.77584e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.04768e+03\tAbsError: 1.13224e+14\n", - " Region: \"zone_1\"\tRelError: 8.26456e-02\tAbsError: 5.35128e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.26456e-02\tAbsError: 5.35128e-02\n", - " Region: \"zone_3\"\tRelError: 1.04760e+03\tAbsError: 1.13224e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27525e+02\tAbsError: 4.98494e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.19988e+02\tAbsError: 6.33747e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.29780e-02\tAbsError: 5.35129e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 5.59678e+00\tAbsError: 2.20718e+17\n", - " Region: \"zone_1\"\tRelError: 8.54328e-01\tAbsError: 3.07631e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.54328e-01\tAbsError: 3.07631e-02\n", - " Region: \"zone_3\"\tRelError: 4.74245e+00\tAbsError: 2.20718e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57165e-01\tAbsError: 1.09369e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.88364e-01\tAbsError: 1.11350e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 3.39692e+00\tAbsError: 3.07632e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.07800e+00\tAbsError: 3.45404e+14\n", - " Region: \"zone_1\"\tRelError: 5.44178e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.44178e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.53382e+00\tAbsError: 3.45404e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90662e-01\tAbsError: 1.56300e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.87478e-01\tAbsError: 1.89103e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.56802e-02\tAbsError: 3.07632e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.94701e+03\tAbsError: 3.51605e+16\n", - " Region: \"zone_1\"\tRelError: 2.32944e+01\tAbsError: 7.35755e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.32944e+01\tAbsError: 7.35755e-02\n", - " Region: \"zone_3\"\tRelError: 2.92372e+03\tAbsError: 3.51605e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04217e+01\tAbsError: 2.19896e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.91312e+03\tAbsError: 1.31709e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76554e-01\tAbsError: 7.35755e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.23212e+01\tAbsError: 1.83511e+17\n", - " Region: \"zone_1\"\tRelError: 1.26811e+01\tAbsError: 2.58959e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.26811e+01\tAbsError: 2.58959e-02\n", - " Region: \"zone_3\"\tRelError: 9.64015e+00\tAbsError: 1.83511e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.40244e-01\tAbsError: 9.20472e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.21277e-01\tAbsError: 9.14639e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 9.07863e+00\tAbsError: 2.58031e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 5.61412e+03\tAbsError: 4.48404e+13\n", - " Region: \"zone_1\"\tRelError: 6.49958e-02\tAbsError: 4.56537e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.49958e-02\tAbsError: 4.56537e-02\n", - " Region: \"zone_3\"\tRelError: 5.61405e+03\tAbsError: 4.48404e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.22859e+03\tAbsError: 1.56495e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.38540e+03\tAbsError: 2.91909e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.52942e-02\tAbsError: 4.56538e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.11313e+00\tAbsError: 4.26791e+13\n", - " Region: \"zone_1\"\tRelError: 7.05940e-02\tAbsError: 2.58377e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.05940e-02\tAbsError: 2.58377e-02\n", - " Region: \"zone_3\"\tRelError: 1.04254e+00\tAbsError: 4.26791e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14646e-01\tAbsError: 2.38411e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.85599e-01\tAbsError: 1.88379e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.22941e-02\tAbsError: 2.58015e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 3.40459e+00\tAbsError: 1.40151e+17\n", - " Region: \"zone_1\"\tRelError: 9.91077e-01\tAbsError: 2.58298e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.91077e-01\tAbsError: 2.58298e-02\n", - " Region: \"zone_3\"\tRelError: 2.41351e+00\tAbsError: 1.40151e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.12962e-01\tAbsError: 7.03247e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.20637e-01\tAbsError: 6.98261e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.67991e+00\tAbsError: 2.58976e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 6.38842e+01\tAbsError: 2.01361e+16\n", - " Region: \"zone_1\"\tRelError: 2.27796e+00\tAbsError: 1.10520e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27796e+00\tAbsError: 1.10520e-02\n", - " Region: \"zone_3\"\tRelError: 6.16063e+01\tAbsError: 2.01361e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78655e-02\tAbsError: 1.01092e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.72051e-02\tAbsError: 1.00269e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.15012e+01\tAbsError: 1.10525e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.69574e+03\tAbsError: 2.98489e+15\n", - " Region: \"zone_1\"\tRelError: 2.69436e+00\tAbsError: 6.88788e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.69436e+00\tAbsError: 6.88788e-02\n", - " Region: \"zone_3\"\tRelError: 1.69305e+03\tAbsError: 2.98489e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.37947e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.68391e+03\tAbsError: 1.60542e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40413e-01\tAbsError: 6.88788e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.87168e+02\tAbsError: 3.87608e+13\n", - " Region: \"zone_1\"\tRelError: 4.83851e-02\tAbsError: 3.63251e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.83851e-02\tAbsError: 3.63251e-02\n", - " Region: \"zone_3\"\tRelError: 2.87120e+02\tAbsError: 3.87608e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95625e+02\tAbsError: 2.20451e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.14461e+01\tAbsError: 1.67157e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.86857e-02\tAbsError: 3.63252e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.83480e-01\tAbsError: 2.88954e+12\n", - " Region: \"zone_1\"\tRelError: 1.35212e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35212e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.69958e-01\tAbsError: 2.88954e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88338e-01\tAbsError: 2.12977e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.78790e-02\tAbsError: 2.67656e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37417e-02\tAbsError: 9.16534e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.15760e+00\tAbsError: 3.46533e+16\n", - " Region: \"zone_1\"\tRelError: 4.44487e-01\tAbsError: 9.16511e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 4.44487e-01\tAbsError: 9.16511e-03\n", - " Region: \"zone_3\"\tRelError: 7.13113e-01\tAbsError: 3.46533e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34412e-01\tAbsError: 1.73980e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.38070e-02\tAbsError: 1.72552e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 5.24894e-01\tAbsError: 9.16533e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.32137e+02\tAbsError: 2.29730e+15\n", - " Region: \"zone_1\"\tRelError: 2.07460e+00\tAbsError: 6.35445e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.07460e+00\tAbsError: 6.35445e-02\n", - " Region: \"zone_3\"\tRelError: 4.30062e+02\tAbsError: 2.29730e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.80679e+02\tAbsError: 1.41594e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.92715e+01\tAbsError: 8.81358e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11655e-01\tAbsError: 6.35446e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.76114e+00\tAbsError: 3.11157e+15\n", - " Region: \"zone_1\"\tRelError: 1.46998e-01\tAbsError: 5.72926e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46998e-01\tAbsError: 5.72926e-05\n", - " Region: \"zone_3\"\tRelError: 1.61414e+00\tAbsError: 3.11157e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.13906e-03\tAbsError: 1.60788e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.01418e-04\tAbsError: 1.50369e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60610e+00\tAbsError: 5.72926e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.80174e+03\tAbsError: 1.56957e+13\n", - " Region: \"zone_1\"\tRelError: 3.66656e-02\tAbsError: 2.57139e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.66656e-02\tAbsError: 2.57139e-02\n", - " Region: \"zone_3\"\tRelError: 3.80170e+03\tAbsError: 1.56957e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.80091e+03\tAbsError: 6.65708e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.49117e-01\tAbsError: 1.50300e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.74641e-02\tAbsError: 2.58924e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 5.74119e-02\tAbsError: 3.00253e+15\n", - " Region: \"zone_1\"\tRelError: 1.72667e-02\tAbsError: 6.21206e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72667e-02\tAbsError: 6.21206e-05\n", - " Region: \"zone_3\"\tRelError: 4.01452e-02\tAbsError: 3.00253e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04052e-02\tAbsError: 1.53972e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.58359e-03\tAbsError: 1.46281e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81563e-02\tAbsError: 6.25380e-05\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.38444e-02\tAbsError: 3.70458e+12\n", - " Region: \"zone_1\"\tRelError: 3.59871e-03\tAbsError: 2.71390e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.59871e-03\tAbsError: 2.71390e-05\n", - " Region: \"zone_3\"\tRelError: 9.02457e-02\tAbsError: 3.70458e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.84320e-02\tAbsError: 1.19345e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.76575e-03\tAbsError: 2.51114e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.79561e-05\tAbsError: 2.71828e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 2.61238e+00\tAbsError: 1.11231e+13\n", - " Region: \"zone_1\"\tRelError: 2.12491e-02\tAbsError: 1.77022e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.12491e-02\tAbsError: 1.77022e-02\n", - " Region: \"zone_3\"\tRelError: 2.59113e+00\tAbsError: 1.11231e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.56346e+00\tAbsError: 5.43531e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.10503e-03\tAbsError: 1.05796e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.15668e-02\tAbsError: 1.77023e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.33375e+03\tAbsError: 3.70248e+14\n", - " Region: \"zone_1\"\tRelError: 8.99378e-02\tAbsError: 5.74069e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.99378e-02\tAbsError: 5.74069e-02\n", - " Region: \"zone_3\"\tRelError: 4.33366e+03\tAbsError: 3.70248e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01982e+02\tAbsError: 1.56203e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.13159e+03\tAbsError: 2.14045e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.01902e-02\tAbsError: 5.74070e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.77034e-04\tAbsError: 8.73262e+11\n", - " Region: \"zone_1\"\tRelError: 7.70938e-06\tAbsError: 1.62726e-08\n", - " Equation: \"PotentialEquation\"\tRelError: 7.70938e-06\tAbsError: 1.62726e-08\n", - " Region: \"zone_3\"\tRelError: 1.69324e-04\tAbsError: 8.73262e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.91186e-06\tAbsError: 4.56387e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.48171e-07\tAbsError: 4.16875e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.67064e-04\tAbsError: 1.62726e-08\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 5.81678e-01\tAbsError: 8.11567e+12\n", - " Region: \"zone_1\"\tRelError: 2.44659e-03\tAbsError: 2.61873e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.44659e-03\tAbsError: 2.61873e-05\n", - " Region: \"zone_3\"\tRelError: 5.79232e-01\tAbsError: 8.11567e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.76787e-01\tAbsError: 1.13091e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.40509e-03\tAbsError: 6.98476e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.99008e-05\tAbsError: 2.64685e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.14148e-05\tAbsError: 7.36262e+11\n", - " Region: \"zone_1\"\tRelError: 4.55231e-07\tAbsError: 9.54534e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 4.55231e-07\tAbsError: 9.54534e-09\n", - " Region: \"zone_3\"\tRelError: 1.09596e-05\tAbsError: 7.36262e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.23017e-06\tAbsError: 3.79166e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.26674e-07\tAbsError: 3.57096e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00275e-06\tAbsError: 1.00816e-08\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.96038e-05\tAbsError: 5.27329e+08\n", - " Region: \"zone_1\"\tRelError: 3.38320e-07\tAbsError: 2.80513e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.38320e-07\tAbsError: 2.80513e-09\n", - " Region: \"zone_3\"\tRelError: 4.92654e-05\tAbsError: 5.27329e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.82203e-05\tAbsError: 1.20057e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.04006e-06\tAbsError: 4.07273e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 5.04648e-09\tAbsError: 2.84942e-09\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:23\u001b[0m.\u001b[1;36m231\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:23\u001b[0m.\u001b[1;36m231\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 4.35849e-04\tAbsError: 3.72621e+08\n", - " Region: \"zone_1\"\tRelError: 9.74733e-08\tAbsError: 1.39396e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.74733e-08\tAbsError: 1.39396e-09\n", - " Region: \"zone_3\"\tRelError: 4.35752e-04\tAbsError: 3.72621e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.34041e-04\tAbsError: 4.56136e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.70891e-06\tAbsError: 3.27007e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.16343e-09\tAbsError: 1.45042e-09\n", - "Iteration: 8\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 1.02608e+03\tAbsError: 1.57087e+14\n", - " Region: \"zone_1\"\tRelError: 1.57533e-01\tAbsError: 5.02452e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.57533e-01\tAbsError: 5.02452e-02\n", - " Region: \"zone_3\"\tRelError: 1.02593e+03\tAbsError: 1.57087e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24945e+02\tAbsError: 5.51555e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.00908e+02\tAbsError: 1.01931e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.22342e-02\tAbsError: 5.02452e-02\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.46859e-12\tAbsError: 7.81503e+04\n", - " Region: \"zone_1\"\tRelError: 2.38783e-13\tAbsError: 1.16589e-15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.38783e-13\tAbsError: 1.16589e-15\n", - " Region: \"zone_3\"\tRelError: 2.22981e-12\tAbsError: 7.81503e+04\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.62269e-13\tAbsError: 3.99082e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.70018e-14\tAbsError: 3.82421e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.05054e-12\tAbsError: 1.16589e-15\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 6.63476e-12\tAbsError: 3.12455e+04\n", - " Region: \"zone_1\"\tRelError: 2.28845e-13\tAbsError: 1.11990e-16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.28845e-13\tAbsError: 1.11990e-16\n", - " Region: \"zone_3\"\tRelError: 6.40592e-12\tAbsError: 3.12455e+04\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.32925e-12\tAbsError: 1.56395e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.20403e-14\tAbsError: 1.56060e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.46296e-14\tAbsError: 1.15404e-16\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:23\u001b[0m.\u001b[1;36m696\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:23\u001b[0m.\u001b[1;36m696\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.20555555555555557\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 9\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 3.51162e+02\tAbsError: 1.51715e+14\n", - " Region: \"zone_1\"\tRelError: 1.16438e-01\tAbsError: 4.17804e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16438e-01\tAbsError: 4.17804e-02\n", - " Region: \"zone_3\"\tRelError: 3.51046e+02\tAbsError: 1.51715e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.03907e+02\tAbsError: 8.14342e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.70825e+01\tAbsError: 7.02811e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.60305e-02\tAbsError: 4.17805e-02\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.62677e+00\tAbsError: 8.55868e+15\n", - " Region: \"zone_1\"\tRelError: 3.93566e+00\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.93566e+00\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.69111e+00\tAbsError: 8.55868e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94568e-01\tAbsError: 4.83229e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94557e-01\tAbsError: 3.72639e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01989e-01\tAbsError: 4.09542e-02\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.46957e+02\tAbsError: 7.87014e+13\n", - " Region: \"zone_1\"\tRelError: 4.00573e-02\tAbsError: 3.17370e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.00573e-02\tAbsError: 3.17370e-02\n", - " Region: \"zone_3\"\tRelError: 1.46917e+02\tAbsError: 7.87014e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42905e+02\tAbsError: 5.10431e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.97144e+00\tAbsError: 7.35971e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.02690e-02\tAbsError: 3.17371e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.68467e+00\tAbsError: 3.35446e+14\n", - " Region: \"zone_1\"\tRelError: 1.36557e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36557e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.54812e+00\tAbsError: 3.35446e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90679e-01\tAbsError: 1.72457e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.87899e-01\tAbsError: 1.62989e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.95382e-02\tAbsError: 3.07632e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:24\u001b[0m.\u001b[1;36m280\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:24\u001b[0m.\u001b[1;36m313\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.15 bias\u001b[0m \n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 3.42199e+01\tAbsError: 6.33431e+13\n", - " Region: \"zone_1\"\tRelError: 3.22245e-02\tAbsError: 2.58704e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.22245e-02\tAbsError: 2.58704e-02\n", - " Region: \"zone_3\"\tRelError: 3.41876e+01\tAbsError: 6.33431e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.39955e+01\tAbsError: 1.79340e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.59887e-01\tAbsError: 6.15497e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.22245e-02\tAbsError: 2.46614e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:24\u001b[0m.\u001b[1;36m348\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 0.1\u001b[0m \n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.36416e+01\tAbsError: 9.09726e+15\n", - " Region: \"zone_1\"\tRelError: 1.19443e+01\tAbsError: 4.20726e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19443e+01\tAbsError: 4.20726e-02\n", - " Region: \"zone_3\"\tRelError: 1.69727e+00\tAbsError: 9.09726e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.03202e-01\tAbsError: 4.92151e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.03171e-01\tAbsError: 4.17576e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.08998e-02\tAbsError: 4.20726e-02\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:24\u001b[0m.\u001b[1;36m417\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:24\u001b[0m.\u001b[1;36m449\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.2 bias\u001b[0m \n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:24\u001b[0m.\u001b[1;36m484\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.1\u001b[0m \n", - "number of equations 22602\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.58081e+00\tAbsError: 1.11842e+14\n", - " Region: \"zone_1\"\tRelError: 1.21721e-02\tAbsError: 1.03782e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21721e-02\tAbsError: 1.03782e-02\n", - " Region: \"zone_3\"\tRelError: 1.56863e+00\tAbsError: 1.11842e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.55004e+00\tAbsError: 4.08486e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.14119e-03\tAbsError: 1.07757e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.24479e-02\tAbsError: 1.03783e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.10405e+00\tAbsError: 2.84626e+13\n", - " Region: \"zone_1\"\tRelError: 5.09442e-02\tAbsError: 2.58970e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.09442e-02\tAbsError: 2.58970e-02\n", - " Region: \"zone_3\"\tRelError: 1.05311e+00\tAbsError: 2.84626e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14915e-01\tAbsError: 1.81960e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.86897e-01\tAbsError: 1.02666e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.12979e-02\tAbsError: 2.58565e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.89696e+00\tAbsError: 3.83121e+14\n", - " Region: \"zone_1\"\tRelError: 3.29440e-01\tAbsError: 3.20820e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.29440e-01\tAbsError: 3.20820e-02\n", - " Region: \"zone_3\"\tRelError: 1.56752e+00\tAbsError: 3.83121e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.06173e-01\tAbsError: 1.73741e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.02918e-01\tAbsError: 2.09380e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.84246e-02\tAbsError: 3.20820e-02\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 1.99331e-01\tAbsError: 1.43366e+14\n", - " Region: \"zone_1\"\tRelError: 1.64438e-02\tAbsError: 1.92112e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.64438e-02\tAbsError: 1.92112e-04\n", - " Region: \"zone_3\"\tRelError: 1.82888e-01\tAbsError: 1.43366e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.72124e-01\tAbsError: 6.88270e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.04833e-02\tAbsError: 1.36484e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.80128e-04\tAbsError: 1.98494e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.55178e+02\tAbsError: 4.19296e+18\n", - " Region: \"zone_1\"\tRelError: 9.46717e+01\tAbsError: 8.96715e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.46717e+01\tAbsError: 8.96715e-02\n", - " Region: \"zone_3\"\tRelError: 5.60506e+02\tAbsError: 4.19296e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.71840e+02\tAbsError: 2.09941e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.42818e+02\tAbsError: 2.09356e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 1.45848e+02\tAbsError: 8.96718e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.52899e+03\tAbsError: 5.52426e+18\n", - " Region: \"zone_1\"\tRelError: 1.19471e+02\tAbsError: 9.11937e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19471e+02\tAbsError: 9.11937e-02\n", - " Region: \"zone_3\"\tRelError: 1.40951e+03\tAbsError: 5.52426e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00001e+03\tAbsError: 2.32297e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.07895e+02\tAbsError: 3.20129e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 3.01606e+02\tAbsError: 9.11941e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.87738e-01\tAbsError: 1.50257e+12\n", - " Region: \"zone_1\"\tRelError: 1.63299e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.63299e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.71408e-01\tAbsError: 1.50257e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88723e-01\tAbsError: 2.92089e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.61472e-02\tAbsError: 1.21048e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65380e-02\tAbsError: 9.16534e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.15294e+00\tAbsError: 5.01228e+13\n", - " Region: \"zone_1\"\tRelError: 4.66659e-02\tAbsError: 2.58180e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.66659e-02\tAbsError: 2.58180e-02\n", - " Region: \"zone_3\"\tRelError: 1.10628e+00\tAbsError: 5.01228e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.41002e-01\tAbsError: 2.79935e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.21167e-01\tAbsError: 2.21292e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.41094e-02\tAbsError: 2.57601e-02\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 6.38047e-04\tAbsError: 8.40237e+10\n", - " Region: \"zone_1\"\tRelError: 8.71093e-06\tAbsError: 1.41888e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 8.71093e-06\tAbsError: 1.41888e-07\n", - " Region: \"zone_3\"\tRelError: 6.29336e-04\tAbsError: 8.40237e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.88281e-04\tAbsError: 3.39539e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.08430e-05\tAbsError: 8.06283e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.12387e-07\tAbsError: 1.50351e-07\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 5.59128e+02\tAbsError: 3.70246e+18\n", - " Region: \"zone_1\"\tRelError: 7.27506e+01\tAbsError: 8.66949e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.27506e+01\tAbsError: 8.66949e-02\n", - " Region: \"zone_3\"\tRelError: 4.86377e+02\tAbsError: 3.70246e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.84555e+01\tAbsError: 1.87060e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.32939e+01\tAbsError: 1.83186e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 3.64628e+02\tAbsError: 8.66950e-02\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 3.36908e-10\tAbsError: 5.80084e+04\n", - " Region: \"zone_1\"\tRelError: 5.10232e-12\tAbsError: 8.55220e-14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.10232e-12\tAbsError: 8.55220e-14\n", - " Region: \"zone_3\"\tRelError: 3.31806e-10\tAbsError: 5.80084e+04\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87749e-10\tAbsError: 1.56061e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.38210e-11\tAbsError: 4.24023e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.35487e-13\tAbsError: 9.08369e-14\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 7.99996e+02\tAbsError: 4.79855e+18\n", - " Region: \"zone_1\"\tRelError: 4.84124e+02\tAbsError: 8.83465e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.84124e+02\tAbsError: 8.83465e-02\n", - " Region: \"zone_3\"\tRelError: 3.15873e+02\tAbsError: 4.79855e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.69613e+01\tAbsError: 2.06031e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.73824e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 2.09911e+02\tAbsError: 8.83466e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.96849e-02\tAbsError: 2.07362e+12\n", - " Region: \"zone_1\"\tRelError: 7.02885e-04\tAbsError: 1.90198e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.02885e-04\tAbsError: 1.90198e-05\n", - " Region: \"zone_3\"\tRelError: 8.89820e-02\tAbsError: 2.07362e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.78375e-02\tAbsError: 8.90891e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10276e-03\tAbsError: 1.18273e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.17313e-05\tAbsError: 1.96984e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:25\u001b[0m.\u001b[1;36m555\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.2\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.15526e-01\tAbsError: 2.42634e+12\n", - " Region: \"zone_1\"\tRelError: 1.61579e-02\tAbsError: 1.08344e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.61579e-02\tAbsError: 1.08344e-02\n", - " Region: \"zone_3\"\tRelError: 3.99368e-01\tAbsError: 2.42634e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91128e-01\tAbsError: 1.32019e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.18221e-02\tAbsError: 1.10616e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.64183e-02\tAbsError: 1.08344e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 3.53516e+01\tAbsError: 7.53728e+17\n", - " Region: \"zone_1\"\tRelError: 9.71612e+00\tAbsError: 8.34500e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.71612e+00\tAbsError: 8.34500e-02\n", - " Region: \"zone_3\"\tRelError: 2.56355e+01\tAbsError: 7.53728e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.85616e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.68112e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 7.63549e+00\tAbsError: 8.34501e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.40982e-05\tAbsError: 1.92019e+08\n", - " Region: \"zone_1\"\tRelError: 4.03285e-08\tAbsError: 1.17477e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 4.03285e-08\tAbsError: 1.17477e-09\n", - " Region: \"zone_3\"\tRelError: 3.40579e-05\tAbsError: 1.92019e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.36060e-05\tAbsError: 5.55442e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.49187e-07\tAbsError: 1.36475e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.67835e-09\tAbsError: 1.26430e-09\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 6.11681e+02\tAbsError: 9.73831e+17\n", - " Region: \"zone_1\"\tRelError: 1.66118e+01\tAbsError: 8.52530e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66118e+01\tAbsError: 8.52530e-02\n", - " Region: \"zone_3\"\tRelError: 5.95070e+02\tAbsError: 9.73831e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 4.64637e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.45073e+02\tAbsError: 5.09194e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 4.40997e+02\tAbsError: 8.52530e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:26\u001b[0m.\u001b[1;36m006\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.4\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.04481e-01\tAbsError: 6.34896e+11\n", - " Region: \"zone_1\"\tRelError: 4.71054e-04\tAbsError: 5.88390e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.71054e-04\tAbsError: 5.88390e-06\n", - " Region: \"zone_3\"\tRelError: 1.04010e-01\tAbsError: 6.34896e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03474e-01\tAbsError: 2.77921e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.25244e-04\tAbsError: 3.56974e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10538e-05\tAbsError: 6.12131e-06\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.57138e+02\tAbsError: 1.91537e+17\n", - " Region: \"zone_1\"\tRelError: 2.14306e+01\tAbsError: 7.98885e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.14306e+01\tAbsError: 7.98885e-02\n", - " Region: \"zone_3\"\tRelError: 4.35707e+02\tAbsError: 1.91537e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.17395e+02\tAbsError: 1.23405e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.17404e+02\tAbsError: 6.81323e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 9.07859e-01\tAbsError: 7.98942e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.21485e+01\tAbsError: 8.61846e+15\n", - " Region: \"zone_1\"\tRelError: 3.04717e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.04717e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.67686e+00\tAbsError: 8.61846e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94516e-01\tAbsError: 4.66248e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94484e-01\tAbsError: 3.95598e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.78603e-02\tAbsError: 4.09542e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.53509e+03\tAbsError: 2.64355e+17\n", - " Region: \"zone_1\"\tRelError: 8.11560e+00\tAbsError: 8.18705e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.11560e+00\tAbsError: 8.18705e-02\n", - " Region: \"zone_3\"\tRelError: 1.52697e+03\tAbsError: 2.64355e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.51231e+03\tAbsError: 1.58326e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.19219e+01\tAbsError: 1.06029e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 2.73627e+00\tAbsError: 8.18706e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.34755e-05\tAbsError: 1.52606e+07\n", - " Region: \"zone_1\"\tRelError: 7.60373e-09\tAbsError: 1.04179e-10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.60373e-09\tAbsError: 1.04179e-10\n", - " Region: \"zone_3\"\tRelError: 1.34679e-05\tAbsError: 1.52606e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33958e-05\tAbsError: 4.82777e+06\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.19416e-08\tAbsError: 1.04328e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.01664e-10\tAbsError: 1.11640e-10\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:26\u001b[0m.\u001b[1;36m619\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:26\u001b[0m.\u001b[1;36m619\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.3111111111111111\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.31502e+02\tAbsError: 6.87028e+16\n", - " Region: \"zone_1\"\tRelError: 1.68094e+01\tAbsError: 7.59542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.68094e+01\tAbsError: 7.59542e-02\n", - " Region: \"zone_3\"\tRelError: 8.14692e+02\tAbsError: 6.87028e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.83334e+02\tAbsError: 4.38759e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.31160e+02\tAbsError: 2.48269e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.98992e-01\tAbsError: 7.59565e-02\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.07800e+00\tAbsError: 3.45404e+14\n", - " Region: \"zone_1\"\tRelError: 5.44178e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.44178e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.53382e+00\tAbsError: 3.45404e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90662e-01\tAbsError: 1.56300e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.87478e-01\tAbsError: 1.89103e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.56802e-02\tAbsError: 3.07632e-02\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.56244e+00\tAbsError: 8.45570e+15\n", - " Region: \"zone_1\"\tRelError: 3.85573e+00\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.85573e+00\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.70670e+00\tAbsError: 8.45570e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94571e-01\tAbsError: 4.92914e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94557e-01\tAbsError: 3.52655e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17574e-01\tAbsError: 4.09542e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.31694e+02\tAbsError: 8.22528e+16\n", - " Region: \"zone_1\"\tRelError: 1.67084e+02\tAbsError: 7.81452e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.67084e+02\tAbsError: 7.81452e-02\n", - " Region: \"zone_3\"\tRelError: 6.46099e+01\tAbsError: 8.22528e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.91409e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.53588e+01\tAbsError: 4.31119e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.51084e-01\tAbsError: 7.81452e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.51444e+02\tAbsError: 6.18288e+15\n", - " Region: \"zone_1\"\tRelError: 5.96684e+01\tAbsError: 7.15580e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.96684e+01\tAbsError: 7.15580e-02\n", - " Region: \"zone_3\"\tRelError: 4.91775e+02\tAbsError: 6.18288e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.96477e+01\tAbsError: 1.82578e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.51973e+02\tAbsError: 4.35710e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55063e-01\tAbsError: 7.15593e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.67739e+00\tAbsError: 3.26551e+14\n", - " Region: \"zone_1\"\tRelError: 1.13651e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13651e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.56374e+00\tAbsError: 3.26551e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91179e-01\tAbsError: 1.98410e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.87607e-01\tAbsError: 1.28141e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.49517e-02\tAbsError: 3.07632e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.11313e+00\tAbsError: 4.26791e+13\n", - " Region: \"zone_1\"\tRelError: 7.05940e-02\tAbsError: 2.58377e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.05940e-02\tAbsError: 2.58377e-02\n", - " Region: \"zone_3\"\tRelError: 1.04254e+00\tAbsError: 4.26791e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14646e-01\tAbsError: 2.38411e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.85599e-01\tAbsError: 1.88379e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.22941e-02\tAbsError: 2.58015e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.59844e+02\tAbsError: 1.24880e+16\n", - " Region: \"zone_1\"\tRelError: 1.03700e+01\tAbsError: 7.40072e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03700e+01\tAbsError: 7.40072e-02\n", - " Region: \"zone_3\"\tRelError: 4.49474e+02\tAbsError: 1.24880e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 4.24800e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.40305e+02\tAbsError: 8.23998e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.69842e-01\tAbsError: 7.40073e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.69894e+00\tAbsError: 9.02984e+15\n", - " Region: \"zone_1\"\tRelError: 4.98629e+00\tAbsError: 4.20726e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.98629e+00\tAbsError: 4.20726e-02\n", - " Region: \"zone_3\"\tRelError: 1.71265e+00\tAbsError: 9.02984e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.03254e-01\tAbsError: 5.10935e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.03243e-01\tAbsError: 3.92049e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06149e-01\tAbsError: 4.20726e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.49917e+02\tAbsError: 2.95788e+15\n", - " Region: \"zone_1\"\tRelError: 3.04492e+00\tAbsError: 6.65940e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.04492e+00\tAbsError: 6.65940e-02\n", - " Region: \"zone_3\"\tRelError: 1.46872e+02\tAbsError: 2.95788e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.68810e+01\tAbsError: 1.83594e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.19869e+02\tAbsError: 1.12194e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21422e-01\tAbsError: 6.65969e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.83480e-01\tAbsError: 2.88954e+12\n", - " Region: \"zone_1\"\tRelError: 1.35212e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35212e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.69958e-01\tAbsError: 2.88954e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88338e-01\tAbsError: 2.12977e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.78790e-02\tAbsError: 2.67656e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37417e-02\tAbsError: 9.16534e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.13583e+00\tAbsError: 3.35166e+13\n", - " Region: \"zone_1\"\tRelError: 6.49986e-02\tAbsError: 2.58787e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.49986e-02\tAbsError: 2.58787e-02\n", - " Region: \"zone_3\"\tRelError: 1.07083e+00\tAbsError: 3.35166e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14794e-01\tAbsError: 2.31889e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.90894e-01\tAbsError: 1.03277e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.51440e-02\tAbsError: 2.58923e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.11429e+03\tAbsError: 2.38864e+15\n", - " Region: \"zone_1\"\tRelError: 1.50596e+00\tAbsError: 6.93659e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.50596e+00\tAbsError: 6.93659e-02\n", - " Region: \"zone_3\"\tRelError: 2.11278e+03\tAbsError: 2.38864e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.71799e+01\tAbsError: 1.29149e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.07547e+03\tAbsError: 1.09714e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33696e-01\tAbsError: 6.93660e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.83976e+00\tAbsError: 3.73254e+14\n", - " Region: \"zone_1\"\tRelError: 2.58614e-01\tAbsError: 3.20820e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.58614e-01\tAbsError: 3.20820e-02\n", - " Region: \"zone_3\"\tRelError: 1.58115e+00\tAbsError: 3.73254e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.06515e-01\tAbsError: 1.94620e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.02868e-01\tAbsError: 1.78634e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.17646e-02\tAbsError: 3.20820e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.83585e+04\tAbsError: 7.32345e+14\n", - " Region: \"zone_1\"\tRelError: 4.44128e-01\tAbsError: 6.09260e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.44128e-01\tAbsError: 6.09260e-02\n", - " Region: \"zone_3\"\tRelError: 3.83580e+04\tAbsError: 7.32345e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.30599e+02\tAbsError: 3.72701e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.78273e+04\tAbsError: 3.59644e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.79120e-02\tAbsError: 6.09290e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.38444e-02\tAbsError: 3.70458e+12\n", - " Region: \"zone_1\"\tRelError: 3.59871e-03\tAbsError: 2.71390e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.59871e-03\tAbsError: 2.71390e-05\n", - " Region: \"zone_3\"\tRelError: 9.02457e-02\tAbsError: 3.70458e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.84320e-02\tAbsError: 1.19345e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.76575e-03\tAbsError: 2.51114e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.79561e-05\tAbsError: 2.71828e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.97006e-01\tAbsError: 3.97798e+12\n", - " Region: \"zone_1\"\tRelError: 2.05644e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.05644e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.76441e-01\tAbsError: 3.97798e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88505e-01\tAbsError: 1.01871e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.71832e-02\tAbsError: 2.95927e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.07533e-02\tAbsError: 9.16534e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.25231e+03\tAbsError: 9.03734e+14\n", - " Region: \"zone_1\"\tRelError: 8.82466e-01\tAbsError: 6.41008e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.82466e-01\tAbsError: 6.41008e-02\n", - " Region: \"zone_3\"\tRelError: 2.25143e+03\tAbsError: 9.03734e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.57304e+02\tAbsError: 4.07168e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.69402e+03\tAbsError: 4.96566e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07550e-01\tAbsError: 6.41009e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.17417e+00\tAbsError: 3.20760e+13\n", - " Region: \"zone_1\"\tRelError: 5.46381e-02\tAbsError: 2.58802e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.46381e-02\tAbsError: 2.58802e-02\n", - " Region: \"zone_3\"\tRelError: 1.11953e+00\tAbsError: 3.20760e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.41378e-01\tAbsError: 2.05221e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.23358e-01\tAbsError: 1.15539e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.47948e-02\tAbsError: 2.58959e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.25275e+04\tAbsError: 2.12614e+14\n", - " Region: \"zone_1\"\tRelError: 7.91343e-02\tAbsError: 5.43640e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.91343e-02\tAbsError: 5.43640e-02\n", - " Region: \"zone_3\"\tRelError: 2.25274e+04\tAbsError: 2.12614e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.66145e+03\tAbsError: 2.65979e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.98659e+04\tAbsError: 1.86016e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.93208e-02\tAbsError: 5.43673e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.96038e-05\tAbsError: 5.27330e+08\n", - " Region: \"zone_1\"\tRelError: 3.38320e-07\tAbsError: 2.80513e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.38320e-07\tAbsError: 2.80513e-09\n", - " Region: \"zone_3\"\tRelError: 4.92654e-05\tAbsError: 5.27330e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.82203e-05\tAbsError: 1.20057e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.04006e-06\tAbsError: 4.07273e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 5.04648e-09\tAbsError: 2.84942e-09\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.75905e-02\tAbsError: 6.14178e+11\n", - " Region: \"zone_1\"\tRelError: 1.87871e-04\tAbsError: 5.35919e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87871e-04\tAbsError: 5.35919e-06\n", - " Region: \"zone_3\"\tRelError: 8.74026e-02\tAbsError: 6.14178e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.70791e-02\tAbsError: 2.57149e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.08574e-04\tAbsError: 3.57029e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49985e-05\tAbsError: 5.65537e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:28\u001b[0m.\u001b[1;36m462\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:28\u001b[0m.\u001b[1;36m462\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.35767e+03\tAbsError: 4.38346e+14\n", - " Region: \"zone_1\"\tRelError: 1.72519e-01\tAbsError: 5.80509e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72519e-01\tAbsError: 5.80509e-02\n", - " Region: \"zone_3\"\tRelError: 3.35750e+03\tAbsError: 4.38346e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54842e+03\tAbsError: 1.20412e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.80899e+03\tAbsError: 3.17935e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.54433e-02\tAbsError: 5.80510e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.20610e-01\tAbsError: 2.46367e+12\n", - " Region: \"zone_1\"\tRelError: 1.97787e-02\tAbsError: 1.08344e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.97787e-02\tAbsError: 1.08344e-02\n", - " Region: \"zone_3\"\tRelError: 4.00831e-01\tAbsError: 2.46367e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.90180e-01\tAbsError: 1.36067e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.06203e-02\tAbsError: 1.10300e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.00308e-02\tAbsError: 1.08344e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.83174e+03\tAbsError: 3.03017e+14\n", - " Region: \"zone_1\"\tRelError: 1.86561e-01\tAbsError: 4.66596e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86561e-01\tAbsError: 4.66596e-02\n", - " Region: \"zone_3\"\tRelError: 2.83156e+03\tAbsError: 3.03017e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.69901e+03\tAbsError: 1.18356e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.32487e+02\tAbsError: 1.84661e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.30157e-02\tAbsError: 4.66636e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.95471e-06\tAbsError: 1.37438e+07\n", - " Region: \"zone_1\"\tRelError: 1.96051e-09\tAbsError: 6.30623e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.96051e-09\tAbsError: 6.30623e-11\n", - " Region: \"zone_3\"\tRelError: 9.95275e-06\tAbsError: 1.37438e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.91827e-06\tAbsError: 3.21255e+06\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.43047e-08\tAbsError: 1.05312e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.78389e-10\tAbsError: 6.72816e-11\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:28\u001b[0m.\u001b[1;36m940\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.5\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 9.11329e+02\tAbsError: 3.55421e+14\n", - " Region: \"zone_1\"\tRelError: 6.92220e-02\tAbsError: 5.10012e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.92220e-02\tAbsError: 5.10012e-02\n", - " Region: \"zone_3\"\tRelError: 9.11259e+02\tAbsError: 3.55421e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28865e+02\tAbsError: 2.22302e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.82326e+02\tAbsError: 3.33191e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.90503e-02\tAbsError: 5.10013e-02\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.70427e+04\tAbsError: 2.02458e+14\n", - " Region: \"zone_1\"\tRelError: 4.75338e-02\tAbsError: 3.75199e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.75338e-02\tAbsError: 3.75199e-02\n", - " Region: \"zone_3\"\tRelError: 3.70426e+04\tAbsError: 2.02458e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.23519e+02\tAbsError: 1.48588e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.67191e+04\tAbsError: 1.87599e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.78377e-02\tAbsError: 3.75245e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.03169e-01\tAbsError: 1.09582e+11\n", - " Region: \"zone_1\"\tRelError: 5.27309e-05\tAbsError: 7.87175e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 5.27309e-05\tAbsError: 7.87175e-07\n", - " Region: \"zone_3\"\tRelError: 1.03117e-01\tAbsError: 1.09582e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02996e-01\tAbsError: 3.80676e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.19243e-04\tAbsError: 7.15146e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81215e-06\tAbsError: 8.31957e-07\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.62677e+00\tAbsError: 8.55868e+15\n", - " Region: \"zone_1\"\tRelError: 3.93566e+00\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.93566e+00\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.69111e+00\tAbsError: 8.55868e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94568e-01\tAbsError: 4.83229e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94557e-01\tAbsError: 3.72639e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01989e-01\tAbsError: 4.09542e-02\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.99508e+02\tAbsError: 3.56712e+14\n", - " Region: \"zone_1\"\tRelError: 5.37825e-02\tAbsError: 4.26778e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.37825e-02\tAbsError: 4.26778e-02\n", - " Region: \"zone_3\"\tRelError: 3.99454e+02\tAbsError: 3.56712e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.74733e+02\tAbsError: 9.45682e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.46668e+01\tAbsError: 3.47255e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.40853e-02\tAbsError: 4.26779e-02\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 4.97099e+01\tAbsError: 1.83373e+14\n", - " Region: \"zone_1\"\tRelError: 3.58093e-02\tAbsError: 2.67472e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.58093e-02\tAbsError: 2.67472e-02\n", - " Region: \"zone_3\"\tRelError: 4.96741e+01\tAbsError: 1.83373e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.86384e+01\tAbsError: 7.10112e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.99823e-01\tAbsError: 1.76272e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.58093e-02\tAbsError: 2.67523e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.18157e-06\tAbsError: 1.01458e+05\n", - " Region: \"zone_1\"\tRelError: 9.31729e-12\tAbsError: 3.59108e-13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.31729e-12\tAbsError: 3.59108e-13\n", - " Region: \"zone_3\"\tRelError: 2.18156e-06\tAbsError: 1.01458e+05\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17993e-06\tAbsError: 1.94300e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.62794e-09\tAbsError: 8.20285e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 8.91197e-13\tAbsError: 4.12009e-13\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.68467e+00\tAbsError: 3.35446e+14\n", - " Region: \"zone_1\"\tRelError: 1.36557e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36557e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.54812e+00\tAbsError: 3.35446e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90679e-01\tAbsError: 1.72457e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.87899e-01\tAbsError: 1.62989e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.95382e-02\tAbsError: 3.07632e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:29\u001b[0m.\u001b[1;36m571\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:29\u001b[0m.\u001b[1;36m571\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.41666666666666674\u001b[0m \n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 2.12568e+01\tAbsError: 3.59469e+14\n", - " Region: \"zone_1\"\tRelError: 3.95899e-02\tAbsError: 3.27971e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.95899e-02\tAbsError: 3.27971e-02\n", - " Region: \"zone_3\"\tRelError: 2.12172e+01\tAbsError: 3.59469e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.09538e+01\tAbsError: 1.57655e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.23758e-01\tAbsError: 3.43704e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.96086e-02\tAbsError: 3.27973e-02\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 2.07093e+03\tAbsError: 1.48037e+14\n", - " Region: \"zone_1\"\tRelError: 2.37100e-02\tAbsError: 2.00969e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.37100e-02\tAbsError: 2.00969e-02\n", - " Region: \"zone_3\"\tRelError: 2.07090e+03\tAbsError: 1.48037e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07086e+03\tAbsError: 6.00698e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.31635e-02\tAbsError: 1.42030e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.38215e-02\tAbsError: 2.01053e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.87556e+01\tAbsError: 8.34767e+15\n", - " Region: \"zone_1\"\tRelError: 6.70313e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.70313e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.72426e+00\tAbsError: 8.34767e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94570e-01\tAbsError: 4.96926e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94551e-01\tAbsError: 3.37841e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35138e-01\tAbsError: 4.09542e-02\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.79606e+02\tAbsError: 3.17335e+14\n", - " Region: \"zone_1\"\tRelError: 3.16890e-02\tAbsError: 2.57088e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.16890e-02\tAbsError: 2.57088e-02\n", - " Region: \"zone_3\"\tRelError: 1.79574e+02\tAbsError: 3.17335e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.79511e+02\tAbsError: 1.15814e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.15584e-02\tAbsError: 3.05753e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.16890e-02\tAbsError: 2.54280e-02\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 1.01490e+00\tAbsError: 9.76040e+13\n", - " Region: \"zone_1\"\tRelError: 1.13824e-02\tAbsError: 1.29477e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13824e-02\tAbsError: 1.29477e-04\n", - " Region: \"zone_3\"\tRelError: 1.00352e+00\tAbsError: 9.76040e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.95736e-01\tAbsError: 4.79799e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.59601e-03\tAbsError: 9.28060e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.89534e-04\tAbsError: 1.32435e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.10405e+00\tAbsError: 2.84626e+13\n", - " Region: \"zone_1\"\tRelError: 5.09442e-02\tAbsError: 2.58970e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.09442e-02\tAbsError: 2.58970e-02\n", - " Region: \"zone_3\"\tRelError: 1.05311e+00\tAbsError: 2.84626e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14915e-01\tAbsError: 1.81960e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.86897e-01\tAbsError: 1.02666e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.12979e-02\tAbsError: 2.58565e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.18244e+00\tAbsError: 3.45808e+14\n", - " Region: \"zone_1\"\tRelError: 5.95786e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95786e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.58666e+00\tAbsError: 3.45808e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91491e-01\tAbsError: 2.56450e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.87672e-01\tAbsError: 8.93573e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07491e-01\tAbsError: 3.07632e-02\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 3.61611e+00\tAbsError: 7.63894e+14\n", - " Region: \"zone_1\"\tRelError: 2.06202e-02\tAbsError: 1.18262e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06202e-02\tAbsError: 1.18262e-02\n", - " Region: \"zone_3\"\tRelError: 3.59549e+00\tAbsError: 7.63894e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.56908e+00\tAbsError: 8.10617e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.26902e-02\tAbsError: 7.55788e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37185e-02\tAbsError: 1.18264e-02\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 2.81250e-03\tAbsError: 3.78042e+10\n", - " Region: \"zone_1\"\tRelError: 1.35215e-06\tAbsError: 3.48965e-08\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35215e-06\tAbsError: 3.48965e-08\n", - " Region: \"zone_3\"\tRelError: 2.81115e-03\tAbsError: 3.78042e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.78840e-03\tAbsError: 4.25724e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.26984e-05\tAbsError: 3.73784e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.25178e-08\tAbsError: 3.71778e-08\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 4.17123e+00\tAbsError: 8.90820e+15\n", - " Region: \"zone_1\"\tRelError: 2.44528e+00\tAbsError: 4.20726e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.44528e+00\tAbsError: 4.20726e-02\n", - " Region: \"zone_3\"\tRelError: 1.72594e+00\tAbsError: 8.90820e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.03256e-01\tAbsError: 5.20606e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.03242e-01\tAbsError: 3.70214e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19444e-01\tAbsError: 4.20726e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.87738e-01\tAbsError: 1.50257e+12\n", - " Region: \"zone_1\"\tRelError: 1.63299e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.63299e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.71408e-01\tAbsError: 1.50257e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88723e-01\tAbsError: 2.92089e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.61472e-02\tAbsError: 1.21048e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65380e-02\tAbsError: 9.16534e-03\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 1.80607e-01\tAbsError: 9.20974e+14\n", - " Region: \"zone_1\"\tRelError: 4.39208e-02\tAbsError: 5.29899e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.39208e-02\tAbsError: 5.29899e-04\n", - " Region: \"zone_3\"\tRelError: 1.36686e-01\tAbsError: 9.20974e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10840e-01\tAbsError: 1.78896e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.50927e-02\tAbsError: 9.03084e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.53382e-04\tAbsError: 5.45403e-04\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 9.46472e-10\tAbsError: 3.21542e+04\n", - " Region: \"zone_1\"\tRelError: 3.69710e-13\tAbsError: 4.70633e-15\n", - " Equation: \"PotentialEquation\"\tRelError: 3.69710e-13\tAbsError: 4.70633e-15\n", - " Region: \"zone_3\"\tRelError: 9.46103e-10\tAbsError: 3.21542e+04\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.44098e-10\tAbsError: 1.58432e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.90513e-12\tAbsError: 1.63110e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.95121e-14\tAbsError: 5.04159e-15\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.19247e+00\tAbsError: 8.54805e+13\n", - " Region: \"zone_1\"\tRelError: 9.12229e-02\tAbsError: 2.58978e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.12229e-02\tAbsError: 2.58978e-02\n", - " Region: \"zone_3\"\tRelError: 1.10125e+00\tAbsError: 8.54805e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14822e-01\tAbsError: 5.48784e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.98551e-01\tAbsError: 3.06021e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.78742e-02\tAbsError: 2.58989e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:30\u001b[0m.\u001b[1;36m583\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 0.205\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.69773e+00\tAbsError: 3.65074e+14\n", - " Region: \"zone_1\"\tRelError: 9.74499e-02\tAbsError: 3.20820e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.74499e-02\tAbsError: 3.20820e-02\n", - " Region: \"zone_3\"\tRelError: 1.60028e+00\tAbsError: 3.65074e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.06609e-01\tAbsError: 2.28256e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.03263e-01\tAbsError: 1.36818e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.04094e-02\tAbsError: 3.20820e-02\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "Iteration: 15\n", - "number of equations 22602\n", - " Device: \"device\"\tRelError: 1.00868e-03\tAbsError: 6.59671e+11\n", - " Region: \"zone_1\"\tRelError: 1.82829e-06\tAbsError: 3.39387e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82829e-06\tAbsError: 3.39387e-07\n", - " Region: \"zone_3\"\tRelError: 1.00685e-03\tAbsError: 6.59671e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.19086e-04\tAbsError: 4.09834e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.87254e-04\tAbsError: 6.55573e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.11603e-07\tAbsError: 3.69091e-07\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.96849e-02\tAbsError: 2.07362e+12\n", - " Region: \"zone_1\"\tRelError: 7.02885e-04\tAbsError: 1.90198e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.02885e-04\tAbsError: 1.90198e-05\n", - " Region: \"zone_3\"\tRelError: 8.89820e-02\tAbsError: 2.07362e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.78375e-02\tAbsError: 8.90891e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10276e-03\tAbsError: 1.18273e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.17313e-05\tAbsError: 1.96984e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.52183e-01\tAbsError: 2.83225e+13\n", - " Region: \"zone_1\"\tRelError: 5.95279e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95279e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.92655e-01\tAbsError: 2.83225e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.85164e-01\tAbsError: 1.34603e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.99920e-02\tAbsError: 1.48622e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.74993e-02\tAbsError: 9.16534e-03\n", - "Iteration: 16\n", - " Device: \"device\"\tRelError: 3.24333e-09\tAbsError: 5.47448e+05\n", - " Region: \"zone_1\"\tRelError: 4.98786e-11\tAbsError: 5.80319e-13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.98786e-11\tAbsError: 5.80319e-13\n", - " Region: \"zone_3\"\tRelError: 3.19345e-09\tAbsError: 5.47448e+05\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.68401e-09\tAbsError: 2.45391e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.08574e-10\tAbsError: 5.22909e+05\n", - " Equation: \"PotentialEquation\"\tRelError: 8.69485e-13\tAbsError: 6.27282e-13\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.20926e+00\tAbsError: 4.96551e+13\n", - " Region: \"zone_1\"\tRelError: 7.04411e-02\tAbsError: 2.58711e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.04411e-02\tAbsError: 2.58711e-02\n", - " Region: \"zone_3\"\tRelError: 1.13882e+00\tAbsError: 4.96551e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.41311e-01\tAbsError: 3.63622e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.26374e-01\tAbsError: 1.32929e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.11331e-02\tAbsError: 2.59000e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:31\u001b[0m.\u001b[1;36m083\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.21\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.40982e-05\tAbsError: 1.92019e+08\n", - " Region: \"zone_1\"\tRelError: 4.03284e-08\tAbsError: 1.17477e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 4.03284e-08\tAbsError: 1.17477e-09\n", - " Region: \"zone_3\"\tRelError: 3.40579e-05\tAbsError: 1.92019e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.36060e-05\tAbsError: 5.55442e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.49187e-07\tAbsError: 1.36475e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.67835e-09\tAbsError: 1.26430e-09\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.43736e+01\tAbsError: 9.04938e+15\n", - " Region: \"zone_1\"\tRelError: 1.26785e+01\tAbsError: 4.19629e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.26785e+01\tAbsError: 4.19629e-02\n", - " Region: \"zone_3\"\tRelError: 1.69508e+00\tAbsError: 9.04938e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.02367e-01\tAbsError: 4.89560e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.02336e-01\tAbsError: 4.15378e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.03781e-02\tAbsError: 4.19629e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:31\u001b[0m.\u001b[1;36m325\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.4\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Iteration: 4\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 9.52644e-02\tAbsError: 2.55837e+12\n", - " Region: \"zone_1\"\tRelError: 7.16041e-03\tAbsError: 2.30338e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.16041e-03\tAbsError: 2.30338e-05\n", - " Region: \"zone_3\"\tRelError: 8.81040e-02\tAbsError: 2.55837e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.71797e-02\tAbsError: 1.35830e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.38768e-04\tAbsError: 1.20006e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.54583e-05\tAbsError: 2.40500e-05\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.31682e-01\tAbsError: 5.72438e+12\n", - " Region: \"zone_1\"\tRelError: 2.54263e-02\tAbsError: 1.08344e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.54263e-02\tAbsError: 1.08344e-02\n", - " Region: \"zone_3\"\tRelError: 4.06256e-01\tAbsError: 5.72438e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89676e-01\tAbsError: 1.95965e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.09313e-02\tAbsError: 3.76473e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.56484e-02\tAbsError: 1.08344e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.90572e+00\tAbsError: 3.79278e+14\n", - " Region: \"zone_1\"\tRelError: 3.41688e-01\tAbsError: 3.19525e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.41688e-01\tAbsError: 3.19525e-02\n", - " Region: \"zone_3\"\tRelError: 1.56404e+00\tAbsError: 3.79278e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.04753e-01\tAbsError: 1.71966e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.01366e-01\tAbsError: 2.07313e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.79172e-02\tAbsError: 3.19525e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 9.99488e+00\tAbsError: 9.48030e+15\n", - " Region: \"zone_1\"\tRelError: 8.28205e+00\tAbsError: 4.29338e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.28205e+00\tAbsError: 4.29338e-02\n", - " Region: \"zone_3\"\tRelError: 1.71283e+00\tAbsError: 9.48030e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09640e-01\tAbsError: 5.12873e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.09610e-01\tAbsError: 4.35158e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.35761e-02\tAbsError: 4.29338e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.58292e-05\tAbsError: 4.59514e+08\n", - " Region: \"zone_1\"\tRelError: 9.81723e-07\tAbsError: 3.18909e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.81723e-07\tAbsError: 3.18909e-09\n", - " Region: \"zone_3\"\tRelError: 3.48474e-05\tAbsError: 4.59514e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.45053e-05\tAbsError: 3.33895e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.30263e-07\tAbsError: 1.25619e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18628e-08\tAbsError: 3.31754e-09\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:31\u001b[0m.\u001b[1;36m829\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.6\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.04268e-01\tAbsError: 7.37500e+11\n", - " Region: \"zone_1\"\tRelError: 1.67452e-04\tAbsError: 7.57989e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.67452e-04\tAbsError: 7.57989e-06\n", - " Region: \"zone_3\"\tRelError: 1.04100e-01\tAbsError: 7.37500e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03480e-01\tAbsError: 3.96342e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.96689e-04\tAbsError: 3.41157e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.35958e-05\tAbsError: 8.18114e-06\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.56244e+00\tAbsError: 8.45570e+15\n", - " Region: \"zone_1\"\tRelError: 3.85573e+00\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.85573e+00\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.70670e+00\tAbsError: 8.45570e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94571e-01\tAbsError: 4.92914e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94557e-01\tAbsError: 3.52655e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17574e-01\tAbsError: 4.09542e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.14844e+00\tAbsError: 4.93491e+13\n", - " Region: \"zone_1\"\tRelError: 4.80488e-02\tAbsError: 2.58683e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.80488e-02\tAbsError: 2.58683e-02\n", - " Region: \"zone_3\"\tRelError: 1.10039e+00\tAbsError: 4.93491e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38510e-01\tAbsError: 2.75600e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.17843e-01\tAbsError: 2.17891e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.40365e-02\tAbsError: 2.58683e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.85366e+00\tAbsError: 4.14640e+14\n", - " Region: \"zone_1\"\tRelError: 2.61180e-01\tAbsError: 3.31000e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.61180e-01\tAbsError: 3.31000e-02\n", - " Region: \"zone_3\"\tRelError: 1.59248e+00\tAbsError: 4.14640e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.17871e-01\tAbsError: 1.88389e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.13734e-01\tAbsError: 2.26251e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.08768e-02\tAbsError: 3.31000e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.71575e-05\tAbsError: 1.92506e+07\n", - " Region: \"zone_1\"\tRelError: 1.81976e-09\tAbsError: 1.03649e-10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81976e-09\tAbsError: 1.03649e-10\n", - " Region: \"zone_3\"\tRelError: 1.71557e-05\tAbsError: 1.92506e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.70431e-05\tAbsError: 8.02160e+06\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.12167e-07\tAbsError: 1.12290e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 3.66593e-10\tAbsError: 1.24918e-10\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:32\u001b[0m.\u001b[1;36m376\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:32\u001b[0m.\u001b[1;36m376\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5222222222222223\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.67739e+00\tAbsError: 3.26551e+14\n", - " Region: \"zone_1\"\tRelError: 1.13651e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13651e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.56374e+00\tAbsError: 3.26551e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91179e-01\tAbsError: 1.98410e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.87607e-01\tAbsError: 1.28141e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.49517e-02\tAbsError: 3.07632e-02\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.45236e+01\tAbsError: 8.31884e+15\n", - " Region: \"zone_1\"\tRelError: 1.27753e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.27753e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.74827e+00\tAbsError: 8.31884e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94561e-01\tAbsError: 4.96691e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94525e-01\tAbsError: 3.35193e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.59186e-01\tAbsError: 4.09542e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.20078e+00\tAbsError: 5.64838e+13\n", - " Region: \"zone_1\"\tRelError: 4.55160e-02\tAbsError: 2.58865e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.55160e-02\tAbsError: 2.58865e-02\n", - " Region: \"zone_3\"\tRelError: 1.15526e+00\tAbsError: 5.64838e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.61025e-01\tAbsError: 3.15083e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.48693e-01\tAbsError: 2.49756e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.55410e-02\tAbsError: 2.58905e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.10615e-01\tAbsError: 2.38900e+12\n", - " Region: \"zone_1\"\tRelError: 1.58823e-02\tAbsError: 1.06614e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.58823e-02\tAbsError: 1.06614e-02\n", - " Region: \"zone_3\"\tRelError: 3.94733e-01\tAbsError: 2.38900e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89596e-01\tAbsError: 9.05884e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.89979e-02\tAbsError: 1.48312e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.61387e-02\tAbsError: 1.06615e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.13583e+00\tAbsError: 3.35166e+13\n", - " Region: \"zone_1\"\tRelError: 6.49986e-02\tAbsError: 2.58787e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.49986e-02\tAbsError: 2.58787e-02\n", - " Region: \"zone_3\"\tRelError: 1.07083e+00\tAbsError: 3.35166e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14794e-01\tAbsError: 2.31889e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.90894e-01\tAbsError: 1.03277e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.51440e-02\tAbsError: 2.58923e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.91465e+00\tAbsError: 8.82588e+14\n", - " Region: \"zone_1\"\tRelError: 3.03324e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.03324e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.61133e+00\tAbsError: 8.82588e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91758e-01\tAbsError: 5.05615e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83634e-01\tAbsError: 3.76973e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35939e-01\tAbsError: 3.07632e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.67195e-01\tAbsError: 2.99700e+12\n", - " Region: \"zone_1\"\tRelError: 1.84458e-02\tAbsError: 1.22654e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.84458e-02\tAbsError: 1.22654e-02\n", - " Region: \"zone_3\"\tRelError: 4.48750e-01\tAbsError: 2.99700e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.16869e-01\tAbsError: 1.89558e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.13140e-01\tAbsError: 1.10142e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87406e-02\tAbsError: 1.22654e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.67018e+01\tAbsError: 8.80781e+15\n", - " Region: \"zone_1\"\tRelError: 1.49620e+01\tAbsError: 4.20726e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49620e+01\tAbsError: 4.20726e-02\n", - " Region: \"zone_3\"\tRelError: 1.73978e+00\tAbsError: 8.80781e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.03254e-01\tAbsError: 5.26028e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.03235e-01\tAbsError: 3.54753e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33293e-01\tAbsError: 4.20726e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.05086e-01\tAbsError: 1.56249e+12\n", - " Region: \"zone_1\"\tRelError: 1.17716e-03\tAbsError: 1.41851e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17716e-03\tAbsError: 1.41851e-05\n", - " Region: \"zone_3\"\tRelError: 1.03909e-01\tAbsError: 1.56249e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02758e-01\tAbsError: 6.64521e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.12394e-03\tAbsError: 8.97971e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.64584e-05\tAbsError: 1.46898e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.97006e-01\tAbsError: 3.97798e+12\n", - " Region: \"zone_1\"\tRelError: 2.05644e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.05644e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.76441e-01\tAbsError: 3.97798e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88505e-01\tAbsError: 1.01871e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.71832e-02\tAbsError: 2.95927e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.07533e-02\tAbsError: 9.16534e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.34467e+00\tAbsError: 5.44154e+14\n", - " Region: \"zone_1\"\tRelError: 2.20632e-01\tAbsError: 2.58931e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20632e-01\tAbsError: 2.58931e-02\n", - " Region: \"zone_3\"\tRelError: 1.12404e+00\tAbsError: 5.44154e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.17234e-01\tAbsError: 2.66383e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.89208e-01\tAbsError: 2.77771e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17596e-01\tAbsError: 2.58999e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.14814e-05\tAbsError: 9.59770e+07\n", - " Region: \"zone_1\"\tRelError: 4.93269e-08\tAbsError: 6.44093e-10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.93269e-08\tAbsError: 6.44093e-10\n", - " Region: \"zone_3\"\tRelError: 3.14321e-05\tAbsError: 9.59770e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.10500e-05\tAbsError: 2.98685e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.80832e-07\tAbsError: 6.61085e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.24009e-09\tAbsError: 6.87068e-10\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.18420e-01\tAbsError: 2.77452e+11\n", - " Region: \"zone_1\"\tRelError: 1.60281e-04\tAbsError: 2.62019e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60281e-04\tAbsError: 2.62019e-06\n", - " Region: \"zone_3\"\tRelError: 1.18259e-01\tAbsError: 2.77452e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18060e-01\tAbsError: 1.27601e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.94154e-04\tAbsError: 1.49851e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.08922e-06\tAbsError: 2.78229e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.85210e+00\tAbsError: 4.24275e+14\n", - " Region: \"zone_1\"\tRelError: 2.27335e-01\tAbsError: 3.20820e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27335e-01\tAbsError: 3.20820e-02\n", - " Region: \"zone_3\"\tRelError: 1.62476e+00\tAbsError: 4.24275e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.07224e-01\tAbsError: 3.07050e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.02862e-01\tAbsError: 1.17225e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14677e-01\tAbsError: 3.20820e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:33\u001b[0m.\u001b[1;36m594\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:33\u001b[0m.\u001b[1;36m594\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30999999999999994\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.75905e-02\tAbsError: 6.14178e+11\n", - " Region: \"zone_1\"\tRelError: 1.87871e-04\tAbsError: 5.35919e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87871e-04\tAbsError: 5.35919e-06\n", - " Region: \"zone_3\"\tRelError: 8.74026e-02\tAbsError: 6.14178e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.70791e-02\tAbsError: 2.57149e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.08574e-04\tAbsError: 3.57029e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49985e-05\tAbsError: 5.65537e-06\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.58303e-01\tAbsError: 2.58889e+14\n", - " Region: \"zone_1\"\tRelError: 3.50075e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.50075e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 4.23296e-01\tAbsError: 2.58889e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.70968e-01\tAbsError: 1.16796e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.16540e-01\tAbsError: 1.42093e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.57873e-02\tAbsError: 9.16534e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.49173e-06\tAbsError: 2.80629e+06\n", - " Region: \"zone_1\"\tRelError: 5.46297e-10\tAbsError: 1.14586e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.46297e-10\tAbsError: 1.14586e-11\n", - " Region: \"zone_3\"\tRelError: 6.49119e-06\tAbsError: 2.80629e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.47826e-06\tAbsError: 4.87641e+05\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.29012e-08\tAbsError: 2.31865e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.30092e-11\tAbsError: 1.26062e-11\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.27177e+00\tAbsError: 1.21181e+14\n", - " Region: \"zone_1\"\tRelError: 9.69734e-02\tAbsError: 2.58832e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.69734e-02\tAbsError: 2.58832e-02\n", - " Region: \"zone_3\"\tRelError: 1.17480e+00\tAbsError: 1.21181e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.41539e-01\tAbsError: 7.18420e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.35304e-01\tAbsError: 4.93394e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.79587e-02\tAbsError: 2.58545e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:34\u001b[0m.\u001b[1;36m004\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:34\u001b[0m.\u001b[1;36m004\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.31999999999999995\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.95471e-06\tAbsError: 1.37437e+07\n", - " Region: \"zone_1\"\tRelError: 1.96051e-09\tAbsError: 6.30624e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.96051e-09\tAbsError: 6.30624e-11\n", - " Region: \"zone_3\"\tRelError: 9.95275e-06\tAbsError: 1.37437e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.91827e-06\tAbsError: 3.21250e+06\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.43047e-08\tAbsError: 1.05312e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.78389e-10\tAbsError: 6.72816e-11\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:34\u001b[0m.\u001b[1;36m170\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.5\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.06225e-01\tAbsError: 3.99157e+13\n", - " Region: \"zone_1\"\tRelError: 1.41229e-02\tAbsError: 1.62376e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41229e-02\tAbsError: 1.62376e-04\n", - " Region: \"zone_3\"\tRelError: 9.21025e-02\tAbsError: 3.99157e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.51238e-02\tAbsError: 2.25076e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.14819e-03\tAbsError: 1.74081e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.30563e-04\tAbsError: 1.67642e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.40990e+00\tAbsError: 8.98276e+15\n", - " Region: \"zone_1\"\tRelError: 4.69964e+00\tAbsError: 4.19629e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.69964e+00\tAbsError: 4.19629e-02\n", - " Region: \"zone_3\"\tRelError: 1.71025e+00\tAbsError: 8.98276e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.02419e-01\tAbsError: 5.08161e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.02408e-01\tAbsError: 3.90114e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.05428e-01\tAbsError: 4.19629e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.72632e-01\tAbsError: 5.23306e+13\n", - " Region: \"zone_1\"\tRelError: 3.75087e-02\tAbsError: 1.08344e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.75087e-02\tAbsError: 1.08344e-02\n", - " Region: \"zone_3\"\tRelError: 4.35123e-01\tAbsError: 5.23306e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88539e-01\tAbsError: 2.52519e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.11733e-01\tAbsError: 2.70786e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.48516e-02\tAbsError: 1.08344e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.10506e+01\tAbsError: 9.40634e+15\n", - " Region: \"zone_1\"\tRelError: 9.32438e+00\tAbsError: 4.29338e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.32438e+00\tAbsError: 4.29338e-02\n", - " Region: \"zone_3\"\tRelError: 1.72626e+00\tAbsError: 9.40634e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09691e-01\tAbsError: 5.33144e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.09680e-01\tAbsError: 4.07489e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06894e-01\tAbsError: 4.29338e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.81693e+00\tAbsError: 3.69427e+14\n", - " Region: \"zone_1\"\tRelError: 2.39020e-01\tAbsError: 3.19525e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.39020e-01\tAbsError: 3.19525e-02\n", - " Region: \"zone_3\"\tRelError: 1.57791e+00\tAbsError: 3.69427e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.05098e-01\tAbsError: 1.92366e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.01312e-01\tAbsError: 1.77061e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.14993e-02\tAbsError: 3.19525e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.77778e-04\tAbsError: 4.11734e+10\n", - " Region: \"zone_1\"\tRelError: 2.64497e-05\tAbsError: 2.72288e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.64497e-05\tAbsError: 2.72288e-07\n", - " Region: \"zone_3\"\tRelError: 1.51329e-04\tAbsError: 4.11734e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47345e-04\tAbsError: 2.82922e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.54557e-06\tAbsError: 1.28813e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43781e-06\tAbsError: 2.89039e-07\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.11582e-01\tAbsError: 8.77074e+12\n", - " Region: \"zone_1\"\tRelError: 5.05586e-03\tAbsError: 5.73412e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.05586e-03\tAbsError: 5.73412e-05\n", - " Region: \"zone_3\"\tRelError: 1.06526e-01\tAbsError: 8.77074e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02463e-01\tAbsError: 4.39984e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.81050e-03\tAbsError: 4.37090e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.53363e-04\tAbsError: 6.35227e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.87556e+01\tAbsError: 8.34767e+15\n", - " Region: \"zone_1\"\tRelError: 6.70313e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.70313e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.72426e+00\tAbsError: 8.34767e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94570e-01\tAbsError: 4.96926e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94551e-01\tAbsError: 3.37841e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35138e-01\tAbsError: 4.09542e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.26294e+00\tAbsError: 4.04710e+14\n", - " Region: \"zone_1\"\tRelError: 6.55990e-01\tAbsError: 3.31000e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.55990e-01\tAbsError: 3.31000e-02\n", - " Region: \"zone_3\"\tRelError: 1.60695e+00\tAbsError: 4.04710e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.17961e-01\tAbsError: 2.13363e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.14153e-01\tAbsError: 1.91347e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.48377e-02\tAbsError: 3.31000e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.16790e+00\tAbsError: 3.16667e+13\n", - " Region: \"zone_1\"\tRelError: 5.44268e-02\tAbsError: 2.58977e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.44268e-02\tAbsError: 2.58977e-02\n", - " Region: \"zone_3\"\tRelError: 1.11347e+00\tAbsError: 3.16667e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38800e-01\tAbsError: 2.02461e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.20184e-01\tAbsError: 1.14205e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.44904e-02\tAbsError: 2.58987e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.06505e-10\tAbsError: 5.44918e+04\n", - " Region: \"zone_1\"\tRelError: 2.76262e-11\tAbsError: 2.68307e-13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.76262e-11\tAbsError: 2.68307e-13\n", - " Region: \"zone_3\"\tRelError: 1.78879e-10\tAbsError: 5.44918e+04\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.71769e-10\tAbsError: 3.00849e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.70882e-12\tAbsError: 2.44069e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40078e-12\tAbsError: 2.79942e-13\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:35\u001b[0m.\u001b[1;36m212\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.7000000000000001\u001b[0m\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.29405e-04\tAbsError: 7.84013e+09\n", - " Region: \"zone_1\"\tRelError: 6.03171e-06\tAbsError: 7.09418e-08\n", - " Equation: \"PotentialEquation\"\tRelError: 6.03171e-06\tAbsError: 7.09418e-08\n", - " Region: \"zone_3\"\tRelError: 1.23373e-04\tAbsError: 7.84013e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19968e-04\tAbsError: 5.39909e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.09006e-06\tAbsError: 2.44103e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.14964e-07\tAbsError: 7.84794e-08\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.18244e+00\tAbsError: 3.45808e+14\n", - " Region: \"zone_1\"\tRelError: 5.95786e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95786e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.58666e+00\tAbsError: 3.45808e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91491e-01\tAbsError: 2.56450e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.87672e-01\tAbsError: 8.93573e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07491e-01\tAbsError: 3.07632e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.24212e+00\tAbsError: 3.49826e+13\n", - " Region: \"zone_1\"\tRelError: 7.44892e-02\tAbsError: 2.58685e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.44892e-02\tAbsError: 2.58685e-02\n", - " Region: \"zone_3\"\tRelError: 1.16763e+00\tAbsError: 3.49826e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.61171e-01\tAbsError: 2.23843e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.49557e-01\tAbsError: 1.25983e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.68989e-02\tAbsError: 2.58685e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.16139e-01\tAbsError: 2.41248e+12\n", - " Region: \"zone_1\"\tRelError: 1.94138e-02\tAbsError: 1.06615e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.94138e-02\tAbsError: 1.06615e-02\n", - " Region: \"zone_3\"\tRelError: 3.96725e-01\tAbsError: 2.41248e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89038e-01\tAbsError: 1.30547e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.80237e-02\tAbsError: 1.10701e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.96629e-02\tAbsError: 1.06615e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.44758e-10\tAbsError: 3.08183e+04\n", - " Region: \"zone_1\"\tRelError: 5.02762e-12\tAbsError: 6.09584e-14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.02762e-12\tAbsError: 6.09584e-14\n", - " Region: \"zone_3\"\tRelError: 1.39731e-10\tAbsError: 3.08183e+04\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36093e-10\tAbsError: 1.55261e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.36741e-12\tAbsError: 1.52922e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.69928e-13\tAbsError: 6.69430e-14\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.19247e+00\tAbsError: 8.54805e+13\n", - " Region: \"zone_1\"\tRelError: 9.12229e-02\tAbsError: 2.58978e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.12229e-02\tAbsError: 2.58978e-02\n", - " Region: \"zone_3\"\tRelError: 1.10125e+00\tAbsError: 8.54805e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14822e-01\tAbsError: 5.48784e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.98551e-01\tAbsError: 3.06021e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.78742e-02\tAbsError: 2.58989e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:35\u001b[0m.\u001b[1;36m811\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:35\u001b[0m.\u001b[1;36m811\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6277777777777779\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.22389e+00\tAbsError: 8.51989e+15\n", - " Region: \"zone_1\"\tRelError: 5.41698e+00\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.41698e+00\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.80691e+00\tAbsError: 8.51989e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94484e-01\tAbsError: 4.63675e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94370e-01\tAbsError: 3.88315e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18056e-01\tAbsError: 4.09542e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.74278e-01\tAbsError: 2.59384e+12\n", - " Region: \"zone_1\"\tRelError: 2.28487e-02\tAbsError: 1.22654e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.28487e-02\tAbsError: 1.22654e-02\n", - " Region: \"zone_3\"\tRelError: 4.51429e-01\tAbsError: 2.59384e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.16516e-01\tAbsError: 1.52691e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.11789e-01\tAbsError: 1.06693e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.31245e-02\tAbsError: 1.22654e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.01451e-01\tAbsError: 1.52289e+11\n", - " Region: \"zone_1\"\tRelError: 8.04598e-05\tAbsError: 1.28794e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.04598e-05\tAbsError: 1.28794e-06\n", - " Region: \"zone_3\"\tRelError: 1.01371e-01\tAbsError: 1.52289e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01221e-01\tAbsError: 6.25880e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.46825e-04\tAbsError: 8.97009e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.96577e-06\tAbsError: 1.36312e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.52183e-01\tAbsError: 2.83225e+13\n", - " Region: \"zone_1\"\tRelError: 5.95279e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95279e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 3.92655e-01\tAbsError: 2.83225e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.85164e-01\tAbsError: 1.34603e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.99920e-02\tAbsError: 1.48622e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.74993e-02\tAbsError: 9.16534e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.89109e+00\tAbsError: 5.48219e+15\n", - " Region: \"zone_1\"\tRelError: 2.49390e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49390e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.64170e+00\tAbsError: 5.48219e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90716e-01\tAbsError: 2.59543e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.66285e-01\tAbsError: 2.88675e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.84697e-01\tAbsError: 3.07632e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.19005e-01\tAbsError: 5.46470e+11\n", - " Region: \"zone_1\"\tRelError: 5.19598e-04\tAbsError: 3.00981e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.19598e-04\tAbsError: 3.00981e-06\n", - " Region: \"zone_3\"\tRelError: 1.18486e-01\tAbsError: 5.46470e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18069e-01\tAbsError: 1.59389e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.09405e-04\tAbsError: 3.87081e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 7.48302e-06\tAbsError: 3.25953e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.30106e-06\tAbsError: 3.61693e+05\n", - " Region: \"zone_1\"\tRelError: 1.77604e-11\tAbsError: 1.24341e-12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77604e-11\tAbsError: 1.24341e-12\n", - " Region: \"zone_3\"\tRelError: 3.30104e-06\tAbsError: 3.61693e+05\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.29735e-06\tAbsError: 3.78118e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.68160e-09\tAbsError: 3.23881e+05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.70978e-12\tAbsError: 1.30380e-12\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 4.24195e+02\tAbsError: 8.77870e+15\n", - " Region: \"zone_1\"\tRelError: 4.22411e+02\tAbsError: 4.20726e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.22411e+02\tAbsError: 4.20726e-02\n", - " Region: \"zone_3\"\tRelError: 1.78400e+00\tAbsError: 8.77870e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.03241e-01\tAbsError: 5.19271e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.03196e-01\tAbsError: 3.58599e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77564e-01\tAbsError: 4.20726e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:36\u001b[0m.\u001b[1;36m577\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:36\u001b[0m.\u001b[1;36m577\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.4149999999999999\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Iteration: 4\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 9.52644e-02\tAbsError: 2.55837e+12\n", - " Region: \"zone_1\"\tRelError: 7.16041e-03\tAbsError: 2.30338e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.16041e-03\tAbsError: 2.30338e-05\n", - " Region: \"zone_3\"\tRelError: 8.81040e-02\tAbsError: 2.55837e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.71797e-02\tAbsError: 1.35830e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.38768e-04\tAbsError: 1.20006e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.54583e-05\tAbsError: 2.40500e-05\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.28809e+00\tAbsError: 4.35524e+15\n", - " Region: \"zone_1\"\tRelError: 1.47109e-01\tAbsError: 2.58916e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.47109e-01\tAbsError: 2.58916e-02\n", - " Region: \"zone_3\"\tRelError: 1.14098e+00\tAbsError: 4.35524e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.22693e-01\tAbsError: 2.04103e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.66769e-01\tAbsError: 2.31421e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51518e-01\tAbsError: 2.53379e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.63620e-06\tAbsError: 2.24160e+06\n", - " Region: \"zone_1\"\tRelError: 2.53878e-09\tAbsError: 2.37681e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.53878e-09\tAbsError: 2.37681e-11\n", - " Region: \"zone_3\"\tRelError: 8.63366e-06\tAbsError: 2.24160e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.60416e-06\tAbsError: 5.89307e+05\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.94484e-08\tAbsError: 1.65229e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.35025e-11\tAbsError: 2.45711e-11\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:36\u001b[0m.\u001b[1;36m928\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:36\u001b[0m.\u001b[1;36m928\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.42999999999999994\u001b[0m \n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.61293e+00\tAbsError: 1.51368e+15\n", - " Region: \"zone_1\"\tRelError: 9.64682e-01\tAbsError: 3.20820e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.64682e-01\tAbsError: 3.20820e-02\n", - " Region: \"zone_3\"\tRelError: 1.64825e+00\tAbsError: 1.51368e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.07584e-01\tAbsError: 8.60067e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.95031e-01\tAbsError: 6.53616e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.45637e-01\tAbsError: 3.20820e-02\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.58292e-05\tAbsError: 4.59514e+08\n", - " Region: \"zone_1\"\tRelError: 9.81723e-07\tAbsError: 3.18909e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.81723e-07\tAbsError: 3.18909e-09\n", - " Region: \"zone_3\"\tRelError: 3.48474e-05\tAbsError: 4.59514e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.45053e-05\tAbsError: 3.33895e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.30263e-07\tAbsError: 1.25619e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18628e-08\tAbsError: 3.31754e-09\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:37\u001b[0m.\u001b[1;36m097\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.6\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 4.25664e+00\tAbsError: 8.86308e+15\n", - " Region: \"zone_1\"\tRelError: 2.53325e+00\tAbsError: 4.19629e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.53325e+00\tAbsError: 4.19629e-02\n", - " Region: \"zone_3\"\tRelError: 1.72338e+00\tAbsError: 8.86308e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.02421e-01\tAbsError: 5.17844e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.02407e-01\tAbsError: 3.68465e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18556e-01\tAbsError: 4.19629e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.61364e-01\tAbsError: 1.56107e+15\n", - " Region: \"zone_1\"\tRelError: 1.02187e-01\tAbsError: 9.16531e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02187e-01\tAbsError: 9.16531e-03\n", - " Region: \"zone_3\"\tRelError: 4.59177e-01\tAbsError: 1.56107e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52513e-01\tAbsError: 8.30423e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.62306e-01\tAbsError: 7.30643e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.43577e-02\tAbsError: 9.16534e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.63185e+00\tAbsError: 1.07904e+15\n", - " Region: \"zone_1\"\tRelError: 4.48144e-01\tAbsError: 2.58591e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.48144e-01\tAbsError: 2.58591e-02\n", - " Region: \"zone_3\"\tRelError: 1.18371e+00\tAbsError: 1.07904e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.44602e-01\tAbsError: 4.79426e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.04977e-01\tAbsError: 5.99614e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.34128e-01\tAbsError: 2.56444e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 4.57466e+00\tAbsError: 9.26788e+15\n", - " Region: \"zone_1\"\tRelError: 2.82864e+00\tAbsError: 4.29338e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.82864e+00\tAbsError: 4.29338e-02\n", - " Region: \"zone_3\"\tRelError: 1.74602e+00\tAbsError: 9.26788e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09693e-01\tAbsError: 5.42632e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.09679e-01\tAbsError: 3.84156e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.26649e-01\tAbsError: 4.29338e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.69296e+00\tAbsError: 3.61186e+14\n", - " Region: \"zone_1\"\tRelError: 9.62143e-02\tAbsError: 3.19525e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.62143e-02\tAbsError: 3.19525e-02\n", - " Region: \"zone_3\"\tRelError: 1.59674e+00\tAbsError: 3.61186e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.05187e-01\tAbsError: 2.25213e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.01705e-01\tAbsError: 1.35974e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.98519e-02\tAbsError: 3.19525e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.02751e-01\tAbsError: 2.88406e+14\n", - " Region: \"zone_1\"\tRelError: 3.60577e-03\tAbsError: 2.29628e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.60577e-03\tAbsError: 2.29628e-04\n", - " Region: \"zone_3\"\tRelError: 9.91456e-02\tAbsError: 2.88406e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.45252e-02\tAbsError: 1.12757e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.29594e-02\tAbsError: 1.75650e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66104e-03\tAbsError: 2.42032e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.45236e+01\tAbsError: 8.31884e+15\n", - " Region: \"zone_1\"\tRelError: 1.27753e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.27753e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.74827e+00\tAbsError: 8.31884e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94561e-01\tAbsError: 4.96691e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94525e-01\tAbsError: 3.35193e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.59186e-01\tAbsError: 4.09542e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.37855e-01\tAbsError: 5.10221e+14\n", - " Region: \"zone_1\"\tRelError: 4.41958e-02\tAbsError: 1.08344e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.41958e-02\tAbsError: 1.08344e-02\n", - " Region: \"zone_3\"\tRelError: 4.93659e-01\tAbsError: 5.10221e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87521e-01\tAbsError: 2.44419e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.60651e-01\tAbsError: 2.65802e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.54875e-02\tAbsError: 1.08344e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.73313e+00\tAbsError: 3.96589e+14\n", - " Region: \"zone_1\"\tRelError: 1.05624e-01\tAbsError: 3.31000e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.05624e-01\tAbsError: 3.31000e-02\n", - " Region: \"zone_3\"\tRelError: 1.62751e+00\tAbsError: 3.96589e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.17540e-01\tAbsError: 2.53211e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.15147e-01\tAbsError: 1.43378e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.48212e-02\tAbsError: 3.31000e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.20232e+00\tAbsError: 4.82858e+13\n", - " Region: \"zone_1\"\tRelError: 7.00808e-02\tAbsError: 2.58538e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.00808e-02\tAbsError: 2.58538e-02\n", - " Region: \"zone_3\"\tRelError: 1.13224e+00\tAbsError: 4.82858e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38719e-01\tAbsError: 3.53290e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.23098e-01\tAbsError: 1.29568e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.04208e-02\tAbsError: 2.58937e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.04675e-04\tAbsError: 3.04021e+11\n", - " Region: \"zone_1\"\tRelError: 6.05493e-06\tAbsError: 5.20454e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 6.05493e-06\tAbsError: 5.20454e-07\n", - " Region: \"zone_3\"\tRelError: 2.98620e-04\tAbsError: 3.04021e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.67672e-04\tAbsError: 1.93910e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.70905e-05\tAbsError: 1.10111e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.85729e-06\tAbsError: 5.51479e-07\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.91465e+00\tAbsError: 8.82588e+14\n", - " Region: \"zone_1\"\tRelError: 3.03324e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.03324e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.61133e+00\tAbsError: 8.82588e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91758e-01\tAbsError: 5.05615e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83634e-01\tAbsError: 3.76973e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35939e-01\tAbsError: 3.07632e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.46514e-01\tAbsError: 1.03219e+14\n", - " Region: \"zone_1\"\tRelError: 3.43169e-02\tAbsError: 3.16852e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.43169e-02\tAbsError: 3.16852e-04\n", - " Region: \"zone_3\"\tRelError: 1.12197e-01\tAbsError: 1.03219e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.55228e-02\tAbsError: 5.87205e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.49125e-02\tAbsError: 4.44984e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76215e-03\tAbsError: 3.21983e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.26176e+00\tAbsError: 6.17820e+13\n", - " Region: \"zone_1\"\tRelError: 7.36238e-02\tAbsError: 2.56439e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.36238e-02\tAbsError: 2.56439e-02\n", - " Region: \"zone_3\"\tRelError: 1.18814e+00\tAbsError: 6.17820e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.61240e-01\tAbsError: 4.55005e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.51872e-01\tAbsError: 1.62815e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.50269e-02\tAbsError: 2.58894e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.27072e-01\tAbsError: 5.50903e+12\n", - " Region: \"zone_1\"\tRelError: 2.49046e-02\tAbsError: 1.06615e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49046e-02\tAbsError: 1.06615e-02\n", - " Region: \"zone_3\"\tRelError: 4.02167e-01\tAbsError: 5.50903e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88687e-01\tAbsError: 1.84640e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.83541e-02\tAbsError: 3.66263e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.51259e-02\tAbsError: 1.06615e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.59434e-10\tAbsError: 1.22832e+06\n", - " Region: \"zone_1\"\tRelError: 9.68844e-11\tAbsError: 2.65442e-12\n", - " Equation: \"PotentialEquation\"\tRelError: 9.68844e-11\tAbsError: 2.65442e-12\n", - " Region: \"zone_3\"\tRelError: 6.62549e-10\tAbsError: 1.22832e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38517e-10\tAbsError: 7.28670e+05\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03771e-10\tAbsError: 4.99651e+05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.02616e-11\tAbsError: 2.83300e-12\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.35346e-04\tAbsError: 2.72676e+11\n", - " Region: \"zone_1\"\tRelError: 1.93851e-04\tAbsError: 1.56442e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.93851e-04\tAbsError: 1.56442e-06\n", - " Region: \"zone_3\"\tRelError: 3.41495e-04\tAbsError: 2.72676e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.13735e-04\tAbsError: 2.02047e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.87537e-05\tAbsError: 7.06297e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 9.00571e-06\tAbsError: 1.63938e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.34467e+00\tAbsError: 5.44154e+14\n", - " Region: \"zone_1\"\tRelError: 2.20632e-01\tAbsError: 2.58931e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20632e-01\tAbsError: 2.58931e-02\n", - " Region: \"zone_3\"\tRelError: 1.12404e+00\tAbsError: 5.44154e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.17234e-01\tAbsError: 2.66383e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.89208e-01\tAbsError: 2.77771e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17596e-01\tAbsError: 2.58999e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:38\u001b[0m.\u001b[1;36m705\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.8\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.89862e-01\tAbsError: 7.99664e+12\n", - " Region: \"zone_1\"\tRelError: 2.98842e-02\tAbsError: 1.22654e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.98842e-02\tAbsError: 1.22654e-02\n", - " Region: \"zone_3\"\tRelError: 4.59978e-01\tAbsError: 7.99664e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.16917e-01\tAbsError: 3.30963e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.12949e-01\tAbsError: 4.68701e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.01113e-02\tAbsError: 1.22654e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.02165e-01\tAbsError: 9.37234e+11\n", - " Region: \"zone_1\"\tRelError: 1.61822e-04\tAbsError: 7.03019e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.61822e-04\tAbsError: 7.03019e-06\n", - " Region: \"zone_3\"\tRelError: 1.02004e-01\tAbsError: 9.37234e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01441e-01\tAbsError: 3.65419e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.41199e-04\tAbsError: 5.71815e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.16745e-05\tAbsError: 7.56571e-06\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.57251e-09\tAbsError: 2.43009e+06\n", - " Region: \"zone_1\"\tRelError: 1.66994e-09\tAbsError: 1.30733e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66994e-09\tAbsError: 1.30733e-11\n", - " Region: \"zone_3\"\tRelError: 2.90256e-09\tAbsError: 2.43009e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.50630e-09\tAbsError: 1.47608e+06\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.18993e-10\tAbsError: 9.54012e+05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.72705e-11\tAbsError: 1.40492e-11\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.58303e-01\tAbsError: 2.58889e+14\n", - " Region: \"zone_1\"\tRelError: 3.50075e-02\tAbsError: 9.16532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.50075e-02\tAbsError: 9.16532e-03\n", - " Region: \"zone_3\"\tRelError: 4.23296e-01\tAbsError: 2.58889e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.70968e-01\tAbsError: 1.16796e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.16540e-01\tAbsError: 1.42093e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.57873e-02\tAbsError: 9.16534e-03\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:39\u001b[0m.\u001b[1;36m168\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:39\u001b[0m.\u001b[1;36m168\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7333333333333334\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.19535e-01\tAbsError: 7.67511e+11\n", - " Region: \"zone_1\"\tRelError: 1.02132e-04\tAbsError: 6.40339e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02132e-04\tAbsError: 6.40339e-06\n", - " Region: \"zone_3\"\tRelError: 1.19432e-01\tAbsError: 7.67511e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18713e-01\tAbsError: 3.47334e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.98127e-04\tAbsError: 4.20177e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.17746e-05\tAbsError: 7.06173e-06\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.06248e+01\tAbsError: 3.16044e+16\n", - " Region: \"zone_1\"\tRelError: 1.87257e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87257e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.89912e+00\tAbsError: 3.16044e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.93746e-01\tAbsError: 1.57387e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.93249e-01\tAbsError: 1.58657e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.12130e-01\tAbsError: 4.09543e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.56445e-05\tAbsError: 1.51528e+07\n", - " Region: \"zone_1\"\tRelError: 1.06669e-09\tAbsError: 8.91987e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06669e-09\tAbsError: 8.91987e-11\n", - " Region: \"zone_3\"\tRelError: 1.56435e-05\tAbsError: 1.51528e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.55486e-05\tAbsError: 6.58261e+06\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.46298e-08\tAbsError: 8.57017e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.39891e-10\tAbsError: 8.97859e-11\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:39\u001b[0m.\u001b[1;36m454\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:39\u001b[0m.\u001b[1;36m454\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5199999999999999\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.06225e-01\tAbsError: 3.99157e+13\n", - " Region: \"zone_1\"\tRelError: 1.41229e-02\tAbsError: 1.62376e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41229e-02\tAbsError: 1.62376e-04\n", - " Region: \"zone_3\"\tRelError: 9.21025e-02\tAbsError: 3.99157e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.51238e-02\tAbsError: 2.25076e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.14819e-03\tAbsError: 1.74081e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.30563e-04\tAbsError: 1.67642e-04\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.39115e-05\tAbsError: 3.56195e+07\n", - " Region: \"zone_1\"\tRelError: 4.59619e-09\tAbsError: 3.23674e-10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.59619e-09\tAbsError: 3.23674e-10\n", - " Region: \"zone_3\"\tRelError: 1.39069e-05\tAbsError: 3.56195e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38108e-05\tAbsError: 1.93540e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.49639e-08\tAbsError: 1.62655e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15594e-09\tAbsError: 3.70759e-10\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.45748e+00\tAbsError: 3.69441e+16\n", - " Region: \"zone_1\"\tRelError: 4.13331e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.13331e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 2.04415e+00\tAbsError: 3.69441e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.88321e-01\tAbsError: 1.86445e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.52684e-01\tAbsError: 1.82996e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.03145e-01\tAbsError: 3.07632e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:39\u001b[0m.\u001b[1;36m779\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.5399999999999999\u001b[0m\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.85767e+01\tAbsError: 9.53342e+15\n", - " Region: \"zone_1\"\tRelError: 7.67234e+01\tAbsError: 4.20726e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.67234e+01\tAbsError: 4.20726e-02\n", - " Region: \"zone_3\"\tRelError: 1.85327e+00\tAbsError: 9.53342e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.03095e-01\tAbsError: 5.14999e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.02942e-01\tAbsError: 4.38343e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.47235e-01\tAbsError: 4.20726e-02\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.77778e-04\tAbsError: 4.11734e+10\n", - " Region: \"zone_1\"\tRelError: 2.64497e-05\tAbsError: 2.72288e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.64497e-05\tAbsError: 2.72288e-07\n", - " Region: \"zone_3\"\tRelError: 1.51329e-04\tAbsError: 4.11734e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47345e-04\tAbsError: 2.82922e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.54557e-06\tAbsError: 1.28813e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43781e-06\tAbsError: 2.89039e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.35778e+01\tAbsError: 8.76184e+15\n", - " Region: \"zone_1\"\tRelError: 2.18316e+01\tAbsError: 4.19629e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18316e+01\tAbsError: 4.19629e-02\n", - " Region: \"zone_3\"\tRelError: 1.74625e+00\tAbsError: 8.76184e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.02419e-01\tAbsError: 5.23127e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.02400e-01\tAbsError: 3.53057e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41432e-01\tAbsError: 4.19629e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 4.80876e+00\tAbsError: 2.48392e+16\n", - " Region: \"zone_1\"\tRelError: 2.08564e-01\tAbsError: 2.58396e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.08564e-01\tAbsError: 2.58396e-02\n", - " Region: \"zone_3\"\tRelError: 4.60020e+00\tAbsError: 2.48392e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.12756e-01\tAbsError: 1.24031e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.61077e-01\tAbsError: 1.24362e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.62637e+00\tAbsError: 2.33304e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 5.04143e+00\tAbsError: 1.05556e+16\n", - " Region: \"zone_1\"\tRelError: 3.34872e+00\tAbsError: 3.20820e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.34872e+00\tAbsError: 3.20820e-02\n", - " Region: \"zone_3\"\tRelError: 1.69271e+00\tAbsError: 1.05556e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.05643e-01\tAbsError: 5.09390e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.77441e-01\tAbsError: 5.46173e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.09625e-01\tAbsError: 3.20820e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.06530e-10\tAbsError: 5.12697e+04\n", - " Region: \"zone_1\"\tRelError: 2.76520e-11\tAbsError: 2.68299e-13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.76520e-11\tAbsError: 2.68299e-13\n", - " Region: \"zone_3\"\tRelError: 1.78878e-10\tAbsError: 5.12697e+04\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.71768e-10\tAbsError: 3.00847e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.70892e-12\tAbsError: 2.11850e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40088e-12\tAbsError: 2.79933e-13\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:40\u001b[0m.\u001b[1;36m423\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.7000000000000001\u001b[0m\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.50411e+01\tAbsError: 9.17516e+15\n", - " Region: \"zone_1\"\tRelError: 2.32813e+01\tAbsError: 4.29338e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.32813e+01\tAbsError: 4.29338e-02\n", - " Region: \"zone_3\"\tRelError: 1.75981e+00\tAbsError: 9.17516e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09690e-01\tAbsError: 5.49119e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.09670e-01\tAbsError: 3.68397e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40449e-01\tAbsError: 4.29338e-02\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.80496e+00\tAbsError: 4.20326e+14\n", - " Region: \"zone_1\"\tRelError: 1.83409e-01\tAbsError: 3.19525e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.83409e-01\tAbsError: 3.19525e-02\n", - " Region: \"zone_3\"\tRelError: 1.62155e+00\tAbsError: 4.20326e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.05409e-01\tAbsError: 3.06370e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.01733e-01\tAbsError: 1.13956e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14413e-01\tAbsError: 3.19525e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.55071e+00\tAbsError: 8.48657e+15\n", - " Region: \"zone_1\"\tRelError: 8.11805e-01\tAbsError: 9.16529e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 8.11805e-01\tAbsError: 9.16529e-03\n", - " Region: \"zone_3\"\tRelError: 2.73890e+00\tAbsError: 8.48657e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.34197e-01\tAbsError: 4.50158e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.40806e-01\tAbsError: 3.98499e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.36390e+00\tAbsError: 9.16533e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.41161e+00\tAbsError: 8.47971e+15\n", - " Region: \"zone_1\"\tRelError: 1.80410e-01\tAbsError: 2.58842e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.80410e-01\tAbsError: 2.58842e-02\n", - " Region: \"zone_3\"\tRelError: 1.23120e+00\tAbsError: 8.47971e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.48016e-01\tAbsError: 4.18892e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.02777e-01\tAbsError: 4.29078e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.80410e-01\tAbsError: 2.57972e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.82843e+00\tAbsError: 4.96905e+14\n", - " Region: \"zone_1\"\tRelError: 1.74894e-01\tAbsError: 3.31000e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74894e-01\tAbsError: 3.31000e-02\n", - " Region: \"zone_3\"\tRelError: 1.65354e+00\tAbsError: 4.96905e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.18406e-01\tAbsError: 3.48442e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.14285e-01\tAbsError: 1.48463e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20848e-01\tAbsError: 3.31000e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.26282e+00\tAbsError: 1.16685e+14\n", - " Region: \"zone_1\"\tRelError: 9.53101e-02\tAbsError: 2.58525e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.53101e-02\tAbsError: 2.58525e-02\n", - " Region: \"zone_3\"\tRelError: 1.16751e+00\tAbsError: 1.16685e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.39099e-01\tAbsError: 6.97086e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.31203e-01\tAbsError: 4.69768e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.72093e-02\tAbsError: 2.58966e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 5.10055e-01\tAbsError: 1.79008e+15\n", - " Region: \"zone_1\"\tRelError: 7.10147e-02\tAbsError: 3.19256e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.10147e-02\tAbsError: 3.19256e-04\n", - " Region: \"zone_3\"\tRelError: 4.39040e-01\tAbsError: 1.79008e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39314e-02\tAbsError: 9.39738e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.81226e-02\tAbsError: 8.50345e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.56986e-01\tAbsError: 3.21663e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.22389e+00\tAbsError: 8.51989e+15\n", - " Region: \"zone_1\"\tRelError: 5.41698e+00\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.41698e+00\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.80691e+00\tAbsError: 8.51989e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94484e-01\tAbsError: 4.63675e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94370e-01\tAbsError: 3.88315e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18056e-01\tAbsError: 4.09542e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.38247e+01\tAbsError: 3.42646e+15\n", - " Region: \"zone_1\"\tRelError: 1.33015e+01\tAbsError: 1.08344e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33015e+01\tAbsError: 1.08344e-02\n", - " Region: \"zone_3\"\tRelError: 5.23208e-01\tAbsError: 3.42646e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.74976e-01\tAbsError: 1.82876e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.89790e-01\tAbsError: 1.59771e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.84420e-02\tAbsError: 1.08344e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.37737e+00\tAbsError: 1.78105e+14\n", - " Region: \"zone_1\"\tRelError: 1.48634e-01\tAbsError: 2.57619e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.48634e-01\tAbsError: 2.57619e-02\n", - " Region: \"zone_3\"\tRelError: 1.22873e+00\tAbsError: 1.78105e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.61703e-01\tAbsError: 1.04558e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.61460e-01\tAbsError: 7.35471e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.05569e-01\tAbsError: 2.58968e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.33163e-03\tAbsError: 7.03544e+12\n", - " Region: \"zone_1\"\tRelError: 6.88994e-05\tAbsError: 8.74550e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 6.88994e-05\tAbsError: 8.74550e-07\n", - " Region: \"zone_3\"\tRelError: 1.26273e-03\tAbsError: 7.03544e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.78279e-04\tAbsError: 4.08452e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.87916e-05\tAbsError: 2.95092e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.95662e-04\tAbsError: 9.67670e-07\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.61927e-01\tAbsError: 4.92934e+13\n", - " Region: \"zone_1\"\tRelError: 3.38141e-02\tAbsError: 1.06615e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.38141e-02\tAbsError: 1.06615e-02\n", - " Region: \"zone_3\"\tRelError: 4.28113e-01\tAbsError: 4.92934e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.85411e-01\tAbsError: 2.38523e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.08645e-01\tAbsError: 2.54412e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.40579e-02\tAbsError: 1.06615e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.89109e+00\tAbsError: 5.48219e+15\n", - " Region: \"zone_1\"\tRelError: 2.49390e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49390e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 1.64170e+00\tAbsError: 5.48219e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90716e-01\tAbsError: 2.59543e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.66285e-01\tAbsError: 2.88675e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.84697e-01\tAbsError: 3.07632e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.00885e-01\tAbsError: 6.88542e+14\n", - " Region: \"zone_1\"\tRelError: 5.76573e-01\tAbsError: 3.18704e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.76573e-01\tAbsError: 3.18704e-04\n", - " Region: \"zone_3\"\tRelError: 1.24312e-01\tAbsError: 6.88542e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.82071e-02\tAbsError: 3.65909e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.96440e-02\tAbsError: 3.22633e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.46133e-03\tAbsError: 3.35790e-04\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.72011e-01\tAbsError: 8.49829e+13\n", - " Region: \"zone_1\"\tRelError: 7.44559e-02\tAbsError: 1.22654e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.44559e-02\tAbsError: 1.22654e-02\n", - " Region: \"zone_3\"\tRelError: 4.97555e-01\tAbsError: 8.49829e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.15246e-01\tAbsError: 4.00907e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.40638e-01\tAbsError: 4.48922e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.16711e-02\tAbsError: 1.22654e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.08779e-01\tAbsError: 7.86412e+12\n", - " Region: \"zone_1\"\tRelError: 3.94315e-03\tAbsError: 5.37617e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.94315e-03\tAbsError: 5.37617e-05\n", - " Region: \"zone_3\"\tRelError: 1.04836e-01\tAbsError: 7.86412e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01239e-01\tAbsError: 4.02502e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.36279e-03\tAbsError: 3.83909e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.34183e-04\tAbsError: 5.93697e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.48913e-08\tAbsError: 9.78087e+07\n", - " Region: \"zone_1\"\tRelError: 2.39366e-09\tAbsError: 9.98116e-12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.39366e-09\tAbsError: 9.98116e-12\n", - " Region: \"zone_3\"\tRelError: 1.24976e-08\tAbsError: 9.78087e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.82653e-09\tAbsError: 5.13414e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.35560e-10\tAbsError: 4.64672e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 9.13552e-09\tAbsError: 1.21236e-11\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:41\u001b[0m.\u001b[1;36m913\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.9\u001b[0m \n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.28809e+00\tAbsError: 4.35524e+15\n", - " Region: \"zone_1\"\tRelError: 1.47109e-01\tAbsError: 2.58916e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.47109e-01\tAbsError: 2.58916e-02\n", - " Region: \"zone_3\"\tRelError: 1.14098e+00\tAbsError: 4.35524e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.22693e-01\tAbsError: 2.04103e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.66769e-01\tAbsError: 2.31421e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51518e-01\tAbsError: 2.53379e-02\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 5\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 1.26639e-03\tAbsError: 1.63175e+12\n", - " Region: \"zone_1\"\tRelError: 8.28809e-04\tAbsError: 1.27507e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.28809e-04\tAbsError: 1.27507e-06\n", - " Region: \"zone_3\"\tRelError: 4.37586e-04\tAbsError: 1.63175e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.67912e-04\tAbsError: 1.10540e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.19952e-05\tAbsError: 5.26349e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76786e-05\tAbsError: 1.38379e-06\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.35620e-01\tAbsError: 1.72712e+13\n", - " Region: \"zone_1\"\tRelError: 9.74579e-03\tAbsError: 1.05058e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.74579e-03\tAbsError: 1.05058e-04\n", - " Region: \"zone_3\"\tRelError: 1.25874e-01\tAbsError: 1.72712e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.17031e-01\tAbsError: 8.70382e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.35880e-03\tAbsError: 8.56740e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.84384e-04\tAbsError: 1.13804e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.12912e-04\tAbsError: 6.22497e+09\n", - " Region: \"zone_1\"\tRelError: 4.19318e-06\tAbsError: 5.80483e-08\n", - " Equation: \"PotentialEquation\"\tRelError: 4.19318e-06\tAbsError: 5.80483e-08\n", - " Region: \"zone_3\"\tRelError: 1.08718e-04\tAbsError: 6.22497e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06088e-04\tAbsError: 4.32375e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.37301e-06\tAbsError: 1.90122e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.57558e-07\tAbsError: 6.47718e-08\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.61364e-01\tAbsError: 1.56107e+15\n", - " Region: \"zone_1\"\tRelError: 1.02187e-01\tAbsError: 9.16531e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02187e-01\tAbsError: 9.16531e-03\n", - " Region: \"zone_3\"\tRelError: 4.59177e-01\tAbsError: 1.56107e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52513e-01\tAbsError: 8.30423e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.62306e-01\tAbsError: 7.30643e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.43577e-02\tAbsError: 9.16534e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 5.38910e-08\tAbsError: 1.78449e+07\n", - " Region: \"zone_1\"\tRelError: 4.98436e-08\tAbsError: 7.02794e-12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.98436e-08\tAbsError: 7.02794e-12\n", - " Region: \"zone_3\"\tRelError: 4.04737e-09\tAbsError: 1.78449e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.41581e-09\tAbsError: 1.12628e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.67215e-10\tAbsError: 6.58204e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.64338e-10\tAbsError: 7.21610e-12\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:42\u001b[0m.\u001b[1;36m479\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:42\u001b[0m.\u001b[1;36m479\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.8388888888888889\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.15889e-04\tAbsError: 3.71681e+10\n", - " Region: \"zone_1\"\tRelError: 2.41579e-05\tAbsError: 2.90587e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.41579e-05\tAbsError: 2.90587e-07\n", - " Region: \"zone_3\"\tRelError: 2.91731e-04\tAbsError: 3.71681e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.74902e-04\tAbsError: 2.46870e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.54957e-05\tAbsError: 1.24811e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33364e-06\tAbsError: 3.11133e-07\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.19725e+01\tAbsError: 1.92958e+17\n", - " Region: \"zone_1\"\tRelError: 2.64183e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.64183e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 5.55416e+00\tAbsError: 1.92958e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86635e-01\tAbsError: 9.77277e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83108e-01\tAbsError: 9.52302e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.98441e+00\tAbsError: 4.09542e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 9.68479e-11\tAbsError: 3.24994e+04\n", - " Region: \"zone_1\"\tRelError: 2.67602e-12\tAbsError: 3.81036e-14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.67602e-12\tAbsError: 3.81036e-14\n", - " Region: \"zone_3\"\tRelError: 9.41719e-11\tAbsError: 3.24994e+04\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.20056e-11\tAbsError: 1.65668e+04\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.99791e-12\tAbsError: 1.59326e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.68351e-13\tAbsError: 4.22123e-14\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.02751e-01\tAbsError: 2.88406e+14\n", - " Region: \"zone_1\"\tRelError: 3.60577e-03\tAbsError: 2.29628e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.60577e-03\tAbsError: 2.29628e-04\n", - " Region: \"zone_3\"\tRelError: 9.91456e-02\tAbsError: 2.88406e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.45252e-02\tAbsError: 1.12757e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.29594e-02\tAbsError: 1.75650e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66104e-03\tAbsError: 2.42032e-04\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:42\u001b[0m.\u001b[1;36m766\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:42\u001b[0m.\u001b[1;36m766\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6249999999999999\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.90381e-09\tAbsError: 2.12026e+05\n", - " Region: \"zone_1\"\tRelError: 1.00312e-10\tAbsError: 1.55136e-12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00312e-10\tAbsError: 1.55136e-12\n", - " Region: \"zone_3\"\tRelError: 1.80350e-09\tAbsError: 2.12026e+05\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.71088e-09\tAbsError: 1.50477e+05\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.62946e-11\tAbsError: 6.15487e+04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.32889e-12\tAbsError: 1.60667e-12\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:43\u001b[0m.\u001b[1;36m054\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.6499999999999999\u001b[0m\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 5.59678e+00\tAbsError: 2.20718e+17\n", - " Region: \"zone_1\"\tRelError: 8.54328e-01\tAbsError: 3.07631e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.54328e-01\tAbsError: 3.07631e-02\n", - " Region: \"zone_3\"\tRelError: 4.74245e+00\tAbsError: 2.20718e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57165e-01\tAbsError: 1.09369e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.88364e-01\tAbsError: 1.11350e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 3.39692e+00\tAbsError: 3.07632e-02\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.44083e+02\tAbsError: 6.23143e+16\n", - " Region: \"zone_1\"\tRelError: 1.41746e+02\tAbsError: 4.20726e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41746e+02\tAbsError: 4.20726e-02\n", - " Region: \"zone_3\"\tRelError: 2.33769e+00\tAbsError: 6.23143e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.01593e-01\tAbsError: 3.10038e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.00688e-01\tAbsError: 3.13105e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 7.35405e-01\tAbsError: 4.20726e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.04675e-04\tAbsError: 3.04021e+11\n", - " Region: \"zone_1\"\tRelError: 6.05493e-06\tAbsError: 5.20454e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 6.05493e-06\tAbsError: 5.20454e-07\n", - " Region: \"zone_3\"\tRelError: 2.98620e-04\tAbsError: 3.04021e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.67672e-04\tAbsError: 1.93910e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.70905e-05\tAbsError: 1.10111e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.85729e-06\tAbsError: 5.51479e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.95055e+01\tAbsError: 8.73225e+15\n", - " Region: \"zone_1\"\tRelError: 3.77251e+01\tAbsError: 4.19629e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.77251e+01\tAbsError: 4.19629e-02\n", - " Region: \"zone_3\"\tRelError: 1.78043e+00\tAbsError: 8.73225e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.02406e-01\tAbsError: 5.17151e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.02362e-01\tAbsError: 3.56074e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.75661e-01\tAbsError: 4.19629e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 3.40459e+00\tAbsError: 1.40151e+17\n", - " Region: \"zone_1\"\tRelError: 9.91077e-01\tAbsError: 2.58298e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.91077e-01\tAbsError: 2.58298e-02\n", - " Region: \"zone_3\"\tRelError: 2.41351e+00\tAbsError: 1.40151e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.12962e-01\tAbsError: 7.03247e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.20637e-01\tAbsError: 6.98261e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.67991e+00\tAbsError: 2.58976e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 4.98434e+00\tAbsError: 7.37896e+16\n", - " Region: \"zone_1\"\tRelError: 1.81427e+00\tAbsError: 3.20820e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81427e+00\tAbsError: 3.20820e-02\n", - " Region: \"zone_3\"\tRelError: 3.17007e+00\tAbsError: 7.37896e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.99909e-01\tAbsError: 3.77060e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.60109e-01\tAbsError: 3.60836e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.71005e+00\tAbsError: 3.20820e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.59422e-10\tAbsError: 1.22833e+06\n", - " Region: \"zone_1\"\tRelError: 9.68713e-11\tAbsError: 2.65442e-12\n", - " Equation: \"PotentialEquation\"\tRelError: 9.68713e-11\tAbsError: 2.65442e-12\n", - " Region: \"zone_3\"\tRelError: 6.62551e-10\tAbsError: 1.22833e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38518e-10\tAbsError: 7.28673e+05\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03771e-10\tAbsError: 4.99655e+05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.02615e-11\tAbsError: 2.83299e-12\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.04122e+01\tAbsError: 9.15719e+15\n", - " Region: \"zone_1\"\tRelError: 5.85997e+01\tAbsError: 4.29338e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.85997e+01\tAbsError: 4.29338e-02\n", - " Region: \"zone_3\"\tRelError: 1.81249e+00\tAbsError: 9.15719e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09671e-01\tAbsError: 5.35064e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.09616e-01\tAbsError: 3.80655e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.93207e-01\tAbsError: 4.29338e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:43\u001b[0m.\u001b[1;36m703\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.8\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.49752e+00\tAbsError: 1.43728e+15\n", - " Region: \"zone_1\"\tRelError: 8.52793e-01\tAbsError: 3.19525e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.52793e-01\tAbsError: 3.19525e-02\n", - " Region: \"zone_3\"\tRelError: 1.64473e+00\tAbsError: 1.43728e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.06123e-01\tAbsError: 8.18697e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.93926e-01\tAbsError: 6.18581e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.44679e-01\tAbsError: 3.19525e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.15760e+00\tAbsError: 3.46533e+16\n", - " Region: \"zone_1\"\tRelError: 4.44487e-01\tAbsError: 9.16511e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 4.44487e-01\tAbsError: 9.16511e-03\n", - " Region: \"zone_3\"\tRelError: 7.13113e-01\tAbsError: 3.46533e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34412e-01\tAbsError: 1.73980e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.38070e-02\tAbsError: 1.72552e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 5.24894e-01\tAbsError: 9.16533e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.12855e+01\tAbsError: 4.98281e+16\n", - " Region: \"zone_1\"\tRelError: 8.25173e+00\tAbsError: 2.57970e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.25173e+00\tAbsError: 2.57970e-02\n", - " Region: \"zone_3\"\tRelError: 3.03375e+00\tAbsError: 4.98281e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.24699e-01\tAbsError: 2.52260e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.64645e-01\tAbsError: 2.46021e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.04441e+00\tAbsError: 2.57091e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.66737e+00\tAbsError: 2.26108e+15\n", - " Region: \"zone_1\"\tRelError: 9.89112e-01\tAbsError: 3.31000e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.89112e-01\tAbsError: 3.31000e-02\n", - " Region: \"zone_3\"\tRelError: 1.67826e+00\tAbsError: 2.26108e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.18687e-01\tAbsError: 1.24573e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.03123e-01\tAbsError: 1.01535e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.56453e-01\tAbsError: 3.31000e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.85026e+00\tAbsError: 1.00498e+15\n", - " Region: \"zone_1\"\tRelError: 6.71376e-01\tAbsError: 2.56697e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.71376e-01\tAbsError: 2.56697e-02\n", - " Region: \"zone_3\"\tRelError: 1.17888e+00\tAbsError: 1.00498e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.41919e-01\tAbsError: 4.48768e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.04352e-01\tAbsError: 5.56214e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.32610e-01\tAbsError: 2.56412e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 5.74119e-02\tAbsError: 3.00253e+15\n", - " Region: \"zone_1\"\tRelError: 1.72667e-02\tAbsError: 6.21206e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72667e-02\tAbsError: 6.21206e-05\n", - " Region: \"zone_3\"\tRelError: 4.01452e-02\tAbsError: 3.00253e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04052e-02\tAbsError: 1.53972e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.58359e-03\tAbsError: 1.46281e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81563e-02\tAbsError: 6.25380e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.72164e+01\tAbsError: 2.27463e+16\n", - " Region: \"zone_1\"\tRelError: 1.85589e+00\tAbsError: 1.08343e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.85589e+00\tAbsError: 1.08343e-02\n", - " Region: \"zone_3\"\tRelError: 2.53605e+01\tAbsError: 2.27463e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.43070e-01\tAbsError: 1.22773e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.41963e-01\tAbsError: 1.04689e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49755e+01\tAbsError: 1.08344e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.06248e+01\tAbsError: 3.16044e+16\n", - " Region: \"zone_1\"\tRelError: 1.87257e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87257e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 1.89912e+00\tAbsError: 3.16044e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.93746e-01\tAbsError: 1.57387e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.93249e-01\tAbsError: 1.58657e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.12130e-01\tAbsError: 4.09543e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.57562e+00\tAbsError: 1.85067e+15\n", - " Region: \"zone_1\"\tRelError: 3.48899e-01\tAbsError: 2.58724e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.48899e-01\tAbsError: 2.58724e-02\n", - " Region: \"zone_3\"\tRelError: 1.22672e+00\tAbsError: 1.85067e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.65203e-01\tAbsError: 7.94760e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.14656e-01\tAbsError: 1.05591e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46858e-01\tAbsError: 2.56646e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.27711e-01\tAbsError: 4.77267e+14\n", - " Region: \"zone_1\"\tRelError: 4.31745e-02\tAbsError: 1.06614e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.31745e-02\tAbsError: 1.06614e-02\n", - " Region: \"zone_3\"\tRelError: 4.84536e-01\tAbsError: 4.77267e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.84030e-01\tAbsError: 2.26718e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.56062e-01\tAbsError: 2.50549e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.44447e-02\tAbsError: 1.06615e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.14148e-05\tAbsError: 7.36262e+11\n", - " Region: \"zone_1\"\tRelError: 4.55231e-07\tAbsError: 9.54534e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 4.55231e-07\tAbsError: 9.54534e-09\n", - " Region: \"zone_3\"\tRelError: 1.09596e-05\tAbsError: 7.36262e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.23017e-06\tAbsError: 3.79166e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.26674e-07\tAbsError: 3.57096e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00275e-06\tAbsError: 1.00816e-08\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.53965e+00\tAbsError: 4.86692e+15\n", - " Region: \"zone_1\"\tRelError: 2.38392e-01\tAbsError: 4.52967e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.38392e-01\tAbsError: 4.52967e-04\n", - " Region: \"zone_3\"\tRelError: 1.30126e+00\tAbsError: 4.86692e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38553e-02\tAbsError: 2.62229e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.91289e-02\tAbsError: 2.24463e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21828e+00\tAbsError: 4.65426e-04\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:44\u001b[0m.\u001b[1;36m818\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 1.0\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Iteration: 1\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - " Device: \"device\"\tRelError: 2.45748e+00\tAbsError: 3.69441e+16\n", - " Region: \"zone_1\"\tRelError: 4.13331e-01\tAbsError: 3.07632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.13331e-01\tAbsError: 3.07632e-02\n", - " Region: \"zone_3\"\tRelError: 2.04415e+00\tAbsError: 3.69441e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.88321e-01\tAbsError: 1.86445e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.52684e-01\tAbsError: 1.82996e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.03145e-01\tAbsError: 3.07632e-02\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 6.62870e-01\tAbsError: 8.58491e+14\n", - " Region: \"zone_1\"\tRelError: 9.69362e-02\tAbsError: 1.22653e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.69362e-02\tAbsError: 1.22653e-02\n", - " Region: \"zone_3\"\tRelError: 5.65934e-01\tAbsError: 8.58491e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14889e-01\tAbsError: 4.34973e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.96689e-01\tAbsError: 4.23518e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.43556e-02\tAbsError: 1.22654e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.57904e-01\tAbsError: 9.50853e+13\n", - " Region: \"zone_1\"\tRelError: 4.80473e-02\tAbsError: 3.01426e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.80473e-02\tAbsError: 3.01426e-04\n", - " Region: \"zone_3\"\tRelError: 1.09857e-01\tAbsError: 9.50853e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.42491e-02\tAbsError: 5.42455e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.39423e-02\tAbsError: 4.08397e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66512e-03\tAbsError: 3.07235e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.68644e-03\tAbsError: 3.48994e+13\n", - " Region: \"zone_1\"\tRelError: 5.21035e-04\tAbsError: 1.13321e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.21035e-04\tAbsError: 1.13321e-06\n", - " Region: \"zone_3\"\tRelError: 4.16540e-03\tAbsError: 3.48994e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.06545e-04\tAbsError: 1.84003e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.15394e-04\tAbsError: 1.64991e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.64346e-03\tAbsError: 1.18905e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 4.80876e+00\tAbsError: 2.48392e+16\n", - " Region: \"zone_1\"\tRelError: 2.08564e-01\tAbsError: 2.58396e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.08564e-01\tAbsError: 2.58396e-02\n", - " Region: \"zone_3\"\tRelError: 4.60020e+00\tAbsError: 2.48392e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.12756e-01\tAbsError: 1.24031e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.61077e-01\tAbsError: 1.24362e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.62637e+00\tAbsError: 2.33304e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.84400e-01\tAbsError: 1.84489e+14\n", - " Region: \"zone_1\"\tRelError: 5.08949e-02\tAbsError: 4.34577e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.08949e-02\tAbsError: 4.34577e-04\n", - " Region: \"zone_3\"\tRelError: 1.33505e-01\tAbsError: 1.84489e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07596e-01\tAbsError: 1.04840e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.33209e-02\tAbsError: 7.96491e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.58735e-03\tAbsError: 4.38742e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.46971e+03\tAbsError: 1.01752e+18\n", - " Region: \"zone_1\"\tRelError: 3.33693e+03\tAbsError: 4.09540e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.33693e+03\tAbsError: 4.09540e-02\n", - " Region: \"zone_3\"\tRelError: 1.32780e+02\tAbsError: 1.01752e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.36242e-01\tAbsError: 4.96799e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.16599e-01\tAbsError: 5.20717e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31327e+02\tAbsError: 4.09542e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.72801e-04\tAbsError: 2.36462e+11\n", - " Region: \"zone_1\"\tRelError: 2.51830e-04\tAbsError: 1.37797e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.51830e-04\tAbsError: 1.37797e-06\n", - " Region: \"zone_3\"\tRelError: 3.20970e-04\tAbsError: 2.36462e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96882e-04\tAbsError: 1.74027e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.62102e-05\tAbsError: 6.24347e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.87814e-06\tAbsError: 1.44860e-06\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.18196e-08\tAbsError: 3.69718e+08\n", - " Region: \"zone_1\"\tRelError: 4.96905e-09\tAbsError: 3.01388e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.96905e-09\tAbsError: 3.01388e-11\n", - " Region: \"zone_3\"\tRelError: 3.68506e-08\tAbsError: 3.69718e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.36089e-09\tAbsError: 1.89656e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.03371e-10\tAbsError: 1.80062e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 3.27863e-08\tAbsError: 3.32598e-11\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:45\u001b[0m.\u001b[1;36m725\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:45\u001b[0m.\u001b[1;36m725\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.9444444444444445\u001b[0m \n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.55071e+00\tAbsError: 8.48657e+15\n", - " Region: \"zone_1\"\tRelError: 8.11805e-01\tAbsError: 9.16529e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 8.11805e-01\tAbsError: 9.16529e-03\n", - " Region: \"zone_3\"\tRelError: 2.73890e+00\tAbsError: 8.48657e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.34197e-01\tAbsError: 4.50158e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.40806e-01\tAbsError: 3.98499e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.36390e+00\tAbsError: 9.16533e-03\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.66432e-04\tAbsError: 7.61489e+11\n", - " Region: \"zone_1\"\tRelError: 4.42890e-04\tAbsError: 3.54702e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.42890e-04\tAbsError: 3.54702e-06\n", - " Region: \"zone_3\"\tRelError: 5.23542e-04\tAbsError: 7.61489e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.54885e-04\tAbsError: 5.60496e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.72654e-05\tAbsError: 2.00993e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.13918e-05\tAbsError: 3.60294e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 5.65180e+03\tAbsError: 5.72030e+17\n", - " Region: \"zone_1\"\tRelError: 4.78800e+03\tAbsError: 3.07628e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.78800e+03\tAbsError: 3.07628e-02\n", - " Region: \"zone_3\"\tRelError: 8.63794e+02\tAbsError: 5.72030e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.05958e-01\tAbsError: 2.86919e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.81098e-01\tAbsError: 2.85111e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 8.62807e+02\tAbsError: 3.07632e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.25906e-09\tAbsError: 1.82945e+06\n", - " Region: \"zone_1\"\tRelError: 1.87221e-09\tAbsError: 9.90777e-12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87221e-09\tAbsError: 9.90777e-12\n", - " Region: \"zone_3\"\tRelError: 2.38685e-09\tAbsError: 1.82945e+06\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.08433e-09\tAbsError: 1.11322e+06\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.44618e-10\tAbsError: 7.16226e+05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.79058e-11\tAbsError: 1.06265e-11\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:46\u001b[0m.\u001b[1;36m082\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:46\u001b[0m.\u001b[1;36m082\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7299999999999999\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 5.10055e-01\tAbsError: 1.79008e+15\n", - " Region: \"zone_1\"\tRelError: 7.10147e-02\tAbsError: 3.19256e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.10147e-02\tAbsError: 3.19256e-04\n", - " Region: \"zone_3\"\tRelError: 4.39040e-01\tAbsError: 1.79008e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39314e-02\tAbsError: 9.39738e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.81226e-02\tAbsError: 8.50345e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.56986e-01\tAbsError: 3.21663e-04\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.97260e-08\tAbsError: 1.61510e+07\n", - " Region: \"zone_1\"\tRelError: 9.39372e-09\tAbsError: 7.94516e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 9.39372e-09\tAbsError: 7.94516e-11\n", - " Region: \"zone_3\"\tRelError: 1.03323e-08\tAbsError: 1.61510e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.49613e-09\tAbsError: 1.01388e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.34197e-09\tAbsError: 6.01217e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.94202e-10\tAbsError: 8.30962e-11\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:46\u001b[0m.\u001b[1;36m350\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.7599999999999999\u001b[0m\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.88673e+01\tAbsError: 3.96845e+17\n", - " Region: \"zone_1\"\tRelError: 1.50825e+01\tAbsError: 4.20725e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.50825e+01\tAbsError: 4.20725e-02\n", - " Region: \"zone_3\"\tRelError: 1.37848e+01\tAbsError: 3.96845e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.84462e-01\tAbsError: 1.90025e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.77026e-01\tAbsError: 2.06820e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.22233e+01\tAbsError: 4.20726e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 4.89714e+02\tAbsError: 1.10434e+17\n", - " Region: \"zone_1\"\tRelError: 9.55845e+01\tAbsError: 2.58991e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.55845e+01\tAbsError: 2.58991e-02\n", - " Region: \"zone_3\"\tRelError: 3.94130e+02\tAbsError: 1.10434e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.85160e-01\tAbsError: 5.54007e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.05739e-01\tAbsError: 5.50328e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.93839e+02\tAbsError: 2.58972e-02\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.33163e-03\tAbsError: 7.03544e+12\n", - " Region: \"zone_1\"\tRelError: 6.88994e-05\tAbsError: 8.74550e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 6.88994e-05\tAbsError: 8.74550e-07\n", - " Region: \"zone_3\"\tRelError: 1.26273e-03\tAbsError: 7.03544e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.78279e-04\tAbsError: 4.08452e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.87916e-05\tAbsError: 2.95092e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.95662e-04\tAbsError: 9.67670e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.59297e+02\tAbsError: 9.37580e+15\n", - " Region: \"zone_1\"\tRelError: 1.57449e+02\tAbsError: 4.19629e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.57449e+02\tAbsError: 4.19629e-02\n", - " Region: \"zone_3\"\tRelError: 1.84837e+00\tAbsError: 9.37580e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.02269e-01\tAbsError: 5.04440e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.02121e-01\tAbsError: 4.33140e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.43978e-01\tAbsError: 4.19629e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.43213e+01\tAbsError: 4.51925e+17\n", - " Region: \"zone_1\"\tRelError: 9.72728e+00\tAbsError: 3.20817e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.72728e+00\tAbsError: 3.20817e-02\n", - " Region: \"zone_3\"\tRelError: 1.45940e+01\tAbsError: 4.51925e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.26127e-01\tAbsError: 2.25636e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.37098e-01\tAbsError: 2.26288e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33307e+01\tAbsError: 3.20820e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.66351e+02\tAbsError: 9.19252e+15\n", - " Region: \"zone_1\"\tRelError: 3.26361e+01\tAbsError: 9.16476e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.26361e+01\tAbsError: 9.16476e-03\n", - " Region: \"zone_3\"\tRelError: 1.33715e+02\tAbsError: 9.19252e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.93363e-02\tAbsError: 3.80375e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.29874e-03\tAbsError: 5.38877e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33687e+02\tAbsError: 9.16533e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.48935e-08\tAbsError: 9.78086e+07\n", - " Region: \"zone_1\"\tRelError: 2.39367e-09\tAbsError: 9.98117e-12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.39367e-09\tAbsError: 9.98117e-12\n", - " Region: \"zone_3\"\tRelError: 1.24998e-08\tAbsError: 9.78086e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.82653e-09\tAbsError: 5.13414e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.35560e-10\tAbsError: 4.64672e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 9.13775e-09\tAbsError: 1.21236e-11\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.46452e+01\tAbsError: 1.39214e+16\n", - " Region: \"zone_1\"\tRelError: 1.27520e+01\tAbsError: 4.29338e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.27520e+01\tAbsError: 4.29338e-02\n", - " Region: \"zone_3\"\tRelError: 1.89312e+00\tAbsError: 1.39214e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09433e-01\tAbsError: 7.08522e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.09229e-01\tAbsError: 6.83614e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.74457e-01\tAbsError: 4.29338e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:47\u001b[0m.\u001b[1;36m019\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.9\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.53037e+00\tAbsError: 9.91902e+15\n", - " Region: \"zone_1\"\tRelError: 8.43252e-01\tAbsError: 3.19524e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.43252e-01\tAbsError: 3.19524e-02\n", - " Region: \"zone_3\"\tRelError: 1.68712e+00\tAbsError: 9.91902e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.04474e-01\tAbsError: 4.77887e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.75728e-01\tAbsError: 5.14015e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06918e-01\tAbsError: 3.19525e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.95192e+01\tAbsError: 1.87367e+17\n", - " Region: \"zone_1\"\tRelError: 7.47528e+00\tAbsError: 2.58439e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.47528e+00\tAbsError: 2.58439e-02\n", - " Region: \"zone_3\"\tRelError: 1.20439e+01\tAbsError: 1.87367e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.50571e-01\tAbsError: 9.40532e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.24908e-01\tAbsError: 9.33136e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14684e+01\tAbsError: 2.58398e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.32987e-01\tAbsError: 2.66374e+15\n", - " Region: \"zone_1\"\tRelError: 3.15232e-01\tAbsError: 4.41461e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.15232e-01\tAbsError: 4.41461e-05\n", - " Region: \"zone_3\"\tRelError: 3.17755e-01\tAbsError: 2.66374e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.80897e-03\tAbsError: 4.60284e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.14468e-04\tAbsError: 2.20346e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 3.15232e-01\tAbsError: 4.48094e-05\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.03361e+00\tAbsError: 1.75457e+16\n", - " Region: \"zone_1\"\tRelError: 2.96801e-01\tAbsError: 3.31000e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.96801e-01\tAbsError: 3.31000e-02\n", - " Region: \"zone_3\"\tRelError: 1.73681e+00\tAbsError: 1.75457e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16200e-01\tAbsError: 8.62297e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.86789e-01\tAbsError: 8.92275e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.33819e-01\tAbsError: 3.31000e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.40037e+00\tAbsError: 7.91855e+15\n", - " Region: \"zone_1\"\tRelError: 1.77050e-01\tAbsError: 2.58157e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77050e-01\tAbsError: 2.58157e-02\n", - " Region: \"zone_3\"\tRelError: 1.22332e+00\tAbsError: 7.91855e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.45454e-01\tAbsError: 3.90031e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.00819e-01\tAbsError: 4.01824e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77050e-01\tAbsError: 2.58157e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 8.75936e+00\tAbsError: 2.19100e+16\n", - " Region: \"zone_1\"\tRelError: 5.91836e-01\tAbsError: 1.08340e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.91836e-01\tAbsError: 1.08340e-02\n", - " Region: \"zone_3\"\tRelError: 8.16752e+00\tAbsError: 2.19100e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.41856e-02\tAbsError: 1.10284e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.95173e-02\tAbsError: 1.08816e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 8.05382e+00\tAbsError: 1.08344e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.38206e-06\tAbsError: 3.71586e+11\n", - " Region: \"zone_1\"\tRelError: 3.57211e-06\tAbsError: 1.32884e-09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.57211e-06\tAbsError: 1.32884e-09\n", - " Region: \"zone_3\"\tRelError: 5.80995e-06\tAbsError: 3.71586e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.88317e-07\tAbsError: 1.74877e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.86151e-07\tAbsError: 1.96709e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.03548e-06\tAbsError: 1.32977e-09\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.19725e+01\tAbsError: 1.92958e+17\n", - " Region: \"zone_1\"\tRelError: 2.64183e+01\tAbsError: 4.09542e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.64183e+01\tAbsError: 4.09542e-02\n", - " Region: \"zone_3\"\tRelError: 5.55416e+00\tAbsError: 1.92958e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86635e-01\tAbsError: 9.77277e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83108e-01\tAbsError: 9.52302e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.98441e+00\tAbsError: 4.09542e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.50364e+00\tAbsError: 1.43673e+16\n", - " Region: \"zone_1\"\tRelError: 2.06229e-01\tAbsError: 2.57690e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06229e-01\tAbsError: 2.57690e-02\n", - " Region: \"zone_3\"\tRelError: 1.29741e+00\tAbsError: 1.43673e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.65900e-01\tAbsError: 7.23214e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.25278e-01\tAbsError: 7.13518e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06229e-01\tAbsError: 2.50728e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.70911e+00\tAbsError: 3.16280e+15\n", - " Region: \"zone_1\"\tRelError: 1.19373e+00\tAbsError: 1.06614e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19373e+00\tAbsError: 1.06614e-02\n", - " Region: \"zone_3\"\tRelError: 5.15380e-01\tAbsError: 3.16280e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.71283e-01\tAbsError: 1.68374e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.87166e-01\tAbsError: 1.47905e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.69319e-02\tAbsError: 1.06615e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 3.01804e-01\tAbsError: 3.36603e+15\n", - " Region: \"zone_1\"\tRelError: 2.65712e-02\tAbsError: 6.30769e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.65712e-02\tAbsError: 6.30769e-05\n", - " Region: \"zone_3\"\tRelError: 2.75233e-01\tAbsError: 3.36603e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.46142e-03\tAbsError: 1.73937e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.04193e-03\tAbsError: 1.62666e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.65729e-01\tAbsError: 6.31187e-05\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 5.59678e+00\tAbsError: 2.20718e+17\n", - " Region: \"zone_1\"\tRelError: 8.54328e-01\tAbsError: 3.07631e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.54328e-01\tAbsError: 3.07631e-02\n", - " Region: \"zone_3\"\tRelError: 4.74245e+00\tAbsError: 2.20718e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57165e-01\tAbsError: 1.09369e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.88364e-01\tAbsError: 1.11350e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 3.39692e+00\tAbsError: 3.07632e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.10487e+00\tAbsError: 6.11018e+15\n", - " Region: \"zone_1\"\tRelError: 5.10621e-01\tAbsError: 1.22653e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.10621e-01\tAbsError: 1.22653e-02\n", - " Region: \"zone_3\"\tRelError: 5.94250e-01\tAbsError: 6.11018e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.03660e-01\tAbsError: 3.26136e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.08790e-01\tAbsError: 2.84882e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.17995e-02\tAbsError: 1.22654e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.54944e-01\tAbsError: 6.31247e+14\n", - " Region: \"zone_1\"\tRelError: 3.35277e-02\tAbsError: 3.09977e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.35277e-02\tAbsError: 3.09977e-04\n", - " Region: \"zone_3\"\tRelError: 1.21416e-01\tAbsError: 6.31247e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.69365e-02\tAbsError: 3.28792e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.89497e-02\tAbsError: 3.02454e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.53021e-03\tAbsError: 3.26964e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.16816e-05\tAbsError: 9.44595e+11\n", - " Region: \"zone_1\"\tRelError: 1.39205e-06\tAbsError: 1.83406e-08\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39205e-06\tAbsError: 1.83406e-08\n", - " Region: \"zone_3\"\tRelError: 3.02895e-05\tAbsError: 9.44595e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.64960e-06\tAbsError: 4.94394e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.51657e-07\tAbsError: 4.50201e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.71883e-05\tAbsError: 1.83406e-08\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 3.40459e+00\tAbsError: 1.40151e+17\n", - " Region: \"zone_1\"\tRelError: 9.91077e-01\tAbsError: 2.58298e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.91077e-01\tAbsError: 2.58298e-02\n", - " Region: \"zone_3\"\tRelError: 2.41351e+00\tAbsError: 1.40151e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.12962e-01\tAbsError: 7.03247e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.20637e-01\tAbsError: 6.98261e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.67991e+00\tAbsError: 2.58976e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:48\u001b[0m.\u001b[1;36m571\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: 1.05\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.81734e-01\tAbsError: 1.29397e+15\n", - " Region: \"zone_1\"\tRelError: 2.65607e-02\tAbsError: 4.00616e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.65607e-02\tAbsError: 4.00616e-04\n", - " Region: \"zone_3\"\tRelError: 1.55174e-01\tAbsError: 1.29397e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05235e-01\tAbsError: 7.52366e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.59033e-02\tAbsError: 5.41606e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.40353e-02\tAbsError: 4.21669e-04\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:48\u001b[0m.\u001b[1;36m774\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:48\u001b[0m.\u001b[1;36m805\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.25 bias\u001b[0m \n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.77292e-04\tAbsError: 1.38473e+12\n", - " Region: \"zone_1\"\tRelError: 5.44385e-05\tAbsError: 1.16755e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.44385e-05\tAbsError: 1.16755e-06\n", - " Region: \"zone_3\"\tRelError: 4.22853e-04\tAbsError: 1.38473e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.57884e-04\tAbsError: 9.38758e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.97750e-05\tAbsError: 4.45977e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51936e-05\tAbsError: 1.26574e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:48\u001b[0m.\u001b[1;36m833\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.15760e+00\tAbsError: 3.46533e+16\n", - " Region: \"zone_1\"\tRelError: 4.44487e-01\tAbsError: 9.16511e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 4.44487e-01\tAbsError: 9.16511e-03\n", - " Region: \"zone_3\"\tRelError: 7.13113e-01\tAbsError: 3.46533e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34412e-01\tAbsError: 1.73980e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.38070e-02\tAbsError: 1.72552e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 5.24894e-01\tAbsError: 9.16533e-03\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.31774e-04\tAbsError: 5.24071e+12\n", - " Region: \"zone_1\"\tRelError: 7.43582e-05\tAbsError: 2.53146e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 7.43582e-05\tAbsError: 2.53146e-06\n", - " Region: \"zone_3\"\tRelError: 5.57416e-04\tAbsError: 5.24071e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.32902e-04\tAbsError: 3.49386e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.63617e-05\tAbsError: 1.74685e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.81517e-05\tAbsError: 2.70236e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.70323e+03\tAbsError: 1.65122e+18\n", - " Region: \"zone_1\"\tRelError: 3.32065e+02\tAbsError: 4.20723e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.32065e+02\tAbsError: 4.20723e-02\n", - " Region: \"zone_3\"\tRelError: 1.37117e+03\tAbsError: 1.65122e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.08593e-01\tAbsError: 8.18918e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.84678e-01\tAbsError: 8.32299e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36977e+03\tAbsError: 4.20726e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.07328e-09\tAbsError: 1.34257e+07\n", - " Region: \"zone_1\"\tRelError: 2.69641e-09\tAbsError: 6.49962e-12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.69641e-09\tAbsError: 6.49962e-12\n", - " Region: \"zone_3\"\tRelError: 3.37687e-09\tAbsError: 1.34257e+07\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.85536e-09\tAbsError: 8.36283e+06\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.97808e-10\tAbsError: 5.06285e+06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.23706e-10\tAbsError: 6.69897e-12\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:49\u001b[0m.\u001b[1;36m341\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:49\u001b[0m.\u001b[1;36m341\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.8349999999999999\u001b[0m \n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Iteration: 4\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 5.74119e-02\tAbsError: 3.00253e+15\n", - " Region: \"zone_1\"\tRelError: 1.72667e-02\tAbsError: 6.21206e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72667e-02\tAbsError: 6.21206e-05\n", - " Region: \"zone_3\"\tRelError: 4.01452e-02\tAbsError: 3.00253e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04052e-02\tAbsError: 1.53972e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.58359e-03\tAbsError: 1.46281e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81563e-02\tAbsError: 6.25380e-05\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_3nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.02819e+04\tAbsError: 9.43628e+18\n", - " Region: \"zone_1\"\tRelError: 9.68046e+03\tAbsError: 9.26313e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.68046e+03\tAbsError: 9.26313e-02\n", - " Region: \"zone_3\"\tRelError: 1.06015e+04\tAbsError: 9.43628e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.25110e+02\tAbsError: 3.83433e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.95896e+02\tAbsError: 5.60195e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 9.68046e+03\tAbsError: 9.26320e-02\n", - "Replacing Node Model zone_3_bc_3nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: PotentialEquation\n", - "number of equations 22602\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.68177e-08\tAbsError: 1.37298e+08\n", - " Region: \"zone_1\"\tRelError: 2.83992e-09\tAbsError: 2.34907e-11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.83992e-09\tAbsError: 2.34907e-11\n", - " Region: \"zone_3\"\tRelError: 1.39778e-08\tAbsError: 1.37298e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12757e-08\tAbsError: 9.31515e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.32268e-09\tAbsError: 4.41463e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37946e-09\tAbsError: 2.41052e-11\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:22:49\u001b[0m.\u001b[1;36m631\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.8699999999999999\u001b[0m\n", - "Replacing Node Model zone_3_bc_2nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodeholes:Electrons in region zone_3 of material Si\n", - "Iteration: 1\n", - "Replacing Node Model zone_3_bc_2nodeholes:T in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 5.63649e+03\tAbsError: 5.73085e+17\n", - " Region: \"zone_1\"\tRelError: 1.94437e+03\tAbsError: 3.20814e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.94437e+03\tAbsError: 3.20814e-02\n", - " Region: \"zone_3\"\tRelError: 3.69212e+03\tAbsError: 5.73085e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.36268e-01\tAbsError: 2.87360e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.24144e-01\tAbsError: 2.85725e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 3.69126e+03\tAbsError: 3.20820e-02\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_2, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_3nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_3nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_3, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_2nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_2nodemodel:Potential in region zone_3 of material Si\n" - ] - } - ], - "source": [ - "results_iso = run_heat_sim(sim=sim_iso, log_level=\"DEBUG\")\n", - "subprocess.run([\"cp\", \"-r\", \"tmp\", \"tmp_Ba_example_iso\"]) \n", - "subprocess.run([\"cp\", \"output/simulation_data.hdf5\", \"tmp_Ba_example_iso/\"]) " - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "id": "04d6037a-adb9-4b8c-b319-64074b203f9c", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:24\u001b[0m.\u001b[1;36m801\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: 0.55\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 8.69185e-05\tAbsError: 3.95954e+10\n", - " Region: \"zone_1\"\tRelError: 7.32516e-06\tAbsError: 6.15078e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 7.30759e-06\tAbsError: 3.68566e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75656e-08\tAbsError: 6.11392e-06\n", - " Region: \"zone_3\"\tRelError: 7.95933e-05\tAbsError: 3.95954e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.79841e-06\tAbsError: 1.32431e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.77435e-06\tAbsError: 2.63522e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.40030e-05\tAbsError: 3.69064e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75729e-08\tAbsError: 6.11658e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:25\u001b[0m.\u001b[1;36m081\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: 0.54\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.61549e-04\tAbsError: 5.47840e+10\n", - " Region: \"zone_1\"\tRelError: 1.81900e-05\tAbsError: 1.93945e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81846e-05\tAbsError: 4.89694e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.43105e-09\tAbsError: 1.89048e-06\n", - " Region: \"zone_3\"\tRelError: 1.43359e-04\tAbsError: 5.47840e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.04114e-06\tAbsError: 2.20323e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.00674e-06\tAbsError: 3.27517e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35306e-04\tAbsError: 4.90033e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.43421e-09\tAbsError: 1.89162e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.14452e-04\tAbsError: 7.30289e+10\n", - " Region: \"zone_1\"\tRelError: 2.86940e-05\tAbsError: 6.36360e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.86759e-05\tAbsError: 5.89548e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.81140e-08\tAbsError: 6.30465e-06\n", - " Region: \"zone_3\"\tRelError: 1.85758e-04\tAbsError: 7.30289e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.82939e-06\tAbsError: 2.93609e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.78814e-06\tAbsError: 4.36680e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76122e-04\tAbsError: 5.96153e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.81216e-08\tAbsError: 6.30740e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.42427e-04\tAbsError: 5.63748e+10\n", - " Region: \"zone_1\"\tRelError: 1.23755e-05\tAbsError: 6.53179e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.23569e-05\tAbsError: 4.83198e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.86277e-08\tAbsError: 6.48347e-06\n", - " Region: \"zone_3\"\tRelError: 1.30051e-04\tAbsError: 5.63748e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.81534e-06\tAbsError: 2.09516e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.78294e-06\tAbsError: 3.54232e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.22434e-04\tAbsError: 4.86777e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.86354e-08\tAbsError: 6.48630e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 4.17538e+01\tAbsError: 9.25847e+15\n", - " Region: \"zone_1\"\tRelError: 4.00213e+01\tAbsError: 4.34081e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.00213e+01\tAbsError: 4.34059e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.13543e-09\tAbsError: 2.13056e-06\n", - " Region: \"zone_3\"\tRelError: 1.73246e+00\tAbsError: 9.25847e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.89882e-01\tAbsError: 5.37570e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.89829e-01\tAbsError: 3.88277e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.52747e-01\tAbsError: 4.34059e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.13711e-09\tAbsError: 2.13108e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.55715e-06\tAbsError: 1.55373e+09\n", - " Region: \"zone_1\"\tRelError: 2.75443e-07\tAbsError: 3.15707e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66361e-07\tAbsError: 7.16801e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.08162e-09\tAbsError: 3.15635e-06\n", - " Region: \"zone_3\"\tRelError: 2.28171e-06\tAbsError: 1.55373e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01860e-07\tAbsError: 1.23173e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.92720e-08\tAbsError: 3.21997e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.10150e-06\tAbsError: 7.37244e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.08225e-09\tAbsError: 3.15662e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.78742e+01\tAbsError: 9.05161e+15\n", - " Region: \"zone_1\"\tRelError: 1.61544e+01\tAbsError: 4.29358e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.61544e+01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.66407e-09\tAbsError: 1.96688e-06\n", - " Region: \"zone_3\"\tRelError: 1.71987e+00\tAbsError: 9.05161e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86128e-01\tAbsError: 5.27529e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.86079e-01\tAbsError: 3.77633e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.47659e-01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.66503e-09\tAbsError: 1.96717e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:26\u001b[0m.\u001b[1;36m827\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: 0.5\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.22665e-05\tAbsError: 5.09033e+09\n", - " Region: \"zone_1\"\tRelError: 4.34074e-06\tAbsError: 3.93347e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.32944e-06\tAbsError: 3.33444e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13089e-08\tAbsError: 3.93013e-06\n", - " Region: \"zone_3\"\tRelError: 1.79258e-05\tAbsError: 5.09033e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.07491e-07\tAbsError: 3.86922e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.88310e-07\tAbsError: 1.22111e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.73186e-05\tAbsError: 3.47370e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13093e-08\tAbsError: 3.93031e-06\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:27\u001b[0m.\u001b[1;36m020\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.6\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Iteration: 8\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 2.23392e-05\tAbsError: 5.34475e+09\n", - " Region: \"zone_1\"\tRelError: 2.09068e-06\tAbsError: 2.89040e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.08236e-06\tAbsError: 3.49141e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.31400e-09\tAbsError: 2.88691e-06\n", - " Region: \"zone_3\"\tRelError: 2.02485e-05\tAbsError: 5.34475e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.20754e-07\tAbsError: 3.93870e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.15383e-07\tAbsError: 1.40605e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.96041e-05\tAbsError: 3.63779e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.31461e-09\tAbsError: 2.88716e-06\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:27\u001b[0m.\u001b[1;36m163\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.58\u001b[0m \n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.07279e+01\tAbsError: 1.48541e+15\n", - " Region: \"zone_1\"\tRelError: 9.16669e+00\tAbsError: 7.57653e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.16657e+00\tAbsError: 3.36591e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.21167e-04\tAbsError: 4.21062e-02\n", - " Region: \"zone_3\"\tRelError: 1.56119e+00\tAbsError: 1.48541e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.76744e-01\tAbsError: 8.47073e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.60738e-01\tAbsError: 6.38333e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.23585e-01\tAbsError: 3.36593e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.21167e-04\tAbsError: 4.21062e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.83311e+00\tAbsError: 1.26455e+15\n", - " Region: \"zone_1\"\tRelError: 2.88937e-01\tAbsError: 7.51136e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88816e-01\tAbsError: 3.31003e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20899e-04\tAbsError: 4.20134e-02\n", - " Region: \"zone_3\"\tRelError: 1.54417e+00\tAbsError: 1.26455e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.70125e-01\tAbsError: 7.28712e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.54876e-01\tAbsError: 5.35842e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19050e-01\tAbsError: 3.31004e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20899e-04\tAbsError: 4.20134e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.44671e+02\tAbsError: 8.23352e+15\n", - " Region: \"zone_1\"\tRelError: 5.43003e+02\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.43003e+02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.11267e-10\tAbsError: 1.43080e-07\n", - " Region: \"zone_3\"\tRelError: 1.66763e+00\tAbsError: 8.23352e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.84587e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69628e-01\tAbsError: 3.38765e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28340e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.11422e-10\tAbsError: 1.43134e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.88271e+01\tAbsError: 1.03297e+16\n", - " Region: \"zone_1\"\tRelError: 1.70343e+01\tAbsError: 4.56456e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.70343e+01\tAbsError: 4.56455e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.07702e-10\tAbsError: 1.41907e-07\n", - " Region: \"zone_3\"\tRelError: 1.79279e+00\tAbsError: 1.03297e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.06826e-01\tAbsError: 5.83689e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.06752e-01\tAbsError: 4.49285e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.79207e-01\tAbsError: 4.56455e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.07906e-10\tAbsError: 1.41981e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.41492e+01\tAbsError: 9.89143e+15\n", - " Region: \"zone_1\"\tRelError: 2.23800e+01\tAbsError: 4.47730e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.23800e+01\tAbsError: 4.47728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.25599e-10\tAbsError: 2.17748e-07\n", - " Region: \"zone_3\"\tRelError: 1.76921e+00\tAbsError: 9.89143e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.00389e-01\tAbsError: 5.65978e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.00325e-01\tAbsError: 4.23166e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.68492e-01\tAbsError: 4.47728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.25887e-10\tAbsError: 2.17851e-07\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.78585e+00\tAbsError: 9.41451e+14\n", - " Region: \"zone_1\"\tRelError: 7.13109e-01\tAbsError: 3.44571e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.13084e-01\tAbsError: 2.58762e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.46922e-05\tAbsError: 8.58088e-03\n", - " Region: \"zone_3\"\tRelError: 1.07274e+00\tAbsError: 9.41451e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.00333e-01\tAbsError: 4.29385e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.58044e-01\tAbsError: 5.12066e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14338e-01\tAbsError: 2.58947e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.46922e-05\tAbsError: 8.58088e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.16142e+00\tAbsError: 7.46156e+14\n", - " Region: \"zone_1\"\tRelError: 1.09872e-01\tAbsError: 3.44018e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09847e-01\tAbsError: 2.58558e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.45917e-05\tAbsError: 8.54603e-03\n", - " Region: \"zone_3\"\tRelError: 1.05155e+00\tAbsError: 7.46156e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89433e-01\tAbsError: 3.46738e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.51496e-01\tAbsError: 3.99417e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10596e-01\tAbsError: 2.58925e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.45917e-05\tAbsError: 8.54603e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 4.93663e+00\tAbsError: 6.37428e+14\n", - " Region: \"zone_1\"\tRelError: 3.46019e+00\tAbsError: 7.21476e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.46007e+00\tAbsError: 3.07635e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", - " Region: \"zone_3\"\tRelError: 1.47644e+00\tAbsError: 6.37428e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40577e-01\tAbsError: 3.72575e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.27797e-01\tAbsError: 2.64853e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07947e-01\tAbsError: 3.07638e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 4.78493e+01\tAbsError: 3.20100e+15\n", - " Region: \"zone_1\"\tRelError: 4.62100e+01\tAbsError: 7.94945e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.62099e+01\tAbsError: 3.63156e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.24260e-04\tAbsError: 4.31789e-02\n", - " Region: \"zone_3\"\tRelError: 1.63930e+00\tAbsError: 3.20100e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.06426e-01\tAbsError: 1.69245e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.84342e-01\tAbsError: 1.50855e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.48412e-01\tAbsError: 3.63156e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.24260e-04\tAbsError: 4.31789e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.49591e+00\tAbsError: 2.36630e+15\n", - " Region: \"zone_1\"\tRelError: 1.88679e+00\tAbsError: 7.78202e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88667e+00\tAbsError: 3.52795e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22421e-04\tAbsError: 4.25407e-02\n", - " Region: \"zone_3\"\tRelError: 1.60912e+00\tAbsError: 2.36630e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.95285e-01\tAbsError: 1.29391e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.75748e-01\tAbsError: 1.07240e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37963e-01\tAbsError: 3.52796e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22421e-04\tAbsError: 4.25407e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.97805e-01\tAbsError: 4.22171e+14\n", - " Region: \"zone_1\"\tRelError: 1.57599e-01\tAbsError: 1.98078e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.57580e-01\tAbsError: 1.31068e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.92831e-05\tAbsError: 6.70102e-03\n", - " Region: \"zone_3\"\tRelError: 4.40206e-01\tAbsError: 4.22171e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.55362e-01\tAbsError: 2.02981e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.39059e-01\tAbsError: 2.19190e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.57657e-02\tAbsError: 1.31068e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.92831e-05\tAbsError: 6.70102e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.49598e-01\tAbsError: 3.37443e+14\n", - " Region: \"zone_1\"\tRelError: 4.08488e-02\tAbsError: 1.80805e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.08321e-02\tAbsError: 1.22656e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67328e-05\tAbsError: 5.81483e-03\n", - " Region: \"zone_3\"\tRelError: 4.08750e-01\tAbsError: 3.37443e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.41863e-01\tAbsError: 1.59086e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.25055e-01\tAbsError: 1.78357e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.18148e-02\tAbsError: 1.22657e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67328e-05\tAbsError: 5.81483e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.95431e+00\tAbsError: 2.96317e+14\n", - " Region: \"zone_1\"\tRelError: 2.00902e+00\tAbsError: 3.34445e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.00900e+00\tAbsError: 2.58782e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", - " Region: \"zone_3\"\tRelError: 9.45295e-01\tAbsError: 2.96317e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42034e-01\tAbsError: 1.59420e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.10683e-01\tAbsError: 1.36896e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.25558e-02\tAbsError: 2.58843e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.99450e+00\tAbsError: 2.69783e+15\n", - " Region: \"zone_1\"\tRelError: 8.00609e-01\tAbsError: 3.34477e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.00587e-01\tAbsError: 2.57631e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.21384e-05\tAbsError: 7.68460e-03\n", - " Region: \"zone_3\"\tRelError: 1.19389e+00\tAbsError: 2.69783e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.49930e-01\tAbsError: 1.16830e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.12020e-01\tAbsError: 1.52953e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31922e-01\tAbsError: 2.56133e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.21545e-05\tAbsError: 7.69038e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.67527e+00\tAbsError: 1.79984e+15\n", - " Region: \"zone_1\"\tRelError: 5.30726e-01\tAbsError: 3.40936e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.30702e-01\tAbsError: 2.58093e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.38662e-05\tAbsError: 8.28427e-03\n", - " Region: \"zone_3\"\tRelError: 1.14454e+00\tAbsError: 1.79984e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.31015e-01\tAbsError: 7.86562e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.87926e-01\tAbsError: 1.01328e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.25580e-01\tAbsError: 2.58205e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.38792e-05\tAbsError: 8.28883e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.62335e-01\tAbsError: 8.52607e+13\n", - " Region: \"zone_1\"\tRelError: 1.60436e-01\tAbsError: 8.47864e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60413e-01\tAbsError: 3.10853e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.35349e-05\tAbsError: 8.16779e-03\n", - " Region: \"zone_3\"\tRelError: 1.01899e-01\tAbsError: 8.52607e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.58516e-02\tAbsError: 4.50523e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.50106e-02\tAbsError: 4.02084e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10135e-02\tAbsError: 3.29324e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.35395e-05\tAbsError: 8.16938e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.04059e-01\tAbsError: 6.56185e+13\n", - " Region: \"zone_1\"\tRelError: 1.13333e-02\tAbsError: 6.89729e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13142e-02\tAbsError: 2.55833e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91291e-05\tAbsError: 6.64145e-03\n", - " Region: \"zone_3\"\tRelError: 9.27262e-02\tAbsError: 6.56185e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.04845e-02\tAbsError: 3.55492e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.18771e-02\tAbsError: 3.00692e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03455e-02\tAbsError: 2.71121e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91291e-05\tAbsError: 6.64145e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.90232e-01\tAbsError: 1.27257e+14\n", - " Region: \"zone_1\"\tRelError: 2.88169e-01\tAbsError: 1.34324e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88157e-01\tAbsError: 9.16559e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22923e-05\tAbsError: 4.26682e-03\n", - " Region: \"zone_3\"\tRelError: 3.02062e-01\tAbsError: 1.27257e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98145e-01\tAbsError: 5.59682e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.53461e-02\tAbsError: 7.12890e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.85587e-02\tAbsError: 9.16563e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22942e-05\tAbsError: 4.26755e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.00720e+00\tAbsError: 1.15188e+15\n", - " Region: \"zone_1\"\tRelError: 4.40654e+00\tAbsError: 3.68300e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.40649e+00\tAbsError: 1.76841e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.50999e-05\tAbsError: 1.91459e-02\n", - " Region: \"zone_3\"\tRelError: 6.00656e-01\tAbsError: 1.15188e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.20391e-01\tAbsError: 5.67234e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.11129e-01\tAbsError: 5.84644e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.90811e-02\tAbsError: 1.76842e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.51005e-05\tAbsError: 1.91459e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 6.92102e-01\tAbsError: 7.85625e+14\n", - " Region: \"zone_1\"\tRelError: 1.55937e-01\tAbsError: 2.88894e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55899e-01\tAbsError: 1.57809e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.77234e-05\tAbsError: 1.31085e-02\n", - " Region: \"zone_3\"\tRelError: 5.36165e-01\tAbsError: 7.85625e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.94721e-01\tAbsError: 3.88094e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.82672e-01\tAbsError: 3.97531e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.87349e-02\tAbsError: 1.57810e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.77234e-05\tAbsError: 1.31085e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.22238e-02\tAbsError: 4.20049e+12\n", - " Region: \"zone_1\"\tRelError: 9.02002e-04\tAbsError: 2.21541e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.01377e-04\tAbsError: 4.51852e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.24524e-07\tAbsError: 2.17023e-04\n", - " Region: \"zone_3\"\tRelError: 1.13218e-02\tAbsError: 4.20049e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.21631e-04\tAbsError: 1.57143e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.43383e-04\tAbsError: 2.62907e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04561e-02\tAbsError: 4.55127e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.24524e-07\tAbsError: 2.17023e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.70535e-03\tAbsError: 3.37743e+12\n", - " Region: \"zone_1\"\tRelError: 8.78757e-04\tAbsError: 1.91107e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 8.78217e-04\tAbsError: 3.61781e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.39528e-07\tAbsError: 1.87489e-04\n", - " Region: \"zone_3\"\tRelError: 8.82659e-03\tAbsError: 3.37743e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.29951e-04\tAbsError: 1.23275e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.83501e-04\tAbsError: 2.14468e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.11260e-03\tAbsError: 3.63680e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.39528e-07\tAbsError: 1.87489e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.81369e-01\tAbsError: 1.65118e+13\n", - " Region: \"zone_1\"\tRelError: 1.13683e-01\tAbsError: 2.48930e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13676e-01\tAbsError: 7.97182e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", - " Region: \"zone_3\"\tRelError: 6.76863e-02\tAbsError: 1.65118e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.50220e-02\tAbsError: 9.05581e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.84537e-03\tAbsError: 7.45604e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 9.81196e-03\tAbsError: 8.36703e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 5.04216e+00\tAbsError: 2.77132e+14\n", - " Region: \"zone_1\"\tRelError: 4.86460e+00\tAbsError: 1.64874e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.86456e+00\tAbsError: 6.36021e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.56571e-05\tAbsError: 1.58514e-02\n", - " Region: \"zone_3\"\tRelError: 1.77555e-01\tAbsError: 2.77132e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10831e-01\tAbsError: 1.40024e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.52740e-02\tAbsError: 1.37108e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.14041e-02\tAbsError: 6.44948e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.56571e-05\tAbsError: 1.58514e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.46538e-01\tAbsError: 1.72857e+14\n", - " Region: \"zone_1\"\tRelError: 1.03351e-01\tAbsError: 1.21126e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03317e-01\tAbsError: 4.92001e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.34699e-05\tAbsError: 1.16206e-02\n", - " Region: \"zone_3\"\tRelError: 1.43187e-01\tAbsError: 1.72857e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.52949e-02\tAbsError: 8.65648e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.61175e-02\tAbsError: 8.62923e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.17415e-02\tAbsError: 5.11595e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.34699e-05\tAbsError: 1.16206e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.26071e-04\tAbsError: 1.28152e+11\n", - " Region: \"zone_1\"\tRelError: 1.75841e-05\tAbsError: 2.73744e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.67966e-05\tAbsError: 8.67708e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.87521e-07\tAbsError: 2.73657e-04\n", - " Region: \"zone_3\"\tRelError: 2.08487e-04\tAbsError: 1.28152e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03318e-05\tAbsError: 1.00310e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.04880e-06\tAbsError: 2.78416e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.89318e-04\tAbsError: 9.08068e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.87521e-07\tAbsError: 2.73657e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.74946e-04\tAbsError: 1.17170e+11\n", - " Region: \"zone_1\"\tRelError: 2.69263e-05\tAbsError: 2.18382e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.62981e-05\tAbsError: 8.01643e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.28213e-07\tAbsError: 2.18302e-04\n", - " Region: \"zone_3\"\tRelError: 2.48020e-04\tAbsError: 1.17170e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.02611e-06\tAbsError: 9.22316e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.05400e-06\tAbsError: 2.49383e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.31311e-04\tAbsError: 8.38265e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.28213e-07\tAbsError: 2.18302e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.11615e-03\tAbsError: 1.08851e+12\n", - " Region: \"zone_1\"\tRelError: 5.30759e-03\tAbsError: 1.67972e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.30711e-03\tAbsError: 1.45981e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", - " Region: \"zone_3\"\tRelError: 1.80856e-03\tAbsError: 1.08851e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43945e-04\tAbsError: 2.92186e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.94756e-05\tAbsError: 7.96320e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.56466e-03\tAbsError: 1.47422e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.71729e-02\tAbsError: 5.98603e+12\n", - " Region: \"zone_1\"\tRelError: 9.52337e-04\tAbsError: 6.34742e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.50533e-04\tAbsError: 7.76974e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.80433e-06\tAbsError: 6.26972e-04\n", - " Region: \"zone_3\"\tRelError: 1.62206e-02\tAbsError: 5.98603e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.52054e-04\tAbsError: 2.22170e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.46515e-04\tAbsError: 3.76433e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.50202e-02\tAbsError: 7.87871e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.80433e-06\tAbsError: 6.26972e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.58310e-02\tAbsError: 8.39317e+12\n", - " Region: \"zone_1\"\tRelError: 6.31932e-02\tAbsError: 1.05953e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.31902e-02\tAbsError: 1.15729e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.01602e-06\tAbsError: 1.04796e-03\n", - " Region: \"zone_3\"\tRelError: 2.26378e-02\tAbsError: 8.39317e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.85729e-04\tAbsError: 3.23963e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.66097e-04\tAbsError: 5.15354e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.10829e-02\tAbsError: 1.17300e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.01602e-06\tAbsError: 1.04796e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.12260e-03\tAbsError: 2.61827e+11\n", - " Region: \"zone_1\"\tRelError: 2.35312e-04\tAbsError: 8.30379e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.35289e-04\tAbsError: 1.63368e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.33999e-08\tAbsError: 8.14042e-06\n", - " Region: \"zone_3\"\tRelError: 8.87286e-04\tAbsError: 2.61827e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54593e-05\tAbsError: 1.30676e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.53483e-05\tAbsError: 1.31151e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 8.56455e-04\tAbsError: 1.68252e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.34097e-08\tAbsError: 8.14375e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 7.74042e-04\tAbsError: 2.09517e+11\n", - " Region: \"zone_1\"\tRelError: 7.83547e-05\tAbsError: 6.01138e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 7.83378e-05\tAbsError: 1.34565e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.68927e-08\tAbsError: 5.87682e-06\n", - " Region: \"zone_3\"\tRelError: 6.95687e-04\tAbsError: 2.09517e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.25872e-05\tAbsError: 1.03107e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.24933e-05\tAbsError: 1.06409e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 6.70590e-04\tAbsError: 1.38390e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69000e-08\tAbsError: 5.87933e-06\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.59900e-03\tAbsError: 1.40711e+11\n", - " Region: \"zone_1\"\tRelError: 2.06948e-03\tAbsError: 6.41578e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06929e-03\tAbsError: 9.09489e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84503e-07\tAbsError: 6.40668e-05\n", - " Region: \"zone_3\"\tRelError: 5.29527e-04\tAbsError: 1.40711e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.39801e-06\tAbsError: 9.47438e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.30618e-06\tAbsError: 4.59674e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.12638e-04\tAbsError: 9.48359e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84568e-07\tAbsError: 6.40878e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.24434e-03\tAbsError: 3.91752e+11\n", - " Region: \"zone_1\"\tRelError: 7.67299e-05\tAbsError: 3.70354e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.56648e-05\tAbsError: 2.52102e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06512e-06\tAbsError: 3.70102e-04\n", - " Region: \"zone_3\"\tRelError: 1.16761e-03\tAbsError: 3.91752e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.51504e-05\tAbsError: 2.67283e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.33744e-05\tAbsError: 1.24469e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11802e-03\tAbsError: 2.65527e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06512e-06\tAbsError: 3.70104e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.66865e-02\tAbsError: 6.43390e+11\n", - " Region: \"zone_1\"\tRelError: 1.46089e-02\tAbsError: 4.93091e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46075e-02\tAbsError: 4.06773e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41798e-06\tAbsError: 4.92684e-04\n", - " Region: \"zone_3\"\tRelError: 2.07764e-03\tAbsError: 6.43390e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.90233e-05\tAbsError: 4.29245e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.79244e-05\tAbsError: 2.14145e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.99927e-03\tAbsError: 4.25329e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41801e-06\tAbsError: 4.92703e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.95239e-05\tAbsError: 7.21340e+09\n", - " Region: \"zone_1\"\tRelError: 1.93321e-05\tAbsError: 1.67318e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.92840e-05\tAbsError: 6.44594e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.81287e-08\tAbsError: 1.67253e-05\n", - " Region: \"zone_3\"\tRelError: 5.01918e-05\tAbsError: 7.21340e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.16012e-07\tAbsError: 2.75283e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.25510e-07\tAbsError: 4.46057e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 4.91021e-05\tAbsError: 6.58815e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.81495e-08\tAbsError: 1.67326e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.88635e-05\tAbsError: 4.66862e+09\n", - " Region: \"zone_1\"\tRelError: 4.12564e-06\tAbsError: 1.32768e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.08745e-06\tAbsError: 4.74361e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.81931e-08\tAbsError: 1.32720e-05\n", - " Region: \"zone_3\"\tRelError: 3.47379e-05\tAbsError: 4.66862e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.57140e-07\tAbsError: 1.44736e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.64945e-07\tAbsError: 3.22126e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.39776e-05\tAbsError: 4.85044e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.82079e-08\tAbsError: 1.32779e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:37\u001b[0m.\u001b[1;36m811\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: 0.65\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 6.84757e-04\tAbsError: 5.79872e+10\n", - " Region: \"zone_1\"\tRelError: 5.39232e-04\tAbsError: 6.69464e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.39213e-04\tAbsError: 4.49143e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91058e-08\tAbsError: 6.64972e-06\n", - " Region: \"zone_3\"\tRelError: 1.45525e-04\tAbsError: 5.79872e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.71562e-06\tAbsError: 2.34463e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.68397e-06\tAbsError: 3.45410e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.38106e-04\tAbsError: 4.56915e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91137e-08\tAbsError: 6.65261e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.27709e-03\tAbsError: 3.55210e+11\n", - " Region: \"zone_1\"\tRelError: 7.75140e-05\tAbsError: 7.68347e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 7.74925e-05\tAbsError: 2.05171e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.14878e-08\tAbsError: 7.47830e-06\n", - " Region: \"zone_3\"\tRelError: 1.19957e-03\tAbsError: 3.55210e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97584e-05\tAbsError: 1.77993e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.96259e-05\tAbsError: 1.77217e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16017e-03\tAbsError: 2.13005e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.14968e-08\tAbsError: 7.48159e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.28600e-02\tAbsError: 4.74877e+11\n", - " Region: \"zone_1\"\tRelError: 1.12352e-02\tAbsError: 1.84675e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12351e-02\tAbsError: 2.62164e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.23931e-08\tAbsError: 1.82053e-05\n", - " Region: \"zone_3\"\tRelError: 1.62483e-03\tAbsError: 4.74877e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52780e-05\tAbsError: 2.39181e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.51249e-05\tAbsError: 2.35695e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.57437e-03\tAbsError: 2.67665e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.23931e-08\tAbsError: 1.82053e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.20708e+01\tAbsError: 9.38375e+15\n", - " Region: \"zone_1\"\tRelError: 1.03034e+01\tAbsError: 4.29349e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03034e+01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.20208e-09\tAbsError: 1.11278e-06\n", - " Region: \"zone_3\"\tRelError: 1.76735e+00\tAbsError: 9.38375e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86030e-01\tAbsError: 4.95036e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.85888e-01\tAbsError: 4.43339e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.95437e-01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.20329e-09\tAbsError: 1.11320e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.02364e-04\tAbsError: 5.62247e+09\n", - " Region: \"zone_1\"\tRelError: 8.15379e-05\tAbsError: 3.03368e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.15291e-05\tAbsError: 3.57289e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.71937e-09\tAbsError: 3.03011e-06\n", - " Region: \"zone_3\"\tRelError: 2.08260e-05\tAbsError: 5.62247e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14319e-07\tAbsError: 4.05600e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.09034e-07\tAbsError: 1.56647e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.01939e-05\tAbsError: 3.71851e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.71944e-09\tAbsError: 3.03019e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 9.67016e-06\tAbsError: 5.74516e+09\n", - " Region: \"zone_1\"\tRelError: 6.60113e-07\tAbsError: 2.15591e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.98078e-07\tAbsError: 2.63279e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.20343e-08\tAbsError: 2.15565e-05\n", - " Region: \"zone_3\"\tRelError: 9.01005e-06\tAbsError: 5.74516e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.59313e-07\tAbsError: 5.10906e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.57242e-07\tAbsError: 6.36096e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 8.13143e-06\tAbsError: 2.71356e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.20615e-08\tAbsError: 2.15660e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.69643e-04\tAbsError: 1.47420e+10\n", - " Region: \"zone_1\"\tRelError: 1.45495e-04\tAbsError: 2.80955e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.45414e-04\tAbsError: 7.53367e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.08344e-08\tAbsError: 2.80880e-05\n", - " Region: \"zone_3\"\tRelError: 2.41485e-05\tAbsError: 1.47420e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.10279e-07\tAbsError: 1.16771e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.44925e-07\tAbsError: 3.06488e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.24124e-05\tAbsError: 7.88086e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.08691e-08\tAbsError: 2.81001e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:39\u001b[0m.\u001b[1;36m876\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.7\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:39\u001b[0m.\u001b[1;36m964\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:40\u001b[0m.\u001b[1;36m013\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.75 bias\u001b[0m \n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:40\u001b[0m.\u001b[1;36m060\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.75513e+00\tAbsError: 7.04878e+15\n", - " Region: \"zone_1\"\tRelError: 1.90080e-01\tAbsError: 7.81805e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.89950e-01\tAbsError: 3.31001e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29742e-04\tAbsError: 4.50804e-02\n", - " Region: \"zone_3\"\tRelError: 1.56505e+00\tAbsError: 7.04878e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67981e-01\tAbsError: 3.36624e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.39518e-01\tAbsError: 3.68255e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.57423e-01\tAbsError: 3.31002e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29742e-04\tAbsError: 4.50804e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.62671e-05\tAbsError: 3.10482e+09\n", - " Region: \"zone_1\"\tRelError: 3.66806e-05\tAbsError: 2.21724e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 3.66799e-05\tAbsError: 2.06476e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.31104e-10\tAbsError: 2.19659e-07\n", - " Region: \"zone_3\"\tRelError: 9.58659e-06\tAbsError: 3.10482e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88628e-07\tAbsError: 1.51765e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.86687e-07\tAbsError: 1.58718e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.21065e-06\tAbsError: 2.10348e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.31398e-10\tAbsError: 2.19764e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.08650e+01\tAbsError: 3.91395e+16\n", - " Region: \"zone_1\"\tRelError: 2.64221e+01\tAbsError: 7.53955e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.64221e+01\tAbsError: 7.53940e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.29236e-09\tAbsError: 1.49165e-06\n", - " Region: \"zone_3\"\tRelError: 3.44429e+01\tAbsError: 3.91395e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38671e+01\tAbsError: 2.06460e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.03435e+01\tAbsError: 1.84936e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.32357e-01\tAbsError: 7.53940e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.29383e-09\tAbsError: 1.49216e-06\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 8.80001e-04\tAbsError: 2.77064e+10\n", - " Region: \"zone_1\"\tRelError: 7.72213e-04\tAbsError: 7.92012e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 7.72211e-04\tAbsError: 1.37821e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.24149e-09\tAbsError: 7.78230e-07\n", - " Region: \"zone_3\"\tRelError: 1.07787e-04\tAbsError: 2.77064e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42447e-06\tAbsError: 1.54677e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.41534e-06\tAbsError: 1.22386e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04945e-04\tAbsError: 1.43316e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.24213e-09\tAbsError: 7.78437e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.11831e+01\tAbsError: 1.42484e+16\n", - " Region: \"zone_1\"\tRelError: 2.93524e+01\tAbsError: 4.47737e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.93524e+01\tAbsError: 4.47728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.83682e-09\tAbsError: 9.85742e-07\n", - " Region: \"zone_3\"\tRelError: 1.83065e+00\tAbsError: 1.42484e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.00155e-01\tAbsError: 7.24354e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.99947e-01\tAbsError: 7.00487e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.30545e-01\tAbsError: 4.47728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.83682e-09\tAbsError: 9.85743e-07\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.21630e+00\tAbsError: 5.18264e+15\n", - " Region: \"zone_1\"\tRelError: 1.31236e-01\tAbsError: 3.17671e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31218e-01\tAbsError: 2.57644e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72758e-05\tAbsError: 6.00278e-03\n", - " Region: \"zone_3\"\tRelError: 1.08506e+00\tAbsError: 5.18264e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.91482e-01\tAbsError: 2.47681e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.47298e-01\tAbsError: 2.70583e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46263e-01\tAbsError: 2.58377e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72758e-05\tAbsError: 6.00278e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 5.08889e-05\tAbsError: 7.24317e+08\n", - " Region: \"zone_1\"\tRelError: 4.50261e-05\tAbsError: 1.77627e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.50210e-05\tAbsError: 5.70798e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.11028e-09\tAbsError: 1.77570e-06\n", - " Region: \"zone_3\"\tRelError: 5.86272e-06\tAbsError: 7.24317e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.93674e-08\tAbsError: 3.18976e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.07369e-08\tAbsError: 4.05341e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 5.75751e-06\tAbsError: 5.85488e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.11142e-09\tAbsError: 1.77610e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.74440e+03\tAbsError: 9.91965e+15\n", - " Region: \"zone_1\"\tRelError: 1.07784e+00\tAbsError: 2.35444e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07737e+00\tAbsError: 7.09269e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73206e-04\tAbsError: 1.64517e-01\n", - " Region: \"zone_3\"\tRelError: 3.74333e+03\tAbsError: 9.91965e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.37749e+01\tAbsError: 5.01980e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.68934e+03\tAbsError: 4.89985e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06276e-01\tAbsError: 7.09271e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73206e-04\tAbsError: 1.64517e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 4.45723e+00\tAbsError: 1.63266e+16\n", - " Region: \"zone_1\"\tRelError: 2.81667e+00\tAbsError: 1.05674e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.81646e+00\tAbsError: 3.52793e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.02626e-04\tAbsError: 7.03945e-02\n", - " Region: \"zone_3\"\tRelError: 1.64056e+00\tAbsError: 1.63266e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91761e-01\tAbsError: 8.00317e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.61788e-01\tAbsError: 8.32341e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86811e-01\tAbsError: 3.52793e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.02626e-04\tAbsError: 7.03945e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:43\u001b[0m.\u001b[1;36m408\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:43\u001b[0m.\u001b[1;36m440\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.8 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:43\u001b[0m.\u001b[1;36m468\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 3\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 5.70365e-01\tAbsError: 1.98816e+15\n", - " Region: \"zone_1\"\tRelError: 1.29557e-01\tAbsError: 5.07227e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29446e-01\tAbsError: 1.22662e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10816e-04\tAbsError: 3.84565e-02\n", - " Region: \"zone_3\"\tRelError: 4.40808e-01\tAbsError: 1.98816e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.36802e-01\tAbsError: 1.06250e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.52219e-01\tAbsError: 9.25662e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.16747e-02\tAbsError: 1.22663e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11508e-04\tAbsError: 3.86954e-02\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 5.58930e+02\tAbsError: 7.27584e+15\n", - " Region: \"zone_1\"\tRelError: 7.93812e-01\tAbsError: 8.13553e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.93768e-01\tAbsError: 6.58787e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.45635e-05\tAbsError: 1.54766e-02\n", - " Region: \"zone_3\"\tRelError: 5.58137e+02\tAbsError: 7.27584e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.07952e+01\tAbsError: 2.69436e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.17061e+02\tAbsError: 4.58148e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.80139e-01\tAbsError: 6.58787e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.45635e-05\tAbsError: 1.54766e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.61395e+00\tAbsError: 1.26801e+16\n", - " Region: \"zone_1\"\tRelError: 4.05768e-01\tAbsError: 5.54621e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.05683e-01\tAbsError: 2.56990e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.56785e-05\tAbsError: 2.97631e-02\n", - " Region: \"zone_3\"\tRelError: 1.20818e+00\tAbsError: 1.26801e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.30811e-01\tAbsError: 6.31874e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.95490e-01\tAbsError: 6.36135e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81798e-01\tAbsError: 2.45098e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.57611e-05\tAbsError: 2.97924e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.85348e+01\tAbsError: 3.33183e+16\n", - " Region: \"zone_1\"\tRelError: 1.40835e+01\tAbsError: 7.25192e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40835e+01\tAbsError: 7.25190e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.06764e-10\tAbsError: 1.76108e-07\n", - " Region: \"zone_3\"\tRelError: 5.44513e+01\tAbsError: 3.33183e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.58563e+01\tAbsError: 1.83639e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.83884e+01\tAbsError: 1.49544e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06615e-01\tAbsError: 7.25190e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.06930e-10\tAbsError: 1.76171e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:44\u001b[0m.\u001b[1;36m695\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:44\u001b[0m.\u001b[1;36m731\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.85 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:44\u001b[0m.\u001b[1;36m763\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.63797e-01\tAbsError: 3.64765e+14\n", - " Region: \"zone_1\"\tRelError: 1.74354e-02\tAbsError: 3.39678e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.73383e-02\tAbsError: 2.51825e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.71283e-05\tAbsError: 3.37160e-02\n", - " Region: \"zone_3\"\tRelError: 1.46362e-01\tAbsError: 3.64765e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.05471e-02\tAbsError: 2.16352e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.33909e-02\tAbsError: 1.48413e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.23269e-02\tAbsError: 2.62821e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.71283e-05\tAbsError: 3.37160e-02\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 7.39784e+01\tAbsError: 4.25646e+14\n", - " Region: \"zone_1\"\tRelError: 1.20510e-01\tAbsError: 9.75069e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20403e-01\tAbsError: 6.01031e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.07573e-04\tAbsError: 3.74038e-02\n", - " Region: \"zone_3\"\tRelError: 7.38579e+01\tAbsError: 4.25646e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.71227e+01\tAbsError: 2.73214e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.66147e+01\tAbsError: 1.52432e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20428e-01\tAbsError: 6.01031e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.07573e-04\tAbsError: 3.74038e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 9.54736e-01\tAbsError: 5.35441e+15\n", - " Region: \"zone_1\"\tRelError: 3.96144e-01\tAbsError: 8.53966e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.95944e-01\tAbsError: 1.57805e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00443e-04\tAbsError: 6.96161e-02\n", - " Region: \"zone_3\"\tRelError: 5.58592e-01\tAbsError: 5.35441e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89869e-01\tAbsError: 2.68572e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.92706e-01\tAbsError: 2.66870e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.58172e-02\tAbsError: 1.57805e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00499e-04\tAbsError: 6.96306e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.06708e+01\tAbsError: 6.27680e+16\n", - " Region: \"zone_1\"\tRelError: 4.86663e+01\tAbsError: 7.79816e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.86663e+01\tAbsError: 7.79815e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.55907e-10\tAbsError: 1.58416e-07\n", - " Region: \"zone_3\"\tRelError: 3.20045e+01\tAbsError: 6.27680e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.14175e+01\tAbsError: 3.43987e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.03250e+01\tAbsError: 2.83694e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.62020e-01\tAbsError: 7.79815e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.56011e-10\tAbsError: 1.58453e-07\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 5.86885e+02\tAbsError: 3.75531e+15\n", - " Region: \"zone_1\"\tRelError: 2.91550e-01\tAbsError: 1.88467e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.91202e-01\tAbsError: 6.76847e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.47432e-04\tAbsError: 1.20783e-01\n", - " Region: \"zone_3\"\tRelError: 5.86593e+02\tAbsError: 3.75531e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.80952e+01\tAbsError: 1.94186e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.58338e+02\tAbsError: 1.81345e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.59709e-01\tAbsError: 6.76849e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.47432e-04\tAbsError: 1.20783e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.80286e-02\tAbsError: 1.80043e+13\n", - " Region: \"zone_1\"\tRelError: 5.97130e-03\tAbsError: 5.99908e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.96961e-03\tAbsError: 1.31746e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.68890e-06\tAbsError: 5.86733e-04\n", - " Region: \"zone_3\"\tRelError: 5.20573e-02\tAbsError: 1.80043e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.22256e-03\tAbsError: 7.89900e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.11166e-03\tAbsError: 1.01053e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.97214e-02\tAbsError: 1.37677e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.68890e-06\tAbsError: 5.86733e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.88537e+02\tAbsError: 5.54056e+14\n", - " Region: \"zone_1\"\tRelError: 9.55706e-02\tAbsError: 5.68586e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.55607e-02\tAbsError: 5.34036e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.94226e-06\tAbsError: 3.45499e-03\n", - " Region: \"zone_3\"\tRelError: 2.88441e+02\tAbsError: 5.54056e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01149e+02\tAbsError: 4.03929e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.87196e+02\tAbsError: 1.50127e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.56736e-02\tAbsError: 5.34036e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.94326e-06\tAbsError: 3.45537e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 3.44525e-01\tAbsError: 1.06041e+15\n", - " Region: \"zone_1\"\tRelError: 9.75460e-02\tAbsError: 7.81452e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.73221e-02\tAbsError: 4.45656e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.23905e-04\tAbsError: 7.76995e-02\n", - " Region: \"zone_3\"\tRelError: 2.46979e-01\tAbsError: 1.06041e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.07506e-02\tAbsError: 5.91244e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.56972e-02\tAbsError: 4.69170e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.30307e-01\tAbsError: 4.58663e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.23905e-04\tAbsError: 7.76995e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 6.64004e+02\tAbsError: 3.19562e+16\n", - " Region: \"zone_1\"\tRelError: 1.02711e+01\tAbsError: 3.71341e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02703e+01\tAbsError: 7.38247e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.55520e-04\tAbsError: 2.97517e-01\n", - " Region: \"zone_3\"\tRelError: 6.53733e+02\tAbsError: 3.19562e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97454e+01\tAbsError: 1.62663e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.33455e+02\tAbsError: 1.56900e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 5.31683e-01\tAbsError: 7.38249e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.55520e-04\tAbsError: 2.97517e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.19464e+02\tAbsError: 4.04524e+15\n", - " Region: \"zone_1\"\tRelError: 4.46837e-01\tAbsError: 1.06447e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.46710e-01\tAbsError: 6.21780e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27338e-04\tAbsError: 4.42687e-02\n", - " Region: \"zone_3\"\tRelError: 9.19017e+02\tAbsError: 4.04524e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.57418e+01\tAbsError: 2.06871e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.03094e+02\tAbsError: 1.97653e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.80848e-01\tAbsError: 6.21780e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27373e-04\tAbsError: 4.42827e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.25730e-04\tAbsError: 4.09198e+11\n", - " Region: \"zone_1\"\tRelError: 8.09639e-05\tAbsError: 1.05680e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.79223e-05\tAbsError: 2.31215e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.04151e-06\tAbsError: 1.05657e-03\n", - " Region: \"zone_3\"\tRelError: 6.44766e-04\tAbsError: 4.09198e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.69437e-05\tAbsError: 3.66831e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.46261e-05\tAbsError: 4.23676e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 6.00155e-04\tAbsError: 2.35772e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.04158e-06\tAbsError: 1.05661e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.61612e+04\tAbsError: 1.37906e+14\n", - " Region: \"zone_1\"\tRelError: 7.41751e-02\tAbsError: 5.38905e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.41510e-02\tAbsError: 4.55245e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.40596e-05\tAbsError: 8.36596e-03\n", - " Region: \"zone_3\"\tRelError: 4.61611e+04\tAbsError: 1.37906e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.25911e+04\tAbsError: 9.87600e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.56996e+03\tAbsError: 3.91463e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.43675e-02\tAbsError: 4.55246e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.40596e-05\tAbsError: 8.36596e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.36002e-01\tAbsError: 6.07978e+13\n", - " Region: \"zone_1\"\tRelError: 6.95111e-02\tAbsError: 9.25006e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.95086e-02\tAbsError: 2.72112e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.58714e-06\tAbsError: 8.97795e-04\n", - " Region: \"zone_3\"\tRelError: 1.66491e-01\tAbsError: 6.07978e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38802e-03\tAbsError: 2.95297e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.19525e-03\tAbsError: 3.12681e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.61905e-01\tAbsError: 2.72112e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.58878e-06\tAbsError: 8.98338e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 3.77528e+02\tAbsError: 1.23430e+16\n", - " Region: \"zone_1\"\tRelError: 1.29894e+00\tAbsError: 1.91163e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29859e+00\tAbsError: 6.91599e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.50937e-04\tAbsError: 1.22003e-01\n", - " Region: \"zone_3\"\tRelError: 3.76229e+02\tAbsError: 1.23430e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27510e+02\tAbsError: 2.69801e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.48205e+02\tAbsError: 9.64500e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.13796e-01\tAbsError: 6.91599e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.50937e-04\tAbsError: 1.22003e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 8.02047e+01\tAbsError: 4.76727e+14\n", - " Region: \"zone_1\"\tRelError: 1.04826e-01\tAbsError: 8.34367e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04746e-01\tAbsError: 5.58213e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.94195e-05\tAbsError: 2.76154e-02\n", - " Region: \"zone_3\"\tRelError: 8.00998e+01\tAbsError: 4.76727e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.85718e+01\tAbsError: 3.07028e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.14232e+01\tAbsError: 1.69700e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04769e-01\tAbsError: 5.58213e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.94195e-05\tAbsError: 2.76154e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.50762e-03\tAbsError: 1.02667e+12\n", - " Region: \"zone_1\"\tRelError: 4.77667e-04\tAbsError: 4.19184e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.77548e-04\tAbsError: 5.13940e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19272e-07\tAbsError: 4.14045e-05\n", - " Region: \"zone_3\"\tRelError: 4.02995e-03\tAbsError: 1.02667e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.92271e-05\tAbsError: 5.17713e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.89991e-05\tAbsError: 5.08953e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.93161e-03\tAbsError: 5.31847e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19272e-07\tAbsError: 4.14045e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.46711e+02\tAbsError: 5.06500e+13\n", - " Region: \"zone_1\"\tRelError: 5.45390e-02\tAbsError: 3.77284e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.45345e-02\tAbsError: 3.61717e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.48202e-06\tAbsError: 1.55673e-03\n", - " Region: \"zone_3\"\tRelError: 1.46656e+02\tAbsError: 5.06500e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.45480e+02\tAbsError: 2.85847e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.12174e+00\tAbsError: 2.20653e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.48383e-02\tAbsError: 3.61718e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.48202e-06\tAbsError: 1.55673e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.92621e+03\tAbsError: 3.52155e+15\n", - " Region: \"zone_1\"\tRelError: 3.93767e-01\tAbsError: 1.13500e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.93624e-01\tAbsError: 6.38659e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42910e-04\tAbsError: 4.96339e-02\n", - " Region: \"zone_3\"\tRelError: 1.92581e+03\tAbsError: 3.52155e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17500e+01\tAbsError: 2.11357e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.86377e+03\tAbsError: 1.40799e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.90752e-01\tAbsError: 6.38659e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42910e-04\tAbsError: 4.96339e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.46362e-03\tAbsError: 8.86968e+11\n", - " Region: \"zone_1\"\tRelError: 6.90137e-04\tAbsError: 2.34211e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.83394e-04\tAbsError: 6.31008e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.74299e-06\tAbsError: 2.34148e-03\n", - " Region: \"zone_3\"\tRelError: 1.77348e-03\tAbsError: 8.86968e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.15266e-05\tAbsError: 4.91411e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.00836e-05\tAbsError: 3.95557e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.70513e-03\tAbsError: 6.41498e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.74370e-06\tAbsError: 2.34177e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.92390e+03\tAbsError: 8.33185e+13\n", - " Region: \"zone_1\"\tRelError: 8.16755e-02\tAbsError: 4.91163e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.16734e-02\tAbsError: 4.83794e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.11914e-06\tAbsError: 7.36892e-04\n", - " Region: \"zone_3\"\tRelError: 6.92382e+03\tAbsError: 8.33185e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.79886e+03\tAbsError: 3.08110e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.24871e+02\tAbsError: 5.25076e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.18178e-02\tAbsError: 4.83795e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.11914e-06\tAbsError: 7.36892e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.87878e-04\tAbsError: 3.71113e+10\n", - " Region: \"zone_1\"\tRelError: 3.08061e-05\tAbsError: 6.36156e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.06230e-05\tAbsError: 2.65699e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83040e-07\tAbsError: 6.35890e-05\n", - " Region: \"zone_3\"\tRelError: 2.57072e-04\tAbsError: 3.71113e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17303e-06\tAbsError: 1.49809e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.20928e-06\tAbsError: 2.21304e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.52507e-04\tAbsError: 2.72049e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83108e-07\tAbsError: 6.36126e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.26686e+00\tAbsError: 1.15324e+13\n", - " Region: \"zone_1\"\tRelError: 4.20255e-02\tAbsError: 2.90045e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.20165e-02\tAbsError: 2.58850e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.98143e-06\tAbsError: 3.11954e-03\n", - " Region: \"zone_3\"\tRelError: 1.22484e+00\tAbsError: 1.15324e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99994e-01\tAbsError: 7.07820e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.82489e-01\tAbsError: 4.45424e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.23455e-02\tAbsError: 2.58807e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.98143e-06\tAbsError: 3.11954e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 4.93407e+02\tAbsError: 4.86622e+14\n", - " Region: \"zone_1\"\tRelError: 1.09282e-01\tAbsError: 8.57972e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09202e-01\tAbsError: 5.77790e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.05790e-05\tAbsError: 2.80182e-02\n", - " Region: \"zone_3\"\tRelError: 4.93298e+02\tAbsError: 4.86622e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07506e+02\tAbsError: 1.60245e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.85683e+02\tAbsError: 3.26377e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09279e-01\tAbsError: 5.77791e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.05790e-05\tAbsError: 2.80182e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.80479e-02\tAbsError: 2.50346e+12\n", - " Region: \"zone_1\"\tRelError: 5.40374e-03\tAbsError: 1.30048e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.40337e-03\tAbsError: 1.04735e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.71722e-07\tAbsError: 1.29001e-04\n", - " Region: \"zone_3\"\tRelError: 1.26441e-02\tAbsError: 2.50346e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.73060e-05\tAbsError: 1.25473e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.65146e-05\tAbsError: 1.24873e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.24499e-02\tAbsError: 1.06992e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.71735e-07\tAbsError: 1.29002e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.47740e+03\tAbsError: 2.32331e+13\n", - " Region: \"zone_1\"\tRelError: 6.14540e-02\tAbsError: 4.24419e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.14457e-02\tAbsError: 3.95640e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.28570e-06\tAbsError: 2.87786e-03\n", - " Region: \"zone_3\"\tRelError: 3.47734e+03\tAbsError: 2.32331e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.47473e+03\tAbsError: 7.88349e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.54397e+00\tAbsError: 1.53496e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.16827e-02\tAbsError: 3.95641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.28570e-06\tAbsError: 2.87786e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 3.15874e-04\tAbsError: 6.29995e+10\n", - " Region: \"zone_1\"\tRelError: 3.36655e-05\tAbsError: 6.22152e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.36476e-05\tAbsError: 2.89646e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.78252e-08\tAbsError: 6.19255e-06\n", - " Region: \"zone_3\"\tRelError: 2.82208e-04\tAbsError: 6.29995e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.92738e-06\tAbsError: 3.54342e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.90850e-06\tAbsError: 2.75653e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.76354e-04\tAbsError: 2.97673e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.78310e-08\tAbsError: 6.19458e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.49568e+06\tAbsError: 2.62728e+12\n", - " Region: \"zone_1\"\tRelError: 2.30462e-02\tAbsError: 2.12762e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.30351e-02\tAbsError: 1.74104e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11298e-05\tAbsError: 3.86578e-03\n", - " Region: \"zone_3\"\tRelError: 1.49568e+06\tAbsError: 2.62728e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49568e+06\tAbsError: 1.23253e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.03928e-02\tAbsError: 1.39475e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.34298e-02\tAbsError: 1.74105e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11298e-05\tAbsError: 3.86578e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.25727e+02\tAbsError: 4.16178e+14\n", - " Region: \"zone_1\"\tRelError: 8.59757e-02\tAbsError: 5.54955e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.59618e-02\tAbsError: 5.06821e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.38444e-05\tAbsError: 4.81334e-03\n", - " Region: \"zone_3\"\tRelError: 4.25641e+02\tAbsError: 4.16178e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.19904e+02\tAbsError: 2.66373e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.65014e+00\tAbsError: 1.49805e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.62548e-02\tAbsError: 5.06822e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.38449e-05\tAbsError: 4.81369e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.45380e-03\tAbsError: 1.53142e+11\n", - " Region: \"zone_1\"\tRelError: 4.36448e-04\tAbsError: 1.39694e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.36046e-04\tAbsError: 7.04413e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.02062e-07\tAbsError: 1.39623e-04\n", - " Region: \"zone_3\"\tRelError: 1.01735e-03\tAbsError: 1.53142e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.93160e-06\tAbsError: 7.62931e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.97976e-06\tAbsError: 7.68486e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00504e-03\tAbsError: 7.23938e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.02172e-07\tAbsError: 1.39662e-04\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.92670e-05\tAbsError: 5.95028e+09\n", - " Region: \"zone_1\"\tRelError: 4.20495e-06\tAbsError: 4.23098e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.19278e-06\tAbsError: 3.10942e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.21699e-08\tAbsError: 4.22787e-06\n", - " Region: \"zone_3\"\tRelError: 3.50620e-05\tAbsError: 5.95028e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.01282e-07\tAbsError: 3.34784e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.02333e-07\tAbsError: 2.60243e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.44462e-05\tAbsError: 3.17149e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.21718e-08\tAbsError: 4.22856e-06\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.23060e+03\tAbsError: 1.13927e+13\n", - " Region: \"zone_1\"\tRelError: 4.39038e-02\tAbsError: 3.18697e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.38959e-02\tAbsError: 2.91306e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.88625e-06\tAbsError: 2.73914e-03\n", - " Region: \"zone_3\"\tRelError: 2.23056e+03\tAbsError: 1.13927e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.23014e+03\tAbsError: 6.81734e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.75883e-01\tAbsError: 4.57539e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.44473e-02\tAbsError: 2.91306e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.88625e-06\tAbsError: 2.73914e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.00227e+00\tAbsError: 2.54667e+12\n", - " Region: \"zone_1\"\tRelError: 1.21369e-04\tAbsError: 6.00683e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04100e-04\tAbsError: 8.81970e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72683e-05\tAbsError: 5.99801e-03\n", - " Region: \"zone_3\"\tRelError: 1.00214e+00\tAbsError: 2.54667e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99998e-01\tAbsError: 8.50699e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.16160e-03\tAbsError: 1.69597e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 9.67964e-04\tAbsError: 9.25856e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72683e-05\tAbsError: 5.99801e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.47587e+03\tAbsError: 1.37021e+14\n", - " Region: \"zone_1\"\tRelError: 6.58552e-02\tAbsError: 4.40073e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.58503e-02\tAbsError: 4.22991e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.91268e-06\tAbsError: 1.70821e-03\n", - " Region: \"zone_3\"\tRelError: 1.47580e+03\tAbsError: 1.37021e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.37201e+03\tAbsError: 9.48995e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03732e+02\tAbsError: 4.21217e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.61976e-02\tAbsError: 4.22992e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.91268e-06\tAbsError: 1.70821e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.24475e-03\tAbsError: 1.53017e+11\n", - " Region: \"zone_1\"\tRelError: 3.73962e-04\tAbsError: 1.57755e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.73917e-04\tAbsError: 5.81035e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.52602e-08\tAbsError: 1.57174e-05\n", - " Region: \"zone_3\"\tRelError: 8.70784e-04\tAbsError: 1.53017e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.73394e-06\tAbsError: 7.95928e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.67445e-06\tAbsError: 7.34246e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 8.59331e-04\tAbsError: 6.03244e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.52710e-08\tAbsError: 1.57212e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.11435e+00\tAbsError: 2.56027e+12\n", - " Region: \"zone_1\"\tRelError: 3.31148e-02\tAbsError: 2.80077e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.31053e-02\tAbsError: 2.47258e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.44895e-06\tAbsError: 3.28195e-03\n", - " Region: \"zone_3\"\tRelError: 1.08123e+00\tAbsError: 2.56027e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99686e-01\tAbsError: 1.22484e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.79624e-02\tAbsError: 1.33543e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.35769e-02\tAbsError: 2.47260e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.44895e-06\tAbsError: 3.28195e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 7.30356e-03\tAbsError: 3.16323e+12\n", - " Region: \"zone_1\"\tRelError: 7.06000e-04\tAbsError: 8.08571e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.05779e-04\tAbsError: 3.89462e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.21331e-07\tAbsError: 7.69624e-05\n", - " Region: \"zone_3\"\tRelError: 6.59756e-03\tAbsError: 3.16323e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.65369e-04\tAbsError: 9.98710e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.29064e-04\tAbsError: 2.16452e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.80290e-03\tAbsError: 3.94132e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.21331e-07\tAbsError: 7.69624e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.70866e-04\tAbsError: 1.74039e+10\n", - " Region: \"zone_1\"\tRelError: 5.14065e-05\tAbsError: 9.22102e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.13801e-05\tAbsError: 7.07909e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.64848e-08\tAbsError: 9.21394e-06\n", - " Region: \"zone_3\"\tRelError: 1.19459e-04\tAbsError: 1.74039e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.74477e-07\tAbsError: 8.71301e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.73252e-07\tAbsError: 8.69090e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18085e-04\tAbsError: 7.35517e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.64949e-08\tAbsError: 9.21749e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:55\u001b[0m.\u001b[1;36m243\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.08407e+00\tAbsError: 2.56590e+13\n", - " Region: \"zone_1\"\tRelError: 4.70180e-02\tAbsError: 3.66279e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.70057e-02\tAbsError: 3.23496e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.23179e-05\tAbsError: 4.27834e-03\n", - " Region: \"zone_3\"\tRelError: 2.03705e+00\tAbsError: 2.56590e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.97938e-01\tAbsError: 1.32544e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.91702e-01\tAbsError: 1.24046e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.74027e-02\tAbsError: 3.23497e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.23179e-05\tAbsError: 4.27834e-03\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:55\u001b[0m.\u001b[1;36m288\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.9 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:55\u001b[0m.\u001b[1;36m340\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 7.92908e-01\tAbsError: 1.90893e+12\n", - " Region: \"zone_1\"\tRelError: 7.45423e-05\tAbsError: 6.94713e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.45496e-05\tAbsError: 2.82529e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.99927e-05\tAbsError: 6.94431e-03\n", - " Region: \"zone_3\"\tRelError: 7.92833e-01\tAbsError: 1.90893e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.92004e-01\tAbsError: 5.67421e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.73647e-04\tAbsError: 1.34151e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52663e-05\tAbsError: 2.88056e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.99927e-05\tAbsError: 6.94431e-03\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 5.00128e-04\tAbsError: 6.52866e+10\n", - " Region: \"zone_1\"\tRelError: 5.30193e-05\tAbsError: 2.05211e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.24288e-05\tAbsError: 6.99366e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.90586e-07\tAbsError: 2.05141e-04\n", - " Region: \"zone_3\"\tRelError: 4.47108e-04\tAbsError: 6.52866e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.25702e-05\tAbsError: 2.98698e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03058e-05\tAbsError: 3.54167e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.23642e-04\tAbsError: 7.09351e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.90608e-07\tAbsError: 2.05151e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.44361e+01\tAbsError: 1.41106e+17\n", - " Region: \"zone_1\"\tRelError: 6.61097e+01\tAbsError: 8.03344e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.61097e+01\tAbsError: 8.03338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83834e-09\tAbsError: 6.38649e-07\n", - " Region: \"zone_3\"\tRelError: 1.83264e+01\tAbsError: 1.41106e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 7.30985e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 6.80079e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.26430e-01\tAbsError: 8.03338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83857e-09\tAbsError: 6.38730e-07\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 8.65993e-05\tAbsError: 1.01653e+10\n", - " Region: \"zone_1\"\tRelError: 2.60547e-05\tAbsError: 1.49793e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.60504e-05\tAbsError: 3.97229e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.29429e-09\tAbsError: 1.49396e-06\n", - " Region: \"zone_3\"\tRelError: 6.05446e-05\tAbsError: 1.01653e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.70719e-07\tAbsError: 5.41900e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.66709e-07\tAbsError: 4.74632e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 5.98029e-05\tAbsError: 4.11440e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.29592e-09\tAbsError: 1.49454e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.30668e+04\tAbsError: 7.46291e+12\n", - " Region: \"zone_1\"\tRelError: 3.83242e-02\tAbsError: 2.95562e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.83134e-02\tAbsError: 2.58125e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.07783e-05\tAbsError: 3.74364e-03\n", - " Region: \"zone_3\"\tRelError: 6.30668e+04\tAbsError: 7.46291e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.30664e+04\tAbsError: 3.45167e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.28904e-01\tAbsError: 4.01125e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.90005e-02\tAbsError: 2.57582e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.07783e-05\tAbsError: 3.74364e-03\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 6.28603e-04\tAbsError: 1.99882e+11\n", - " Region: \"zone_1\"\tRelError: 6.39992e-05\tAbsError: 1.73295e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.39498e-05\tAbsError: 1.52893e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.93979e-08\tAbsError: 1.71766e-05\n", - " Region: \"zone_3\"\tRelError: 5.64604e-04\tAbsError: 1.99882e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04492e-05\tAbsError: 9.24222e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.03161e-05\tAbsError: 1.07460e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.23789e-04\tAbsError: 1.55021e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.94093e-08\tAbsError: 1.71812e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 8.76682e-03\tAbsError: 3.66905e+12\n", - " Region: \"zone_1\"\tRelError: 8.36399e-04\tAbsError: 1.31358e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 8.36034e-04\tAbsError: 4.50885e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.64798e-07\tAbsError: 1.26849e-04\n", - " Region: \"zone_3\"\tRelError: 7.93042e-03\tAbsError: 3.66905e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.57300e-04\tAbsError: 1.17649e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.01683e-04\tAbsError: 2.49256e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 6.87107e-03\tAbsError: 4.56272e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.64798e-07\tAbsError: 1.26849e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 8.37365e+01\tAbsError: 7.67421e+16\n", - " Region: \"zone_1\"\tRelError: 4.53781e+00\tAbsError: 5.57061e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.53643e+00\tAbsError: 7.64430e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.38154e-03\tAbsError: 4.80618e-01\n", - " Region: \"zone_3\"\tRelError: 7.91987e+01\tAbsError: 7.67421e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 4.02016e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.82528e+01\tAbsError: 3.65405e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.94456e+00\tAbsError: 7.64430e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.38154e-03\tAbsError: 4.80618e-01\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 7.78051e-05\tAbsError: 1.62693e+10\n", - " Region: \"zone_1\"\tRelError: 8.16648e-06\tAbsError: 1.33984e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 8.12799e-06\tAbsError: 1.21676e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.84977e-08\tAbsError: 1.33863e-05\n", - " Region: \"zone_3\"\tRelError: 6.96386e-05\tAbsError: 1.62693e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.72931e-06\tAbsError: 8.65618e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.72298e-06\tAbsError: 7.61314e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 6.61478e-05\tAbsError: 1.23316e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.85089e-08\tAbsError: 1.33905e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.03853e+00\tAbsError: 3.18028e+12\n", - " Region: \"zone_1\"\tRelError: 1.44918e-02\tAbsError: 1.58284e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.44785e-02\tAbsError: 1.11984e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.33301e-05\tAbsError: 4.63001e-03\n", - " Region: \"zone_3\"\tRelError: 1.02404e+00\tAbsError: 3.18028e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99981e-01\tAbsError: 1.55439e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.22099e-03\tAbsError: 1.62589e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.48224e-02\tAbsError: 1.11985e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.33301e-05\tAbsError: 4.63001e-03\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:58\u001b[0m.\u001b[1;36m093\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:58\u001b[0m.\u001b[1;36m093\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.20833333333333334\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 10\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 6.96843e-04\tAbsError: 1.13577e+11\n", - " Region: \"zone_1\"\tRelError: 7.40041e-05\tAbsError: 2.40654e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.33116e-05\tAbsError: 1.09664e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.92510e-07\tAbsError: 2.40545e-04\n", - " Region: \"zone_3\"\tRelError: 6.22838e-04\tAbsError: 1.13577e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.45499e-05\tAbsError: 5.24533e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.37560e-05\tAbsError: 6.11233e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.93840e-04\tAbsError: 1.11237e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.92510e-07\tAbsError: 2.40545e-04\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:58\u001b[0m.\u001b[1;36m844\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:58\u001b[0m.\u001b[1;36m875\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.95 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:25:58\u001b[0m.\u001b[1;36m905\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 4.67971e+03\tAbsError: 3.01461e+16\n", - " Region: \"zone_1\"\tRelError: 4.04216e+01\tAbsError: 2.77713e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.04210e+01\tAbsError: 7.21037e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.91375e-04\tAbsError: 2.05609e-01\n", - " Region: \"zone_3\"\tRelError: 4.63929e+03\tAbsError: 3.01461e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.26446e+03\tAbsError: 1.32531e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.37410e+03\tAbsError: 1.68930e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 7.25285e-01\tAbsError: 7.21037e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.91375e-04\tAbsError: 2.05609e-01\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.78033e-01\tAbsError: 3.70628e+12\n", - " Region: \"zone_1\"\tRelError: 2.47988e-04\tAbsError: 5.43708e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.32390e-04\tAbsError: 1.92962e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.55978e-05\tAbsError: 5.41778e-03\n", - " Region: \"zone_3\"\tRelError: 3.77785e-01\tAbsError: 3.70628e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.74214e-01\tAbsError: 1.32572e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.40773e-03\tAbsError: 2.38056e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.14798e-03\tAbsError: 1.94593e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.55978e-05\tAbsError: 5.41778e-03\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 7.47471e-04\tAbsError: 2.34931e+11\n", - " Region: \"zone_1\"\tRelError: 7.61699e-05\tAbsError: 2.26699e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.61052e-05\tAbsError: 1.79159e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.46815e-08\tAbsError: 2.24908e-05\n", - " Region: \"zone_3\"\tRelError: 6.71301e-04\tAbsError: 2.34931e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.40726e-05\tAbsError: 1.09456e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.39157e-05\tAbsError: 1.25476e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 6.23248e-04\tAbsError: 1.81660e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.46979e-08\tAbsError: 2.24974e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.26592e+01\tAbsError: 9.07666e+15\n", - " Region: \"zone_1\"\tRelError: 6.10008e+01\tAbsError: 4.26161e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.10008e+01\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.53966e-09\tAbsError: 1.92633e-06\n", - " Region: \"zone_3\"\tRelError: 1.65838e+00\tAbsError: 9.07666e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83421e-01\tAbsError: 5.02255e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83353e-01\tAbsError: 4.05411e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.16036e-02\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.54116e-09\tAbsError: 1.92686e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.45051e+02\tAbsError: 3.22525e+17\n", - " Region: \"zone_1\"\tRelError: 6.54094e+01\tAbsError: 8.24908e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.54094e+01\tAbsError: 8.24901e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.85102e-09\tAbsError: 6.43964e-07\n", - " Region: \"zone_3\"\tRelError: 7.96416e+01\tAbsError: 3.22525e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.35911e+01\tAbsError: 1.62303e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.52689e+01\tAbsError: 1.60222e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 7.81616e-01\tAbsError: 8.24901e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.85177e-09\tAbsError: 6.44234e-07\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 6.72475e-03\tAbsError: 2.85913e+12\n", - " Region: \"zone_1\"\tRelError: 6.31779e-04\tAbsError: 3.90493e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.31676e-04\tAbsError: 3.51587e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.02188e-07\tAbsError: 3.55335e-05\n", - " Region: \"zone_3\"\tRelError: 6.09297e-03\tAbsError: 2.85913e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.08369e-04\tAbsError: 9.02566e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.89143e-04\tAbsError: 1.95656e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.19536e-03\tAbsError: 3.55808e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.02188e-07\tAbsError: 3.55335e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.67873e+03\tAbsError: 1.05528e+16\n", - " Region: \"zone_1\"\tRelError: 1.00757e+00\tAbsError: 1.20375e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00742e+00\tAbsError: 6.72143e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52930e-04\tAbsError: 5.31609e-02\n", - " Region: \"zone_3\"\tRelError: 5.67772e+03\tAbsError: 1.05528e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.39587e+01\tAbsError: 5.79006e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.64342e+03\tAbsError: 4.76271e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 3.37998e-01\tAbsError: 6.72143e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52930e-04\tAbsError: 5.31609e-02\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 9.96706e-05\tAbsError: 2.13761e+10\n", - " Region: \"zone_1\"\tRelError: 1.04456e-05\tAbsError: 1.59397e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03998e-05\tAbsError: 1.57890e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.57957e-08\tAbsError: 1.59239e-05\n", - " Region: \"zone_3\"\tRelError: 8.92250e-05\tAbsError: 2.13761e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.25511e-06\tAbsError: 1.14120e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.24614e-06\tAbsError: 9.96404e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 8.46780e-05\tAbsError: 1.60006e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.58100e-08\tAbsError: 1.59294e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:00\u001b[0m.\u001b[1;36m602\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.2\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.27969e+00\tAbsError: 3.48721e+14\n", - " Region: \"zone_1\"\tRelError: 1.79507e+00\tAbsError: 9.78465e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.79489e+00\tAbsError: 3.27224e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.87321e-04\tAbsError: 6.51242e-02\n", - " Region: \"zone_3\"\tRelError: 1.48462e+00\tAbsError: 3.48721e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.62890e-01\tAbsError: 1.71311e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.57486e-01\tAbsError: 1.77410e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.40543e-02\tAbsError: 3.27228e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.87321e-04\tAbsError: 6.51242e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.82544e+01\tAbsError: 2.10291e+17\n", - " Region: \"zone_1\"\tRelError: 1.04168e+01\tAbsError: 4.87343e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04157e+01\tAbsError: 7.88298e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.17496e-03\tAbsError: 4.08513e-01\n", - " Region: \"zone_3\"\tRelError: 2.78375e+01\tAbsError: 2.10291e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.09352e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.29716e+01\tAbsError: 1.00939e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 5.86472e+00\tAbsError: 7.88298e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.17496e-03\tAbsError: 4.08513e-01\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 3.44573e-04\tAbsError: 2.22312e+10\n", - " Region: \"zone_1\"\tRelError: 3.62300e-05\tAbsError: 1.83529e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.57017e-05\tAbsError: 3.53910e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.28265e-07\tAbsError: 1.83494e-04\n", - " Region: \"zone_3\"\tRelError: 3.08343e-04\tAbsError: 2.22312e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13840e-05\tAbsError: 9.98484e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.35525e-06\tAbsError: 1.22464e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.87075e-04\tAbsError: 3.58808e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.28288e-07\tAbsError: 1.83504e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.34034e+03\tAbsError: 1.20343e+15\n", - " Region: \"zone_1\"\tRelError: 1.22444e-01\tAbsError: 1.58781e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.22165e-01\tAbsError: 6.16386e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.79375e-04\tAbsError: 9.71428e-02\n", - " Region: \"zone_3\"\tRelError: 1.34022e+03\tAbsError: 1.20343e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.83041e+02\tAbsError: 6.78262e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.57032e+02\tAbsError: 5.25172e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46551e-01\tAbsError: 6.16387e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.79375e-04\tAbsError: 9.71428e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.15185e+01\tAbsError: 8.37846e+15\n", - " Region: \"zone_1\"\tRelError: 9.89193e+00\tAbsError: 4.09567e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.89193e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.96045e-09\tAbsError: 2.42039e-06\n", - " Region: \"zone_3\"\tRelError: 1.62652e+00\tAbsError: 8.37846e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69532e-01\tAbsError: 4.63620e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69461e-01\tAbsError: 3.74226e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.75319e-02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.96229e-09\tAbsError: 2.42104e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.29078e+00\tAbsError: 4.47109e+13\n", - " Region: \"zone_1\"\tRelError: 2.42382e-01\tAbsError: 3.11434e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.42367e-01\tAbsError: 2.58832e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.51300e-05\tAbsError: 5.26019e-03\n", - " Region: \"zone_3\"\tRelError: 1.04840e+00\tAbsError: 4.47109e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.78941e-01\tAbsError: 3.21718e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.51761e-01\tAbsError: 1.25392e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17681e-01\tAbsError: 2.58952e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.51300e-05\tAbsError: 5.26019e-03\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 5.57184e-04\tAbsError: 1.78594e+11\n", - " Region: \"zone_1\"\tRelError: 5.66836e-05\tAbsError: 1.33048e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.66457e-05\tAbsError: 1.36613e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.78695e-08\tAbsError: 1.31682e-05\n", - " Region: \"zone_3\"\tRelError: 5.00501e-04\tAbsError: 1.78594e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.82685e-05\tAbsError: 8.24428e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.81485e-05\tAbsError: 9.61515e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.64046e-04\tAbsError: 1.38512e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.78774e-08\tAbsError: 1.31711e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 6.93966e+02\tAbsError: 8.18852e+16\n", - " Region: \"zone_1\"\tRelError: 1.61185e+01\tAbsError: 4.86099e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.61173e+01\tAbsError: 7.47713e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18190e-03\tAbsError: 4.11328e-01\n", - " Region: \"zone_3\"\tRelError: 6.77847e+02\tAbsError: 8.18852e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.08584e+02\tAbsError: 4.73922e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.68793e+02\tAbsError: 3.44930e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.68594e-01\tAbsError: 7.47714e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18560e-03\tAbsError: 4.12638e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.95686e+02\tAbsError: 6.28264e+14\n", - " Region: \"zone_1\"\tRelError: 9.69104e-02\tAbsError: 6.14111e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.68925e-02\tAbsError: 5.51938e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.78804e-05\tAbsError: 6.21733e-03\n", - " Region: \"zone_3\"\tRelError: 3.95589e+02\tAbsError: 6.28264e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.54891e+02\tAbsError: 3.72710e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.05420e+01\tAbsError: 2.55554e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55752e-01\tAbsError: 5.51939e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.78804e-05\tAbsError: 6.21733e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.94648e+00\tAbsError: 2.98429e+14\n", - " Region: \"zone_1\"\tRelError: 5.14531e-01\tAbsError: 9.09002e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.14358e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72973e-04\tAbsError: 6.01365e-02\n", - " Region: \"zone_3\"\tRelError: 1.43195e+00\tAbsError: 2.98429e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37879e-01\tAbsError: 1.45713e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32394e-01\tAbsError: 1.52715e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.15050e-02\tAbsError: 3.07641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72973e-04\tAbsError: 6.01365e-02\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 6.18426e-05\tAbsError: 1.23605e+10\n", - " Region: \"zone_1\"\tRelError: 6.50735e-06\tAbsError: 1.18225e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.47337e-06\tAbsError: 9.41299e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.39733e-08\tAbsError: 1.18131e-05\n", - " Region: \"zone_3\"\tRelError: 5.53353e-05\tAbsError: 1.23605e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33181e-06\tAbsError: 6.56801e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.32777e-06\tAbsError: 5.79248e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 5.26417e-05\tAbsError: 9.54137e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.39830e-08\tAbsError: 1.18168e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.41241e-01\tAbsError: 2.92135e+12\n", - " Region: \"zone_1\"\tRelError: 1.87261e-02\tAbsError: 1.52077e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87161e-02\tAbsError: 1.17194e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00337e-05\tAbsError: 3.48833e-03\n", - " Region: \"zone_3\"\tRelError: 3.22515e-01\tAbsError: 2.92135e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.35811e-01\tAbsError: 2.03287e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.77298e-02\tAbsError: 8.88478e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.89640e-02\tAbsError: 1.17194e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00341e-05\tAbsError: 3.48852e-03\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:03\u001b[0m.\u001b[1;36m816\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:03\u001b[0m.\u001b[1;36m816\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.20714285714285713\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.62856e+03\tAbsError: 2.33966e+16\n", - " Region: \"zone_1\"\tRelError: 1.79222e+00\tAbsError: 6.25008e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.79062e+00\tAbsError: 7.02256e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59642e-03\tAbsError: 5.54782e-01\n", - " Region: \"zone_3\"\tRelError: 3.62677e+03\tAbsError: 2.33966e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68602e+01\tAbsError: 1.20119e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.54928e+03\tAbsError: 1.13847e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.22038e-01\tAbsError: 7.02257e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59642e-03\tAbsError: 5.54782e-01\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.23312e+02\tAbsError: 1.77523e+14\n", - " Region: \"zone_1\"\tRelError: 7.60374e-02\tAbsError: 4.96944e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.60314e-02\tAbsError: 4.76396e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.91597e-06\tAbsError: 2.05477e-03\n", - " Region: \"zone_3\"\tRelError: 7.23236e+02\tAbsError: 1.77523e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.57278e+02\tAbsError: 1.33374e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.65882e+02\tAbsError: 4.41496e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.64860e-02\tAbsError: 4.76397e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.91597e-06\tAbsError: 2.05477e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.04599e+00\tAbsError: 3.86283e+13\n", - " Region: \"zone_1\"\tRelError: 9.93293e-02\tAbsError: 3.04735e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.93161e-02\tAbsError: 2.58731e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32322e-05\tAbsError: 4.60043e-03\n", - " Region: \"zone_3\"\tRelError: 9.46661e-01\tAbsError: 3.86283e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39749e-01\tAbsError: 2.78664e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.98990e-01\tAbsError: 1.07619e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07909e-01\tAbsError: 2.56750e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32322e-05\tAbsError: 4.60043e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.91289e-02\tAbsError: 2.88158e+12\n", - " Region: \"zone_1\"\tRelError: 6.81446e-03\tAbsError: 2.78526e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.80644e-03\tAbsError: 1.86670e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.01434e-06\tAbsError: 2.78339e-03\n", - " Region: \"zone_3\"\tRelError: 8.23144e-02\tAbsError: 2.88158e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.35009e-02\tAbsError: 1.71236e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.35888e-04\tAbsError: 1.16922e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.56961e-03\tAbsError: 1.86733e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.01434e-06\tAbsError: 2.78339e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.31027e+02\tAbsError: 3.00458e+15\n", - " Region: \"zone_1\"\tRelError: 3.24992e-01\tAbsError: 2.59747e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.24433e-01\tAbsError: 6.50815e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.59832e-04\tAbsError: 1.94665e-01\n", - " Region: \"zone_3\"\tRelError: 6.30702e+02\tAbsError: 3.00458e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.67501e+02\tAbsError: 2.00631e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.61532e+02\tAbsError: 9.98272e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66880e+00\tAbsError: 6.50816e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.59832e-04\tAbsError: 1.94665e-01\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.77748e+01\tAbsError: 8.97693e+15\n", - " Region: \"zone_1\"\tRelError: 3.61197e+01\tAbsError: 4.23851e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.61197e+01\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.52655e-09\tAbsError: 1.57404e-06\n", - " Region: \"zone_3\"\tRelError: 1.65511e+00\tAbsError: 8.97693e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81540e-01\tAbsError: 4.96736e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.81472e-01\tAbsError: 4.00957e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.21013e-02\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.52778e-09\tAbsError: 1.57447e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.14650e+00\tAbsError: 4.20836e+13\n", - " Region: \"zone_1\"\tRelError: 5.72071e-02\tAbsError: 4.38145e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.71923e-02\tAbsError: 3.86848e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47693e-05\tAbsError: 5.12967e-03\n", - " Region: \"zone_3\"\tRelError: 3.08929e+00\tAbsError: 4.20836e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.97813e-01\tAbsError: 2.36968e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.03383e+00\tAbsError: 1.83868e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.76355e-02\tAbsError: 3.86849e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47693e-05\tAbsError: 5.12967e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.81931e-01\tAbsError: 3.51173e+12\n", - " Region: \"zone_1\"\tRelError: 1.43962e-02\tAbsError: 1.26242e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43863e-02\tAbsError: 9.16567e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.94788e-06\tAbsError: 3.45854e-03\n", - " Region: \"zone_3\"\tRelError: 2.67534e-01\tAbsError: 3.51173e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10366e-01\tAbsError: 2.07267e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.20559e-02\tAbsError: 1.43906e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51023e-02\tAbsError: 9.16572e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.94788e-06\tAbsError: 3.45854e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.23983e-03\tAbsError: 1.36792e+12\n", - " Region: \"zone_1\"\tRelError: 1.01079e-03\tAbsError: 1.28339e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01043e-03\tAbsError: 1.92525e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.63132e-07\tAbsError: 1.26414e-04\n", - " Region: \"zone_3\"\tRelError: 2.22904e-03\tAbsError: 1.36792e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74133e-04\tAbsError: 3.74390e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.76038e-04\tAbsError: 9.93532e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87850e-03\tAbsError: 1.92892e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.63295e-07\tAbsError: 1.26474e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.88819e+03\tAbsError: 9.32942e+14\n", - " Region: \"zone_1\"\tRelError: 1.18425e-01\tAbsError: 9.22039e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18330e-01\tAbsError: 5.91837e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.49690e-05\tAbsError: 3.30202e-02\n", - " Region: \"zone_3\"\tRelError: 2.88807e+03\tAbsError: 9.32942e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.43139e+03\tAbsError: 6.31743e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.56293e+02\tAbsError: 3.01199e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.87206e-01\tAbsError: 5.91838e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.49690e-05\tAbsError: 3.30202e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 5.57520e+00\tAbsError: 3.41172e+14\n", - " Region: \"zone_1\"\tRelError: 4.09766e+00\tAbsError: 9.68705e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.09747e+00\tAbsError: 3.24496e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.85298e-04\tAbsError: 6.44208e-02\n", - " Region: \"zone_3\"\tRelError: 1.47755e+00\tAbsError: 3.41172e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.59180e-01\tAbsError: 1.67399e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.54624e-01\tAbsError: 1.73772e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.35588e-02\tAbsError: 3.24501e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.85298e-04\tAbsError: 6.44208e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 8.92264e+02\tAbsError: 1.46420e+13\n", - " Region: \"zone_1\"\tRelError: 4.21097e-02\tAbsError: 3.28380e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.20961e-02\tAbsError: 2.81027e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36338e-05\tAbsError: 4.73535e-03\n", - " Region: \"zone_3\"\tRelError: 8.92222e+02\tAbsError: 1.46420e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.91554e+02\tAbsError: 6.91559e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.25440e-01\tAbsError: 7.72638e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.23139e-02\tAbsError: 2.81028e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36338e-05\tAbsError: 4.73535e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.22418e-02\tAbsError: 3.50272e+12\n", - " Region: \"zone_1\"\tRelError: 6.27955e-03\tAbsError: 2.19287e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.27328e-03\tAbsError: 1.50746e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.27058e-06\tAbsError: 2.17780e-03\n", - " Region: \"zone_3\"\tRelError: 6.59622e-02\tAbsError: 3.50272e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.67826e-02\tAbsError: 2.11762e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.14388e-04\tAbsError: 1.38509e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.55902e-03\tAbsError: 1.55696e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.27058e-06\tAbsError: 2.17780e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.09066e-04\tAbsError: 1.04921e+11\n", - " Region: \"zone_1\"\tRelError: 2.62531e-04\tAbsError: 8.16597e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.62297e-04\tAbsError: 5.98558e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.34939e-07\tAbsError: 8.15998e-05\n", - " Region: \"zone_3\"\tRelError: 3.46534e-04\tAbsError: 1.04921e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.33554e-06\tAbsError: 7.61208e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.25715e-06\tAbsError: 2.87997e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.29706e-04\tAbsError: 6.29349e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.35038e-07\tAbsError: 8.16321e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.13880e+02\tAbsError: 1.57052e+14\n", - " Region: \"zone_1\"\tRelError: 8.55413e-02\tAbsError: 7.29682e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.54820e-02\tAbsError: 5.23288e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.93599e-05\tAbsError: 2.06393e-02\n", - " Region: \"zone_3\"\tRelError: 1.13794e+02\tAbsError: 1.57052e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.49330e+01\tAbsError: 4.83658e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.87403e+01\tAbsError: 1.08686e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20863e-01\tAbsError: 5.23289e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.93599e-05\tAbsError: 2.06393e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.45566e+00\tAbsError: 4.38834e+13\n", - " Region: \"zone_1\"\tRelError: 4.22260e-01\tAbsError: 3.10654e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.22245e-01\tAbsError: 2.58856e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.48986e-05\tAbsError: 5.17974e-03\n", - " Region: \"zone_3\"\tRelError: 1.03340e+00\tAbsError: 4.38834e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73706e-01\tAbsError: 3.15931e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.43368e-01\tAbsError: 1.22903e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16309e-01\tAbsError: 2.58965e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.48986e-05\tAbsError: 5.17974e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.08957e+00\tAbsError: 4.67918e+12\n", - " Region: \"zone_1\"\tRelError: 2.91985e-02\tAbsError: 2.86891e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.91811e-02\tAbsError: 2.26505e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73858e-05\tAbsError: 6.03862e-03\n", - " Region: \"zone_3\"\tRelError: 1.06038e+00\tAbsError: 4.67918e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.96820e-01\tAbsError: 1.64471e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.38070e-02\tAbsError: 3.03447e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.97307e-02\tAbsError: 2.26508e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73858e-05\tAbsError: 6.03862e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.61553e-03\tAbsError: 1.05148e+12\n", - " Region: \"zone_1\"\tRelError: 2.24360e-04\tAbsError: 1.45741e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.23946e-04\tAbsError: 1.49308e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14364e-07\tAbsError: 1.44248e-04\n", - " Region: \"zone_3\"\tRelError: 1.39117e-03\tAbsError: 1.05148e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46575e-04\tAbsError: 2.71194e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.31745e-04\tAbsError: 7.80282e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11244e-03\tAbsError: 1.49720e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14525e-07\tAbsError: 1.44306e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.18323e-04\tAbsError: 7.54503e+10\n", - " Region: \"zone_1\"\tRelError: 1.32414e-04\tAbsError: 3.51021e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.32404e-04\tAbsError: 6.46082e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.89739e-09\tAbsError: 3.44561e-06\n", - " Region: \"zone_3\"\tRelError: 1.85909e-04\tAbsError: 7.54503e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.96290e-06\tAbsError: 3.07843e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.90608e-06\tAbsError: 4.46660e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72030e-04\tAbsError: 6.49049e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.90251e-09\tAbsError: 3.44747e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.32840e-01\tAbsError: 2.84312e+12\n", - " Region: \"zone_1\"\tRelError: 2.06699e-02\tAbsError: 1.48305e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06599e-02\tAbsError: 1.13363e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00507e-05\tAbsError: 3.49425e-03\n", - " Region: \"zone_3\"\tRelError: 3.12170e-01\tAbsError: 2.84312e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.30160e-01\tAbsError: 1.94377e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.36988e-02\tAbsError: 8.99360e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.83008e-02\tAbsError: 1.13363e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00507e-05\tAbsError: 3.49425e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.48129e+04\tAbsError: 1.20564e+14\n", - " Region: \"zone_1\"\tRelError: 6.63227e-02\tAbsError: 4.87508e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.63097e-02\tAbsError: 4.42519e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29540e-05\tAbsError: 4.49889e-03\n", - " Region: \"zone_3\"\tRelError: 5.48128e+04\tAbsError: 1.20564e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.93615e+02\tAbsError: 6.52648e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.46192e+04\tAbsError: 5.52991e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.67437e-02\tAbsError: 4.42520e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29540e-05\tAbsError: 4.49889e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 5.82249e-01\tAbsError: 3.89306e+12\n", - " Region: \"zone_1\"\tRelError: 1.15390e-04\tAbsError: 1.16461e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.18796e-05\tAbsError: 6.35138e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.35108e-05\tAbsError: 1.16397e-02\n", - " Region: \"zone_3\"\tRelError: 5.82134e-01\tAbsError: 3.89306e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.80954e-01\tAbsError: 1.04210e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.18447e-04\tAbsError: 2.85096e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.27764e-04\tAbsError: 6.51921e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.35108e-05\tAbsError: 1.16397e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.04474e-04\tAbsError: 1.25302e+11\n", - " Region: \"zone_1\"\tRelError: 1.66223e-04\tAbsError: 5.88340e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66054e-04\tAbsError: 7.31627e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69180e-07\tAbsError: 5.87608e-05\n", - " Region: \"zone_3\"\tRelError: 4.38251e-04\tAbsError: 1.25302e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07347e-05\tAbsError: 8.57551e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.06392e-05\tAbsError: 3.95471e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.16708e-04\tAbsError: 7.69543e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69180e-07\tAbsError: 5.87608e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 9.48378e-06\tAbsError: 2.45281e+09\n", - " Region: \"zone_1\"\tRelError: 3.59744e-06\tAbsError: 4.31703e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.58502e-06\tAbsError: 1.36333e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.24138e-08\tAbsError: 4.31567e-06\n", - " Region: \"zone_3\"\tRelError: 5.88634e-06\tAbsError: 2.45281e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.31749e-07\tAbsError: 2.17401e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.05660e-07\tAbsError: 2.78792e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 5.43652e-06\tAbsError: 1.42292e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.24148e-08\tAbsError: 4.31610e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:10\u001b[0m.\u001b[1;36m903\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:10\u001b[0m.\u001b[1;36m903\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.31666666666666665\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.45241e-02\tAbsError: 6.08779e+12\n", - " Region: \"zone_1\"\tRelError: 1.38533e-03\tAbsError: 1.93904e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.38480e-03\tAbsError: 7.53521e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.35967e-07\tAbsError: 1.86369e-04\n", - " Region: \"zone_3\"\tRelError: 1.31387e-02\tAbsError: 6.08779e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.19346e-04\tAbsError: 1.95279e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.35855e-04\tAbsError: 4.13500e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13830e-02\tAbsError: 7.62534e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.35967e-07\tAbsError: 1.86369e-04\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.24302e-02\tAbsError: 2.86262e+12\n", - " Region: \"zone_1\"\tRelError: 1.27117e-02\tAbsError: 2.69830e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.27040e-02\tAbsError: 1.65367e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.76457e-06\tAbsError: 2.69665e-03\n", - " Region: \"zone_3\"\tRelError: 7.97185e-02\tAbsError: 2.86262e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.09232e-02\tAbsError: 1.72387e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.97977e-04\tAbsError: 1.13875e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.58955e-03\tAbsError: 1.70416e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.76457e-06\tAbsError: 2.69665e-03\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.70703e+02\tAbsError: 2.82032e+13\n", - " Region: \"zone_1\"\tRelError: 4.84371e-02\tAbsError: 4.21872e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.84154e-02\tAbsError: 3.46615e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.16687e-05\tAbsError: 7.52567e-03\n", - " Region: \"zone_3\"\tRelError: 3.70655e+02\tAbsError: 2.82032e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.69606e+02\tAbsError: 1.64213e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.99820e-01\tAbsError: 1.17818e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.88175e-02\tAbsError: 3.46617e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.16687e-05\tAbsError: 7.52567e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.49534e-04\tAbsError: 5.25628e+10\n", - " Region: \"zone_1\"\tRelError: 3.67429e-05\tAbsError: 6.09081e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.67256e-05\tAbsError: 4.65389e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73624e-08\tAbsError: 6.04427e-06\n", - " Region: \"zone_3\"\tRelError: 1.12791e-04\tAbsError: 5.25628e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.87822e-06\tAbsError: 1.95393e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.83754e-06\tAbsError: 3.30235e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03058e-04\tAbsError: 4.67667e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73702e-08\tAbsError: 6.04712e-06\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.08965e-03\tAbsError: 1.66126e+11\n", - " Region: \"zone_1\"\tRelError: 1.15781e-04\tAbsError: 3.98908e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14633e-04\tAbsError: 1.63463e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.14796e-06\tAbsError: 3.98745e-04\n", - " Region: \"zone_3\"\tRelError: 9.73866e-04\tAbsError: 1.66126e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.41675e-05\tAbsError: 7.66761e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.03134e-05\tAbsError: 8.94495e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 9.28237e-04\tAbsError: 1.65873e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.14796e-06\tAbsError: 3.98745e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.46753e+00\tAbsError: 8.85142e+12\n", - " Region: \"zone_1\"\tRelError: 3.80736e-02\tAbsError: 3.50731e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.80472e-02\tAbsError: 2.58955e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.64244e-05\tAbsError: 9.17760e-03\n", - " Region: \"zone_3\"\tRelError: 1.42945e+00\tAbsError: 8.85142e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13018e+00\tAbsError: 2.66676e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.60374e-01\tAbsError: 6.18465e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.88771e-02\tAbsError: 2.58916e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.64244e-05\tAbsError: 9.17760e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.75500e-03\tAbsError: 1.32204e+12\n", - " Region: \"zone_1\"\tRelError: 1.65378e-03\tAbsError: 1.30948e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65340e-03\tAbsError: 1.86320e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.70805e-07\tAbsError: 1.29085e-04\n", - " Region: \"zone_3\"\tRelError: 2.10123e-03\tAbsError: 1.32204e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68767e-04\tAbsError: 3.59146e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.69627e-04\tAbsError: 9.62892e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76246e-03\tAbsError: 1.86697e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.70964e-07\tAbsError: 1.29144e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.66636e+01\tAbsError: 8.97630e+15\n", - " Region: \"zone_1\"\tRelError: 2.49916e+01\tAbsError: 4.26144e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49916e+01\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.33059e-10\tAbsError: 1.50679e-07\n", - " Region: \"zone_3\"\tRelError: 1.67196e+00\tAbsError: 8.97630e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83514e-01\tAbsError: 5.13521e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83497e-01\tAbsError: 3.84109e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04945e-01\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.33239e-10\tAbsError: 1.50741e-07\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.34617e-05\tAbsError: 4.93078e+09\n", - " Region: \"zone_1\"\tRelError: 6.39658e-06\tAbsError: 2.70504e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.38880e-06\tAbsError: 2.92925e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.78001e-09\tAbsError: 2.70211e-06\n", - " Region: \"zone_3\"\tRelError: 1.70651e-05\tAbsError: 4.93078e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.08409e-07\tAbsError: 3.64055e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.02771e-07\tAbsError: 1.29023e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.62462e-05\tAbsError: 3.07627e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.78042e-09\tAbsError: 2.70228e-06\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 1.23496e-03\tAbsError: 3.88937e+11\n", - " Region: \"zone_1\"\tRelError: 1.25820e-04\tAbsError: 3.61467e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.25717e-04\tAbsError: 2.96756e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.03101e-07\tAbsError: 3.58499e-05\n", - " Region: \"zone_3\"\tRelError: 1.10914e-03\tAbsError: 3.88937e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.98691e-05\tAbsError: 1.81164e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.96088e-05\tAbsError: 2.07773e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02956e-03\tAbsError: 3.00897e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.03128e-07\tAbsError: 3.58606e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:13\u001b[0m.\u001b[1;36m398\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:13\u001b[0m.\u001b[1;36m398\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 5.89664e-01\tAbsError: 7.12933e+12\n", - " Region: \"zone_1\"\tRelError: 1.82370e-02\tAbsError: 2.54424e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82061e-02\tAbsError: 1.47192e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.08737e-05\tAbsError: 1.07232e-02\n", - " Region: \"zone_3\"\tRelError: 5.71427e-01\tAbsError: 7.12933e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.46019e-01\tAbsError: 1.65823e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.76669e-03\tAbsError: 5.47110e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86105e-02\tAbsError: 1.47194e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.08737e-05\tAbsError: 1.07232e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 8.49928e-04\tAbsError: 1.08021e+11\n", - " Region: \"zone_1\"\tRelError: 4.89613e-04\tAbsError: 7.83192e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.89388e-04\tAbsError: 6.17623e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.25315e-07\tAbsError: 7.82574e-05\n", - " Region: \"zone_3\"\tRelError: 3.60315e-04\tAbsError: 1.08021e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.68128e-06\tAbsError: 7.75669e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.60123e-06\tAbsError: 3.04546e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.42807e-04\tAbsError: 6.49402e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.25391e-07\tAbsError: 7.82820e-05\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.64103e+00\tAbsError: 3.38547e+14\n", - " Region: \"zone_1\"\tRelError: 1.41318e-01\tAbsError: 9.34351e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41143e-01\tAbsError: 3.27224e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.74663e-04\tAbsError: 6.07127e-02\n", - " Region: \"zone_3\"\tRelError: 1.49971e+00\tAbsError: 3.38547e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.63048e-01\tAbsError: 1.99221e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.58072e-01\tAbsError: 1.39326e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.84139e-02\tAbsError: 3.27228e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.74663e-04\tAbsError: 6.07127e-02\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 1.60246e-04\tAbsError: 3.40369e+10\n", - " Region: \"zone_1\"\tRelError: 1.68034e-05\tAbsError: 2.63003e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.67278e-05\tAbsError: 2.52237e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.55647e-08\tAbsError: 2.62751e-05\n", - " Region: \"zone_3\"\tRelError: 1.43443e-04\tAbsError: 3.40369e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.59868e-06\tAbsError: 1.81685e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.58484e-06\tAbsError: 1.58684e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36183e-04\tAbsError: 2.55624e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.55881e-08\tAbsError: 2.62841e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 2.88205e-01\tAbsError: 8.63940e+12\n", - " Region: \"zone_1\"\tRelError: 4.35098e-04\tAbsError: 1.57759e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.89774e-04\tAbsError: 3.29820e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.53240e-05\tAbsError: 1.57429e-02\n", - " Region: \"zone_3\"\tRelError: 2.87770e-01\tAbsError: 8.63940e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.82323e-01\tAbsError: 2.51161e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.35683e-03\tAbsError: 6.12779e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.04524e-03\tAbsError: 3.30252e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.53240e-05\tAbsError: 1.57429e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 9.54016e+00\tAbsError: 8.28773e+15\n", - " Region: \"zone_1\"\tRelError: 7.90066e+00\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.90066e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.70870e-10\tAbsError: 1.98737e-07\n", - " Region: \"zone_3\"\tRelError: 1.63951e+00\tAbsError: 8.28773e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69626e-01\tAbsError: 4.72857e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69607e-01\tAbsError: 3.55916e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00272e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.71133e-10\tAbsError: 1.98833e-07\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.96126e-04\tAbsError: 7.20782e+10\n", - " Region: \"zone_1\"\tRelError: 2.21127e-04\tAbsError: 3.89252e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.21116e-04\tAbsError: 6.19595e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10031e-08\tAbsError: 3.83056e-06\n", - " Region: \"zone_3\"\tRelError: 1.74999e-04\tAbsError: 7.20782e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.65804e-06\tAbsError: 2.91079e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.60364e-06\tAbsError: 4.29703e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.61727e-04\tAbsError: 6.22469e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10087e-08\tAbsError: 3.83256e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.28948e+00\tAbsError: 4.14353e+13\n", - " Region: \"zone_1\"\tRelError: 2.38341e-01\tAbsError: 3.22323e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.38323e-01\tAbsError: 2.58129e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84675e-05\tAbsError: 6.41942e-03\n", - " Region: \"zone_3\"\tRelError: 1.05113e+00\tAbsError: 4.14353e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.79303e-01\tAbsError: 3.03763e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.54468e-01\tAbsError: 1.10590e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17345e-01\tAbsError: 2.58893e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84675e-05\tAbsError: 6.41942e-03\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 9.49376e-05\tAbsError: 2.57660e+10\n", - " Region: \"zone_1\"\tRelError: 9.79246e-06\tAbsError: 3.93277e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 9.78120e-06\tAbsError: 1.74738e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12594e-08\tAbsError: 3.91529e-06\n", - " Region: \"zone_3\"\tRelError: 8.51451e-05\tAbsError: 2.57660e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.56549e-06\tAbsError: 1.38663e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.54725e-06\tAbsError: 1.18996e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 8.00211e-05\tAbsError: 1.77235e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12624e-08\tAbsError: 3.91634e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:15\u001b[0m.\u001b[1;36m767\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.2\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 12\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 1.96714e-02\tAbsError: 8.16211e+12\n", - " Region: \"zone_1\"\tRelError: 1.87172e-03\tAbsError: 1.88005e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87121e-03\tAbsError: 1.01416e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.11506e-07\tAbsError: 1.77863e-04\n", - " Region: \"zone_3\"\tRelError: 1.77997e-02\tAbsError: 8.16211e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28006e-03\tAbsError: 2.65961e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.13272e-03\tAbsError: 5.50249e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.53864e-02\tAbsError: 1.02631e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.11506e-07\tAbsError: 1.77863e-04\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.57084e+00\tAbsError: 2.89575e+14\n", - " Region: \"zone_1\"\tRelError: 1.26543e-01\tAbsError: 8.72430e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.26381e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62480e-04\tAbsError: 5.64794e-02\n", - " Region: \"zone_3\"\tRelError: 1.44430e+00\tAbsError: 2.89575e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37983e-01\tAbsError: 1.66847e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32917e-01\tAbsError: 1.22728e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.32359e-02\tAbsError: 3.07641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62480e-04\tAbsError: 5.64794e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.64462e-05\tAbsError: 2.76462e+09\n", - " Region: \"zone_1\"\tRelError: 8.94814e-06\tAbsError: 4.07812e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.93642e-06\tAbsError: 1.58768e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.17259e-08\tAbsError: 4.07653e-06\n", - " Region: \"zone_3\"\tRelError: 7.49807e-06\tAbsError: 2.76462e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.34484e-07\tAbsError: 2.39149e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.06254e-07\tAbsError: 3.73129e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 7.04561e-06\tAbsError: 1.66770e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.17267e-08\tAbsError: 4.07688e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:16\u001b[0m.\u001b[1;36m743\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:16\u001b[0m.\u001b[1;36m743\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.3142857142857143\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Iteration: 3\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 3.68972e-01\tAbsError: 5.93574e+12\n", - " Region: \"zone_1\"\tRelError: 4.08424e-02\tAbsError: 1.48565e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.08334e-02\tAbsError: 1.17194e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.02522e-06\tAbsError: 3.13711e-03\n", - " Region: \"zone_3\"\tRelError: 3.28129e-01\tAbsError: 5.93574e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.35893e-01\tAbsError: 3.04330e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.85715e-02\tAbsError: 2.89244e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.36552e-02\tAbsError: 1.17194e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.02730e-06\tAbsError: 3.13793e-03\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 1.25625e-03\tAbsError: 1.44271e+11\n", - " Region: \"zone_1\"\tRelError: 1.32976e-04\tAbsError: 5.31943e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31445e-04\tAbsError: 1.55231e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.53098e-06\tAbsError: 5.31788e-04\n", - " Region: \"zone_3\"\tRelError: 1.12327e-03\tAbsError: 1.44271e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.23384e-05\tAbsError: 6.93544e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.72047e-05\tAbsError: 7.49163e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06220e-03\tAbsError: 1.57379e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.53098e-06\tAbsError: 5.31788e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.15185e+01\tAbsError: 8.37847e+15\n", - " Region: \"zone_1\"\tRelError: 9.89198e+00\tAbsError: 4.09561e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.89198e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.44792e-09\tAbsError: 1.89443e-06\n", - " Region: \"zone_3\"\tRelError: 1.62652e+00\tAbsError: 8.37847e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69532e-01\tAbsError: 4.63620e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69461e-01\tAbsError: 3.74227e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.75319e-02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.44931e-09\tAbsError: 1.89492e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.08933e+00\tAbsError: 3.08258e+13\n", - " Region: \"zone_1\"\tRelError: 1.39766e-01\tAbsError: 3.14532e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39750e-01\tAbsError: 2.58726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60540e-05\tAbsError: 5.58058e-03\n", - " Region: \"zone_3\"\tRelError: 9.49568e-01\tAbsError: 3.08258e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40223e-01\tAbsError: 2.27975e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.01508e-01\tAbsError: 8.02831e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07820e-01\tAbsError: 2.58966e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60540e-05\tAbsError: 5.58058e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.00828e-01\tAbsError: 2.58321e+12\n", - " Region: \"zone_1\"\tRelError: 1.80463e-02\tAbsError: 1.94095e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.80407e-02\tAbsError: 5.43828e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.57358e-06\tAbsError: 1.93551e-03\n", - " Region: \"zone_3\"\tRelError: 8.27815e-02\tAbsError: 2.58321e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.36586e-02\tAbsError: 1.73538e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.57188e-04\tAbsError: 8.47840e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 8.76020e-03\tAbsError: 5.92018e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.57358e-06\tAbsError: 1.93551e-03\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 1.64697e-03\tAbsError: 5.18786e+11\n", - " Region: \"zone_1\"\tRelError: 1.67763e-04\tAbsError: 4.37003e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.67639e-04\tAbsError: 3.94746e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.24542e-07\tAbsError: 4.33055e-05\n", - " Region: \"zone_3\"\tRelError: 1.47920e-03\tAbsError: 5.18786e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.32202e-05\tAbsError: 2.42889e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.28692e-05\tAbsError: 2.75896e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37299e-03\tAbsError: 4.00256e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.24579e-07\tAbsError: 4.33199e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.77904e+01\tAbsError: 8.87794e+15\n", - " Region: \"zone_1\"\tRelError: 5.61221e+01\tAbsError: 4.23836e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.61221e+01\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.50661e-10\tAbsError: 1.22012e-07\n", - " Region: \"zone_3\"\tRelError: 1.66827e+00\tAbsError: 8.87794e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81634e-01\tAbsError: 5.07701e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.81616e-01\tAbsError: 3.80093e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.05019e-01\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.50819e-10\tAbsError: 1.22067e-07\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.94647e+00\tAbsError: 2.98429e+14\n", - " Region: \"zone_1\"\tRelError: 5.14524e-01\tAbsError: 9.09015e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.14351e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72976e-04\tAbsError: 6.01378e-02\n", - " Region: \"zone_3\"\tRelError: 1.43195e+00\tAbsError: 2.98429e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37879e-01\tAbsError: 1.45714e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32394e-01\tAbsError: 1.52716e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.15050e-02\tAbsError: 3.07641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72976e-04\tAbsError: 6.01378e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.94758e-01\tAbsError: 4.98642e+12\n", - " Region: \"zone_1\"\tRelError: 2.19383e-02\tAbsError: 1.22221e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.19295e-02\tAbsError: 9.16564e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.79291e-06\tAbsError: 3.05651e-03\n", - " Region: \"zone_3\"\tRelError: 2.72820e-01\tAbsError: 4.98642e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12699e-01\tAbsError: 2.77867e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.23181e-02\tAbsError: 2.20775e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77940e-02\tAbsError: 9.16568e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.79389e-06\tAbsError: 3.05683e-03\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 1.98584e-04\tAbsError: 4.08166e+10\n", - " Region: \"zone_1\"\tRelError: 2.08608e-05\tAbsError: 3.48398e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.07607e-05\tAbsError: 3.04350e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00109e-07\tAbsError: 3.48094e-05\n", - " Region: \"zone_3\"\tRelError: 1.77724e-04\tAbsError: 4.08166e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.34980e-06\tAbsError: 2.19178e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.33496e-06\tAbsError: 1.88988e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.68939e-04\tAbsError: 3.08478e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00140e-07\tAbsError: 3.48217e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.70741e-03\tAbsError: 9.43014e+11\n", - " Region: \"zone_1\"\tRelError: 1.62358e-03\tAbsError: 1.39491e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.62318e-03\tAbsError: 1.40436e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.96704e-07\tAbsError: 1.38086e-04\n", - " Region: \"zone_3\"\tRelError: 1.08383e-03\tAbsError: 9.43014e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09769e-04\tAbsError: 2.31971e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.02599e-04\tAbsError: 7.11044e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 8.71070e-04\tAbsError: 1.40908e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.96869e-07\tAbsError: 1.38147e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.75967e+00\tAbsError: 3.31374e+14\n", - " Region: \"zone_1\"\tRelError: 2.67484e-01\tAbsError: 9.25755e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.67311e-01\tAbsError: 3.24496e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72974e-04\tAbsError: 6.01259e-02\n", - " Region: \"zone_3\"\tRelError: 1.49219e+00\tAbsError: 3.31374e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.59591e-01\tAbsError: 1.94436e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.54784e-01\tAbsError: 1.36938e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.76418e-02\tAbsError: 3.24500e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72974e-04\tAbsError: 6.01259e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.04600e+00\tAbsError: 3.86292e+13\n", - " Region: \"zone_1\"\tRelError: 9.93314e-02\tAbsError: 3.04738e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.93181e-02\tAbsError: 2.58731e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32329e-05\tAbsError: 4.60067e-03\n", - " Region: \"zone_3\"\tRelError: 9.46666e-01\tAbsError: 3.86292e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39748e-01\tAbsError: 2.78671e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.98990e-01\tAbsError: 1.07621e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07914e-01\tAbsError: 2.56750e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32329e-05\tAbsError: 4.60067e-03\n", - "Iteration: 16\n", - " Device: \"device\"\tRelError: 1.25453e-04\tAbsError: 3.41182e+10\n", - " Region: \"zone_1\"\tRelError: 1.29374e-05\tAbsError: 4.94542e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29233e-05\tAbsError: 2.30857e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41554e-08\tAbsError: 4.92233e-06\n", - " Region: \"zone_3\"\tRelError: 1.12515e-04\tAbsError: 3.41182e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.39538e-06\tAbsError: 1.83959e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.37099e-06\tAbsError: 1.57223e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.05735e-04\tAbsError: 2.34162e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41591e-08\tAbsError: 4.92361e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.73338e-02\tAbsError: 3.09182e+12\n", - " Region: \"zone_1\"\tRelError: 1.11598e-02\tAbsError: 1.65988e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11551e-02\tAbsError: 1.42279e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73882e-06\tAbsError: 1.64565e-03\n", - " Region: \"zone_3\"\tRelError: 6.61739e-02\tAbsError: 3.09182e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.71921e-02\tAbsError: 1.98622e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.49402e-04\tAbsError: 1.10560e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.42774e-03\tAbsError: 1.50865e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73882e-06\tAbsError: 1.64565e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.30730e-03\tAbsError: 1.19612e+11\n", - " Region: \"zone_1\"\tRelError: 8.58744e-04\tAbsError: 5.14180e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 8.58596e-04\tAbsError: 7.13446e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47850e-07\tAbsError: 5.13467e-05\n", - " Region: \"zone_3\"\tRelError: 4.48561e-04\tAbsError: 1.19612e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.84494e-06\tAbsError: 8.20842e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.76493e-06\tAbsError: 3.75278e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.30803e-04\tAbsError: 7.51545e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47850e-07\tAbsError: 5.13467e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.41236e+00\tAbsError: 3.74251e+13\n", - " Region: \"zone_1\"\tRelError: 3.75384e-01\tAbsError: 3.22046e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.75366e-01\tAbsError: 2.58960e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.81486e-05\tAbsError: 6.30858e-03\n", - " Region: \"zone_3\"\tRelError: 1.03697e+00\tAbsError: 3.74251e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73965e-01\tAbsError: 2.68550e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.46971e-01\tAbsError: 1.05700e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16017e-01\tAbsError: 2.58965e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.81486e-05\tAbsError: 6.30858e-03\n", - "Iteration: 17\n", - " Device: \"device\"\tRelError: 2.11687e-05\tAbsError: 4.65217e+09\n", - " Region: \"zone_1\"\tRelError: 2.21392e-06\tAbsError: 2.49552e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20676e-06\tAbsError: 3.16709e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.16739e-09\tAbsError: 2.49235e-06\n", - " Region: \"zone_3\"\tRelError: 1.89547e-05\tAbsError: 4.65217e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.78662e-07\tAbsError: 2.65424e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.76615e-07\tAbsError: 1.99793e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.79923e-05\tAbsError: 3.21147e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.16920e-09\tAbsError: 2.49299e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.81932e-01\tAbsError: 3.51191e+12\n", - " Region: \"zone_1\"\tRelError: 1.43962e-02\tAbsError: 1.26244e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43862e-02\tAbsError: 9.16567e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.94829e-06\tAbsError: 3.45869e-03\n", - " Region: \"zone_3\"\tRelError: 2.67535e-01\tAbsError: 3.51191e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10366e-01\tAbsError: 2.07283e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.20558e-02\tAbsError: 1.43908e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51034e-02\tAbsError: 9.16572e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.94829e-06\tAbsError: 3.45869e-03\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:21\u001b[0m.\u001b[1;36m692\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.20625\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.35940e-03\tAbsError: 7.91644e+11\n", - " Region: \"zone_1\"\tRelError: 6.17001e-04\tAbsError: 1.42075e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.16596e-04\tAbsError: 1.18665e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.04748e-07\tAbsError: 1.40888e-04\n", - " Region: \"zone_3\"\tRelError: 7.42401e-04\tAbsError: 7.91644e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00211e-04\tAbsError: 1.88344e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.60094e-05\tAbsError: 6.03301e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.55776e-04\tAbsError: 1.18974e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.04912e-07\tAbsError: 1.40947e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.64377e-04\tAbsError: 4.52414e+10\n", - " Region: \"zone_1\"\tRelError: 1.70304e-04\tAbsError: 6.12495e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.70287e-04\tAbsError: 4.29528e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.74725e-08\tAbsError: 6.08200e-06\n", - " Region: \"zone_3\"\tRelError: 9.40730e-05\tAbsError: 4.52414e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.68905e-06\tAbsError: 1.57870e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.65669e-06\tAbsError: 2.94544e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 8.67098e-05\tAbsError: 4.29962e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.74802e-08\tAbsError: 6.08483e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.82063e-01\tAbsError: 5.70563e+12\n", - " Region: \"zone_1\"\tRelError: 6.50909e-02\tAbsError: 1.43712e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.50822e-02\tAbsError: 1.13362e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.73140e-06\tAbsError: 3.03499e-03\n", - " Region: \"zone_3\"\tRelError: 3.16972e-01\tAbsError: 5.70563e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.29746e-01\tAbsError: 2.94606e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.44628e-02\tAbsError: 2.75958e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27548e-02\tAbsError: 1.13363e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.73488e-06\tAbsError: 3.03633e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.22423e-02\tAbsError: 3.50280e+12\n", - " Region: \"zone_1\"\tRelError: 6.27969e-03\tAbsError: 2.19297e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.27342e-03\tAbsError: 1.50745e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.27086e-06\tAbsError: 2.17790e-03\n", - " Region: \"zone_3\"\tRelError: 6.59626e-02\tAbsError: 3.50280e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.67825e-02\tAbsError: 2.11769e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.14375e-04\tAbsError: 1.38511e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.55940e-03\tAbsError: 1.55695e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.27086e-06\tAbsError: 2.17790e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.02141e-03\tAbsError: 1.23957e+11\n", - " Region: \"zone_1\"\tRelError: 5.52143e-04\tAbsError: 4.11028e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.52024e-04\tAbsError: 7.43261e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18138e-07\tAbsError: 4.10285e-05\n", - " Region: \"zone_3\"\tRelError: 4.69263e-04\tAbsError: 1.23957e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.58109e-06\tAbsError: 8.33431e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.49437e-06\tAbsError: 4.06143e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.50070e-04\tAbsError: 7.83274e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18138e-07\tAbsError: 4.10285e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.91829e+01\tAbsError: 8.90212e+15\n", - " Region: \"zone_1\"\tRelError: 2.75315e+01\tAbsError: 4.22096e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.75315e+01\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.34515e-09\tAbsError: 4.67755e-07\n", - " Region: \"zone_3\"\tRelError: 1.65141e+00\tAbsError: 8.90212e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80108e-01\tAbsError: 4.92596e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.80039e-01\tAbsError: 3.97616e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.12637e-02\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.34538e-09\tAbsError: 4.67835e-07\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 5.47022e-05\tAbsError: 5.00638e+09\n", - " Region: \"zone_1\"\tRelError: 3.59259e-05\tAbsError: 2.28996e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.59193e-05\tAbsError: 3.06179e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.58527e-09\tAbsError: 2.28690e-06\n", - " Region: \"zone_3\"\tRelError: 1.87763e-05\tAbsError: 5.00638e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.63684e-07\tAbsError: 3.65206e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.58517e-07\tAbsError: 1.35432e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.80475e-05\tAbsError: 3.21633e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.58713e-09\tAbsError: 2.28757e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:23\u001b[0m.\u001b[1;36m653\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:23\u001b[0m.\u001b[1;36m653\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.42500000000000004\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.08168e-01\tAbsError: 2.50771e+12\n", - " Region: \"zone_1\"\tRelError: 2.80959e-02\tAbsError: 1.99697e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.80902e-02\tAbsError: 5.40237e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.73499e-06\tAbsError: 1.99156e-03\n", - " Region: \"zone_3\"\tRelError: 8.00718e-02\tAbsError: 2.50771e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.11633e-02\tAbsError: 1.69868e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.42315e-04\tAbsError: 8.09036e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 8.46039e-03\tAbsError: 5.79510e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.73499e-06\tAbsError: 1.99156e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.61557e-03\tAbsError: 1.05156e+12\n", - " Region: \"zone_1\"\tRelError: 2.24358e-04\tAbsError: 1.45747e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.23943e-04\tAbsError: 1.49317e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14383e-07\tAbsError: 1.44254e-04\n", - " Region: \"zone_3\"\tRelError: 1.39121e-03\tAbsError: 1.05156e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46581e-04\tAbsError: 2.71206e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.31751e-04\tAbsError: 7.80353e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11247e-03\tAbsError: 1.49728e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14543e-07\tAbsError: 1.44312e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.30911e-04\tAbsError: 3.51442e+10\n", - " Region: \"zone_1\"\tRelError: 6.81885e-05\tAbsError: 6.92614e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.81687e-05\tAbsError: 3.42472e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.97989e-08\tAbsError: 6.89189e-06\n", - " Region: \"zone_3\"\tRelError: 6.27220e-05\tAbsError: 3.51442e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91737e-06\tAbsError: 1.11617e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.89123e-06\tAbsError: 2.39825e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.68936e-05\tAbsError: 3.42673e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.98072e-08\tAbsError: 6.89488e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.71568e+03\tAbsError: 3.35717e+14\n", - " Region: \"zone_1\"\tRelError: 1.71420e+03\tAbsError: 9.61254e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.71420e+03\tAbsError: 3.22436e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83747e-04\tAbsError: 6.38819e-02\n", - " Region: \"zone_3\"\tRelError: 1.47181e+00\tAbsError: 3.35717e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.56735e-01\tAbsError: 1.64637e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.51848e-01\tAbsError: 1.71080e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.30478e-02\tAbsError: 3.22440e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83747e-04\tAbsError: 6.38819e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 4.48312e+02\tAbsError: 8.94911e+15\n", - " Region: \"zone_1\"\tRelError: 4.46630e+02\tAbsError: 4.26144e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.46630e+02\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.62615e-10\tAbsError: 2.30654e-07\n", - " Region: \"zone_3\"\tRelError: 1.68233e+00\tAbsError: 8.94911e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83539e-01\tAbsError: 5.26125e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83518e-01\tAbsError: 3.68785e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15269e-01\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.62924e-10\tAbsError: 2.30765e-07\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.33228e-03\tAbsError: 9.74742e+11\n", - " Region: \"zone_1\"\tRelError: 3.08967e-03\tAbsError: 1.32041e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.08930e-03\tAbsError: 1.44698e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.75173e-07\tAbsError: 1.30594e-04\n", - " Region: \"zone_3\"\tRelError: 1.24261e-03\tAbsError: 9.74742e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.15122e-04\tAbsError: 2.46318e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.07963e-04\tAbsError: 7.28424e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01915e-03\tAbsError: 1.45186e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.75331e-07\tAbsError: 1.30651e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.04500e-04\tAbsError: 1.25308e+11\n", - " Region: \"zone_1\"\tRelError: 1.66230e-04\tAbsError: 5.88380e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66061e-04\tAbsError: 7.31659e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69192e-07\tAbsError: 5.87648e-05\n", - " Region: \"zone_3\"\tRelError: 4.38270e-04\tAbsError: 1.25308e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07352e-05\tAbsError: 8.57589e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.06397e-05\tAbsError: 3.95489e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.16726e-04\tAbsError: 7.69576e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69192e-07\tAbsError: 5.87648e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 4.91977e-05\tAbsError: 5.89587e+09\n", - " Region: \"zone_1\"\tRelError: 2.66095e-05\tAbsError: 1.68142e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66047e-05\tAbsError: 3.56714e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.83123e-09\tAbsError: 1.67785e-06\n", - " Region: \"zone_3\"\tRelError: 2.25882e-05\tAbsError: 5.89587e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.48785e-07\tAbsError: 4.10022e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.43251e-07\tAbsError: 1.79565e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.16913e-05\tAbsError: 3.75397e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.83123e-09\tAbsError: 1.67785e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.01989e+00\tAbsError: 4.31984e+13\n", - " Region: \"zone_1\"\tRelError: 9.96747e-01\tAbsError: 3.09938e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.96733e-01\tAbsError: 2.58940e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.46688e-05\tAbsError: 5.09985e-03\n", - " Region: \"zone_3\"\tRelError: 1.02314e+00\tAbsError: 4.31984e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.69533e-01\tAbsError: 3.11070e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.38351e-01\tAbsError: 1.20915e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15242e-01\tAbsError: 2.58944e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.46688e-05\tAbsError: 5.09985e-03\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:26\u001b[0m.\u001b[1;36m225\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.4\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.40232e+00\tAbsError: 3.73139e+14\n", - " Region: \"zone_1\"\tRelError: 8.85228e-01\tAbsError: 8.59449e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.85075e-01\tAbsError: 3.27223e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.53137e-04\tAbsError: 5.32226e-02\n", - " Region: \"zone_3\"\tRelError: 1.51710e+00\tAbsError: 3.73139e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.64079e-01\tAbsError: 2.70317e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.57262e-01\tAbsError: 1.02822e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.56017e-02\tAbsError: 3.27227e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.53137e-04\tAbsError: 5.32226e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.69414e-03\tAbsError: 1.12063e+11\n", - " Region: \"zone_1\"\tRelError: 1.27847e-03\tAbsError: 5.43584e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.27831e-03\tAbsError: 6.67185e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.56330e-07\tAbsError: 5.42917e-05\n", - " Region: \"zone_3\"\tRelError: 4.15667e-04\tAbsError: 1.12063e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.22862e-06\tAbsError: 7.78226e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.15163e-06\tAbsError: 3.42401e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.99131e-04\tAbsError: 7.02554e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.56330e-07\tAbsError: 5.42917e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.49541e-04\tAbsError: 5.25664e+10\n", - " Region: \"zone_1\"\tRelError: 3.67446e-05\tAbsError: 6.09105e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.67272e-05\tAbsError: 4.65423e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73631e-08\tAbsError: 6.04451e-06\n", - " Region: \"zone_3\"\tRelError: 1.12797e-04\tAbsError: 5.25664e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.87853e-06\tAbsError: 1.95402e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.83785e-06\tAbsError: 3.30262e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03063e-04\tAbsError: 4.67701e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73709e-08\tAbsError: 6.04735e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.55312e-01\tAbsError: 2.79981e+12\n", - " Region: \"zone_1\"\tRelError: 5.12467e-02\tAbsError: 1.44746e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.12369e-02\tAbsError: 1.10529e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.84208e-06\tAbsError: 3.42173e-03\n", - " Region: \"zone_3\"\tRelError: 3.04065e-01\tAbsError: 2.79981e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.25490e-01\tAbsError: 1.88988e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.07536e-02\tAbsError: 9.09929e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.78116e-02\tAbsError: 1.10529e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.84244e-06\tAbsError: 3.42191e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.62552e+00\tAbsError: 8.26510e+15\n", - " Region: \"zone_1\"\tRelError: 6.97719e+00\tAbsError: 4.09546e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.97719e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.33437e-10\tAbsError: 3.24924e-07\n", - " Region: \"zone_3\"\tRelError: 1.64833e+00\tAbsError: 8.26510e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69652e-01\tAbsError: 4.84454e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69632e-01\tAbsError: 3.42056e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09044e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.33825e-10\tAbsError: 3.25065e-07\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.49580e+00\tAbsError: 9.39285e+13\n", - " Region: \"zone_1\"\tRelError: 4.42602e-01\tAbsError: 3.34520e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.42580e-01\tAbsError: 2.58963e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17396e-05\tAbsError: 7.55574e-03\n", - " Region: \"zone_3\"\tRelError: 1.05320e+00\tAbsError: 9.39285e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.80080e-01\tAbsError: 5.56726e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.63197e-01\tAbsError: 3.82559e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09902e-01\tAbsError: 2.58951e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17396e-05\tAbsError: 7.55574e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.20550e-04\tAbsError: 4.84741e+10\n", - " Region: \"zone_1\"\tRelError: 3.13594e-04\tAbsError: 5.43528e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.13579e-04\tAbsError: 4.52935e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54842e-08\tAbsError: 5.38998e-06\n", - " Region: \"zone_3\"\tRelError: 1.06955e-04\tAbsError: 4.84741e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.96786e-06\tAbsError: 1.76724e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.93306e-06\tAbsError: 3.08016e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 9.90390e-05\tAbsError: 4.53361e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54915e-08\tAbsError: 5.39262e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.34625e-05\tAbsError: 4.93094e+09\n", - " Region: \"zone_1\"\tRelError: 6.39679e-06\tAbsError: 2.70523e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.38901e-06\tAbsError: 2.92935e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.78057e-09\tAbsError: 2.70230e-06\n", - " Region: \"zone_3\"\tRelError: 1.70657e-05\tAbsError: 4.93094e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.08421e-07\tAbsError: 3.64070e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.02783e-07\tAbsError: 1.29024e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.62467e-05\tAbsError: 3.07637e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.78097e-09\tAbsError: 2.70247e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:28\u001b[0m.\u001b[1;36m663\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:28\u001b[0m.\u001b[1;36m663\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.08284e-01\tAbsError: 2.80262e+12\n", - " Region: \"zone_1\"\tRelError: 3.07855e-02\tAbsError: 2.71657e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.07777e-02\tAbsError: 1.59621e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.81732e-06\tAbsError: 2.71497e-03\n", - " Region: \"zone_3\"\tRelError: 7.74984e-02\tAbsError: 2.80262e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.89088e-02\tAbsError: 1.70510e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.75146e-04\tAbsError: 1.09751e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.40665e-03\tAbsError: 1.68287e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.81732e-06\tAbsError: 2.71497e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.56210e+00\tAbsError: 2.88655e+14\n", - " Region: \"zone_1\"\tRelError: 1.01850e-01\tAbsError: 8.11752e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01705e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.45044e-04\tAbsError: 5.04116e-02\n", - " Region: \"zone_3\"\tRelError: 1.46025e+00\tAbsError: 2.88655e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39145e-01\tAbsError: 2.10222e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.31918e-01\tAbsError: 7.84329e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.90395e-02\tAbsError: 3.07640e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.45044e-04\tAbsError: 5.04116e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.83522e-01\tAbsError: 3.54933e+13\n", - " Region: \"zone_1\"\tRelError: 2.33507e-01\tAbsError: 1.43725e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.33499e-01\tAbsError: 1.17193e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.63430e-06\tAbsError: 2.65326e-03\n", - " Region: \"zone_3\"\tRelError: 3.50016e-01\tAbsError: 3.54933e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.34133e-01\tAbsError: 1.71908e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.49655e-02\tAbsError: 1.83026e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.09091e-02\tAbsError: 1.17193e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.63720e-06\tAbsError: 2.65431e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.44773e-05\tAbsError: 4.32661e+09\n", - " Region: \"zone_1\"\tRelError: 4.86330e-05\tAbsError: 2.50407e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.86258e-05\tAbsError: 2.65675e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.20296e-09\tAbsError: 2.50141e-06\n", - " Region: \"zone_3\"\tRelError: 1.58443e-05\tAbsError: 4.32661e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.09737e-07\tAbsError: 3.25544e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.04907e-07\tAbsError: 1.07118e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.52224e-05\tAbsError: 2.78624e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.20356e-09\tAbsError: 2.50165e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:29\u001b[0m.\u001b[1;36m772\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:29\u001b[0m.\u001b[1;36m772\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.4214285714285714\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 9.54016e+00\tAbsError: 8.28773e+15\n", - " Region: \"zone_1\"\tRelError: 7.90066e+00\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.90066e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.70878e-10\tAbsError: 1.98740e-07\n", - " Region: \"zone_3\"\tRelError: 1.63951e+00\tAbsError: 8.28773e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69626e-01\tAbsError: 4.72857e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69607e-01\tAbsError: 3.55916e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00272e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.71142e-10\tAbsError: 1.98836e-07\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.36717e-03\tAbsError: 1.33167e+12\n", - " Region: \"zone_1\"\tRelError: 4.20849e-03\tAbsError: 1.26692e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.20813e-03\tAbsError: 1.87616e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.58541e-07\tAbsError: 1.24816e-04\n", - " Region: \"zone_3\"\tRelError: 2.15868e-03\tAbsError: 1.33167e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.71347e-04\tAbsError: 3.63972e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.71719e-04\tAbsError: 9.67699e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81526e-03\tAbsError: 1.88004e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.58699e-07\tAbsError: 1.24874e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.02466e+00\tAbsError: 6.04267e+13\n", - " Region: \"zone_1\"\tRelError: 7.18592e-02\tAbsError: 3.22577e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.18409e-02\tAbsError: 2.58878e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83272e-05\tAbsError: 6.36990e-03\n", - " Region: \"zone_3\"\tRelError: 9.52804e-01\tAbsError: 6.04267e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40508e-01\tAbsError: 3.80417e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.10167e-01\tAbsError: 2.23851e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02110e-01\tAbsError: 2.58991e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83272e-05\tAbsError: 6.36990e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.10471e-01\tAbsError: 5.30987e+12\n", - " Region: \"zone_1\"\tRelError: 2.72318e-02\tAbsError: 1.77544e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.72268e-02\tAbsError: 3.65311e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.00788e-06\tAbsError: 1.73891e-03\n", - " Region: \"zone_3\"\tRelError: 8.32389e-02\tAbsError: 5.30987e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.27195e-02\tAbsError: 2.71759e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.48665e-03\tAbsError: 2.59228e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.02772e-03\tAbsError: 4.07396e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.00788e-06\tAbsError: 1.73891e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.28164e+01\tAbsError: 8.85147e+15\n", - " Region: \"zone_1\"\tRelError: 3.11365e+01\tAbsError: 4.23837e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.11365e+01\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.91236e-10\tAbsError: 1.70998e-07\n", - " Region: \"zone_3\"\tRelError: 1.67985e+00\tAbsError: 8.85147e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81658e-01\tAbsError: 5.20181e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.81638e-01\tAbsError: 3.64966e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16552e-01\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.91480e-10\tAbsError: 1.71086e-07\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.57084e+00\tAbsError: 2.89575e+14\n", - " Region: \"zone_1\"\tRelError: 1.26543e-01\tAbsError: 8.72430e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.26381e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62480e-04\tAbsError: 5.64794e-02\n", - " Region: \"zone_3\"\tRelError: 1.44430e+00\tAbsError: 2.89575e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37983e-01\tAbsError: 1.66847e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32917e-01\tAbsError: 1.22728e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.32359e-02\tAbsError: 3.07641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62480e-04\tAbsError: 5.64794e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.47046e-03\tAbsError: 1.03678e+11\n", - " Region: \"zone_1\"\tRelError: 1.12698e-03\tAbsError: 7.93760e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12675e-03\tAbsError: 5.92781e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28365e-07\tAbsError: 7.93168e-05\n", - " Region: \"zone_3\"\tRelError: 3.43475e-04\tAbsError: 1.03678e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.28615e-06\tAbsError: 7.51228e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.20842e-06\tAbsError: 2.85551e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.26752e-04\tAbsError: 6.23260e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28457e-07\tAbsError: 7.93466e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.07050e-01\tAbsError: 1.83634e+13\n", - " Region: \"zone_1\"\tRelError: 2.24108e-02\tAbsError: 1.12606e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.24048e-02\tAbsError: 9.16557e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.02744e-06\tAbsError: 2.09499e-03\n", - " Region: \"zone_3\"\tRelError: 2.84640e-01\tAbsError: 1.83634e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.09245e-01\tAbsError: 8.86934e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.28005e-02\tAbsError: 9.49405e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25878e-02\tAbsError: 9.16561e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.02994e-06\tAbsError: 2.09586e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.64532e-03\tAbsError: 8.16897e+11\n", - " Region: \"zone_1\"\tRelError: 7.82382e-04\tAbsError: 1.31169e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.82008e-04\tAbsError: 1.21129e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.73904e-07\tAbsError: 1.29958e-04\n", - " Region: \"zone_3\"\tRelError: 8.62936e-04\tAbsError: 8.16897e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19497e-04\tAbsError: 1.88712e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83220e-05\tAbsError: 6.28185e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 6.64743e-04\tAbsError: 1.21360e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.73904e-07\tAbsError: 1.29958e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.74151e+00\tAbsError: 3.58703e+14\n", - " Region: \"zone_1\"\tRelError: 1.23207e+00\tAbsError: 8.53073e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.23192e+00\tAbsError: 3.24496e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52087e-04\tAbsError: 5.28578e-02\n", - " Region: \"zone_3\"\tRelError: 1.50944e+00\tAbsError: 3.58703e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.60563e-01\tAbsError: 2.60371e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.54059e-01\tAbsError: 9.83320e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.46637e-02\tAbsError: 3.24500e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52087e-04\tAbsError: 5.28578e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.08933e+00\tAbsError: 3.08258e+13\n", - " Region: \"zone_1\"\tRelError: 1.39766e-01\tAbsError: 3.14532e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39750e-01\tAbsError: 2.58726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60540e-05\tAbsError: 5.58058e-03\n", - " Region: \"zone_3\"\tRelError: 9.49568e-01\tAbsError: 3.08258e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40223e-01\tAbsError: 2.27975e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.01508e-01\tAbsError: 8.02831e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07820e-01\tAbsError: 2.58966e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60540e-05\tAbsError: 5.58058e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 7.32841e-04\tAbsError: 7.32581e+10\n", - " Region: \"zone_1\"\tRelError: 5.53070e-04\tAbsError: 3.54075e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.53060e-04\tAbsError: 6.27391e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.99046e-09\tAbsError: 3.47801e-06\n", - " Region: \"zone_3\"\tRelError: 1.79771e-04\tAbsError: 7.32581e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.77544e-06\tAbsError: 2.98226e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.72018e-06\tAbsError: 4.34355e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66266e-04\tAbsError: 6.30335e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.99552e-09\tAbsError: 3.47985e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.39650e-02\tAbsError: 2.30731e+12\n", - " Region: \"zone_1\"\tRelError: 9.33244e-04\tAbsError: 2.05118e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 9.27371e-04\tAbsError: 1.17101e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.87337e-06\tAbsError: 2.03947e-03\n", - " Region: \"zone_3\"\tRelError: 6.30318e-02\tAbsError: 2.30731e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.63237e-02\tAbsError: 1.57438e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.61914e-04\tAbsError: 7.32926e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 6.34034e-03\tAbsError: 1.22701e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.87337e-06\tAbsError: 2.03947e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.94127e-04\tAbsError: 1.13091e+11\n", - " Region: \"zone_1\"\tRelError: 5.03283e-05\tAbsError: 4.43145e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.02009e-05\tAbsError: 7.27026e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27403e-07\tAbsError: 4.42417e-05\n", - " Region: \"zone_3\"\tRelError: 4.43799e-04\tAbsError: 1.13091e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.49594e-06\tAbsError: 7.71052e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.42465e-06\tAbsError: 3.59861e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.28751e-04\tAbsError: 7.59369e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27403e-07\tAbsError: 4.42417e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.31343e+00\tAbsError: 8.70893e+13\n", - " Region: \"zone_1\"\tRelError: 2.74195e-01\tAbsError: 3.32768e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.74174e-01\tAbsError: 2.58913e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.12496e-05\tAbsError: 7.38544e-03\n", - " Region: \"zone_3\"\tRelError: 1.03923e+00\tAbsError: 8.70893e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.74714e-01\tAbsError: 5.16570e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.55644e-01\tAbsError: 3.54323e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08852e-01\tAbsError: 2.58666e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.12496e-05\tAbsError: 7.38544e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.94758e-01\tAbsError: 4.98642e+12\n", - " Region: \"zone_1\"\tRelError: 2.19383e-02\tAbsError: 1.22221e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.19295e-02\tAbsError: 9.16564e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.79291e-06\tAbsError: 3.05651e-03\n", - " Region: \"zone_3\"\tRelError: 2.72820e-01\tAbsError: 4.98642e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12699e-01\tAbsError: 2.77867e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.23181e-02\tAbsError: 2.20775e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77940e-02\tAbsError: 9.16568e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.79389e-06\tAbsError: 3.05683e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.29111e-05\tAbsError: 2.48408e+09\n", - " Region: \"zone_1\"\tRelError: 1.67401e-05\tAbsError: 4.18088e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.67281e-05\tAbsError: 1.39314e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20220e-08\tAbsError: 4.17948e-06\n", - " Region: \"zone_3\"\tRelError: 6.17105e-06\tAbsError: 2.48408e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.28362e-07\tAbsError: 2.18835e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.02485e-07\tAbsError: 2.95729e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 5.72818e-06\tAbsError: 1.45679e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20230e-08\tAbsError: 4.17988e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:34\u001b[0m.\u001b[1;36m739\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.3125\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.79721e-03\tAbsError: 9.76589e+11\n", - " Region: \"zone_1\"\tRelError: 1.82738e-04\tAbsError: 8.39323e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82502e-04\tAbsError: 1.48235e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36874e-07\tAbsError: 8.24499e-05\n", - " Region: \"zone_3\"\tRelError: 1.61447e-03\tAbsError: 9.76589e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10820e-04\tAbsError: 2.51654e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.02342e-04\tAbsError: 7.24935e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40107e-03\tAbsError: 1.48793e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36983e-07\tAbsError: 8.24891e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 8.73659e-05\tAbsError: 3.83017e+10\n", - " Region: \"zone_1\"\tRelError: 1.09448e-05\tAbsError: 6.06568e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09275e-05\tAbsError: 3.59235e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73237e-08\tAbsError: 6.02976e-06\n", - " Region: \"zone_3\"\tRelError: 7.64211e-05\tAbsError: 3.83017e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.72621e-06\tAbsError: 1.27553e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.70260e-06\tAbsError: 2.55464e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.09750e-05\tAbsError: 3.59448e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73309e-08\tAbsError: 6.03238e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:35\u001b[0m.\u001b[1;36m159\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:35\u001b[0m.\u001b[1;36m159\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5333333333333333\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.44912e-01\tAbsError: 3.23386e+13\n", - " Region: \"zone_1\"\tRelError: 1.07085e-01\tAbsError: 1.39233e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07077e-01\tAbsError: 1.13362e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.44390e-06\tAbsError: 2.58710e-03\n", - " Region: \"zone_3\"\tRelError: 3.37827e-01\tAbsError: 3.23386e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.28282e-01\tAbsError: 1.57182e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.99266e-02\tAbsError: 1.66204e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.96108e-02\tAbsError: 1.13362e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.44711e-06\tAbsError: 2.58826e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.73338e-02\tAbsError: 3.09182e+12\n", - " Region: \"zone_1\"\tRelError: 1.11598e-02\tAbsError: 1.65988e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11551e-02\tAbsError: 1.42279e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73882e-06\tAbsError: 1.64565e-03\n", - " Region: \"zone_3\"\tRelError: 6.61739e-02\tAbsError: 3.09182e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.71921e-02\tAbsError: 1.98622e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.49402e-04\tAbsError: 1.10560e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.42774e-03\tAbsError: 1.50865e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73882e-06\tAbsError: 1.64565e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.68582e-04\tAbsError: 6.39514e+10\n", - " Region: \"zone_1\"\tRelError: 3.10151e-05\tAbsError: 5.94800e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.08440e-05\tAbsError: 4.08298e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71164e-07\tAbsError: 5.94392e-05\n", - " Region: \"zone_3\"\tRelError: 2.37567e-04\tAbsError: 6.39514e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16150e-06\tAbsError: 5.01904e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.80228e-06\tAbsError: 1.37610e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29432e-04\tAbsError: 4.25523e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71229e-07\tAbsError: 5.94601e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.18878e+03\tAbsError: 8.80418e+15\n", - " Region: \"zone_1\"\tRelError: 1.18711e+03\tAbsError: 4.22092e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18711e+03\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.05757e-10\tAbsError: 1.41181e-07\n", - " Region: \"zone_3\"\tRelError: 1.66432e+00\tAbsError: 8.80418e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80202e-01\tAbsError: 5.03339e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.80184e-01\tAbsError: 3.77079e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03936e-01\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.05935e-10\tAbsError: 1.41242e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 9.89628e+00\tAbsError: 8.91444e+15\n", - " Region: \"zone_1\"\tRelError: 8.18490e+00\tAbsError: 4.26161e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.18490e+00\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.46480e-09\tAbsError: 1.89769e-06\n", - " Region: \"zone_3\"\tRelError: 1.71138e+00\tAbsError: 8.91444e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83550e-01\tAbsError: 5.20673e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83503e-01\tAbsError: 3.70771e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.44328e-01\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.46563e-09\tAbsError: 1.89793e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.32808e-02\tAbsError: 4.75699e+12\n", - " Region: \"zone_1\"\tRelError: 1.32874e-02\tAbsError: 1.76357e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.32824e-02\tAbsError: 3.29582e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.98398e-06\tAbsError: 1.73061e-03\n", - " Region: \"zone_3\"\tRelError: 7.99934e-02\tAbsError: 4.75699e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.00834e-02\tAbsError: 2.45657e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.06171e-03\tAbsError: 2.30042e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.84329e-03\tAbsError: 3.64116e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.98398e-06\tAbsError: 1.73061e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.35940e-03\tAbsError: 7.91644e+11\n", - " Region: \"zone_1\"\tRelError: 6.17001e-04\tAbsError: 1.42075e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.16596e-04\tAbsError: 1.18665e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.04748e-07\tAbsError: 1.40888e-04\n", - " Region: \"zone_3\"\tRelError: 7.42401e-04\tAbsError: 7.91644e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00211e-04\tAbsError: 1.88344e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.60094e-05\tAbsError: 6.03301e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.55776e-04\tAbsError: 1.18974e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.04912e-07\tAbsError: 1.40947e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.61549e-04\tAbsError: 5.47840e+10\n", - " Region: \"zone_1\"\tRelError: 1.81900e-05\tAbsError: 1.93945e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81846e-05\tAbsError: 4.89694e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.43105e-09\tAbsError: 1.89048e-06\n", - " Region: \"zone_3\"\tRelError: 1.43359e-04\tAbsError: 5.47840e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.04114e-06\tAbsError: 2.20323e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.00674e-06\tAbsError: 3.27517e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35306e-04\tAbsError: 4.90033e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.43421e-09\tAbsError: 1.89162e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.37089e+00\tAbsError: 3.26099e+14\n", - " Region: \"zone_1\"\tRelError: 8.84636e-01\tAbsError: 9.19122e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.84464e-01\tAbsError: 3.22435e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71658e-04\tAbsError: 5.96687e-02\n", - " Region: \"zone_3\"\tRelError: 1.48626e+00\tAbsError: 3.26099e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57141e-01\tAbsError: 1.90943e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.52007e-01\tAbsError: 1.35156e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.69369e-02\tAbsError: 3.22440e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71658e-04\tAbsError: 5.96687e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.74553e+00\tAbsError: 1.13341e+15\n", - " Region: \"zone_1\"\tRelError: 2.12627e-01\tAbsError: 7.46675e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.12506e-01\tAbsError: 3.27222e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20702e-04\tAbsError: 4.19453e-02\n", - " Region: \"zone_3\"\tRelError: 1.53291e+00\tAbsError: 1.13341e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.65557e-01\tAbsError: 6.56816e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.50766e-01\tAbsError: 4.76590e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16464e-01\tAbsError: 3.27224e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20702e-04\tAbsError: 4.19453e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.30006e-03\tAbsError: 8.16150e+11\n", - " Region: \"zone_1\"\tRelError: 3.99821e-04\tAbsError: 1.25932e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.99463e-04\tAbsError: 1.21699e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.58320e-07\tAbsError: 1.24715e-04\n", - " Region: \"zone_3\"\tRelError: 9.00235e-04\tAbsError: 8.16150e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12573e-04\tAbsError: 1.90859e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.90086e-05\tAbsError: 6.25291e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 7.08294e-04\tAbsError: 1.22015e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.58458e-07\tAbsError: 1.24765e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.02141e-03\tAbsError: 1.23957e+11\n", - " Region: \"zone_1\"\tRelError: 5.52143e-04\tAbsError: 4.11028e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.52024e-04\tAbsError: 7.43261e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18138e-07\tAbsError: 4.10285e-05\n", - " Region: \"zone_3\"\tRelError: 4.69263e-04\tAbsError: 1.23957e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.58109e-06\tAbsError: 8.33431e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.49437e-06\tAbsError: 4.06143e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.50070e-04\tAbsError: 7.83274e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18138e-07\tAbsError: 4.10285e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.55715e-06\tAbsError: 1.55371e+09\n", - " Region: \"zone_1\"\tRelError: 2.75443e-07\tAbsError: 3.15707e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66361e-07\tAbsError: 7.16801e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.08162e-09\tAbsError: 3.15635e-06\n", - " Region: \"zone_3\"\tRelError: 2.28171e-06\tAbsError: 1.55371e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01860e-07\tAbsError: 1.23171e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.92720e-08\tAbsError: 3.21996e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.10150e-06\tAbsError: 7.37244e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.08225e-09\tAbsError: 3.15662e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.69411e+00\tAbsError: 3.60477e+13\n", - " Region: \"zone_1\"\tRelError: 6.67424e-01\tAbsError: 3.21034e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.67406e-01\tAbsError: 2.58975e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.78531e-05\tAbsError: 6.20590e-03\n", - " Region: \"zone_3\"\tRelError: 1.02669e+00\tAbsError: 3.60477e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.69875e-01\tAbsError: 2.58324e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.41824e-01\tAbsError: 1.02153e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14971e-01\tAbsError: 2.58997e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.78531e-05\tAbsError: 6.20590e-03\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:39\u001b[0m.\u001b[1;36m223\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.5\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.14650e+00\tAbsError: 6.35932e+14\n", - " Region: \"zone_1\"\tRelError: 1.10371e-01\tAbsError: 3.43387e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10347e-01\tAbsError: 2.58939e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.43003e-05\tAbsError: 8.44480e-03\n", - " Region: \"zone_3\"\tRelError: 1.03613e+00\tAbsError: 6.35932e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.81867e-01\tAbsError: 2.98873e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.46371e-01\tAbsError: 3.37059e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07870e-01\tAbsError: 2.58834e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.43003e-05\tAbsError: 8.44480e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.68812e-04\tAbsError: 1.08478e+11\n", - " Region: \"zone_1\"\tRelError: 4.45604e-05\tAbsError: 4.47049e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.44318e-05\tAbsError: 6.94824e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.28536e-07\tAbsError: 4.46354e-05\n", - " Region: \"zone_3\"\tRelError: 4.24252e-04\tAbsError: 1.08478e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.17207e-06\tAbsError: 7.43642e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.10313e-06\tAbsError: 3.41139e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.09848e-04\tAbsError: 7.25698e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.28536e-07\tAbsError: 4.46354e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.30911e-04\tAbsError: 3.51442e+10\n", - " Region: \"zone_1\"\tRelError: 6.81885e-05\tAbsError: 6.92614e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.81687e-05\tAbsError: 3.42472e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.97989e-08\tAbsError: 6.89189e-06\n", - " Region: \"zone_3\"\tRelError: 6.27220e-05\tAbsError: 3.51442e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91737e-06\tAbsError: 1.11617e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.89123e-06\tAbsError: 2.39825e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.68936e-05\tAbsError: 3.42673e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.98072e-08\tAbsError: 6.89488e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.28405e-01\tAbsError: 5.49587e+12\n", - " Region: \"zone_1\"\tRelError: 1.19521e-01\tAbsError: 1.39329e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19513e-01\tAbsError: 1.10528e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.28535e-06\tAbsError: 2.88012e-03\n", - " Region: \"zone_3\"\tRelError: 3.08884e-01\tAbsError: 5.49587e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.25115e-01\tAbsError: 2.79766e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.16660e-02\tAbsError: 2.69821e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20941e-02\tAbsError: 1.10529e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.28980e-06\tAbsError: 2.88167e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.44671e+02\tAbsError: 8.23352e+15\n", - " Region: \"zone_1\"\tRelError: 5.43003e+02\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.43003e+02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.11266e-10\tAbsError: 1.43080e-07\n", - " Region: \"zone_3\"\tRelError: 1.66763e+00\tAbsError: 8.23352e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.84587e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69628e-01\tAbsError: 3.38765e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28340e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.11422e-10\tAbsError: 1.43134e-07\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.26564e-01\tAbsError: 2.88431e+14\n", - " Region: \"zone_1\"\tRelError: 3.85183e-02\tAbsError: 1.72171e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.85025e-02\tAbsError: 1.17193e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.58221e-05\tAbsError: 5.49778e-03\n", - " Region: \"zone_3\"\tRelError: 3.88046e-01\tAbsError: 2.88431e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.32962e-01\tAbsError: 1.33696e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.15669e-01\tAbsError: 1.54734e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.93993e-02\tAbsError: 1.17193e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.58309e-05\tAbsError: 5.50105e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 8.79838e-05\tAbsError: 3.88886e+10\n", - " Region: \"zone_1\"\tRelError: 7.96260e-06\tAbsError: 5.71318e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 7.94629e-06\tAbsError: 3.63581e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.63097e-08\tAbsError: 5.67682e-06\n", - " Region: \"zone_3\"\tRelError: 8.00212e-05\tAbsError: 3.88886e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.78253e-06\tAbsError: 1.32297e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.75836e-06\tAbsError: 2.56589e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.44640e-05\tAbsError: 3.63668e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.63165e-08\tAbsError: 5.67931e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:41\u001b[0m.\u001b[1;36m291\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:41\u001b[0m.\u001b[1;36m291\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5285714285714286\u001b[0m \n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 4.91977e-05\tAbsError: 5.89585e+09\n", - " Region: \"zone_1\"\tRelError: 2.66095e-05\tAbsError: 1.68142e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66047e-05\tAbsError: 3.56714e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.83123e-09\tAbsError: 1.67785e-06\n", - " Region: \"zone_3\"\tRelError: 2.25882e-05\tAbsError: 5.89585e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.48785e-07\tAbsError: 4.10022e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.43251e-07\tAbsError: 1.79564e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.16913e-05\tAbsError: 3.75397e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.83123e-09\tAbsError: 1.67785e-06\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:41\u001b[0m.\u001b[1;36m412\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.4\u001b[0m \n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "number of equations 31816\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.25936e-01\tAbsError: 2.39001e+12\n", - " Region: \"zone_1\"\tRelError: 4.86940e-02\tAbsError: 2.12649e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 4.86879e-02\tAbsError: 3.66551e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.11296e-06\tAbsError: 2.12282e-03\n", - " Region: \"zone_3\"\tRelError: 7.72419e-02\tAbsError: 2.39001e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.89638e-02\tAbsError: 1.60154e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.54757e-04\tAbsError: 7.88466e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 8.01716e-03\tAbsError: 3.86019e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.11296e-06\tAbsError: 2.12282e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 4.93663e+00\tAbsError: 6.37428e+14\n", - " Region: \"zone_1\"\tRelError: 3.46019e+00\tAbsError: 7.21476e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.46007e+00\tAbsError: 3.07635e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", - " Region: \"zone_3\"\tRelError: 1.47644e+00\tAbsError: 6.37428e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40577e-01\tAbsError: 3.72575e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.27797e-01\tAbsError: 2.64853e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07947e-01\tAbsError: 3.07638e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.68261e-02\tAbsError: 5.43663e+13\n", - " Region: \"zone_1\"\tRelError: 9.06245e-03\tAbsError: 5.74468e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 9.04655e-03\tAbsError: 2.21279e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59082e-05\tAbsError: 5.52340e-03\n", - " Region: \"zone_3\"\tRelError: 8.77637e-02\tAbsError: 5.43663e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.72497e-02\tAbsError: 3.00106e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.95974e-03\tAbsError: 2.43557e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.05383e-02\tAbsError: 2.34603e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59082e-05\tAbsError: 5.52340e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.71321e+00\tAbsError: 8.81673e+15\n", - " Region: \"zone_1\"\tRelError: 6.00794e+00\tAbsError: 4.23854e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.00794e+00\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.60595e-09\tAbsError: 1.94672e-06\n", - " Region: \"zone_3\"\tRelError: 1.70527e+00\tAbsError: 8.81673e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81670e-01\tAbsError: 5.15698e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.81625e-01\tAbsError: 3.65975e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41972e-01\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.60753e-09\tAbsError: 1.94721e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.62552e+00\tAbsError: 8.26510e+15\n", - " Region: \"zone_1\"\tRelError: 6.97719e+00\tAbsError: 4.09546e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.97719e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.33437e-10\tAbsError: 3.24924e-07\n", - " Region: \"zone_3\"\tRelError: 1.64833e+00\tAbsError: 8.26510e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69652e-01\tAbsError: 4.84454e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69632e-01\tAbsError: 3.42056e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09044e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.33825e-10\tAbsError: 3.25065e-07\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.80926e-03\tAbsError: 1.04555e+12\n", - " Region: \"zone_1\"\tRelError: 7.27674e-03\tAbsError: 1.19488e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.27640e-03\tAbsError: 1.54619e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.38826e-07\tAbsError: 1.17942e-04\n", - " Region: \"zone_3\"\tRelError: 1.53252e-03\tAbsError: 1.04555e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23053e-04\tAbsError: 2.74165e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.18573e-04\tAbsError: 7.71385e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29055e-03\tAbsError: 1.55151e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.38967e-07\tAbsError: 1.17994e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.95431e+00\tAbsError: 2.96317e+14\n", - " Region: \"zone_1\"\tRelError: 2.00902e+00\tAbsError: 3.34445e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.00900e+00\tAbsError: 2.58782e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", - " Region: \"zone_3\"\tRelError: 9.45295e-01\tAbsError: 2.96317e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42034e-01\tAbsError: 1.59420e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.10683e-01\tAbsError: 1.36896e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.25558e-02\tAbsError: 2.58843e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.75776e-03\tAbsError: 2.76446e+12\n", - " Region: \"zone_1\"\tRelError: 8.22210e-04\tAbsError: 1.95288e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 8.21657e-04\tAbsError: 3.02703e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.53255e-07\tAbsError: 1.92261e-04\n", - " Region: \"zone_3\"\tRelError: 6.93555e-03\tAbsError: 2.76446e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.63616e-04\tAbsError: 9.74964e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.36190e-04\tAbsError: 1.78949e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 6.33519e-03\tAbsError: 3.03888e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.53255e-07\tAbsError: 1.92261e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.75729e+00\tAbsError: 1.04697e+15\n", - " Region: \"zone_1\"\tRelError: 2.31703e-01\tAbsError: 7.43403e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.31582e-01\tAbsError: 3.24495e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20545e-04\tAbsError: 4.18908e-02\n", - " Region: \"zone_3\"\tRelError: 1.52558e+00\tAbsError: 1.04697e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.62218e-01\tAbsError: 6.08738e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.47724e-01\tAbsError: 4.38234e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15521e-01\tAbsError: 3.24497e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20545e-04\tAbsError: 4.18908e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.56210e+00\tAbsError: 2.88655e+14\n", - " Region: \"zone_1\"\tRelError: 1.01850e-01\tAbsError: 8.11752e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01705e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.45044e-04\tAbsError: 5.04116e-02\n", - " Region: \"zone_3\"\tRelError: 1.46025e+00\tAbsError: 2.88655e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39145e-01\tAbsError: 2.10222e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.31918e-01\tAbsError: 7.84329e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.90395e-02\tAbsError: 3.07640e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.45044e-04\tAbsError: 5.04116e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.38465e-03\tAbsError: 9.89941e+10\n", - " Region: \"zone_1\"\tRelError: 2.02526e-03\tAbsError: 6.04134e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.02509e-03\tAbsError: 5.87660e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73788e-07\tAbsError: 6.03547e-05\n", - " Region: \"zone_3\"\tRelError: 3.59392e-04\tAbsError: 9.89941e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.10601e-06\tAbsError: 7.06670e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.03564e-06\tAbsError: 2.83270e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.45076e-04\tAbsError: 6.17837e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73818e-07\tAbsError: 6.03636e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.90232e-01\tAbsError: 1.27257e+14\n", - " Region: \"zone_1\"\tRelError: 2.88169e-01\tAbsError: 1.34324e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88157e-01\tAbsError: 9.16559e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22923e-05\tAbsError: 4.26682e-03\n", - " Region: \"zone_3\"\tRelError: 3.02062e-01\tAbsError: 1.27257e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98145e-01\tAbsError: 5.59682e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.53461e-02\tAbsError: 7.12890e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.85587e-02\tAbsError: 9.16563e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22942e-05\tAbsError: 4.26755e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.03450e-04\tAbsError: 1.30819e+11\n", - " Region: \"zone_1\"\tRelError: 4.77036e-05\tAbsError: 1.75374e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.71992e-05\tAbsError: 8.81101e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.04420e-07\tAbsError: 1.75286e-04\n", - " Region: \"zone_3\"\tRelError: 3.55747e-04\tAbsError: 1.30819e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.08527e-06\tAbsError: 9.76850e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.48031e-06\tAbsError: 3.31340e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.38677e-04\tAbsError: 9.20454e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.04420e-07\tAbsError: 1.75286e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.15658e+00\tAbsError: 5.66055e+14\n", - " Region: \"zone_1\"\tRelError: 1.31850e-01\tAbsError: 3.41253e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31826e-01\tAbsError: 2.58364e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.38517e-05\tAbsError: 8.28893e-03\n", - " Region: \"zone_3\"\tRelError: 1.02473e+00\tAbsError: 5.66055e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.76444e-01\tAbsError: 2.68305e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.42329e-01\tAbsError: 2.97750e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.05937e-01\tAbsError: 2.58885e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.38517e-05\tAbsError: 8.28893e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.02466e+00\tAbsError: 6.04267e+13\n", - " Region: \"zone_1\"\tRelError: 7.18592e-02\tAbsError: 3.22577e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.18409e-02\tAbsError: 2.58878e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83272e-05\tAbsError: 6.36990e-03\n", - " Region: \"zone_3\"\tRelError: 9.52804e-01\tAbsError: 6.04267e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40508e-01\tAbsError: 3.80417e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.10167e-01\tAbsError: 2.23851e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02110e-01\tAbsError: 2.58991e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83272e-05\tAbsError: 6.36990e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 8.44431e-04\tAbsError: 5.49302e+10\n", - " Region: \"zone_1\"\tRelError: 7.13090e-04\tAbsError: 4.21004e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 7.13078e-04\tAbsError: 5.01862e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19503e-08\tAbsError: 4.15985e-06\n", - " Region: \"zone_3\"\tRelError: 1.31342e-04\tAbsError: 5.49302e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.51186e-06\tAbsError: 2.12338e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.47250e-06\tAbsError: 3.36964e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.22345e-04\tAbsError: 5.02300e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19561e-08\tAbsError: 4.16197e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 6.19343e-04\tAbsError: 1.68979e+11\n", - " Region: \"zone_1\"\tRelError: 7.37376e-05\tAbsError: 3.31699e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 7.37284e-05\tAbsError: 1.11458e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.21362e-09\tAbsError: 3.20553e-06\n", - " Region: \"zone_3\"\tRelError: 5.45605e-04\tAbsError: 1.68979e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02630e-05\tAbsError: 8.16562e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.01840e-05\tAbsError: 8.73224e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.25149e-04\tAbsError: 1.14194e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.21831e-09\tAbsError: 3.20711e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.81369e-01\tAbsError: 1.65118e+13\n", - " Region: \"zone_1\"\tRelError: 1.13683e-01\tAbsError: 2.48930e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13676e-01\tAbsError: 7.97182e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", - " Region: \"zone_3\"\tRelError: 6.76863e-02\tAbsError: 1.65118e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.50220e-02\tAbsError: 9.05581e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.84537e-03\tAbsError: 7.45604e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 9.81196e-03\tAbsError: 8.36703e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.10445e-01\tAbsError: 2.57026e+14\n", - " Region: \"zone_1\"\tRelError: 3.68944e-02\tAbsError: 1.67806e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.68788e-02\tAbsError: 1.13361e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.56850e-05\tAbsError: 5.44447e-03\n", - " Region: \"zone_3\"\tRelError: 3.73550e-01\tAbsError: 2.57026e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.26469e-01\tAbsError: 1.17749e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.09349e-01\tAbsError: 1.39277e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.77163e-02\tAbsError: 1.13362e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.56976e-05\tAbsError: 5.44890e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.07050e-01\tAbsError: 1.83634e+13\n", - " Region: \"zone_1\"\tRelError: 2.24108e-02\tAbsError: 1.12606e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.24048e-02\tAbsError: 9.16557e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.02744e-06\tAbsError: 2.09499e-03\n", - " Region: \"zone_3\"\tRelError: 2.84640e-01\tAbsError: 1.83634e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.09245e-01\tAbsError: 8.86934e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.28005e-02\tAbsError: 9.49405e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25878e-02\tAbsError: 9.16561e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.02994e-06\tAbsError: 2.09586e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.98804e-05\tAbsError: 3.09962e+09\n", - " Region: \"zone_1\"\tRelError: 5.92720e-05\tAbsError: 2.99292e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.92634e-05\tAbsError: 1.93476e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.60480e-09\tAbsError: 2.99098e-06\n", - " Region: \"zone_3\"\tRelError: 1.06085e-05\tAbsError: 3.09962e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21372e-07\tAbsError: 2.55195e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.06164e-07\tAbsError: 5.47662e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01723e-05\tAbsError: 2.01719e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.60488e-09\tAbsError: 2.99106e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:47\u001b[0m.\u001b[1;36m454\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:47\u001b[0m.\u001b[1;36m454\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.41874999999999996\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.00650e-05\tAbsError: 2.07855e+09\n", - " Region: \"zone_1\"\tRelError: 2.54140e-06\tAbsError: 1.04982e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.51119e-06\tAbsError: 2.66080e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.02028e-08\tAbsError: 1.04955e-05\n", - " Region: \"zone_3\"\tRelError: 1.75236e-05\tAbsError: 2.07855e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52303e-07\tAbsError: 3.52420e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.59594e-07\tAbsError: 1.72613e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.71815e-05\tAbsError: 2.70902e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.02126e-08\tAbsError: 1.04992e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.11615e-03\tAbsError: 1.08851e+12\n", - " Region: \"zone_1\"\tRelError: 5.30759e-03\tAbsError: 1.67972e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.30711e-03\tAbsError: 1.45981e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", - " Region: \"zone_3\"\tRelError: 1.80856e-03\tAbsError: 1.08851e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43945e-04\tAbsError: 2.92186e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.94756e-05\tAbsError: 7.96320e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.56466e-03\tAbsError: 1.47422e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:47\u001b[0m.\u001b[1;36m958\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:47\u001b[0m.\u001b[1;36m958\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6416666666666667\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.39650e-02\tAbsError: 2.30731e+12\n", - " Region: \"zone_1\"\tRelError: 9.33244e-04\tAbsError: 2.05118e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 9.27371e-04\tAbsError: 1.17101e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.87337e-06\tAbsError: 2.03947e-03\n", - " Region: \"zone_3\"\tRelError: 6.30318e-02\tAbsError: 2.30731e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.63237e-02\tAbsError: 1.57438e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.61914e-04\tAbsError: 7.32926e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 6.34034e-03\tAbsError: 1.22701e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.87337e-06\tAbsError: 2.03947e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.45294e-02\tAbsError: 4.75798e+13\n", - " Region: \"zone_1\"\tRelError: 9.83113e-03\tAbsError: 4.84305e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 9.81775e-03\tAbsError: 1.96851e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.33816e-05\tAbsError: 4.64620e-03\n", - " Region: \"zone_3\"\tRelError: 8.46983e-02\tAbsError: 4.75798e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.50937e-02\tAbsError: 2.64070e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.66534e-03\tAbsError: 2.11728e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09259e-02\tAbsError: 2.08766e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.33816e-05\tAbsError: 4.64620e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.87927e+01\tAbsError: 8.77821e+15\n", - " Region: \"zone_1\"\tRelError: 1.71169e+01\tAbsError: 4.22091e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.71169e+01\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.79161e-10\tAbsError: 6.23688e-08\n", - " Region: \"zone_3\"\tRelError: 1.67579e+00\tAbsError: 8.77821e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80226e-01\tAbsError: 5.15720e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.80206e-01\tAbsError: 3.62102e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15353e-01\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.79280e-10\tAbsError: 6.24114e-08\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.59900e-03\tAbsError: 1.40711e+11\n", - " Region: \"zone_1\"\tRelError: 2.06948e-03\tAbsError: 6.41578e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06929e-03\tAbsError: 9.09489e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84503e-07\tAbsError: 6.40668e-05\n", - " Region: \"zone_3\"\tRelError: 5.29527e-04\tAbsError: 1.40711e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.39801e-06\tAbsError: 9.47438e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.30618e-06\tAbsError: 4.59673e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.12638e-04\tAbsError: 9.48359e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84568e-07\tAbsError: 6.40878e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.54404e+00\tAbsError: 9.19653e+15\n", - " Region: \"zone_1\"\tRelError: 5.78704e+00\tAbsError: 4.26149e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.78704e+00\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.09033e-09\tAbsError: 7.26390e-07\n", - " Region: \"zone_3\"\tRelError: 1.75700e+00\tAbsError: 9.19653e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83468e-01\tAbsError: 4.88666e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83333e-01\tAbsError: 4.30987e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.90195e-01\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.09072e-09\tAbsError: 7.26556e-07\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.79721e-03\tAbsError: 9.76589e+11\n", - " Region: \"zone_1\"\tRelError: 1.82738e-04\tAbsError: 8.39323e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82502e-04\tAbsError: 1.48235e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36874e-07\tAbsError: 8.24499e-05\n", - " Region: \"zone_3\"\tRelError: 1.61447e-03\tAbsError: 9.76589e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10820e-04\tAbsError: 2.51654e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.02342e-04\tAbsError: 7.24935e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40107e-03\tAbsError: 1.48793e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36983e-07\tAbsError: 8.24891e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.18118e-03\tAbsError: 2.28028e+12\n", - " Region: \"zone_1\"\tRelError: 7.42289e-04\tAbsError: 2.07979e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.41698e-04\tAbsError: 2.57621e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.91069e-07\tAbsError: 2.05403e-04\n", - " Region: \"zone_3\"\tRelError: 5.43889e-03\tAbsError: 2.28028e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.11866e-04\tAbsError: 7.70443e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.97347e-04\tAbsError: 1.50984e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.92909e-03\tAbsError: 2.58602e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.91069e-07\tAbsError: 2.05403e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.95137e+00\tAbsError: 3.48893e+14\n", - " Region: \"zone_1\"\tRelError: 4.47469e-01\tAbsError: 8.48100e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.47317e-01\tAbsError: 3.22435e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.51248e-04\tAbsError: 5.25665e-02\n", - " Region: \"zone_3\"\tRelError: 1.50390e+00\tAbsError: 3.48893e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.58073e-01\tAbsError: 2.53777e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.51336e-01\tAbsError: 9.51163e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.43386e-02\tAbsError: 3.22439e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.51248e-04\tAbsError: 5.25665e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 6.84757e-04\tAbsError: 5.79872e+10\n", - " Region: \"zone_1\"\tRelError: 5.39232e-04\tAbsError: 6.69464e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.39213e-04\tAbsError: 4.49143e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91058e-08\tAbsError: 6.64972e-06\n", - " Region: \"zone_3\"\tRelError: 1.45525e-04\tAbsError: 5.79872e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.71562e-06\tAbsError: 2.34463e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.68397e-06\tAbsError: 3.45410e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.38106e-04\tAbsError: 4.56915e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91137e-08\tAbsError: 6.65261e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.76152e+00\tAbsError: 6.12661e+15\n", - " Region: \"zone_1\"\tRelError: 2.09395e-01\tAbsError: 7.53205e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.09272e-01\tAbsError: 3.27221e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22597e-04\tAbsError: 4.25984e-02\n", - " Region: \"zone_3\"\tRelError: 1.55213e+00\tAbsError: 6.12661e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.63853e-01\tAbsError: 2.91068e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.34999e-01\tAbsError: 3.21593e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.53154e-01\tAbsError: 3.27222e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22597e-04\tAbsError: 4.25984e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.68582e-04\tAbsError: 6.39514e+10\n", - " Region: \"zone_1\"\tRelError: 3.10151e-05\tAbsError: 5.94800e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.08440e-05\tAbsError: 4.08298e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71164e-07\tAbsError: 5.94392e-05\n", - " Region: \"zone_3\"\tRelError: 2.37567e-04\tAbsError: 6.39514e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16150e-06\tAbsError: 5.01904e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.80228e-06\tAbsError: 1.37610e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29432e-04\tAbsError: 4.25523e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71229e-07\tAbsError: 5.94601e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 5.42428e-04\tAbsError: 1.49895e+11\n", - " Region: \"zone_1\"\tRelError: 7.43693e-05\tAbsError: 1.42149e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.39602e-05\tAbsError: 9.90020e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.09109e-07\tAbsError: 1.42050e-04\n", - " Region: \"zone_3\"\tRelError: 4.68059e-04\tAbsError: 1.49895e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.53557e-06\tAbsError: 1.05959e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.74851e-06\tAbsError: 4.39358e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.49366e-04\tAbsError: 1.03361e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.09109e-07\tAbsError: 1.42050e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.14013e+00\tAbsError: 8.25371e+13\n", - " Region: \"zone_1\"\tRelError: 1.11172e-01\tAbsError: 3.30262e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11151e-01\tAbsError: 2.57853e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.08335e-05\tAbsError: 7.24085e-03\n", - " Region: \"zone_3\"\tRelError: 1.02896e+00\tAbsError: 8.25371e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.70525e-01\tAbsError: 4.90867e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.50397e-01\tAbsError: 3.34505e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08014e-01\tAbsError: 2.58239e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.08335e-05\tAbsError: 7.24085e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.02364e-04\tAbsError: 5.62248e+09\n", - " Region: \"zone_1\"\tRelError: 8.15379e-05\tAbsError: 3.03368e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.15291e-05\tAbsError: 3.57289e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.71937e-09\tAbsError: 3.03011e-06\n", - " Region: \"zone_3\"\tRelError: 2.08260e-05\tAbsError: 5.62248e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14319e-07\tAbsError: 4.05602e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.09034e-07\tAbsError: 1.56647e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.01939e-05\tAbsError: 3.71851e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.71944e-09\tAbsError: 3.03019e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.19309e+00\tAbsError: 4.43505e+15\n", - " Region: \"zone_1\"\tRelError: 1.28635e-01\tAbsError: 3.41725e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28609e-01\tAbsError: 2.52181e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.57713e-05\tAbsError: 8.95443e-03\n", - " Region: \"zone_3\"\tRelError: 1.06446e+00\tAbsError: 4.43505e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.84044e-01\tAbsError: 2.10617e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.39432e-01\tAbsError: 2.32888e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40955e-01\tAbsError: 2.56263e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.57981e-05\tAbsError: 8.96393e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.61549e-04\tAbsError: 5.47840e+10\n", - " Region: \"zone_1\"\tRelError: 1.81900e-05\tAbsError: 1.93945e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81846e-05\tAbsError: 4.89694e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.43105e-09\tAbsError: 1.89048e-06\n", - " Region: \"zone_3\"\tRelError: 1.43359e-04\tAbsError: 5.47840e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.04114e-06\tAbsError: 2.20323e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.00674e-06\tAbsError: 3.27517e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35306e-04\tAbsError: 4.90033e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.43421e-09\tAbsError: 1.89162e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.91927e-04\tAbsError: 1.36404e+11\n", - " Region: \"zone_1\"\tRelError: 6.69713e-05\tAbsError: 3.11592e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.69626e-05\tAbsError: 9.20653e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.68788e-09\tAbsError: 3.02386e-06\n", - " Region: \"zone_3\"\tRelError: 4.24956e-04\tAbsError: 1.36404e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.34577e-06\tAbsError: 6.44393e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.27955e-06\tAbsError: 7.19643e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.08322e-04\tAbsError: 9.42720e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.69229e-09\tAbsError: 3.02544e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.75588e-01\tAbsError: 3.01123e+13\n", - " Region: \"zone_1\"\tRelError: 4.71817e-02\tAbsError: 1.36022e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.71744e-02\tAbsError: 1.10528e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.33552e-06\tAbsError: 2.54944e-03\n", - " Region: \"zone_3\"\tRelError: 3.28406e-01\tAbsError: 3.01123e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.23669e-01\tAbsError: 1.46557e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.60685e-02\tAbsError: 1.54566e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.86615e-02\tAbsError: 1.10528e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.33882e-06\tAbsError: 2.55063e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.62672e-05\tAbsError: 3.10481e+09\n", - " Region: \"zone_1\"\tRelError: 3.66806e-05\tAbsError: 2.21724e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 3.66799e-05\tAbsError: 2.06476e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.31104e-10\tAbsError: 2.19659e-07\n", - " Region: \"zone_3\"\tRelError: 9.58660e-06\tAbsError: 3.10481e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88628e-07\tAbsError: 1.51763e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.86687e-07\tAbsError: 1.58718e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.21065e-06\tAbsError: 2.10348e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.31398e-10\tAbsError: 2.19764e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:53\u001b[0m.\u001b[1;36m530\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.6\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.92644e-01\tAbsError: 1.63079e+15\n", - " Region: \"zone_1\"\tRelError: 7.03148e-02\tAbsError: 4.00940e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.02331e-02\tAbsError: 1.17197e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.16694e-05\tAbsError: 2.83743e-02\n", - " Region: \"zone_3\"\tRelError: 4.22329e-01\tAbsError: 1.63079e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.29131e-01\tAbsError: 8.82419e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.44724e-01\tAbsError: 7.48376e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.83927e-02\tAbsError: 1.17198e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.16694e-05\tAbsError: 2.83743e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.55715e-06\tAbsError: 1.55372e+09\n", - " Region: \"zone_1\"\tRelError: 2.75443e-07\tAbsError: 3.15707e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66361e-07\tAbsError: 7.16801e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.08162e-09\tAbsError: 3.15635e-06\n", - " Region: \"zone_3\"\tRelError: 2.28171e-06\tAbsError: 1.55372e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01860e-07\tAbsError: 1.23173e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.92720e-08\tAbsError: 3.21996e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.10150e-06\tAbsError: 7.37244e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.08225e-09\tAbsError: 3.15662e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.79676e-06\tAbsError: 2.40078e+09\n", - " Region: \"zone_1\"\tRelError: 4.23223e-07\tAbsError: 8.23258e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.99535e-07\tAbsError: 1.09967e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36875e-08\tAbsError: 8.23148e-06\n", - " Region: \"zone_3\"\tRelError: 2.37354e-06\tAbsError: 2.40078e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.77442e-07\tAbsError: 2.05901e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.23886e-07\tAbsError: 3.41766e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.04852e-06\tAbsError: 1.12122e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36936e-08\tAbsError: 8.23382e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:54\u001b[0m.\u001b[1;36m139\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.5\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:54\u001b[0m.\u001b[1;36m244\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:54\u001b[0m.\u001b[1;36m244\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6357142857142857\u001b[0m \n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "number of equations 31816\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.36867e-02\tAbsError: 4.49639e+12\n", - " Region: \"zone_1\"\tRelError: 6.00906e-03\tAbsError: 1.73862e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.00414e-03\tAbsError: 3.08269e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.91824e-06\tAbsError: 1.70779e-03\n", - " Region: \"zone_3\"\tRelError: 7.76776e-02\tAbsError: 4.49639e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.81380e-02\tAbsError: 2.39823e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.79324e-03\tAbsError: 2.09816e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.74142e-03\tAbsError: 3.38601e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.91824e-06\tAbsError: 1.70779e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.29483e-01\tAbsError: 3.05068e+14\n", - " Region: \"zone_1\"\tRelError: 8.16545e-03\tAbsError: 2.91905e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.08201e-03\tAbsError: 2.25848e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.34378e-05\tAbsError: 2.89646e-02\n", - " Region: \"zone_3\"\tRelError: 1.21317e-01\tAbsError: 3.05068e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.58578e-02\tAbsError: 1.79486e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.20322e-02\tAbsError: 1.25582e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.33440e-02\tAbsError: 2.36235e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.34378e-05\tAbsError: 2.89646e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.94073e+01\tAbsError: 8.32958e+15\n", - " Region: \"zone_1\"\tRelError: 1.77016e+01\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77016e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.06764e-10\tAbsError: 1.76108e-07\n", - " Region: \"zone_3\"\tRelError: 1.70569e+00\tAbsError: 8.32958e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69637e-01\tAbsError: 4.59097e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69532e-01\tAbsError: 3.73860e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66519e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.06930e-10\tAbsError: 1.76171e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.44671e+02\tAbsError: 8.23352e+15\n", - " Region: \"zone_1\"\tRelError: 5.43003e+02\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.43003e+02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.11267e-10\tAbsError: 1.43080e-07\n", - " Region: \"zone_3\"\tRelError: 1.66763e+00\tAbsError: 8.23352e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.84587e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69628e-01\tAbsError: 3.38765e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28340e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.11422e-10\tAbsError: 1.43134e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.13690e+00\tAbsError: 9.06564e+15\n", - " Region: \"zone_1\"\tRelError: 4.38729e+00\tAbsError: 4.23839e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.38729e+00\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10788e-09\tAbsError: 3.85000e-07\n", - " Region: \"zone_3\"\tRelError: 1.74961e+00\tAbsError: 9.06564e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81598e-01\tAbsError: 4.84230e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.81467e-01\tAbsError: 4.22333e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86547e-01\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10788e-09\tAbsError: 3.85000e-07\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.07855e-03\tAbsError: 8.06829e+11\n", - " Region: \"zone_1\"\tRelError: 1.84429e-04\tAbsError: 1.23665e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.84077e-04\tAbsError: 1.20782e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.51834e-07\tAbsError: 1.22457e-04\n", - " Region: \"zone_3\"\tRelError: 8.94125e-04\tAbsError: 8.06829e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07774e-04\tAbsError: 1.89260e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83970e-05\tAbsError: 6.17569e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 7.07602e-04\tAbsError: 1.21142e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.51972e-07\tAbsError: 1.22508e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.96602e-02\tAbsError: 1.51748e+13\n", - " Region: \"zone_1\"\tRelError: 4.68184e-03\tAbsError: 3.54680e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.68086e-03\tAbsError: 1.17136e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.87176e-07\tAbsError: 3.42966e-04\n", - " Region: \"zone_3\"\tRelError: 4.49784e-02\tAbsError: 1.51748e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07526e-03\tAbsError: 6.43367e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.83883e-04\tAbsError: 8.74109e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.29183e-02\tAbsError: 1.21270e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.87176e-07\tAbsError: 3.42966e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.07616e+01\tAbsError: 3.02291e+15\n", - " Region: \"zone_1\"\tRelError: 9.27113e+00\tAbsError: 6.52674e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.27103e+00\tAbsError: 3.07634e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.92954e-05\tAbsError: 3.45040e-02\n", - " Region: \"zone_3\"\tRelError: 1.49044e+00\tAbsError: 3.02291e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40308e-01\tAbsError: 1.49698e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.14159e-01\tAbsError: 1.52592e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35875e-01\tAbsError: 3.07635e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.92954e-05\tAbsError: 3.45040e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 4.93663e+00\tAbsError: 6.37428e+14\n", - " Region: \"zone_1\"\tRelError: 3.46019e+00\tAbsError: 7.21476e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.46007e+00\tAbsError: 3.07635e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", - " Region: \"zone_3\"\tRelError: 1.47644e+00\tAbsError: 6.37428e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40577e-01\tAbsError: 3.72575e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.27797e-01\tAbsError: 2.64853e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07947e-01\tAbsError: 3.07638e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.79485e+00\tAbsError: 5.47603e+15\n", - " Region: \"zone_1\"\tRelError: 2.51138e-01\tAbsError: 7.31255e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.51021e-01\tAbsError: 3.24494e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.17064e-04\tAbsError: 4.06761e-02\n", - " Region: \"zone_3\"\tRelError: 1.54371e+00\tAbsError: 5.47603e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.60529e-01\tAbsError: 2.61823e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32596e-01\tAbsError: 2.85780e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.50466e-01\tAbsError: 3.24494e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.17064e-04\tAbsError: 4.06761e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.60447e-04\tAbsError: 1.06355e+11\n", - " Region: \"zone_1\"\tRelError: 4.47681e-05\tAbsError: 4.42560e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.46408e-05\tAbsError: 6.79569e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27248e-07\tAbsError: 4.41881e-05\n", - " Region: \"zone_3\"\tRelError: 4.15679e-04\tAbsError: 1.06355e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.03322e-06\tAbsError: 7.30303e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.96546e-06\tAbsError: 3.33242e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.01553e-04\tAbsError: 7.09759e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27248e-07\tAbsError: 4.41881e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.52996e-04\tAbsError: 2.81948e+11\n", - " Region: \"zone_1\"\tRelError: 2.18342e-05\tAbsError: 9.35229e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.91426e-05\tAbsError: 1.70183e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69160e-06\tAbsError: 9.35059e-04\n", - " Region: \"zone_3\"\tRelError: 2.31162e-04\tAbsError: 2.81948e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.87484e-05\tAbsError: 2.24250e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.27443e-06\tAbsError: 5.76984e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.00448e-04\tAbsError: 1.70517e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69168e-06\tAbsError: 9.35104e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.22732e+00\tAbsError: 2.06865e+15\n", - " Region: \"zone_1\"\tRelError: 2.78568e-01\tAbsError: 2.74627e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78563e-01\tAbsError: 2.58185e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73142e-06\tAbsError: 1.64416e-03\n", - " Region: \"zone_3\"\tRelError: 9.48751e-01\tAbsError: 2.06865e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.44918e-01\tAbsError: 9.02348e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.89155e-01\tAbsError: 1.16630e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14673e-01\tAbsError: 2.51147e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73142e-06\tAbsError: 1.64416e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.95431e+00\tAbsError: 2.96317e+14\n", - " Region: \"zone_1\"\tRelError: 2.00902e+00\tAbsError: 3.34445e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.00900e+00\tAbsError: 2.58782e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", - " Region: \"zone_3\"\tRelError: 9.45295e-01\tAbsError: 2.96317e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42034e-01\tAbsError: 1.59420e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.10683e-01\tAbsError: 1.36896e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.25558e-02\tAbsError: 2.58843e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.17461e+00\tAbsError: 4.04065e+15\n", - " Region: \"zone_1\"\tRelError: 1.26446e-01\tAbsError: 3.40013e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.26423e-01\tAbsError: 2.57765e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36708e-05\tAbsError: 8.22472e-03\n", - " Region: \"zone_3\"\tRelError: 1.04817e+00\tAbsError: 4.04065e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.78908e-01\tAbsError: 1.87301e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.31622e-01\tAbsError: 2.16764e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37612e-01\tAbsError: 2.56811e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36844e-05\tAbsError: 8.22958e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 8.78515e-05\tAbsError: 3.85456e+10\n", - " Region: \"zone_1\"\tRelError: 8.13611e-06\tAbsError: 5.58107e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.12018e-06\tAbsError: 3.60972e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59308e-08\tAbsError: 5.54497e-06\n", - " Region: \"zone_3\"\tRelError: 7.97153e-05\tAbsError: 3.85456e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.76828e-06\tAbsError: 1.31596e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.74419e-06\tAbsError: 2.53860e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.41869e-05\tAbsError: 3.60990e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59375e-08\tAbsError: 5.54742e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:26:58\u001b[0m.\u001b[1;36m865\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.525\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.89158e-03\tAbsError: 9.05298e+11\n", - " Region: \"zone_1\"\tRelError: 3.78207e-04\tAbsError: 4.44628e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.78080e-04\tAbsError: 4.56527e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26768e-07\tAbsError: 4.40063e-05\n", - " Region: \"zone_3\"\tRelError: 3.51337e-03\tAbsError: 9.05298e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42984e-05\tAbsError: 4.59366e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.41399e-05\tAbsError: 4.45932e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.42481e-03\tAbsError: 4.75231e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26809e-07\tAbsError: 4.40212e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 7.18897e+00\tAbsError: 6.29402e+14\n", - " Region: \"zone_1\"\tRelError: 6.86170e+00\tAbsError: 2.22868e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.86166e+00\tAbsError: 9.16572e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.77613e-05\tAbsError: 1.31211e-02\n", - " Region: \"zone_3\"\tRelError: 3.27267e-01\tAbsError: 6.29402e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84319e-01\tAbsError: 3.28649e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.08857e-01\tAbsError: 3.00753e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.40527e-02\tAbsError: 9.16579e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.77613e-05\tAbsError: 1.31211e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.90232e-01\tAbsError: 1.27257e+14\n", - " Region: \"zone_1\"\tRelError: 2.88169e-01\tAbsError: 1.34324e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88157e-01\tAbsError: 9.16559e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22923e-05\tAbsError: 4.26682e-03\n", - " Region: \"zone_3\"\tRelError: 3.02062e-01\tAbsError: 1.27257e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98145e-01\tAbsError: 5.59682e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.53461e-02\tAbsError: 7.12890e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.85587e-02\tAbsError: 9.16563e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22942e-05\tAbsError: 4.26755e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.86737e-01\tAbsError: 1.42449e+15\n", - " Region: \"zone_1\"\tRelError: 7.79806e-02\tAbsError: 3.66548e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.79077e-02\tAbsError: 1.13365e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.28716e-05\tAbsError: 2.53183e-02\n", - " Region: \"zone_3\"\tRelError: 4.08757e-01\tAbsError: 1.42449e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.22785e-01\tAbsError: 7.62606e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.39761e-01\tAbsError: 6.61889e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.61373e-02\tAbsError: 1.13366e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.28716e-05\tAbsError: 2.53183e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.69212e+00\tAbsError: 8.74359e+15\n", - " Region: \"zone_1\"\tRelError: 4.99147e+00\tAbsError: 4.22110e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.99147e+00\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.56758e-09\tAbsError: 1.93339e-06\n", - " Region: \"zone_3\"\tRelError: 1.70065e+00\tAbsError: 8.74359e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80239e-01\tAbsError: 5.11926e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.80194e-01\tAbsError: 3.62433e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40220e-01\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.56931e-09\tAbsError: 1.93394e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.97153e-04\tAbsError: 4.19543e+10\n", - " Region: \"zone_1\"\tRelError: 2.91864e-05\tAbsError: 5.71878e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.90219e-05\tAbsError: 2.71119e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.64529e-07\tAbsError: 5.71607e-05\n", - " Region: \"zone_3\"\tRelError: 2.67967e-04\tAbsError: 4.19543e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38035e-06\tAbsError: 1.92714e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.40994e-06\tAbsError: 2.26829e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.63012e-04\tAbsError: 2.79421e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.64589e-07\tAbsError: 5.71816e-05\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.42105e-01\tAbsError: 9.57843e+13\n", - " Region: \"zone_1\"\tRelError: 5.64317e-01\tAbsError: 1.44974e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.64276e-01\tAbsError: 1.24104e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14024e-05\tAbsError: 1.43733e-02\n", - " Region: \"zone_3\"\tRelError: 7.77880e-02\tAbsError: 9.57843e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.25473e-02\tAbsError: 4.71405e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.65020e-03\tAbsError: 4.86438e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.95491e-02\tAbsError: 1.28397e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14024e-05\tAbsError: 1.43733e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.81369e-01\tAbsError: 1.65118e+13\n", - " Region: \"zone_1\"\tRelError: 1.13683e-01\tAbsError: 2.48930e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13676e-01\tAbsError: 7.97182e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", - " Region: \"zone_3\"\tRelError: 6.76863e-02\tAbsError: 1.65118e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.50220e-02\tAbsError: 9.05581e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.84537e-03\tAbsError: 7.45604e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 9.81196e-03\tAbsError: 8.36703e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.19037e-01\tAbsError: 2.65162e+14\n", - " Region: \"zone_1\"\tRelError: 5.99790e-03\tAbsError: 2.62748e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.92282e-03\tAbsError: 2.08974e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.50856e-05\tAbsError: 2.60658e-02\n", - " Region: \"zone_3\"\tRelError: 1.13040e-01\tAbsError: 2.65162e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38024e-02\tAbsError: 1.56704e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.09425e-02\tAbsError: 1.08458e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.82196e-02\tAbsError: 2.18158e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.50856e-05\tAbsError: 2.60658e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.77192e+00\tAbsError: 9.85877e+14\n", - " Region: \"zone_1\"\tRelError: 2.52573e-01\tAbsError: 7.40894e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.52452e-01\tAbsError: 3.22434e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20416e-04\tAbsError: 4.18460e-02\n", - " Region: \"zone_3\"\tRelError: 1.51935e+00\tAbsError: 9.85877e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.59672e-01\tAbsError: 5.74420e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.45383e-01\tAbsError: 4.11458e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14171e-01\tAbsError: 3.22436e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20416e-04\tAbsError: 4.18460e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.75864e-04\tAbsError: 5.63886e+10\n", - " Region: \"zone_1\"\tRelError: 2.69666e-05\tAbsError: 6.16583e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.69489e-05\tAbsError: 2.63967e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.76715e-08\tAbsError: 6.13943e-06\n", - " Region: \"zone_3\"\tRelError: 2.48898e-04\tAbsError: 5.63886e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.67515e-06\tAbsError: 3.18401e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.66080e-06\tAbsError: 2.45485e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.43544e-04\tAbsError: 2.74388e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.76766e-08\tAbsError: 6.14120e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.36557e-01\tAbsError: 7.18470e+12\n", - " Region: \"zone_1\"\tRelError: 1.16158e-01\tAbsError: 1.78279e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16157e-01\tAbsError: 6.59165e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.94530e-07\tAbsError: 1.71687e-04\n", - " Region: \"zone_3\"\tRelError: 2.03993e-02\tAbsError: 7.18470e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.98223e-04\tAbsError: 2.78831e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.37326e-04\tAbsError: 4.39639e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.92632e-02\tAbsError: 6.83641e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.94530e-07\tAbsError: 1.71687e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.11615e-03\tAbsError: 1.08851e+12\n", - " Region: \"zone_1\"\tRelError: 5.30759e-03\tAbsError: 1.67972e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.30711e-03\tAbsError: 1.45981e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", - " Region: \"zone_3\"\tRelError: 1.80856e-03\tAbsError: 1.08851e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43945e-04\tAbsError: 2.92186e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.94756e-05\tAbsError: 7.96320e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.56466e-03\tAbsError: 1.47422e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.38825e-02\tAbsError: 1.34352e+13\n", - " Region: \"zone_1\"\tRelError: 3.90365e-03\tAbsError: 2.91296e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.90285e-03\tAbsError: 1.07704e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.07428e-07\tAbsError: 2.80526e-04\n", - " Region: \"zone_3\"\tRelError: 3.99789e-02\tAbsError: 1.34352e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.86559e-04\tAbsError: 5.55385e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.99792e-04\tAbsError: 7.88132e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.80917e-02\tAbsError: 1.10910e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.07428e-07\tAbsError: 2.80526e-04\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.70615e-05\tAbsError: 5.88164e+09\n", - " Region: \"zone_1\"\tRelError: 3.64088e-06\tAbsError: 3.85278e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.62980e-06\tAbsError: 3.10674e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10807e-08\tAbsError: 3.84967e-06\n", - " Region: \"zone_3\"\tRelError: 3.34206e-05\tAbsError: 5.88164e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.00628e-07\tAbsError: 3.35788e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.01512e-07\tAbsError: 2.52376e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.28074e-05\tAbsError: 3.20733e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10825e-08\tAbsError: 3.85030e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.17046e+00\tAbsError: 5.18157e+14\n", - " Region: \"zone_1\"\tRelError: 1.54680e-01\tAbsError: 3.40645e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.54656e-01\tAbsError: 2.58448e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36523e-05\tAbsError: 8.21968e-03\n", - " Region: \"zone_3\"\tRelError: 1.01578e+00\tAbsError: 5.18157e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.72316e-01\tAbsError: 2.47147e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.39064e-01\tAbsError: 2.71010e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04375e-01\tAbsError: 2.57967e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36523e-05\tAbsError: 8.21968e-03\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:03\u001b[0m.\u001b[1;36m346\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: 0.75\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.13498e-03\tAbsError: 1.41105e+11\n", - " Region: \"zone_1\"\tRelError: 2.73398e-03\tAbsError: 4.76357e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.73260e-03\tAbsError: 1.35633e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37060e-06\tAbsError: 4.76221e-04\n", - " Region: \"zone_3\"\tRelError: 4.01007e-04\tAbsError: 1.41105e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.96062e-06\tAbsError: 6.85210e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.81427e-06\tAbsError: 7.25836e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.87862e-04\tAbsError: 1.38229e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37060e-06\tAbsError: 4.76221e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.59900e-03\tAbsError: 1.40711e+11\n", - " Region: \"zone_1\"\tRelError: 2.06948e-03\tAbsError: 6.41578e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06929e-03\tAbsError: 9.09489e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84503e-07\tAbsError: 6.40668e-05\n", - " Region: \"zone_3\"\tRelError: 5.29527e-04\tAbsError: 1.40711e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.39801e-06\tAbsError: 9.47438e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.30618e-06\tAbsError: 4.59673e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.12638e-04\tAbsError: 9.48359e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84568e-07\tAbsError: 6.40878e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.10085e-04\tAbsError: 2.49978e+11\n", - " Region: \"zone_1\"\tRelError: 2.66948e-05\tAbsError: 8.47545e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.42556e-05\tAbsError: 1.53478e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.43917e-06\tAbsError: 8.47391e-04\n", - " Region: \"zone_3\"\tRelError: 2.83390e-04\tAbsError: 2.49978e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.62105e-05\tAbsError: 1.91658e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.80553e-06\tAbsError: 5.83197e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.56935e-04\tAbsError: 1.54001e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.43923e-06\tAbsError: 8.47427e-04\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.98481e-01\tAbsError: 2.35572e+14\n", - " Region: \"zone_1\"\tRelError: 3.57005e-02\tAbsError: 1.65805e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.56846e-02\tAbsError: 1.10528e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59248e-05\tAbsError: 5.52768e-03\n", - " Region: \"zone_3\"\tRelError: 3.62780e-01\tAbsError: 2.35572e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21638e-01\tAbsError: 1.07223e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.04647e-01\tAbsError: 1.28348e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.64794e-02\tAbsError: 1.10528e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59361e-05\tAbsError: 5.53170e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.09784e+02\tAbsError: 3.38352e+16\n", - " Region: \"zone_1\"\tRelError: 1.07958e+02\tAbsError: 4.26148e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07958e+02\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.76616e-09\tAbsError: 6.13601e-07\n", - " Region: \"zone_3\"\tRelError: 1.82645e+00\tAbsError: 3.38352e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.82692e-01\tAbsError: 1.68867e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.82173e-01\tAbsError: 1.69485e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.61588e-01\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.76638e-09\tAbsError: 6.13676e-07\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.31814e-02\tAbsError: 4.58362e+11\n", - " Region: \"zone_1\"\tRelError: 1.15315e-02\tAbsError: 2.80900e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15314e-02\tAbsError: 2.57528e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.01667e-08\tAbsError: 2.78324e-05\n", - " Region: \"zone_3\"\tRelError: 1.64997e-03\tAbsError: 4.58362e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47024e-05\tAbsError: 2.30121e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.45967e-05\tAbsError: 2.28241e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60059e-03\tAbsError: 2.62890e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.01667e-08\tAbsError: 2.78324e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 6.84757e-04\tAbsError: 5.79873e+10\n", - " Region: \"zone_1\"\tRelError: 5.39232e-04\tAbsError: 6.69464e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.39213e-04\tAbsError: 4.49143e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91058e-08\tAbsError: 6.64972e-06\n", - " Region: \"zone_3\"\tRelError: 1.45525e-04\tAbsError: 5.79873e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.71562e-06\tAbsError: 2.34463e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.68397e-06\tAbsError: 3.45410e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.38106e-04\tAbsError: 4.56915e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91137e-08\tAbsError: 6.65261e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.45230e-03\tAbsError: 8.19006e+11\n", - " Region: \"zone_1\"\tRelError: 3.16929e-04\tAbsError: 4.12787e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.16811e-04\tAbsError: 4.16156e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.17710e-07\tAbsError: 4.08626e-05\n", - " Region: \"zone_3\"\tRelError: 3.13537e-03\tAbsError: 8.19006e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.06413e-05\tAbsError: 4.15540e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.05304e-05\tAbsError: 4.03467e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.05408e-03\tAbsError: 4.34810e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.17738e-07\tAbsError: 4.08731e-05\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.34957e-02\tAbsError: 4.23641e+13\n", - " Region: \"zone_1\"\tRelError: 1.07688e-02\tAbsError: 4.16936e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07573e-02\tAbsError: 1.79758e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.14905e-05\tAbsError: 3.98960e-03\n", - " Region: \"zone_3\"\tRelError: 8.27269e-02\tAbsError: 4.23641e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.35207e-02\tAbsError: 2.38732e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.77445e-03\tAbsError: 1.84909e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14203e-02\tAbsError: 1.90667e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.14905e-05\tAbsError: 3.98960e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.24383e+00\tAbsError: 3.59726e+16\n", - " Region: \"zone_1\"\tRelError: 6.31680e-01\tAbsError: 1.71583e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 6.31280e-01\tAbsError: 3.27219e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.99867e-04\tAbsError: 1.38861e-01\n", - " Region: \"zone_3\"\tRelError: 1.61215e+00\tAbsError: 3.59726e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.60313e-01\tAbsError: 1.81432e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.24896e-01\tAbsError: 1.78294e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.26543e-01\tAbsError: 3.27220e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.99867e-04\tAbsError: 1.38861e-01\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.25913e-03\tAbsError: 2.71128e+10\n", - " Region: \"zone_1\"\tRelError: 1.10973e-03\tAbsError: 2.99279e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10965e-03\tAbsError: 1.77983e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.60783e-08\tAbsError: 2.99101e-05\n", - " Region: \"zone_3\"\tRelError: 1.49391e-04\tAbsError: 2.71128e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61984e-06\tAbsError: 1.29863e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.63350e-06\tAbsError: 1.41265e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46052e-04\tAbsError: 1.82225e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.61134e-08\tAbsError: 2.99224e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.02364e-04\tAbsError: 5.62247e+09\n", - " Region: \"zone_1\"\tRelError: 8.15379e-05\tAbsError: 3.03368e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.15291e-05\tAbsError: 3.57289e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.71937e-09\tAbsError: 3.03011e-06\n", - " Region: \"zone_3\"\tRelError: 2.08260e-05\tAbsError: 5.62247e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14319e-07\tAbsError: 4.05602e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.09034e-07\tAbsError: 1.56645e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.01939e-05\tAbsError: 3.71851e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.71944e-09\tAbsError: 3.03019e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.69782e-04\tAbsError: 3.91534e+10\n", - " Region: \"zone_1\"\tRelError: 2.50455e-05\tAbsError: 5.20353e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.48958e-05\tAbsError: 2.51864e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.49699e-07\tAbsError: 5.20101e-05\n", - " Region: \"zone_3\"\tRelError: 2.44736e-04\tAbsError: 3.91534e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.23816e-06\tAbsError: 1.81837e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.26547e-06\tAbsError: 2.09697e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.40083e-04\tAbsError: 2.60525e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.49755e-07\tAbsError: 5.20295e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.96199e-03\tAbsError: 1.91554e+12\n", - " Region: \"zone_1\"\tRelError: 6.58625e-04\tAbsError: 2.23948e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.57987e-04\tAbsError: 2.24579e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.37961e-07\tAbsError: 2.21702e-04\n", - " Region: \"zone_3\"\tRelError: 4.30337e-03\tAbsError: 1.91554e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.72509e-04\tAbsError: 6.15591e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.67636e-04\tAbsError: 1.29995e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.86259e-03\tAbsError: 2.25284e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.37961e-07\tAbsError: 2.21702e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 9.89584e-04\tAbsError: 2.93050e+10\n", - " Region: \"zone_1\"\tRelError: 8.69289e-04\tAbsError: 3.58476e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.69279e-04\tAbsError: 1.49163e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.02736e-08\tAbsError: 3.56984e-06\n", - " Region: \"zone_3\"\tRelError: 1.20295e-04\tAbsError: 2.93050e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52554e-06\tAbsError: 1.64489e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.51838e-06\tAbsError: 1.28561e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17241e-04\tAbsError: 1.55101e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.02768e-08\tAbsError: 3.57094e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.12505e+00\tAbsError: 2.31531e+16\n", - " Region: \"zone_1\"\tRelError: 1.58868e-01\tAbsError: 1.05142e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.58639e-01\tAbsError: 2.56126e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.29065e-04\tAbsError: 7.95290e-02\n", - " Region: \"zone_3\"\tRelError: 1.96618e+00\tAbsError: 2.31531e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.75933e-01\tAbsError: 1.14785e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.26157e-01\tAbsError: 1.16746e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06386e+00\tAbsError: 2.48349e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.29065e-04\tAbsError: 7.95290e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.62672e-05\tAbsError: 3.10482e+09\n", - " Region: \"zone_1\"\tRelError: 3.66806e-05\tAbsError: 2.21724e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 3.66799e-05\tAbsError: 2.06476e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.31104e-10\tAbsError: 2.19659e-07\n", - " Region: \"zone_3\"\tRelError: 9.58660e-06\tAbsError: 3.10482e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88628e-07\tAbsError: 1.51763e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.86687e-07\tAbsError: 1.58719e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.21065e-06\tAbsError: 2.10348e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.31398e-10\tAbsError: 2.19764e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:08\u001b[0m.\u001b[1;36m397\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.6\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.45670e-04\tAbsError: 5.12227e+10\n", - " Region: \"zone_1\"\tRelError: 2.26882e-05\tAbsError: 5.68447e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.26719e-05\tAbsError: 2.41814e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62919e-08\tAbsError: 5.66029e-06\n", - " Region: \"zone_3\"\tRelError: 2.22982e-04\tAbsError: 5.12227e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46355e-06\tAbsError: 2.89207e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.45248e-06\tAbsError: 2.23020e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18049e-04\tAbsError: 2.53174e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62965e-08\tAbsError: 5.66192e-06\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.77277e-04\tAbsError: 1.69406e+11\n", - " Region: \"zone_1\"\tRelError: 1.04989e-04\tAbsError: 1.17617e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04650e-04\tAbsError: 1.10516e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.38424e-07\tAbsError: 1.17507e-04\n", - " Region: \"zone_3\"\tRelError: 5.72288e-04\tAbsError: 1.69406e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01879e-05\tAbsError: 1.15108e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.00498e-05\tAbsError: 5.42984e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.51712e-04\tAbsError: 1.15347e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.38451e-07\tAbsError: 1.17518e-04\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.48739e-04\tAbsError: 3.41314e+09\n", - " Region: \"zone_1\"\tRelError: 1.31134e-04\tAbsError: 2.06494e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31128e-04\tAbsError: 1.91971e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.93716e-09\tAbsError: 2.06302e-06\n", - " Region: \"zone_3\"\tRelError: 1.76048e-05\tAbsError: 3.41314e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88514e-07\tAbsError: 1.94837e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.89063e-07\tAbsError: 1.46477e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72213e-05\tAbsError: 1.99642e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.93836e-09\tAbsError: 2.06344e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 7.92425e+00\tAbsError: 7.57393e+15\n", - " Region: \"zone_1\"\tRelError: 6.50438e+00\tAbsError: 5.67741e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.50425e+00\tAbsError: 1.17189e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29791e-04\tAbsError: 4.50552e-02\n", - " Region: \"zone_3\"\tRelError: 1.41987e+00\tAbsError: 7.57393e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12287e-01\tAbsError: 4.15774e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.27964e-01\tAbsError: 3.41619e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07949e+00\tAbsError: 1.17190e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29791e-04\tAbsError: 4.50552e-02\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.33744e-05\tAbsError: 5.41736e+09\n", - " Region: \"zone_1\"\tRelError: 3.09836e-06\tAbsError: 3.51825e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.08825e-06\tAbsError: 2.88215e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.01182e-08\tAbsError: 3.51537e-06\n", - " Region: \"zone_3\"\tRelError: 3.02760e-05\tAbsError: 5.41736e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.80133e-07\tAbsError: 3.09626e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.81126e-07\tAbsError: 2.32110e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.97047e-05\tAbsError: 2.99667e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.01199e-08\tAbsError: 3.51597e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:09\u001b[0m.\u001b[1;36m880\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:09\u001b[0m.\u001b[1;36m880\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7428571428571428\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.94073e+01\tAbsError: 8.32958e+15\n", - " Region: \"zone_1\"\tRelError: 1.77016e+01\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77016e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.06764e-10\tAbsError: 1.76108e-07\n", - " Region: \"zone_3\"\tRelError: 1.70569e+00\tAbsError: 8.32958e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69637e-01\tAbsError: 4.59097e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69532e-01\tAbsError: 3.73860e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66519e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.06930e-10\tAbsError: 1.76171e-07\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 7.33109e-05\tAbsError: 1.99171e+09\n", - " Region: \"zone_1\"\tRelError: 6.45108e-05\tAbsError: 3.50573e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 6.45098e-05\tAbsError: 1.06453e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00585e-09\tAbsError: 3.49509e-07\n", - " Region: \"zone_3\"\tRelError: 8.80008e-06\tAbsError: 1.99171e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03719e-07\tAbsError: 1.17952e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03272e-07\tAbsError: 8.12185e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 8.59208e-06\tAbsError: 1.10473e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00600e-09\tAbsError: 3.49562e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:10\u001b[0m.\u001b[1;36m234\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.7000000000000001\u001b[0m\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.92207e-04\tAbsError: 1.11515e+11\n", - " Region: \"zone_1\"\tRelError: 5.98028e-05\tAbsError: 5.69528e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.97866e-05\tAbsError: 7.69182e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.61427e-08\tAbsError: 5.61837e-06\n", - " Region: \"zone_3\"\tRelError: 3.32405e-04\tAbsError: 1.11515e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.85875e-06\tAbsError: 5.12772e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.80258e-06\tAbsError: 6.02373e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.18727e-04\tAbsError: 7.87224e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.61498e-08\tAbsError: 5.62096e-06\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.79873e+00\tAbsError: 1.72669e+15\n", - " Region: \"zone_1\"\tRelError: 1.69883e+00\tAbsError: 1.92473e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.69827e+00\tAbsError: 3.36867e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.53976e-04\tAbsError: 1.92136e-01\n", - " Region: \"zone_3\"\tRelError: 9.99032e-02\tAbsError: 1.72669e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.09613e-02\tAbsError: 8.58572e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.79843e-02\tAbsError: 8.68118e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.04024e-02\tAbsError: 3.67321e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.55146e-04\tAbsError: 1.92536e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.07616e+01\tAbsError: 3.02291e+15\n", - " Region: \"zone_1\"\tRelError: 9.27113e+00\tAbsError: 6.52674e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.27103e+00\tAbsError: 3.07634e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.92954e-05\tAbsError: 3.45040e-02\n", - " Region: \"zone_3\"\tRelError: 1.49044e+00\tAbsError: 3.02291e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40308e-01\tAbsError: 1.49698e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.14159e-01\tAbsError: 1.52592e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35875e-01\tAbsError: 3.07635e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.92954e-05\tAbsError: 3.45040e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.44971e+01\tAbsError: 3.04084e+16\n", - " Region: \"zone_1\"\tRelError: 3.26810e+01\tAbsError: 4.23840e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.26810e+01\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62519e-09\tAbsError: 5.64640e-07\n", - " Region: \"zone_3\"\tRelError: 1.81608e+00\tAbsError: 3.04084e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80898e-01\tAbsError: 1.52254e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.80422e-01\tAbsError: 1.51830e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.54761e-01\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62539e-09\tAbsError: 5.64711e-07\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.32281e-05\tAbsError: 4.39719e+09\n", - " Region: \"zone_1\"\tRelError: 2.01633e-06\tAbsError: 6.48161e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.99769e-06\tAbsError: 2.67095e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.86442e-08\tAbsError: 6.47894e-06\n", - " Region: \"zone_3\"\tRelError: 1.12117e-05\tAbsError: 4.39719e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.71767e-07\tAbsError: 3.55045e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.15277e-07\tAbsError: 8.46742e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07060e-05\tAbsError: 2.77920e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.86479e-08\tAbsError: 6.48033e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:11\u001b[0m.\u001b[1;36m773\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.63125\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.94222e+01\tAbsError: 1.62190e+16\n", - " Region: \"zone_1\"\tRelError: 2.76662e+01\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.76662e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.29578e-10\tAbsError: 1.49268e-07\n", - " Region: \"zone_3\"\tRelError: 1.75598e+00\tAbsError: 1.62190e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69267e-01\tAbsError: 8.18784e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.68971e-01\tAbsError: 8.03117e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.17740e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.29628e-10\tAbsError: 1.49286e-07\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.95883e+00\tAbsError: 2.59839e+14\n", - " Region: \"zone_1\"\tRelError: 1.13863e-01\tAbsError: 1.16709e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13830e-01\tAbsError: 5.73242e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.34838e-05\tAbsError: 1.16136e-02\n", - " Region: \"zone_3\"\tRelError: 3.84497e+00\tAbsError: 2.59839e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.47446e-03\tAbsError: 1.31141e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.26729e-03\tAbsError: 1.28698e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.83620e+00\tAbsError: 5.93737e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.35121e-05\tAbsError: 1.16231e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.22732e+00\tAbsError: 2.06865e+15\n", - " Region: \"zone_1\"\tRelError: 2.78568e-01\tAbsError: 2.74627e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78563e-01\tAbsError: 2.58185e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73142e-06\tAbsError: 1.64416e-03\n", - " Region: \"zone_3\"\tRelError: 9.48751e-01\tAbsError: 2.06865e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.44918e-01\tAbsError: 9.02348e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.89155e-01\tAbsError: 1.16630e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14673e-01\tAbsError: 2.51147e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73142e-06\tAbsError: 1.64416e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.21062e+00\tAbsError: 3.24117e+16\n", - " Region: \"zone_1\"\tRelError: 1.60959e+00\tAbsError: 1.60634e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60922e+00\tAbsError: 3.24492e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.69101e-04\tAbsError: 1.28185e-01\n", - " Region: \"zone_3\"\tRelError: 1.60102e+00\tAbsError: 3.24117e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57897e-01\tAbsError: 1.62735e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.20964e-01\tAbsError: 1.61383e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.21796e-01\tAbsError: 3.24492e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.69101e-04\tAbsError: 1.28185e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.57455e+00\tAbsError: 1.59389e+16\n", - " Region: \"zone_1\"\tRelError: 1.04759e+00\tAbsError: 1.06162e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04737e+00\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17045e-04\tAbsError: 7.53990e-02\n", - " Region: \"zone_3\"\tRelError: 1.52696e+00\tAbsError: 1.59389e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37511e-01\tAbsError: 7.87332e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.04735e-01\tAbsError: 8.06553e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.84502e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17045e-04\tAbsError: 7.53990e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.44977e+00\tAbsError: 8.96903e+15\n", - " Region: \"zone_1\"\tRelError: 3.70568e+00\tAbsError: 4.22092e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.70568e+00\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.36239e-10\tAbsError: 1.51767e-07\n", - " Region: \"zone_3\"\tRelError: 1.74409e+00\tAbsError: 8.96903e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80173e-01\tAbsError: 4.80961e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.80046e-01\tAbsError: 4.15942e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.83872e-01\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.36414e-10\tAbsError: 1.51827e-07\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.57963e-01\tAbsError: 1.91072e+13\n", - " Region: \"zone_1\"\tRelError: 2.78504e-02\tAbsError: 5.69747e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78339e-02\tAbsError: 4.27049e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.64146e-05\tAbsError: 5.69320e-03\n", - " Region: \"zone_3\"\tRelError: 7.30113e-01\tAbsError: 1.91072e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.16966e-04\tAbsError: 9.66509e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.22761e-04\tAbsError: 9.44216e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.29456e-01\tAbsError: 4.53717e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.64194e-05\tAbsError: 5.69496e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 7.18897e+00\tAbsError: 6.29402e+14\n", - " Region: \"zone_1\"\tRelError: 6.86170e+00\tAbsError: 2.22868e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.86166e+00\tAbsError: 9.16572e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.77613e-05\tAbsError: 1.31211e-02\n", - " Region: \"zone_3\"\tRelError: 3.27267e-01\tAbsError: 6.29402e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84319e-01\tAbsError: 3.28649e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.08857e-01\tAbsError: 3.00753e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.40527e-02\tAbsError: 9.16579e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.77613e-05\tAbsError: 1.31211e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.77741e+00\tAbsError: 2.06093e+16\n", - " Region: \"zone_1\"\tRelError: 1.65058e-01\tAbsError: 9.97024e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.64845e-01\tAbsError: 2.55931e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.13439e-04\tAbsError: 7.41092e-02\n", - " Region: \"zone_3\"\tRelError: 1.61236e+00\tAbsError: 2.06093e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.71347e-01\tAbsError: 1.02911e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.25181e-01\tAbsError: 1.03182e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 7.15614e-01\tAbsError: 2.50412e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.13439e-04\tAbsError: 7.41092e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.14822e+00\tAbsError: 9.83178e+15\n", - " Region: \"zone_1\"\tRelError: 1.39457e-01\tAbsError: 7.32841e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39320e-01\tAbsError: 2.58400e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36592e-04\tAbsError: 4.74441e-02\n", - " Region: \"zone_3\"\tRelError: 1.00877e+00\tAbsError: 9.83178e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43427e-01\tAbsError: 4.83336e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.90483e-01\tAbsError: 4.99841e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74720e-01\tAbsError: 2.58193e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36592e-04\tAbsError: 4.74441e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.82964e+00\tAbsError: 5.08570e+15\n", - " Region: \"zone_1\"\tRelError: 2.92321e-01\tAbsError: 7.19255e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.92207e-01\tAbsError: 3.22433e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.14202e-04\tAbsError: 3.96822e-02\n", - " Region: \"zone_3\"\tRelError: 1.53731e+00\tAbsError: 5.08570e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57973e-01\tAbsError: 2.41919e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.30808e-01\tAbsError: 2.66650e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.48419e-01\tAbsError: 3.22434e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.14202e-04\tAbsError: 3.96822e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.70944e-01\tAbsError: 1.19240e+13\n", - " Region: \"zone_1\"\tRelError: 2.58368e-02\tAbsError: 7.03989e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.58348e-02\tAbsError: 2.13236e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.02254e-06\tAbsError: 7.01857e-04\n", - " Region: \"zone_3\"\tRelError: 3.45107e-01\tAbsError: 1.19240e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.00810e-04\tAbsError: 6.03241e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.97504e-04\tAbsError: 5.89158e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.44707e-01\tAbsError: 2.37149e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.02313e-06\tAbsError: 7.02082e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.42105e-01\tAbsError: 9.57843e+13\n", - " Region: \"zone_1\"\tRelError: 5.64317e-01\tAbsError: 1.44974e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.64276e-01\tAbsError: 1.24104e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14024e-05\tAbsError: 1.43733e-02\n", - " Region: \"zone_3\"\tRelError: 7.77880e-02\tAbsError: 9.57843e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.25473e-02\tAbsError: 4.71405e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.65020e-03\tAbsError: 4.86438e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.95491e-02\tAbsError: 1.28397e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14024e-05\tAbsError: 1.43733e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.45845e+00\tAbsError: 6.57748e+15\n", - " Region: \"zone_1\"\tRelError: 5.68646e-01\tAbsError: 4.93656e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.68537e-01\tAbsError: 1.13358e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.09536e-04\tAbsError: 3.80298e-02\n", - " Region: \"zone_3\"\tRelError: 8.89808e-01\tAbsError: 6.57748e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07117e-01\tAbsError: 3.60805e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.24797e-01\tAbsError: 2.96943e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.57785e-01\tAbsError: 1.13359e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.09601e-04\tAbsError: 3.80526e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 9.17087e-01\tAbsError: 2.70112e+15\n", - " Region: \"zone_1\"\tRelError: 4.13278e-01\tAbsError: 1.18036e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.12964e-01\tAbsError: 9.16529e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.13541e-04\tAbsError: 1.08871e-01\n", - " Region: \"zone_3\"\tRelError: 5.03809e-01\tAbsError: 2.70112e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.83333e-01\tAbsError: 1.43386e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03452e-01\tAbsError: 1.26726e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.16711e-01\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.13541e-04\tAbsError: 1.08871e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.16025e+00\tAbsError: 3.70042e+15\n", - " Region: \"zone_1\"\tRelError: 1.24653e-01\tAbsError: 3.31998e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.24632e-01\tAbsError: 2.58287e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.12139e-05\tAbsError: 7.37111e-03\n", - " Region: \"zone_3\"\tRelError: 1.03560e+00\tAbsError: 3.70042e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.75009e-01\tAbsError: 1.71136e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.25597e-01\tAbsError: 1.98907e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.34975e-01\tAbsError: 2.56848e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.12245e-05\tAbsError: 7.37495e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.15873e-02\tAbsError: 1.55712e+12\n", - " Region: \"zone_1\"\tRelError: 4.62135e-03\tAbsError: 3.47131e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.62035e-03\tAbsError: 2.68329e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.98917e-07\tAbsError: 3.46863e-04\n", - " Region: \"zone_3\"\tRelError: 5.69659e-02\tAbsError: 1.55712e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.63013e-05\tAbsError: 7.86152e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.59055e-05\tAbsError: 7.70966e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.69127e-02\tAbsError: 3.00469e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.99081e-07\tAbsError: 3.46996e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.36557e-01\tAbsError: 7.18470e+12\n", - " Region: \"zone_1\"\tRelError: 1.16158e-01\tAbsError: 1.78279e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16157e-01\tAbsError: 6.59165e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.94530e-07\tAbsError: 1.71687e-04\n", - " Region: \"zone_3\"\tRelError: 2.03993e-02\tAbsError: 7.18470e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.98223e-04\tAbsError: 2.78831e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.37326e-04\tAbsError: 4.39639e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.92632e-02\tAbsError: 6.83641e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.94530e-07\tAbsError: 1.71687e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.87235e-01\tAbsError: 1.50716e+15\n", - " Region: \"zone_1\"\tRelError: 5.41370e-02\tAbsError: 1.84184e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.36069e-02\tAbsError: 3.24655e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.30067e-04\tAbsError: 1.83860e-01\n", - " Region: \"zone_3\"\tRelError: 1.33098e-01\tAbsError: 1.50716e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.05112e-02\tAbsError: 7.09659e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.73893e-02\tAbsError: 7.97504e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.46658e-02\tAbsError: 3.54468e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.31323e-04\tAbsError: 1.84290e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 4.27279e-01\tAbsError: 8.17053e+14\n", - " Region: \"zone_1\"\tRelError: 1.09940e-01\tAbsError: 2.21034e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09304e-01\tAbsError: 3.29075e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.36020e-04\tAbsError: 2.20705e-01\n", - " Region: \"zone_3\"\tRelError: 3.17339e-01\tAbsError: 8.17053e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.72653e-02\tAbsError: 1.99598e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.68899e-02\tAbsError: 6.17455e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.42547e-01\tAbsError: 3.29140e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.36020e-04\tAbsError: 2.20705e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.84371e-01\tAbsError: 1.29148e+15\n", - " Region: \"zone_1\"\tRelError: 8.57081e-02\tAbsError: 3.42913e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.56412e-02\tAbsError: 1.10531e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.68838e-05\tAbsError: 2.32383e-02\n", - " Region: \"zone_3\"\tRelError: 3.98663e-01\tAbsError: 1.29148e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.18101e-01\tAbsError: 6.87691e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.36005e-01\tAbsError: 6.03794e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.44889e-02\tAbsError: 1.10532e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.68838e-05\tAbsError: 2.32383e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.74137e-02\tAbsError: 7.24736e+11\n", - " Region: \"zone_1\"\tRelError: 2.11554e-03\tAbsError: 6.11484e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.11537e-03\tAbsError: 1.19465e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75486e-07\tAbsError: 6.10289e-05\n", - " Region: \"zone_3\"\tRelError: 2.52982e-02\tAbsError: 7.24736e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.22609e-05\tAbsError: 3.66403e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.20047e-05\tAbsError: 3.58333e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.52738e-02\tAbsError: 1.35544e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75553e-07\tAbsError: 6.10532e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.13498e-03\tAbsError: 1.41105e+11\n", - " Region: \"zone_1\"\tRelError: 2.73398e-03\tAbsError: 4.76357e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.73260e-03\tAbsError: 1.35633e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37060e-06\tAbsError: 4.76221e-04\n", - " Region: \"zone_3\"\tRelError: 4.01007e-04\tAbsError: 1.41105e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.96062e-06\tAbsError: 6.85210e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.81427e-06\tAbsError: 7.25836e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.87862e-04\tAbsError: 1.38229e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37060e-06\tAbsError: 4.76221e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.84987e+00\tAbsError: 2.28445e+14\n", - " Region: \"zone_1\"\tRelError: 5.95418e-02\tAbsError: 1.11721e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95098e-02\tAbsError: 5.68051e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.20442e-05\tAbsError: 1.11153e-02\n", - " Region: \"zone_3\"\tRelError: 2.79033e+00\tAbsError: 2.28445e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43841e-03\tAbsError: 1.14936e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.24161e-03\tAbsError: 1.13509e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78161e+00\tAbsError: 5.82573e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.20714e-05\tAbsError: 1.11244e-02\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 5.34536e-03\tAbsError: 1.27222e+11\n", - " Region: \"zone_1\"\tRelError: 4.35109e-04\tAbsError: 2.41289e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.35040e-04\tAbsError: 2.19915e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.93177e-08\tAbsError: 2.41070e-05\n", - " Region: \"zone_3\"\tRelError: 4.91025e-03\tAbsError: 1.27222e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.15267e-06\tAbsError: 6.42044e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.11288e-06\tAbsError: 6.30181e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.90592e-03\tAbsError: 2.48653e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.93443e-08\tAbsError: 2.41166e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.01035e-01\tAbsError: 1.64733e+14\n", - " Region: \"zone_1\"\tRelError: 2.03094e-01\tAbsError: 1.60100e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03048e-01\tAbsError: 7.96658e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.59052e-05\tAbsError: 1.59303e-02\n", - " Region: \"zone_3\"\tRelError: 4.97941e-01\tAbsError: 1.64733e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17881e-03\tAbsError: 7.88164e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.07895e-03\tAbsError: 8.59168e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.85637e-01\tAbsError: 8.00849e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.59052e-05\tAbsError: 1.59303e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.12960e-01\tAbsError: 2.37713e+14\n", - " Region: \"zone_1\"\tRelError: 5.59460e-03\tAbsError: 2.42560e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.52529e-03\tAbsError: 1.96929e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.93040e-05\tAbsError: 2.40591e-02\n", - " Region: \"zone_3\"\tRelError: 1.07365e-01\tAbsError: 2.37713e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.22456e-02\tAbsError: 1.40642e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.01600e-02\tAbsError: 9.70713e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.48903e-02\tAbsError: 2.04946e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.93040e-05\tAbsError: 2.40591e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.31814e-02\tAbsError: 4.58362e+11\n", - " Region: \"zone_1\"\tRelError: 1.15315e-02\tAbsError: 2.80900e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15314e-02\tAbsError: 2.57528e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.01667e-08\tAbsError: 2.78324e-05\n", - " Region: \"zone_3\"\tRelError: 1.64997e-03\tAbsError: 4.58362e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47024e-05\tAbsError: 2.30121e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.45967e-05\tAbsError: 2.28241e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60059e-03\tAbsError: 2.62890e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.01667e-08\tAbsError: 2.78324e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.45765e-01\tAbsError: 1.69493e+13\n", - " Region: \"zone_1\"\tRelError: 6.80757e-03\tAbsError: 5.51469e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.79169e-03\tAbsError: 4.23796e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.58863e-05\tAbsError: 5.51045e-03\n", - " Region: \"zone_3\"\tRelError: 2.38957e-01\tAbsError: 1.69493e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.17749e-04\tAbsError: 8.55131e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.22485e-04\tAbsError: 8.39799e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.38301e-01\tAbsError: 4.46238e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.58903e-05\tAbsError: 5.51193e-03\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.94906e-03\tAbsError: 4.76686e+10\n", - " Region: \"zone_1\"\tRelError: 1.58013e-04\tAbsError: 5.01989e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.57999e-04\tAbsError: 8.43998e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.44100e-08\tAbsError: 5.01145e-06\n", - " Region: \"zone_3\"\tRelError: 1.79105e-03\tAbsError: 4.76686e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.07419e-07\tAbsError: 2.40867e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.89452e-07\tAbsError: 2.35820e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.78944e-03\tAbsError: 9.47662e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.44155e-08\tAbsError: 5.01349e-06\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.04323e-01\tAbsError: 1.53102e+13\n", - " Region: \"zone_1\"\tRelError: 3.15774e-02\tAbsError: 7.15567e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.15568e-02\tAbsError: 7.10876e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.05999e-05\tAbsError: 7.14856e-03\n", - " Region: \"zone_3\"\tRelError: 7.27454e-02\tAbsError: 1.53102e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94207e-04\tAbsError: 7.65839e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.98721e-04\tAbsError: 7.65181e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.15319e-02\tAbsError: 7.17354e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.06009e-05\tAbsError: 7.14900e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.99564e-02\tAbsError: 1.22577e+13\n", - " Region: \"zone_1\"\tRelError: 3.41063e-03\tAbsError: 2.57675e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.40992e-03\tAbsError: 1.00926e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.11464e-07\tAbsError: 2.47582e-04\n", - " Region: \"zone_3\"\tRelError: 3.65458e-02\tAbsError: 1.22577e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.23239e-04\tAbsError: 4.97251e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.40102e-04\tAbsError: 7.28515e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.47817e-02\tAbsError: 1.03524e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.11760e-07\tAbsError: 2.47692e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.25913e-03\tAbsError: 2.71128e+10\n", - " Region: \"zone_1\"\tRelError: 1.10973e-03\tAbsError: 2.99279e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10965e-03\tAbsError: 1.77983e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.60783e-08\tAbsError: 2.99101e-05\n", - " Region: \"zone_3\"\tRelError: 1.49391e-04\tAbsError: 2.71128e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61984e-06\tAbsError: 1.29863e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.63350e-06\tAbsError: 1.41265e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46052e-04\tAbsError: 1.82225e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.61134e-08\tAbsError: 2.99224e-05\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 4.29595e-04\tAbsError: 9.92758e+09\n", - " Region: \"zone_1\"\tRelError: 3.58438e-05\tAbsError: 1.69659e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.58389e-05\tAbsError: 1.80123e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.87324e-09\tAbsError: 1.69479e-06\n", - " Region: \"zone_3\"\tRelError: 3.93751e-04\tAbsError: 9.92758e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68110e-07\tAbsError: 5.00991e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.64709e-07\tAbsError: 4.91766e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.93414e-04\tAbsError: 2.01959e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.87521e-09\tAbsError: 1.69552e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.08991e-01\tAbsError: 1.05549e+13\n", - " Region: \"zone_1\"\tRelError: 4.83463e-03\tAbsError: 6.90627e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.83265e-03\tAbsError: 2.14369e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.98379e-06\tAbsError: 6.88484e-04\n", - " Region: \"zone_3\"\tRelError: 2.04156e-01\tAbsError: 1.05549e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.00089e-04\tAbsError: 5.32743e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.97434e-04\tAbsError: 5.22743e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03757e-01\tAbsError: 2.35062e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.98435e-06\tAbsError: 6.88703e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.82885e-02\tAbsError: 7.75343e+12\n", - " Region: \"zone_1\"\tRelError: 1.74263e-02\tAbsError: 1.11082e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74231e-02\tAbsError: 3.27682e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.18949e-06\tAbsError: 1.10754e-03\n", - " Region: \"zone_3\"\tRelError: 4.08622e-02\tAbsError: 7.75343e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.01160e-04\tAbsError: 3.88269e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.99390e-04\tAbsError: 3.87074e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.02585e-02\tAbsError: 3.34987e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.19059e-06\tAbsError: 1.10796e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.30988e-04\tAbsError: 2.29044e+11\n", - " Region: \"zone_1\"\tRelError: 2.79478e-05\tAbsError: 7.85541e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.56871e-05\tAbsError: 1.43357e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.26068e-06\tAbsError: 7.85398e-04\n", - " Region: \"zone_3\"\tRelError: 3.03040e-04\tAbsError: 2.29044e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.45448e-05\tAbsError: 1.71014e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.83903e-06\tAbsError: 5.80300e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.79396e-04\tAbsError: 1.44178e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.26072e-06\tAbsError: 7.85427e-04\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 1.38753e-04\tAbsError: 3.26741e+09\n", - " Region: \"zone_1\"\tRelError: 1.15196e-05\tAbsError: 3.90487e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15185e-05\tAbsError: 5.98873e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12109e-09\tAbsError: 3.89888e-07\n", - " Region: \"zone_3\"\tRelError: 1.27233e-04\tAbsError: 3.26741e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.53697e-08\tAbsError: 1.65038e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.41124e-08\tAbsError: 1.61704e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.27122e-04\tAbsError: 6.69167e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12155e-09\tAbsError: 3.90056e-07\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 9.89584e-04\tAbsError: 2.93050e+10\n", - " Region: \"zone_1\"\tRelError: 8.69289e-04\tAbsError: 3.58476e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.69279e-04\tAbsError: 1.49163e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.02736e-08\tAbsError: 3.56984e-06\n", - " Region: \"zone_3\"\tRelError: 1.20295e-04\tAbsError: 2.93050e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52554e-06\tAbsError: 1.64489e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.51838e-06\tAbsError: 1.28561e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17241e-04\tAbsError: 1.55101e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.02768e-08\tAbsError: 3.57094e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.20041e-02\tAbsError: 1.39093e+12\n", - " Region: \"zone_1\"\tRelError: 7.66248e-04\tAbsError: 3.38842e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.65272e-04\tAbsError: 2.70408e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.75473e-07\tAbsError: 3.38572e-04\n", - " Region: \"zone_3\"\tRelError: 3.12378e-02\tAbsError: 1.39093e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.64460e-05\tAbsError: 7.00708e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.61310e-05\tAbsError: 6.90221e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.11843e-02\tAbsError: 3.00354e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.75637e-07\tAbsError: 3.38624e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.09210e-02\tAbsError: 1.22286e+12\n", - " Region: \"zone_1\"\tRelError: 3.28469e-03\tAbsError: 4.72819e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.28333e-03\tAbsError: 4.87030e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36013e-06\tAbsError: 4.72332e-04\n", - " Region: \"zone_3\"\tRelError: 7.63634e-03\tAbsError: 1.22286e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.75678e-05\tAbsError: 6.11672e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.73305e-05\tAbsError: 6.11193e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 7.54008e-03\tAbsError: 5.02425e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36049e-06\tAbsError: 4.72455e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.15307e-03\tAbsError: 7.58272e+11\n", - " Region: \"zone_1\"\tRelError: 2.77988e-04\tAbsError: 3.88732e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.77877e-04\tAbsError: 3.87449e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10861e-07\tAbsError: 3.84857e-05\n", - " Region: \"zone_3\"\tRelError: 2.87508e-03\tAbsError: 7.58272e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.80273e-05\tAbsError: 3.84531e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.79342e-05\tAbsError: 3.73741e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.79901e-03\tAbsError: 4.06154e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10883e-07\tAbsError: 3.84939e-05\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 3.30599e-05\tAbsError: 7.54140e+08\n", - " Region: \"zone_1\"\tRelError: 2.78667e-06\tAbsError: 1.20638e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78633e-06\tAbsError: 1.39905e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.46482e-10\tAbsError: 1.20498e-07\n", - " Region: \"zone_3\"\tRelError: 3.02733e-05\tAbsError: 7.54140e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27759e-08\tAbsError: 3.80597e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.25046e-08\tAbsError: 3.73543e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 3.02476e-05\tAbsError: 1.56263e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.46627e-10\tAbsError: 1.20551e-07\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.48739e-04\tAbsError: 3.41314e+09\n", - " Region: \"zone_1\"\tRelError: 1.31134e-04\tAbsError: 2.06494e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31128e-04\tAbsError: 1.91971e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.93716e-09\tAbsError: 2.06302e-06\n", - " Region: \"zone_3\"\tRelError: 1.76048e-05\tAbsError: 3.41314e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88514e-07\tAbsError: 1.94837e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.89063e-07\tAbsError: 1.46477e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72213e-05\tAbsError: 1.99642e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.93836e-09\tAbsError: 2.06344e-06\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.47103e-02\tAbsError: 6.45496e+11\n", - " Region: \"zone_1\"\tRelError: 3.47376e-04\tAbsError: 5.99802e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.47204e-04\tAbsError: 1.21236e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72111e-07\tAbsError: 5.98589e-05\n", - " Region: \"zone_3\"\tRelError: 1.43629e-02\tAbsError: 6.45496e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.22916e-05\tAbsError: 3.25623e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.20745e-05\tAbsError: 3.19873e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43383e-02\tAbsError: 1.35138e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72176e-07\tAbsError: 5.98823e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.38843e-03\tAbsError: 5.18838e+11\n", - " Region: \"zone_1\"\tRelError: 1.31867e-03\tAbsError: 9.39018e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31840e-03\tAbsError: 1.99779e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69826e-07\tAbsError: 9.37020e-05\n", - " Region: \"zone_3\"\tRelError: 3.06976e-03\tAbsError: 5.18838e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95362e-05\tAbsError: 2.68345e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.93671e-05\tAbsError: 2.50493e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.03058e-03\tAbsError: 2.07424e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69859e-07\tAbsError: 9.37138e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 7.33109e-05\tAbsError: 1.99171e+09\n", - " Region: \"zone_1\"\tRelError: 6.45108e-05\tAbsError: 3.50573e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 6.45098e-05\tAbsError: 1.06453e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00585e-09\tAbsError: 3.49509e-07\n", - " Region: \"zone_3\"\tRelError: 8.80008e-06\tAbsError: 1.99171e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03719e-07\tAbsError: 1.17952e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03272e-07\tAbsError: 8.12185e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 8.59208e-06\tAbsError: 1.10473e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00600e-09\tAbsError: 3.49562e-07\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.50049e-04\tAbsError: 3.69775e+10\n", - " Region: \"zone_1\"\tRelError: 2.23036e-05\tAbsError: 4.83607e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.21645e-05\tAbsError: 2.37427e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39124e-07\tAbsError: 4.83369e-05\n", - " Region: \"zone_3\"\tRelError: 2.27745e-04\tAbsError: 3.69775e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12670e-06\tAbsError: 1.72736e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.15245e-06\tAbsError: 1.97039e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.23327e-04\tAbsError: 2.46197e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39176e-07\tAbsError: 4.83551e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:24\u001b[0m.\u001b[1;36m900\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.7000000000000001\u001b[0m\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.85426e-03\tAbsError: 1.14136e+11\n", - " Region: \"zone_1\"\tRelError: 6.76752e-05\tAbsError: 2.36054e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.76074e-05\tAbsError: 2.24599e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.78070e-08\tAbsError: 2.35829e-05\n", - " Region: \"zone_3\"\tRelError: 2.78659e-03\tAbsError: 1.14136e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17375e-06\tAbsError: 5.74776e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.14053e-06\tAbsError: 5.66581e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78221e-03\tAbsError: 2.49675e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.78330e-08\tAbsError: 2.35924e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 9.50080e-04\tAbsError: 1.03863e+11\n", - " Region: \"zone_1\"\tRelError: 2.85910e-04\tAbsError: 3.37412e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.85814e-04\tAbsError: 4.14946e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.68675e-08\tAbsError: 3.36997e-05\n", - " Region: \"zone_3\"\tRelError: 6.64170e-04\tAbsError: 1.03863e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.88184e-06\tAbsError: 5.40187e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.85553e-06\tAbsError: 4.98443e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 6.56335e-04\tAbsError: 4.30256e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.69043e-08\tAbsError: 3.37128e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:26\u001b[0m.\u001b[1;36m048\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:26\u001b[0m.\u001b[1;36m080\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.0 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:26\u001b[0m.\u001b[1;36m119\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.25000e-04\tAbsError: 4.75549e+10\n", - " Region: \"zone_1\"\tRelError: 1.99583e-05\tAbsError: 5.32788e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.99431e-05\tAbsError: 2.25774e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52698e-08\tAbsError: 5.30530e-06\n", - " Region: \"zone_3\"\tRelError: 2.05042e-04\tAbsError: 4.75549e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.31012e-06\tAbsError: 2.68418e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.30114e-06\tAbsError: 2.07131e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.00415e-04\tAbsError: 2.37542e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52742e-08\tAbsError: 5.30684e-06\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.94222e+01\tAbsError: 1.62190e+16\n", - " Region: \"zone_1\"\tRelError: 2.76662e+01\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.76662e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.29578e-10\tAbsError: 1.49268e-07\n", - " Region: \"zone_3\"\tRelError: 1.75598e+00\tAbsError: 1.62190e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69267e-01\tAbsError: 8.18784e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.68971e-01\tAbsError: 8.03117e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.17740e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.29628e-10\tAbsError: 1.49286e-07\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.04232e-03\tAbsError: 4.27220e+10\n", - " Region: \"zone_1\"\tRelError: 2.46914e-05\tAbsError: 4.94110e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.46772e-05\tAbsError: 8.59123e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41822e-08\tAbsError: 4.93251e-06\n", - " Region: \"zone_3\"\tRelError: 1.01763e-03\tAbsError: 4.27220e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.14485e-07\tAbsError: 2.15406e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.99005e-07\tAbsError: 2.11814e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01600e-03\tAbsError: 9.49058e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41877e-08\tAbsError: 4.93449e-06\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 3.25927e-04\tAbsError: 3.72018e+10\n", - " Region: \"zone_1\"\tRelError: 9.80813e-05\tAbsError: 7.68282e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 9.80593e-05\tAbsError: 1.46928e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.20415e-08\tAbsError: 7.66812e-06\n", - " Region: \"zone_3\"\tRelError: 2.27846e-04\tAbsError: 3.72018e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36089e-06\tAbsError: 1.97599e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.34801e-06\tAbsError: 1.74420e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25115e-04\tAbsError: 1.52180e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.20501e-08\tAbsError: 7.67121e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.14608e+03\tAbsError: 7.70037e+17\n", - " Region: \"zone_1\"\tRelError: 3.19069e+01\tAbsError: 8.44807e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.19069e+01\tAbsError: 8.44806e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.48266e-11\tAbsError: 2.95006e-08\n", - " Region: \"zone_3\"\tRelError: 1.11417e+03\tAbsError: 7.70037e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.48445e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10104e+03\tAbsError: 4.21592e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 4.13482e+00\tAbsError: 8.44807e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.48621e-11\tAbsError: 2.95137e-08\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.07877e-05\tAbsError: 5.07473e+09\n", - " Region: \"zone_1\"\tRelError: 2.74585e-06\tAbsError: 3.27783e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.73642e-06\tAbsError: 2.71292e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.42651e-09\tAbsError: 3.27512e-06\n", - " Region: \"zone_3\"\tRelError: 2.80418e-05\tAbsError: 5.07473e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.64686e-07\tAbsError: 2.90165e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.65753e-07\tAbsError: 2.17308e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.75020e-05\tAbsError: 2.83440e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.42815e-09\tAbsError: 3.27570e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:27\u001b[0m.\u001b[1;36m453\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:27\u001b[0m.\u001b[1;36m453\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7374999999999999\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 2.30254e-04\tAbsError: 8.94840e+09\n", - " Region: \"zone_1\"\tRelError: 5.45902e-06\tAbsError: 1.66915e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.45423e-06\tAbsError: 1.84279e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.79393e-09\tAbsError: 1.66731e-06\n", - " Region: \"zone_3\"\tRelError: 2.24795e-04\tAbsError: 8.94840e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.70555e-07\tAbsError: 4.50630e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.67655e-07\tAbsError: 4.44210e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.24452e-04\tAbsError: 2.03358e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.79583e-09\tAbsError: 1.66801e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.57455e+00\tAbsError: 1.59389e+16\n", - " Region: \"zone_1\"\tRelError: 1.04759e+00\tAbsError: 1.06162e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04737e+00\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17045e-04\tAbsError: 7.53990e-02\n", - " Region: \"zone_3\"\tRelError: 1.52696e+00\tAbsError: 1.59389e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37511e-01\tAbsError: 7.87332e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.04735e-01\tAbsError: 8.06553e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.84502e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17045e-04\tAbsError: 7.53990e-02\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 7.72661e-05\tAbsError: 8.43440e+09\n", - " Region: \"zone_1\"\tRelError: 2.32650e-05\tAbsError: 2.49052e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.32578e-05\tAbsError: 3.39814e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.14902e-09\tAbsError: 2.48712e-06\n", - " Region: \"zone_3\"\tRelError: 5.40011e-05\tAbsError: 8.43440e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.08161e-07\tAbsError: 4.47974e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.05735e-07\tAbsError: 3.95466e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 5.33800e-05\tAbsError: 3.51782e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.15190e-09\tAbsError: 2.48816e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:28\u001b[0m.\u001b[1;36m160\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.8\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 7.84156e+01\tAbsError: 5.47936e+17\n", - " Region: \"zone_1\"\tRelError: 4.40326e+01\tAbsError: 3.51503e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.40318e+01\tAbsError: 8.10225e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.80415e-04\tAbsError: 2.70481e-01\n", - " Region: \"zone_3\"\tRelError: 3.43830e+01\tAbsError: 5.47936e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.48014e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.23022e+01\tAbsError: 2.99922e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.30800e+01\tAbsError: 8.10225e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.81664e-04\tAbsError: 2.70911e-01\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 7.44231e-05\tAbsError: 2.94597e+09\n", - " Region: \"zone_1\"\tRelError: 1.76441e-06\tAbsError: 3.86023e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76330e-06\tAbsError: 6.12245e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10815e-09\tAbsError: 3.85411e-07\n", - " Region: \"zone_3\"\tRelError: 7.26587e-05\tAbsError: 2.94597e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.61898e-08\tAbsError: 1.48485e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.50971e-08\tAbsError: 1.46112e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 7.25463e-05\tAbsError: 6.73509e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10859e-09\tAbsError: 3.85574e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:28\u001b[0m.\u001b[1;36m964\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: 0.85\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.37306e+01\tAbsError: 2.80943e+16\n", - " Region: \"zone_1\"\tRelError: 5.19223e+01\tAbsError: 4.22096e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.19223e+01\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52166e-09\tAbsError: 5.28680e-07\n", - " Region: \"zone_3\"\tRelError: 1.80829e+00\tAbsError: 2.80943e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.79526e-01\tAbsError: 1.40876e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.79080e-01\tAbsError: 1.40066e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49679e-01\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52185e-09\tAbsError: 5.28749e-07\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.14822e+00\tAbsError: 9.83178e+15\n", - " Region: \"zone_1\"\tRelError: 1.39457e-01\tAbsError: 7.32841e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39320e-01\tAbsError: 2.58400e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36592e-04\tAbsError: 4.74441e-02\n", - " Region: \"zone_3\"\tRelError: 1.00877e+00\tAbsError: 9.83178e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43427e-01\tAbsError: 4.83336e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.90483e-01\tAbsError: 4.99841e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74720e-01\tAbsError: 2.58193e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36592e-04\tAbsError: 4.74441e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.91796e+01\tAbsError: 8.00136e+16\n", - " Region: \"zone_1\"\tRelError: 1.61687e+01\tAbsError: 4.09548e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.61687e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75011e-09\tAbsError: 6.08861e-07\n", - " Region: \"zone_3\"\tRelError: 3.01093e+00\tAbsError: 8.00136e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.66958e-01\tAbsError: 4.00295e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.65547e-01\tAbsError: 3.99841e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.47843e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75082e-09\tAbsError: 6.09112e-07\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.27390e+04\tAbsError: 1.60623e+17\n", - " Region: \"zone_1\"\tRelError: 7.10484e+00\tAbsError: 2.18687e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 7.09880e+00\tAbsError: 7.72092e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.04153e-03\tAbsError: 2.10967e+00\n", - " Region: \"zone_3\"\tRelError: 1.27319e+04\tAbsError: 1.60623e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.56840e+03\tAbsError: 8.48442e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.78850e+03\tAbsError: 7.57789e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.74960e+02\tAbsError: 7.72115e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.04153e-03\tAbsError: 2.10967e+00\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.07467e+00\tAbsError: 2.93721e+16\n", - " Region: \"zone_1\"\tRelError: 4.84260e-01\tAbsError: 1.51192e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.83918e-01\tAbsError: 3.22431e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.42489e-04\tAbsError: 1.18949e-01\n", - " Region: \"zone_3\"\tRelError: 1.59041e+00\tAbsError: 2.93721e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.54708e-01\tAbsError: 1.48386e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.21421e-01\tAbsError: 1.45335e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.13935e-01\tAbsError: 3.22432e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.42489e-04\tAbsError: 1.18949e-01\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.87370e+01\tAbsError: 1.65062e+17\n", - " Region: \"zone_1\"\tRelError: 2.01385e+01\tAbsError: 4.23836e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.01385e+01\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.42729e-10\tAbsError: 1.19199e-07\n", - " Region: \"zone_3\"\tRelError: 3.85984e+01\tAbsError: 1.65062e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.75626e-01\tAbsError: 8.33506e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.72789e-01\tAbsError: 8.17119e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.70500e+01\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.42869e-10\tAbsError: 1.19251e-07\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 9.17087e-01\tAbsError: 2.70112e+15\n", - " Region: \"zone_1\"\tRelError: 4.13278e-01\tAbsError: 1.18036e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.12964e-01\tAbsError: 9.16529e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.13541e-04\tAbsError: 1.08871e-01\n", - " Region: \"zone_3\"\tRelError: 5.03809e-01\tAbsError: 2.70112e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.83333e-01\tAbsError: 1.43386e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03452e-01\tAbsError: 1.26726e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.16711e-01\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.13541e-04\tAbsError: 1.08871e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.23024e+00\tAbsError: 7.24788e+16\n", - " Region: \"zone_1\"\tRelError: 2.89301e-01\tAbsError: 2.81842e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88577e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.23562e-04\tAbsError: 2.51079e-01\n", - " Region: \"zone_3\"\tRelError: 2.94094e+00\tAbsError: 7.24788e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.29061e-01\tAbsError: 3.72143e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.83761e-01\tAbsError: 3.52645e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.62740e+00\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.23562e-04\tAbsError: 2.51079e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.19207e+03\tAbsError: 3.54754e+16\n", - " Region: \"zone_1\"\tRelError: 2.44560e+00\tAbsError: 1.38996e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 2.44181e+00\tAbsError: 7.29586e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.78597e-03\tAbsError: 1.31700e+00\n", - " Region: \"zone_3\"\tRelError: 2.18963e+03\tAbsError: 3.54754e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.53288e+01\tAbsError: 1.56750e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.11148e+03\tAbsError: 1.98005e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.81772e+00\tAbsError: 7.29586e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.78597e-03\tAbsError: 1.31700e+00\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.60243e+00\tAbsError: 1.89495e+16\n", - " Region: \"zone_1\"\tRelError: 1.77181e-01\tAbsError: 1.01034e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76965e-01\tAbsError: 2.58752e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.16453e-04\tAbsError: 7.51590e-02\n", - " Region: \"zone_3\"\tRelError: 1.42525e+00\tAbsError: 1.89495e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.69075e-01\tAbsError: 9.52361e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.16569e-01\tAbsError: 9.42585e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.39388e-01\tAbsError: 2.51407e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.16453e-04\tAbsError: 7.51590e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.58947e+01\tAbsError: 1.57768e+17\n", - " Region: \"zone_1\"\tRelError: 2.28018e+01\tAbsError: 3.32976e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.28010e+01\tAbsError: 3.24492e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.66627e-04\tAbsError: 3.00527e-01\n", - " Region: \"zone_3\"\tRelError: 3.09290e+00\tAbsError: 1.57768e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.36113e-01\tAbsError: 7.69438e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.76306e-01\tAbsError: 8.08240e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77961e+00\tAbsError: 3.24492e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.66953e-04\tAbsError: 3.00640e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 4.27279e-01\tAbsError: 8.17053e+14\n", - " Region: \"zone_1\"\tRelError: 1.09940e-01\tAbsError: 2.21034e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09304e-01\tAbsError: 3.29075e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.36020e-04\tAbsError: 2.20705e-01\n", - " Region: \"zone_3\"\tRelError: 3.17339e-01\tAbsError: 8.17053e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.72653e-02\tAbsError: 1.99598e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.68899e-02\tAbsError: 6.17455e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.42547e-01\tAbsError: 3.29140e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.36020e-04\tAbsError: 2.20705e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 5.71850e+00\tAbsError: 4.10464e+16\n", - " Region: \"zone_1\"\tRelError: 1.82923e-01\tAbsError: 1.08958e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82684e-01\tAbsError: 2.58969e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.39429e-04\tAbsError: 8.30609e-02\n", - " Region: \"zone_3\"\tRelError: 5.53558e+00\tAbsError: 4.10464e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16071e-01\tAbsError: 2.08924e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.47287e-01\tAbsError: 2.01540e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.77198e+00\tAbsError: 2.46271e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.39429e-04\tAbsError: 8.30609e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.51342e+03\tAbsError: 5.86099e+15\n", - " Region: \"zone_1\"\tRelError: 3.62107e-01\tAbsError: 3.26424e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.61364e-01\tAbsError: 6.81820e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.42885e-04\tAbsError: 2.58242e-01\n", - " Region: \"zone_3\"\tRelError: 1.51306e+03\tAbsError: 5.86099e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13144e+01\tAbsError: 3.40516e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.48998e+03\tAbsError: 2.45583e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76054e+00\tAbsError: 6.81820e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.42885e-04\tAbsError: 2.58242e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.55040e+00\tAbsError: 5.89714e+15\n", - " Region: \"zone_1\"\tRelError: 7.75093e-01\tAbsError: 4.04644e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.75009e-01\tAbsError: 1.10524e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.47082e-05\tAbsError: 2.94120e-02\n", - " Region: \"zone_3\"\tRelError: 7.75306e-01\tAbsError: 5.89714e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.03985e-01\tAbsError: 3.29311e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.22727e-01\tAbsError: 2.60404e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 4.48510e-01\tAbsError: 1.10525e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.47183e-05\tAbsError: 2.94155e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.17180e+01\tAbsError: 9.85875e+16\n", - " Region: \"zone_1\"\tRelError: 8.81208e+00\tAbsError: 6.64188e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.81197e+00\tAbsError: 2.58840e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.16908e-04\tAbsError: 4.05347e-02\n", - " Region: \"zone_3\"\tRelError: 2.90588e+00\tAbsError: 9.85875e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.07353e-01\tAbsError: 5.11756e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.24050e-01\tAbsError: 4.74119e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.17436e+00\tAbsError: 2.25833e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.16908e-04\tAbsError: 4.05347e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.01035e-01\tAbsError: 1.64733e+14\n", - " Region: \"zone_1\"\tRelError: 2.03094e-01\tAbsError: 1.60100e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03048e-01\tAbsError: 7.96658e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.59052e-05\tAbsError: 1.59303e-02\n", - " Region: \"zone_3\"\tRelError: 4.97941e-01\tAbsError: 1.64733e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17881e-03\tAbsError: 7.88164e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.07895e-03\tAbsError: 8.59168e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.85637e-01\tAbsError: 8.00849e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.59052e-05\tAbsError: 1.59303e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.06773e+00\tAbsError: 1.32751e+16\n", - " Region: \"zone_1\"\tRelError: 2.27618e-01\tAbsError: 5.11022e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27498e-01\tAbsError: 9.16524e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20880e-04\tAbsError: 4.19369e-02\n", - " Region: \"zone_3\"\tRelError: 8.40108e-01\tAbsError: 1.32751e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49254e-01\tAbsError: 7.44002e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.85993e-02\tAbsError: 5.83511e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 6.12131e-01\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.23429e-04\tAbsError: 4.28226e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.31683e+02\tAbsError: 3.11077e+15\n", - " Region: \"zone_1\"\tRelError: 3.18041e-01\tAbsError: 8.94605e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.17964e-01\tAbsError: 6.27478e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.68524e-05\tAbsError: 2.67127e-02\n", - " Region: \"zone_3\"\tRelError: 6.31365e+02\tAbsError: 3.11077e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.81123e+02\tAbsError: 2.01746e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.49993e+02\tAbsError: 1.09331e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49281e-01\tAbsError: 6.27479e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.72517e-05\tAbsError: 2.68546e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.44266e-01\tAbsError: 1.36430e+15\n", - " Region: \"zone_1\"\tRelError: 8.15698e-02\tAbsError: 1.78334e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 8.10566e-02\tAbsError: 3.17930e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.13188e-04\tAbsError: 1.78016e-01\n", - " Region: \"zone_3\"\tRelError: 1.62696e-01\tAbsError: 1.36430e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.03044e-02\tAbsError: 6.13669e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.70709e-02\tAbsError: 7.50632e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.48059e-02\tAbsError: 3.46308e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.14497e-04\tAbsError: 1.78466e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.74758e+00\tAbsError: 2.57576e+16\n", - " Region: \"zone_1\"\tRelError: 1.88051e+00\tAbsError: 5.94876e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88037e+00\tAbsError: 1.13357e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.38878e-04\tAbsError: 4.81519e-02\n", - " Region: \"zone_3\"\tRelError: 8.67068e-01\tAbsError: 2.57576e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.39441e-01\tAbsError: 1.28707e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.19210e-02\tAbsError: 1.28870e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.65567e-01\tAbsError: 1.13359e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39063e-04\tAbsError: 4.82151e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.04323e-01\tAbsError: 1.53102e+13\n", - " Region: \"zone_1\"\tRelError: 3.15774e-02\tAbsError: 7.15567e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.15568e-02\tAbsError: 7.10876e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.05999e-05\tAbsError: 7.14856e-03\n", - " Region: \"zone_3\"\tRelError: 7.27454e-02\tAbsError: 1.53102e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94207e-04\tAbsError: 7.65839e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.98721e-04\tAbsError: 7.65181e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.15319e-02\tAbsError: 7.17354e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.06009e-05\tAbsError: 7.14900e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.91937e-01\tAbsError: 2.33353e+15\n", - " Region: \"zone_1\"\tRelError: 2.61363e-02\tAbsError: 3.15290e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.52274e-02\tAbsError: 2.65917e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.08859e-04\tAbsError: 3.15024e-01\n", - " Region: \"zone_3\"\tRelError: 2.65801e-01\tAbsError: 2.33353e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.40034e-02\tAbsError: 1.23195e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.91867e-03\tAbsError: 1.10158e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20969e-01\tAbsError: 2.95967e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.10098e-04\tAbsError: 3.15450e-01\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.10441e+03\tAbsError: 5.35337e+14\n", - " Region: \"zone_1\"\tRelError: 9.42351e-02\tAbsError: 8.38676e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.41563e-02\tAbsError: 5.64831e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.87648e-05\tAbsError: 2.73845e-02\n", - " Region: \"zone_3\"\tRelError: 1.10432e+03\tAbsError: 5.35337e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.93453e+01\tAbsError: 2.95909e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03488e+03\tAbsError: 2.39428e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.44823e-02\tAbsError: 5.64832e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.87648e-05\tAbsError: 2.73845e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.35503e+00\tAbsError: 2.07480e+14\n", - " Region: \"zone_1\"\tRelError: 7.11098e-02\tAbsError: 1.10133e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.10782e-02\tAbsError: 5.63937e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.15856e-05\tAbsError: 1.09569e-02\n", - " Region: \"zone_3\"\tRelError: 1.28392e+00\tAbsError: 2.07480e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.41215e-03\tAbsError: 1.04257e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.22201e-03\tAbsError: 1.03223e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.27526e+00\tAbsError: 5.74799e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.16113e-05\tAbsError: 1.09655e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.47364e-02\tAbsError: 3.87371e+15\n", - " Region: \"zone_1\"\tRelError: 3.75014e-02\tAbsError: 2.89882e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.66654e-02\tAbsError: 2.01080e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.36024e-04\tAbsError: 2.89680e-01\n", - " Region: \"zone_3\"\tRelError: 3.72350e-02\tAbsError: 3.87371e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.20691e-02\tAbsError: 2.03069e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.52489e-03\tAbsError: 1.84303e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.80346e-03\tAbsError: 2.27636e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.37600e-04\tAbsError: 2.90215e-01\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.82885e-02\tAbsError: 7.75343e+12\n", - " Region: \"zone_1\"\tRelError: 1.74263e-02\tAbsError: 1.11082e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74231e-02\tAbsError: 3.27682e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.18949e-06\tAbsError: 1.10754e-03\n", - " Region: \"zone_3\"\tRelError: 4.08622e-02\tAbsError: 7.75343e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.01160e-04\tAbsError: 3.88269e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.99390e-04\tAbsError: 3.87074e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.02585e-02\tAbsError: 3.34987e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.19059e-06\tAbsError: 1.10796e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.68338e-01\tAbsError: 7.28836e+14\n", - " Region: \"zone_1\"\tRelError: 4.44613e-02\tAbsError: 2.04423e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.44025e-02\tAbsError: 6.98557e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.87704e-05\tAbsError: 2.03724e-02\n", - " Region: \"zone_3\"\tRelError: 4.23877e-01\tAbsError: 7.28836e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89975e-03\tAbsError: 3.57624e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.06394e-03\tAbsError: 3.71212e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.13854e-01\tAbsError: 7.63149e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.87832e-05\tAbsError: 2.03761e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.58513e+03\tAbsError: 4.66560e+14\n", - " Region: \"zone_1\"\tRelError: 7.45378e-02\tAbsError: 5.71757e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.45147e-02\tAbsError: 4.91589e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.30854e-05\tAbsError: 8.01676e-03\n", - " Region: \"zone_3\"\tRelError: 4.58505e+03\tAbsError: 4.66560e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.41603e+03\tAbsError: 2.81976e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.68952e+02\tAbsError: 1.84584e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.49020e-02\tAbsError: 4.91590e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.30885e-05\tAbsError: 8.01786e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.38704e-01\tAbsError: 1.58138e+13\n", - " Region: \"zone_1\"\tRelError: 8.45115e-03\tAbsError: 5.40315e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 8.43558e-03\tAbsError: 4.28698e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.55636e-05\tAbsError: 5.39886e-03\n", - " Region: \"zone_3\"\tRelError: 1.30253e-01\tAbsError: 1.58138e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.25100e-04\tAbsError: 7.95923e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.29664e-04\tAbsError: 7.85456e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29583e-01\tAbsError: 4.48645e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.55670e-05\tAbsError: 5.40013e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.85689e-01\tAbsError: 1.00717e+15\n", - " Region: \"zone_1\"\tRelError: 3.82557e-01\tAbsError: 1.71364e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.82508e-01\tAbsError: 5.45957e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.92961e-05\tAbsError: 1.70818e-02\n", - " Region: \"zone_3\"\tRelError: 4.03132e-01\tAbsError: 1.00717e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.85041e-03\tAbsError: 4.92208e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.97229e-03\tAbsError: 5.14960e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.97260e-01\tAbsError: 5.50253e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.93058e-05\tAbsError: 1.70845e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.09210e-02\tAbsError: 1.22286e+12\n", - " Region: \"zone_1\"\tRelError: 3.28469e-03\tAbsError: 4.72819e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.28333e-03\tAbsError: 4.87030e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36013e-06\tAbsError: 4.72332e-04\n", - " Region: \"zone_3\"\tRelError: 7.63634e-03\tAbsError: 1.22286e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.75678e-05\tAbsError: 6.11672e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.73305e-05\tAbsError: 6.11193e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 7.54008e-03\tAbsError: 5.02425e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36049e-06\tAbsError: 4.72455e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.64410e-02\tAbsError: 6.34524e+13\n", - " Region: \"zone_1\"\tRelError: 6.01943e-03\tAbsError: 8.87148e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.99386e-03\tAbsError: 6.06051e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.55757e-05\tAbsError: 8.86542e-03\n", - " Region: \"zone_3\"\tRelError: 6.04216e-02\tAbsError: 6.34524e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43427e-04\tAbsError: 3.11581e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.51084e-04\tAbsError: 3.22943e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95015e-02\tAbsError: 6.26485e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.55822e-05\tAbsError: 8.86737e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 4.24154e+02\tAbsError: 1.03613e+14\n", - " Region: \"zone_1\"\tRelError: 5.67613e-02\tAbsError: 5.05890e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.67322e-02\tAbsError: 4.04903e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.90799e-05\tAbsError: 1.00988e-02\n", - " Region: \"zone_3\"\tRelError: 4.24097e+02\tAbsError: 1.03613e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.35907e+02\tAbsError: 6.68265e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.88132e+02\tAbsError: 3.67861e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.71504e-02\tAbsError: 4.04904e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.90803e-05\tAbsError: 1.00989e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.01928e-01\tAbsError: 8.46773e+13\n", - " Region: \"zone_1\"\tRelError: 5.24736e-02\tAbsError: 7.99199e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.24506e-02\tAbsError: 4.86695e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.30504e-05\tAbsError: 7.98712e-03\n", - " Region: \"zone_3\"\tRelError: 4.94541e-02\tAbsError: 8.46773e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.53589e-04\tAbsError: 4.13669e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.44812e-04\tAbsError: 4.33105e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.89326e-02\tAbsError: 4.90616e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.30517e-05\tAbsError: 7.98725e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.04270e-01\tAbsError: 9.65405e+12\n", - " Region: \"zone_1\"\tRelError: 5.81690e-03\tAbsError: 6.92855e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.81491e-03\tAbsError: 2.15570e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.99001e-06\tAbsError: 6.90699e-04\n", - " Region: \"zone_3\"\tRelError: 9.84527e-02\tAbsError: 9.65405e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.00209e-04\tAbsError: 4.86351e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.97989e-04\tAbsError: 4.79053e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 9.80525e-02\tAbsError: 2.33977e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.99059e-06\tAbsError: 6.90923e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.38843e-03\tAbsError: 5.18838e+11\n", - " Region: \"zone_1\"\tRelError: 1.31867e-03\tAbsError: 9.39018e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31840e-03\tAbsError: 1.99779e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69826e-07\tAbsError: 9.37020e-05\n", - " Region: \"zone_3\"\tRelError: 3.06976e-03\tAbsError: 5.18838e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95362e-05\tAbsError: 2.68345e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.93671e-05\tAbsError: 2.50493e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.03058e-03\tAbsError: 2.07424e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69859e-07\tAbsError: 9.37138e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.75673e-02\tAbsError: 3.32993e+13\n", - " Region: \"zone_1\"\tRelError: 3.52548e-03\tAbsError: 1.20689e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52200e-03\tAbsError: 3.09455e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.47154e-06\tAbsError: 1.20380e-03\n", - " Region: \"zone_3\"\tRelError: 3.40418e-02\tAbsError: 3.32993e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47698e-04\tAbsError: 1.63796e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.38649e-04\tAbsError: 1.69197e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.35520e-02\tAbsError: 3.11273e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.47235e-06\tAbsError: 1.20402e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.03697e+00\tAbsError: 2.30736e+13\n", - " Region: \"zone_1\"\tRelError: 4.14534e-02\tAbsError: 4.56411e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.14090e-02\tAbsError: 3.02176e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.44109e-05\tAbsError: 1.54235e-02\n", - " Region: \"zone_3\"\tRelError: 1.99551e+00\tAbsError: 2.30736e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.82589e-01\tAbsError: 5.66552e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.71463e-01\tAbsError: 1.74081e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.14155e-02\tAbsError: 3.02178e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.44109e-05\tAbsError: 1.54235e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.65318e-02\tAbsError: 1.29680e+12\n", - " Region: \"zone_1\"\tRelError: 9.39367e-04\tAbsError: 3.35060e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.38402e-04\tAbsError: 2.76893e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.64479e-07\tAbsError: 3.34783e-04\n", - " Region: \"zone_3\"\tRelError: 1.55924e-02\tAbsError: 1.29680e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.69684e-05\tAbsError: 6.52102e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.67030e-05\tAbsError: 6.44698e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55378e-02\tAbsError: 3.04330e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.64659e-07\tAbsError: 3.34839e-04\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 9.50080e-04\tAbsError: 1.03863e+11\n", - " Region: \"zone_1\"\tRelError: 2.85910e-04\tAbsError: 3.37412e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.85814e-04\tAbsError: 4.14946e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.68675e-08\tAbsError: 3.36997e-05\n", - " Region: \"zone_3\"\tRelError: 6.64170e-04\tAbsError: 1.03863e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.88184e-06\tAbsError: 5.40187e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.85553e-06\tAbsError: 4.98443e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 6.56335e-04\tAbsError: 4.30256e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.69043e-08\tAbsError: 3.37128e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 6.29267e-02\tAbsError: 4.93318e+13\n", - " Region: \"zone_1\"\tRelError: 3.14335e-02\tAbsError: 1.02095e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.14305e-02\tAbsError: 2.65530e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.93828e-06\tAbsError: 1.01830e-03\n", - " Region: \"zone_3\"\tRelError: 3.14932e-02\tAbsError: 4.93318e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61086e-04\tAbsError: 2.40538e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.48388e-04\tAbsError: 2.52780e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.11808e-02\tAbsError: 2.67923e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.93884e-06\tAbsError: 1.01846e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.71378e+00\tAbsError: 2.54547e+13\n", - " Region: \"zone_1\"\tRelError: 3.31338e-02\tAbsError: 4.41787e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.30812e-02\tAbsError: 2.58991e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.26319e-05\tAbsError: 1.82796e-02\n", - " Region: \"zone_3\"\tRelError: 2.68064e+00\tAbsError: 2.54547e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.62813e+00\tAbsError: 5.74020e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.89886e-02\tAbsError: 1.97145e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.34704e-02\tAbsError: 2.58028e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.26319e-05\tAbsError: 1.82796e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.47008e-03\tAbsError: 4.77215e+12\n", - " Region: \"zone_1\"\tRelError: 6.05494e-04\tAbsError: 5.38691e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.03946e-04\tAbsError: 4.25617e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54844e-06\tAbsError: 5.38265e-04\n", - " Region: \"zone_3\"\tRelError: 5.86458e-03\tAbsError: 4.77215e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.53153e-05\tAbsError: 2.34800e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.40122e-05\tAbsError: 2.42415e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.79371e-03\tAbsError: 4.28072e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54906e-06\tAbsError: 5.38488e-04\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 3.25927e-04\tAbsError: 3.72019e+10\n", - " Region: \"zone_1\"\tRelError: 9.80813e-05\tAbsError: 7.68282e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 9.80593e-05\tAbsError: 1.46928e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.20415e-08\tAbsError: 7.66812e-06\n", - " Region: \"zone_3\"\tRelError: 2.27846e-04\tAbsError: 3.72019e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36089e-06\tAbsError: 1.97599e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.34801e-06\tAbsError: 1.74420e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25115e-04\tAbsError: 1.52180e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.20501e-08\tAbsError: 7.67121e-06\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 7.44715e-03\tAbsError: 5.94316e+11\n", - " Region: \"zone_1\"\tRelError: 4.20439e-04\tAbsError: 5.99657e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.20267e-04\tAbsError: 1.23145e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72057e-07\tAbsError: 5.98426e-05\n", - " Region: \"zone_3\"\tRelError: 7.02671e-03\tAbsError: 5.94316e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23784e-05\tAbsError: 2.99276e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.21874e-05\tAbsError: 2.95040e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 7.00197e-03\tAbsError: 1.35494e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72122e-07\tAbsError: 5.98657e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.04281e-02\tAbsError: 6.78073e+12\n", - " Region: \"zone_1\"\tRelError: 5.24513e-03\tAbsError: 4.79333e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.24375e-03\tAbsError: 3.45168e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37832e-06\tAbsError: 4.78987e-04\n", - " Region: \"zone_3\"\tRelError: 5.18295e-03\tAbsError: 6.78073e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17447e-05\tAbsError: 3.30909e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.00474e-05\tAbsError: 3.47164e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.13977e-03\tAbsError: 3.48155e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37885e-06\tAbsError: 4.79177e-04\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 6.40087e-01\tAbsError: 4.64252e+14\n", - " Region: \"zone_1\"\tRelError: 1.04847e-02\tAbsError: 1.27444e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01422e-02\tAbsError: 8.53133e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.42498e-04\tAbsError: 1.18912e-01\n", - " Region: \"zone_3\"\tRelError: 6.29603e-01\tAbsError: 4.64252e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.48953e-01\tAbsError: 1.12241e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.29352e-03\tAbsError: 4.53028e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.10140e-02\tAbsError: 8.53143e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.42498e-04\tAbsError: 1.18912e-01\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.65398e-03\tAbsError: 2.00158e+12\n", - " Region: \"zone_1\"\tRelError: 2.48909e-04\tAbsError: 1.00808e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.48620e-04\tAbsError: 1.66964e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.89512e-07\tAbsError: 1.00641e-04\n", - " Region: \"zone_3\"\tRelError: 2.40507e-03\tAbsError: 2.00158e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50347e-05\tAbsError: 9.84888e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.44145e-05\tAbsError: 1.01669e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.37533e-03\tAbsError: 1.67974e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.89623e-07\tAbsError: 1.00681e-04\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 7.72661e-05\tAbsError: 8.43440e+09\n", - " Region: \"zone_1\"\tRelError: 2.32650e-05\tAbsError: 2.49052e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.32578e-05\tAbsError: 3.39814e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.14902e-09\tAbsError: 2.48712e-06\n", - " Region: \"zone_3\"\tRelError: 5.40011e-05\tAbsError: 8.43440e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.08161e-07\tAbsError: 4.47974e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.05735e-07\tAbsError: 3.95466e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 5.33800e-05\tAbsError: 3.51782e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.15190e-09\tAbsError: 2.48816e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:42\u001b[0m.\u001b[1;36m814\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.8\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.46366e-03\tAbsError: 1.06422e+11\n", - " Region: \"zone_1\"\tRelError: 8.28492e-05\tAbsError: 2.34015e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 8.27820e-05\tAbsError: 2.30847e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.72160e-08\tAbsError: 2.33784e-05\n", - " Region: \"zone_3\"\tRelError: 1.38081e-03\tAbsError: 1.06422e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21682e-06\tAbsError: 5.35020e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.18773e-06\tAbsError: 5.29201e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37634e-03\tAbsError: 2.53433e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.72421e-08\tAbsError: 2.33878e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.44129e-03\tAbsError: 2.98553e+12\n", - " Region: \"zone_1\"\tRelError: 2.22864e-03\tAbsError: 8.64925e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.22839e-03\tAbsError: 1.41665e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.48478e-07\tAbsError: 8.63509e-05\n", - " Region: \"zone_3\"\tRelError: 2.21265e-03\tAbsError: 2.98553e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.76851e-06\tAbsError: 1.45688e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.99704e-06\tAbsError: 1.52864e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.19363e-03\tAbsError: 1.42960e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.48573e-07\tAbsError: 8.63857e-05\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 4.02180e-01\tAbsError: 4.61203e+14\n", - " Region: \"zone_1\"\tRelError: 2.40938e-02\tAbsError: 1.58654e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.36377e-02\tAbsError: 2.27164e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.56101e-04\tAbsError: 1.58426e-01\n", - " Region: \"zone_3\"\tRelError: 3.78087e-01\tAbsError: 4.61203e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43391e-01\tAbsError: 2.70194e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.07294e-03\tAbsError: 4.34183e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29167e-01\tAbsError: 2.34103e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.56101e-04\tAbsError: 1.58426e-01\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 5.36228e-04\tAbsError: 3.67963e+11\n", - " Region: \"zone_1\"\tRelError: 5.03370e-05\tAbsError: 3.69568e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.02308e-05\tAbsError: 3.27141e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06219e-07\tAbsError: 3.69241e-05\n", - " Region: \"zone_3\"\tRelError: 4.85891e-04\tAbsError: 3.67963e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.74381e-06\tAbsError: 1.81082e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.63918e-06\tAbsError: 1.86881e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.80402e-04\tAbsError: 3.29054e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06263e-07\tAbsError: 3.69404e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 5.30904e-04\tAbsError: 3.95714e+10\n", - " Region: \"zone_1\"\tRelError: 3.00411e-05\tAbsError: 4.94346e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.00269e-05\tAbsError: 8.75793e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41879e-08\tAbsError: 4.93470e-06\n", - " Region: \"zone_3\"\tRelError: 5.00863e-04\tAbsError: 3.95714e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.25148e-07\tAbsError: 1.99182e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.11326e-07\tAbsError: 1.96532e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.99212e-04\tAbsError: 9.55948e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41934e-08\tAbsError: 4.93667e-06\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 8.74059e-04\tAbsError: 5.30655e+11\n", - " Region: \"zone_1\"\tRelError: 4.39153e-04\tAbsError: 3.27217e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.39059e-04\tAbsError: 2.68115e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.40808e-08\tAbsError: 3.26949e-05\n", - " Region: \"zone_3\"\tRelError: 4.34906e-04\tAbsError: 5.30655e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.71117e-06\tAbsError: 2.59051e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.58373e-06\tAbsError: 2.71604e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.31517e-04\tAbsError: 2.70335e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.41189e-08\tAbsError: 3.27090e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.91796e+01\tAbsError: 8.00136e+16\n", - " Region: \"zone_1\"\tRelError: 1.61687e+01\tAbsError: 4.09548e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.61687e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75011e-09\tAbsError: 6.08861e-07\n", - " Region: \"zone_3\"\tRelError: 3.01093e+00\tAbsError: 8.00136e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.66958e-01\tAbsError: 4.00295e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.65547e-01\tAbsError: 3.99841e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.47843e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75082e-09\tAbsError: 6.09112e-07\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 2.10193e-01\tAbsError: 7.99688e+13\n", - " Region: \"zone_1\"\tRelError: 2.05561e-02\tAbsError: 5.86602e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.05395e-02\tAbsError: 9.98920e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.65822e-05\tAbsError: 5.76613e-03\n", - " Region: \"zone_3\"\tRelError: 1.89637e-01\tAbsError: 7.99688e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16339e-02\tAbsError: 2.81452e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.13621e-02\tAbsError: 5.18236e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66624e-01\tAbsError: 1.01086e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.65822e-05\tAbsError: 5.76613e-03\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.84514e-04\tAbsError: 1.29331e+11\n", - " Region: \"zone_1\"\tRelError: 1.73204e-05\tAbsError: 7.90813e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72976e-05\tAbsError: 1.15361e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.27155e-08\tAbsError: 7.89660e-06\n", - " Region: \"zone_3\"\tRelError: 1.67193e-04\tAbsError: 1.29331e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.72276e-07\tAbsError: 6.36462e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.31421e-07\tAbsError: 6.56851e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65267e-04\tAbsError: 1.16052e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.27252e-08\tAbsError: 7.90006e-06\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.18197e-04\tAbsError: 8.36035e+09\n", - " Region: \"zone_1\"\tRelError: 6.69283e-06\tAbsError: 1.66315e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.68805e-06\tAbsError: 1.89367e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.77633e-09\tAbsError: 1.66126e-06\n", - " Region: \"zone_3\"\tRelError: 1.11504e-04\tAbsError: 8.36035e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74281e-07\tAbsError: 4.20320e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.71702e-07\tAbsError: 4.15715e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11154e-04\tAbsError: 2.06535e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.77819e-09\tAbsError: 1.66195e-06\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 3.08060e-04\tAbsError: 1.92461e+11\n", - " Region: \"zone_1\"\tRelError: 1.54735e-04\tAbsError: 6.82159e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.54716e-04\tAbsError: 9.70786e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.96010e-08\tAbsError: 6.81188e-06\n", - " Region: \"zone_3\"\tRelError: 1.53325e-04\tAbsError: 1.92461e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.27921e-07\tAbsError: 9.39467e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.79266e-07\tAbsError: 9.85140e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.52098e-04\tAbsError: 9.78772e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.96093e-08\tAbsError: 6.81486e-06\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 2.86064e-02\tAbsError: 5.75937e+12\n", - " Region: \"zone_1\"\tRelError: 2.99410e-03\tAbsError: 5.58282e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.97805e-03\tAbsError: 3.44900e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60457e-05\tAbsError: 5.57937e-03\n", - " Region: \"zone_3\"\tRelError: 2.56123e-02\tAbsError: 5.75937e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.09545e-04\tAbsError: 3.17341e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.91803e-04\tAbsError: 2.58597e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.45949e-02\tAbsError: 3.59667e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60457e-05\tAbsError: 5.57937e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.23024e+00\tAbsError: 7.24788e+16\n", - " Region: \"zone_1\"\tRelError: 2.89301e-01\tAbsError: 2.81842e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88577e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.23562e-04\tAbsError: 2.51079e-01\n", - " Region: \"zone_3\"\tRelError: 2.94094e+00\tAbsError: 7.24788e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.29061e-01\tAbsError: 3.72143e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.83761e-01\tAbsError: 3.52645e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.62740e+00\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.23562e-04\tAbsError: 2.51079e-01\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 4.13464e-05\tAbsError: 2.75069e+10\n", - " Region: \"zone_1\"\tRelError: 3.88379e-06\tAbsError: 2.55222e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.87646e-06\tAbsError: 2.54121e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.33447e-09\tAbsError: 2.54968e-06\n", - " Region: \"zone_3\"\tRelError: 3.74626e-05\tAbsError: 2.75069e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05752e-07\tAbsError: 1.35376e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.97692e-07\tAbsError: 1.39693e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.70518e-05\tAbsError: 2.55608e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.33751e-09\tAbsError: 2.55078e-06\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 3.80937e-05\tAbsError: 2.74353e+09\n", - " Region: \"zone_1\"\tRelError: 2.15708e-06\tAbsError: 3.87099e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.15597e-06\tAbsError: 6.26710e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11116e-09\tAbsError: 3.86473e-07\n", - " Region: \"zone_3\"\tRelError: 3.59366e-05\tAbsError: 2.74353e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.72335e-08\tAbsError: 1.38052e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.62500e-08\tAbsError: 1.36301e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.58220e-05\tAbsError: 6.81530e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11160e-09\tAbsError: 3.86634e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:46\u001b[0m.\u001b[1;36m619\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.84375\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 6.77016e-05\tAbsError: 3.99340e+10\n", - " Region: \"zone_1\"\tRelError: 3.40211e-05\tAbsError: 2.24822e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.40146e-05\tAbsError: 2.09384e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.46316e-09\tAbsError: 2.24613e-06\n", - " Region: \"zone_3\"\tRelError: 3.36805e-05\tAbsError: 3.99340e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.29073e-07\tAbsError: 1.94974e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.19573e-07\tAbsError: 2.04367e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.34254e-05\tAbsError: 2.11075e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.46585e-09\tAbsError: 2.24710e-06\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 1.82614e-02\tAbsError: 5.42297e+12\n", - " Region: \"zone_1\"\tRelError: 1.87149e-03\tAbsError: 7.19384e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86944e-03\tAbsError: 4.05300e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.05712e-06\tAbsError: 7.15331e-04\n", - " Region: \"zone_3\"\tRelError: 1.63899e-02\tAbsError: 5.42297e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.58853e-04\tAbsError: 2.64128e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.55286e-04\tAbsError: 2.78170e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.52737e-02\tAbsError: 4.11046e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.05769e-06\tAbsError: 7.15531e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 5.71850e+00\tAbsError: 4.10464e+16\n", - " Region: \"zone_1\"\tRelError: 1.82923e-01\tAbsError: 1.08958e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82684e-01\tAbsError: 2.58969e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.39429e-04\tAbsError: 8.30609e-02\n", - " Region: \"zone_3\"\tRelError: 5.53558e+00\tAbsError: 4.10464e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16071e-01\tAbsError: 2.08924e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.47287e-01\tAbsError: 2.01540e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.77198e+00\tAbsError: 2.46271e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.39429e-04\tAbsError: 8.30609e-02\n", - "Iteration: 16\n", - " Device: \"device\"\tRelError: 3.08921e-03\tAbsError: 6.82153e+11\n", - " Region: \"zone_1\"\tRelError: 3.22828e-04\tAbsError: 3.86240e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.21718e-04\tAbsError: 4.69129e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10938e-06\tAbsError: 3.85770e-04\n", - " Region: \"zone_3\"\tRelError: 2.76638e-03\tAbsError: 6.82153e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.99591e-05\tAbsError: 3.83463e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.96052e-05\tAbsError: 2.98691e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.62571e-03\tAbsError: 4.75594e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10983e-06\tAbsError: 3.85927e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.65151e+01\tAbsError: 1.51212e+17\n", - " Region: \"zone_1\"\tRelError: 1.06619e+01\tAbsError: 4.22092e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06619e+01\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.43092e-10\tAbsError: 1.19331e-07\n", - " Region: \"zone_3\"\tRelError: 5.85318e+00\tAbsError: 1.51212e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.74780e-01\tAbsError: 7.62193e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.72183e-01\tAbsError: 7.49931e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.30622e+00\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.43230e-10\tAbsError: 1.19382e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:48\u001b[0m.\u001b[1;36m483\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:48\u001b[0m.\u001b[1;36m515\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.05 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:48\u001b[0m.\u001b[1;36m554\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.06773e+00\tAbsError: 1.32751e+16\n", - " Region: \"zone_1\"\tRelError: 2.27618e-01\tAbsError: 5.11022e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27498e-01\tAbsError: 9.16524e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20880e-04\tAbsError: 4.19369e-02\n", - " Region: \"zone_3\"\tRelError: 8.40108e-01\tAbsError: 1.32751e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49254e-01\tAbsError: 7.44002e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.85993e-02\tAbsError: 5.83511e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 6.12131e-01\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.23429e-04\tAbsError: 4.28226e-02\n", - "Iteration: 17\n", - " Device: \"device\"\tRelError: 1.43003e-03\tAbsError: 3.74747e+11\n", - " Region: \"zone_1\"\tRelError: 1.47866e-04\tAbsError: 6.98200e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.47666e-04\tAbsError: 2.50990e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00063e-07\tAbsError: 6.95690e-05\n", - " Region: \"zone_3\"\tRelError: 1.28216e-03\tAbsError: 3.74747e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.74306e-05\tAbsError: 2.06228e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.71733e-05\tAbsError: 1.68519e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20736e-03\tAbsError: 2.54594e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00104e-07\tAbsError: 6.95833e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:49\u001b[0m.\u001b[1;36m255\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:49\u001b[0m.\u001b[1;36m296\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.1 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:49\u001b[0m.\u001b[1;36m342\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 4.90454e+02\tAbsError: 2.04840e+18\n", - " Region: \"zone_1\"\tRelError: 1.53646e+02\tAbsError: 8.63296e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.53646e+02\tAbsError: 8.63290e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70509e-09\tAbsError: 5.92742e-07\n", - " Region: \"zone_3\"\tRelError: 3.36809e+02\tAbsError: 2.04840e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 9.87637e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.22507e+02\tAbsError: 1.06076e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 5.30214e+00\tAbsError: 8.63291e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70580e-09\tAbsError: 5.92998e-07\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.62901e+00\tAbsError: 1.40999e+17\n", - " Region: \"zone_1\"\tRelError: 1.19110e+00\tAbsError: 3.28133e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19025e+00\tAbsError: 3.22431e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.53177e-04\tAbsError: 2.95890e-01\n", - " Region: \"zone_3\"\tRelError: 2.43791e+00\tAbsError: 1.40999e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.36448e-01\tAbsError: 6.92767e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.77757e-01\tAbsError: 7.17220e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12285e+00\tAbsError: 3.22432e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.53551e-04\tAbsError: 2.96020e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.91937e-01\tAbsError: 2.33353e+15\n", - " Region: \"zone_1\"\tRelError: 2.61363e-02\tAbsError: 3.15290e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.52274e-02\tAbsError: 2.65917e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.08859e-04\tAbsError: 3.15024e-01\n", - " Region: \"zone_3\"\tRelError: 2.65801e-01\tAbsError: 2.33353e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.40034e-02\tAbsError: 1.23195e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.91867e-03\tAbsError: 1.10158e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20969e-01\tAbsError: 2.95967e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.10098e-04\tAbsError: 3.15450e-01\n", - "Iteration: 18\n", - " Device: \"device\"\tRelError: 2.91465e-04\tAbsError: 6.57879e+10\n", - " Region: \"zone_1\"\tRelError: 3.04241e-05\tAbsError: 2.86234e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.03419e-05\tAbsError: 4.35410e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.21885e-08\tAbsError: 2.85798e-05\n", - " Region: \"zone_3\"\tRelError: 2.61040e-04\tAbsError: 6.57879e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.69838e-06\tAbsError: 3.81906e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.66414e-06\tAbsError: 2.75972e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.47596e-04\tAbsError: 4.41612e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.22066e-08\tAbsError: 2.85862e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.26061e+02\tAbsError: 4.05670e+18\n", - " Region: \"zone_1\"\tRelError: 3.13098e+02\tAbsError: 8.80546e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.13098e+02\tAbsError: 8.80541e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47483e-09\tAbsError: 5.12545e-07\n", - " Region: \"zone_3\"\tRelError: 2.12963e+02\tAbsError: 4.05670e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43587e+01\tAbsError: 1.96046e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.68409e+01\tAbsError: 2.09624e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21763e+02\tAbsError: 8.80543e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47544e-09\tAbsError: 5.12766e-07\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.00694e+02\tAbsError: 1.60088e+18\n", - " Region: \"zone_1\"\tRelError: 5.26463e+01\tAbsError: 6.03766e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.26448e+01\tAbsError: 8.30497e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.50446e-03\tAbsError: 5.20716e-01\n", - " Region: \"zone_3\"\tRelError: 4.80481e+01\tAbsError: 1.60088e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.37446e+00\tAbsError: 7.93354e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.97778e+01\tAbsError: 8.07530e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88943e+01\tAbsError: 8.30498e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.50569e-03\tAbsError: 5.21124e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.29329e+01\tAbsError: 8.98534e+16\n", - " Region: \"zone_1\"\tRelError: 3.00500e+00\tAbsError: 8.37435e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.00483e+00\tAbsError: 2.57434e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67274e-04\tAbsError: 5.80001e-02\n", - " Region: \"zone_3\"\tRelError: 9.92794e+00\tAbsError: 8.98534e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.09711e-01\tAbsError: 4.68434e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.31259e-01\tAbsError: 4.30101e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 9.18680e+00\tAbsError: 2.30390e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67274e-04\tAbsError: 5.80001e-02\n", - "Iteration: 19\n", - " Device: \"device\"\tRelError: 1.10900e-04\tAbsError: 2.73373e+10\n", - " Region: \"zone_1\"\tRelError: 1.15094e-05\tAbsError: 6.20610e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14916e-05\tAbsError: 1.76149e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77965e-08\tAbsError: 6.18848e-06\n", - " Region: \"zone_3\"\tRelError: 9.93909e-05\tAbsError: 2.73373e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.73043e-06\tAbsError: 1.58419e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.71188e-06\tAbsError: 1.14954e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 9.39308e-05\tAbsError: 1.78713e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77992e-08\tAbsError: 6.18941e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.68338e-01\tAbsError: 7.28836e+14\n", - " Region: \"zone_1\"\tRelError: 4.44613e-02\tAbsError: 2.04423e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.44025e-02\tAbsError: 6.98557e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.87704e-05\tAbsError: 2.03724e-02\n", - " Region: \"zone_3\"\tRelError: 4.23877e-01\tAbsError: 7.28836e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89975e-03\tAbsError: 3.57624e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.06394e-03\tAbsError: 3.71212e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.13854e-01\tAbsError: 7.63149e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.87832e-05\tAbsError: 2.03761e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 6.47092e+02\tAbsError: 3.51922e+18\n", - " Region: \"zone_1\"\tRelError: 2.63451e+02\tAbsError: 5.86890e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.63450e+02\tAbsError: 8.49344e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.44670e-03\tAbsError: 5.01956e-01\n", - " Region: \"zone_3\"\tRelError: 3.83641e+02\tAbsError: 3.51922e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.70089e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.81832e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 3.65639e+02\tAbsError: 8.49344e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.44736e-03\tAbsError: 5.02196e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 3.07342e+03\tAbsError: 2.97837e+17\n", - " Region: \"zone_1\"\tRelError: 2.56011e+01\tAbsError: 5.04749e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 2.55870e+01\tAbsError: 7.94526e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41420e-02\tAbsError: 4.96804e+00\n", - " Region: \"zone_3\"\tRelError: 3.04782e+03\tAbsError: 2.97837e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.25861e+01\tAbsError: 1.52164e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.03129e+03\tAbsError: 1.45673e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 3.92837e+00\tAbsError: 7.94551e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41420e-02\tAbsError: 4.96804e+00\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.76566e+00\tAbsError: 2.43207e+16\n", - " Region: \"zone_1\"\tRelError: 2.86332e+00\tAbsError: 4.95127e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.86321e+00\tAbsError: 1.10523e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10923e-04\tAbsError: 3.84604e-02\n", - " Region: \"zone_3\"\tRelError: 9.02346e-01\tAbsError: 2.43207e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42087e-01\tAbsError: 1.21709e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.47178e-02\tAbsError: 1.21498e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.95430e-01\tAbsError: 1.10525e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11265e-04\tAbsError: 3.85782e-02\n", - "Iteration: 20\n", - " Device: \"device\"\tRelError: 2.56210e-05\tAbsError: 5.83108e+09\n", - " Region: \"zone_1\"\tRelError: 2.67249e-06\tAbsError: 2.19120e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66620e-06\tAbsError: 3.76776e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.29052e-09\tAbsError: 2.18743e-06\n", - " Region: \"zone_3\"\tRelError: 2.29485e-05\tAbsError: 5.83108e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.90368e-07\tAbsError: 3.44839e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.87141e-07\tAbsError: 2.38269e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.17647e-05\tAbsError: 3.82222e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.29144e-09\tAbsError: 2.18776e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:27:52\u001b[0m.\u001b[1;36m734\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.2\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.64410e-02\tAbsError: 6.34524e+13\n", - " Region: \"zone_1\"\tRelError: 6.01943e-03\tAbsError: 8.87148e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.99386e-03\tAbsError: 6.06051e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.55757e-05\tAbsError: 8.86542e-03\n", - " Region: \"zone_3\"\tRelError: 6.04216e-02\tAbsError: 6.34524e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43427e-04\tAbsError: 3.11581e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.51084e-04\tAbsError: 3.22943e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95015e-02\tAbsError: 6.26485e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.55822e-05\tAbsError: 8.86737e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.28415e+02\tAbsError: 4.82050e+17\n", - " Region: \"zone_1\"\tRelError: 9.93520e+01\tAbsError: 5.45600e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 9.93367e+01\tAbsError: 8.15209e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52835e-02\tAbsError: 5.37448e+00\n", - " Region: \"zone_3\"\tRelError: 2.90632e+01\tAbsError: 4.82050e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.38294e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.43888e+01\tAbsError: 2.43756e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 5.65902e+00\tAbsError: 8.15218e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52835e-02\tAbsError: 5.37448e+00\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.49278e+01\tAbsError: 7.81245e+16\n", - " Region: \"zone_1\"\tRelError: 3.54128e+00\tAbsError: 2.67358e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 3.53383e+00\tAbsError: 7.54578e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.45093e-03\tAbsError: 2.59812e+00\n", - " Region: \"zone_3\"\tRelError: 5.13865e+01\tAbsError: 7.81245e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.20613e+01\tAbsError: 4.02344e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.93310e+01\tAbsError: 3.78901e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 9.98674e+00\tAbsError: 7.54578e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.46007e-03\tAbsError: 2.60144e+00\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 3.33470e-01\tAbsError: 3.90416e+15\n", - " Region: \"zone_1\"\tRelError: 2.76645e-01\tAbsError: 2.96561e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.75790e-01\tAbsError: 2.14183e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.55252e-04\tAbsError: 2.96347e-01\n", - " Region: \"zone_3\"\tRelError: 5.68250e-02\tAbsError: 3.90416e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.39131e-02\tAbsError: 2.04896e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.08999e-03\tAbsError: 1.85520e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49651e-02\tAbsError: 2.43298e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.56812e-04\tAbsError: 2.96876e-01\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.75673e-02\tAbsError: 3.32993e+13\n", - " Region: \"zone_1\"\tRelError: 3.52548e-03\tAbsError: 1.20689e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52200e-03\tAbsError: 3.09455e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.47154e-06\tAbsError: 1.20380e-03\n", - " Region: \"zone_3\"\tRelError: 3.40418e-02\tAbsError: 3.32993e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47698e-04\tAbsError: 1.63796e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.38649e-04\tAbsError: 1.69197e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.35520e-02\tAbsError: 3.11273e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.47235e-06\tAbsError: 1.20402e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.15185e+01\tAbsError: 8.37847e+15\n", - " Region: \"zone_1\"\tRelError: 9.89196e+00\tAbsError: 4.09548e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.89196e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.51739e-09\tAbsError: 5.27651e-07\n", - " Region: \"zone_3\"\tRelError: 1.62652e+00\tAbsError: 8.37847e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69532e-01\tAbsError: 4.63620e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69461e-01\tAbsError: 3.74226e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.75319e-02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.51758e-09\tAbsError: 5.27715e-07\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.18889e+02\tAbsError: 1.14552e+17\n", - " Region: \"zone_1\"\tRelError: 5.40599e+00\tAbsError: 1.94512e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.40065e+00\tAbsError: 7.77584e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.33822e-03\tAbsError: 1.86737e+00\n", - " Region: \"zone_3\"\tRelError: 1.13483e+02\tAbsError: 1.14552e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.90797e+01\tAbsError: 7.79767e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.64811e+00\tAbsError: 3.65758e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 8.74990e+00\tAbsError: 7.77584e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.33822e-03\tAbsError: 1.86737e+00\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.25625e+03\tAbsError: 1.22730e+16\n", - " Region: \"zone_1\"\tRelError: 5.23435e-01\tAbsError: 1.23727e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.20080e-01\tAbsError: 7.09984e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.35587e-03\tAbsError: 1.16627e+00\n", - " Region: \"zone_3\"\tRelError: 1.25572e+03\tAbsError: 1.22730e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.14061e+02\tAbsError: 7.22075e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.14013e+03\tAbsError: 5.05229e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.52613e+00\tAbsError: 7.09985e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.35587e-03\tAbsError: 1.16627e+00\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.12245e+00\tAbsError: 9.91584e+14\n", - " Region: \"zone_1\"\tRelError: 8.68623e-01\tAbsError: 1.80881e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.68571e-01\tAbsError: 5.61289e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.20373e-05\tAbsError: 1.80320e-02\n", - " Region: \"zone_3\"\tRelError: 2.53825e-01\tAbsError: 9.91584e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.10989e-03\tAbsError: 4.83044e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.24305e-03\tAbsError: 5.08540e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.47420e-01\tAbsError: 5.65576e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.20483e-05\tAbsError: 1.80351e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.47008e-03\tAbsError: 4.77215e+12\n", - " Region: \"zone_1\"\tRelError: 6.05494e-04\tAbsError: 5.38691e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.03946e-04\tAbsError: 4.25617e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54844e-06\tAbsError: 5.38265e-04\n", - " Region: \"zone_3\"\tRelError: 5.86458e-03\tAbsError: 4.77215e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.53153e-05\tAbsError: 2.34800e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.40122e-05\tAbsError: 2.42415e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.79371e-03\tAbsError: 4.28072e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54906e-06\tAbsError: 5.38488e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.94648e+00\tAbsError: 2.98429e+14\n", - " Region: \"zone_1\"\tRelError: 5.14527e-01\tAbsError: 9.09010e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.14354e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72975e-04\tAbsError: 6.01374e-02\n", - " Region: \"zone_3\"\tRelError: 1.43195e+00\tAbsError: 2.98429e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37879e-01\tAbsError: 1.45713e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32394e-01\tAbsError: 1.52715e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.15050e-02\tAbsError: 3.07641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72975e-04\tAbsError: 6.01374e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.95684e+02\tAbsError: 5.60954e+16\n", - " Region: \"zone_1\"\tRelError: 3.13909e+00\tAbsError: 2.03306e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 3.13346e+00\tAbsError: 7.35754e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.63340e-03\tAbsError: 1.95948e+00\n", - " Region: \"zone_3\"\tRelError: 9.92545e+02\tAbsError: 5.60954e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.47342e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.81191e+02\tAbsError: 2.13612e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.34805e+00\tAbsError: 7.35755e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.63450e-03\tAbsError: 1.95990e+00\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.11329e+02\tAbsError: 6.64526e+15\n", - " Region: \"zone_1\"\tRelError: 5.94437e-01\tAbsError: 1.17140e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.94290e-01\tAbsError: 6.59600e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47237e-04\tAbsError: 5.11801e-02\n", - " Region: \"zone_3\"\tRelError: 5.10735e+02\tAbsError: 6.64526e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.43214e+01\tAbsError: 4.35598e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.34749e+02\tAbsError: 2.28927e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66411e+00\tAbsError: 6.59600e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47237e-04\tAbsError: 5.11801e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.42634e-01\tAbsError: 8.50303e+13\n", - " Region: \"zone_1\"\tRelError: 1.08407e-01\tAbsError: 8.19922e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08383e-01\tAbsError: 5.12930e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36473e-05\tAbsError: 8.19409e-03\n", - " Region: \"zone_3\"\tRelError: 3.42278e-02\tAbsError: 8.50303e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.81155e-04\tAbsError: 4.15550e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.73729e-04\tAbsError: 4.34753e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.36493e-02\tAbsError: 5.16851e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36494e-05\tAbsError: 8.19449e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.65398e-03\tAbsError: 2.00158e+12\n", - " Region: \"zone_1\"\tRelError: 2.48909e-04\tAbsError: 1.00808e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.48620e-04\tAbsError: 1.66964e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.89512e-07\tAbsError: 1.00641e-04\n", - " Region: \"zone_3\"\tRelError: 2.40507e-03\tAbsError: 2.00158e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50347e-05\tAbsError: 9.84888e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.44145e-05\tAbsError: 1.01669e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.37533e-03\tAbsError: 1.67974e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.89623e-07\tAbsError: 1.00681e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.04599e+00\tAbsError: 3.86289e+13\n", - " Region: \"zone_1\"\tRelError: 9.93306e-02\tAbsError: 3.04736e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.93173e-02\tAbsError: 2.58731e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32325e-05\tAbsError: 4.60053e-03\n", - " Region: \"zone_3\"\tRelError: 9.46664e-01\tAbsError: 3.86289e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39748e-01\tAbsError: 2.78668e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.98990e-01\tAbsError: 1.07620e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07912e-01\tAbsError: 2.56750e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32325e-05\tAbsError: 4.60053e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.05572e+02\tAbsError: 7.27616e+15\n", - " Region: \"zone_1\"\tRelError: 3.62859e-01\tAbsError: 2.71746e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.62276e-01\tAbsError: 6.88787e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.83532e-04\tAbsError: 2.02867e-01\n", - " Region: \"zone_3\"\tRelError: 3.05209e+02\tAbsError: 7.27616e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.70310e+01\tAbsError: 3.37941e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.76142e+02\tAbsError: 3.89675e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03530e+00\tAbsError: 6.88788e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.85168e-04\tAbsError: 2.03436e-01\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.19404e+03\tAbsError: 1.14702e+15\n", - " Region: \"zone_1\"\tRelError: 1.02333e-01\tAbsError: 9.32654e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02238e-01\tAbsError: 6.01966e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.51279e-05\tAbsError: 3.30688e-02\n", - " Region: \"zone_3\"\tRelError: 3.19394e+03\tAbsError: 1.14702e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04031e+02\tAbsError: 6.26640e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.98981e+03\tAbsError: 5.20382e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02437e-01\tAbsError: 6.01966e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.51279e-05\tAbsError: 3.30688e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 9.22389e-02\tAbsError: 4.82158e+13\n", - " Region: \"zone_1\"\tRelError: 7.18973e-02\tAbsError: 1.06561e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.18942e-02\tAbsError: 2.74508e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.06675e-06\tAbsError: 1.06286e-03\n", - " Region: \"zone_3\"\tRelError: 2.03416e-02\tAbsError: 4.82158e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.73371e-04\tAbsError: 2.34911e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.60750e-04\tAbsError: 2.47247e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.00044e-02\tAbsError: 2.76855e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.06732e-06\tAbsError: 1.06303e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 5.36228e-04\tAbsError: 3.67963e+11\n", - " Region: \"zone_1\"\tRelError: 5.03370e-05\tAbsError: 3.69568e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.02308e-05\tAbsError: 3.27141e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06219e-07\tAbsError: 3.69241e-05\n", - " Region: \"zone_3\"\tRelError: 4.85891e-04\tAbsError: 3.67963e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.74381e-06\tAbsError: 1.81082e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.63918e-06\tAbsError: 1.86881e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.80402e-04\tAbsError: 3.29054e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06263e-07\tAbsError: 3.69404e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.81931e-01\tAbsError: 3.51181e+12\n", - " Region: \"zone_1\"\tRelError: 1.43962e-02\tAbsError: 1.26243e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43862e-02\tAbsError: 9.16567e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.94816e-06\tAbsError: 3.45864e-03\n", - " Region: \"zone_3\"\tRelError: 2.67535e-01\tAbsError: 3.51181e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10366e-01\tAbsError: 2.07274e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.20558e-02\tAbsError: 1.43906e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51029e-02\tAbsError: 9.16572e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.94816e-06\tAbsError: 3.45864e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.52143e+04\tAbsError: 8.85256e+14\n", - " Region: \"zone_1\"\tRelError: 1.13431e-01\tAbsError: 1.63012e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13145e-01\tAbsError: 6.35445e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.86193e-04\tAbsError: 9.94676e-02\n", - " Region: \"zone_3\"\tRelError: 1.52142e+04\tAbsError: 8.85256e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88796e+02\tAbsError: 3.04095e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.50252e+04\tAbsError: 5.81161e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.15776e-01\tAbsError: 6.35445e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.86193e-04\tAbsError: 9.94676e-02\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.84514e-04\tAbsError: 1.29331e+11\n", - " Region: \"zone_1\"\tRelError: 1.73204e-05\tAbsError: 7.90813e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72976e-05\tAbsError: 1.15361e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.27155e-08\tAbsError: 7.89660e-06\n", - " Region: \"zone_3\"\tRelError: 1.67193e-04\tAbsError: 1.29331e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.72276e-07\tAbsError: 6.36462e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.31421e-07\tAbsError: 6.56851e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65267e-04\tAbsError: 1.16052e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.27252e-08\tAbsError: 7.90006e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.37784e+03\tAbsError: 8.93258e+14\n", - " Region: \"zone_1\"\tRelError: 1.00933e-01\tAbsError: 6.73054e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00893e-01\tAbsError: 5.35128e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.97271e-05\tAbsError: 1.37925e-02\n", - " Region: \"zone_3\"\tRelError: 3.37774e+03\tAbsError: 8.93258e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.00117e+03\tAbsError: 5.58869e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.76480e+02\tAbsError: 3.34389e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.23077e-02\tAbsError: 5.35129e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.97519e-05\tAbsError: 1.38013e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.54653e-02\tAbsError: 6.70800e+12\n", - " Region: \"zone_1\"\tRelError: 1.20581e-02\tAbsError: 4.93668e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20566e-02\tAbsError: 3.62019e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41950e-06\tAbsError: 4.93306e-04\n", - " Region: \"zone_3\"\tRelError: 3.40728e-03\tAbsError: 6.70800e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.37608e-05\tAbsError: 3.26486e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.20449e-05\tAbsError: 3.44314e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.36006e-03\tAbsError: 3.65152e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42005e-06\tAbsError: 4.93504e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.22421e-02\tAbsError: 3.50277e+12\n", - " Region: \"zone_1\"\tRelError: 6.27963e-03\tAbsError: 2.19296e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.27336e-03\tAbsError: 1.50745e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.27082e-06\tAbsError: 2.17788e-03\n", - " Region: \"zone_3\"\tRelError: 6.59624e-02\tAbsError: 3.50277e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.67825e-02\tAbsError: 2.11767e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.14378e-04\tAbsError: 1.38511e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.55925e-03\tAbsError: 1.55695e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.27082e-06\tAbsError: 2.17788e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.55754e+03\tAbsError: 5.40333e+14\n", - " Region: \"zone_1\"\tRelError: 8.98251e-02\tAbsError: 7.71339e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.97682e-02\tAbsError: 5.74069e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.68415e-05\tAbsError: 1.97270e-02\n", - " Region: \"zone_3\"\tRelError: 1.55745e+03\tAbsError: 5.40333e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24902e+02\tAbsError: 2.78996e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.43226e+03\tAbsError: 2.61337e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.83203e-01\tAbsError: 5.74070e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.68971e-05\tAbsError: 1.97465e-02\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 4.13464e-05\tAbsError: 2.75069e+10\n", - " Region: \"zone_1\"\tRelError: 3.88379e-06\tAbsError: 2.55222e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.87646e-06\tAbsError: 2.54121e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.33447e-09\tAbsError: 2.54968e-06\n", - " Region: \"zone_3\"\tRelError: 3.74626e-05\tAbsError: 2.75069e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05752e-07\tAbsError: 1.35376e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.97692e-07\tAbsError: 1.39693e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.70518e-05\tAbsError: 2.55608e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.33751e-09\tAbsError: 2.55078e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:00\u001b[0m.\u001b[1;36m827\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.9\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 8.34579e+02\tAbsError: 1.94708e+14\n", - " Region: \"zone_1\"\tRelError: 6.43873e-02\tAbsError: 6.04633e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.43446e-02\tAbsError: 4.56537e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.26547e-05\tAbsError: 1.48096e-02\n", - " Region: \"zone_3\"\tRelError: 8.34515e+02\tAbsError: 1.94708e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23533e+02\tAbsError: 9.15286e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.10917e+02\tAbsError: 1.03179e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.46435e-02\tAbsError: 4.56538e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.27063e-05\tAbsError: 1.48277e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 6.56223e-03\tAbsError: 2.91406e+12\n", - " Region: \"zone_1\"\tRelError: 5.12823e-03\tAbsError: 8.98940e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.12798e-03\tAbsError: 1.46733e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.58246e-07\tAbsError: 8.97473e-05\n", - " Region: \"zone_3\"\tRelError: 1.43400e-03\tAbsError: 2.91406e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05194e-05\tAbsError: 1.41848e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.74304e-06\tAbsError: 1.49558e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41348e-03\tAbsError: 1.48063e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.58345e-07\tAbsError: 8.97837e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.61560e-03\tAbsError: 1.05155e+12\n", - " Region: \"zone_1\"\tRelError: 2.24368e-04\tAbsError: 1.45744e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.23954e-04\tAbsError: 1.49315e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14375e-07\tAbsError: 1.44251e-04\n", - " Region: \"zone_3\"\tRelError: 1.39123e-03\tAbsError: 1.05155e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46580e-04\tAbsError: 2.71205e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.31750e-04\tAbsError: 7.80341e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11248e-03\tAbsError: 1.49727e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14536e-07\tAbsError: 1.44309e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.11509e+03\tAbsError: 2.08027e+14\n", - " Region: \"zone_1\"\tRelError: 7.16225e-02\tAbsError: 7.72640e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.15447e-02\tAbsError: 5.02451e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.78461e-05\tAbsError: 2.70188e-02\n", - " Region: \"zone_3\"\tRelError: 6.11502e+03\tAbsError: 2.08027e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.36809e+03\tAbsError: 4.84261e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.46858e+02\tAbsError: 1.59601e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.19331e-02\tAbsError: 5.02452e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.78461e-05\tAbsError: 2.70188e-02\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.30459e-03\tAbsError: 5.22309e+11\n", - " Region: \"zone_1\"\tRelError: 1.02073e-03\tAbsError: 3.37124e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02063e-03\tAbsError: 2.80533e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.69262e-08\tAbsError: 3.36844e-05\n", - " Region: \"zone_3\"\tRelError: 2.83861e-04\tAbsError: 5.22309e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.86127e-06\tAbsError: 2.54142e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.73182e-06\tAbsError: 2.68167e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.80171e-04\tAbsError: 2.82699e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.69658e-08\tAbsError: 3.36990e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.24775e+05\tAbsError: 7.99849e+13\n", - " Region: \"zone_1\"\tRelError: 4.78059e-02\tAbsError: 6.12680e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.77341e-02\tAbsError: 3.63251e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.18354e-05\tAbsError: 2.49428e-02\n", - " Region: \"zone_3\"\tRelError: 2.24775e+05\tAbsError: 7.99849e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.24772e+05\tAbsError: 1.00992e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.14841e+00\tAbsError: 6.98857e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.81352e-02\tAbsError: 3.63252e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.18354e-05\tAbsError: 2.49428e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.18618e+01\tAbsError: 3.43486e+17\n", - " Region: \"zone_1\"\tRelError: 4.68734e+01\tAbsError: 4.09548e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.68734e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70509e-09\tAbsError: 5.92742e-07\n", - " Region: \"zone_3\"\tRelError: 1.49884e+01\tAbsError: 3.43486e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.50361e-01\tAbsError: 1.67687e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.42491e-01\tAbsError: 1.75799e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.34955e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70580e-09\tAbsError: 5.92998e-07\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.04487e-04\tAbsError: 1.25305e+11\n", - " Region: \"zone_1\"\tRelError: 1.66226e-04\tAbsError: 5.88375e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66057e-04\tAbsError: 7.31644e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69190e-07\tAbsError: 5.87644e-05\n", - " Region: \"zone_3\"\tRelError: 4.38261e-04\tAbsError: 1.25305e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07350e-05\tAbsError: 8.57573e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.06395e-05\tAbsError: 3.95481e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.16717e-04\tAbsError: 7.69561e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69190e-07\tAbsError: 5.87644e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.83105e+01\tAbsError: 1.95329e+14\n", - " Region: \"zone_1\"\tRelError: 5.56071e-02\tAbsError: 7.46696e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.55124e-02\tAbsError: 4.17804e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.47508e-05\tAbsError: 3.28892e-02\n", - " Region: \"zone_3\"\tRelError: 2.82549e+01\tAbsError: 1.95329e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94244e+01\tAbsError: 7.65409e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.77485e+00\tAbsError: 1.87675e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.55752e-02\tAbsError: 4.17805e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.47508e-05\tAbsError: 3.28892e-02\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 4.57494e-04\tAbsError: 1.87851e+11\n", - " Region: \"zone_1\"\tRelError: 3.58124e-04\tAbsError: 7.07024e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.58104e-04\tAbsError: 1.00823e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.03150e-08\tAbsError: 7.06016e-06\n", - " Region: \"zone_3\"\tRelError: 9.93700e-05\tAbsError: 1.87851e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.76736e-07\tAbsError: 9.14150e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.27531e-07\tAbsError: 9.64360e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 9.80454e-05\tAbsError: 1.01596e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.03236e-08\tAbsError: 7.06323e-06\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.21405e+00\tAbsError: 7.36648e+13\n", - " Region: \"zone_1\"\tRelError: 3.59171e-02\tAbsError: 5.52897e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.58309e-02\tAbsError: 2.53668e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.61705e-05\tAbsError: 2.99229e-02\n", - " Region: \"zone_3\"\tRelError: 1.17813e+00\tAbsError: 7.36648e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99994e-01\tAbsError: 9.79700e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.41280e-01\tAbsError: 6.38678e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.67735e-02\tAbsError: 2.54466e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.61705e-05\tAbsError: 2.99229e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 6.59116e+00\tAbsError: 3.05940e+17\n", - " Region: \"zone_1\"\tRelError: 1.06162e+00\tAbsError: 1.92710e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06116e+00\tAbsError: 3.07630e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.67257e-04\tAbsError: 1.61947e-01\n", - " Region: \"zone_3\"\tRelError: 5.52954e+00\tAbsError: 3.05940e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.66708e-01\tAbsError: 1.53394e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.75609e-01\tAbsError: 1.52546e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 4.38676e+00\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.67257e-04\tAbsError: 1.61947e-01\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.49542e-04\tAbsError: 5.25661e+10\n", - " Region: \"zone_1\"\tRelError: 3.67450e-05\tAbsError: 6.09088e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.67276e-05\tAbsError: 4.65419e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73626e-08\tAbsError: 6.04434e-06\n", - " Region: \"zone_3\"\tRelError: 1.12797e-04\tAbsError: 5.25661e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.87851e-06\tAbsError: 1.95403e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.83782e-06\tAbsError: 3.30258e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03064e-04\tAbsError: 4.67697e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73704e-08\tAbsError: 6.04719e-06\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.17347e+02\tAbsError: 2.00590e+14\n", - " Region: \"zone_1\"\tRelError: 4.02790e-02\tAbsError: 7.42617e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.01565e-02\tAbsError: 3.17370e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22495e-04\tAbsError: 4.25247e-02\n", - " Region: \"zone_3\"\tRelError: 2.17306e+02\tAbsError: 2.00590e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16792e+02\tAbsError: 1.28080e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.74248e-01\tAbsError: 1.87782e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.02289e-02\tAbsError: 3.17371e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22495e-04\tAbsError: 4.25247e-02\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.01166e-04\tAbsError: 3.91946e+10\n", - " Region: \"zone_1\"\tRelError: 7.92415e-05\tAbsError: 2.31694e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 7.92348e-05\tAbsError: 2.18517e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.66050e-09\tAbsError: 2.31475e-06\n", - " Region: \"zone_3\"\tRelError: 2.19241e-05\tAbsError: 3.91946e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.40019e-07\tAbsError: 1.90694e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.30355e-07\tAbsError: 2.01253e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.16471e-05\tAbsError: 2.20162e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.66326e-09\tAbsError: 2.31575e-06\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 6.63713e+04\tAbsError: 5.22530e+13\n", - " Region: \"zone_1\"\tRelError: 2.10634e-02\tAbsError: 5.42181e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.09583e-02\tAbsError: 1.77022e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.05146e-04\tAbsError: 3.65159e-02\n", - " Region: \"zone_3\"\tRelError: 6.63712e+04\tAbsError: 5.22530e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.63712e+04\tAbsError: 5.18134e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.77454e-03\tAbsError: 4.70717e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.12693e-02\tAbsError: 1.77023e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.05146e-04\tAbsError: 3.65159e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 3.39017e+01\tAbsError: 1.15461e+17\n", - " Region: \"zone_1\"\tRelError: 6.40052e-01\tAbsError: 2.51200e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 6.39402e-01\tAbsError: 2.58690e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.49519e-04\tAbsError: 2.25331e-01\n", - " Region: \"zone_3\"\tRelError: 3.32617e+01\tAbsError: 1.15461e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89584e-01\tAbsError: 5.80157e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.82182e-01\tAbsError: 5.74450e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.27893e+01\tAbsError: 2.58944e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.51823e-04\tAbsError: 2.26124e-01\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.06804e+00\tAbsError: 1.79281e+14\n", - " Region: \"zone_1\"\tRelError: 3.16228e-02\tAbsError: 8.06229e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.14652e-02\tAbsError: 2.58829e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.57657e-04\tAbsError: 5.47400e-02\n", - " Region: \"zone_3\"\tRelError: 1.03642e+00\tAbsError: 1.79281e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.86597e-01\tAbsError: 1.34599e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.78837e-02\tAbsError: 1.65821e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.17792e-02\tAbsError: 2.43086e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.57657e-04\tAbsError: 5.47400e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.34617e-05\tAbsError: 4.93079e+09\n", - " Region: \"zone_1\"\tRelError: 6.39656e-06\tAbsError: 2.70522e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.38878e-06\tAbsError: 2.92927e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.78054e-09\tAbsError: 2.70229e-06\n", - " Region: \"zone_3\"\tRelError: 1.70651e-05\tAbsError: 4.93079e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.08409e-07\tAbsError: 3.64060e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.02770e-07\tAbsError: 1.29019e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.62462e-05\tAbsError: 3.07628e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.78095e-09\tAbsError: 2.70246e-06\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 3.18341e-05\tAbsError: 1.25603e+10\n", - " Region: \"zone_1\"\tRelError: 2.49404e-05\tAbsError: 5.30965e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49389e-05\tAbsError: 6.97982e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52580e-09\tAbsError: 5.30267e-07\n", - " Region: \"zone_3\"\tRelError: 6.89370e-06\tAbsError: 1.25603e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.51738e-08\tAbsError: 6.11147e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.19302e-08\tAbsError: 6.44887e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 6.80507e-06\tAbsError: 7.03236e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52643e-09\tAbsError: 5.30496e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:05\u001b[0m.\u001b[1;36m757\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:05\u001b[0m.\u001b[1;36m757\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 12\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 1.01474e+00\tAbsError: 4.61335e+13\n", - " Region: \"zone_1\"\tRelError: 1.47150e-03\tAbsError: 6.17553e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29402e-03\tAbsError: 1.05400e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77486e-04\tAbsError: 6.16499e-02\n", - " Region: \"zone_3\"\tRelError: 1.01327e+00\tAbsError: 4.61335e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99952e-01\tAbsError: 7.91524e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.57670e-03\tAbsError: 3.82183e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.56216e-03\tAbsError: 1.06870e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77486e-04\tAbsError: 6.16499e-02\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:05\u001b[0m.\u001b[1;36m864\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.95\u001b[0m \n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "number of equations 31816\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.68712e+00\tAbsError: 3.62564e+14\n", - " Region: \"zone_1\"\tRelError: 1.22207e-02\tAbsError: 1.54507e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.22061e-02\tAbsError: 1.03781e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.46093e-05\tAbsError: 5.07262e-03\n", - " Region: \"zone_3\"\tRelError: 1.67490e+00\tAbsError: 3.62564e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61422e+00\tAbsError: 1.33857e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.90388e-03\tAbsError: 3.49178e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.47664e-02\tAbsError: 1.03783e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.46093e-05\tAbsError: 5.07262e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.34480e+00\tAbsError: 1.48853e+16\n", - " Region: \"zone_1\"\tRelError: 1.80604e-01\tAbsError: 1.59400e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.80172e-01\tAbsError: 9.16501e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.31839e-04\tAbsError: 1.50235e-01\n", - " Region: \"zone_3\"\tRelError: 3.16419e+00\tAbsError: 1.48853e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.34401e-02\tAbsError: 7.53366e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.19569e-02\tAbsError: 7.35164e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 3.07837e+00\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.31839e-04\tAbsError: 1.50235e-01\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 7.62884e-02\tAbsError: 3.11279e+13\n", - " Region: \"zone_1\"\tRelError: 7.32639e-03\tAbsError: 6.71228e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.32458e-03\tAbsError: 3.92163e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.81752e-06\tAbsError: 6.32012e-04\n", - " Region: \"zone_3\"\tRelError: 6.89620e-02\tAbsError: 3.11279e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.28301e-03\tAbsError: 1.04211e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.41417e-03\tAbsError: 2.07069e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.02630e-02\tAbsError: 3.96840e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.81752e-06\tAbsError: 6.32012e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 9.54016e+00\tAbsError: 8.28773e+15\n", - " Region: \"zone_1\"\tRelError: 7.90066e+00\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.90066e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.70848e-10\tAbsError: 1.98729e-07\n", - " Region: \"zone_3\"\tRelError: 1.63951e+00\tAbsError: 8.28773e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69626e-01\tAbsError: 4.72857e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69607e-01\tAbsError: 3.55916e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00272e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.71112e-10\tAbsError: 1.98826e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.74449e+01\tAbsError: 6.96689e+17\n", - " Region: \"zone_1\"\tRelError: 2.96607e+01\tAbsError: 4.22091e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.96607e+01\tAbsError: 4.22089e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.61425e-10\tAbsError: 1.60361e-07\n", - " Region: \"zone_3\"\tRelError: 7.78417e+00\tAbsError: 6.96689e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.41055e-01\tAbsError: 3.41021e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.26169e-01\tAbsError: 3.55668e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 6.31694e+00\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.61615e-10\tAbsError: 1.60430e-07\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 3.79888e-01\tAbsError: 4.76646e+14\n", - " Region: \"zone_1\"\tRelError: 8.18570e-03\tAbsError: 1.32227e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 7.80599e-03\tAbsError: 3.37742e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.79705e-04\tAbsError: 1.31889e-01\n", - " Region: \"zone_3\"\tRelError: 3.71702e-01\tAbsError: 4.76646e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87565e-01\tAbsError: 1.19019e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.42254e-02\tAbsError: 4.64744e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.95315e-02\tAbsError: 3.47242e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.80503e-04\tAbsError: 1.32163e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 3.42204e-01\tAbsError: 1.90329e+15\n", - " Region: \"zone_1\"\tRelError: 2.01983e-02\tAbsError: 3.47392e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.91990e-02\tAbsError: 1.15001e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.99221e-04\tAbsError: 3.47277e-01\n", - " Region: \"zone_3\"\tRelError: 3.22006e-01\tAbsError: 1.90329e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.20950e-03\tAbsError: 1.00831e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03234e-03\tAbsError: 8.94978e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.11765e-01\tAbsError: 1.16357e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.99221e-04\tAbsError: 3.47277e-01\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 4.97160e-03\tAbsError: 5.38954e+11\n", - " Region: \"zone_1\"\tRelError: 5.24807e-04\tAbsError: 2.04317e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.18927e-04\tAbsError: 4.87701e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.88073e-06\tAbsError: 2.04268e-03\n", - " Region: \"zone_3\"\tRelError: 4.44679e-03\tAbsError: 5.38954e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23342e-04\tAbsError: 2.85836e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.06330e-04\tAbsError: 2.53118e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.21124e-03\tAbsError: 4.94546e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.88073e-06\tAbsError: 2.04268e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.57084e+00\tAbsError: 2.89575e+14\n", - " Region: \"zone_1\"\tRelError: 1.26543e-01\tAbsError: 8.72430e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.26381e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62480e-04\tAbsError: 5.64794e-02\n", - " Region: \"zone_3\"\tRelError: 1.44430e+00\tAbsError: 2.89575e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37983e-01\tAbsError: 1.66847e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32917e-01\tAbsError: 1.22728e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.32359e-02\tAbsError: 3.07641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62480e-04\tAbsError: 5.64794e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.96671e+01\tAbsError: 4.78725e+17\n", - " Region: \"zone_1\"\tRelError: 1.56062e+01\tAbsError: 6.48524e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.56044e+01\tAbsError: 3.22428e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77540e-03\tAbsError: 6.16281e-01\n", - " Region: \"zone_3\"\tRelError: 2.40609e+01\tAbsError: 4.78725e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.32526e-01\tAbsError: 2.39421e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.11429e-01\tAbsError: 2.39304e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 2.30152e+01\tAbsError: 3.22432e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77768e-03\tAbsError: 6.17061e-01\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 1.68812e-01\tAbsError: 6.68290e+13\n", - " Region: \"zone_1\"\tRelError: 1.62757e-02\tAbsError: 2.11428e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.62698e-02\tAbsError: 8.34201e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.83306e-06\tAbsError: 2.03086e-03\n", - " Region: \"zone_3\"\tRelError: 1.52537e-01\tAbsError: 6.68290e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.43740e-03\tAbsError: 2.29738e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.52401e-03\tAbsError: 4.38552e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33569e-01\tAbsError: 8.44016e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.83624e-06\tAbsError: 2.03199e-03\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 6.39289e-03\tAbsError: 1.99417e+12\n", - " Region: \"zone_1\"\tRelError: 6.51668e-04\tAbsError: 1.66997e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.51192e-04\tAbsError: 1.51055e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.75922e-07\tAbsError: 1.65487e-04\n", - " Region: \"zone_3\"\tRelError: 5.74122e-03\tAbsError: 1.99417e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05094e-04\tAbsError: 9.44377e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.03732e-04\tAbsError: 1.04979e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.33192e-03\tAbsError: 1.53169e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.76123e-07\tAbsError: 1.65562e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.26159e-01\tAbsError: 1.60368e+15\n", - " Region: \"zone_1\"\tRelError: 2.39971e-02\tAbsError: 1.68797e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.39489e-02\tAbsError: 1.07820e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.82419e-05\tAbsError: 1.67718e-02\n", - " Region: \"zone_3\"\tRelError: 7.02162e-01\tAbsError: 1.60368e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.86883e-03\tAbsError: 7.94204e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.42424e-03\tAbsError: 8.09476e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.96821e-01\tAbsError: 1.08766e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.82636e-05\tAbsError: 1.67793e-02\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 1.38481e-02\tAbsError: 1.68702e+12\n", - " Region: \"zone_1\"\tRelError: 1.46213e-03\tAbsError: 4.42925e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.44939e-03\tAbsError: 1.36850e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27342e-05\tAbsError: 4.42788e-03\n", - " Region: \"zone_3\"\tRelError: 1.23859e-02\tAbsError: 1.68702e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.64650e-04\tAbsError: 1.13427e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.36099e-04\tAbsError: 5.52747e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18725e-02\tAbsError: 1.41163e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27342e-05\tAbsError: 4.42788e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.08933e+00\tAbsError: 3.08258e+13\n", - " Region: \"zone_1\"\tRelError: 1.39766e-01\tAbsError: 3.14532e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39750e-01\tAbsError: 2.58726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60540e-05\tAbsError: 5.58058e-03\n", - " Region: \"zone_3\"\tRelError: 9.49568e-01\tAbsError: 3.08258e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40223e-01\tAbsError: 2.27975e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.01508e-01\tAbsError: 8.02831e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07820e-01\tAbsError: 2.58966e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60540e-05\tAbsError: 5.58058e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.58934e+01\tAbsError: 1.08929e+17\n", - " Region: \"zone_1\"\tRelError: 7.76222e+00\tAbsError: 2.03869e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 7.76171e+00\tAbsError: 2.58965e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.13002e-04\tAbsError: 1.77973e-01\n", - " Region: \"zone_3\"\tRelError: 8.13122e+00\tAbsError: 1.08929e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.31874e-01\tAbsError: 5.46655e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.37122e-01\tAbsError: 5.42631e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 7.76171e+00\tAbsError: 2.58965e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.15508e-04\tAbsError: 1.78843e-01\n", - "Iteration: 16\n", - " Device: \"device\"\tRelError: 7.67318e-04\tAbsError: 1.55738e+11\n", - " Region: \"zone_1\"\tRelError: 8.06401e-05\tAbsError: 1.34410e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 8.02538e-05\tAbsError: 1.14844e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.86221e-07\tAbsError: 1.34295e-04\n", - " Region: \"zone_3\"\tRelError: 6.86678e-04\tAbsError: 1.55738e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.65553e-05\tAbsError: 8.47722e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.64999e-05\tAbsError: 7.09653e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 6.53236e-04\tAbsError: 1.16414e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.86355e-07\tAbsError: 1.34349e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.12346e-01\tAbsError: 1.08123e+14\n", - " Region: \"zone_1\"\tRelError: 3.56238e-03\tAbsError: 1.31451e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52458e-03\tAbsError: 6.36043e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.77942e-05\tAbsError: 1.31387e-02\n", - " Region: \"zone_3\"\tRelError: 1.08784e-01\tAbsError: 1.08123e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.76703e-04\tAbsError: 5.36465e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.39449e-04\tAbsError: 5.44763e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08330e-01\tAbsError: 6.41381e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.78094e-05\tAbsError: 1.31440e-02\n", - "Iteration: 16\n", - " Device: \"device\"\tRelError: 1.41016e-02\tAbsError: 4.32538e+12\n", - " Region: \"zone_1\"\tRelError: 1.44009e-03\tAbsError: 3.91787e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43897e-03\tAbsError: 3.24685e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11735e-06\tAbsError: 3.88540e-04\n", - " Region: \"zone_3\"\tRelError: 1.26615e-02\tAbsError: 4.32538e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.44521e-04\tAbsError: 2.07782e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.41617e-04\tAbsError: 2.24755e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17742e-02\tAbsError: 3.29253e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11758e-06\tAbsError: 3.88622e-04\n", - "Iteration: 17\n", - " Device: \"device\"\tRelError: 4.85089e-04\tAbsError: 1.31358e+11\n", - " Region: \"zone_1\"\tRelError: 5.00385e-05\tAbsError: 1.89992e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.99841e-05\tAbsError: 8.85529e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.43823e-08\tAbsError: 1.89106e-05\n", - " Region: \"zone_3\"\tRelError: 4.35051e-04\tAbsError: 1.31358e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.30758e-05\tAbsError: 7.11941e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.29816e-05\tAbsError: 6.01635e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.08939e-04\tAbsError: 8.98229e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.43956e-08\tAbsError: 1.89153e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.94758e-01\tAbsError: 4.98642e+12\n", - " Region: \"zone_1\"\tRelError: 2.19383e-02\tAbsError: 1.22221e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.19295e-02\tAbsError: 9.16564e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.79291e-06\tAbsError: 3.05651e-03\n", - " Region: \"zone_3\"\tRelError: 2.72820e-01\tAbsError: 4.98642e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12699e-01\tAbsError: 2.77867e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.23181e-02\tAbsError: 2.20775e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77940e-02\tAbsError: 9.16568e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.79389e-06\tAbsError: 3.05683e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.09090e+02\tAbsError: 1.19633e+16\n", - " Region: \"zone_1\"\tRelError: 1.29631e+01\tAbsError: 2.31122e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29625e+01\tAbsError: 1.10519e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.34257e-04\tAbsError: 2.20070e-01\n", - " Region: \"zone_3\"\tRelError: 1.96127e+02\tAbsError: 1.19633e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.51181e-02\tAbsError: 6.00863e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.25304e-02\tAbsError: 5.95469e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.96079e+02\tAbsError: 1.10525e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.35003e-04\tAbsError: 2.20329e-01\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 8.36096e-02\tAbsError: 8.44228e+13\n", - " Region: \"zone_1\"\tRelError: 2.87350e-03\tAbsError: 1.23009e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.86998e-03\tAbsError: 4.23325e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.52636e-06\tAbsError: 1.22586e-03\n", - " Region: \"zone_3\"\tRelError: 8.07361e-02\tAbsError: 8.44228e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46087e-04\tAbsError: 4.18513e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.25646e-04\tAbsError: 4.25715e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.04608e-02\tAbsError: 4.27186e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.52783e-06\tAbsError: 1.22636e-03\n", - "Iteration: 17\n", - " Device: \"device\"\tRelError: 1.81980e-03\tAbsError: 3.66024e+11\n", - " Region: \"zone_1\"\tRelError: 1.91275e-04\tAbsError: 2.94745e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.90428e-04\tAbsError: 2.56341e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.46877e-07\tAbsError: 2.94489e-04\n", - " Region: \"zone_3\"\tRelError: 1.62852e-03\tAbsError: 3.66024e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.82060e-05\tAbsError: 2.08266e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.80575e-05\tAbsError: 1.57759e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55141e-03\tAbsError: 2.59920e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.47241e-07\tAbsError: 2.94616e-04\n", - "Iteration: 18\n", - " Device: \"device\"\tRelError: 8.15689e-05\tAbsError: 1.78459e+10\n", - " Region: \"zone_1\"\tRelError: 8.53265e-06\tAbsError: 9.62031e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.50502e-06\tAbsError: 1.21079e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.76308e-08\tAbsError: 9.60820e-06\n", - " Region: \"zone_3\"\tRelError: 7.30363e-05\tAbsError: 1.78459e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.83620e-06\tAbsError: 1.02277e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.82841e-06\tAbsError: 7.61829e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 6.93440e-05\tAbsError: 1.22778e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.76376e-08\tAbsError: 9.61058e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:13\u001b[0m.\u001b[1;36m069\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:13\u001b[0m.\u001b[1;36m069\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.20555555555555557\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.73338e-02\tAbsError: 3.09182e+12\n", - " Region: \"zone_1\"\tRelError: 1.11598e-02\tAbsError: 1.65988e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11551e-02\tAbsError: 1.42279e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73882e-06\tAbsError: 1.64565e-03\n", - " Region: \"zone_3\"\tRelError: 6.61739e-02\tAbsError: 3.09182e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.71921e-02\tAbsError: 1.98622e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.49402e-04\tAbsError: 1.10560e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.42774e-03\tAbsError: 1.50865e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73882e-06\tAbsError: 1.64565e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 3.05334e-02\tAbsError: 1.11116e+15\n", - " Region: \"zone_1\"\tRelError: 1.31572e-02\tAbsError: 1.15650e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28247e-02\tAbsError: 1.19112e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.32502e-04\tAbsError: 1.15639e-01\n", - " Region: \"zone_3\"\tRelError: 1.73762e-02\tAbsError: 1.11116e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.08419e-03\tAbsError: 5.81267e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.14070e-04\tAbsError: 5.29897e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.44454e-02\tAbsError: 1.22279e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.32502e-04\tAbsError: 1.15639e-01\n", - "Iteration: 18\n", - " Device: \"device\"\tRelError: 1.07179e-03\tAbsError: 2.87267e+11\n", - " Region: \"zone_1\"\tRelError: 1.10640e-04\tAbsError: 4.34533e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10516e-04\tAbsError: 1.92607e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.24407e-07\tAbsError: 4.32607e-05\n", - " Region: \"zone_3\"\tRelError: 9.61153e-04\tAbsError: 2.87267e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.86040e-05\tAbsError: 1.56933e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.83999e-05\tAbsError: 1.30334e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 9.04024e-04\tAbsError: 1.95375e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.24432e-07\tAbsError: 4.32693e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.36875e-02\tAbsError: 9.69294e+12\n", - " Region: \"zone_1\"\tRelError: 4.70501e-04\tAbsError: 6.20216e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.68718e-04\tAbsError: 4.28680e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.78298e-06\tAbsError: 6.19787e-04\n", - " Region: \"zone_3\"\tRelError: 1.32170e-02\tAbsError: 9.69294e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.60935e-05\tAbsError: 4.80983e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.36870e-05\tAbsError: 4.88312e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31854e-02\tAbsError: 4.32490e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.78363e-06\tAbsError: 6.20008e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.35940e-03\tAbsError: 7.91644e+11\n", - " Region: \"zone_1\"\tRelError: 6.17001e-04\tAbsError: 1.42075e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.16596e-04\tAbsError: 1.18665e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.04748e-07\tAbsError: 1.40888e-04\n", - " Region: \"zone_3\"\tRelError: 7.42401e-04\tAbsError: 7.91644e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00211e-04\tAbsError: 1.88344e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.60094e-05\tAbsError: 6.03301e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.55776e-04\tAbsError: 1.18974e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.04912e-07\tAbsError: 1.40947e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.48290e+01\tAbsError: 8.84394e+15\n", - " Region: \"zone_1\"\tRelError: 2.31805e+01\tAbsError: 4.20744e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.31805e+01\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.17390e-09\tAbsError: 1.79915e-06\n", - " Region: \"zone_3\"\tRelError: 1.64851e+00\tAbsError: 8.84394e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78981e-01\tAbsError: 4.89377e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.78912e-01\tAbsError: 3.95017e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.06132e-02\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.17475e-09\tAbsError: 1.79945e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.13709e-02\tAbsError: 5.67404e+14\n", - " Region: \"zone_1\"\tRelError: 2.78016e-02\tAbsError: 1.90673e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.77962e-02\tAbsError: 3.34161e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.38355e-06\tAbsError: 1.87332e-03\n", - " Region: \"zone_3\"\tRelError: 2.35693e-02\tAbsError: 5.67404e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.43611e-04\tAbsError: 2.82078e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.73004e-04\tAbsError: 2.85326e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.23473e-02\tAbsError: 3.37111e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.38683e-06\tAbsError: 1.87446e-03\n", - "Iteration: 19\n", - " Device: \"device\"\tRelError: 1.86653e-04\tAbsError: 4.07183e+10\n", - " Region: \"zone_1\"\tRelError: 1.95254e-05\tAbsError: 2.12148e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.94645e-05\tAbsError: 2.72481e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.09302e-08\tAbsError: 2.11876e-05\n", - " Region: \"zone_3\"\tRelError: 1.67128e-04\tAbsError: 4.07183e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.17871e-06\tAbsError: 2.36500e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.16021e-06\tAbsError: 1.70683e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.58728e-04\tAbsError: 2.76329e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.09443e-08\tAbsError: 2.11925e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 6.63798e-03\tAbsError: 4.90503e+12\n", - " Region: \"zone_1\"\tRelError: 2.29406e-04\tAbsError: 9.25474e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29140e-04\tAbsError: 1.97212e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.66464e-07\tAbsError: 9.23502e-05\n", - " Region: \"zone_3\"\tRelError: 6.40857e-03\tAbsError: 4.90503e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.34900e-06\tAbsError: 2.43347e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32522e-06\tAbsError: 2.47155e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 6.39263e-03\tAbsError: 1.99078e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.66498e-07\tAbsError: 9.23593e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.02141e-03\tAbsError: 1.23957e+11\n", - " Region: \"zone_1\"\tRelError: 5.52143e-04\tAbsError: 4.11028e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.52024e-04\tAbsError: 7.43261e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18138e-07\tAbsError: 4.10285e-05\n", - " Region: \"zone_3\"\tRelError: 4.69263e-04\tAbsError: 1.23957e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.58109e-06\tAbsError: 8.33431e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.49437e-06\tAbsError: 4.06143e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.50070e-04\tAbsError: 7.83274e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18138e-07\tAbsError: 4.10285e-05\n", - "Iteration: 20\n", - " Device: \"device\"\tRelError: 8.12376e-05\tAbsError: 2.03207e+10\n", - " Region: \"zone_1\"\tRelError: 8.42267e-06\tAbsError: 4.07956e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.41098e-06\tAbsError: 1.30852e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.16942e-08\tAbsError: 4.06647e-06\n", - " Region: \"zone_3\"\tRelError: 7.28149e-05\tAbsError: 2.03207e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.02463e-06\tAbsError: 1.17351e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.01039e-06\tAbsError: 8.58558e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 6.87682e-05\tAbsError: 1.32758e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.16959e-08\tAbsError: 4.06708e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 6.61737e+00\tAbsError: 3.31502e+14\n", - " Region: \"zone_1\"\tRelError: 5.14990e+00\tAbsError: 9.55443e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.14972e+00\tAbsError: 3.20824e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.82539e-04\tAbsError: 6.34619e-02\n", - " Region: \"zone_3\"\tRelError: 1.46747e+00\tAbsError: 3.31502e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.54810e-01\tAbsError: 1.62504e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.49659e-01\tAbsError: 1.68998e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.28163e-02\tAbsError: 3.20829e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.82539e-04\tAbsError: 6.34619e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:16\u001b[0m.\u001b[1;36m292\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.2\u001b[0m \n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.28947e-03\tAbsError: 1.46573e+13\n", - " Region: \"zone_1\"\tRelError: 7.23740e-04\tAbsError: 4.27408e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.11459e-04\tAbsError: 8.86431e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22814e-05\tAbsError: 4.27319e-03\n", - " Region: \"zone_3\"\tRelError: 1.56573e-03\tAbsError: 1.46573e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.92902e-05\tAbsError: 7.30178e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.04396e-05\tAbsError: 7.35548e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.42371e-03\tAbsError: 8.92429e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22868e-05\tAbsError: 4.27500e-03\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.25648e-03\tAbsError: 7.75715e+11\n", - " Region: \"zone_1\"\tRelError: 4.35799e-05\tAbsError: 3.84452e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.34694e-05\tAbsError: 2.84735e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10539e-07\tAbsError: 3.84167e-05\n", - " Region: \"zone_3\"\tRelError: 1.21290e-03\tAbsError: 7.75715e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28473e-06\tAbsError: 3.85060e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.13479e-06\tAbsError: 3.90655e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21037e-03\tAbsError: 2.87358e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10581e-07\tAbsError: 3.84313e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.30911e-04\tAbsError: 3.51442e+10\n", - " Region: \"zone_1\"\tRelError: 6.81885e-05\tAbsError: 6.92614e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.81687e-05\tAbsError: 3.42472e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.97989e-08\tAbsError: 6.89189e-06\n", - " Region: \"zone_3\"\tRelError: 6.27220e-05\tAbsError: 3.51442e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91737e-06\tAbsError: 1.11617e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.89123e-06\tAbsError: 2.39825e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.68936e-05\tAbsError: 3.42673e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.98072e-08\tAbsError: 6.89488e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.17677e+01\tAbsError: 4.26742e+13\n", - " Region: \"zone_1\"\tRelError: 1.07525e+01\tAbsError: 3.09210e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07525e+01\tAbsError: 2.58825e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.44922e-05\tAbsError: 5.03846e-03\n", - " Region: \"zone_3\"\tRelError: 1.01514e+00\tAbsError: 4.26742e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.66369e-01\tAbsError: 3.07350e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.34345e-01\tAbsError: 1.19392e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14412e-01\tAbsError: 2.58985e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.44922e-05\tAbsError: 5.03846e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.41093e-03\tAbsError: 2.89275e+13\n", - " Region: \"zone_1\"\tRelError: 1.11675e-03\tAbsError: 2.49108e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11604e-03\tAbsError: 1.27087e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.12326e-07\tAbsError: 2.47837e-04\n", - " Region: \"zone_3\"\tRelError: 2.29418e-03\tAbsError: 2.89275e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.03893e-05\tAbsError: 1.43939e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.44517e-05\tAbsError: 1.45336e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.23862e-03\tAbsError: 1.28225e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.12611e-07\tAbsError: 2.47936e-04\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 4.79935e-04\tAbsError: 3.06765e+11\n", - " Region: \"zone_1\"\tRelError: 1.66486e-05\tAbsError: 7.60779e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66267e-05\tAbsError: 1.06336e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18595e-08\tAbsError: 7.59715e-06\n", - " Region: \"zone_3\"\tRelError: 4.63286e-04\tAbsError: 3.06765e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.16909e-07\tAbsError: 1.52260e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.59699e-07\tAbsError: 1.54505e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.62288e-04\tAbsError: 1.07353e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18679e-08\tAbsError: 7.60017e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.15185e+01\tAbsError: 8.37847e+15\n", - " Region: \"zone_1\"\tRelError: 9.89198e+00\tAbsError: 4.09558e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.89198e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.56805e-09\tAbsError: 1.58847e-06\n", - " Region: \"zone_3\"\tRelError: 1.62652e+00\tAbsError: 8.37847e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69532e-01\tAbsError: 4.63620e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69461e-01\tAbsError: 3.74227e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.75319e-02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.56875e-09\tAbsError: 1.58872e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 4.91977e-05\tAbsError: 5.89586e+09\n", - " Region: \"zone_1\"\tRelError: 2.66095e-05\tAbsError: 1.68142e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66047e-05\tAbsError: 3.56714e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.83123e-09\tAbsError: 1.67785e-06\n", - " Region: \"zone_3\"\tRelError: 2.25882e-05\tAbsError: 5.89586e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.48785e-07\tAbsError: 4.10020e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.43251e-07\tAbsError: 1.79565e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.16913e-05\tAbsError: 3.75397e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.83123e-09\tAbsError: 1.67785e-06\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.01824e-04\tAbsError: 5.91028e+10\n", - " Region: \"zone_1\"\tRelError: 3.53926e-06\tAbsError: 2.67115e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.53158e-06\tAbsError: 2.19844e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.67947e-09\tAbsError: 2.66896e-06\n", - " Region: \"zone_3\"\tRelError: 9.82849e-05\tAbsError: 5.91028e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.78782e-08\tAbsError: 2.93440e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.77169e-08\tAbsError: 2.97588e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 9.80917e-05\tAbsError: 2.22202e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.68243e-09\tAbsError: 2.67005e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:19\u001b[0m.\u001b[1;36m098\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.4\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Iteration: 3\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 6.47042e-01\tAbsError: 2.75951e+12\n", - " Region: \"zone_1\"\tRelError: 3.49194e-01\tAbsError: 1.42105e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.49185e-01\tAbsError: 1.08348e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.70970e-06\tAbsError: 3.37571e-03\n", - " Region: \"zone_3\"\tRelError: 2.97847e-01\tAbsError: 2.75951e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21768e-01\tAbsError: 1.84052e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.86333e-02\tAbsError: 9.18991e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74362e-02\tAbsError: 1.08349e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.71049e-06\tAbsError: 3.37604e-03\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.90184e-04\tAbsError: 2.11388e+12\n", - " Region: \"zone_1\"\tRelError: 1.29224e-04\tAbsError: 1.96202e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28659e-04\tAbsError: 8.67060e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.64262e-07\tAbsError: 1.96115e-04\n", - " Region: \"zone_3\"\tRelError: 2.60960e-04\tAbsError: 2.11388e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.64631e-06\tAbsError: 1.05289e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.62600e-06\tAbsError: 1.06099e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.52124e-04\tAbsError: 8.74089e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.64306e-07\tAbsError: 1.96180e-04\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.94648e+00\tAbsError: 2.98429e+14\n", - " Region: \"zone_1\"\tRelError: 5.14524e-01\tAbsError: 9.09014e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.14351e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72976e-04\tAbsError: 6.01378e-02\n", - " Region: \"zone_3\"\tRelError: 1.43195e+00\tAbsError: 2.98429e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37879e-01\tAbsError: 1.45714e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32394e-01\tAbsError: 1.52716e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.15050e-02\tAbsError: 3.07641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72976e-04\tAbsError: 6.01378e-02\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 3.38300e-05\tAbsError: 2.01418e+10\n", - " Region: \"zone_1\"\tRelError: 1.17571e-06\tAbsError: 5.87640e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17402e-06\tAbsError: 7.44968e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.68869e-09\tAbsError: 5.86895e-07\n", - " Region: \"zone_3\"\tRelError: 3.26543e-05\tAbsError: 2.01418e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.37367e-08\tAbsError: 9.99956e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.02428e-08\tAbsError: 1.01422e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.25886e-05\tAbsError: 7.53080e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.68939e-09\tAbsError: 5.87154e-07\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 3.50846e-01\tAbsError: 2.76167e+12\n", - " Region: \"zone_1\"\tRelError: 2.75094e-01\tAbsError: 2.71980e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.75086e-01\tAbsError: 1.59945e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.82662e-06\tAbsError: 2.71820e-03\n", - " Region: \"zone_3\"\tRelError: 7.57513e-02\tAbsError: 2.76167e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.72956e-02\tAbsError: 1.69461e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.56368e-04\tAbsError: 1.06706e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.29152e-03\tAbsError: 1.67315e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.82662e-06\tAbsError: 2.71820e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.54222e-04\tAbsError: 1.61841e+12\n", - " Region: \"zone_1\"\tRelError: 8.49561e-05\tAbsError: 2.28110e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 8.48905e-05\tAbsError: 5.74698e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.56084e-08\tAbsError: 2.27536e-05\n", - " Region: \"zone_3\"\tRelError: 1.69266e-04\tAbsError: 1.61841e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.63777e-06\tAbsError: 8.05797e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.40478e-06\tAbsError: 8.12616e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66158e-04\tAbsError: 5.79789e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.56151e-08\tAbsError: 2.27557e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.62552e+00\tAbsError: 8.26510e+15\n", - " Region: \"zone_1\"\tRelError: 6.97719e+00\tAbsError: 4.09546e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.97719e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.33437e-10\tAbsError: 3.24924e-07\n", - " Region: \"zone_3\"\tRelError: 1.64833e+00\tAbsError: 8.26510e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69652e-01\tAbsError: 4.84454e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69632e-01\tAbsError: 3.42056e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09044e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.33825e-10\tAbsError: 3.25065e-07\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.04600e+00\tAbsError: 3.86292e+13\n", - " Region: \"zone_1\"\tRelError: 9.93313e-02\tAbsError: 3.04737e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.93181e-02\tAbsError: 2.58731e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32328e-05\tAbsError: 4.60065e-03\n", - " Region: \"zone_3\"\tRelError: 9.46666e-01\tAbsError: 3.86292e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39748e-01\tAbsError: 2.78671e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.98990e-01\tAbsError: 1.07621e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07914e-01\tAbsError: 2.56750e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32328e-05\tAbsError: 4.60065e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.89863e-05\tAbsError: 1.96107e+11\n", - " Region: \"zone_1\"\tRelError: 1.30703e-05\tAbsError: 1.19874e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.30359e-05\tAbsError: 6.55029e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.44566e-08\tAbsError: 1.19809e-05\n", - " Region: \"zone_3\"\tRelError: 2.59160e-05\tAbsError: 1.96107e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.50307e-07\tAbsError: 9.76926e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.96535e-07\tAbsError: 9.84147e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.53347e-05\tAbsError: 6.60584e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.44696e-08\tAbsError: 1.19854e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.21540e-02\tAbsError: 1.33312e+12\n", - " Region: \"zone_1\"\tRelError: 3.99726e-02\tAbsError: 1.24237e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.99723e-02\tAbsError: 1.87829e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.51481e-07\tAbsError: 1.22358e-04\n", - " Region: \"zone_3\"\tRelError: 2.18136e-03\tAbsError: 1.33312e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.72391e-04\tAbsError: 3.65392e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.72373e-04\tAbsError: 9.67731e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.83624e-03\tAbsError: 1.88227e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.51639e-07\tAbsError: 1.22416e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.56210e+00\tAbsError: 2.88655e+14\n", - " Region: \"zone_1\"\tRelError: 1.01850e-01\tAbsError: 8.11752e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01705e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.45044e-04\tAbsError: 5.04116e-02\n", - " Region: \"zone_3\"\tRelError: 1.46025e+00\tAbsError: 2.88655e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39145e-01\tAbsError: 2.10222e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.31918e-01\tAbsError: 7.84329e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.90395e-02\tAbsError: 3.07640e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.45044e-04\tAbsError: 5.04116e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.81932e-01\tAbsError: 3.51190e+12\n", - " Region: \"zone_1\"\tRelError: 1.43962e-02\tAbsError: 1.26244e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43862e-02\tAbsError: 9.16567e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.94829e-06\tAbsError: 3.45869e-03\n", - " Region: \"zone_3\"\tRelError: 2.67535e-01\tAbsError: 3.51190e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10366e-01\tAbsError: 2.07282e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.20558e-02\tAbsError: 1.43908e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51034e-02\tAbsError: 9.16572e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.94829e-06\tAbsError: 3.45869e-03\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:22\u001b[0m.\u001b[1;36m730\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:22\u001b[0m.\u001b[1;36m762\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.15 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:22\u001b[0m.\u001b[1;36m807\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.06372e-02\tAbsError: 1.01202e+11\n", - " Region: \"zone_1\"\tRelError: 1.03031e-02\tAbsError: 7.97062e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03028e-02\tAbsError: 5.78857e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.29320e-07\tAbsError: 7.96483e-05\n", - " Region: \"zone_3\"\tRelError: 3.34143e-04\tAbsError: 1.01202e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.06734e-06\tAbsError: 7.37076e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.99097e-06\tAbsError: 2.74944e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.17855e-04\tAbsError: 6.08606e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.29419e-07\tAbsError: 7.96808e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.02466e+00\tAbsError: 6.04267e+13\n", - " Region: \"zone_1\"\tRelError: 7.18592e-02\tAbsError: 3.22577e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.18409e-02\tAbsError: 2.58878e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83272e-05\tAbsError: 6.36990e-03\n", - " Region: \"zone_3\"\tRelError: 9.52804e-01\tAbsError: 6.04267e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40508e-01\tAbsError: 3.80417e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.10167e-01\tAbsError: 2.23851e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02110e-01\tAbsError: 2.58991e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83272e-05\tAbsError: 6.36990e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.22422e-02\tAbsError: 3.50280e+12\n", - " Region: \"zone_1\"\tRelError: 6.27969e-03\tAbsError: 2.19297e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.27342e-03\tAbsError: 1.50745e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.27087e-06\tAbsError: 2.17790e-03\n", - " Region: \"zone_3\"\tRelError: 6.59626e-02\tAbsError: 3.50280e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.67825e-02\tAbsError: 2.11769e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.14375e-04\tAbsError: 1.38511e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.55939e-03\tAbsError: 1.55695e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.27087e-06\tAbsError: 2.17790e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.93466e+03\tAbsError: 4.31846e+18\n", - " Region: \"zone_1\"\tRelError: 4.28785e+01\tAbsError: 8.96716e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.28785e+01\tAbsError: 8.96714e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.33797e-10\tAbsError: 1.85521e-07\n", - " Region: \"zone_3\"\tRelError: 1.89179e+03\tAbsError: 4.31846e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.97606e+01\tAbsError: 2.12744e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.67832e+03\tAbsError: 2.19102e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 1.23706e+02\tAbsError: 8.96718e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.34021e-10\tAbsError: 1.85602e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:24\u001b[0m.\u001b[1;36m306\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:24\u001b[0m.\u001b[1;36m340\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.2 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:24\u001b[0m.\u001b[1;36m374\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.48710e-03\tAbsError: 7.36590e+10\n", - " Region: \"zone_1\"\tRelError: 5.30545e-03\tAbsError: 3.35547e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.30544e-03\tAbsError: 6.29646e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.45758e-09\tAbsError: 3.29250e-06\n", - " Region: \"zone_3\"\tRelError: 1.81652e-04\tAbsError: 7.36590e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.81848e-06\tAbsError: 3.00987e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.76295e-06\tAbsError: 4.35602e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.68061e-04\tAbsError: 6.32627e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.46257e-09\tAbsError: 3.29432e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.07050e-01\tAbsError: 1.83634e+13\n", - " Region: \"zone_1\"\tRelError: 2.24108e-02\tAbsError: 1.12606e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.24048e-02\tAbsError: 9.16557e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.02744e-06\tAbsError: 2.09499e-03\n", - " Region: \"zone_3\"\tRelError: 2.84640e-01\tAbsError: 1.83634e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.09245e-01\tAbsError: 8.86934e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.28005e-02\tAbsError: 9.49405e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25878e-02\tAbsError: 9.16561e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.02994e-06\tAbsError: 2.09586e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.61558e-03\tAbsError: 1.05156e+12\n", - " Region: \"zone_1\"\tRelError: 2.24360e-04\tAbsError: 1.45747e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.23945e-04\tAbsError: 1.49317e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14382e-07\tAbsError: 1.44254e-04\n", - " Region: \"zone_3\"\tRelError: 1.39122e-03\tAbsError: 1.05156e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46581e-04\tAbsError: 2.71207e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.31751e-04\tAbsError: 7.80355e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11247e-03\tAbsError: 1.49728e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14543e-07\tAbsError: 1.44312e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.50213e+03\tAbsError: 3.74135e+18\n", - " Region: \"zone_1\"\tRelError: 7.43071e+02\tAbsError: 1.38094e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 7.43067e+02\tAbsError: 8.66949e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.73736e-03\tAbsError: 1.29425e+00\n", - " Region: \"zone_3\"\tRelError: 7.59056e+02\tAbsError: 3.74135e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.17794e+01\tAbsError: 1.84767e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.22112e+02\tAbsError: 1.89368e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 5.05161e+02\tAbsError: 8.66950e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.73959e-03\tAbsError: 1.29503e+00\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.17355e+03\tAbsError: 6.59676e+18\n", - " Region: \"zone_1\"\tRelError: 6.64406e+01\tAbsError: 9.11956e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.64406e+01\tAbsError: 9.11936e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.73494e-09\tAbsError: 1.99410e-06\n", - " Region: \"zone_3\"\tRelError: 3.10711e+03\tAbsError: 6.59676e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.29981e+03\tAbsError: 2.72828e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.70071e+02\tAbsError: 3.86847e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 2.37228e+02\tAbsError: 9.11941e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.73711e-09\tAbsError: 1.99490e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.40237e-04\tAbsError: 2.33681e+09\n", - " Region: \"zone_1\"\tRelError: 1.34744e-04\tAbsError: 4.22136e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.34732e-04\tAbsError: 1.29205e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.21388e-08\tAbsError: 4.22007e-06\n", - " Region: \"zone_3\"\tRelError: 5.49356e-06\tAbsError: 2.33681e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.26121e-07\tAbsError: 2.08101e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.01255e-07\tAbsError: 2.55800e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 5.05404e-06\tAbsError: 1.34731e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.21398e-08\tAbsError: 4.22050e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.39650e-02\tAbsError: 2.30731e+12\n", - " Region: \"zone_1\"\tRelError: 9.33244e-04\tAbsError: 2.05118e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 9.27371e-04\tAbsError: 1.17101e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.87337e-06\tAbsError: 2.03947e-03\n", - " Region: \"zone_3\"\tRelError: 6.30318e-02\tAbsError: 2.30731e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.63237e-02\tAbsError: 1.57438e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.61914e-04\tAbsError: 7.32926e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 6.34034e-03\tAbsError: 1.22701e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.87337e-06\tAbsError: 2.03947e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.04499e-04\tAbsError: 1.25308e+11\n", - " Region: \"zone_1\"\tRelError: 1.66230e-04\tAbsError: 5.88382e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66060e-04\tAbsError: 7.31658e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69192e-07\tAbsError: 5.87650e-05\n", - " Region: \"zone_3\"\tRelError: 4.38270e-04\tAbsError: 1.25308e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07352e-05\tAbsError: 8.57588e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.06397e-05\tAbsError: 3.95488e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.16726e-04\tAbsError: 7.69575e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69192e-07\tAbsError: 5.87650e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 8.70313e+02\tAbsError: 6.98288e+17\n", - " Region: \"zone_1\"\tRelError: 7.13997e+00\tAbsError: 4.22170e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 7.12815e+00\tAbsError: 8.34500e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18194e-02\tAbsError: 4.13825e+00\n", - " Region: \"zone_3\"\tRelError: 8.63173e+02\tAbsError: 6.98288e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.32959e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.43790e+02\tAbsError: 3.65329e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03717e+01\tAbsError: 8.34501e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18393e-02\tAbsError: 4.14504e+00\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.01380e+03\tAbsError: 5.64204e+18\n", - " Region: \"zone_1\"\tRelError: 6.11831e+02\tAbsError: 2.66745e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 6.11823e+02\tAbsError: 8.83465e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.46831e-03\tAbsError: 2.57910e+00\n", - " Region: \"zone_3\"\tRelError: 2.40196e+03\tAbsError: 5.64204e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.12311e+01\tAbsError: 2.38950e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.15827e+03\tAbsError: 3.25254e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 2.12453e+02\tAbsError: 8.83466e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.47165e-03\tAbsError: 2.58021e+00\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.18681e-04\tAbsError: 4.27046e+09\n", - " Region: \"zone_1\"\tRelError: 4.05794e-04\tAbsError: 1.53696e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 4.05793e-04\tAbsError: 3.17325e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.32608e-10\tAbsError: 1.50523e-07\n", - " Region: \"zone_3\"\tRelError: 1.28868e-05\tAbsError: 4.27046e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.78504e-07\tAbsError: 2.11621e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.75078e-07\tAbsError: 2.15425e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21327e-05\tAbsError: 3.18974e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.32784e-10\tAbsError: 1.50583e-07\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.79721e-03\tAbsError: 9.76589e+11\n", - " Region: \"zone_1\"\tRelError: 1.82738e-04\tAbsError: 8.39323e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82502e-04\tAbsError: 1.48235e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36874e-07\tAbsError: 8.24499e-05\n", - " Region: \"zone_3\"\tRelError: 1.61447e-03\tAbsError: 9.76589e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10820e-04\tAbsError: 2.51654e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.02342e-04\tAbsError: 7.24935e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40107e-03\tAbsError: 1.48793e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36983e-07\tAbsError: 8.24891e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.49542e-04\tAbsError: 5.25665e+10\n", - " Region: \"zone_1\"\tRelError: 3.67448e-05\tAbsError: 6.09103e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.67274e-05\tAbsError: 4.65424e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73630e-08\tAbsError: 6.04449e-06\n", - " Region: \"zone_3\"\tRelError: 1.12797e-04\tAbsError: 5.25665e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.87855e-06\tAbsError: 1.95403e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.83786e-06\tAbsError: 3.30263e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03063e-04\tAbsError: 4.67703e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73708e-08\tAbsError: 6.04733e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 9.68427e+01\tAbsError: 1.86271e+17\n", - " Region: \"zone_1\"\tRelError: 3.19685e+01\tAbsError: 7.04871e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.19667e+01\tAbsError: 7.98884e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.79029e-03\tAbsError: 6.24983e-01\n", - " Region: \"zone_3\"\tRelError: 6.48742e+01\tAbsError: 1.86271e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.17407e+01\tAbsError: 1.20464e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.64556e+00\tAbsError: 6.58076e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14861e+01\tAbsError: 7.98885e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.79151e-03\tAbsError: 6.25414e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 8.53782e+01\tAbsError: 6.84374e+17\n", - " Region: \"zone_1\"\tRelError: 8.96834e+00\tAbsError: 2.10334e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 8.96253e+00\tAbsError: 8.52529e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.81623e-03\tAbsError: 2.01809e+00\n", - " Region: \"zone_3\"\tRelError: 7.64098e+01\tAbsError: 6.84374e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.05667e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.42655e+01\tAbsError: 3.78707e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 3.31385e+01\tAbsError: 8.52530e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.81888e-03\tAbsError: 2.01893e+00\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.52688e-05\tAbsError: 1.17670e+08\n", - " Region: \"zone_1\"\tRelError: 2.46158e-05\tAbsError: 2.70500e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.46150e-05\tAbsError: 1.36432e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.77640e-10\tAbsError: 2.70364e-07\n", - " Region: \"zone_3\"\tRelError: 6.53080e-07\tAbsError: 1.17670e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28285e-08\tAbsError: 3.19578e+07\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.29513e-08\tAbsError: 8.57119e+07\n", - " Equation: \"PotentialEquation\"\tRelError: 6.26522e-07\tAbsError: 1.37295e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.77947e-10\tAbsError: 2.70471e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:29\u001b[0m.\u001b[1;36m061\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:29\u001b[0m.\u001b[1;36m061\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.3111111111111111\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.68582e-04\tAbsError: 6.39514e+10\n", - " Region: \"zone_1\"\tRelError: 3.10151e-05\tAbsError: 5.94800e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.08440e-05\tAbsError: 4.08298e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71164e-07\tAbsError: 5.94392e-05\n", - " Region: \"zone_3\"\tRelError: 2.37567e-04\tAbsError: 6.39514e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16150e-06\tAbsError: 5.01904e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.80228e-06\tAbsError: 1.37610e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29432e-04\tAbsError: 4.25523e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71229e-07\tAbsError: 5.94601e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.34624e-05\tAbsError: 4.93091e+09\n", - " Region: \"zone_1\"\tRelError: 6.39676e-06\tAbsError: 2.70524e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.38897e-06\tAbsError: 2.92934e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.78060e-09\tAbsError: 2.70231e-06\n", - " Region: \"zone_3\"\tRelError: 1.70656e-05\tAbsError: 4.93091e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.08419e-07\tAbsError: 3.64067e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.02781e-07\tAbsError: 1.29024e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.62466e-05\tAbsError: 3.07636e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.78100e-09\tAbsError: 2.70248e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:29\u001b[0m.\u001b[1;36m854\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:29\u001b[0m.\u001b[1;36m854\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.24667e+02\tAbsError: 9.36869e+16\n", - " Region: \"zone_1\"\tRelError: 3.44931e+01\tAbsError: 1.92933e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 3.44878e+01\tAbsError: 7.59482e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.32955e-03\tAbsError: 1.85338e+00\n", - " Region: \"zone_3\"\tRelError: 9.01736e+01\tAbsError: 9.36869e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 5.68542e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.07385e+01\tAbsError: 3.68327e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.29792e-01\tAbsError: 7.59483e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.33491e-03\tAbsError: 1.85518e+00\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Iteration: 3\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 3.86267e+01\tAbsError: 4.06209e+17\n", - " Region: \"zone_1\"\tRelError: 2.78038e+01\tAbsError: 4.45349e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78027e+01\tAbsError: 8.18705e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.04531e-03\tAbsError: 3.63478e-01\n", - " Region: \"zone_3\"\tRelError: 1.08229e+01\tAbsError: 4.06209e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.41059e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.98604e-01\tAbsError: 1.65150e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 8.23283e-01\tAbsError: 8.18706e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.04717e-03\tAbsError: 3.64135e-01\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.61549e-04\tAbsError: 5.47840e+10\n", - " Region: \"zone_1\"\tRelError: 1.81900e-05\tAbsError: 1.93945e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81846e-05\tAbsError: 4.89694e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.43105e-09\tAbsError: 1.89048e-06\n", - " Region: \"zone_3\"\tRelError: 1.43359e-04\tAbsError: 5.47840e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.04114e-06\tAbsError: 2.20323e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.00674e-06\tAbsError: 3.27517e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35306e-04\tAbsError: 4.90033e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.43421e-09\tAbsError: 1.89162e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.12632e+01\tAbsError: 8.74680e+15\n", - " Region: \"zone_1\"\tRelError: 7.96020e+01\tAbsError: 4.20726e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.96020e+01\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.00346e-11\tAbsError: 2.43477e-08\n", - " Region: \"zone_3\"\tRelError: 1.66123e+00\tAbsError: 8.74680e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.79075e-01\tAbsError: 4.99947e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.79057e-01\tAbsError: 3.74732e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03096e-01\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.00563e-11\tAbsError: 2.43563e-08\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.28223e+02\tAbsError: 1.62795e+16\n", - " Region: \"zone_1\"\tRelError: 8.61338e-01\tAbsError: 1.70935e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 8.61052e-01\tAbsError: 7.15491e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.85874e-04\tAbsError: 9.93859e-02\n", - " Region: \"zone_3\"\tRelError: 4.27361e+02\tAbsError: 1.62795e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.54493e+01\tAbsError: 8.35436e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.99426e+02\tAbsError: 7.92518e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.48589e+00\tAbsError: 7.15491e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.88789e-04\tAbsError: 1.00396e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.06257e+02\tAbsError: 1.29604e+17\n", - " Region: \"zone_1\"\tRelError: 8.27554e+00\tAbsError: 8.69496e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 8.27327e+00\tAbsError: 7.81451e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.27537e-03\tAbsError: 7.91351e-01\n", - " Region: \"zone_3\"\tRelError: 9.79817e+01\tAbsError: 1.29604e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 6.52819e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.97255e+01\tAbsError: 6.43224e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 9.25384e+00\tAbsError: 7.81452e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.29060e-03\tAbsError: 7.96682e-01\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 9.54016e+00\tAbsError: 8.28773e+15\n", - " Region: \"zone_1\"\tRelError: 7.90066e+00\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.90066e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.70872e-10\tAbsError: 1.98738e-07\n", - " Region: \"zone_3\"\tRelError: 1.63951e+00\tAbsError: 8.28773e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69626e-01\tAbsError: 4.72857e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69607e-01\tAbsError: 3.55916e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00272e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.71136e-10\tAbsError: 1.98834e-07\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.55715e-06\tAbsError: 1.55371e+09\n", - " Region: \"zone_1\"\tRelError: 2.75443e-07\tAbsError: 3.15707e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66361e-07\tAbsError: 7.16801e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.08162e-09\tAbsError: 3.15635e-06\n", - " Region: \"zone_3\"\tRelError: 2.28171e-06\tAbsError: 1.55371e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01860e-07\tAbsError: 1.23171e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.92720e-08\tAbsError: 3.21996e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.10150e-06\tAbsError: 7.37244e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.08225e-09\tAbsError: 3.15662e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.52304e+00\tAbsError: 3.22018e+14\n", - " Region: \"zone_1\"\tRelError: 1.04116e+00\tAbsError: 9.13945e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04099e+00\tAbsError: 3.20823e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70632e-04\tAbsError: 5.93121e-02\n", - " Region: \"zone_3\"\tRelError: 1.48187e+00\tAbsError: 3.22018e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.55212e-01\tAbsError: 1.88246e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.49817e-01\tAbsError: 1.33772e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.66716e-02\tAbsError: 3.20828e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70632e-04\tAbsError: 5.93121e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:32\u001b[0m.\u001b[1;36m265\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.5\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.86745e+03\tAbsError: 2.87021e+15\n", - " Region: \"zone_1\"\tRelError: 3.03999e-01\tAbsError: 2.78978e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.03388e-01\tAbsError: 6.65853e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.11336e-04\tAbsError: 2.12392e-01\n", - " Region: \"zone_3\"\tRelError: 1.86715e+03\tAbsError: 2.87021e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.52631e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.85800e+03\tAbsError: 1.34390e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.48187e-01\tAbsError: 6.65854e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.11343e-04\tAbsError: 2.12399e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.25853e+03\tAbsError: 3.72486e+16\n", - " Region: \"zone_1\"\tRelError: 3.40834e+01\tAbsError: 2.39711e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.40829e+01\tAbsError: 7.40072e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.76619e-04\tAbsError: 1.65703e-01\n", - " Region: \"zone_3\"\tRelError: 1.22445e+03\tAbsError: 3.72486e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.78015e+01\tAbsError: 2.61006e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.17550e+03\tAbsError: 1.11480e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15080e+00\tAbsError: 7.40073e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.80200e-04\tAbsError: 1.66948e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.57084e+00\tAbsError: 2.89575e+14\n", - " Region: \"zone_1\"\tRelError: 1.26543e-01\tAbsError: 8.72430e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.26381e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62480e-04\tAbsError: 5.64794e-02\n", - " Region: \"zone_3\"\tRelError: 1.44430e+00\tAbsError: 2.89575e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37983e-01\tAbsError: 1.66847e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32917e-01\tAbsError: 1.22728e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.32359e-02\tAbsError: 3.07641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62480e-04\tAbsError: 5.64794e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.74375e+00\tAbsError: 3.50039e+13\n", - " Region: \"zone_1\"\tRelError: 1.72509e+00\tAbsError: 3.20212e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72508e+00\tAbsError: 2.58927e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.76304e-05\tAbsError: 6.12847e-03\n", - " Region: \"zone_3\"\tRelError: 1.01866e+00\tAbsError: 3.50039e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.66614e-01\tAbsError: 2.50578e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.37869e-01\tAbsError: 9.94603e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14160e-01\tAbsError: 2.58952e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.76304e-05\tAbsError: 6.12847e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.44671e+02\tAbsError: 8.23352e+15\n", - " Region: \"zone_1\"\tRelError: 5.43003e+02\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.43003e+02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.11266e-10\tAbsError: 1.43080e-07\n", - " Region: \"zone_3\"\tRelError: 1.66763e+00\tAbsError: 8.23352e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.84587e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69628e-01\tAbsError: 3.38765e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28340e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.11422e-10\tAbsError: 1.43134e-07\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.36319e+03\tAbsError: 1.41269e+15\n", - " Region: \"zone_1\"\tRelError: 1.28924e-01\tAbsError: 8.79199e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28846e-01\tAbsError: 6.09159e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.78481e-05\tAbsError: 2.70040e-02\n", - " Region: \"zone_3\"\tRelError: 5.36306e+03\tAbsError: 1.41269e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.92653e+01\tAbsError: 8.02764e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.34320e+03\tAbsError: 6.09927e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.90596e-01\tAbsError: 6.09160e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.79397e-05\tAbsError: 2.70349e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.81425e+03\tAbsError: 1.18091e+16\n", - " Region: \"zone_1\"\tRelError: 1.10058e+00\tAbsError: 3.95698e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09964e+00\tAbsError: 6.93658e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.39571e-04\tAbsError: 3.26332e-01\n", - " Region: \"zone_3\"\tRelError: 4.81315e+03\tAbsError: 1.18091e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01697e+03\tAbsError: 7.05124e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.79600e+03\tAbsError: 4.75788e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.79744e-01\tAbsError: 6.93660e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.39571e-04\tAbsError: 3.26332e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.08933e+00\tAbsError: 3.08258e+13\n", - " Region: \"zone_1\"\tRelError: 1.39766e-01\tAbsError: 3.14532e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39750e-01\tAbsError: 2.58726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60540e-05\tAbsError: 5.58058e-03\n", - " Region: \"zone_3\"\tRelError: 9.49568e-01\tAbsError: 3.08258e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40223e-01\tAbsError: 2.27975e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.01508e-01\tAbsError: 8.02831e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07820e-01\tAbsError: 2.58966e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60540e-05\tAbsError: 5.58058e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 6.75308e-01\tAbsError: 5.34944e+12\n", - " Region: \"zone_1\"\tRelError: 3.72814e-01\tAbsError: 1.35368e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.72806e-01\tAbsError: 1.08347e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.77327e-06\tAbsError: 2.70212e-03\n", - " Region: \"zone_3\"\tRelError: 3.02494e-01\tAbsError: 5.34944e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21510e-01\tAbsError: 2.69650e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.93876e-02\tAbsError: 2.65294e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.15883e-02\tAbsError: 1.08348e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.77635e-06\tAbsError: 2.70319e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 4.93663e+00\tAbsError: 6.37428e+14\n", - " Region: \"zone_1\"\tRelError: 3.46019e+00\tAbsError: 7.21476e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.46007e+00\tAbsError: 3.07635e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", - " Region: \"zone_3\"\tRelError: 1.47644e+00\tAbsError: 6.37428e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40577e-01\tAbsError: 3.72575e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.27797e-01\tAbsError: 2.64853e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07947e-01\tAbsError: 3.07638e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 5.84846e+03\tAbsError: 3.44554e+14\n", - " Region: \"zone_1\"\tRelError: 8.59110e-02\tAbsError: 9.29740e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.57997e-02\tAbsError: 5.43522e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11333e-04\tAbsError: 3.86218e-02\n", - " Region: \"zone_3\"\tRelError: 5.84837e+03\tAbsError: 3.44554e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.83124e+01\tAbsError: 2.76436e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.77997e+03\tAbsError: 3.16910e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.03843e-02\tAbsError: 5.43523e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11353e-04\tAbsError: 3.86287e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.67664e+03\tAbsError: 3.86757e+15\n", - " Region: \"zone_1\"\tRelError: 2.88309e-01\tAbsError: 8.78439e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88240e-01\tAbsError: 6.41007e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.84844e-05\tAbsError: 2.37431e-02\n", - " Region: \"zone_3\"\tRelError: 3.67636e+03\tAbsError: 3.86757e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.51609e+03\tAbsError: 1.51784e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.15956e+03\tAbsError: 2.34973e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.09194e-01\tAbsError: 6.41009e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.84844e-05\tAbsError: 2.37431e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.94758e-01\tAbsError: 4.98642e+12\n", - " Region: \"zone_1\"\tRelError: 2.19383e-02\tAbsError: 1.22221e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.19295e-02\tAbsError: 9.16564e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.79291e-06\tAbsError: 3.05651e-03\n", - " Region: \"zone_3\"\tRelError: 2.72820e-01\tAbsError: 4.98642e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12699e-01\tAbsError: 2.77867e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.23181e-02\tAbsError: 2.20775e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77940e-02\tAbsError: 9.16568e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.79389e-06\tAbsError: 3.05683e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.07127e-01\tAbsError: 2.27621e+12\n", - " Region: \"zone_1\"\tRelError: 1.32025e-01\tAbsError: 2.29999e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.32018e-01\tAbsError: 2.64450e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.61552e-06\tAbsError: 2.29735e-03\n", - " Region: \"zone_3\"\tRelError: 7.51022e-02\tAbsError: 2.27621e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.73929e-02\tAbsError: 1.51862e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.96700e-04\tAbsError: 7.57587e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 7.50600e-03\tAbsError: 2.76514e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.61552e-06\tAbsError: 2.29735e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.95431e+00\tAbsError: 2.96317e+14\n", - " Region: \"zone_1\"\tRelError: 2.00902e+00\tAbsError: 3.34445e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.00900e+00\tAbsError: 2.58782e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", - " Region: \"zone_3\"\tRelError: 9.45295e-01\tAbsError: 2.96317e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42034e-01\tAbsError: 1.59420e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.10683e-01\tAbsError: 1.36896e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.25558e-02\tAbsError: 2.58843e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 3.07717e+02\tAbsError: 3.41972e+14\n", - " Region: \"zone_1\"\tRelError: 6.25182e-02\tAbsError: 9.04306e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.23920e-02\tAbsError: 4.66459e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26199e-04\tAbsError: 4.37847e-02\n", - " Region: \"zone_3\"\tRelError: 3.07654e+02\tAbsError: 3.41972e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.13248e+01\tAbsError: 9.78065e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.26263e+02\tAbsError: 3.32191e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.61212e-02\tAbsError: 4.66461e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26284e-04\tAbsError: 4.38139e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.45779e+02\tAbsError: 4.88724e+14\n", - " Region: \"zone_1\"\tRelError: 1.11637e-01\tAbsError: 1.12494e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11480e-01\tAbsError: 5.80508e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.57017e-04\tAbsError: 5.44434e-02\n", - " Region: \"zone_3\"\tRelError: 3.45668e+02\tAbsError: 4.88724e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.41490e+02\tAbsError: 7.86476e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.04063e+02\tAbsError: 4.10076e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14659e-01\tAbsError: 5.80510e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.57017e-04\tAbsError: 5.44434e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.73338e-02\tAbsError: 3.09182e+12\n", - " Region: \"zone_1\"\tRelError: 1.11598e-02\tAbsError: 1.65988e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11551e-02\tAbsError: 1.42279e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73882e-06\tAbsError: 1.64565e-03\n", - " Region: \"zone_3\"\tRelError: 6.61739e-02\tAbsError: 3.09182e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.71921e-02\tAbsError: 1.98622e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.49402e-04\tAbsError: 1.10560e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.42774e-03\tAbsError: 1.50865e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73882e-06\tAbsError: 1.64565e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.83620e-02\tAbsError: 1.13870e+12\n", - " Region: \"zone_1\"\tRelError: 2.64653e-02\tAbsError: 1.04782e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.64650e-02\tAbsError: 1.67776e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.96193e-07\tAbsError: 1.03104e-04\n", - " Region: \"zone_3\"\tRelError: 1.89667e-03\tAbsError: 1.13870e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.35343e-04\tAbsError: 3.09668e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.32169e-04\tAbsError: 8.29034e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.62887e-03\tAbsError: 1.68368e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.96330e-07\tAbsError: 1.03153e-04\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.90232e-01\tAbsError: 1.27257e+14\n", - " Region: \"zone_1\"\tRelError: 2.88169e-01\tAbsError: 1.34324e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88157e-01\tAbsError: 9.16559e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22923e-05\tAbsError: 4.26682e-03\n", - " Region: \"zone_3\"\tRelError: 3.02062e-01\tAbsError: 1.27257e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98145e-01\tAbsError: 5.59682e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.53461e-02\tAbsError: 7.12890e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.85587e-02\tAbsError: 9.16563e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22942e-05\tAbsError: 4.26755e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.39393e+02\tAbsError: 3.64933e+14\n", - " Region: \"zone_1\"\tRelError: 4.82703e-02\tAbsError: 9.42476e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.81068e-02\tAbsError: 3.75039e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.63524e-04\tAbsError: 5.67437e-02\n", - " Region: \"zone_3\"\tRelError: 3.39345e+02\tAbsError: 3.64933e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.35286e+02\tAbsError: 1.87521e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.00945e+00\tAbsError: 3.46181e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.85698e-02\tAbsError: 3.75040e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.63606e-04\tAbsError: 5.67717e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.63763e+03\tAbsError: 7.31087e+14\n", - " Region: \"zone_1\"\tRelError: 8.64629e-02\tAbsError: 1.00303e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 8.63208e-02\tAbsError: 5.10011e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42170e-04\tAbsError: 4.93021e-02\n", - " Region: \"zone_3\"\tRelError: 1.63754e+03\tAbsError: 7.31087e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52841e+03\tAbsError: 1.45596e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.09042e+02\tAbsError: 5.85492e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.90210e-02\tAbsError: 5.10013e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42351e-04\tAbsError: 4.93655e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.35940e-03\tAbsError: 7.91644e+11\n", - " Region: \"zone_1\"\tRelError: 6.17001e-04\tAbsError: 1.42075e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.16596e-04\tAbsError: 1.18665e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.04748e-07\tAbsError: 1.40888e-04\n", - " Region: \"zone_3\"\tRelError: 7.42401e-04\tAbsError: 7.91644e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00211e-04\tAbsError: 1.88344e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.60094e-05\tAbsError: 6.03301e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.55776e-04\tAbsError: 1.18974e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.04912e-07\tAbsError: 1.40947e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.97427e-03\tAbsError: 8.34481e+10\n", - " Region: \"zone_1\"\tRelError: 4.68156e-03\tAbsError: 6.81964e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.68136e-03\tAbsError: 4.94587e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.96225e-07\tAbsError: 6.81469e-05\n", - " Region: \"zone_3\"\tRelError: 2.92716e-04\tAbsError: 8.34481e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.82298e-06\tAbsError: 6.22948e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.70009e-06\tAbsError: 2.11533e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.80996e-04\tAbsError: 5.18395e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.96320e-07\tAbsError: 6.81781e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.38373e+00\tAbsError: 3.54714e+14\n", - " Region: \"zone_1\"\tRelError: 3.50043e-02\tAbsError: 1.00946e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.47904e-02\tAbsError: 2.67289e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.13833e-04\tAbsError: 7.42170e-02\n", - " Region: \"zone_3\"\tRelError: 1.34873e+00\tAbsError: 3.54714e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.91995e-01\tAbsError: 2.17117e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.20831e-01\tAbsError: 3.33002e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.56862e-02\tAbsError: 2.67290e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.13916e-04\tAbsError: 7.42453e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.81369e-01\tAbsError: 1.65118e+13\n", - " Region: \"zone_1\"\tRelError: 1.13683e-01\tAbsError: 2.48930e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13676e-01\tAbsError: 7.97182e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", - " Region: \"zone_3\"\tRelError: 6.76863e-02\tAbsError: 1.65118e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.50220e-02\tAbsError: 9.05581e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.84537e-03\tAbsError: 7.45604e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 9.81196e-03\tAbsError: 8.36703e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 5.75527e+03\tAbsError: 5.86973e+14\n", - " Region: \"zone_1\"\tRelError: 6.49389e-02\tAbsError: 1.06630e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 6.47545e-02\tAbsError: 4.26777e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84381e-04\tAbsError: 6.39523e-02\n", - " Region: \"zone_3\"\tRelError: 5.75521e+03\tAbsError: 5.86973e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.71637e+01\tAbsError: 2.47136e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.72798e+03\tAbsError: 5.62259e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.66210e-02\tAbsError: 4.26779e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84600e-04\tAbsError: 6.40289e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.02141e-03\tAbsError: 1.23957e+11\n", - " Region: \"zone_1\"\tRelError: 5.52143e-04\tAbsError: 4.11028e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.52024e-04\tAbsError: 7.43261e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18138e-07\tAbsError: 4.10285e-05\n", - " Region: \"zone_3\"\tRelError: 4.69263e-04\tAbsError: 1.23957e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.58109e-06\tAbsError: 8.33431e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.49437e-06\tAbsError: 4.06142e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.50070e-04\tAbsError: 7.83274e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18138e-07\tAbsError: 4.10285e-05\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 4.33255e+03\tAbsError: 2.74718e+14\n", - " Region: \"zone_1\"\tRelError: 2.38298e-02\tAbsError: 1.14096e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.35589e-02\tAbsError: 2.00642e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.70849e-04\tAbsError: 9.40316e-02\n", - " Region: \"zone_3\"\tRelError: 4.33253e+03\tAbsError: 2.74718e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33248e+03\tAbsError: 1.69273e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.25127e-02\tAbsError: 2.57791e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.29273e-02\tAbsError: 2.00645e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.70968e-04\tAbsError: 9.40723e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.67864e-03\tAbsError: 6.31615e+10\n", - " Region: \"zone_1\"\tRelError: 2.51673e-03\tAbsError: 2.73456e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.51673e-03\tAbsError: 5.64919e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.69330e-09\tAbsError: 2.67806e-06\n", - " Region: \"zone_3\"\tRelError: 1.61905e-04\tAbsError: 6.31615e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.20270e-06\tAbsError: 2.57065e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.15754e-06\tAbsError: 3.74550e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51537e-04\tAbsError: 5.65377e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.69772e-09\tAbsError: 2.67968e-06\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 5.40516e+00\tAbsError: 6.10838e+14\n", - " Region: \"zone_1\"\tRelError: 4.60821e-02\tAbsError: 1.19505e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.58322e-02\tAbsError: 3.27970e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.49925e-04\tAbsError: 8.67077e-02\n", - " Region: \"zone_3\"\tRelError: 5.35908e+00\tAbsError: 6.10838e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.31178e+00\tAbsError: 4.37441e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.99602e-01\tAbsError: 5.67094e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.74406e-02\tAbsError: 3.27973e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.50164e-04\tAbsError: 8.67915e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.11615e-03\tAbsError: 1.08851e+12\n", - " Region: \"zone_1\"\tRelError: 5.30759e-03\tAbsError: 1.67972e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.30711e-03\tAbsError: 1.45981e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", - " Region: \"zone_3\"\tRelError: 1.80856e-03\tAbsError: 1.08851e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43945e-04\tAbsError: 2.92186e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.94756e-05\tAbsError: 7.96320e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.56466e-03\tAbsError: 1.47422e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.30911e-04\tAbsError: 3.51442e+10\n", - " Region: \"zone_1\"\tRelError: 6.81885e-05\tAbsError: 6.92614e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.81687e-05\tAbsError: 3.42472e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.97989e-08\tAbsError: 6.89189e-06\n", - " Region: \"zone_3\"\tRelError: 6.27220e-05\tAbsError: 3.51442e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91737e-06\tAbsError: 1.11617e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.89123e-06\tAbsError: 2.39825e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.68936e-05\tAbsError: 3.42673e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.98072e-08\tAbsError: 6.89488e-06\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 1.03113e+00\tAbsError: 2.11035e+14\n", - " Region: \"zone_1\"\tRelError: 4.04265e-03\tAbsError: 1.72589e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.54660e-03\tAbsError: 2.89536e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.96045e-04\tAbsError: 1.72299e-01\n", - " Region: \"zone_3\"\tRelError: 1.02709e+00\tAbsError: 2.11035e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99308e-01\tAbsError: 2.04510e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.65242e-02\tAbsError: 1.90584e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07609e-02\tAbsError: 2.94824e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.96237e-04\tAbsError: 1.72365e-01\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 4.64188e+00\tAbsError: 5.33011e+14\n", - " Region: \"zone_1\"\tRelError: 3.16465e-02\tAbsError: 1.40911e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.13151e-02\tAbsError: 2.58757e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.31467e-04\tAbsError: 1.15036e-01\n", - " Region: \"zone_3\"\tRelError: 4.61023e+00\tAbsError: 5.33011e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.05862e+00\tAbsError: 2.76173e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.10894e-01\tAbsError: 5.05394e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.03797e-02\tAbsError: 2.47844e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.31761e-04\tAbsError: 1.15139e-01\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.97090e-05\tAbsError: 1.87629e+09\n", - " Region: \"zone_1\"\tRelError: 6.53617e-05\tAbsError: 3.62362e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.53512e-05\tAbsError: 1.06367e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.04217e-08\tAbsError: 3.62255e-06\n", - " Region: \"zone_3\"\tRelError: 4.34737e-06\tAbsError: 1.87629e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54714e-07\tAbsError: 1.70496e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.24511e-07\tAbsError: 1.71327e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 4.05772e-06\tAbsError: 1.10499e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.04226e-08\tAbsError: 3.62292e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:42\u001b[0m.\u001b[1;36m078\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:42\u001b[0m.\u001b[1;36m078\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.41666666666666674\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.59900e-03\tAbsError: 1.40711e+11\n", - " Region: \"zone_1\"\tRelError: 2.06948e-03\tAbsError: 6.41578e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06929e-03\tAbsError: 9.09489e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84503e-07\tAbsError: 6.40668e-05\n", - " Region: \"zone_3\"\tRelError: 5.29527e-04\tAbsError: 1.40711e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.39801e-06\tAbsError: 9.47438e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.30618e-06\tAbsError: 4.59674e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.12638e-04\tAbsError: 9.48359e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84568e-07\tAbsError: 6.40878e-05\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 2.12961e-01\tAbsError: 8.84450e+13\n", - " Region: \"zone_1\"\tRelError: 2.03827e-02\tAbsError: 1.35383e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03791e-02\tAbsError: 1.10127e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.57224e-06\tAbsError: 1.24370e-03\n", - " Region: \"zone_3\"\tRelError: 1.92578e-01\tAbsError: 8.84450e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.20762e-02\tAbsError: 2.90584e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.23302e-02\tAbsError: 5.93866e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.68168e-01\tAbsError: 1.11435e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.57397e-06\tAbsError: 1.24433e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 4.91977e-05\tAbsError: 5.89586e+09\n", - " Region: \"zone_1\"\tRelError: 2.66095e-05\tAbsError: 1.68142e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66047e-05\tAbsError: 3.56714e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.83123e-09\tAbsError: 1.67785e-06\n", - " Region: \"zone_3\"\tRelError: 2.25882e-05\tAbsError: 5.89586e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.48785e-07\tAbsError: 4.10020e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.43251e-07\tAbsError: 1.79565e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.16913e-05\tAbsError: 3.75397e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.83123e-09\tAbsError: 1.67785e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:42\u001b[0m.\u001b[1;36m945\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.4\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 8.88594e-01\tAbsError: 7.19301e+14\n", - " Region: \"zone_1\"\tRelError: 1.39066e-02\tAbsError: 2.06684e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.38812e-02\tAbsError: 1.18261e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.54789e-05\tAbsError: 8.84230e-03\n", - " Region: \"zone_3\"\tRelError: 8.74688e-01\tAbsError: 7.19301e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.37645e-01\tAbsError: 1.89617e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.54753e-03\tAbsError: 7.00339e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33469e-01\tAbsError: 1.18264e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.54789e-05\tAbsError: 8.84230e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 6.84757e-04\tAbsError: 5.79873e+10\n", - " Region: \"zone_1\"\tRelError: 5.39232e-04\tAbsError: 6.69464e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.39213e-04\tAbsError: 4.49143e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91058e-08\tAbsError: 6.64972e-06\n", - " Region: \"zone_3\"\tRelError: 1.45525e-04\tAbsError: 5.79873e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.71562e-06\tAbsError: 2.34463e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.68397e-06\tAbsError: 3.45410e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.38106e-04\tAbsError: 4.56915e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91137e-08\tAbsError: 6.65261e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.42976e+01\tAbsError: 8.72124e+15\n", - " Region: \"zone_1\"\tRelError: 1.26250e+01\tAbsError: 4.20728e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.26250e+01\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.97298e-10\tAbsError: 1.38229e-07\n", - " Region: \"zone_3\"\tRelError: 1.67260e+00\tAbsError: 8.72124e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.79100e-01\tAbsError: 5.12249e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.79079e-01\tAbsError: 3.59874e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14421e-01\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.97458e-10\tAbsError: 1.38283e-07\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 1.29054e-02\tAbsError: 9.55991e+11\n", - " Region: \"zone_1\"\tRelError: 1.34678e-03\tAbsError: 5.73063e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33028e-03\tAbsError: 1.08229e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.64949e-05\tAbsError: 5.72955e-03\n", - " Region: \"zone_3\"\tRelError: 1.15586e-02\tAbsError: 9.55991e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.52563e-04\tAbsError: 6.37238e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.02234e-04\tAbsError: 3.18753e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08873e-02\tAbsError: 1.11346e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.64949e-05\tAbsError: 5.72955e-03\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 4.48439e-01\tAbsError: 7.38740e+14\n", - " Region: \"zone_1\"\tRelError: 1.96172e-02\tAbsError: 2.97738e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87611e-02\tAbsError: 3.63461e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.56135e-04\tAbsError: 2.97374e-01\n", - " Region: \"zone_3\"\tRelError: 4.28822e-01\tAbsError: 7.38740e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97195e-01\tAbsError: 1.33763e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.37804e-02\tAbsError: 7.25364e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.16989e-01\tAbsError: 3.77506e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.57649e-04\tAbsError: 2.97894e-01\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.62552e+00\tAbsError: 8.26510e+15\n", - " Region: \"zone_1\"\tRelError: 6.97719e+00\tAbsError: 4.09546e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.97719e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.33437e-10\tAbsError: 3.24924e-07\n", - " Region: \"zone_3\"\tRelError: 1.64833e+00\tAbsError: 8.26510e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69652e-01\tAbsError: 4.84454e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69632e-01\tAbsError: 3.42056e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09044e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.33825e-10\tAbsError: 3.25065e-07\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.02364e-04\tAbsError: 5.62247e+09\n", - " Region: \"zone_1\"\tRelError: 8.15379e-05\tAbsError: 3.03368e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.15291e-05\tAbsError: 3.57289e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.71937e-09\tAbsError: 3.03011e-06\n", - " Region: \"zone_3\"\tRelError: 2.08260e-05\tAbsError: 5.62247e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14319e-07\tAbsError: 4.05600e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.09034e-07\tAbsError: 1.56647e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.01939e-05\tAbsError: 3.71851e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.71944e-09\tAbsError: 3.03019e-06\n", - "Iteration: 16\n", - " Device: \"device\"\tRelError: 1.77629e-02\tAbsError: 5.59565e+12\n", - " Region: \"zone_1\"\tRelError: 1.81038e-03\tAbsError: 4.29761e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.80916e-03\tAbsError: 4.24509e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22368e-06\tAbsError: 4.25516e-04\n", - " Region: \"zone_3\"\tRelError: 1.59525e-02\tAbsError: 5.59565e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.73694e-04\tAbsError: 2.63052e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.69913e-04\tAbsError: 2.96513e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.48076e-02\tAbsError: 4.30437e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22409e-06\tAbsError: 4.25659e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.79975e+00\tAbsError: 3.41396e+14\n", - " Region: \"zone_1\"\tRelError: 3.00576e-01\tAbsError: 8.44197e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.00425e-01\tAbsError: 3.20823e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.50589e-04\tAbsError: 5.23374e-02\n", - " Region: \"zone_3\"\tRelError: 1.49918e+00\tAbsError: 3.41396e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.56115e-01\tAbsError: 2.48707e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.49187e-01\tAbsError: 9.26885e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.37238e-02\tAbsError: 3.20827e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.50589e-04\tAbsError: 5.23374e-02\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 3.78632e-01\tAbsError: 1.54781e+14\n", - " Region: \"zone_1\"\tRelError: 3.64972e-02\tAbsError: 4.47239e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.64849e-02\tAbsError: 1.90602e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22982e-05\tAbsError: 4.28179e-03\n", - " Region: \"zone_3\"\tRelError: 3.42135e-01\tAbsError: 1.54781e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13118e-02\tAbsError: 5.14808e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.12130e-02\tAbsError: 1.03300e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.99598e-01\tAbsError: 1.92876e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.23055e-05\tAbsError: 4.28442e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.56210e+00\tAbsError: 2.88655e+14\n", - " Region: \"zone_1\"\tRelError: 1.01850e-01\tAbsError: 8.11752e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01705e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.45044e-04\tAbsError: 5.04116e-02\n", - " Region: \"zone_3\"\tRelError: 1.46025e+00\tAbsError: 2.88655e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39145e-01\tAbsError: 2.10222e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.31918e-01\tAbsError: 7.84329e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.90395e-02\tAbsError: 3.07640e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.45044e-04\tAbsError: 5.04116e-02\n", - "Iteration: 17\n", - " Device: \"device\"\tRelError: 2.03335e-03\tAbsError: 3.99942e+11\n", - " Region: \"zone_1\"\tRelError: 2.13959e-04\tAbsError: 3.73601e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.12885e-04\tAbsError: 2.93620e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.07360e-06\tAbsError: 3.73308e-04\n", - " Region: \"zone_3\"\tRelError: 1.81940e-03\tAbsError: 3.99942e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.25123e-05\tAbsError: 2.20324e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.23710e-05\tAbsError: 1.79618e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.73344e-03\tAbsError: 2.97698e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.07395e-06\tAbsError: 3.73446e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.62672e-05\tAbsError: 3.10481e+09\n", - " Region: \"zone_1\"\tRelError: 3.66806e-05\tAbsError: 2.21724e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 3.66799e-05\tAbsError: 2.06476e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.31104e-10\tAbsError: 2.19659e-07\n", - " Region: \"zone_3\"\tRelError: 9.58660e-06\tAbsError: 3.10481e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88628e-07\tAbsError: 1.51763e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.86687e-07\tAbsError: 1.58718e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.21065e-06\tAbsError: 2.10348e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.31398e-10\tAbsError: 2.19764e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:46\u001b[0m.\u001b[1;36m504\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.6\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 16\n", - " Device: \"device\"\tRelError: 3.05940e-02\tAbsError: 3.26270e+12\n", - " Region: \"zone_1\"\tRelError: 3.18240e-03\tAbsError: 1.00464e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.15349e-03\tAbsError: 2.83329e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.89147e-05\tAbsError: 1.00436e-02\n", - " Region: \"zone_3\"\tRelError: 2.74116e-02\tAbsError: 3.26270e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.15392e-04\tAbsError: 2.40672e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.40622e-04\tAbsError: 8.55981e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.62267e-02\tAbsError: 2.91021e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.89147e-05\tAbsError: 1.00436e-02\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.09917e+00\tAbsError: 7.91798e+13\n", - " Region: \"zone_1\"\tRelError: 7.82475e-02\tAbsError: 3.30055e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.82269e-02\tAbsError: 2.58549e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.05740e-05\tAbsError: 7.15067e-03\n", - " Region: \"zone_3\"\tRelError: 1.02092e+00\tAbsError: 7.91798e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.67275e-01\tAbsError: 4.71969e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.46242e-01\tAbsError: 3.19828e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07381e-01\tAbsError: 2.58736e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.05740e-05\tAbsError: 7.15067e-03\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 18\n", - " Device: \"device\"\tRelError: 1.34362e-03\tAbsError: 3.65764e+11\n", - " Region: \"zone_1\"\tRelError: 1.38561e-04\tAbsError: 5.07671e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.38416e-04\tAbsError: 2.46873e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.45284e-07\tAbsError: 5.05202e-05\n", - " Region: \"zone_3\"\tRelError: 1.20506e-03\tAbsError: 3.65764e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.63771e-05\tAbsError: 1.97641e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.61145e-05\tAbsError: 1.68123e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13242e-03\tAbsError: 2.50412e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.45318e-07\tAbsError: 5.05322e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.02466e+00\tAbsError: 6.04267e+13\n", - " Region: \"zone_1\"\tRelError: 7.18592e-02\tAbsError: 3.22577e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.18409e-02\tAbsError: 2.58878e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83272e-05\tAbsError: 6.36990e-03\n", - " Region: \"zone_3\"\tRelError: 9.52804e-01\tAbsError: 6.04267e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40508e-01\tAbsError: 3.80417e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.10167e-01\tAbsError: 2.23851e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02110e-01\tAbsError: 2.58991e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83272e-05\tAbsError: 6.36990e-03\n", - "Iteration: 17\n", - " Device: \"device\"\tRelError: 3.17501e-02\tAbsError: 9.87378e+12\n", - " Region: \"zone_1\"\tRelError: 3.24279e-03\tAbsError: 8.49203e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.24037e-03\tAbsError: 7.44208e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.42070e-06\tAbsError: 8.41761e-04\n", - " Region: \"zone_3\"\tRelError: 2.85073e-02\tAbsError: 9.87378e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01026e-03\tAbsError: 4.68266e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.00374e-03\tAbsError: 5.19113e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.64909e-02\tAbsError: 7.54644e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.42111e-06\tAbsError: 8.41906e-04\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.53006e-01\tAbsError: 2.85325e+13\n", - " Region: \"zone_1\"\tRelError: 3.17735e-02\tAbsError: 1.33835e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.17662e-02\tAbsError: 1.08347e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.33375e-06\tAbsError: 2.54883e-03\n", - " Region: \"zone_3\"\tRelError: 3.21233e-01\tAbsError: 2.85325e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.19887e-01\tAbsError: 1.38532e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.34008e-02\tAbsError: 1.46793e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.79373e-02\tAbsError: 1.08348e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.33696e-06\tAbsError: 2.54999e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.94073e+01\tAbsError: 8.32958e+15\n", - " Region: \"zone_1\"\tRelError: 1.77016e+01\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77016e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.06764e-10\tAbsError: 1.76108e-07\n", - " Region: \"zone_3\"\tRelError: 1.70569e+00\tAbsError: 8.32958e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69637e-01\tAbsError: 4.59097e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69532e-01\tAbsError: 3.73860e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66519e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.06930e-10\tAbsError: 1.76171e-07\n", - "Iteration: 19\n", - " Device: \"device\"\tRelError: 2.19620e-04\tAbsError: 4.76128e+10\n", - " Region: \"zone_1\"\tRelError: 2.29852e-05\tAbsError: 2.66177e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29088e-05\tAbsError: 3.23281e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.64529e-08\tAbsError: 2.65853e-05\n", - " Region: \"zone_3\"\tRelError: 1.96635e-04\tAbsError: 4.76128e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.90619e-06\tAbsError: 2.73453e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.88596e-06\tAbsError: 2.02674e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86766e-04\tAbsError: 3.27811e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.64720e-08\tAbsError: 2.65920e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.07050e-01\tAbsError: 1.83634e+13\n", - " Region: \"zone_1\"\tRelError: 2.24108e-02\tAbsError: 1.12606e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.24048e-02\tAbsError: 9.16557e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.02744e-06\tAbsError: 2.09499e-03\n", - " Region: \"zone_3\"\tRelError: 2.84640e-01\tAbsError: 1.83634e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.09245e-01\tAbsError: 8.86934e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.28005e-02\tAbsError: 9.49405e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25878e-02\tAbsError: 9.16561e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.02994e-06\tAbsError: 2.09586e-03\n", - "Iteration: 18\n", - " Device: \"device\"\tRelError: 4.00791e-03\tAbsError: 7.94469e+11\n", - " Region: \"zone_1\"\tRelError: 4.21254e-04\tAbsError: 6.66722e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.19338e-04\tAbsError: 5.54818e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91582e-06\tAbsError: 6.66167e-04\n", - " Region: \"zone_3\"\tRelError: 3.58666e-03\tAbsError: 7.94469e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.27304e-05\tAbsError: 4.54237e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.23889e-05\tAbsError: 3.40232e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.41962e-03\tAbsError: 5.62636e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91658e-06\tAbsError: 6.66464e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.03807e-02\tAbsError: 4.31916e+12\n", - " Region: \"zone_1\"\tRelError: 4.20953e-03\tAbsError: 1.71332e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 4.20469e-03\tAbsError: 2.96488e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.84876e-06\tAbsError: 1.68367e-03\n", - " Region: \"zone_3\"\tRelError: 7.61712e-02\tAbsError: 4.31916e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.68288e-02\tAbsError: 2.37964e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.61116e-03\tAbsError: 1.93953e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.72641e-03\tAbsError: 3.23070e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.84876e-06\tAbsError: 1.68367e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.07616e+01\tAbsError: 3.02291e+15\n", - " Region: \"zone_1\"\tRelError: 9.27113e+00\tAbsError: 6.52674e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.27103e+00\tAbsError: 3.07634e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.92954e-05\tAbsError: 3.45040e-02\n", - " Region: \"zone_3\"\tRelError: 1.49044e+00\tAbsError: 3.02291e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40308e-01\tAbsError: 1.49698e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.14159e-01\tAbsError: 1.52592e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35875e-01\tAbsError: 3.07635e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.92954e-05\tAbsError: 3.45040e-02\n", - "Iteration: 20\n", - " Device: \"device\"\tRelError: 1.01270e-04\tAbsError: 2.55605e+10\n", - " Region: \"zone_1\"\tRelError: 1.04938e-05\tAbsError: 4.88254e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04798e-05\tAbsError: 1.65111e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39935e-08\tAbsError: 4.86603e-06\n", - " Region: \"zone_3\"\tRelError: 9.07764e-05\tAbsError: 2.55605e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.54439e-06\tAbsError: 1.46826e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.52628e-06\tAbsError: 1.08779e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 8.56917e-05\tAbsError: 1.67514e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39958e-08\tAbsError: 4.86682e-06\n", - "Iteration: 19\n", - " Device: \"device\"\tRelError: 2.41571e-03\tAbsError: 6.51578e+11\n", - " Region: \"zone_1\"\tRelError: 2.49310e-04\tAbsError: 9.61601e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49035e-04\tAbsError: 4.38276e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.75272e-07\tAbsError: 9.57218e-05\n", - " Region: \"zone_3\"\tRelError: 2.16640e-03\tAbsError: 6.51578e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.48244e-05\tAbsError: 3.54039e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.43631e-05\tAbsError: 2.97539e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03694e-03\tAbsError: 4.44564e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.75326e-07\tAbsError: 9.57408e-05\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.39650e-02\tAbsError: 2.30731e+12\n", - " Region: \"zone_1\"\tRelError: 9.33244e-04\tAbsError: 2.05118e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 9.27371e-04\tAbsError: 1.17101e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.87337e-06\tAbsError: 2.03947e-03\n", - " Region: \"zone_3\"\tRelError: 6.30318e-02\tAbsError: 2.30731e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.63237e-02\tAbsError: 1.57438e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.61914e-04\tAbsError: 7.32926e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 6.34034e-03\tAbsError: 1.22701e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.87337e-06\tAbsError: 2.03947e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.97676e-04\tAbsError: 7.95668e+11\n", - " Region: \"zone_1\"\tRelError: 1.29401e-04\tAbsError: 1.23466e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29049e-04\tAbsError: 1.19542e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.51297e-07\tAbsError: 1.22271e-04\n", - " Region: \"zone_3\"\tRelError: 8.68275e-04\tAbsError: 7.95668e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04248e-04\tAbsError: 1.86473e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.74128e-05\tAbsError: 6.09196e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 6.86263e-04\tAbsError: 1.19935e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.51436e-07\tAbsError: 1.22321e-04\n", - "Iteration: 21\n", - " Device: \"device\"\tRelError: 2.05070e-05\tAbsError: 4.57864e+09\n", - " Region: \"zone_1\"\tRelError: 2.14180e-06\tAbsError: 1.98128e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.13612e-06\tAbsError: 2.99420e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.68907e-09\tAbsError: 1.97829e-06\n", - " Region: \"zone_3\"\tRelError: 1.83652e-05\tAbsError: 4.57864e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.66063e-07\tAbsError: 2.69416e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.63768e-07\tAbsError: 1.88448e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74296e-05\tAbsError: 3.03713e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.68998e-09\tAbsError: 1.97861e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.22732e+00\tAbsError: 2.06865e+15\n", - " Region: \"zone_1\"\tRelError: 2.78568e-01\tAbsError: 2.74627e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78563e-01\tAbsError: 2.58185e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73142e-06\tAbsError: 1.64416e-03\n", - " Region: \"zone_3\"\tRelError: 9.48751e-01\tAbsError: 2.06865e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.44918e-01\tAbsError: 9.02348e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.89155e-01\tAbsError: 1.16630e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14673e-01\tAbsError: 2.51147e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73142e-06\tAbsError: 1.64416e-03\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:50\u001b[0m.\u001b[1;36m917\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 0.205\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 20\n", - " Device: \"device\"\tRelError: 4.14530e-04\tAbsError: 9.00878e+10\n", - " Region: \"zone_1\"\tRelError: 4.33708e-05\tAbsError: 4.78767e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.32333e-05\tAbsError: 6.03673e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37508e-07\tAbsError: 4.78163e-05\n", - " Region: \"zone_3\"\tRelError: 3.71159e-04\tAbsError: 9.00878e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.25135e-06\tAbsError: 5.23202e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.21072e-06\tAbsError: 3.77677e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52560e-04\tAbsError: 6.12186e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37541e-07\tAbsError: 4.78278e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.79721e-03\tAbsError: 9.76589e+11\n", - " Region: \"zone_1\"\tRelError: 1.82738e-04\tAbsError: 8.39323e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82502e-04\tAbsError: 1.48235e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36874e-07\tAbsError: 8.24499e-05\n", - " Region: \"zone_3\"\tRelError: 1.61447e-03\tAbsError: 9.76589e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10820e-04\tAbsError: 2.51654e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.02342e-04\tAbsError: 7.24935e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40107e-03\tAbsError: 1.48793e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36983e-07\tAbsError: 8.24891e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.61330e-04\tAbsError: 1.06282e+11\n", - " Region: \"zone_1\"\tRelError: 4.56683e-05\tAbsError: 4.35026e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.55433e-05\tAbsError: 6.77792e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.25079e-07\tAbsError: 4.34348e-05\n", - " Region: \"zone_3\"\tRelError: 4.15662e-04\tAbsError: 1.06282e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.04343e-06\tAbsError: 7.28947e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.97562e-06\tAbsError: 3.33874e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.01518e-04\tAbsError: 7.07926e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.25079e-07\tAbsError: 4.34348e-05\n", - "Iteration: 21\n", - " Device: \"device\"\tRelError: 1.82957e-04\tAbsError: 4.59083e+10\n", - " Region: \"zone_1\"\tRelError: 1.89657e-05\tAbsError: 9.08920e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.89396e-05\tAbsError: 2.96048e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.60532e-08\tAbsError: 9.05960e-06\n", - " Region: \"zone_3\"\tRelError: 1.63992e-04\tAbsError: 4.59083e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.57251e-06\tAbsError: 2.64519e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.54031e-06\tAbsError: 1.94565e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.54853e-04\tAbsError: 3.00359e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.60571e-08\tAbsError: 9.06097e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 7.18897e+00\tAbsError: 6.29402e+14\n", - " Region: \"zone_1\"\tRelError: 6.86170e+00\tAbsError: 2.22868e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.86166e+00\tAbsError: 9.16572e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.77613e-05\tAbsError: 1.31211e-02\n", - " Region: \"zone_3\"\tRelError: 3.27267e-01\tAbsError: 6.29402e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84319e-01\tAbsError: 3.28649e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.08857e-01\tAbsError: 3.00753e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.40527e-02\tAbsError: 9.16579e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.77613e-05\tAbsError: 1.31211e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.21972e+01\tAbsError: 8.79739e+15\n", - " Region: \"zone_1\"\tRelError: 2.05511e+01\tAbsError: 4.19634e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.05511e+01\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.24058e-09\tAbsError: 4.31395e-07\n", - " Region: \"zone_3\"\tRelError: 1.64617e+00\tAbsError: 8.79739e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78071e-01\tAbsError: 4.86801e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.78002e-01\tAbsError: 3.92938e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.00933e-02\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.24074e-09\tAbsError: 4.31450e-07\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.68582e-04\tAbsError: 6.39514e+10\n", - " Region: \"zone_1\"\tRelError: 3.10151e-05\tAbsError: 5.94800e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.08440e-05\tAbsError: 4.08298e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71164e-07\tAbsError: 5.94392e-05\n", - " Region: \"zone_3\"\tRelError: 2.37567e-04\tAbsError: 6.39514e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16150e-06\tAbsError: 5.01904e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.80228e-06\tAbsError: 1.37610e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29432e-04\tAbsError: 4.25523e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71229e-07\tAbsError: 5.94601e-05\n", - "Iteration: 22\n", - " Device: \"device\"\tRelError: 3.80865e-05\tAbsError: 8.51875e+09\n", - " Region: \"zone_1\"\tRelError: 3.97720e-06\tAbsError: 3.58327e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.96691e-06\tAbsError: 5.54273e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.02887e-08\tAbsError: 3.57772e-06\n", - " Region: \"zone_3\"\tRelError: 3.41093e-05\tAbsError: 8.51875e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.66086e-07\tAbsError: 5.03274e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.61710e-07\tAbsError: 3.48600e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.23712e-05\tAbsError: 5.62244e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.02903e-08\tAbsError: 3.57829e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:53\u001b[0m.\u001b[1;36m452\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.21\u001b[0m \n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 8.56296e-05\tAbsError: 3.78286e+10\n", - " Region: \"zone_1\"\tRelError: 8.06637e-06\tAbsError: 5.60804e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.05036e-06\tAbsError: 3.55674e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60098e-08\tAbsError: 5.57247e-06\n", - " Region: \"zone_3\"\tRelError: 7.75632e-05\tAbsError: 3.78286e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.72451e-06\tAbsError: 1.28450e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.70072e-06\tAbsError: 2.49837e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.21220e-05\tAbsError: 3.55685e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60165e-08\tAbsError: 5.57492e-06\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:53\u001b[0m.\u001b[1;36m570\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:53\u001b[0m.\u001b[1;36m570\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5222222222222223\u001b[0m \n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "number of equations 31816\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.42105e-01\tAbsError: 9.57843e+13\n", - " Region: \"zone_1\"\tRelError: 5.64317e-01\tAbsError: 1.44974e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.64276e-01\tAbsError: 1.24104e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14024e-05\tAbsError: 1.43733e-02\n", - " Region: \"zone_3\"\tRelError: 7.77880e-02\tAbsError: 9.57843e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.25473e-02\tAbsError: 4.71405e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.65020e-03\tAbsError: 4.86438e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.95491e-02\tAbsError: 1.28397e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14024e-05\tAbsError: 1.43733e-02\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 4.29261e+00\tAbsError: 3.28148e+14\n", - " Region: \"zone_1\"\tRelError: 2.82868e+00\tAbsError: 9.50796e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.82849e+00\tAbsError: 3.19529e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.81575e-04\tAbsError: 6.31268e-02\n", - " Region: \"zone_3\"\tRelError: 1.46393e+00\tAbsError: 3.28148e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53256e-01\tAbsError: 1.60807e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.47889e-01\tAbsError: 1.67341e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.26077e-02\tAbsError: 3.19533e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.81575e-04\tAbsError: 6.31268e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.61549e-04\tAbsError: 5.47840e+10\n", - " Region: \"zone_1\"\tRelError: 1.81900e-05\tAbsError: 1.93945e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81846e-05\tAbsError: 4.89694e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.43105e-09\tAbsError: 1.89048e-06\n", - " Region: \"zone_3\"\tRelError: 1.43359e-04\tAbsError: 5.47840e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.04114e-06\tAbsError: 2.20323e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.00674e-06\tAbsError: 3.27517e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35306e-04\tAbsError: 4.90033e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.43421e-09\tAbsError: 1.89162e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.36557e-01\tAbsError: 7.18470e+12\n", - " Region: \"zone_1\"\tRelError: 1.16158e-01\tAbsError: 1.78279e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16157e-01\tAbsError: 6.59165e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.94530e-07\tAbsError: 1.71687e-04\n", - " Region: \"zone_3\"\tRelError: 2.03993e-02\tAbsError: 7.18470e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.98223e-04\tAbsError: 2.78831e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.37326e-04\tAbsError: 4.39639e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.92632e-02\tAbsError: 6.83641e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.94530e-07\tAbsError: 1.71687e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.00879e+03\tAbsError: 9.21631e+15\n", - " Region: \"zone_1\"\tRelError: 1.00712e+03\tAbsError: 4.29346e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00712e+03\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.29034e-09\tAbsError: 7.96432e-07\n", - " Region: \"zone_3\"\tRelError: 1.66508e+00\tAbsError: 9.21631e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86000e-01\tAbsError: 5.09982e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.85932e-01\tAbsError: 4.11649e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.31442e-02\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.29062e-09\tAbsError: 7.96530e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.03787e+00\tAbsError: 8.68675e+15\n", - " Region: \"zone_1\"\tRelError: 5.34083e+00\tAbsError: 4.20745e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.34083e+00\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.44746e-09\tAbsError: 1.89168e-06\n", - " Region: \"zone_3\"\tRelError: 1.69705e+00\tAbsError: 8.68675e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.79112e-01\tAbsError: 5.08967e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.79068e-01\tAbsError: 3.59708e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.38867e-01\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.44892e-09\tAbsError: 1.89214e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.01561e+00\tAbsError: 4.22498e+13\n", - " Region: \"zone_1\"\tRelError: 1.00695e+00\tAbsError: 3.08676e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00693e+00\tAbsError: 2.58780e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43517e-05\tAbsError: 4.98963e-03\n", - " Region: \"zone_3\"\tRelError: 1.00866e+00\tAbsError: 4.22498e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.63696e-01\tAbsError: 3.04335e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.31201e-01\tAbsError: 1.18163e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13751e-01\tAbsError: 2.58956e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43517e-05\tAbsError: 4.98963e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.55715e-06\tAbsError: 1.55371e+09\n", - " Region: \"zone_1\"\tRelError: 2.75443e-07\tAbsError: 3.15707e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66361e-07\tAbsError: 7.16801e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.08162e-09\tAbsError: 3.15635e-06\n", - " Region: \"zone_3\"\tRelError: 2.28171e-06\tAbsError: 1.55371e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01860e-07\tAbsError: 1.23171e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.92720e-08\tAbsError: 3.21996e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.10150e-06\tAbsError: 7.37244e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.08225e-09\tAbsError: 3.15662e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:28:55\u001b[0m.\u001b[1;36m580\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.5\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.13498e-03\tAbsError: 1.41105e+11\n", - " Region: \"zone_1\"\tRelError: 2.73398e-03\tAbsError: 4.76357e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.73260e-03\tAbsError: 1.35633e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37060e-06\tAbsError: 4.76221e-04\n", - " Region: \"zone_3\"\tRelError: 4.01007e-04\tAbsError: 1.41105e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.96062e-06\tAbsError: 6.85210e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.81427e-06\tAbsError: 7.25836e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.87862e-04\tAbsError: 1.38229e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37060e-06\tAbsError: 4.76221e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.52211e+00\tAbsError: 3.59125e+14\n", - " Region: \"zone_1\"\tRelError: 1.02736e+00\tAbsError: 9.92324e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02717e+00\tAbsError: 3.31004e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.90221e-04\tAbsError: 6.61320e-02\n", - " Region: \"zone_3\"\tRelError: 1.49475e+00\tAbsError: 3.59125e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67298e-01\tAbsError: 1.76595e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.62445e-01\tAbsError: 1.82530e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.48202e-02\tAbsError: 3.31009e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.90221e-04\tAbsError: 6.61320e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.79028e+00\tAbsError: 9.40544e+14\n", - " Region: \"zone_1\"\tRelError: 2.75190e-01\tAbsError: 7.38905e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.75070e-01\tAbsError: 3.20822e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20307e-04\tAbsError: 4.18083e-02\n", - " Region: \"zone_3\"\tRelError: 1.51509e+00\tAbsError: 9.40544e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57667e-01\tAbsError: 5.48737e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.43526e-01\tAbsError: 3.91807e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13778e-01\tAbsError: 3.20825e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20307e-04\tAbsError: 4.18083e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.40953e-01\tAbsError: 2.74084e+12\n", - " Region: \"zone_1\"\tRelError: 4.80746e-02\tAbsError: 1.39556e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.80651e-02\tAbsError: 1.06618e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.47399e-06\tAbsError: 3.29377e-03\n", - " Region: \"zone_3\"\tRelError: 2.92878e-01\tAbsError: 2.74084e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.18891e-01\tAbsError: 1.82408e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.68392e-02\tAbsError: 9.16762e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.71388e-02\tAbsError: 1.06619e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.47605e-06\tAbsError: 3.29454e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.44671e+02\tAbsError: 8.23352e+15\n", - " Region: \"zone_1\"\tRelError: 5.43003e+02\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.43003e+02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.11266e-10\tAbsError: 1.43080e-07\n", - " Region: \"zone_3\"\tRelError: 1.66763e+00\tAbsError: 8.23352e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.84587e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69628e-01\tAbsError: 3.38765e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28340e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.11422e-10\tAbsError: 1.43134e-07\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.31814e-02\tAbsError: 4.58362e+11\n", - " Region: \"zone_1\"\tRelError: 1.15315e-02\tAbsError: 2.80900e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15314e-02\tAbsError: 2.57528e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.01667e-08\tAbsError: 2.78324e-05\n", - " Region: \"zone_3\"\tRelError: 1.64997e-03\tAbsError: 4.58362e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47024e-05\tAbsError: 2.30121e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.45967e-05\tAbsError: 2.28241e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60059e-03\tAbsError: 2.62890e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.01667e-08\tAbsError: 2.78324e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.22235e+00\tAbsError: 4.60128e+13\n", - " Region: \"zone_1\"\tRelError: 1.55292e-01\tAbsError: 3.12944e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55276e-01\tAbsError: 2.58827e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.55659e-05\tAbsError: 5.41171e-03\n", - " Region: \"zone_3\"\tRelError: 1.06706e+00\tAbsError: 4.60128e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.86396e-01\tAbsError: 3.30945e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.60965e-01\tAbsError: 1.29183e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19685e-01\tAbsError: 2.58997e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.55659e-05\tAbsError: 5.41171e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.04706e-01\tAbsError: 2.69889e+12\n", - " Region: \"zone_1\"\tRelError: 3.03473e-02\tAbsError: 2.78065e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.03393e-02\tAbsError: 1.57814e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.00188e-06\tAbsError: 2.77907e-03\n", - " Region: \"zone_3\"\tRelError: 7.43586e-02\tAbsError: 2.69889e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.61302e-02\tAbsError: 1.67218e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.39676e-04\tAbsError: 1.02671e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.08064e-03\tAbsError: 1.64723e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.00188e-06\tAbsError: 2.77907e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.18789e+00\tAbsError: 4.83732e+14\n", - " Region: \"zone_1\"\tRelError: 1.79190e-01\tAbsError: 3.41802e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.79166e-01\tAbsError: 2.58395e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.40007e-05\tAbsError: 8.34077e-03\n", - " Region: \"zone_3\"\tRelError: 1.00870e+00\tAbsError: 4.83732e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.69011e-01\tAbsError: 2.31920e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.36472e-01\tAbsError: 2.51812e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03191e-01\tAbsError: 2.58327e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.40007e-05\tAbsError: 8.34077e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 4.93663e+00\tAbsError: 6.37428e+14\n", - " Region: \"zone_1\"\tRelError: 3.46019e+00\tAbsError: 7.21476e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.46007e+00\tAbsError: 3.07635e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", - " Region: \"zone_3\"\tRelError: 1.47644e+00\tAbsError: 6.37428e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40577e-01\tAbsError: 3.72575e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.27797e-01\tAbsError: 2.64853e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07947e-01\tAbsError: 3.07638e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.25913e-03\tAbsError: 2.71128e+10\n", - " Region: \"zone_1\"\tRelError: 1.10973e-03\tAbsError: 2.99279e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10965e-03\tAbsError: 1.77983e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.60783e-08\tAbsError: 2.99101e-05\n", - " Region: \"zone_3\"\tRelError: 1.49391e-04\tAbsError: 2.71128e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61984e-06\tAbsError: 1.29863e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.63350e-06\tAbsError: 1.41265e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46052e-04\tAbsError: 1.82225e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.61134e-08\tAbsError: 2.99224e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.57693e-01\tAbsError: 3.02154e+12\n", - " Region: \"zone_1\"\tRelError: 1.96652e-02\tAbsError: 1.57882e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.96551e-02\tAbsError: 1.22658e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.01318e-05\tAbsError: 3.52244e-03\n", - " Region: \"zone_3\"\tRelError: 3.38028e-01\tAbsError: 3.02154e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.44609e-01\tAbsError: 2.12319e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.34946e-02\tAbsError: 8.98343e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.99137e-02\tAbsError: 1.22658e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.01327e-05\tAbsError: 3.52280e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.89232e-01\tAbsError: 2.20799e+14\n", - " Region: \"zone_1\"\tRelError: 3.47859e-02\tAbsError: 1.63666e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.47699e-02\tAbsError: 1.08347e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59370e-05\tAbsError: 5.53193e-03\n", - " Region: \"zone_3\"\tRelError: 3.54446e-01\tAbsError: 2.20799e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17998e-01\tAbsError: 9.98034e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.00900e-01\tAbsError: 1.20996e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.55324e-02\tAbsError: 1.08347e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59483e-05\tAbsError: 5.53592e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.99368e-03\tAbsError: 1.36436e+12\n", - " Region: \"zone_1\"\tRelError: 4.69498e-03\tAbsError: 1.18416e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.69465e-03\tAbsError: 1.92140e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.34635e-07\tAbsError: 1.16495e-04\n", - " Region: \"zone_3\"\tRelError: 2.29869e-03\tAbsError: 1.36436e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.77818e-04\tAbsError: 3.77261e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.77531e-04\tAbsError: 9.87102e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.94301e-03\tAbsError: 1.92550e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.34793e-07\tAbsError: 1.16552e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.95431e+00\tAbsError: 2.96317e+14\n", - " Region: \"zone_1\"\tRelError: 2.00902e+00\tAbsError: 3.34445e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.00900e+00\tAbsError: 2.58782e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", - " Region: \"zone_3\"\tRelError: 9.45295e-01\tAbsError: 2.96317e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42034e-01\tAbsError: 1.59420e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.10683e-01\tAbsError: 1.36896e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.25558e-02\tAbsError: 2.58843e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 9.89584e-04\tAbsError: 2.93050e+10\n", - " Region: \"zone_1\"\tRelError: 8.69289e-04\tAbsError: 3.58476e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.69279e-04\tAbsError: 1.49163e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.02736e-08\tAbsError: 3.56984e-06\n", - " Region: \"zone_3\"\tRelError: 1.20295e-04\tAbsError: 2.93050e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52554e-06\tAbsError: 1.64489e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.51838e-06\tAbsError: 1.28561e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17241e-04\tAbsError: 1.55101e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.02768e-08\tAbsError: 3.57094e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.07862e-02\tAbsError: 2.91329e+12\n", - " Region: \"zone_1\"\tRelError: 4.25198e-03\tAbsError: 2.87694e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 4.24370e-03\tAbsError: 1.98745e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.27799e-06\tAbsError: 2.87495e-03\n", - " Region: \"zone_3\"\tRelError: 8.65343e-02\tAbsError: 2.91329e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.76531e-02\tAbsError: 1.73373e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.28097e-04\tAbsError: 1.17955e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.64474e-03\tAbsError: 1.98943e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.27799e-06\tAbsError: 2.87495e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.27705e-02\tAbsError: 3.92143e+13\n", - " Region: \"zone_1\"\tRelError: 1.18444e-02\tAbsError: 3.97274e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18335e-02\tAbsError: 1.67051e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.09608e-05\tAbsError: 3.80569e-03\n", - " Region: \"zone_3\"\tRelError: 8.09261e-02\tAbsError: 3.92143e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.23262e-02\tAbsError: 2.18276e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.11384e-03\tAbsError: 1.73866e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14751e-02\tAbsError: 1.77220e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.09608e-05\tAbsError: 3.80569e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.32584e-03\tAbsError: 9.49817e+10\n", - " Region: \"zone_1\"\tRelError: 1.01622e-03\tAbsError: 8.23598e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01599e-03\tAbsError: 5.43240e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36970e-07\tAbsError: 8.23055e-05\n", - " Region: \"zone_3\"\tRelError: 3.09622e-04\tAbsError: 9.49817e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.47531e-06\tAbsError: 7.03893e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.40231e-06\tAbsError: 2.45924e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.94507e-04\tAbsError: 5.71127e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.37095e-07\tAbsError: 8.23471e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.90232e-01\tAbsError: 1.27257e+14\n", - " Region: \"zone_1\"\tRelError: 2.88169e-01\tAbsError: 1.34324e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88157e-01\tAbsError: 9.16559e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22923e-05\tAbsError: 4.26682e-03\n", - " Region: \"zone_3\"\tRelError: 3.02062e-01\tAbsError: 1.27257e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98145e-01\tAbsError: 5.59682e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.53461e-02\tAbsError: 7.12890e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.85587e-02\tAbsError: 9.16563e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22942e-05\tAbsError: 4.26755e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.48739e-04\tAbsError: 3.41314e+09\n", - " Region: \"zone_1\"\tRelError: 1.31134e-04\tAbsError: 2.06494e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31128e-04\tAbsError: 1.91971e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.93716e-09\tAbsError: 2.06302e-06\n", - " Region: \"zone_3\"\tRelError: 1.76048e-05\tAbsError: 3.41314e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88514e-07\tAbsError: 1.94837e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.89063e-07\tAbsError: 1.46477e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72213e-05\tAbsError: 1.99642e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.93836e-09\tAbsError: 2.06344e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.01174e-03\tAbsError: 1.41556e+12\n", - " Region: \"zone_1\"\tRelError: 6.68071e-04\tAbsError: 1.27918e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.67709e-04\tAbsError: 1.99067e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.61735e-07\tAbsError: 1.25927e-04\n", - " Region: \"zone_3\"\tRelError: 2.34367e-03\tAbsError: 1.41556e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.80161e-04\tAbsError: 3.89187e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.82303e-04\tAbsError: 1.02637e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.98085e-03\tAbsError: 1.99421e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.61901e-07\tAbsError: 1.25988e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.66013e-03\tAbsError: 1.81030e+12\n", - " Region: \"zone_1\"\tRelError: 6.83848e-04\tAbsError: 2.20908e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.83218e-04\tAbsError: 2.13698e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.29499e-07\tAbsError: 2.18771e-04\n", - " Region: \"zone_3\"\tRelError: 3.97628e-03\tAbsError: 1.81030e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.57910e-04\tAbsError: 5.71047e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.59751e-04\tAbsError: 1.23926e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.55799e-03\tAbsError: 2.13935e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.29499e-07\tAbsError: 2.18771e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 7.92825e-04\tAbsError: 7.64423e+10\n", - " Region: \"zone_1\"\tRelError: 6.01230e-04\tAbsError: 2.80077e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.01222e-04\tAbsError: 6.50022e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.85825e-09\tAbsError: 2.73577e-06\n", - " Region: \"zone_3\"\tRelError: 1.91595e-04\tAbsError: 7.64423e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.08323e-06\tAbsError: 3.16055e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.02571e-06\tAbsError: 4.48368e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77478e-04\tAbsError: 6.53128e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.86287e-09\tAbsError: 2.73743e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.81369e-01\tAbsError: 1.65118e+13\n", - " Region: \"zone_1\"\tRelError: 1.13683e-01\tAbsError: 2.48930e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13676e-01\tAbsError: 7.97182e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", - " Region: \"zone_3\"\tRelError: 6.76863e-02\tAbsError: 1.65118e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.50220e-02\tAbsError: 9.05581e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.84537e-03\tAbsError: 7.45604e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 9.81196e-03\tAbsError: 8.36703e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 7.33109e-05\tAbsError: 1.99171e+09\n", - " Region: \"zone_1\"\tRelError: 6.45108e-05\tAbsError: 3.50573e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 6.45098e-05\tAbsError: 1.06453e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00585e-09\tAbsError: 3.49509e-07\n", - " Region: \"zone_3\"\tRelError: 8.80007e-06\tAbsError: 1.99171e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03719e-07\tAbsError: 1.17952e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03272e-07\tAbsError: 8.12185e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 8.59208e-06\tAbsError: 1.10473e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00600e-09\tAbsError: 3.49562e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:02\u001b[0m.\u001b[1;36m982\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.7000000000000001\u001b[0m\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.99885e-04\tAbsError: 1.03856e+11\n", - " Region: \"zone_1\"\tRelError: 1.59108e-04\tAbsError: 8.49171e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.58864e-04\tAbsError: 5.92152e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.44320e-07\tAbsError: 8.48579e-05\n", - " Region: \"zone_3\"\tRelError: 3.40778e-04\tAbsError: 1.03856e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.18070e-06\tAbsError: 7.59415e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.10237e-06\tAbsError: 2.79147e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.24250e-04\tAbsError: 6.22638e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.44435e-07\tAbsError: 8.48959e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.04302e-04\tAbsError: 1.69873e+11\n", - " Region: \"zone_1\"\tRelError: 1.21025e-04\tAbsError: 1.10965e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20706e-04\tAbsError: 1.10497e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.19264e-07\tAbsError: 1.10854e-04\n", - " Region: \"zone_3\"\tRelError: 5.83276e-04\tAbsError: 1.69873e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01956e-05\tAbsError: 1.15007e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.00614e-05\tAbsError: 5.48653e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.62700e-04\tAbsError: 1.15313e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.19307e-07\tAbsError: 1.10871e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 9.53700e-06\tAbsError: 1.98539e+09\n", - " Region: \"zone_1\"\tRelError: 6.19364e-06\tAbsError: 4.43903e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.18087e-06\tAbsError: 9.79483e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27657e-08\tAbsError: 4.43805e-06\n", - " Region: \"zone_3\"\tRelError: 3.34336e-06\tAbsError: 1.98539e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.26061e-07\tAbsError: 1.76204e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.03253e-07\tAbsError: 2.23352e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.90128e-06\tAbsError: 1.01624e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27671e-08\tAbsError: 4.43858e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:03\u001b[0m.\u001b[1;36m664\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:03\u001b[0m.\u001b[1;36m664\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30999999999999994\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.11615e-03\tAbsError: 1.08851e+12\n", - " Region: \"zone_1\"\tRelError: 5.30759e-03\tAbsError: 1.67972e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.30711e-03\tAbsError: 1.45981e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", - " Region: \"zone_3\"\tRelError: 1.80856e-03\tAbsError: 1.08851e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43945e-04\tAbsError: 2.92186e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.94756e-05\tAbsError: 7.96320e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.56466e-03\tAbsError: 1.47422e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.94222e+01\tAbsError: 1.62190e+16\n", - " Region: \"zone_1\"\tRelError: 2.76662e+01\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.76662e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.29578e-10\tAbsError: 1.49268e-07\n", - " Region: \"zone_3\"\tRelError: 1.75598e+00\tAbsError: 1.62190e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69267e-01\tAbsError: 8.18784e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.68971e-01\tAbsError: 8.03117e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.17740e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.29628e-10\tAbsError: 1.49286e-07\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.82167e-04\tAbsError: 7.86600e+10\n", - " Region: \"zone_1\"\tRelError: 8.64932e-05\tAbsError: 3.28075e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.64839e-05\tAbsError: 6.72220e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.23076e-09\tAbsError: 3.21353e-06\n", - " Region: \"zone_3\"\tRelError: 1.95674e-04\tAbsError: 7.86600e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.24753e-06\tAbsError: 3.22967e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.18839e-06\tAbsError: 4.63633e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81229e-04\tAbsError: 6.75257e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.23600e-09\tAbsError: 3.21543e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.69952e-04\tAbsError: 1.04746e+11\n", - " Region: \"zone_1\"\tRelError: 6.23923e-05\tAbsError: 6.08693e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.23750e-05\tAbsError: 7.30344e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72792e-08\tAbsError: 6.01389e-06\n", - " Region: \"zone_3\"\tRelError: 3.07560e-04\tAbsError: 1.04746e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.47306e-06\tAbsError: 4.76665e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.41953e-06\tAbsError: 5.70795e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.94650e-04\tAbsError: 7.47231e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72864e-08\tAbsError: 6.01657e-06\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.59900e-03\tAbsError: 1.40711e+11\n", - " Region: \"zone_1\"\tRelError: 2.06948e-03\tAbsError: 6.41578e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06929e-03\tAbsError: 9.09489e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84503e-07\tAbsError: 6.40668e-05\n", - " Region: \"zone_3\"\tRelError: 5.29527e-04\tAbsError: 1.40711e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.39801e-06\tAbsError: 9.47438e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.30618e-06\tAbsError: 4.59673e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.12638e-04\tAbsError: 9.48359e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84568e-07\tAbsError: 6.40878e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 4.43666e+01\tAbsError: 8.70090e+15\n", - " Region: \"zone_1\"\tRelError: 4.27079e+01\tAbsError: 4.19631e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.27079e+01\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.30451e-10\tAbsError: 1.84559e-07\n", - " Region: \"zone_3\"\tRelError: 1.65874e+00\tAbsError: 8.70090e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78165e-01\tAbsError: 4.97235e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.78147e-01\tAbsError: 3.72855e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02426e-01\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.30651e-10\tAbsError: 1.84628e-07\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.57455e+00\tAbsError: 1.59389e+16\n", - " Region: \"zone_1\"\tRelError: 1.04759e+00\tAbsError: 1.06162e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04737e+00\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17045e-04\tAbsError: 7.53990e-02\n", - " Region: \"zone_3\"\tRelError: 1.52696e+00\tAbsError: 1.59389e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37511e-01\tAbsError: 7.87332e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.04735e-01\tAbsError: 8.06553e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.84502e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17045e-04\tAbsError: 7.53990e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.46289e-06\tAbsError: 2.26082e+09\n", - " Region: \"zone_1\"\tRelError: 1.63757e-06\tAbsError: 4.53256e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.62453e-06\tAbsError: 1.22136e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.30342e-08\tAbsError: 4.53134e-06\n", - " Region: \"zone_3\"\tRelError: 4.82532e-06\tAbsError: 2.26082e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.34861e-07\tAbsError: 2.04550e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.09305e-07\tAbsError: 2.15318e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 4.36812e-06\tAbsError: 1.26903e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.30354e-08\tAbsError: 4.53183e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.62562e-05\tAbsError: 4.80597e+09\n", - " Region: \"zone_1\"\tRelError: 2.76618e-06\tAbsError: 6.02701e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.74884e-06\tAbsError: 2.93870e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73352e-08\tAbsError: 6.02407e-06\n", - " Region: \"zone_3\"\tRelError: 1.34900e-05\tAbsError: 4.80597e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.86829e-07\tAbsError: 3.77211e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.31164e-07\tAbsError: 1.03387e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29547e-05\tAbsError: 3.05777e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73383e-08\tAbsError: 6.02527e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:06\u001b[0m.\u001b[1;36m206\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:06\u001b[0m.\u001b[1;36m206\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.31999999999999995\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:06\u001b[0m.\u001b[1;36m279\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:06\u001b[0m.\u001b[1;36m279\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6277777777777779\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 6.84757e-04\tAbsError: 5.79873e+10\n", - " Region: \"zone_1\"\tRelError: 5.39232e-04\tAbsError: 6.69464e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.39213e-04\tAbsError: 4.49143e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91058e-08\tAbsError: 6.64972e-06\n", - " Region: \"zone_3\"\tRelError: 1.45525e-04\tAbsError: 5.79873e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.71562e-06\tAbsError: 2.34463e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.68397e-06\tAbsError: 3.45410e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.38106e-04\tAbsError: 4.56915e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91137e-08\tAbsError: 6.65261e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.85241e+00\tAbsError: 3.18768e+14\n", - " Region: \"zone_1\"\tRelError: 3.74188e-01\tAbsError: 9.09797e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.74018e-01\tAbsError: 3.19528e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69811e-04\tAbsError: 5.90269e-02\n", - " Region: \"zone_3\"\tRelError: 1.47822e+00\tAbsError: 3.18768e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53655e-01\tAbsError: 1.86103e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.48046e-01\tAbsError: 1.32665e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.63467e-02\tAbsError: 3.19533e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69811e-04\tAbsError: 5.90269e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.14822e+00\tAbsError: 9.83178e+15\n", - " Region: \"zone_1\"\tRelError: 1.39457e-01\tAbsError: 7.32841e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39320e-01\tAbsError: 2.58400e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36592e-04\tAbsError: 4.74441e-02\n", - " Region: \"zone_3\"\tRelError: 1.00877e+00\tAbsError: 9.83178e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43427e-01\tAbsError: 4.83336e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.90483e-01\tAbsError: 4.99841e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74720e-01\tAbsError: 2.58193e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36592e-04\tAbsError: 4.74441e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.59100e+01\tAbsError: 9.11397e+15\n", - " Region: \"zone_1\"\tRelError: 1.42309e+01\tAbsError: 4.29340e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.42309e+01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.96085e-10\tAbsError: 1.72605e-07\n", - " Region: \"zone_3\"\tRelError: 1.67911e+00\tAbsError: 9.11397e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86093e-01\tAbsError: 5.21673e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.86076e-01\tAbsError: 3.89724e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06942e-01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.96287e-10\tAbsError: 1.72675e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.18088e+00\tAbsError: 8.89482e+15\n", - " Region: \"zone_1\"\tRelError: 3.44104e+00\tAbsError: 4.20727e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.44104e+00\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.26342e-10\tAbsError: 1.13537e-07\n", - " Region: \"zone_3\"\tRelError: 1.73984e+00\tAbsError: 8.89482e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.79052e-01\tAbsError: 4.78450e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.78927e-01\tAbsError: 4.11032e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81864e-01\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.26495e-10\tAbsError: 1.13589e-07\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.02364e-04\tAbsError: 5.62247e+09\n", - " Region: \"zone_1\"\tRelError: 8.15379e-05\tAbsError: 3.03368e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.15291e-05\tAbsError: 3.57289e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.71937e-09\tAbsError: 3.03011e-06\n", - " Region: \"zone_3\"\tRelError: 2.08260e-05\tAbsError: 5.62247e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14319e-07\tAbsError: 4.05602e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.09034e-07\tAbsError: 1.56645e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.01939e-05\tAbsError: 3.71851e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.71944e-09\tAbsError: 3.03019e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 7.14483e+00\tAbsError: 3.41864e+13\n", - " Region: \"zone_1\"\tRelError: 6.13267e+00\tAbsError: 3.19414e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.13265e+00\tAbsError: 2.58787e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.74411e-05\tAbsError: 6.06270e-03\n", - " Region: \"zone_3\"\tRelError: 1.01216e+00\tAbsError: 3.41864e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.64045e-01\tAbsError: 2.44518e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.34593e-01\tAbsError: 9.73459e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13508e-01\tAbsError: 2.58986e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.74411e-05\tAbsError: 6.06270e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 9.17087e-01\tAbsError: 2.70112e+15\n", - " Region: \"zone_1\"\tRelError: 4.13278e-01\tAbsError: 1.18036e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.12964e-01\tAbsError: 9.16529e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.13541e-04\tAbsError: 1.08871e-01\n", - " Region: \"zone_3\"\tRelError: 5.03809e-01\tAbsError: 2.70112e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.83333e-01\tAbsError: 1.43386e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03452e-01\tAbsError: 1.26726e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.16711e-01\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.13541e-04\tAbsError: 1.08871e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.59689e+00\tAbsError: 3.48565e+14\n", - " Region: \"zone_1\"\tRelError: 8.68274e-02\tAbsError: 9.46608e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.66503e-02\tAbsError: 3.31004e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77102e-04\tAbsError: 6.15604e-02\n", - " Region: \"zone_3\"\tRelError: 1.51007e+00\tAbsError: 3.48565e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67462e-01\tAbsError: 2.05903e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.63037e-01\tAbsError: 1.42662e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.93898e-02\tAbsError: 3.31008e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77102e-04\tAbsError: 6.15604e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.86658e+00\tAbsError: 4.79765e+15\n", - " Region: \"zone_1\"\tRelError: 3.33843e-01\tAbsError: 7.09823e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.33731e-01\tAbsError: 3.20821e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11951e-04\tAbsError: 3.89002e-02\n", - " Region: \"zone_3\"\tRelError: 1.53274e+00\tAbsError: 4.79765e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.55885e-01\tAbsError: 2.27341e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.29604e-01\tAbsError: 2.52424e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.47140e-01\tAbsError: 3.20822e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11951e-04\tAbsError: 3.89002e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.62672e-05\tAbsError: 3.10482e+09\n", - " Region: \"zone_1\"\tRelError: 3.66806e-05\tAbsError: 2.21724e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 3.66799e-05\tAbsError: 2.06476e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.31104e-10\tAbsError: 2.19659e-07\n", - " Region: \"zone_3\"\tRelError: 9.58660e-06\tAbsError: 3.10482e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88628e-07\tAbsError: 1.51763e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.86687e-07\tAbsError: 1.58719e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.21065e-06\tAbsError: 2.10348e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.31398e-10\tAbsError: 2.19764e-07\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 7.86366e-01\tAbsError: 5.21058e+12\n", - " Region: \"zone_1\"\tRelError: 4.88854e-01\tAbsError: 1.32754e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.88846e-01\tAbsError: 1.06618e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.51860e-06\tAbsError: 2.61359e-03\n", - " Region: \"zone_3\"\tRelError: 2.97512e-01\tAbsError: 5.21058e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.18585e-01\tAbsError: 2.63420e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.77304e-02\tAbsError: 2.57639e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.11889e-02\tAbsError: 1.06618e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.52103e-06\tAbsError: 2.61444e-03\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:09\u001b[0m.\u001b[1;36m494\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.6\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 4.27279e-01\tAbsError: 8.17053e+14\n", - " Region: \"zone_1\"\tRelError: 1.09940e-01\tAbsError: 2.21034e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09304e-01\tAbsError: 3.29075e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.36020e-04\tAbsError: 2.20705e-01\n", - " Region: \"zone_3\"\tRelError: 3.17339e-01\tAbsError: 8.17053e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.72653e-02\tAbsError: 1.99598e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.68899e-02\tAbsError: 6.17455e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.42547e-01\tAbsError: 3.29140e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.36020e-04\tAbsError: 2.20705e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.22886e+00\tAbsError: 4.42708e+13\n", - " Region: \"zone_1\"\tRelError: 1.58984e-01\tAbsError: 3.21171e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.58965e-01\tAbsError: 2.55032e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.90270e-05\tAbsError: 6.61387e-03\n", - " Region: \"zone_3\"\tRelError: 1.06988e+00\tAbsError: 4.42708e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.86765e-01\tAbsError: 3.24991e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.63795e-01\tAbsError: 1.17717e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19299e-01\tAbsError: 2.58497e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.90270e-05\tAbsError: 6.61387e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.14845e+00\tAbsError: 3.47817e+15\n", - " Region: \"zone_1\"\tRelError: 1.23170e-01\tAbsError: 3.19890e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.23152e-01\tAbsError: 2.58241e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77415e-05\tAbsError: 6.16481e-03\n", - " Region: \"zone_3\"\tRelError: 1.02528e+00\tAbsError: 3.47817e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.72014e-01\tAbsError: 1.60123e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.20395e-01\tAbsError: 1.87695e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.32856e-01\tAbsError: 2.56660e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77630e-05\tAbsError: 6.17222e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 3.16100e-01\tAbsError: 2.21306e+12\n", - " Region: \"zone_1\"\tRelError: 2.42523e-01\tAbsError: 2.37532e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.42516e-01\tAbsError: 2.24934e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.83356e-06\tAbsError: 2.37307e-03\n", - " Region: \"zone_3\"\tRelError: 7.35763e-02\tAbsError: 2.21306e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.61069e-02\tAbsError: 1.47912e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.09117e-04\tAbsError: 7.33941e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 7.25338e-03\tAbsError: 2.33234e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.83356e-06\tAbsError: 2.37307e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.94073e+01\tAbsError: 8.32958e+15\n", - " Region: \"zone_1\"\tRelError: 1.77016e+01\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77016e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.06764e-10\tAbsError: 1.76108e-07\n", - " Region: \"zone_3\"\tRelError: 1.70569e+00\tAbsError: 8.32958e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69637e-01\tAbsError: 4.59097e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69532e-01\tAbsError: 3.73860e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66519e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.06930e-10\tAbsError: 1.76171e-07\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.01035e-01\tAbsError: 1.64733e+14\n", - " Region: \"zone_1\"\tRelError: 2.03094e-01\tAbsError: 1.60100e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03048e-01\tAbsError: 7.96658e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.59052e-05\tAbsError: 1.59303e-02\n", - " Region: \"zone_3\"\tRelError: 4.97941e-01\tAbsError: 1.64733e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17881e-03\tAbsError: 7.88164e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.07895e-03\tAbsError: 8.59168e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.85637e-01\tAbsError: 8.00849e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.59052e-05\tAbsError: 1.59303e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.71219e-01\tAbsError: 6.21215e+12\n", - " Region: \"zone_1\"\tRelError: 2.71681e-02\tAbsError: 1.54198e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.71591e-02\tAbsError: 1.22657e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.07418e-06\tAbsError: 3.15411e-03\n", - " Region: \"zone_3\"\tRelError: 3.44051e-01\tAbsError: 6.21215e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.44544e-01\tAbsError: 3.16237e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.45424e-02\tAbsError: 3.04979e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49548e-02\tAbsError: 1.22658e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.07667e-06\tAbsError: 3.15512e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.84622e-01\tAbsError: 1.19910e+15\n", - " Region: \"zone_1\"\tRelError: 9.36472e-02\tAbsError: 3.32184e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.35828e-02\tAbsError: 1.08350e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.44226e-05\tAbsError: 2.23834e-02\n", - " Region: \"zone_3\"\tRelError: 3.90975e-01\tAbsError: 1.19910e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14567e-01\tAbsError: 6.37142e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.33113e-01\tAbsError: 5.61954e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.32306e-02\tAbsError: 1.08351e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.44226e-05\tAbsError: 2.23834e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.21034e-02\tAbsError: 1.17870e+12\n", - " Region: \"zone_1\"\tRelError: 6.00476e-02\tAbsError: 9.78333e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.00474e-02\tAbsError: 1.73477e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.76068e-07\tAbsError: 9.60986e-05\n", - " Region: \"zone_3\"\tRelError: 2.05571e-03\tAbsError: 1.17870e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.40860e-04\tAbsError: 3.24945e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.38116e-04\tAbsError: 8.53756e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77646e-03\tAbsError: 1.74090e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.76193e-07\tAbsError: 9.61438e-05\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.07616e+01\tAbsError: 3.02291e+15\n", - " Region: \"zone_1\"\tRelError: 9.27113e+00\tAbsError: 6.52674e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.27103e+00\tAbsError: 3.07634e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.92954e-05\tAbsError: 3.45040e-02\n", - " Region: \"zone_3\"\tRelError: 1.49044e+00\tAbsError: 3.02291e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40308e-01\tAbsError: 1.49698e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.14159e-01\tAbsError: 1.52592e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35875e-01\tAbsError: 3.07635e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.92954e-05\tAbsError: 3.45040e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.04323e-01\tAbsError: 1.53102e+13\n", - " Region: \"zone_1\"\tRelError: 3.15774e-02\tAbsError: 7.15567e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.15568e-02\tAbsError: 7.10876e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.05999e-05\tAbsError: 7.14856e-03\n", - " Region: \"zone_3\"\tRelError: 7.27454e-02\tAbsError: 1.53102e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94207e-04\tAbsError: 7.65839e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.98721e-04\tAbsError: 7.65181e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.15319e-02\tAbsError: 7.17354e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.06009e-05\tAbsError: 7.14900e-03\n", - "Iteration: 4\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.10597e-01\tAbsError: 2.17642e+14\n", - " Region: \"zone_1\"\tRelError: 5.93953e-03\tAbsError: 2.27414e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.87457e-03\tAbsError: 1.87837e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.49665e-05\tAbsError: 2.25536e-02\n", - " Region: \"zone_3\"\tRelError: 1.04658e-01\tAbsError: 2.17642e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.10024e-02\tAbsError: 1.28740e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.57541e-03\tAbsError: 8.89018e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.40148e-02\tAbsError: 1.94966e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.49665e-05\tAbsError: 2.25536e-02\n", - " Device: \"device\"\tRelError: 9.89806e-02\tAbsError: 2.63223e+12\n", - " Region: \"zone_1\"\tRelError: 1.18037e-02\tAbsError: 2.01002e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17979e-02\tAbsError: 4.44609e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.77536e-06\tAbsError: 2.00557e-03\n", - " Region: \"zone_3\"\tRelError: 8.71768e-02\tAbsError: 2.63223e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.79784e-02\tAbsError: 1.72107e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.64930e-04\tAbsError: 9.11160e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 8.82774e-03\tAbsError: 4.85959e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.77536e-06\tAbsError: 2.00557e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 9.04188e-03\tAbsError: 7.61005e+10\n", - " Region: \"zone_1\"\tRelError: 8.78012e-03\tAbsError: 7.15921e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 8.77992e-03\tAbsError: 4.50957e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.06023e-07\tAbsError: 7.15470e-05\n", - " Region: \"zone_3\"\tRelError: 2.61754e-04\tAbsError: 7.61005e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.33533e-06\tAbsError: 5.83295e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.07541e-06\tAbsError: 1.77711e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.51137e-04\tAbsError: 4.71800e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.06123e-07\tAbsError: 7.15827e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.22732e+00\tAbsError: 2.06865e+15\n", - " Region: \"zone_1\"\tRelError: 2.78568e-01\tAbsError: 2.74627e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78563e-01\tAbsError: 2.58185e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73142e-06\tAbsError: 1.64416e-03\n", - " Region: \"zone_3\"\tRelError: 9.48751e-01\tAbsError: 2.06865e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.44918e-01\tAbsError: 9.02348e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.89155e-01\tAbsError: 1.16630e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14673e-01\tAbsError: 2.51147e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73142e-06\tAbsError: 1.64416e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.82885e-02\tAbsError: 7.75343e+12\n", - " Region: \"zone_1\"\tRelError: 1.74263e-02\tAbsError: 1.11082e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74231e-02\tAbsError: 3.27682e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.18949e-06\tAbsError: 1.10754e-03\n", - " Region: \"zone_3\"\tRelError: 4.08622e-02\tAbsError: 7.75343e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.01160e-04\tAbsError: 3.88269e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.99390e-04\tAbsError: 3.87074e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.02585e-02\tAbsError: 3.34987e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.19059e-06\tAbsError: 1.10796e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.68793e-02\tAbsError: 1.13806e+13\n", - " Region: \"zone_1\"\tRelError: 3.05155e-03\tAbsError: 2.63465e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.05082e-03\tAbsError: 9.56254e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.29620e-07\tAbsError: 2.53902e-04\n", - " Region: \"zone_3\"\tRelError: 3.38277e-02\tAbsError: 1.13806e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.73812e-04\tAbsError: 4.54978e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.93557e-04\tAbsError: 6.83078e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.21596e-02\tAbsError: 9.77882e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.29928e-07\tAbsError: 2.54016e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.30530e-03\tAbsError: 9.78003e+11\n", - " Region: \"zone_1\"\tRelError: 1.14749e-03\tAbsError: 1.38882e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14710e-03\tAbsError: 1.45671e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.94799e-07\tAbsError: 1.37425e-04\n", - " Region: \"zone_3\"\tRelError: 1.15781e-03\tAbsError: 9.78003e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.11703e-04\tAbsError: 2.41528e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.06316e-04\tAbsError: 7.36475e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 9.39392e-04\tAbsError: 1.46178e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.94968e-07\tAbsError: 1.37486e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.96510e-03\tAbsError: 6.67503e+10\n", - " Region: \"zone_1\"\tRelError: 5.78981e-03\tAbsError: 2.05708e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.78981e-03\tAbsError: 5.92280e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.73914e-09\tAbsError: 1.99785e-06\n", - " Region: \"zone_3\"\tRelError: 1.75286e-04\tAbsError: 6.67503e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.50783e-06\tAbsError: 2.76624e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.46016e-06\tAbsError: 3.90878e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.64312e-04\tAbsError: 5.92735e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.74272e-09\tAbsError: 1.99915e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 7.18897e+00\tAbsError: 6.29402e+14\n", - " Region: \"zone_1\"\tRelError: 6.86170e+00\tAbsError: 2.22868e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.86166e+00\tAbsError: 9.16572e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.77613e-05\tAbsError: 1.31211e-02\n", - " Region: \"zone_3\"\tRelError: 3.27267e-01\tAbsError: 6.29402e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84319e-01\tAbsError: 3.28649e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.08857e-01\tAbsError: 3.00753e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.40527e-02\tAbsError: 9.16579e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.77613e-05\tAbsError: 1.31211e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.09210e-02\tAbsError: 1.22286e+12\n", - " Region: \"zone_1\"\tRelError: 3.28469e-03\tAbsError: 4.72819e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.28333e-03\tAbsError: 4.87030e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36013e-06\tAbsError: 4.72332e-04\n", - " Region: \"zone_3\"\tRelError: 7.63634e-03\tAbsError: 1.22286e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.75678e-05\tAbsError: 6.11672e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.73305e-05\tAbsError: 6.11193e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 7.54008e-03\tAbsError: 5.02425e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36049e-06\tAbsError: 4.72455e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.03979e-04\tAbsError: 2.18534e+11\n", - " Region: \"zone_1\"\tRelError: 1.60281e-05\tAbsError: 7.35130e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39125e-05\tAbsError: 1.32164e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.11558e-06\tAbsError: 7.34998e-04\n", - " Region: \"zone_3\"\tRelError: 1.87951e-04\tAbsError: 2.18534e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43155e-05\tAbsError: 1.73222e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.05806e-06\tAbsError: 4.53126e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.64462e-04\tAbsError: 1.32403e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.11561e-06\tAbsError: 7.35020e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 9.98595e-04\tAbsError: 1.18398e+11\n", - " Region: \"zone_1\"\tRelError: 5.54916e-04\tAbsError: 5.37957e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.54761e-04\tAbsError: 7.07360e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54699e-07\tAbsError: 5.37249e-05\n", - " Region: \"zone_3\"\tRelError: 4.43679e-04\tAbsError: 1.18398e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.67115e-06\tAbsError: 8.17908e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.59258e-06\tAbsError: 3.66073e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.26261e-04\tAbsError: 7.44323e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54699e-07\tAbsError: 5.37249e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 4.04179e-05\tAbsError: 1.70330e+09\n", - " Region: \"zone_1\"\tRelError: 3.88667e-05\tAbsError: 3.90113e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.88554e-05\tAbsError: 6.75226e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12212e-08\tAbsError: 3.90046e-06\n", - " Region: \"zone_3\"\tRelError: 1.55121e-06\tAbsError: 1.70330e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50666e-07\tAbsError: 1.31512e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.21755e-07\tAbsError: 3.88171e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 1.26756e-06\tAbsError: 6.93990e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12225e-08\tAbsError: 3.90096e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.42105e-01\tAbsError: 9.57843e+13\n", - " Region: \"zone_1\"\tRelError: 5.64317e-01\tAbsError: 1.44974e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.64276e-01\tAbsError: 1.24104e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14024e-05\tAbsError: 1.43733e-02\n", - " Region: \"zone_3\"\tRelError: 7.77880e-02\tAbsError: 9.57843e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.25473e-02\tAbsError: 4.71405e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.65020e-03\tAbsError: 4.86438e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.95491e-02\tAbsError: 1.28397e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14024e-05\tAbsError: 1.43733e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:16\u001b[0m.\u001b[1;36m499\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:16\u001b[0m.\u001b[1;36m499\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.4149999999999999\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.38843e-03\tAbsError: 5.18838e+11\n", - " Region: \"zone_1\"\tRelError: 1.31867e-03\tAbsError: 9.39018e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31840e-03\tAbsError: 1.99779e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69826e-07\tAbsError: 9.37020e-05\n", - " Region: \"zone_3\"\tRelError: 3.06976e-03\tAbsError: 5.18838e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95362e-05\tAbsError: 2.68345e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.93671e-05\tAbsError: 2.50493e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.03058e-03\tAbsError: 2.07424e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69859e-07\tAbsError: 9.37138e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.91239e-03\tAbsError: 7.09181e+11\n", - " Region: \"zone_1\"\tRelError: 2.49097e-04\tAbsError: 3.52425e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.48997e-04\tAbsError: 3.65197e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00466e-07\tAbsError: 3.48773e-05\n", - " Region: \"zone_3\"\tRelError: 2.66329e-03\tAbsError: 7.09181e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.58653e-05\tAbsError: 3.59049e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.57679e-05\tAbsError: 3.50132e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.59156e-03\tAbsError: 3.83392e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00492e-07\tAbsError: 3.48870e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.20992e-04\tAbsError: 4.75382e+10\n", - " Region: \"zone_1\"\tRelError: 1.19915e-04\tAbsError: 5.94017e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19898e-04\tAbsError: 4.49644e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69359e-08\tAbsError: 5.89520e-06\n", - " Region: \"zone_3\"\tRelError: 1.01077e-04\tAbsError: 4.75382e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.86193e-06\tAbsError: 1.68091e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.82821e-06\tAbsError: 3.07291e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 9.33703e-05\tAbsError: 4.50130e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69437e-08\tAbsError: 5.89805e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.36557e-01\tAbsError: 7.18470e+12\n", - " Region: \"zone_1\"\tRelError: 1.16158e-01\tAbsError: 1.78279e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16157e-01\tAbsError: 6.59165e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.94530e-07\tAbsError: 1.71687e-04\n", - " Region: \"zone_3\"\tRelError: 2.03993e-02\tAbsError: 7.18470e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.98223e-04\tAbsError: 2.78831e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.37326e-04\tAbsError: 4.39639e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.92632e-02\tAbsError: 6.83641e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.94530e-07\tAbsError: 1.71687e-04\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 9.50080e-04\tAbsError: 1.03863e+11\n", - " Region: \"zone_1\"\tRelError: 2.85910e-04\tAbsError: 3.37412e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.85814e-04\tAbsError: 4.14946e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.68675e-08\tAbsError: 3.36997e-05\n", - " Region: \"zone_3\"\tRelError: 6.64170e-04\tAbsError: 1.03863e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.88184e-06\tAbsError: 5.40187e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.85553e-06\tAbsError: 4.98443e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 6.56335e-04\tAbsError: 4.30256e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.69043e-08\tAbsError: 3.37128e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.20815e+01\tAbsError: 8.67564e+15\n", - " Region: \"zone_1\"\tRelError: 1.04115e+01\tAbsError: 4.19631e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04115e+01\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.25512e-10\tAbsError: 1.82505e-07\n", - " Region: \"zone_3\"\tRelError: 1.67004e+00\tAbsError: 8.67564e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78190e-01\tAbsError: 5.09472e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.78169e-01\tAbsError: 3.58092e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13676e-01\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.25512e-10\tAbsError: 1.82505e-07\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.24916e-04\tAbsError: 3.32660e+10\n", - " Region: \"zone_1\"\tRelError: 1.94731e-05\tAbsError: 4.52188e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.93431e-05\tAbsError: 2.17514e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.30085e-07\tAbsError: 4.51970e-05\n", - " Region: \"zone_3\"\tRelError: 2.05443e-04\tAbsError: 3.32660e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.93944e-06\tAbsError: 1.53287e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.96480e-06\tAbsError: 1.79373e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.01409e-04\tAbsError: 2.25864e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.30134e-07\tAbsError: 4.52143e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 4.02467e-05\tAbsError: 4.79398e+09\n", - " Region: \"zone_1\"\tRelError: 2.23553e-05\tAbsError: 2.42948e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.23483e-05\tAbsError: 2.94730e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.98740e-09\tAbsError: 2.42654e-06\n", - " Region: \"zone_3\"\tRelError: 1.78914e-05\tAbsError: 4.79398e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.44215e-07\tAbsError: 3.54889e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.39137e-07\tAbsError: 1.24509e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72010e-05\tAbsError: 3.09105e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.98888e-09\tAbsError: 2.42708e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:19\u001b[0m.\u001b[1;36m018\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:19\u001b[0m.\u001b[1;36m018\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.42999999999999994\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Iteration: 11\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - " Device: \"device\"\tRelError: 3.25927e-04\tAbsError: 3.72019e+10\n", - " Region: \"zone_1\"\tRelError: 9.80813e-05\tAbsError: 7.68282e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 9.80593e-05\tAbsError: 1.46928e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.20415e-08\tAbsError: 7.66812e-06\n", - " Region: \"zone_3\"\tRelError: 2.27846e-04\tAbsError: 3.72019e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36089e-06\tAbsError: 1.97599e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.34801e-06\tAbsError: 1.74420e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25115e-04\tAbsError: 1.52180e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.20501e-08\tAbsError: 7.67121e-06\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "Iteration: 6\n", - "number of equations 31816\n", - " Device: \"device\"\tRelError: 3.13498e-03\tAbsError: 1.41105e+11\n", - " Region: \"zone_1\"\tRelError: 2.73398e-03\tAbsError: 4.76357e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.73260e-03\tAbsError: 1.35633e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37060e-06\tAbsError: 4.76221e-04\n", - " Region: \"zone_3\"\tRelError: 4.01007e-04\tAbsError: 1.41105e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.96062e-06\tAbsError: 6.85210e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.81427e-06\tAbsError: 7.25836e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.87862e-04\tAbsError: 1.38229e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37060e-06\tAbsError: 4.76221e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.73360e+00\tAbsError: 3.35480e+14\n", - " Region: \"zone_1\"\tRelError: 2.38462e-01\tAbsError: 8.41052e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.38311e-01\tAbsError: 3.19528e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.50056e-04\tAbsError: 5.21524e-02\n", - " Region: \"zone_3\"\tRelError: 1.49514e+00\tAbsError: 3.35480e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.54534e-01\tAbsError: 2.44689e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.47448e-01\tAbsError: 9.07907e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.30055e-02\tAbsError: 3.19532e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.50056e-04\tAbsError: 5.21524e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.07837e-04\tAbsError: 4.44485e+10\n", - " Region: \"zone_1\"\tRelError: 1.78877e-05\tAbsError: 4.90272e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.78736e-05\tAbsError: 2.11659e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.40500e-08\tAbsError: 4.88155e-06\n", - " Region: \"zone_3\"\tRelError: 1.89950e-04\tAbsError: 4.44485e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17511e-06\tAbsError: 2.50623e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.16753e-06\tAbsError: 1.93862e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.85593e-04\tAbsError: 2.23490e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.40541e-08\tAbsError: 4.88301e-06\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 7.72661e-05\tAbsError: 8.43440e+09\n", - " Region: \"zone_1\"\tRelError: 2.32650e-05\tAbsError: 2.49052e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.32578e-05\tAbsError: 3.39814e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.14902e-09\tAbsError: 2.48712e-06\n", - " Region: \"zone_3\"\tRelError: 5.40011e-05\tAbsError: 8.43440e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.08161e-07\tAbsError: 4.47974e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.05735e-07\tAbsError: 3.95466e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 5.33800e-05\tAbsError: 3.51782e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.15190e-09\tAbsError: 2.48816e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:20\u001b[0m.\u001b[1;36m339\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.8\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.31814e-02\tAbsError: 4.58362e+11\n", - " Region: \"zone_1\"\tRelError: 1.15315e-02\tAbsError: 2.80900e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15314e-02\tAbsError: 2.57528e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.01667e-08\tAbsError: 2.78324e-05\n", - " Region: \"zone_3\"\tRelError: 1.64997e-03\tAbsError: 4.58362e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47024e-05\tAbsError: 2.30121e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.45967e-05\tAbsError: 2.28241e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60059e-03\tAbsError: 2.62890e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.01667e-08\tAbsError: 2.78324e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.20945e+01\tAbsError: 9.08577e+15\n", - " Region: \"zone_1\"\tRelError: 2.04049e+01\tAbsError: 4.29340e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.04049e+01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.00423e-10\tAbsError: 2.09004e-07\n", - " Region: \"zone_3\"\tRelError: 1.68962e+00\tAbsError: 9.08577e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86117e-01\tAbsError: 5.34441e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.86097e-01\tAbsError: 3.74136e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17405e-01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.00698e-10\tAbsError: 2.09103e-07\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.09215e+00\tAbsError: 7.66077e+13\n", - " Region: \"zone_1\"\tRelError: 7.77139e-02\tAbsError: 3.29192e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.76937e-02\tAbsError: 2.58684e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.02868e-05\tAbsError: 7.05086e-03\n", - " Region: \"zone_3\"\tRelError: 1.01444e+00\tAbsError: 7.66077e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.64635e-01\tAbsError: 4.57472e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.42937e-01\tAbsError: 3.08605e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06843e-01\tAbsError: 2.58845e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.02868e-05\tAbsError: 7.05086e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.81036e-05\tAbsError: 4.66807e+09\n", - " Region: \"zone_1\"\tRelError: 2.43253e-06\tAbsError: 3.06352e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.42372e-06\tAbsError: 2.50658e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.81013e-09\tAbsError: 3.06101e-06\n", - " Region: \"zone_3\"\tRelError: 2.56711e-05\tAbsError: 4.66807e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.45544e-07\tAbsError: 2.66353e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.46673e-07\tAbsError: 2.00454e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.51700e-05\tAbsError: 2.62757e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.81170e-09\tAbsError: 3.06156e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:21\u001b[0m.\u001b[1;36m434\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:21\u001b[0m.\u001b[1;36m434\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7333333333333334\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.25913e-03\tAbsError: 2.71128e+10\n", - " Region: \"zone_1\"\tRelError: 1.10973e-03\tAbsError: 2.99279e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10965e-03\tAbsError: 1.77983e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.60783e-08\tAbsError: 2.99101e-05\n", - " Region: \"zone_3\"\tRelError: 1.49391e-04\tAbsError: 2.71128e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61984e-06\tAbsError: 1.29863e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.63350e-06\tAbsError: 1.41265e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46052e-04\tAbsError: 1.82225e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.61134e-08\tAbsError: 2.99224e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.91796e+01\tAbsError: 8.00136e+16\n", - " Region: \"zone_1\"\tRelError: 1.61687e+01\tAbsError: 4.09548e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.61687e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75011e-09\tAbsError: 6.08861e-07\n", - " Region: \"zone_3\"\tRelError: 3.01093e+00\tAbsError: 8.00136e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.66958e-01\tAbsError: 4.00295e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.65547e-01\tAbsError: 3.99841e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.47843e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75082e-09\tAbsError: 6.09112e-07\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.77996e+00\tAbsError: 3.92703e+14\n", - " Region: \"zone_1\"\tRelError: 2.52242e-01\tAbsError: 8.68469e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.52087e-01\tAbsError: 3.31003e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54646e-04\tAbsError: 5.37466e-02\n", - " Region: \"zone_3\"\tRelError: 1.52772e+00\tAbsError: 3.92703e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.68572e-01\tAbsError: 2.83122e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.62116e-01\tAbsError: 1.09581e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.68743e-02\tAbsError: 3.31007e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54646e-04\tAbsError: 5.37466e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.42585e-01\tAbsError: 2.72886e+13\n", - " Region: \"zone_1\"\tRelError: 2.71416e-02\tAbsError: 1.31199e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.71346e-02\tAbsError: 1.06617e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.07272e-06\tAbsError: 2.45812e-03\n", - " Region: \"zone_3\"\tRelError: 3.15443e-01\tAbsError: 2.72886e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17067e-01\tAbsError: 1.32533e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.10019e-02\tAbsError: 1.40354e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.73671e-02\tAbsError: 1.06618e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.07672e-06\tAbsError: 2.45957e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.88747e+01\tAbsError: 2.64080e+16\n", - " Region: \"zone_1\"\tRelError: 1.70725e+01\tAbsError: 4.20731e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.70725e+01\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.40999e-09\tAbsError: 4.89892e-07\n", - " Region: \"zone_3\"\tRelError: 1.80221e+00\tAbsError: 2.64080e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78443e-01\tAbsError: 1.32620e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.78018e-01\tAbsError: 1.31460e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.45750e-01\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41018e-09\tAbsError: 4.89958e-07\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 9.89584e-04\tAbsError: 2.93050e+10\n", - " Region: \"zone_1\"\tRelError: 8.69289e-04\tAbsError: 3.58476e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.69279e-04\tAbsError: 1.49163e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.02736e-08\tAbsError: 3.56984e-06\n", - " Region: \"zone_3\"\tRelError: 1.20295e-04\tAbsError: 2.93050e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52554e-06\tAbsError: 1.64489e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.51838e-06\tAbsError: 1.28561e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17241e-04\tAbsError: 1.55101e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.02768e-08\tAbsError: 3.57094e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.18761e+00\tAbsError: 1.05578e+14\n", - " Region: \"zone_1\"\tRelError: 1.15764e-01\tAbsError: 3.33783e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15742e-01\tAbsError: 2.55891e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.24115e-05\tAbsError: 7.78922e-03\n", - " Region: \"zone_3\"\tRelError: 1.07184e+00\tAbsError: 1.05578e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.87584e-01\tAbsError: 6.29656e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.72837e-01\tAbsError: 4.26125e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11399e-01\tAbsError: 2.58759e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.24115e-05\tAbsError: 7.78922e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.23024e+00\tAbsError: 7.24788e+16\n", - " Region: \"zone_1\"\tRelError: 2.89301e-01\tAbsError: 2.81842e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88577e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.23562e-04\tAbsError: 2.51079e-01\n", - " Region: \"zone_3\"\tRelError: 2.94094e+00\tAbsError: 7.24788e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.29061e-01\tAbsError: 3.72143e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.83761e-01\tAbsError: 3.52645e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.62740e+00\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.23562e-04\tAbsError: 2.51079e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.78641e-02\tAbsError: 3.94985e+12\n", - " Region: \"zone_1\"\tRelError: 3.30932e-03\tAbsError: 1.76151e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.30433e-03\tAbsError: 2.82510e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.99157e-06\tAbsError: 1.73326e-03\n", - " Region: \"zone_3\"\tRelError: 7.45548e-02\tAbsError: 3.94985e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.56024e-02\tAbsError: 2.31572e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.47093e-03\tAbsError: 1.63413e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.47641e-03\tAbsError: 3.06646e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.99157e-06\tAbsError: 1.73326e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.82088e+00\tAbsError: 2.75253e+16\n", - " Region: \"zone_1\"\tRelError: 2.37750e-01\tAbsError: 1.45747e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.37423e-01\tAbsError: 3.20819e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.27266e-04\tAbsError: 1.13665e-01\n", - " Region: \"zone_3\"\tRelError: 1.58313e+00\tAbsError: 2.75253e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53221e-01\tAbsError: 1.38558e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.18941e-01\tAbsError: 1.36695e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.10644e-01\tAbsError: 3.20820e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.27266e-04\tAbsError: 1.13665e-01\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.48739e-04\tAbsError: 3.41314e+09\n", - " Region: \"zone_1\"\tRelError: 1.31134e-04\tAbsError: 2.06494e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31128e-04\tAbsError: 1.91971e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.93716e-09\tAbsError: 2.06302e-06\n", - " Region: \"zone_3\"\tRelError: 1.76048e-05\tAbsError: 3.41314e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88514e-07\tAbsError: 1.94837e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.89063e-07\tAbsError: 1.46477e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72213e-05\tAbsError: 1.99642e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.93836e-09\tAbsError: 2.06344e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.18721e-01\tAbsError: 4.05656e+13\n", - " Region: \"zone_1\"\tRelError: 5.06770e-02\tAbsError: 1.49437e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.06693e-02\tAbsError: 1.22657e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.70556e-06\tAbsError: 2.67801e-03\n", - " Region: \"zone_3\"\tRelError: 3.68044e-01\tAbsError: 4.05656e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.42993e-01\tAbsError: 1.95799e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.22533e-02\tAbsError: 2.09857e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.27901e-02\tAbsError: 1.22657e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.70854e-06\tAbsError: 2.67909e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 5.71850e+00\tAbsError: 4.10464e+16\n", - " Region: \"zone_1\"\tRelError: 1.82923e-01\tAbsError: 1.08958e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82684e-01\tAbsError: 2.58969e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.39429e-04\tAbsError: 8.30609e-02\n", - " Region: \"zone_3\"\tRelError: 5.53558e+00\tAbsError: 4.10464e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16071e-01\tAbsError: 2.08924e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.47287e-01\tAbsError: 2.01540e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.77198e+00\tAbsError: 2.46271e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.39429e-04\tAbsError: 8.30609e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.10513e-03\tAbsError: 8.23293e+11\n", - " Region: \"zone_1\"\tRelError: 1.04330e-04\tAbsError: 1.16877e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03998e-04\tAbsError: 1.23528e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.32247e-07\tAbsError: 1.15642e-04\n", - " Region: \"zone_3\"\tRelError: 1.00080e-03\tAbsError: 8.23293e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05747e-04\tAbsError: 1.97507e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.12169e-05\tAbsError: 6.25787e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 8.13504e-04\tAbsError: 1.23947e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.32377e-07\tAbsError: 1.15689e-04\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 7.33109e-05\tAbsError: 1.99171e+09\n", - " Region: \"zone_1\"\tRelError: 6.45108e-05\tAbsError: 3.50573e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 6.45098e-05\tAbsError: 1.06453e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00585e-09\tAbsError: 3.49509e-07\n", - " Region: \"zone_3\"\tRelError: 8.80007e-06\tAbsError: 1.99171e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03719e-07\tAbsError: 1.17952e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03272e-07\tAbsError: 8.12184e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 8.59208e-06\tAbsError: 1.10473e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00600e-09\tAbsError: 3.49562e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:25\u001b[0m.\u001b[1;36m564\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.7000000000000001\u001b[0m\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.55444e+00\tAbsError: 1.76419e+16\n", - " Region: \"zone_1\"\tRelError: 2.12177e-01\tAbsError: 9.72099e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.11971e-01\tAbsError: 2.57520e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.05785e-04\tAbsError: 7.14579e-02\n", - " Region: \"zone_3\"\tRelError: 1.34226e+00\tAbsError: 1.76419e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.66220e-01\tAbsError: 8.87623e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.15790e-01\tAbsError: 8.76568e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 4.60047e-01\tAbsError: 2.51951e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.05785e-04\tAbsError: 7.14579e-02\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.36553e-02\tAbsError: 6.47712e+12\n", - " Region: \"zone_1\"\tRelError: 5.76964e-03\tAbsError: 1.83664e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.76447e-03\tAbsError: 4.26587e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.16650e-06\tAbsError: 1.79398e-03\n", - " Region: \"zone_3\"\tRelError: 8.78857e-02\tAbsError: 6.47712e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.64913e-02\tAbsError: 3.28452e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.27207e-03\tAbsError: 3.19260e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.11716e-03\tAbsError: 4.70869e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.16650e-06\tAbsError: 1.79398e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.06773e+00\tAbsError: 1.32751e+16\n", - " Region: \"zone_1\"\tRelError: 2.27618e-01\tAbsError: 5.11022e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27498e-01\tAbsError: 9.16524e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20880e-04\tAbsError: 4.19369e-02\n", - " Region: \"zone_3\"\tRelError: 8.40108e-01\tAbsError: 1.32751e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49254e-01\tAbsError: 7.44002e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.85993e-02\tAbsError: 5.83511e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 6.12131e-01\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.23429e-04\tAbsError: 4.28226e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.28970e-04\tAbsError: 9.94655e+10\n", - " Region: \"zone_1\"\tRelError: 4.30793e-05\tAbsError: 4.60610e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.29469e-05\tAbsError: 6.33876e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32459e-07\tAbsError: 4.59976e-05\n", - " Region: \"zone_3\"\tRelError: 3.85891e-04\tAbsError: 9.94655e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53699e-06\tAbsError: 6.91076e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.47213e-06\tAbsError: 3.03579e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.72749e-04\tAbsError: 6.61958e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32459e-07\tAbsError: 4.59976e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 9.48982e-01\tAbsError: 5.47232e+15\n", - " Region: \"zone_1\"\tRelError: 2.62221e-01\tAbsError: 3.66128e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.62147e-01\tAbsError: 1.08344e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.42397e-05\tAbsError: 2.57784e-02\n", - " Region: \"zone_3\"\tRelError: 6.86761e-01\tAbsError: 5.47232e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.00853e-01\tAbsError: 3.04385e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.20754e-01\tAbsError: 2.42847e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 3.65080e-01\tAbsError: 1.08344e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.42397e-05\tAbsError: 2.57784e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.94222e+01\tAbsError: 1.62190e+16\n", - " Region: \"zone_1\"\tRelError: 2.76662e+01\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.76662e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.29578e-10\tAbsError: 1.49268e-07\n", - " Region: \"zone_3\"\tRelError: 1.75598e+00\tAbsError: 1.62190e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69267e-01\tAbsError: 8.18784e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.68971e-01\tAbsError: 8.03117e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.17740e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.29628e-10\tAbsError: 1.49286e-07\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.06683e-03\tAbsError: 8.40765e+11\n", - " Region: \"zone_1\"\tRelError: 1.57719e-04\tAbsError: 1.34612e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.57335e-04\tAbsError: 1.22953e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.83760e-07\tAbsError: 1.33383e-04\n", - " Region: \"zone_3\"\tRelError: 9.09114e-04\tAbsError: 8.40765e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34420e-04\tAbsError: 1.93982e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.02092e-05\tAbsError: 6.46783e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 6.94101e-04\tAbsError: 1.22991e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.83760e-07\tAbsError: 1.33383e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.91937e-01\tAbsError: 2.33353e+15\n", - " Region: \"zone_1\"\tRelError: 2.61363e-02\tAbsError: 3.15290e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.52274e-02\tAbsError: 2.65917e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.08859e-04\tAbsError: 3.15024e-01\n", - " Region: \"zone_3\"\tRelError: 2.65801e-01\tAbsError: 2.33353e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.40034e-02\tAbsError: 1.23195e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.91867e-03\tAbsError: 1.10158e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20969e-01\tAbsError: 2.95967e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.10098e-04\tAbsError: 3.15450e-01\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 9.83107e-05\tAbsError: 4.06168e+10\n", - " Region: \"zone_1\"\tRelError: 9.45774e-06\tAbsError: 5.00143e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 9.44347e-06\tAbsError: 3.76448e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42610e-08\tAbsError: 4.96378e-06\n", - " Region: \"zone_3\"\tRelError: 8.88530e-05\tAbsError: 4.06168e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.93318e-06\tAbsError: 1.44271e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.90759e-06\tAbsError: 2.61897e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 8.29979e-05\tAbsError: 3.76467e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42674e-08\tAbsError: 4.96613e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:28\u001b[0m.\u001b[1;36m022\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:28\u001b[0m.\u001b[1;36m022\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5199999999999999\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.90750e-01\tAbsError: 1.25498e+15\n", - " Region: \"zone_1\"\tRelError: 2.65651e-02\tAbsError: 1.73575e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.60656e-02\tAbsError: 3.10437e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.99465e-04\tAbsError: 1.73265e-01\n", - " Region: \"zone_3\"\tRelError: 1.64185e-01\tAbsError: 1.25498e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.97354e-02\tAbsError: 5.42826e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.67090e-02\tAbsError: 7.12158e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.72396e-02\tAbsError: 3.38175e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.00813e-04\tAbsError: 1.73727e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.57455e+00\tAbsError: 1.59389e+16\n", - " Region: \"zone_1\"\tRelError: 1.04759e+00\tAbsError: 1.06162e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04737e+00\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17045e-04\tAbsError: 7.53990e-02\n", - " Region: \"zone_3\"\tRelError: 1.52696e+00\tAbsError: 1.59389e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37511e-01\tAbsError: 7.87332e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.04735e-01\tAbsError: 8.06553e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.84502e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17045e-04\tAbsError: 7.53990e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.95550e-04\tAbsError: 1.15056e+11\n", - " Region: \"zone_1\"\tRelError: 4.39510e-05\tAbsError: 4.57599e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.38194e-05\tAbsError: 7.44278e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.31561e-07\tAbsError: 4.56855e-05\n", - " Region: \"zone_3\"\tRelError: 4.51599e-04\tAbsError: 1.15056e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.61381e-06\tAbsError: 7.84993e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.54126e-06\tAbsError: 3.65570e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.36312e-04\tAbsError: 7.77366e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.31561e-07\tAbsError: 4.56855e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.68338e-01\tAbsError: 7.28836e+14\n", - " Region: \"zone_1\"\tRelError: 4.44613e-02\tAbsError: 2.04423e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.44025e-02\tAbsError: 6.98557e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.87704e-05\tAbsError: 2.03724e-02\n", - " Region: \"zone_3\"\tRelError: 4.23877e-01\tAbsError: 7.28836e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89975e-03\tAbsError: 3.57624e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.06394e-03\tAbsError: 3.71212e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.13854e-01\tAbsError: 7.63149e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.87832e-05\tAbsError: 2.03761e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.65034e+00\tAbsError: 8.64133e+15\n", - " Region: \"zone_1\"\tRelError: 5.95619e+00\tAbsError: 4.19650e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95619e+00\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.98105e-09\tAbsError: 2.07690e-06\n", - " Region: \"zone_3\"\tRelError: 1.69415e+00\tAbsError: 8.64133e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78203e-01\tAbsError: 5.06586e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.78160e-01\tAbsError: 3.57547e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37789e-01\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.98227e-09\tAbsError: 2.07735e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.99296e-01\tAbsError: 1.91866e+14\n", - " Region: \"zone_1\"\tRelError: 8.35978e-02\tAbsError: 1.07328e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.35670e-02\tAbsError: 5.58708e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.07772e-05\tAbsError: 1.06770e-02\n", - " Region: \"zone_3\"\tRelError: 9.15698e-01\tAbsError: 1.91866e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37367e-03\tAbsError: 9.64130e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.19215e-03\tAbsError: 9.54531e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.07102e-01\tAbsError: 5.66702e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.08019e-05\tAbsError: 1.06852e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.14822e+00\tAbsError: 9.83178e+15\n", - " Region: \"zone_1\"\tRelError: 1.39457e-01\tAbsError: 7.32841e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39320e-01\tAbsError: 2.58400e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36592e-04\tAbsError: 4.74441e-02\n", - " Region: \"zone_3\"\tRelError: 1.00877e+00\tAbsError: 9.83178e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43427e-01\tAbsError: 4.83336e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.90483e-01\tAbsError: 4.99841e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74720e-01\tAbsError: 2.58193e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36592e-04\tAbsError: 4.74441e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 8.69185e-05\tAbsError: 3.95954e+10\n", - " Region: \"zone_1\"\tRelError: 7.32516e-06\tAbsError: 6.15078e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 7.30759e-06\tAbsError: 3.68566e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75656e-08\tAbsError: 6.11392e-06\n", - " Region: \"zone_3\"\tRelError: 7.95933e-05\tAbsError: 3.95954e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.79841e-06\tAbsError: 1.32431e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.77435e-06\tAbsError: 2.63522e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.40030e-05\tAbsError: 3.69064e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75729e-08\tAbsError: 6.11658e-06\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.64410e-02\tAbsError: 6.34524e+13\n", - " Region: \"zone_1\"\tRelError: 6.01943e-03\tAbsError: 8.87148e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.99386e-03\tAbsError: 6.06051e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.55757e-05\tAbsError: 8.86542e-03\n", - " Region: \"zone_3\"\tRelError: 6.04216e-02\tAbsError: 6.34524e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43427e-04\tAbsError: 3.11581e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.51084e-04\tAbsError: 3.22943e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95015e-02\tAbsError: 6.26485e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.55822e-05\tAbsError: 8.86737e-03\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:30\u001b[0m.\u001b[1;36m308\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.5399999999999999\u001b[0m\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.81068e+00\tAbsError: 9.05561e+14\n", - " Region: \"zone_1\"\tRelError: 2.99568e-01\tAbsError: 7.37289e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.99448e-01\tAbsError: 3.19527e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20214e-04\tAbsError: 4.17762e-02\n", - " Region: \"zone_3\"\tRelError: 1.51111e+00\tAbsError: 9.05561e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.56048e-01\tAbsError: 5.28816e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.42016e-01\tAbsError: 3.76745e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12929e-01\tAbsError: 3.19530e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20214e-04\tAbsError: 4.17762e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.07755e-01\tAbsError: 1.47113e+13\n", - " Region: \"zone_1\"\tRelError: 1.00932e-02\tAbsError: 5.29389e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00780e-02\tAbsError: 4.25637e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52480e-05\tAbsError: 5.28963e-03\n", - " Region: \"zone_3\"\tRelError: 9.76620e-02\tAbsError: 1.47113e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.24736e-04\tAbsError: 7.39880e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.29168e-04\tAbsError: 7.31253e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 9.69928e-02\tAbsError: 4.43112e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52510e-05\tAbsError: 5.29076e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 9.17087e-01\tAbsError: 2.70112e+15\n", - " Region: \"zone_1\"\tRelError: 4.13278e-01\tAbsError: 1.18036e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.12964e-01\tAbsError: 9.16529e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.13541e-04\tAbsError: 1.08871e-01\n", - " Region: \"zone_3\"\tRelError: 5.03809e-01\tAbsError: 2.70112e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.83333e-01\tAbsError: 1.43386e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03452e-01\tAbsError: 1.26726e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.16711e-01\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.13541e-04\tAbsError: 1.08871e-01\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.75673e-02\tAbsError: 3.32993e+13\n", - " Region: \"zone_1\"\tRelError: 3.52548e-03\tAbsError: 1.20689e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52200e-03\tAbsError: 3.09455e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.47154e-06\tAbsError: 1.20380e-03\n", - " Region: \"zone_3\"\tRelError: 3.40418e-02\tAbsError: 3.32993e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47698e-04\tAbsError: 1.63796e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.38649e-04\tAbsError: 1.69197e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.35520e-02\tAbsError: 3.11273e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.47235e-06\tAbsError: 1.20402e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.78742e+01\tAbsError: 9.05161e+15\n", - " Region: \"zone_1\"\tRelError: 1.61544e+01\tAbsError: 4.29358e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.61544e+01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.66407e-09\tAbsError: 1.96688e-06\n", - " Region: \"zone_3\"\tRelError: 1.71987e+00\tAbsError: 9.05161e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86128e-01\tAbsError: 5.27529e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.86079e-01\tAbsError: 3.77633e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.47659e-01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.66503e-09\tAbsError: 1.96717e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.20896e+00\tAbsError: 4.60776e+14\n", - " Region: \"zone_1\"\tRelError: 2.06112e-01\tAbsError: 3.40032e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06089e-01\tAbsError: 2.58357e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.35020e-05\tAbsError: 8.16746e-03\n", - " Region: \"zone_3\"\tRelError: 1.00285e+00\tAbsError: 4.60776e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.66369e-01\tAbsError: 2.23470e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.34273e-01\tAbsError: 2.37306e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02181e-01\tAbsError: 2.58939e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.35020e-05\tAbsError: 8.16746e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 7.81873e-02\tAbsError: 8.95376e+12\n", - " Region: \"zone_1\"\tRelError: 6.87545e-03\tAbsError: 6.84613e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.87348e-03\tAbsError: 2.15237e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.96616e-06\tAbsError: 6.82460e-04\n", - " Region: \"zone_3\"\tRelError: 7.13119e-02\tAbsError: 8.95376e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.99157e-04\tAbsError: 4.50662e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.97267e-04\tAbsError: 4.44714e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.09135e-02\tAbsError: 2.31794e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.96673e-06\tAbsError: 6.82681e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 4.27279e-01\tAbsError: 8.17053e+14\n", - " Region: \"zone_1\"\tRelError: 1.09940e-01\tAbsError: 2.21034e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09304e-01\tAbsError: 3.29075e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.36020e-04\tAbsError: 2.20705e-01\n", - " Region: \"zone_3\"\tRelError: 3.17339e-01\tAbsError: 8.17053e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.72653e-02\tAbsError: 1.99598e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.68899e-02\tAbsError: 6.17455e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.42547e-01\tAbsError: 3.29140e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.36020e-04\tAbsError: 2.20705e-01\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.47008e-03\tAbsError: 4.77215e+12\n", - " Region: \"zone_1\"\tRelError: 6.05494e-04\tAbsError: 5.38691e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.03946e-04\tAbsError: 4.25617e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54844e-06\tAbsError: 5.38265e-04\n", - " Region: \"zone_3\"\tRelError: 5.86458e-03\tAbsError: 4.77215e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.53153e-05\tAbsError: 2.34800e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.40122e-05\tAbsError: 2.42415e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.79371e-03\tAbsError: 4.28072e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54906e-06\tAbsError: 5.38488e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.83311e+00\tAbsError: 1.26455e+15\n", - " Region: \"zone_1\"\tRelError: 2.88937e-01\tAbsError: 7.51136e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88816e-01\tAbsError: 3.31003e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20899e-04\tAbsError: 4.20134e-02\n", - " Region: \"zone_3\"\tRelError: 1.54417e+00\tAbsError: 1.26455e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.70125e-01\tAbsError: 7.28712e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.54876e-01\tAbsError: 5.35842e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19050e-01\tAbsError: 3.31004e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20899e-04\tAbsError: 4.20134e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.81762e-01\tAbsError: 2.09056e+14\n", - " Region: \"zone_1\"\tRelError: 3.40620e-02\tAbsError: 1.59640e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.40467e-02\tAbsError: 1.06617e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52754e-05\tAbsError: 5.30228e-03\n", - " Region: \"zone_3\"\tRelError: 3.47700e-01\tAbsError: 2.09056e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14904e-01\tAbsError: 9.42359e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.79965e-02\tAbsError: 1.14820e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.47840e-02\tAbsError: 1.06618e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52847e-05\tAbsError: 5.30556e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.25385e-02\tAbsError: 1.20969e+12\n", - " Region: \"zone_1\"\tRelError: 1.11831e-03\tAbsError: 3.30063e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11736e-03\tAbsError: 2.78057e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.50037e-07\tAbsError: 3.29785e-04\n", - " Region: \"zone_3\"\tRelError: 1.14202e-02\tAbsError: 1.20969e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.69866e-05\tAbsError: 6.07592e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.67629e-05\tAbsError: 6.02095e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13655e-02\tAbsError: 3.03145e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.50221e-07\tAbsError: 3.29847e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.01035e-01\tAbsError: 1.64733e+14\n", - " Region: \"zone_1\"\tRelError: 2.03094e-01\tAbsError: 1.60100e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03048e-01\tAbsError: 7.96658e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.59052e-05\tAbsError: 1.59303e-02\n", - " Region: \"zone_3\"\tRelError: 4.97941e-01\tAbsError: 1.64733e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17881e-03\tAbsError: 7.88164e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.07895e-03\tAbsError: 8.59168e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.85637e-01\tAbsError: 8.00849e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.59052e-05\tAbsError: 1.59303e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.65398e-03\tAbsError: 2.00158e+12\n", - " Region: \"zone_1\"\tRelError: 2.48909e-04\tAbsError: 1.00808e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.48620e-04\tAbsError: 1.66964e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.89512e-07\tAbsError: 1.00641e-04\n", - " Region: \"zone_3\"\tRelError: 2.40507e-03\tAbsError: 2.00158e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50347e-05\tAbsError: 9.84888e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.44145e-05\tAbsError: 1.01669e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.37533e-03\tAbsError: 1.67974e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.89623e-07\tAbsError: 1.00681e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.16142e+00\tAbsError: 7.46156e+14\n", - " Region: \"zone_1\"\tRelError: 1.09872e-01\tAbsError: 3.44018e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09847e-01\tAbsError: 2.58558e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.45917e-05\tAbsError: 8.54603e-03\n", - " Region: \"zone_3\"\tRelError: 1.05155e+00\tAbsError: 7.46156e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89433e-01\tAbsError: 3.46738e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.51496e-01\tAbsError: 3.99417e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10596e-01\tAbsError: 2.58925e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.45917e-05\tAbsError: 8.54603e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 5.61894e-03\tAbsError: 5.53183e+11\n", - " Region: \"zone_1\"\tRelError: 4.98888e-04\tAbsError: 5.92377e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.98718e-04\tAbsError: 1.23657e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69957e-07\tAbsError: 5.91141e-05\n", - " Region: \"zone_3\"\tRelError: 5.12005e-03\tAbsError: 5.53183e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23601e-05\tAbsError: 2.78254e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.21894e-05\tAbsError: 2.74930e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.09533e-03\tAbsError: 1.34729e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70021e-07\tAbsError: 5.91367e-05\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.24336e-02\tAbsError: 3.60203e+13\n", - " Region: \"zone_1\"\tRelError: 1.30520e-02\tAbsError: 3.73274e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.30417e-02\tAbsError: 1.57108e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.02982e-05\tAbsError: 3.57563e-03\n", - " Region: \"zone_3\"\tRelError: 7.93816e-02\tAbsError: 3.60203e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.15745e-02\tAbsError: 2.04886e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.60979e-03\tAbsError: 1.55317e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11871e-02\tAbsError: 1.66755e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.02982e-05\tAbsError: 3.57563e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.04323e-01\tAbsError: 1.53102e+13\n", - " Region: \"zone_1\"\tRelError: 3.15774e-02\tAbsError: 7.15567e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.15568e-02\tAbsError: 7.10876e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.05999e-05\tAbsError: 7.14856e-03\n", - " Region: \"zone_3\"\tRelError: 7.27454e-02\tAbsError: 1.53102e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94207e-04\tAbsError: 7.65839e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.98721e-04\tAbsError: 7.65181e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.15319e-02\tAbsError: 7.17354e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.06009e-05\tAbsError: 7.14900e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 5.36228e-04\tAbsError: 3.67963e+11\n", - " Region: \"zone_1\"\tRelError: 5.03370e-05\tAbsError: 3.69568e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.02308e-05\tAbsError: 3.27141e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06219e-07\tAbsError: 3.69241e-05\n", - " Region: \"zone_3\"\tRelError: 4.85891e-04\tAbsError: 3.67963e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.74381e-06\tAbsError: 1.81082e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.63918e-06\tAbsError: 1.86881e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.80402e-04\tAbsError: 3.29054e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06263e-07\tAbsError: 3.69404e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.49598e-01\tAbsError: 3.37443e+14\n", - " Region: \"zone_1\"\tRelError: 4.08488e-02\tAbsError: 1.80805e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.08321e-02\tAbsError: 1.22656e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67328e-05\tAbsError: 5.81483e-03\n", - " Region: \"zone_3\"\tRelError: 4.08750e-01\tAbsError: 3.37443e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.41863e-01\tAbsError: 1.59086e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.25055e-01\tAbsError: 1.78357e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.18148e-02\tAbsError: 1.22657e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67328e-05\tAbsError: 5.81483e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.10979e-03\tAbsError: 9.95031e+10\n", - " Region: \"zone_1\"\tRelError: 9.87539e-05\tAbsError: 2.30772e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 9.86876e-05\tAbsError: 2.32783e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.62809e-08\tAbsError: 2.30539e-05\n", - " Region: \"zone_3\"\tRelError: 1.01104e-03\tAbsError: 9.95031e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.22367e-06\tAbsError: 4.99642e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.19804e-06\tAbsError: 4.95389e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00655e-03\tAbsError: 2.53159e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.63071e-08\tAbsError: 2.30633e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.84514e-04\tAbsError: 1.29331e+11\n", - " Region: \"zone_1\"\tRelError: 1.73204e-05\tAbsError: 7.90813e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72976e-05\tAbsError: 1.15361e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.27155e-08\tAbsError: 7.89660e-06\n", - " Region: \"zone_3\"\tRelError: 1.67193e-04\tAbsError: 1.29331e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.72276e-07\tAbsError: 6.36462e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.31421e-07\tAbsError: 6.56851e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65267e-04\tAbsError: 1.16052e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.27252e-08\tAbsError: 7.90006e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.31903e-03\tAbsError: 1.68866e+12\n", - " Region: \"zone_1\"\tRelError: 6.91359e-04\tAbsError: 2.14092e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.90749e-04\tAbsError: 2.01876e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.10224e-07\tAbsError: 2.12073e-04\n", - " Region: \"zone_3\"\tRelError: 3.62767e-03\tAbsError: 1.68866e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.43300e-04\tAbsError: 5.21952e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.49521e-04\tAbsError: 1.16671e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.23424e-03\tAbsError: 2.02414e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.10224e-07\tAbsError: 2.12073e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.82885e-02\tAbsError: 7.75343e+12\n", - " Region: \"zone_1\"\tRelError: 1.74263e-02\tAbsError: 1.11082e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74231e-02\tAbsError: 3.27682e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.18949e-06\tAbsError: 1.10754e-03\n", - " Region: \"zone_3\"\tRelError: 4.08622e-02\tAbsError: 7.75343e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.01160e-04\tAbsError: 3.88269e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.99390e-04\tAbsError: 3.87074e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.02585e-02\tAbsError: 3.34987e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.19059e-06\tAbsError: 1.10796e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.04059e-01\tAbsError: 6.56185e+13\n", - " Region: \"zone_1\"\tRelError: 1.13333e-02\tAbsError: 6.89729e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13142e-02\tAbsError: 2.55833e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91291e-05\tAbsError: 6.64145e-03\n", - " Region: \"zone_3\"\tRelError: 9.27262e-02\tAbsError: 6.56185e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.04845e-02\tAbsError: 3.55492e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.18771e-02\tAbsError: 3.00692e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03455e-02\tAbsError: 2.71121e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91291e-05\tAbsError: 6.64145e-03\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 4.02059e-04\tAbsError: 3.69694e+10\n", - " Region: \"zone_1\"\tRelError: 3.57703e-05\tAbsError: 4.89345e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.57562e-05\tAbsError: 8.81422e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.40435e-08\tAbsError: 4.88463e-06\n", - " Region: \"zone_3\"\tRelError: 3.66288e-04\tAbsError: 3.69694e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.27052e-07\tAbsError: 1.85869e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.14548e-07\tAbsError: 1.83825e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.64633e-04\tAbsError: 9.53371e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.40489e-08\tAbsError: 4.88659e-06\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 4.13464e-05\tAbsError: 2.75069e+10\n", - " Region: \"zone_1\"\tRelError: 3.88379e-06\tAbsError: 2.55222e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.87646e-06\tAbsError: 2.54121e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.33447e-09\tAbsError: 2.54968e-06\n", - " Region: \"zone_3\"\tRelError: 3.74626e-05\tAbsError: 2.75069e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05752e-07\tAbsError: 1.35376e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.97692e-07\tAbsError: 1.39693e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.70518e-05\tAbsError: 2.55608e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.33751e-09\tAbsError: 2.55078e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:37\u001b[0m.\u001b[1;36m881\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.9\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.11841e-04\tAbsError: 1.66167e+11\n", - " Region: \"zone_1\"\tRelError: 1.33942e-04\tAbsError: 1.03262e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33645e-04\tAbsError: 1.08052e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.97084e-07\tAbsError: 1.03153e-04\n", - " Region: \"zone_3\"\tRelError: 5.77899e-04\tAbsError: 1.66167e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98830e-06\tAbsError: 1.12169e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.86071e-06\tAbsError: 5.39983e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.57753e-04\tAbsError: 1.12755e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.97142e-07\tAbsError: 1.03175e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.09210e-02\tAbsError: 1.22286e+12\n", - " Region: \"zone_1\"\tRelError: 3.28469e-03\tAbsError: 4.72819e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.28333e-03\tAbsError: 4.87030e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36013e-06\tAbsError: 4.72332e-04\n", - " Region: \"zone_3\"\tRelError: 7.63634e-03\tAbsError: 1.22286e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.75678e-05\tAbsError: 6.11672e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.73305e-05\tAbsError: 6.11193e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 7.54008e-03\tAbsError: 5.02425e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36049e-06\tAbsError: 4.72455e-04\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 8.98138e-05\tAbsError: 7.83801e+09\n", - " Region: \"zone_1\"\tRelError: 7.99573e-06\tAbsError: 1.64573e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 7.99100e-06\tAbsError: 1.91199e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.72605e-09\tAbsError: 1.64382e-06\n", - " Region: \"zone_3\"\tRelError: 8.18181e-05\tAbsError: 7.83801e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.75301e-07\tAbsError: 3.93589e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.72990e-07\tAbsError: 3.90212e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 8.14650e-05\tAbsError: 2.06683e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.72787e-09\tAbsError: 1.64450e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:38\u001b[0m.\u001b[1;36m653\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:38\u001b[0m.\u001b[1;36m653\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.8388888888888889\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.70535e-03\tAbsError: 3.37743e+12\n", - " Region: \"zone_1\"\tRelError: 8.78757e-04\tAbsError: 1.91107e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 8.78217e-04\tAbsError: 3.61781e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.39528e-07\tAbsError: 1.87489e-04\n", - " Region: \"zone_3\"\tRelError: 8.82659e-03\tAbsError: 3.37743e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.29951e-04\tAbsError: 1.23275e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.83501e-04\tAbsError: 2.14468e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.11260e-03\tAbsError: 3.63680e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.39528e-07\tAbsError: 1.87489e-04\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.44352e-04\tAbsError: 9.70804e+10\n", - " Region: \"zone_1\"\tRelError: 6.34748e-05\tAbsError: 6.25238e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.34570e-05\tAbsError: 6.83828e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77679e-08\tAbsError: 6.18400e-06\n", - " Region: \"zone_3\"\tRelError: 2.80877e-04\tAbsError: 9.70804e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.02045e-06\tAbsError: 4.37083e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.97041e-06\tAbsError: 5.33721e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.68869e-04\tAbsError: 6.99248e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77753e-08\tAbsError: 6.18669e-06\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.38843e-03\tAbsError: 5.18838e+11\n", - " Region: \"zone_1\"\tRelError: 1.31867e-03\tAbsError: 9.39018e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31840e-03\tAbsError: 1.99779e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69826e-07\tAbsError: 9.37020e-05\n", - " Region: \"zone_3\"\tRelError: 3.06976e-03\tAbsError: 5.18838e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95362e-05\tAbsError: 2.68345e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.93671e-05\tAbsError: 2.50493e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.03058e-03\tAbsError: 2.07424e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69859e-07\tAbsError: 9.37138e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.18618e+01\tAbsError: 3.43486e+17\n", - " Region: \"zone_1\"\tRelError: 4.68734e+01\tAbsError: 4.09548e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.68734e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70509e-09\tAbsError: 5.92742e-07\n", - " Region: \"zone_3\"\tRelError: 1.49884e+01\tAbsError: 3.43486e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.50361e-01\tAbsError: 1.67687e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.42491e-01\tAbsError: 1.75799e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.34955e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70580e-09\tAbsError: 5.92998e-07\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.74946e-04\tAbsError: 1.17170e+11\n", - " Region: \"zone_1\"\tRelError: 2.69263e-05\tAbsError: 2.18382e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.62981e-05\tAbsError: 8.01643e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.28213e-07\tAbsError: 2.18302e-04\n", - " Region: \"zone_3\"\tRelError: 2.48020e-04\tAbsError: 1.17170e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.02611e-06\tAbsError: 9.22316e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.05400e-06\tAbsError: 2.49383e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.31311e-04\tAbsError: 8.38265e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.28213e-07\tAbsError: 2.18302e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.53041e+01\tAbsError: 1.41055e+17\n", - " Region: \"zone_1\"\tRelError: 2.16347e+01\tAbsError: 4.20730e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.16347e+01\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10269e-09\tAbsError: 3.83540e-07\n", - " Region: \"zone_3\"\tRelError: 3.66939e+00\tAbsError: 1.41055e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.74068e-01\tAbsError: 7.09895e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.71643e-01\tAbsError: 7.00658e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.12368e+00\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10312e-09\tAbsError: 3.83698e-07\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 9.50080e-04\tAbsError: 1.03863e+11\n", - " Region: \"zone_1\"\tRelError: 2.85910e-04\tAbsError: 3.37412e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.85814e-04\tAbsError: 4.14946e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.68675e-08\tAbsError: 3.36997e-05\n", - " Region: \"zone_3\"\tRelError: 6.64170e-04\tAbsError: 1.03863e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.88184e-06\tAbsError: 5.40187e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.85553e-06\tAbsError: 4.98443e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 6.56335e-04\tAbsError: 4.30256e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.69043e-08\tAbsError: 3.37128e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.84100e-05\tAbsError: 5.01231e+09\n", - " Region: \"zone_1\"\tRelError: 3.44228e-06\tAbsError: 5.53190e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.42637e-06\tAbsError: 3.08245e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59100e-08\tAbsError: 5.52882e-06\n", - " Region: \"zone_3\"\tRelError: 1.49677e-05\tAbsError: 5.01231e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.92599e-07\tAbsError: 3.85792e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.47636e-07\tAbsError: 1.15439e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.44116e-05\tAbsError: 3.20740e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59126e-08\tAbsError: 5.52983e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 6.59116e+00\tAbsError: 3.05940e+17\n", - " Region: \"zone_1\"\tRelError: 1.06162e+00\tAbsError: 1.92710e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06116e+00\tAbsError: 3.07630e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.67257e-04\tAbsError: 1.61947e-01\n", - " Region: \"zone_3\"\tRelError: 5.52954e+00\tAbsError: 3.05940e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.66708e-01\tAbsError: 1.53394e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.75609e-01\tAbsError: 1.52546e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 4.38676e+00\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.67257e-04\tAbsError: 1.61947e-01\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:40\u001b[0m.\u001b[1;36m975\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:40\u001b[0m.\u001b[1;36m975\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6249999999999999\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 7.74042e-04\tAbsError: 2.09517e+11\n", - " Region: \"zone_1\"\tRelError: 7.83547e-05\tAbsError: 6.01138e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 7.83378e-05\tAbsError: 1.34565e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.68927e-08\tAbsError: 5.87682e-06\n", - " Region: \"zone_3\"\tRelError: 6.95687e-04\tAbsError: 2.09517e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.25872e-05\tAbsError: 1.03107e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.24933e-05\tAbsError: 1.06409e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 6.70590e-04\tAbsError: 1.38390e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69000e-08\tAbsError: 5.87933e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.20501e+00\tAbsError: 1.30894e+17\n", - " Region: \"zone_1\"\tRelError: 6.01862e-01\tAbsError: 3.22703e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 6.01024e-01\tAbsError: 3.20819e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.37922e-04\tAbsError: 2.90621e-01\n", - " Region: \"zone_3\"\tRelError: 2.60314e+00\tAbsError: 1.30894e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.36510e-01\tAbsError: 6.54938e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.78597e-01\tAbsError: 6.54001e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28720e+00\tAbsError: 3.20820e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.38321e-04\tAbsError: 2.90760e-01\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 3.25927e-04\tAbsError: 3.72019e+10\n", - " Region: \"zone_1\"\tRelError: 9.80813e-05\tAbsError: 7.68282e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 9.80593e-05\tAbsError: 1.46928e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.20415e-08\tAbsError: 7.66812e-06\n", - " Region: \"zone_3\"\tRelError: 2.27846e-04\tAbsError: 3.72019e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36089e-06\tAbsError: 1.97599e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.34801e-06\tAbsError: 1.74420e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25115e-04\tAbsError: 1.52180e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.20501e-08\tAbsError: 7.67121e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 3.39017e+01\tAbsError: 1.15461e+17\n", - " Region: \"zone_1\"\tRelError: 6.40052e-01\tAbsError: 2.51200e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 6.39402e-01\tAbsError: 2.58690e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.49519e-04\tAbsError: 2.25331e-01\n", - " Region: \"zone_3\"\tRelError: 3.32617e+01\tAbsError: 1.15461e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89584e-01\tAbsError: 5.80157e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.82182e-01\tAbsError: 5.74450e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.27893e+01\tAbsError: 2.58944e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.51823e-04\tAbsError: 2.26124e-01\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.46441e+00\tAbsError: 8.83603e+15\n", - " Region: \"zone_1\"\tRelError: 3.72799e+00\tAbsError: 4.19630e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.72799e+00\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.33772e-10\tAbsError: 8.13325e-08\n", - " Region: \"zone_3\"\tRelError: 1.73642e+00\tAbsError: 8.83603e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78146e-01\tAbsError: 4.76459e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.78023e-01\tAbsError: 4.07144e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.80255e-01\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.33908e-10\tAbsError: 8.13805e-08\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 7.72661e-05\tAbsError: 8.43440e+09\n", - " Region: \"zone_1\"\tRelError: 2.32650e-05\tAbsError: 2.49052e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.32578e-05\tAbsError: 3.39814e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.14902e-09\tAbsError: 2.48712e-06\n", - " Region: \"zone_3\"\tRelError: 5.40011e-05\tAbsError: 8.43440e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.08161e-07\tAbsError: 4.47974e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.05735e-07\tAbsError: 3.95466e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 5.33800e-05\tAbsError: 3.51782e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.15190e-09\tAbsError: 2.48816e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:42\u001b[0m.\u001b[1;36m967\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.8\u001b[0m \n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.88635e-05\tAbsError: 4.66862e+09\n", - " Region: \"zone_1\"\tRelError: 4.12564e-06\tAbsError: 1.32768e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.08745e-06\tAbsError: 4.74361e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.81931e-08\tAbsError: 1.32720e-05\n", - " Region: \"zone_3\"\tRelError: 3.47379e-05\tAbsError: 4.66862e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.57140e-07\tAbsError: 1.44736e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.64945e-07\tAbsError: 3.22126e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.39776e-05\tAbsError: 4.85044e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.82079e-08\tAbsError: 1.32779e-05\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.03286e+01\tAbsError: 8.35371e+16\n", - " Region: \"zone_1\"\tRelError: 4.37153e+00\tAbsError: 9.54149e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.37133e+00\tAbsError: 2.56531e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.01186e-04\tAbsError: 6.97617e-02\n", - " Region: \"zone_3\"\tRelError: 5.95712e+00\tAbsError: 8.35371e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.11144e-01\tAbsError: 4.33513e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.36389e-01\tAbsError: 4.01858e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 5.20938e+00\tAbsError: 2.33619e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.01186e-04\tAbsError: 6.97617e-02\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:43\u001b[0m.\u001b[1;36m071\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.6499999999999999\u001b[0m\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.34480e+00\tAbsError: 1.48853e+16\n", - " Region: \"zone_1\"\tRelError: 1.80604e-01\tAbsError: 1.59400e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.80172e-01\tAbsError: 9.16501e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.31839e-04\tAbsError: 1.50235e-01\n", - " Region: \"zone_3\"\tRelError: 3.16419e+00\tAbsError: 1.48853e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.34401e-02\tAbsError: 7.53366e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.19569e-02\tAbsError: 7.35164e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 3.07837e+00\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.31839e-04\tAbsError: 1.50235e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.90553e+00\tAbsError: 4.57697e+15\n", - " Region: \"zone_1\"\tRelError: 3.76935e-01\tAbsError: 7.03446e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.76825e-01\tAbsError: 3.19526e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10488e-04\tAbsError: 3.83920e-02\n", - " Region: \"zone_3\"\tRelError: 1.52859e+00\tAbsError: 4.57697e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.54474e-01\tAbsError: 2.17150e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.27922e-01\tAbsError: 2.40547e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46086e-01\tAbsError: 3.19527e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10488e-04\tAbsError: 3.83920e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 6.45087e+00\tAbsError: 2.30680e+16\n", - " Region: \"zone_1\"\tRelError: 2.57354e+00\tAbsError: 4.22735e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.57345e+00\tAbsError: 1.08343e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.06700e-05\tAbsError: 3.14392e-02\n", - " Region: \"zone_3\"\tRelError: 3.87733e+00\tAbsError: 2.30680e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43899e-01\tAbsError: 1.15701e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.67217e-02\tAbsError: 1.14979e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.66661e+00\tAbsError: 1.08344e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.11459e-05\tAbsError: 3.16036e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.91796e+01\tAbsError: 8.00136e+16\n", - " Region: \"zone_1\"\tRelError: 1.61687e+01\tAbsError: 4.09548e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.61687e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75011e-09\tAbsError: 6.08861e-07\n", - " Region: \"zone_3\"\tRelError: 3.01093e+00\tAbsError: 8.00136e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.66958e-01\tAbsError: 4.00295e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.65547e-01\tAbsError: 3.99841e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.47843e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75082e-09\tAbsError: 6.09112e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.20708e+01\tAbsError: 9.38375e+15\n", - " Region: \"zone_1\"\tRelError: 1.03034e+01\tAbsError: 4.29349e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03034e+01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.20208e-09\tAbsError: 1.11278e-06\n", - " Region: \"zone_3\"\tRelError: 1.76735e+00\tAbsError: 9.38375e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86030e-01\tAbsError: 4.95036e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.85888e-01\tAbsError: 4.43339e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.95437e-01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.20329e-09\tAbsError: 1.11320e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 3.42204e-01\tAbsError: 1.90329e+15\n", - " Region: \"zone_1\"\tRelError: 2.01983e-02\tAbsError: 3.47392e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.91990e-02\tAbsError: 1.15001e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.99221e-04\tAbsError: 3.47277e-01\n", - " Region: \"zone_3\"\tRelError: 3.22006e-01\tAbsError: 1.90329e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.20950e-03\tAbsError: 1.00831e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03234e-03\tAbsError: 8.94978e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.11765e-01\tAbsError: 1.16357e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.99221e-04\tAbsError: 3.47277e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.14033e+00\tAbsError: 3.30058e+15\n", - " Region: \"zone_1\"\tRelError: 1.21947e-01\tAbsError: 3.16391e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21930e-01\tAbsError: 2.58447e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.66760e-05\tAbsError: 5.79442e-03\n", - " Region: \"zone_3\"\tRelError: 1.01838e+00\tAbsError: 3.30058e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.69340e-01\tAbsError: 1.51432e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.17786e-01\tAbsError: 1.78626e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31236e-01\tAbsError: 2.58752e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.66940e-05\tAbsError: 5.80079e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 4.38806e-01\tAbsError: 3.87022e+15\n", - " Region: \"zone_1\"\tRelError: 1.63483e-01\tAbsError: 3.01219e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.62614e-01\tAbsError: 2.23807e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.68652e-04\tAbsError: 3.00995e-01\n", - " Region: \"zone_3\"\tRelError: 2.75324e-01\tAbsError: 3.87022e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.53410e-02\tAbsError: 2.03279e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.51471e-03\tAbsError: 1.83742e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.41598e-01\tAbsError: 2.54619e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.70193e-04\tAbsError: 3.01518e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.23024e+00\tAbsError: 7.24788e+16\n", - " Region: \"zone_1\"\tRelError: 2.89301e-01\tAbsError: 2.81842e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88577e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.23562e-04\tAbsError: 2.51079e-01\n", - " Region: \"zone_3\"\tRelError: 2.94094e+00\tAbsError: 7.24788e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.29061e-01\tAbsError: 3.72143e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.83761e-01\tAbsError: 3.52645e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.62740e+00\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.23562e-04\tAbsError: 2.51079e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.75513e+00\tAbsError: 7.04878e+15\n", - " Region: \"zone_1\"\tRelError: 1.90080e-01\tAbsError: 7.81805e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.89950e-01\tAbsError: 3.31001e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29742e-04\tAbsError: 4.50804e-02\n", - " Region: \"zone_3\"\tRelError: 1.56505e+00\tAbsError: 7.04878e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67981e-01\tAbsError: 3.36624e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.39518e-01\tAbsError: 3.68255e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.57423e-01\tAbsError: 3.31002e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29742e-04\tAbsError: 4.50804e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.26159e-01\tAbsError: 1.60368e+15\n", - " Region: \"zone_1\"\tRelError: 2.39971e-02\tAbsError: 1.68797e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.39489e-02\tAbsError: 1.07820e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.82419e-05\tAbsError: 1.67718e-02\n", - " Region: \"zone_3\"\tRelError: 7.02162e-01\tAbsError: 1.60368e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.86883e-03\tAbsError: 7.94204e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.42424e-03\tAbsError: 8.09476e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.96821e-01\tAbsError: 1.08766e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.82636e-05\tAbsError: 1.67793e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.85130e-01\tAbsError: 1.12037e+15\n", - " Region: \"zone_1\"\tRelError: 1.02020e-01\tAbsError: 3.15185e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01960e-01\tAbsError: 1.06620e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.00273e-05\tAbsError: 2.08565e-02\n", - " Region: \"zone_3\"\tRelError: 3.83110e-01\tAbsError: 1.12037e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10094e-01\tAbsError: 5.96108e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.30728e-01\tAbsError: 5.24260e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.22285e-02\tAbsError: 1.06621e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.00273e-05\tAbsError: 2.08565e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.06928e-01\tAbsError: 9.73679e+14\n", - " Region: \"zone_1\"\tRelError: 2.09928e-01\tAbsError: 1.87261e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.09874e-01\tAbsError: 5.72449e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.38741e-05\tAbsError: 1.86688e-02\n", - " Region: \"zone_3\"\tRelError: 6.96999e-01\tAbsError: 9.73679e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.31559e-03\tAbsError: 4.72913e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.45755e-03\tAbsError: 5.00766e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.90172e-01\tAbsError: 5.76673e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.38857e-05\tAbsError: 1.86722e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.21630e+00\tAbsError: 5.18264e+15\n", - " Region: \"zone_1\"\tRelError: 1.31236e-01\tAbsError: 3.17671e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31218e-01\tAbsError: 2.57644e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72758e-05\tAbsError: 6.00278e-03\n", - " Region: \"zone_3\"\tRelError: 1.08506e+00\tAbsError: 5.18264e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.91482e-01\tAbsError: 2.47681e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.47298e-01\tAbsError: 2.70583e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46263e-01\tAbsError: 2.58377e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72758e-05\tAbsError: 6.00278e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 5.71850e+00\tAbsError: 4.10464e+16\n", - " Region: \"zone_1\"\tRelError: 1.82923e-01\tAbsError: 1.08958e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82684e-01\tAbsError: 2.58969e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.39429e-04\tAbsError: 8.30609e-02\n", - " Region: \"zone_3\"\tRelError: 5.53558e+00\tAbsError: 4.10464e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16071e-01\tAbsError: 2.08924e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.47287e-01\tAbsError: 2.01540e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.77198e+00\tAbsError: 2.46271e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.39429e-04\tAbsError: 8.30609e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.12346e-01\tAbsError: 1.08123e+14\n", - " Region: \"zone_1\"\tRelError: 3.56238e-03\tAbsError: 1.31451e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52458e-03\tAbsError: 6.36043e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.77942e-05\tAbsError: 1.31387e-02\n", - " Region: \"zone_3\"\tRelError: 1.08784e-01\tAbsError: 1.08123e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.76703e-04\tAbsError: 5.36465e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.39449e-04\tAbsError: 5.44763e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08330e-01\tAbsError: 6.41381e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.78094e-05\tAbsError: 1.31440e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.07843e-01\tAbsError: 1.90448e+14\n", - " Region: \"zone_1\"\tRelError: 6.11966e-03\tAbsError: 2.20754e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.05660e-03\tAbsError: 1.81593e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.30654e-05\tAbsError: 2.18938e-02\n", - " Region: \"zone_3\"\tRelError: 1.01724e-01\tAbsError: 1.90448e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.14668e-02\tAbsError: 1.08172e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.09051e-03\tAbsError: 8.22757e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.11035e-02\tAbsError: 1.89501e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.30654e-05\tAbsError: 2.18938e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.31957e-01\tAbsError: 8.43789e+13\n", - " Region: \"zone_1\"\tRelError: 3.05440e-02\tAbsError: 8.34398e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.05199e-02\tAbsError: 5.31132e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.40641e-05\tAbsError: 8.33867e-03\n", - " Region: \"zone_3\"\tRelError: 1.01413e-01\tAbsError: 8.43789e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.02209e-04\tAbsError: 4.12417e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.96030e-04\tAbsError: 4.31372e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00790e-01\tAbsError: 5.35042e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.40667e-05\tAbsError: 8.33926e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.06773e+00\tAbsError: 1.32751e+16\n", - " Region: \"zone_1\"\tRelError: 2.27618e-01\tAbsError: 5.11022e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27498e-01\tAbsError: 9.16524e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20880e-04\tAbsError: 4.19369e-02\n", - " Region: \"zone_3\"\tRelError: 8.40108e-01\tAbsError: 1.32751e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49254e-01\tAbsError: 7.44002e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.85993e-02\tAbsError: 5.83511e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 6.12131e-01\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.23429e-04\tAbsError: 4.28226e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.70365e-01\tAbsError: 1.98816e+15\n", - " Region: \"zone_1\"\tRelError: 1.29557e-01\tAbsError: 5.07227e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29446e-01\tAbsError: 1.22662e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10816e-04\tAbsError: 3.84565e-02\n", - " Region: \"zone_3\"\tRelError: 4.40808e-01\tAbsError: 1.98816e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.36802e-01\tAbsError: 1.06250e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.52219e-01\tAbsError: 9.25662e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.16747e-02\tAbsError: 1.22663e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11508e-04\tAbsError: 3.86954e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 8.36096e-02\tAbsError: 8.44228e+13\n", - " Region: \"zone_1\"\tRelError: 2.87350e-03\tAbsError: 1.23009e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.86998e-03\tAbsError: 4.23325e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.52636e-06\tAbsError: 1.22586e-03\n", - " Region: \"zone_3\"\tRelError: 8.07361e-02\tAbsError: 8.44228e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46087e-04\tAbsError: 4.18513e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.25646e-04\tAbsError: 4.25715e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.04608e-02\tAbsError: 4.27186e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.52783e-06\tAbsError: 1.22636e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.56387e-02\tAbsError: 1.09978e+13\n", - " Region: \"zone_1\"\tRelError: 2.87891e-03\tAbsError: 1.99562e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.87836e-03\tAbsError: 9.37283e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.46509e-07\tAbsError: 1.90190e-04\n", - " Region: \"zone_3\"\tRelError: 3.27598e-02\tAbsError: 1.09978e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.61573e-04\tAbsError: 4.35709e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.74651e-04\tAbsError: 6.64069e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.11230e-02\tAbsError: 9.56491e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.46810e-07\tAbsError: 1.90300e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 7.58172e-02\tAbsError: 4.70890e+13\n", - " Region: \"zone_1\"\tRelError: 1.84006e-02\tAbsError: 1.09588e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.83975e-02\tAbsError: 2.80956e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.15379e-06\tAbsError: 1.09307e-03\n", - " Region: \"zone_3\"\tRelError: 5.74166e-02\tAbsError: 4.70890e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.82887e-04\tAbsError: 2.29491e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.70413e-04\tAbsError: 2.41400e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.70602e-02\tAbsError: 2.83263e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.15436e-06\tAbsError: 1.09324e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.91937e-01\tAbsError: 2.33353e+15\n", - " Region: \"zone_1\"\tRelError: 2.61363e-02\tAbsError: 3.15290e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.52274e-02\tAbsError: 2.65917e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.08859e-04\tAbsError: 3.15024e-01\n", - " Region: \"zone_3\"\tRelError: 2.65801e-01\tAbsError: 2.33353e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.40034e-02\tAbsError: 1.23195e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.91867e-03\tAbsError: 1.10158e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20969e-01\tAbsError: 2.95967e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.10098e-04\tAbsError: 3.15450e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.63797e-01\tAbsError: 3.64765e+14\n", - " Region: \"zone_1\"\tRelError: 1.74354e-02\tAbsError: 3.39678e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.73383e-02\tAbsError: 2.51825e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.71283e-05\tAbsError: 3.37160e-02\n", - " Region: \"zone_3\"\tRelError: 1.46362e-01\tAbsError: 3.64765e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.05471e-02\tAbsError: 2.16352e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.33909e-02\tAbsError: 1.48413e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.23269e-02\tAbsError: 2.62821e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.71283e-05\tAbsError: 3.37160e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.36875e-02\tAbsError: 9.69294e+12\n", - " Region: \"zone_1\"\tRelError: 4.70501e-04\tAbsError: 6.20216e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.68718e-04\tAbsError: 4.28680e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.78298e-06\tAbsError: 6.19787e-04\n", - " Region: \"zone_3\"\tRelError: 1.32170e-02\tAbsError: 9.69294e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.60935e-05\tAbsError: 4.80983e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.36870e-05\tAbsError: 4.88312e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31854e-02\tAbsError: 4.32490e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.78363e-06\tAbsError: 6.20008e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.52637e-04\tAbsError: 2.13154e+11\n", - " Region: \"zone_1\"\tRelError: 3.74653e-05\tAbsError: 7.19007e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.53962e-05\tAbsError: 1.60128e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.06907e-06\tAbsError: 7.18847e-04\n", - " Region: \"zone_3\"\tRelError: 4.15172e-04\tAbsError: 2.13154e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13844e-05\tAbsError: 1.35579e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.84410e-06\tAbsError: 7.75754e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.96874e-04\tAbsError: 1.62368e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.06909e-06\tAbsError: 7.18866e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.28991e-02\tAbsError: 6.60678e+12\n", - " Region: \"zone_1\"\tRelError: 3.14837e-03\tAbsError: 5.03566e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.14692e-03\tAbsError: 3.73976e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.44792e-06\tAbsError: 5.03192e-04\n", - " Region: \"zone_3\"\tRelError: 9.75070e-03\tAbsError: 6.60678e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52961e-05\tAbsError: 3.21691e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.35828e-05\tAbsError: 3.38987e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 9.70037e-03\tAbsError: 3.77067e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.44848e-06\tAbsError: 5.03396e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.68338e-01\tAbsError: 7.28836e+14\n", - " Region: \"zone_1\"\tRelError: 4.44613e-02\tAbsError: 2.04423e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.44025e-02\tAbsError: 6.98557e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.87704e-05\tAbsError: 2.03724e-02\n", - " Region: \"zone_3\"\tRelError: 4.23877e-01\tAbsError: 7.28836e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89975e-03\tAbsError: 3.57624e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.06394e-03\tAbsError: 3.71212e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.13854e-01\tAbsError: 7.63149e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.87832e-05\tAbsError: 2.03761e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.80286e-02\tAbsError: 1.80043e+13\n", - " Region: \"zone_1\"\tRelError: 5.97130e-03\tAbsError: 5.99908e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.96961e-03\tAbsError: 1.31746e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.68890e-06\tAbsError: 5.86733e-04\n", - " Region: \"zone_3\"\tRelError: 5.20573e-02\tAbsError: 1.80043e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.22256e-03\tAbsError: 7.89900e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.11166e-03\tAbsError: 1.01053e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.97214e-02\tAbsError: 1.37677e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.68890e-06\tAbsError: 5.86733e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 6.63798e-03\tAbsError: 4.90503e+12\n", - " Region: \"zone_1\"\tRelError: 2.29406e-04\tAbsError: 9.25474e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29140e-04\tAbsError: 1.97212e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.66464e-07\tAbsError: 9.23502e-05\n", - " Region: \"zone_3\"\tRelError: 6.40857e-03\tAbsError: 4.90503e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.34900e-06\tAbsError: 2.43347e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32522e-06\tAbsError: 2.47155e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 6.39263e-03\tAbsError: 1.99078e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.66498e-07\tAbsError: 9.23593e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.83484e-03\tAbsError: 6.93273e+11\n", - " Region: \"zone_1\"\tRelError: 2.36858e-04\tAbsError: 3.83858e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.36749e-04\tAbsError: 3.60825e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.09532e-07\tAbsError: 3.80250e-05\n", - " Region: \"zone_3\"\tRelError: 2.59798e-03\tAbsError: 6.93273e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.53173e-05\tAbsError: 3.50881e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.52173e-05\tAbsError: 3.42392e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.52733e-03\tAbsError: 3.77534e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.09545e-07\tAbsError: 3.80301e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 5.38897e-03\tAbsError: 2.84599e+12\n", - " Region: \"zone_1\"\tRelError: 1.32294e-03\tAbsError: 9.22092e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.32267e-03\tAbsError: 1.50402e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.64893e-07\tAbsError: 9.20588e-05\n", - " Region: \"zone_3\"\tRelError: 4.06603e-03\tAbsError: 2.84599e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10980e-05\tAbsError: 1.38588e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03237e-05\tAbsError: 1.46010e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.04435e-03\tAbsError: 1.51704e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.64994e-07\tAbsError: 9.20962e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.64410e-02\tAbsError: 6.34524e+13\n", - " Region: \"zone_1\"\tRelError: 6.01943e-03\tAbsError: 8.87148e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.99386e-03\tAbsError: 6.06051e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.55757e-05\tAbsError: 8.86542e-03\n", - " Region: \"zone_3\"\tRelError: 6.04216e-02\tAbsError: 6.34524e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43427e-04\tAbsError: 3.11581e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.51084e-04\tAbsError: 3.22943e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95015e-02\tAbsError: 6.26485e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.55822e-05\tAbsError: 8.86737e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.25648e-03\tAbsError: 7.75715e+11\n", - " Region: \"zone_1\"\tRelError: 4.35799e-05\tAbsError: 3.84452e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.34694e-05\tAbsError: 2.84735e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10539e-07\tAbsError: 3.84167e-05\n", - " Region: \"zone_3\"\tRelError: 1.21290e-03\tAbsError: 7.75715e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28473e-06\tAbsError: 3.85060e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.13479e-06\tAbsError: 3.90655e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21037e-03\tAbsError: 2.87358e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10581e-07\tAbsError: 3.84313e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.25730e-04\tAbsError: 4.09198e+11\n", - " Region: \"zone_1\"\tRelError: 8.09639e-05\tAbsError: 1.05680e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.79223e-05\tAbsError: 2.31215e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.04151e-06\tAbsError: 1.05657e-03\n", - " Region: \"zone_3\"\tRelError: 6.44766e-04\tAbsError: 4.09198e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.69437e-05\tAbsError: 3.66831e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.46261e-05\tAbsError: 4.23676e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 6.00155e-04\tAbsError: 2.35772e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.04158e-06\tAbsError: 1.05661e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.07375e-03\tAbsError: 5.13009e+11\n", - " Region: \"zone_1\"\tRelError: 2.64555e-04\tAbsError: 3.43938e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.64456e-04\tAbsError: 2.89234e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.88826e-08\tAbsError: 3.43649e-05\n", - " Region: \"zone_3\"\tRelError: 8.09198e-04\tAbsError: 5.13009e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97594e-06\tAbsError: 2.49726e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.84609e-06\tAbsError: 2.63282e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 8.05277e-04\tAbsError: 2.91353e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.89231e-08\tAbsError: 3.43800e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.37341e-04\tAbsError: 3.67215e+10\n", - " Region: \"zone_1\"\tRelError: 2.00671e-05\tAbsError: 4.45514e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.99390e-05\tAbsError: 2.32701e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.28158e-07\tAbsError: 4.45281e-05\n", - " Region: \"zone_3\"\tRelError: 2.17274e-04\tAbsError: 3.67215e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11511e-06\tAbsError: 1.73467e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.13991e-06\tAbsError: 1.93748e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.12891e-04\tAbsError: 2.42196e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.28207e-07\tAbsError: 4.45452e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 4.79935e-04\tAbsError: 3.06765e+11\n", - " Region: \"zone_1\"\tRelError: 1.66486e-05\tAbsError: 7.60779e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66267e-05\tAbsError: 1.06336e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18595e-08\tAbsError: 7.59715e-06\n", - " Region: \"zone_3\"\tRelError: 4.63286e-04\tAbsError: 3.06765e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.16909e-07\tAbsError: 1.52260e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.59699e-07\tAbsError: 1.54505e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.62288e-04\tAbsError: 1.07353e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18679e-08\tAbsError: 7.60017e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.75673e-02\tAbsError: 3.32993e+13\n", - " Region: \"zone_1\"\tRelError: 3.52548e-03\tAbsError: 1.20689e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52200e-03\tAbsError: 3.09455e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.47154e-06\tAbsError: 1.20380e-03\n", - " Region: \"zone_3\"\tRelError: 3.40418e-02\tAbsError: 3.32993e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47698e-04\tAbsError: 1.63796e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.38649e-04\tAbsError: 1.69197e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.35520e-02\tAbsError: 3.11273e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.47235e-06\tAbsError: 1.20402e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.50762e-03\tAbsError: 1.02667e+12\n", - " Region: \"zone_1\"\tRelError: 4.77667e-04\tAbsError: 4.19184e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.77548e-04\tAbsError: 5.13940e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19272e-07\tAbsError: 4.14045e-05\n", - " Region: \"zone_3\"\tRelError: 4.02995e-03\tAbsError: 1.02667e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.92271e-05\tAbsError: 5.17713e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.89991e-05\tAbsError: 5.08953e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.93161e-03\tAbsError: 5.31847e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19272e-07\tAbsError: 4.14045e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 3.74423e-04\tAbsError: 1.83514e+11\n", - " Region: \"zone_1\"\tRelError: 9.24322e-05\tAbsError: 7.24007e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 9.24114e-05\tAbsError: 1.03473e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.08025e-08\tAbsError: 7.22972e-06\n", - " Region: \"zone_3\"\tRelError: 2.81991e-04\tAbsError: 1.83514e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.14280e-07\tAbsError: 8.93421e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.65006e-07\tAbsError: 9.41716e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.80591e-04\tAbsError: 1.04236e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.08113e-08\tAbsError: 7.23287e-06\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.03654e-04\tAbsError: 4.37520e+10\n", - " Region: \"zone_1\"\tRelError: 1.71235e-05\tAbsError: 5.08015e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.71089e-05\tAbsError: 2.09274e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.45611e-08\tAbsError: 5.05922e-06\n", - " Region: \"zone_3\"\tRelError: 1.86531e-04\tAbsError: 4.37520e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.15573e-06\tAbsError: 2.46704e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.14884e-06\tAbsError: 1.90816e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82212e-04\tAbsError: 2.21547e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.45654e-08\tAbsError: 5.06071e-06\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.01824e-04\tAbsError: 5.91028e+10\n", - " Region: \"zone_1\"\tRelError: 3.53926e-06\tAbsError: 2.67115e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.53158e-06\tAbsError: 2.19844e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.67947e-09\tAbsError: 2.66896e-06\n", - " Region: \"zone_3\"\tRelError: 9.82849e-05\tAbsError: 5.91028e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.78782e-08\tAbsError: 2.93440e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.77169e-08\tAbsError: 2.97588e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 9.80917e-05\tAbsError: 2.22202e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.68243e-09\tAbsError: 2.67005e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.47008e-03\tAbsError: 4.77215e+12\n", - " Region: \"zone_1\"\tRelError: 6.05494e-04\tAbsError: 5.38691e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.03946e-04\tAbsError: 4.25617e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54844e-06\tAbsError: 5.38265e-04\n", - " Region: \"zone_3\"\tRelError: 5.86458e-03\tAbsError: 4.77215e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.53153e-05\tAbsError: 2.34800e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.40122e-05\tAbsError: 2.42415e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.79371e-03\tAbsError: 4.28072e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54906e-06\tAbsError: 5.38488e-04\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 8.29193e-05\tAbsError: 3.84339e+10\n", - " Region: \"zone_1\"\tRelError: 2.05031e-05\tAbsError: 2.36410e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.04963e-05\tAbsError: 2.24932e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.79589e-09\tAbsError: 2.36186e-06\n", - " Region: \"zone_3\"\tRelError: 6.24162e-05\tAbsError: 3.84339e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.48397e-07\tAbsError: 1.87077e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.38686e-07\tAbsError: 1.97262e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 6.21223e-05\tAbsError: 2.26557e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.79872e-09\tAbsError: 2.36287e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.87878e-04\tAbsError: 3.71113e+10\n", - " Region: \"zone_1\"\tRelError: 3.08061e-05\tAbsError: 6.36156e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.06230e-05\tAbsError: 2.65699e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83040e-07\tAbsError: 6.35890e-05\n", - " Region: \"zone_3\"\tRelError: 2.57072e-04\tAbsError: 3.71113e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17303e-06\tAbsError: 1.49809e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.20928e-06\tAbsError: 2.21304e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.52507e-04\tAbsError: 2.72049e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83108e-07\tAbsError: 6.36126e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:56\u001b[0m.\u001b[1;36m115\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:56\u001b[0m.\u001b[1;36m115\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.9444444444444445\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.86300e-05\tAbsError: 4.83981e+09\n", - " Region: \"zone_1\"\tRelError: 2.42070e-06\tAbsError: 3.03673e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.41197e-06\tAbsError: 2.59560e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.73266e-09\tAbsError: 3.03413e-06\n", - " Region: \"zone_3\"\tRelError: 2.62093e-05\tAbsError: 4.83981e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.54983e-07\tAbsError: 2.76736e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.56118e-07\tAbsError: 2.07245e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.56894e-05\tAbsError: 2.72893e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.73423e-09\tAbsError: 3.03468e-06\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 3.38300e-05\tAbsError: 2.01418e+10\n", - " Region: \"zone_1\"\tRelError: 1.17571e-06\tAbsError: 5.87640e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17402e-06\tAbsError: 7.44968e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.68869e-09\tAbsError: 5.86895e-07\n", - " Region: \"zone_3\"\tRelError: 3.26543e-05\tAbsError: 2.01418e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.37367e-08\tAbsError: 9.99956e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.02428e-08\tAbsError: 1.01422e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.25886e-05\tAbsError: 7.53080e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.68939e-09\tAbsError: 5.87154e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:56\u001b[0m.\u001b[1;36m557\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:56\u001b[0m.\u001b[1;36m557\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7299999999999999\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:56\u001b[0m.\u001b[1;36m645\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 1.0\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.65398e-03\tAbsError: 2.00158e+12\n", - " Region: \"zone_1\"\tRelError: 2.48909e-04\tAbsError: 1.00808e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.48620e-04\tAbsError: 1.66964e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.89512e-07\tAbsError: 1.00641e-04\n", - " Region: \"zone_3\"\tRelError: 2.40507e-03\tAbsError: 2.00158e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50347e-05\tAbsError: 9.84888e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.44145e-05\tAbsError: 1.01669e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.37533e-03\tAbsError: 1.67974e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.89623e-07\tAbsError: 1.00681e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 3.15874e-04\tAbsError: 6.29994e+10\n", - " Region: \"zone_1\"\tRelError: 3.36655e-05\tAbsError: 6.22152e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.36476e-05\tAbsError: 2.89646e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.78252e-08\tAbsError: 6.19255e-06\n", - " Region: \"zone_3\"\tRelError: 2.82208e-04\tAbsError: 6.29994e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.92738e-06\tAbsError: 3.54342e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.90850e-06\tAbsError: 2.75653e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.76354e-04\tAbsError: 2.97673e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.78310e-08\tAbsError: 6.19458e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.70881e+01\tAbsError: 6.50862e+17\n", - " Region: \"zone_1\"\tRelError: 2.91488e+01\tAbsError: 4.20730e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.91488e+01\tAbsError: 4.20725e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.56065e-09\tAbsError: 5.42392e-07\n", - " Region: \"zone_3\"\tRelError: 4.79392e+01\tAbsError: 6.50862e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.42560e-01\tAbsError: 3.17361e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.28573e-01\tAbsError: 3.33501e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 4.64681e+01\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.56130e-09\tAbsError: 5.42626e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.28636e+01\tAbsError: 2.51540e+16\n", - " Region: \"zone_1\"\tRelError: 1.10662e+01\tAbsError: 4.19634e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10662e+01\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43744e-09\tAbsError: 4.99432e-07\n", - " Region: \"zone_3\"\tRelError: 1.79735e+00\tAbsError: 2.51540e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77566e-01\tAbsError: 1.26366e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.77157e-01\tAbsError: 1.25173e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.42624e-01\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43763e-09\tAbsError: 4.99500e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.07845e+03\tAbsError: 1.16809e+18\n", - " Region: \"zone_1\"\tRelError: 2.98806e+02\tAbsError: 4.09541e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.98806e+02\tAbsError: 4.09540e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.33797e-10\tAbsError: 1.85521e-07\n", - " Region: \"zone_3\"\tRelError: 7.79646e+02\tAbsError: 1.16809e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90701e-01\tAbsError: 5.74604e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.65642e-01\tAbsError: 5.93489e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 7.78290e+02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.34021e-10\tAbsError: 1.85602e-07\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 5.36228e-04\tAbsError: 3.67963e+11\n", - " Region: \"zone_1\"\tRelError: 5.03370e-05\tAbsError: 3.69568e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.02308e-05\tAbsError: 3.27141e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06219e-07\tAbsError: 3.69241e-05\n", - " Region: \"zone_3\"\tRelError: 4.85891e-04\tAbsError: 3.67963e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.74381e-06\tAbsError: 1.81082e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.63918e-06\tAbsError: 1.86881e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.80402e-04\tAbsError: 3.29054e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06263e-07\tAbsError: 3.69404e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.92670e-05\tAbsError: 5.95026e+09\n", - " Region: \"zone_1\"\tRelError: 4.20495e-06\tAbsError: 4.23098e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.19278e-06\tAbsError: 3.10942e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.21699e-08\tAbsError: 4.22787e-06\n", - " Region: \"zone_3\"\tRelError: 3.50620e-05\tAbsError: 5.95026e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.01282e-07\tAbsError: 3.34783e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.02333e-07\tAbsError: 2.60243e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.44462e-05\tAbsError: 3.17149e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.21718e-08\tAbsError: 4.22856e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:29:58\u001b[0m.\u001b[1;36m698\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.7599999999999999\u001b[0m\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.53936e+01\tAbsError: 4.63574e+17\n", - " Region: \"zone_1\"\tRelError: 1.68382e+01\tAbsError: 5.87381e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.68366e+01\tAbsError: 3.20816e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59994e-03\tAbsError: 5.55300e-01\n", - " Region: \"zone_3\"\tRelError: 8.55548e+00\tAbsError: 4.63574e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.36996e-01\tAbsError: 2.31508e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.17433e-01\tAbsError: 2.32066e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 7.49945e+00\tAbsError: 3.20820e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60182e-03\tAbsError: 5.55931e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.78042e+00\tAbsError: 2.62146e+16\n", - " Region: \"zone_1\"\tRelError: 2.05146e-01\tAbsError: 1.39912e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.04835e-01\tAbsError: 3.19524e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.10831e-04\tAbsError: 1.07960e-01\n", - " Region: \"zone_3\"\tRelError: 1.57527e+00\tAbsError: 2.62146e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.51357e-01\tAbsError: 1.30522e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.18341e-01\tAbsError: 1.31624e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.05264e-01\tAbsError: 3.19525e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.10831e-04\tAbsError: 1.07960e-01\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.84514e-04\tAbsError: 1.29331e+11\n", - " Region: \"zone_1\"\tRelError: 1.73204e-05\tAbsError: 7.90813e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72976e-05\tAbsError: 1.15361e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.27155e-08\tAbsError: 7.89660e-06\n", - " Region: \"zone_3\"\tRelError: 1.67193e-04\tAbsError: 1.29331e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.72276e-07\tAbsError: 6.36462e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.31421e-07\tAbsError: 6.56851e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65267e-04\tAbsError: 1.16052e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.27252e-08\tAbsError: 7.90006e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.95227e+03\tAbsError: 4.47180e+17\n", - " Region: \"zone_1\"\tRelError: 5.95735e+02\tAbsError: 1.32695e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95731e+02\tAbsError: 3.07627e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.72641e-03\tAbsError: 1.29619e+00\n", - " Region: \"zone_3\"\tRelError: 2.35653e+03\tAbsError: 4.47180e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.30389e-01\tAbsError: 2.23868e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.07870e-01\tAbsError: 2.23312e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 2.35569e+03\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.72703e-03\tAbsError: 1.29643e+00\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.31912e+00\tAbsError: 1.05474e+17\n", - " Region: \"zone_1\"\tRelError: 3.16376e+00\tAbsError: 1.80141e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.16331e+00\tAbsError: 2.58274e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.43672e-04\tAbsError: 1.54313e-01\n", - " Region: \"zone_3\"\tRelError: 6.15536e+00\tAbsError: 1.05474e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38445e-01\tAbsError: 5.28833e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.41911e-01\tAbsError: 5.25905e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 5.77456e+00\tAbsError: 2.58274e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.43863e-04\tAbsError: 1.54374e-01\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.89989e+01\tAbsError: 3.92698e+16\n", - " Region: \"zone_1\"\tRelError: 8.71579e+01\tAbsError: 4.29344e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.71579e+01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83834e-09\tAbsError: 6.38649e-07\n", - " Region: \"zone_3\"\tRelError: 1.84091e+00\tAbsError: 3.92698e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.85132e-01\tAbsError: 1.95208e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.84546e-01\tAbsError: 1.97490e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.71236e-01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83857e-09\tAbsError: 6.38730e-07\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 4.13464e-05\tAbsError: 2.75069e+10\n", - " Region: \"zone_1\"\tRelError: 3.88379e-06\tAbsError: 2.55222e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.87646e-06\tAbsError: 2.54121e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.33447e-09\tAbsError: 2.54968e-06\n", - " Region: \"zone_3\"\tRelError: 3.74626e-05\tAbsError: 2.75069e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05752e-07\tAbsError: 1.35376e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.97692e-07\tAbsError: 1.39693e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.70518e-05\tAbsError: 2.55608e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.33751e-09\tAbsError: 2.55078e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:00\u001b[0m.\u001b[1;36m915\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.9\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.52969e+00\tAbsError: 1.69120e+16\n", - " Region: \"zone_1\"\tRelError: 2.50790e-01\tAbsError: 9.45900e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.50592e-01\tAbsError: 2.58713e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.97890e-04\tAbsError: 6.87187e-02\n", - " Region: \"zone_3\"\tRelError: 1.27890e+00\tAbsError: 1.69120e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.64432e-01\tAbsError: 8.40128e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.11936e-01\tAbsError: 8.51077e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 4.02336e-01\tAbsError: 2.52194e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.97890e-04\tAbsError: 6.87187e-02\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 8.37720e+02\tAbsError: 8.62713e+16\n", - " Region: \"zone_1\"\tRelError: 6.83172e+02\tAbsError: 5.09423e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 6.83170e+02\tAbsError: 2.58987e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39194e-03\tAbsError: 4.83524e-01\n", - " Region: \"zone_3\"\tRelError: 1.54548e+02\tAbsError: 8.62713e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27446e-01\tAbsError: 4.32970e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.20316e-02\tAbsError: 4.29743e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.54357e+02\tAbsError: 2.58982e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39675e-03\tAbsError: 4.85195e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.33136e+00\tAbsError: 4.26102e+16\n", - " Region: \"zone_1\"\tRelError: 7.03868e-01\tAbsError: 1.89183e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 7.03418e-01\tAbsError: 3.31000e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.49500e-04\tAbsError: 1.56083e-01\n", - " Region: \"zone_3\"\tRelError: 1.62750e+00\tAbsError: 4.26102e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.64246e-01\tAbsError: 2.11454e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.28205e-01\tAbsError: 2.14648e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.34596e-01\tAbsError: 3.31000e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.49500e-04\tAbsError: 1.56083e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.00195e+02\tAbsError: 1.20830e+16\n", - " Region: \"zone_1\"\tRelError: 1.86371e+00\tAbsError: 2.42851e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86304e+00\tAbsError: 1.08339e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.68777e-04\tAbsError: 2.32017e-01\n", - " Region: \"zone_3\"\tRelError: 9.83312e+01\tAbsError: 1.20830e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.72462e-02\tAbsError: 6.06999e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.40219e-02\tAbsError: 6.01304e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.82793e+01\tAbsError: 1.08344e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.69062e-04\tAbsError: 2.32109e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 9.03245e-01\tAbsError: 5.18936e+15\n", - " Region: \"zone_1\"\tRelError: 2.71832e-01\tAbsError: 3.50455e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.71762e-01\tAbsError: 1.06614e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.02213e-05\tAbsError: 2.43841e-02\n", - " Region: \"zone_3\"\tRelError: 6.31413e-01\tAbsError: 5.18936e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98887e-01\tAbsError: 2.86107e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.19458e-01\tAbsError: 2.32829e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 3.12998e-01\tAbsError: 1.06615e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.02213e-05\tAbsError: 2.43841e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 6.13777e+02\tAbsError: 9.41150e+15\n", - " Region: \"zone_1\"\tRelError: 7.34943e+01\tAbsError: 1.74710e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 7.34894e+01\tAbsError: 9.16455e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.95952e-03\tAbsError: 1.73794e+00\n", - " Region: \"zone_3\"\tRelError: 5.40283e+02\tAbsError: 9.41150e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.82819e-02\tAbsError: 3.95531e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.70902e-02\tAbsError: 5.45619e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.40223e+02\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.96820e-03\tAbsError: 1.74101e+00\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.18618e+01\tAbsError: 3.43486e+17\n", - " Region: \"zone_1\"\tRelError: 4.68734e+01\tAbsError: 4.09548e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.68734e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70509e-09\tAbsError: 5.92742e-07\n", - " Region: \"zone_3\"\tRelError: 1.49884e+01\tAbsError: 3.43486e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.50361e-01\tAbsError: 1.67687e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.42491e-01\tAbsError: 1.75799e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.34955e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70580e-09\tAbsError: 5.92998e-07\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.45670e-01\tAbsError: 1.26540e+15\n", - " Region: \"zone_1\"\tRelError: 3.11411e-02\tAbsError: 1.07400e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.08323e-02\tAbsError: 1.56334e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.08810e-04\tAbsError: 1.07385e-01\n", - " Region: \"zone_3\"\tRelError: 9.14528e-01\tAbsError: 1.26540e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.37147e-03\tAbsError: 6.61259e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.87047e-04\tAbsError: 6.04144e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.11261e-01\tAbsError: 1.60143e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.08810e-04\tAbsError: 1.07385e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 3.78831e+00\tAbsError: 2.78341e+16\n", - " Region: \"zone_1\"\tRelError: 1.69902e-01\tAbsError: 1.09102e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.69661e-01\tAbsError: 2.55696e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.40621e-04\tAbsError: 8.35322e-02\n", - " Region: \"zone_3\"\tRelError: 3.61840e+00\tAbsError: 2.78341e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.81251e-01\tAbsError: 1.38039e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.31150e-01\tAbsError: 1.40303e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.70576e+00\tAbsError: 2.44241e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.40621e-04\tAbsError: 8.35322e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.76534e-01\tAbsError: 1.17369e+15\n", - " Region: \"zone_1\"\tRelError: 1.69600e-02\tAbsError: 1.69700e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.64717e-02\tAbsError: 3.03978e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.88294e-04\tAbsError: 1.69396e-01\n", - " Region: \"zone_3\"\tRelError: 1.59574e-01\tAbsError: 1.17369e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.93455e-02\tAbsError: 4.91766e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.63740e-02\tAbsError: 6.81925e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.33645e-02\tAbsError: 3.31356e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.89669e-04\tAbsError: 1.69868e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.16806e+01\tAbsError: 1.22386e+16\n", - " Region: \"zone_1\"\tRelError: 5.81165e+00\tAbsError: 2.01324e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.80588e+00\tAbsError: 6.99078e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.77633e-03\tAbsError: 2.01254e+00\n", - " Region: \"zone_3\"\tRelError: 5.86896e+00\tAbsError: 1.22386e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.88114e-02\tAbsError: 5.53671e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.06848e-02\tAbsError: 6.70184e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.80368e+00\tAbsError: 7.04147e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.78367e-03\tAbsError: 2.01512e+00\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 6.59116e+00\tAbsError: 3.05940e+17\n", - " Region: \"zone_1\"\tRelError: 1.06162e+00\tAbsError: 1.92710e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06116e+00\tAbsError: 3.07630e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.67257e-04\tAbsError: 1.61947e-01\n", - " Region: \"zone_3\"\tRelError: 5.52954e+00\tAbsError: 3.05940e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.66708e-01\tAbsError: 1.53394e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.75609e-01\tAbsError: 1.52546e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 4.38676e+00\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.67257e-04\tAbsError: 1.61947e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.55882e-01\tAbsError: 5.19874e+14\n", - " Region: \"zone_1\"\tRelError: 5.38620e-02\tAbsError: 1.20803e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.38586e-02\tAbsError: 3.11909e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.38226e-06\tAbsError: 1.17683e-03\n", - " Region: \"zone_3\"\tRelError: 5.02020e-01\tAbsError: 5.19874e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.56161e-04\tAbsError: 2.58405e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.64452e-04\tAbsError: 2.61469e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.00896e-01\tAbsError: 3.14682e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.38459e-06\tAbsError: 1.17764e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.38718e+01\tAbsError: 9.28637e+15\n", - " Region: \"zone_1\"\tRelError: 7.88025e+00\tAbsError: 6.96344e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.88008e+00\tAbsError: 1.22653e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.65287e-04\tAbsError: 5.73691e-02\n", - " Region: \"zone_3\"\tRelError: 5.99160e+00\tAbsError: 9.28637e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.18748e-01\tAbsError: 4.98903e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.31602e-01\tAbsError: 4.29734e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.64108e+00\tAbsError: 1.22654e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.65287e-04\tAbsError: 5.73691e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.46015e-01\tAbsError: 1.80032e+14\n", - " Region: \"zone_1\"\tRelError: 9.75495e-02\tAbsError: 1.04545e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.75195e-02\tAbsError: 5.53506e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.99752e-05\tAbsError: 1.03991e-02\n", - " Region: \"zone_3\"\tRelError: 7.48465e-01\tAbsError: 1.80032e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33637e-03\tAbsError: 9.04288e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.16174e-03\tAbsError: 8.96033e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.39937e-01\tAbsError: 5.59249e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.99992e-05\tAbsError: 1.04072e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.44367e+01\tAbsError: 1.02259e+16\n", - " Region: \"zone_1\"\tRelError: 4.22055e+01\tAbsError: 1.45859e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.22051e+01\tAbsError: 5.71640e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.16833e-04\tAbsError: 1.45287e-01\n", - " Region: \"zone_3\"\tRelError: 4.22312e+01\tAbsError: 1.02259e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97020e-02\tAbsError: 4.95775e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.96648e-03\tAbsError: 5.26817e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 4.22051e+01\tAbsError: 5.76213e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.17002e-04\tAbsError: 1.45346e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 3.39017e+01\tAbsError: 1.15461e+17\n", - " Region: \"zone_1\"\tRelError: 6.40052e-01\tAbsError: 2.51200e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 6.39402e-01\tAbsError: 2.58690e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.49519e-04\tAbsError: 2.25331e-01\n", - " Region: \"zone_3\"\tRelError: 3.32617e+01\tAbsError: 1.15461e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89584e-01\tAbsError: 5.80157e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.82182e-01\tAbsError: 5.74450e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.27893e+01\tAbsError: 2.58944e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.51823e-04\tAbsError: 2.26124e-01\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.90203e-02\tAbsError: 8.57664e+12\n", - " Region: \"zone_1\"\tRelError: 6.51163e-04\tAbsError: 3.92189e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.39892e-04\tAbsError: 6.62870e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12712e-05\tAbsError: 3.92123e-03\n", - " Region: \"zone_3\"\tRelError: 1.83691e-02\tAbsError: 8.57664e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.99766e-05\tAbsError: 4.26406e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.25376e-05\tAbsError: 4.31258e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82453e-02\tAbsError: 6.67022e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12760e-05\tAbsError: 3.92281e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.77662e-01\tAbsError: 2.06585e+15\n", - " Region: \"zone_1\"\tRelError: 4.30114e-01\tAbsError: 2.03900e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.29527e-01\tAbsError: 3.53307e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.86951e-04\tAbsError: 2.03546e-01\n", - " Region: \"zone_3\"\tRelError: 4.47548e-01\tAbsError: 2.06585e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.13163e-02\tAbsError: 1.09818e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.86137e-02\tAbsError: 9.67666e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.67030e-01\tAbsError: 3.88113e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.87978e-04\tAbsError: 2.03897e-01\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 9.34138e-02\tAbsError: 1.37807e+13\n", - " Region: \"zone_1\"\tRelError: 1.18515e-02\tAbsError: 5.19856e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18366e-02\tAbsError: 4.20470e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.49728e-05\tAbsError: 5.19436e-03\n", - " Region: \"zone_3\"\tRelError: 8.15623e-02\tAbsError: 1.37807e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.21884e-04\tAbsError: 6.93208e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.26229e-04\tAbsError: 6.84861e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.08992e-02\tAbsError: 4.35810e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.49755e-05\tAbsError: 5.19537e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.49604e+00\tAbsError: 9.70392e+14\n", - " Region: \"zone_1\"\tRelError: 3.74605e+00\tAbsError: 7.97463e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.74582e+00\tAbsError: 4.64021e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28718e-04\tAbsError: 7.96999e-02\n", - " Region: \"zone_3\"\tRelError: 3.74999e+00\tAbsError: 9.70392e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.58316e-03\tAbsError: 4.83793e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.36045e-03\tAbsError: 4.86599e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.74582e+00\tAbsError: 4.67428e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28813e-04\tAbsError: 7.97327e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.34480e+00\tAbsError: 1.48853e+16\n", - " Region: \"zone_1\"\tRelError: 1.80604e-01\tAbsError: 1.59400e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.80172e-01\tAbsError: 9.16501e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.31839e-04\tAbsError: 1.50235e-01\n", - " Region: \"zone_3\"\tRelError: 3.16419e+00\tAbsError: 1.48853e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.34401e-02\tAbsError: 7.53366e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.19569e-02\tAbsError: 7.35164e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 3.07837e+00\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.31839e-04\tAbsError: 1.50235e-01\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.42229e-02\tAbsError: 2.62107e+13\n", - " Region: \"zone_1\"\tRelError: 9.63183e-04\tAbsError: 1.99796e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.62612e-04\tAbsError: 1.17402e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.70933e-07\tAbsError: 1.98622e-04\n", - " Region: \"zone_3\"\tRelError: 5.32597e-02\tAbsError: 2.62107e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91026e-05\tAbsError: 1.30391e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.35312e-05\tAbsError: 1.31716e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.32065e-02\tAbsError: 1.18451e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.71166e-07\tAbsError: 1.98702e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.53636e-01\tAbsError: 3.08501e+14\n", - " Region: \"zone_1\"\tRelError: 3.98620e-02\tAbsError: 1.23082e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.98267e-02\tAbsError: 5.75296e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.53250e-05\tAbsError: 1.22507e-02\n", - " Region: \"zone_3\"\tRelError: 8.13774e-01\tAbsError: 3.08501e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.49398e-03\tAbsError: 1.56170e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.26463e-03\tAbsError: 1.52331e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.04980e-01\tAbsError: 6.04070e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.53536e-05\tAbsError: 1.22608e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 6.68389e-02\tAbsError: 8.42161e+12\n", - " Region: \"zone_1\"\tRelError: 8.05486e-03\tAbsError: 6.74002e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 8.05293e-03\tAbsError: 2.14389e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93552e-06\tAbsError: 6.71858e-04\n", - " Region: \"zone_3\"\tRelError: 5.87840e-02\tAbsError: 8.42161e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97849e-04\tAbsError: 4.23824e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.96209e-04\tAbsError: 4.18336e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.83880e-02\tAbsError: 2.29466e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93608e-06\tAbsError: 6.72072e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 9.26745e+00\tAbsError: 5.14481e+14\n", - " Region: \"zone_1\"\tRelError: 8.59152e+00\tAbsError: 9.35409e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 8.59150e+00\tAbsError: 2.29233e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.68516e-05\tAbsError: 9.33117e-03\n", - " Region: \"zone_3\"\tRelError: 6.75929e-01\tAbsError: 5.14481e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.99602e-04\tAbsError: 2.56366e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.52414e-04\tAbsError: 2.58114e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.74650e-01\tAbsError: 2.31041e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.68516e-05\tAbsError: 9.33117e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 3.42204e-01\tAbsError: 1.90329e+15\n", - " Region: \"zone_1\"\tRelError: 2.01983e-02\tAbsError: 3.47392e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.91990e-02\tAbsError: 1.15001e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.99221e-04\tAbsError: 3.47277e-01\n", - " Region: \"zone_3\"\tRelError: 3.22006e-01\tAbsError: 1.90329e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.20950e-03\tAbsError: 1.00831e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03234e-03\tAbsError: 8.94978e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.11765e-01\tAbsError: 1.16357e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.99221e-04\tAbsError: 3.47277e-01\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 5.30116e-03\tAbsError: 1.65033e+12\n", - " Region: \"zone_1\"\tRelError: 9.08964e-05\tAbsError: 1.77648e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.03860e-05\tAbsError: 7.18800e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.10472e-07\tAbsError: 1.77577e-04\n", - " Region: \"zone_3\"\tRelError: 5.21027e-03\tAbsError: 1.65033e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.07855e-06\tAbsError: 8.21862e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.94019e-06\tAbsError: 8.28472e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.20274e-03\tAbsError: 7.24579e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.10652e-07\tAbsError: 1.77639e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 9.89484e-02\tAbsError: 2.22861e+13\n", - " Region: \"zone_1\"\tRelError: 5.09435e-03\tAbsError: 5.93418e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.07725e-03\tAbsError: 4.26347e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70993e-05\tAbsError: 5.92992e-03\n", - " Region: \"zone_3\"\tRelError: 9.38540e-02\tAbsError: 2.22861e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.12518e-04\tAbsError: 1.13121e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.19708e-04\tAbsError: 1.09740e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.32047e-02\tAbsError: 4.58383e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71053e-05\tAbsError: 5.93209e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.07664e-02\tAbsError: 1.13884e+12\n", - " Region: \"zone_1\"\tRelError: 1.31333e-03\tAbsError: 3.25313e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31239e-03\tAbsError: 2.77300e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.36318e-07\tAbsError: 3.25036e-04\n", - " Region: \"zone_3\"\tRelError: 9.45302e-03\tAbsError: 1.13884e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.68360e-05\tAbsError: 5.72049e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.66458e-05\tAbsError: 5.66790e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 9.39861e-03\tAbsError: 3.00400e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.36507e-07\tAbsError: 3.25102e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.48030e+01\tAbsError: 7.19505e+13\n", - " Region: \"zone_1\"\tRelError: 1.40655e+01\tAbsError: 3.86191e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40655e+01\tAbsError: 2.84880e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11050e-05\tAbsError: 3.85906e-03\n", - " Region: \"zone_3\"\tRelError: 7.37529e-01\tAbsError: 7.19505e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38672e-04\tAbsError: 3.58470e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.21484e-04\tAbsError: 3.61036e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.37257e-01\tAbsError: 2.87067e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11068e-05\tAbsError: 3.85947e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.26159e-01\tAbsError: 1.60368e+15\n", - " Region: \"zone_1\"\tRelError: 2.39971e-02\tAbsError: 1.68797e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.39489e-02\tAbsError: 1.07820e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.82419e-05\tAbsError: 1.67718e-02\n", - " Region: \"zone_3\"\tRelError: 7.02162e-01\tAbsError: 1.60368e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.86883e-03\tAbsError: 7.94204e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.42424e-03\tAbsError: 8.09476e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.96821e-01\tAbsError: 1.08766e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.82636e-05\tAbsError: 1.67793e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.02475e-03\tAbsError: 1.45063e+12\n", - " Region: \"zone_1\"\tRelError: 6.82332e-05\tAbsError: 1.85610e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.81798e-05\tAbsError: 5.23725e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.33733e-08\tAbsError: 1.85086e-05\n", - " Region: \"zone_3\"\tRelError: 3.95652e-03\tAbsError: 1.45063e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.55532e-06\tAbsError: 7.22108e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.33185e-06\tAbsError: 7.28517e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.95357e-03\tAbsError: 5.28441e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.33816e-08\tAbsError: 1.85110e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 7.00709e-02\tAbsError: 1.40239e+13\n", - " Region: \"zone_1\"\tRelError: 5.03970e-03\tAbsError: 7.16974e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.03764e-03\tAbsError: 2.12927e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.06030e-06\tAbsError: 7.14844e-04\n", - " Region: \"zone_3\"\tRelError: 6.50312e-02\tAbsError: 1.40239e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.99984e-04\tAbsError: 7.11157e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.96186e-04\tAbsError: 6.91232e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 6.46330e-02\tAbsError: 2.37452e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.06089e-06\tAbsError: 7.15072e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.82197e-03\tAbsError: 5.21696e+11\n", - " Region: \"zone_1\"\tRelError: 5.86077e-04\tAbsError: 5.83701e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.85910e-04\tAbsError: 1.23649e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67458e-07\tAbsError: 5.82464e-05\n", - " Region: \"zone_3\"\tRelError: 4.23589e-03\tAbsError: 5.21696e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23100e-05\tAbsError: 2.62384e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.21550e-05\tAbsError: 2.59312e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.21126e-03\tAbsError: 1.33690e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67522e-07\tAbsError: 5.82688e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.47896e+00\tAbsError: 2.94682e+13\n", - " Region: \"zone_1\"\tRelError: 1.24509e+00\tAbsError: 6.95816e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.24509e+00\tAbsError: 1.07735e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.99937e-06\tAbsError: 6.94739e-04\n", - " Region: \"zone_3\"\tRelError: 2.33869e-01\tAbsError: 2.94682e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.81392e-05\tAbsError: 1.46808e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.76977e-05\tAbsError: 1.47873e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.33792e-01\tAbsError: 1.08579e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.99953e-06\tAbsError: 6.95001e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.12346e-01\tAbsError: 1.08123e+14\n", - " Region: \"zone_1\"\tRelError: 3.56238e-03\tAbsError: 1.31451e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52458e-03\tAbsError: 6.36043e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.77942e-05\tAbsError: 1.31387e-02\n", - " Region: \"zone_3\"\tRelError: 1.08784e-01\tAbsError: 1.08123e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.76703e-04\tAbsError: 5.36465e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.39449e-04\tAbsError: 5.44763e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08330e-01\tAbsError: 6.41381e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.78094e-05\tAbsError: 1.31440e-02\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 5.73035e-04\tAbsError: 1.62179e+11\n", - " Region: \"zone_1\"\tRelError: 9.76105e-06\tAbsError: 1.05558e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 9.73070e-06\tAbsError: 5.56147e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.03448e-08\tAbsError: 1.05503e-05\n", - " Region: \"zone_3\"\tRelError: 5.63274e-04\tAbsError: 1.62179e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13645e-07\tAbsError: 8.07775e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.43383e-07\tAbsError: 8.14013e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.62786e-04\tAbsError: 5.60872e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.03562e-08\tAbsError: 1.05543e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.09197e-02\tAbsError: 1.80216e+12\n", - " Region: \"zone_1\"\tRelError: 8.53563e-04\tAbsError: 3.58810e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 8.52532e-04\tAbsError: 2.71616e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.03105e-06\tAbsError: 3.58539e-04\n", - " Region: \"zone_3\"\tRelError: 1.00661e-02\tAbsError: 1.80216e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.57850e-05\tAbsError: 9.11943e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.53850e-05\tAbsError: 8.90217e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00139e-02\tAbsError: 2.97011e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.03144e-06\tAbsError: 3.58676e-04\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 9.54183e-04\tAbsError: 9.39667e+10\n", - " Region: \"zone_1\"\tRelError: 1.16209e-04\tAbsError: 2.27557e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16144e-04\tAbsError: 2.33029e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.53549e-08\tAbsError: 2.27324e-05\n", - " Region: \"zone_3\"\tRelError: 8.37974e-04\tAbsError: 9.39667e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21772e-06\tAbsError: 4.71829e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.19489e-06\tAbsError: 4.67838e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 8.33496e-04\tAbsError: 2.51571e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.53810e-08\tAbsError: 2.27417e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.23148e-01\tAbsError: 5.24321e+12\n", - " Region: \"zone_1\"\tRelError: 2.61296e-01\tAbsError: 2.47766e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.61295e-01\tAbsError: 1.83418e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.11380e-07\tAbsError: 2.47583e-04\n", - " Region: \"zone_3\"\tRelError: 6.18518e-02\tAbsError: 5.24321e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94642e-06\tAbsError: 2.61290e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.40186e-06\tAbsError: 2.63031e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 6.18338e-02\tAbsError: 1.85316e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.11644e-07\tAbsError: 2.47677e-04\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 2.77942e-04\tAbsError: 8.68011e+10\n", - " Region: \"zone_1\"\tRelError: 4.71672e-06\tAbsError: 1.67033e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.71193e-06\tAbsError: 2.72076e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.79630e-09\tAbsError: 1.66761e-06\n", - " Region: \"zone_3\"\tRelError: 2.73225e-04\tAbsError: 8.68011e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.10687e-08\tAbsError: 4.32250e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.08382e-08\tAbsError: 4.35761e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.73048e-04\tAbsError: 2.75222e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.79812e-09\tAbsError: 1.66827e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 8.36096e-02\tAbsError: 8.44228e+13\n", - " Region: \"zone_1\"\tRelError: 2.87350e-03\tAbsError: 1.23009e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.86998e-03\tAbsError: 4.23325e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.52636e-06\tAbsError: 1.22586e-03\n", - " Region: \"zone_3\"\tRelError: 8.07361e-02\tAbsError: 8.44228e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46087e-04\tAbsError: 4.18513e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.25646e-04\tAbsError: 4.25715e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.04608e-02\tAbsError: 4.27186e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.52783e-06\tAbsError: 1.22636e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 5.01199e-03\tAbsError: 8.44881e+11\n", - " Region: \"zone_1\"\tRelError: 4.01242e-04\tAbsError: 6.23400e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.01063e-04\tAbsError: 1.18119e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.78932e-07\tAbsError: 6.22219e-05\n", - " Region: \"zone_3\"\tRelError: 4.61074e-03\tAbsError: 8.44881e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.21066e-05\tAbsError: 4.28039e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.18113e-05\tAbsError: 4.16842e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.58665e-03\tAbsError: 1.34568e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.79002e-07\tAbsError: 6.22472e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 3.45938e-04\tAbsError: 3.49606e+10\n", - " Region: \"zone_1\"\tRelError: 4.21268e-05\tAbsError: 4.83279e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.21129e-05\tAbsError: 8.82724e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.38687e-08\tAbsError: 4.82397e-06\n", - " Region: \"zone_3\"\tRelError: 3.03811e-04\tAbsError: 3.49606e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.25886e-07\tAbsError: 1.75745e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.14419e-07\tAbsError: 1.73861e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.02157e-04\tAbsError: 9.47988e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.38741e-08\tAbsError: 4.82591e-06\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 9.77270e-02\tAbsError: 1.82347e+12\n", - " Region: \"zone_1\"\tRelError: 7.65024e-02\tAbsError: 5.28468e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.65022e-02\tAbsError: 6.24160e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.51664e-07\tAbsError: 5.27844e-05\n", - " Region: \"zone_3\"\tRelError: 2.12246e-02\tAbsError: 1.82347e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11287e-06\tAbsError: 9.08701e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.75258e-06\tAbsError: 9.14773e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.12196e-02\tAbsError: 6.30788e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.51721e-07\tAbsError: 5.28055e-05\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 4.94184e-05\tAbsError: 1.34670e+10\n", - " Region: \"zone_1\"\tRelError: 8.40757e-07\tAbsError: 7.04798e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 8.38731e-07\tAbsError: 4.68512e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.02577e-09\tAbsError: 7.04330e-07\n", - " Region: \"zone_3\"\tRelError: 4.85777e-05\tAbsError: 1.34670e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.35642e-08\tAbsError: 6.71456e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.87779e-08\tAbsError: 6.75244e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 4.85433e-05\tAbsError: 4.73582e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.02653e-09\tAbsError: 7.04612e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:13\u001b[0m.\u001b[1;36m621\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: 1.05\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.36875e-02\tAbsError: 9.69294e+12\n", - " Region: \"zone_1\"\tRelError: 4.70501e-04\tAbsError: 6.20216e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.68718e-04\tAbsError: 4.28680e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.78298e-06\tAbsError: 6.19787e-04\n", - " Region: \"zone_3\"\tRelError: 1.32170e-02\tAbsError: 9.69294e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.60935e-05\tAbsError: 4.80983e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.36870e-05\tAbsError: 4.88312e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31854e-02\tAbsError: 4.32490e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.78363e-06\tAbsError: 6.20008e-04\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 9.60700e-04\tAbsError: 1.46526e+11\n", - " Region: \"zone_1\"\tRelError: 8.00160e-05\tAbsError: 2.47424e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.99449e-05\tAbsError: 2.16238e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.10889e-08\tAbsError: 2.47208e-05\n", - " Region: \"zone_3\"\tRelError: 8.80684e-04\tAbsError: 1.46526e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10027e-06\tAbsError: 7.40950e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.05550e-06\tAbsError: 7.24314e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 8.76457e-04\tAbsError: 2.44043e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.11163e-08\tAbsError: 2.47310e-05\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 7.73949e-05\tAbsError: 7.42262e+09\n", - " Region: \"zone_1\"\tRelError: 9.43065e-06\tAbsError: 1.62687e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 9.42598e-06\tAbsError: 1.91720e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.67168e-09\tAbsError: 1.62495e-06\n", - " Region: \"zone_3\"\tRelError: 6.79643e-05\tAbsError: 7.42262e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.75307e-07\tAbsError: 3.72700e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.73213e-07\tAbsError: 3.69562e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 6.76111e-05\tAbsError: 2.05805e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.67347e-09\tAbsError: 1.62561e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:14\u001b[0m.\u001b[1;36m484\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:14\u001b[0m.\u001b[1;36m484\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.8349999999999999\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 2.05494e-02\tAbsError: 3.74583e+11\n", - " Region: \"zone_1\"\tRelError: 1.55447e-02\tAbsError: 1.67716e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55447e-02\tAbsError: 1.38057e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.81497e-08\tAbsError: 1.67577e-05\n", - " Region: \"zone_3\"\tRelError: 5.00469e-03\tAbsError: 3.74583e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.90614e-07\tAbsError: 1.86695e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.85333e-07\tAbsError: 1.87888e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.00347e-03\tAbsError: 1.39492e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.81681e-08\tAbsError: 1.67646e-05\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.39678e+02\tAbsError: 1.67099e+18\n", - " Region: \"zone_1\"\tRelError: 2.95195e+02\tAbsError: 4.20724e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.95195e+02\tAbsError: 4.20722e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.86327e-10\tAbsError: 1.34320e-07\n", - " Region: \"zone_3\"\tRelError: 4.44483e+02\tAbsError: 1.67099e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67379e-01\tAbsError: 8.29298e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.42234e-01\tAbsError: 8.41690e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 4.43174e+02\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.86484e-10\tAbsError: 1.34379e-07\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 3.52484e-04\tAbsError: 5.50892e+10\n", - " Region: \"zone_1\"\tRelError: 2.94784e-05\tAbsError: 5.09771e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.94637e-05\tAbsError: 8.23414e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.46357e-08\tAbsError: 5.08948e-06\n", - " Region: \"zone_3\"\tRelError: 3.23006e-04\tAbsError: 5.50892e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.90399e-07\tAbsError: 2.78906e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69285e-07\tAbsError: 2.71986e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.21431e-04\tAbsError: 9.35507e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.46414e-08\tAbsError: 5.09161e-06\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 6.63798e-03\tAbsError: 4.90503e+12\n", - " Region: \"zone_1\"\tRelError: 2.29406e-04\tAbsError: 9.25474e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29140e-04\tAbsError: 1.97212e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.66464e-07\tAbsError: 9.23502e-05\n", - " Region: \"zone_3\"\tRelError: 6.40857e-03\tAbsError: 4.90503e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.34900e-06\tAbsError: 2.43347e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32522e-06\tAbsError: 2.47155e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 6.39263e-03\tAbsError: 1.99078e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.66498e-07\tAbsError: 9.23593e-05\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 6.14058e-03\tAbsError: 1.17501e+11\n", - " Region: \"zone_1\"\tRelError: 4.56971e-03\tAbsError: 3.83354e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.56970e-03\tAbsError: 4.25999e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10026e-08\tAbsError: 3.82928e-06\n", - " Region: \"zone_3\"\tRelError: 1.57087e-03\tAbsError: 1.17501e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.29368e-07\tAbsError: 5.85629e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.92613e-07\tAbsError: 5.89376e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.57054e-03\tAbsError: 4.30497e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10071e-08\tAbsError: 3.83095e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.31978e+02\tAbsError: 1.33287e+17\n", - " Region: \"zone_1\"\tRelError: 1.28982e+02\tAbsError: 4.19633e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28982e+02\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.09159e-09\tAbsError: 3.79687e-07\n", - " Region: \"zone_3\"\tRelError: 2.99611e+00\tAbsError: 1.33287e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.73467e-01\tAbsError: 6.69941e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.71171e-01\tAbsError: 6.62930e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.45147e+00\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.09201e-09\tAbsError: 3.79842e-07\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 7.69368e-05\tAbsError: 1.13679e+10\n", - " Region: \"zone_1\"\tRelError: 6.56115e-06\tAbsError: 1.72638e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.55620e-06\tAbsError: 1.74878e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.95947e-09\tAbsError: 1.72463e-06\n", - " Region: \"zone_3\"\tRelError: 7.03756e-05\tAbsError: 1.13679e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.63070e-07\tAbsError: 5.74763e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.59111e-07\tAbsError: 5.62023e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 7.00485e-05\tAbsError: 1.97676e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.96153e-09\tAbsError: 1.72539e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 9.17485e+03\tAbsError: 5.47115e+17\n", - " Region: \"zone_1\"\tRelError: 2.18779e+03\tAbsError: 1.36667e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18779e+03\tAbsError: 3.20813e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.83162e-03\tAbsError: 1.33458e+00\n", - " Region: \"zone_3\"\tRelError: 6.98706e+03\tAbsError: 5.47115e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.79834e-01\tAbsError: 2.74671e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.70195e-01\tAbsError: 2.72444e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 6.98631e+03\tAbsError: 3.20820e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.83194e-03\tAbsError: 1.33471e+00\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:16\u001b[0m.\u001b[1;36m588\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.8699999999999999\u001b[0m\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.25648e-03\tAbsError: 7.75715e+11\n", - " Region: \"zone_1\"\tRelError: 4.35799e-05\tAbsError: 3.84452e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.34694e-05\tAbsError: 2.84735e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10539e-07\tAbsError: 3.84167e-05\n", - " Region: \"zone_3\"\tRelError: 1.21290e-03\tAbsError: 7.75715e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28473e-06\tAbsError: 3.85060e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.13479e-06\tAbsError: 3.90655e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21037e-03\tAbsError: 2.87358e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10581e-07\tAbsError: 3.84313e-05\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 1.39778e-03\tAbsError: 2.64036e+10\n", - " Region: \"zone_1\"\tRelError: 1.02275e-03\tAbsError: 1.13260e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02274e-03\tAbsError: 9.95943e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.25141e-09\tAbsError: 1.13160e-06\n", - " Region: \"zone_3\"\tRelError: 3.75036e-04\tAbsError: 2.64036e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.18289e-08\tAbsError: 1.31607e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.84989e-08\tAbsError: 1.32430e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.74952e-04\tAbsError: 1.00632e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.25274e-09\tAbsError: 1.13210e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.22611e+00\tAbsError: 1.23916e+17\n", - " Region: \"zone_1\"\tRelError: 4.14026e-01\tAbsError: 3.41273e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.13134e-01\tAbsError: 3.19524e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.91880e-04\tAbsError: 3.09320e-01\n", - " Region: \"zone_3\"\tRelError: 2.81209e+00\tAbsError: 1.23916e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.35108e-01\tAbsError: 6.21305e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.82507e-01\tAbsError: 6.17855e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49358e+00\tAbsError: 3.19525e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.92062e-04\tAbsError: 3.09391e-01\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 4.79935e-04\tAbsError: 3.06765e+11\n", - " Region: \"zone_1\"\tRelError: 1.66486e-05\tAbsError: 7.60779e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66267e-05\tAbsError: 1.06336e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18595e-08\tAbsError: 7.59715e-06\n", - " Region: \"zone_3\"\tRelError: 4.63286e-04\tAbsError: 3.06765e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.16909e-07\tAbsError: 1.52260e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.59699e-07\tAbsError: 1.54505e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.62288e-04\tAbsError: 1.07353e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18679e-08\tAbsError: 7.60017e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.17043e+01\tAbsError: 7.44954e+16\n", - " Region: \"zone_1\"\tRelError: 5.01901e+00\tAbsError: 1.18236e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.01570e+00\tAbsError: 2.58768e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.31341e-03\tAbsError: 1.15648e+00\n", - " Region: \"zone_3\"\tRelError: 1.66853e+01\tAbsError: 7.44954e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.76333e-02\tAbsError: 3.73658e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.69573e-02\tAbsError: 3.71296e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65274e+01\tAbsError: 2.58764e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.31557e-03\tAbsError: 1.15724e+00\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 3.99448e-04\tAbsError: 7.75693e+09\n", - " Region: \"zone_1\"\tRelError: 2.89402e-04\tAbsError: 2.71336e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.89401e-04\tAbsError: 2.89100e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.78779e-10\tAbsError: 2.71047e-07\n", - " Region: \"zone_3\"\tRelError: 1.10046e-04\tAbsError: 7.75693e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.37898e-09\tAbsError: 3.86636e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.32737e-08\tAbsError: 3.89057e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10023e-04\tAbsError: 2.92143e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.79099e-10\tAbsError: 2.71163e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.71728e+01\tAbsError: 2.16638e+17\n", - " Region: \"zone_1\"\tRelError: 7.39288e+01\tAbsError: 4.29342e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.39288e+01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13253e-09\tAbsError: 3.93831e-07\n", - " Region: \"zone_3\"\tRelError: 3.24399e+00\tAbsError: 2.16638e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77741e-01\tAbsError: 1.09826e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.73975e-01\tAbsError: 1.06812e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.69227e+00\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13300e-09\tAbsError: 3.94006e-07\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 4.47158e+00\tAbsError: 7.88995e+16\n", - " Region: \"zone_1\"\tRelError: 1.34999e+00\tAbsError: 6.46481e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.34987e+00\tAbsError: 2.58848e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11783e-04\tAbsError: 3.87633e-02\n", - " Region: \"zone_3\"\tRelError: 3.12159e+00\tAbsError: 7.88995e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.13314e-01\tAbsError: 4.06991e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.32402e-01\tAbsError: 3.82004e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.37577e+00\tAbsError: 2.35961e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11783e-04\tAbsError: 3.87633e-02\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.01824e-04\tAbsError: 5.91028e+10\n", - " Region: \"zone_1\"\tRelError: 3.53926e-06\tAbsError: 2.67115e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.53158e-06\tAbsError: 2.19844e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.67947e-09\tAbsError: 2.66896e-06\n", - " Region: \"zone_3\"\tRelError: 9.82849e-05\tAbsError: 5.91028e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.78782e-08\tAbsError: 2.93440e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.77169e-08\tAbsError: 2.97588e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 9.80917e-05\tAbsError: 2.22202e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.68243e-09\tAbsError: 2.67005e-06\n", - "Iteration: 16\n", - " Device: \"device\"\tRelError: 9.59511e-05\tAbsError: 1.84384e+09\n", - " Region: \"zone_1\"\tRelError: 6.90144e-05\tAbsError: 7.66547e-08\n", - " Equation: \"PotentialEquation\"\tRelError: 6.90142e-05\tAbsError: 7.02485e-11\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.20044e-10\tAbsError: 7.65844e-08\n", - " Region: \"zone_3\"\tRelError: 2.69367e-05\tAbsError: 1.84384e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12306e-09\tAbsError: 9.19074e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.38040e-09\tAbsError: 9.24762e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.69310e-05\tAbsError: 7.09816e-11\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.20135e-10\tAbsError: 7.66170e-08\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.78002e+01\tAbsError: 8.01808e+15\n", - " Region: \"zone_1\"\tRelError: 2.60361e+00\tAbsError: 5.73745e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.60200e+00\tAbsError: 1.08334e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60640e-03\tAbsError: 5.62912e-01\n", - " Region: \"zone_3\"\tRelError: 5.51966e+01\tAbsError: 8.01808e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77531e-03\tAbsError: 4.02252e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.25608e-03\tAbsError: 3.99556e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.51829e+01\tAbsError: 1.08344e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60715e-03\tAbsError: 5.63172e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.60960e+01\tAbsError: 2.20431e+17\n", - " Region: \"zone_1\"\tRelError: 1.14074e+01\tAbsError: 3.26419e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14065e+01\tAbsError: 3.30999e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.46053e-04\tAbsError: 2.93319e-01\n", - " Region: \"zone_3\"\tRelError: 4.68862e+00\tAbsError: 2.20431e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.34214e-01\tAbsError: 1.10721e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.64986e-01\tAbsError: 1.09710e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 3.38857e+00\tAbsError: 3.31000e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.46053e-04\tAbsError: 2.93319e-01\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 3.38300e-05\tAbsError: 2.01418e+10\n", - " Region: \"zone_1\"\tRelError: 1.17571e-06\tAbsError: 5.87640e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17402e-06\tAbsError: 7.44968e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.68869e-09\tAbsError: 5.86895e-07\n", - " Region: \"zone_3\"\tRelError: 3.26543e-05\tAbsError: 2.01418e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.37367e-08\tAbsError: 9.99956e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.02428e-08\tAbsError: 1.01422e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.25886e-05\tAbsError: 7.53080e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.68939e-09\tAbsError: 5.87154e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:20\u001b[0m.\u001b[1;36m270\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 1.0\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.57821e+00\tAbsError: 2.26810e+16\n", - " Region: \"zone_1\"\tRelError: 1.10562e+00\tAbsError: 4.94572e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10550e+00\tAbsError: 1.06613e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11893e-04\tAbsError: 3.87959e-02\n", - " Region: \"zone_3\"\tRelError: 1.47260e+00\tAbsError: 2.26810e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46329e-01\tAbsError: 1.16259e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.92250e-02\tAbsError: 1.10551e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.25693e+00\tAbsError: 1.06615e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12202e-04\tAbsError: 3.89055e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.57894e+00\tAbsError: 9.76840e+15\n", - " Region: \"zone_1\"\tRelError: 1.52646e-01\tAbsError: 1.16652e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49306e-01\tAbsError: 2.40793e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.33941e-03\tAbsError: 1.16628e+00\n", - " Region: \"zone_3\"\tRelError: 8.42629e+00\tAbsError: 9.76840e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.37382e-02\tAbsError: 4.38141e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.76399e-03\tAbsError: 5.38699e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.39645e+00\tAbsError: 2.43323e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.34128e-03\tAbsError: 1.16694e+00\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.25243e+01\tAbsError: 1.27893e+17\n", - " Region: \"zone_1\"\tRelError: 2.94369e+00\tAbsError: 9.88622e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.94348e+00\tAbsError: 2.55597e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.11253e-04\tAbsError: 7.33026e-02\n", - " Region: \"zone_3\"\tRelError: 9.58059e+00\tAbsError: 1.27893e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.94923e-01\tAbsError: 6.46615e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.04853e-01\tAbsError: 6.32319e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 8.88060e+00\tAbsError: 2.58610e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.11292e-04\tAbsError: 7.33127e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:21\u001b[0m.\u001b[1;36m527\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:21\u001b[0m.\u001b[1;36m552\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.25 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:21\u001b[0m.\u001b[1;36m582\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.57775e-01\tAbsError: 3.80409e+15\n", - " Region: \"zone_1\"\tRelError: 1.14600e-01\tAbsError: 3.02181e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13729e-01\tAbsError: 2.30820e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.71391e-04\tAbsError: 3.01951e-01\n", - " Region: \"zone_3\"\tRelError: 4.31748e-02\tAbsError: 3.80409e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.65260e-02\tAbsError: 1.99925e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69056e-03\tAbsError: 1.80483e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.08532e-03\tAbsError: 2.62542e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.72885e-04\tAbsError: 3.02457e-01\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.07845e+03\tAbsError: 1.16809e+18\n", - " Region: \"zone_1\"\tRelError: 2.98806e+02\tAbsError: 4.09541e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.98806e+02\tAbsError: 4.09540e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.33797e-10\tAbsError: 1.85521e-07\n", - " Region: \"zone_3\"\tRelError: 7.79646e+02\tAbsError: 1.16809e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90701e-01\tAbsError: 5.74604e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.65642e-01\tAbsError: 5.93489e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 7.78290e+02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.34021e-10\tAbsError: 1.85602e-07\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.44817e+00\tAbsError: 6.71157e+15\n", - " Region: \"zone_1\"\tRelError: 2.31265e+00\tAbsError: 5.95526e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.31248e+00\tAbsError: 3.11631e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69588e-04\tAbsError: 5.92410e-02\n", - " Region: \"zone_3\"\tRelError: 2.13552e+00\tAbsError: 6.71157e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19978e-02\tAbsError: 3.26746e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.65453e-03\tAbsError: 3.44411e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.12070e+00\tAbsError: 3.13893e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69665e-04\tAbsError: 5.92680e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.16163e+00\tAbsError: 3.15373e+16\n", - " Region: \"zone_1\"\tRelError: 3.73877e-01\tAbsError: 1.56099e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.73462e-01\tAbsError: 1.22651e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14915e-04\tAbsError: 1.43834e-01\n", - " Region: \"zone_3\"\tRelError: 7.87757e-01\tAbsError: 3.15373e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24889e-01\tAbsError: 1.64203e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.31812e-02\tAbsError: 1.51170e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.09272e-01\tAbsError: 1.22654e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14915e-04\tAbsError: 1.43834e-01\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.23456e+04\tAbsError: 1.02352e+19\n", - " Region: \"zone_1\"\tRelError: 3.19775e+04\tAbsError: 9.26313e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.19775e+04\tAbsError: 9.26313e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.43761e-11\tAbsError: 1.89251e-08\n", - " Region: \"zone_3\"\tRelError: 3.68111e+02\tAbsError: 1.02352e+19\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.73476e+02\tAbsError: 4.17766e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.83489e+01\tAbsError: 6.05758e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06286e+02\tAbsError: 9.26320e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.43983e-11\tAbsError: 1.89331e-08\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.70653e+00\tAbsError: 9.42995e+14\n", - " Region: \"zone_1\"\tRelError: 1.87512e-01\tAbsError: 1.86005e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87459e-01\tAbsError: 5.75054e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.35097e-05\tAbsError: 1.85430e-02\n", - " Region: \"zone_3\"\tRelError: 2.51902e+00\tAbsError: 9.42995e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.42725e-03\tAbsError: 4.56434e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.58145e-03\tAbsError: 4.86561e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.51196e+00\tAbsError: 5.79058e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.35168e-05\tAbsError: 1.85447e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.95227e+03\tAbsError: 4.47180e+17\n", - " Region: \"zone_1\"\tRelError: 5.95735e+02\tAbsError: 1.32695e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95731e+02\tAbsError: 3.07627e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.72641e-03\tAbsError: 1.29619e+00\n", - " Region: \"zone_3\"\tRelError: 2.35653e+03\tAbsError: 4.47180e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.30389e-01\tAbsError: 2.23868e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.07870e-01\tAbsError: 2.23312e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 2.35569e+03\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.72703e-03\tAbsError: 1.29643e+00\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.03801e-01\tAbsError: 3.36873e+14\n", - " Region: \"zone_1\"\tRelError: 4.76962e-01\tAbsError: 4.14745e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.76843e-01\tAbsError: 1.93448e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18688e-04\tAbsError: 4.14551e-02\n", - " Region: \"zone_3\"\tRelError: 2.26840e-01\tAbsError: 3.36873e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34636e-03\tAbsError: 1.66089e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.72901e-04\tAbsError: 1.70784e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.24702e-01\tAbsError: 1.94711e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18736e-04\tAbsError: 4.14716e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.55186e-01\tAbsError: 3.91136e+15\n", - " Region: \"zone_1\"\tRelError: 4.65576e-02\tAbsError: 1.85778e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.60219e-02\tAbsError: 1.29525e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.35764e-04\tAbsError: 1.85648e-01\n", - " Region: \"zone_3\"\tRelError: 1.08629e-01\tAbsError: 3.91136e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84355e-02\tAbsError: 2.04486e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.19784e-03\tAbsError: 1.86651e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.74587e-02\tAbsError: 1.40963e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.36803e-04\tAbsError: 1.86011e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.80855e+03\tAbsError: 8.58917e+18\n", - " Region: \"zone_1\"\tRelError: 1.23637e+02\tAbsError: 3.96683e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.23626e+02\tAbsError: 8.99016e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12575e-02\tAbsError: 3.87693e+00\n", - " Region: \"zone_3\"\tRelError: 2.68491e+03\tAbsError: 8.58917e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.59082e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.37524e+02\tAbsError: 4.99835e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 2.13838e+03\tAbsError: 8.99018e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12599e-02\tAbsError: 3.87776e+00\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.69373e-01\tAbsError: 7.96597e+13\n", - " Region: \"zone_1\"\tRelError: 2.49118e-02\tAbsError: 8.30434e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.48878e-02\tAbsError: 5.27447e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.39494e-05\tAbsError: 8.29907e-03\n", - " Region: \"zone_3\"\tRelError: 2.44461e-01\tAbsError: 7.96597e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.03029e-04\tAbsError: 3.88810e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.99138e-04\tAbsError: 4.07787e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.43835e-01\tAbsError: 5.31227e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.39515e-05\tAbsError: 8.29948e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.44034e-01\tAbsError: 2.50982e+14\n", - " Region: \"zone_1\"\tRelError: 2.52669e-01\tAbsError: 3.80409e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.52658e-01\tAbsError: 1.15800e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08740e-05\tAbsError: 3.79251e-03\n", - " Region: \"zone_3\"\tRelError: 1.91365e-01\tAbsError: 2.50982e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.75656e-04\tAbsError: 1.25054e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.84954e-04\tAbsError: 1.25928e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.90594e-01\tAbsError: 1.16615e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08740e-05\tAbsError: 3.79381e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 8.37720e+02\tAbsError: 8.62713e+16\n", - " Region: \"zone_1\"\tRelError: 6.83172e+02\tAbsError: 5.09423e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 6.83170e+02\tAbsError: 2.58987e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39194e-03\tAbsError: 4.83524e-01\n", - " Region: \"zone_3\"\tRelError: 1.54548e+02\tAbsError: 8.62713e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27446e-01\tAbsError: 4.32970e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.20316e-02\tAbsError: 4.29743e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.54357e+02\tAbsError: 2.58982e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39675e-03\tAbsError: 4.85195e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.71034e-01\tAbsError: 7.05338e+14\n", - " Region: \"zone_1\"\tRelError: 4.96795e-02\tAbsError: 7.24479e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 4.96587e-02\tAbsError: 3.50735e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.08061e-05\tAbsError: 7.20972e-03\n", - " Region: \"zone_3\"\tRelError: 1.21355e-01\tAbsError: 7.05338e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47438e-03\tAbsError: 3.47117e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.53212e-03\tAbsError: 3.58221e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18327e-01\tAbsError: 3.53840e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.08197e-05\tAbsError: 7.21462e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.69961e+03\tAbsError: 2.29427e+18\n", - " Region: \"zone_1\"\tRelError: 2.96536e+01\tAbsError: 3.10404e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 2.96449e+01\tAbsError: 8.69447e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.66233e-03\tAbsError: 3.01709e+00\n", - " Region: \"zone_3\"\tRelError: 1.66995e+03\tAbsError: 2.29427e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.01362e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.63130e+03\tAbsError: 1.28065e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 2.96449e+01\tAbsError: 8.69449e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.66403e-03\tAbsError: 3.01762e+00\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.94834e-01\tAbsError: 4.50761e+13\n", - " Region: \"zone_1\"\tRelError: 1.61165e-02\tAbsError: 1.06831e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.61134e-02\tAbsError: 2.81432e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.07411e-06\tAbsError: 1.06550e-03\n", - " Region: \"zone_3\"\tRelError: 1.78717e-01\tAbsError: 4.50761e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.86613e-04\tAbsError: 2.19704e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.74556e-04\tAbsError: 2.31057e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.78353e-01\tAbsError: 2.83681e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.07499e-06\tAbsError: 1.06575e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.84963e-02\tAbsError: 2.56196e+13\n", - " Region: \"zone_1\"\tRelError: 4.00746e-02\tAbsError: 1.84773e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 4.00693e-02\tAbsError: 1.18319e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.30122e-06\tAbsError: 1.84655e-03\n", - " Region: \"zone_3\"\tRelError: 2.84217e-02\tAbsError: 2.56196e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.10236e-05\tAbsError: 1.27710e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.94827e-05\tAbsError: 1.28486e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.82859e-02\tAbsError: 1.19127e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.30191e-06\tAbsError: 1.84686e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 6.13777e+02\tAbsError: 9.41150e+15\n", - " Region: \"zone_1\"\tRelError: 7.34943e+01\tAbsError: 1.74710e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 7.34894e+01\tAbsError: 9.16455e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.95952e-03\tAbsError: 1.73794e+00\n", - " Region: \"zone_3\"\tRelError: 5.40283e+02\tAbsError: 9.41150e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.82819e-02\tAbsError: 3.95531e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.70902e-02\tAbsError: 5.45619e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.40223e+02\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.96820e-03\tAbsError: 1.74101e+00\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.61029e-02\tAbsError: 4.08676e+13\n", - " Region: \"zone_1\"\tRelError: 4.74709e-03\tAbsError: 4.99792e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 4.73267e-03\tAbsError: 2.21701e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.44170e-05\tAbsError: 4.99571e-03\n", - " Region: \"zone_3\"\tRelError: 1.13558e-02\tAbsError: 4.08676e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.88341e-05\tAbsError: 2.00869e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.22806e-05\tAbsError: 2.07807e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11703e-02\tAbsError: 2.23458e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.44170e-05\tAbsError: 4.99571e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.25640e+03\tAbsError: 2.59407e+18\n", - " Region: \"zone_1\"\tRelError: 1.34547e+02\tAbsError: 1.10069e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.34544e+02\tAbsError: 8.37231e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.92836e-03\tAbsError: 1.01697e+00\n", - " Region: \"zone_3\"\tRelError: 1.12185e+03\tAbsError: 2.59407e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01259e+03\tAbsError: 1.19798e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.28405e+01\tAbsError: 1.39609e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 6.64141e+01\tAbsError: 8.37233e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.92836e-03\tAbsError: 1.01697e+00\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 3.12791e-02\tAbsError: 1.26703e+13\n", - " Region: \"zone_1\"\tRelError: 1.80768e-02\tAbsError: 2.75667e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.80761e-02\tAbsError: 5.01993e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.90781e-07\tAbsError: 2.75165e-04\n", - " Region: \"zone_3\"\tRelError: 1.32022e-02\tAbsError: 1.26703e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.15745e-05\tAbsError: 6.31722e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.07221e-05\tAbsError: 6.35307e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31591e-02\tAbsError: 5.05478e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.90922e-07\tAbsError: 2.75214e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.14777e-02\tAbsError: 6.22952e+12\n", - " Region: \"zone_1\"\tRelError: 2.69816e-03\tAbsError: 4.97182e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.69673e-03\tAbsError: 3.70717e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42953e-06\tAbsError: 4.96811e-04\n", - " Region: \"zone_3\"\tRelError: 2.87796e-02\tAbsError: 6.22952e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.54213e-05\tAbsError: 3.03376e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.37896e-05\tAbsError: 3.19576e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.87289e-02\tAbsError: 3.73663e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43009e-06\tAbsError: 4.97011e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.16806e+01\tAbsError: 1.22386e+16\n", - " Region: \"zone_1\"\tRelError: 5.81165e+00\tAbsError: 2.01324e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.80588e+00\tAbsError: 6.99078e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.77633e-03\tAbsError: 2.01254e+00\n", - " Region: \"zone_3\"\tRelError: 5.86896e+00\tAbsError: 1.22386e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.88114e-02\tAbsError: 5.53671e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.06848e-02\tAbsError: 6.70184e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.80368e+00\tAbsError: 7.04147e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.78367e-03\tAbsError: 2.01512e+00\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.36737e-02\tAbsError: 3.46945e+13\n", - " Region: \"zone_1\"\tRelError: 4.04619e-03\tAbsError: 4.96121e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.04476e-03\tAbsError: 1.62718e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42705e-06\tAbsError: 4.94493e-04\n", - " Region: \"zone_3\"\tRelError: 9.62755e-03\tAbsError: 3.46945e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.50334e-05\tAbsError: 1.70836e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.66532e-05\tAbsError: 1.76109e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.46443e-03\tAbsError: 1.64203e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42741e-06\tAbsError: 4.94624e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.68437e+02\tAbsError: 3.76826e+17\n", - " Region: \"zone_1\"\tRelError: 5.24367e+00\tAbsError: 1.64859e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.23916e+00\tAbsError: 8.01893e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.51238e-03\tAbsError: 1.56840e+00\n", - " Region: \"zone_3\"\tRelError: 8.63193e+02\tAbsError: 3.76826e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12292e+01\tAbsError: 1.43202e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.11642e+02\tAbsError: 2.33624e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 4.03176e+01\tAbsError: 8.01894e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.51534e-03\tAbsError: 1.56957e+00\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 5.58596e-03\tAbsError: 1.81500e+12\n", - " Region: \"zone_1\"\tRelError: 3.23185e-03\tAbsError: 1.08128e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.23154e-03\tAbsError: 7.20422e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.10536e-07\tAbsError: 1.08056e-04\n", - " Region: \"zone_3\"\tRelError: 2.35411e-03\tAbsError: 1.81500e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.98887e-06\tAbsError: 9.05203e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.47215e-06\tAbsError: 9.09800e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.34534e-03\tAbsError: 7.27320e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.10562e-07\tAbsError: 1.08065e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.35240e-02\tAbsError: 2.71383e+12\n", - " Region: \"zone_1\"\tRelError: 1.15361e-03\tAbsError: 9.01137e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15335e-03\tAbsError: 1.50035e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.58860e-07\tAbsError: 8.99637e-05\n", - " Region: \"zone_3\"\tRelError: 1.23704e-02\tAbsError: 2.71383e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12817e-05\tAbsError: 1.32174e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.05297e-05\tAbsError: 1.39209e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.23483e-02\tAbsError: 1.51287e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.58959e-07\tAbsError: 9.00000e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.44367e+01\tAbsError: 1.02259e+16\n", - " Region: \"zone_1\"\tRelError: 4.22055e+01\tAbsError: 1.45859e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.22051e+01\tAbsError: 5.71640e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.16833e-04\tAbsError: 1.45287e-01\n", - " Region: \"zone_3\"\tRelError: 4.22312e+01\tAbsError: 1.02259e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97020e-02\tAbsError: 4.95775e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.96648e-03\tAbsError: 5.26817e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 4.22051e+01\tAbsError: 5.76213e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.17002e-04\tAbsError: 1.45346e-01\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.90554e-03\tAbsError: 3.84334e+12\n", - " Region: \"zone_1\"\tRelError: 5.67157e-04\tAbsError: 2.85941e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.66334e-04\tAbsError: 1.72086e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.22338e-07\tAbsError: 2.85769e-04\n", - " Region: \"zone_3\"\tRelError: 1.33838e-03\tAbsError: 3.84334e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.13597e-06\tAbsError: 1.89425e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.24167e-06\tAbsError: 1.94909e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.32018e-03\tAbsError: 1.73581e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.22651e-07\tAbsError: 2.85878e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.49421e+02\tAbsError: 3.45044e+16\n", - " Region: \"zone_1\"\tRelError: 2.47424e+00\tAbsError: 2.92395e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.47362e+00\tAbsError: 7.62823e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.21647e-04\tAbsError: 2.16113e-01\n", - " Region: \"zone_3\"\tRelError: 5.46946e+02\tAbsError: 3.45044e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.98453e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.35971e+02\tAbsError: 1.46591e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.97442e+00\tAbsError: 7.62825e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.21666e-04\tAbsError: 2.16115e-01\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 2.04292e-03\tAbsError: 7.05397e+11\n", - " Region: \"zone_1\"\tRelError: 1.18204e-03\tAbsError: 2.04270e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18198e-03\tAbsError: 2.66778e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.85310e-08\tAbsError: 2.04003e-05\n", - " Region: \"zone_3\"\tRelError: 8.60879e-04\tAbsError: 7.05397e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13172e-06\tAbsError: 3.51344e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.38793e-06\tAbsError: 3.54052e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 8.58301e-04\tAbsError: 2.69418e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.85529e-08\tAbsError: 2.04083e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.66323e-03\tAbsError: 4.84759e+11\n", - " Region: \"zone_1\"\tRelError: 2.28613e-04\tAbsError: 3.39177e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.28515e-04\tAbsError: 2.84083e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.75123e-08\tAbsError: 3.38893e-05\n", - " Region: \"zone_3\"\tRelError: 2.43462e-03\tAbsError: 4.84759e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.99043e-06\tAbsError: 2.36019e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.86586e-06\tAbsError: 2.48740e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.43067e-03\tAbsError: 2.86106e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.75523e-08\tAbsError: 3.39041e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.49604e+00\tAbsError: 9.70392e+14\n", - " Region: \"zone_1\"\tRelError: 3.74605e+00\tAbsError: 7.97463e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.74582e+00\tAbsError: 4.64021e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28718e-04\tAbsError: 7.96999e-02\n", - " Region: \"zone_3\"\tRelError: 3.74999e+00\tAbsError: 9.70392e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.58316e-03\tAbsError: 4.83793e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.36045e-03\tAbsError: 4.86599e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.74582e+00\tAbsError: 4.67428e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28813e-04\tAbsError: 7.97327e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 9.55346e-04\tAbsError: 2.05462e+12\n", - " Region: \"zone_1\"\tRelError: 2.84125e-04\tAbsError: 4.49675e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.83996e-04\tAbsError: 8.40596e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29156e-07\tAbsError: 4.48834e-05\n", - " Region: \"zone_3\"\tRelError: 6.71221e-04\tAbsError: 2.05462e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.03717e-06\tAbsError: 1.01247e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.55660e-06\tAbsError: 1.04215e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 6.61498e-04\tAbsError: 8.48402e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29206e-07\tAbsError: 4.49013e-05\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 4.10017e-04\tAbsError: 1.25482e+11\n", - " Region: \"zone_1\"\tRelError: 2.37057e-04\tAbsError: 6.87465e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.37038e-04\tAbsError: 5.30541e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.97090e-08\tAbsError: 6.86934e-06\n", - " Region: \"zone_3\"\tRelError: 1.72960e-04\tAbsError: 1.25482e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.39658e-07\tAbsError: 6.25033e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.14206e-07\tAbsError: 6.29787e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72386e-04\tAbsError: 5.35676e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.97163e-08\tAbsError: 6.87208e-06\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.36093e+03\tAbsError: 1.73063e+16\n", - " Region: \"zone_1\"\tRelError: 2.50099e+00\tAbsError: 1.04032e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.50090e+00\tAbsError: 7.19237e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.26103e-05\tAbsError: 3.21082e-02\n", - " Region: \"zone_3\"\tRelError: 2.35843e+03\tAbsError: 1.73063e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.90026e+03\tAbsError: 7.68195e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.57215e+02\tAbsError: 9.62438e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.53038e-01\tAbsError: 7.19239e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.27224e-05\tAbsError: 3.21462e-02\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 9.36018e-04\tAbsError: 1.74566e+11\n", - " Region: \"zone_1\"\tRelError: 8.04965e-05\tAbsError: 7.09811e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.04761e-05\tAbsError: 1.02447e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.03939e-08\tAbsError: 7.08786e-06\n", - " Region: \"zone_3\"\tRelError: 8.55521e-04\tAbsError: 1.74566e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.24390e-07\tAbsError: 8.50012e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.76525e-07\tAbsError: 8.95646e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 8.54100e-04\tAbsError: 1.03181e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.04026e-08\tAbsError: 7.09095e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 9.26745e+00\tAbsError: 5.14481e+14\n", - " Region: \"zone_1\"\tRelError: 8.59152e+00\tAbsError: 9.35409e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 8.59150e+00\tAbsError: 2.29233e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.68516e-05\tAbsError: 9.33117e-03\n", - " Region: \"zone_3\"\tRelError: 6.75929e-01\tAbsError: 5.14481e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.99602e-04\tAbsError: 2.56366e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.52414e-04\tAbsError: 2.58114e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.74650e-01\tAbsError: 2.31041e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.68516e-05\tAbsError: 9.33117e-03\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 1.31093e-04\tAbsError: 4.20042e+10\n", - " Region: \"zone_1\"\tRelError: 7.58426e-05\tAbsError: 1.44285e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 7.58384e-05\tAbsError: 1.70924e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.13482e-09\tAbsError: 1.44114e-06\n", - " Region: \"zone_3\"\tRelError: 5.52503e-05\tAbsError: 4.20042e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.55628e-08\tAbsError: 2.09238e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.07224e-08\tAbsError: 2.10804e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.50899e-05\tAbsError: 1.72611e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.13649e-09\tAbsError: 1.44176e-06\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.69143e-04\tAbsError: 3.20010e+11\n", - " Region: \"zone_1\"\tRelError: 5.04529e-05\tAbsError: 1.92486e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.03976e-05\tAbsError: 1.37695e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.53502e-08\tAbsError: 1.92349e-05\n", - " Region: \"zone_3\"\tRelError: 1.18690e-04\tAbsError: 3.20010e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.67288e-07\tAbsError: 1.57764e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.98946e-07\tAbsError: 1.62246e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17168e-04\tAbsError: 1.38952e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.53717e-08\tAbsError: 1.92429e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.24927e+02\tAbsError: 9.45906e+15\n", - " Region: \"zone_1\"\tRelError: 8.54269e-01\tAbsError: 1.97970e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 8.53892e-01\tAbsError: 6.70103e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.77125e-04\tAbsError: 1.30959e-01\n", - " Region: \"zone_3\"\tRelError: 3.24073e+02\tAbsError: 9.45906e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.98994e+01\tAbsError: 4.98573e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.43969e+02\tAbsError: 4.47333e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.04289e-01\tAbsError: 6.70105e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.77125e-04\tAbsError: 1.30959e-01\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 2.06215e-04\tAbsError: 3.63594e+10\n", - " Region: \"zone_1\"\tRelError: 1.77671e-05\tAbsError: 2.32923e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77604e-05\tAbsError: 2.21535e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.69552e-09\tAbsError: 2.32701e-06\n", - " Region: \"zone_3\"\tRelError: 1.88448e-04\tAbsError: 3.63594e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49672e-07\tAbsError: 1.77014e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.40316e-07\tAbsError: 1.86580e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88151e-04\tAbsError: 2.23089e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.69830e-09\tAbsError: 2.32802e-06\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 2.85509e-05\tAbsError: 8.53392e+09\n", - " Region: \"zone_1\"\tRelError: 1.65076e-05\tAbsError: 4.38296e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65063e-05\tAbsError: 3.70085e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.25646e-09\tAbsError: 4.37926e-07\n", - " Region: \"zone_3\"\tRelError: 1.20433e-05\tAbsError: 8.53392e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50308e-08\tAbsError: 4.25112e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.13442e-08\tAbsError: 4.28280e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20057e-05\tAbsError: 3.73687e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.25697e-09\tAbsError: 4.38116e-07\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 6.55972e-05\tAbsError: 1.30140e+11\n", - " Region: \"zone_1\"\tRelError: 1.95538e-05\tAbsError: 3.68464e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.95433e-05\tAbsError: 5.53800e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.05870e-08\tAbsError: 3.67910e-06\n", - " Region: \"zone_3\"\tRelError: 4.60434e-05\tAbsError: 1.30140e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.17662e-07\tAbsError: 6.41496e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.88393e-07\tAbsError: 6.59903e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.54267e-05\tAbsError: 5.58934e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.05914e-08\tAbsError: 3.68073e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:33\u001b[0m.\u001b[1;36m178\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.9799999999999999\u001b[0m\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.48030e+01\tAbsError: 7.19505e+13\n", - " Region: \"zone_1\"\tRelError: 1.40655e+01\tAbsError: 3.86191e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40655e+01\tAbsError: 2.84880e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11050e-05\tAbsError: 3.85906e-03\n", - " Region: \"zone_3\"\tRelError: 7.37529e-01\tAbsError: 7.19505e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38672e-04\tAbsError: 3.58470e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.21484e-04\tAbsError: 3.61036e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.37257e-01\tAbsError: 2.87067e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11068e-05\tAbsError: 3.85947e-03\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 6.49197e-05\tAbsError: 1.16553e+10\n", - " Region: \"zone_1\"\tRelError: 5.60093e-06\tAbsError: 5.33242e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 5.59940e-06\tAbsError: 7.08545e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.53226e-09\tAbsError: 5.32534e-07\n", - " Region: \"zone_3\"\tRelError: 5.93188e-05\tAbsError: 1.16553e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.82921e-08\tAbsError: 5.67470e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.51325e-08\tAbsError: 5.98062e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 5.92238e-05\tAbsError: 7.13541e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.53290e-09\tAbsError: 5.32764e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:33\u001b[0m.\u001b[1;36m686\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:33\u001b[0m.\u001b[1;36m686\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.9399999999999998\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 4.41228e+03\tAbsError: 1.12269e+15\n", - " Region: \"zone_1\"\tRelError: 9.92429e-02\tAbsError: 1.72929e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 9.89218e-02\tAbsError: 6.14042e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.21056e-04\tAbsError: 1.11525e-01\n", - " Region: \"zone_3\"\tRelError: 4.41219e+03\tAbsError: 1.12269e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27001e+03\tAbsError: 3.32160e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.14155e+03\tAbsError: 7.90530e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.23042e-01\tAbsError: 6.14044e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.21056e-04\tAbsError: 1.11525e-01\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.47896e+00\tAbsError: 2.94682e+13\n", - " Region: \"zone_1\"\tRelError: 1.24509e+00\tAbsError: 6.95816e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.24509e+00\tAbsError: 1.07735e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.99937e-06\tAbsError: 6.94739e-04\n", - " Region: \"zone_3\"\tRelError: 2.33869e-01\tAbsError: 2.94682e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.81392e-05\tAbsError: 1.46808e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.76977e-05\tAbsError: 1.47873e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.33792e-01\tAbsError: 1.08579e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.99953e-06\tAbsError: 6.95001e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.14292e+01\tAbsError: 9.65069e+17\n", - " Region: \"zone_1\"\tRelError: 4.44867e+01\tAbsError: 4.29349e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.44867e+01\tAbsError: 4.29336e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.76237e-09\tAbsError: 1.30750e-06\n", - " Region: \"zone_3\"\tRelError: 2.69425e+01\tAbsError: 9.65069e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.31474e-01\tAbsError: 4.69501e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.11759e-01\tAbsError: 4.95568e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 2.54992e+01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.76396e-09\tAbsError: 1.30807e-06\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 8.68319e+04\tAbsError: 1.01395e+15\n", - " Region: \"zone_1\"\tRelError: 8.30065e-02\tAbsError: 9.69279e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.28854e-02\tAbsError: 5.49210e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.21129e-04\tAbsError: 4.20068e-02\n", - " Region: \"zone_3\"\tRelError: 8.68319e+04\tAbsError: 1.01395e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.68105e+04\tAbsError: 4.66680e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.10870e+01\tAbsError: 5.47269e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.57619e-01\tAbsError: 5.49213e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.21232e-04\tAbsError: 4.20415e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.23523e+02\tAbsError: 6.14633e+17\n", - " Region: \"zone_1\"\tRelError: 4.09043e+01\tAbsError: 4.19630e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.09043e+01\tAbsError: 4.19628e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.63544e-10\tAbsError: 1.61104e-07\n", - " Region: \"zone_3\"\tRelError: 8.26191e+01\tAbsError: 6.14633e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.43690e-01\tAbsError: 2.98656e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.30409e-01\tAbsError: 3.15977e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 8.11450e+01\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.63736e-10\tAbsError: 1.61173e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:35\u001b[0m.\u001b[1;36m554\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:35\u001b[0m.\u001b[1;36m583\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.3 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:35\u001b[0m.\u001b[1;36m632\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.23148e-01\tAbsError: 5.24321e+12\n", - " Region: \"zone_1\"\tRelError: 2.61296e-01\tAbsError: 2.47766e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.61295e-01\tAbsError: 1.83418e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.11380e-07\tAbsError: 2.47583e-04\n", - " Region: \"zone_3\"\tRelError: 6.18518e-02\tAbsError: 5.24321e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94642e-06\tAbsError: 2.61290e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.40186e-06\tAbsError: 2.63031e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 6.18338e-02\tAbsError: 1.85316e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.11644e-07\tAbsError: 2.47677e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.09355e+04\tAbsError: 5.43141e+17\n", - " Region: \"zone_1\"\tRelError: 2.11850e+03\tAbsError: 9.99073e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.11850e+03\tAbsError: 3.30996e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.78001e-03\tAbsError: 9.65974e-01\n", - " Region: \"zone_3\"\tRelError: 1.88170e+04\tAbsError: 5.43141e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.07099e-01\tAbsError: 2.72398e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.80829e-01\tAbsError: 2.70743e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88160e+04\tAbsError: 3.31000e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.78032e-03\tAbsError: 9.66102e-01\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 4.87779e+02\tAbsError: 5.45900e+14\n", - " Region: \"zone_1\"\tRelError: 6.21634e-02\tAbsError: 1.04361e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 6.19989e-02\tAbsError: 4.73177e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.64467e-04\tAbsError: 5.70437e-02\n", - " Region: \"zone_3\"\tRelError: 4.87717e+02\tAbsError: 5.45900e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.98596e+02\tAbsError: 1.44358e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.89059e+02\tAbsError: 4.01542e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.20921e-02\tAbsError: 4.73180e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.64723e-04\tAbsError: 5.71329e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.45887e+04\tAbsError: 1.43878e+19\n", - " Region: \"zone_1\"\tRelError: 1.02041e+03\tAbsError: 9.39934e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02041e+03\tAbsError: 9.39933e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.82293e-10\tAbsError: 9.83916e-08\n", - " Region: \"zone_3\"\tRelError: 7.35683e+04\tAbsError: 1.43878e+19\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.36528e+02\tAbsError: 5.88123e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.06847e+02\tAbsError: 8.50661e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 7.30249e+04\tAbsError: 9.39941e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.82408e-10\tAbsError: 9.84332e-08\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 5.28442e+02\tAbsError: 4.50811e+17\n", - " Region: \"zone_1\"\tRelError: 2.63689e+02\tAbsError: 5.40877e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.63688e+02\tAbsError: 3.19522e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.46649e-03\tAbsError: 5.08925e-01\n", - " Region: \"zone_3\"\tRelError: 2.64752e+02\tAbsError: 4.50811e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.40504e-01\tAbsError: 2.25134e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.22390e-01\tAbsError: 2.25677e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 2.63688e+02\tAbsError: 3.19525e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.46805e-03\tAbsError: 5.09446e-01\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 9.77270e-02\tAbsError: 1.82347e+12\n", - " Region: \"zone_1\"\tRelError: 7.65024e-02\tAbsError: 5.28468e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.65022e-02\tAbsError: 6.24160e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.51664e-07\tAbsError: 5.27844e-05\n", - " Region: \"zone_3\"\tRelError: 2.12246e-02\tAbsError: 1.82347e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11287e-06\tAbsError: 9.08701e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.75258e-06\tAbsError: 9.14773e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.12196e-02\tAbsError: 6.30788e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.51721e-07\tAbsError: 5.28055e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.70966e+03\tAbsError: 4.51277e+14\n", - " Region: \"zone_1\"\tRelError: 4.80054e-02\tAbsError: 1.15275e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.77835e-02\tAbsError: 3.83022e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.21879e-04\tAbsError: 7.69733e-02\n", - " Region: \"zone_3\"\tRelError: 1.70961e+03\tAbsError: 4.51277e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.70858e+03\tAbsError: 4.59297e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.82155e-01\tAbsError: 4.05348e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.78561e-02\tAbsError: 3.83026e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.22113e-04\tAbsError: 7.70552e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.05255e+03\tAbsError: 1.21992e+17\n", - " Region: \"zone_1\"\tRelError: 1.96013e+02\tAbsError: 3.72504e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.96012e+02\tAbsError: 2.58637e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.98548e-04\tAbsError: 3.46641e-01\n", - " Region: \"zone_3\"\tRelError: 8.56535e+02\tAbsError: 1.21992e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95869e-01\tAbsError: 6.12799e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.13879e-01\tAbsError: 6.07120e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 8.56224e+02\tAbsError: 2.58493e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00238e-03\tAbsError: 3.47971e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.68180e+03\tAbsError: 1.18343e+19\n", - " Region: \"zone_1\"\tRelError: 5.17715e+01\tAbsError: 5.45577e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.17559e+01\tAbsError: 9.13709e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.56182e-02\tAbsError: 5.36440e+00\n", - " Region: \"zone_3\"\tRelError: 1.63003e+03\tAbsError: 1.18343e+19\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 4.94846e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.13752e+02\tAbsError: 6.88587e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20726e+03\tAbsError: 9.13711e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.56198e-02\tAbsError: 5.36502e+00\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 2.05494e-02\tAbsError: 3.74583e+11\n", - " Region: \"zone_1\"\tRelError: 1.55447e-02\tAbsError: 1.67716e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55447e-02\tAbsError: 1.38057e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.81497e-08\tAbsError: 1.67577e-05\n", - " Region: \"zone_3\"\tRelError: 5.00469e-03\tAbsError: 3.74583e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.90614e-07\tAbsError: 1.86695e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.85333e-07\tAbsError: 1.87888e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.00347e-03\tAbsError: 1.39492e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.81681e-08\tAbsError: 1.67646e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 5.56837e+00\tAbsError: 1.07325e+17\n", - " Region: \"zone_1\"\tRelError: 2.13979e+00\tAbsError: 1.76840e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.13935e+00\tAbsError: 2.58872e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.34120e-04\tAbsError: 1.50953e-01\n", - " Region: \"zone_3\"\tRelError: 3.42858e+00\tAbsError: 1.07325e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.43649e-01\tAbsError: 5.37359e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.46620e-01\tAbsError: 5.35895e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.03788e+00\tAbsError: 2.57709e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.34307e-04\tAbsError: 1.51010e-01\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.12531e+00\tAbsError: 4.21060e+14\n", - " Region: \"zone_1\"\tRelError: 3.42960e-02\tAbsError: 1.26190e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.40121e-02\tAbsError: 2.76566e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.83947e-04\tAbsError: 9.85338e-02\n", - " Region: \"zone_3\"\tRelError: 1.09102e+00\tAbsError: 4.21060e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99815e-01\tAbsError: 2.67407e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.14073e-02\tAbsError: 3.94320e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.95111e-02\tAbsError: 2.76571e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.84251e-04\tAbsError: 9.86404e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 6.10831e+02\tAbsError: 1.05705e+16\n", - " Region: \"zone_1\"\tRelError: 1.67975e+02\tAbsError: 1.53352e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.67975e+02\tAbsError: 1.22647e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.06404e-04\tAbsError: 1.41087e-01\n", - " Region: \"zone_3\"\tRelError: 4.42856e+02\tAbsError: 1.05705e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52745e-02\tAbsError: 5.30758e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.01145e-02\tAbsError: 5.26289e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 4.42820e+02\tAbsError: 1.22654e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.06484e-04\tAbsError: 1.41119e-01\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 6.14058e-03\tAbsError: 1.17501e+11\n", - " Region: \"zone_1\"\tRelError: 4.56971e-03\tAbsError: 3.83354e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.56970e-03\tAbsError: 4.25999e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10026e-08\tAbsError: 3.82928e-06\n", - " Region: \"zone_3\"\tRelError: 1.57087e-03\tAbsError: 1.17501e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.29368e-07\tAbsError: 5.85629e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.92613e-07\tAbsError: 5.89376e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.57054e-03\tAbsError: 4.30497e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10071e-08\tAbsError: 3.83095e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 6.77537e+02\tAbsError: 3.47065e+18\n", - " Region: \"zone_1\"\tRelError: 5.27552e+01\tAbsError: 5.42650e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.27399e+01\tAbsError: 8.85379e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52685e-02\tAbsError: 5.33797e+00\n", - " Region: \"zone_3\"\tRelError: 6.24782e+02\tAbsError: 3.47065e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.32470e+02\tAbsError: 1.73897e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.39557e+02\tAbsError: 1.73167e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 5.27399e+01\tAbsError: 8.85383e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52728e-02\tAbsError: 5.33955e+00\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.12460e+00\tAbsError: 1.21483e+16\n", - " Region: \"zone_1\"\tRelError: 9.82739e-01\tAbsError: 2.46167e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 9.82060e-01\tAbsError: 1.06610e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.78912e-04\tAbsError: 2.35506e-01\n", - " Region: \"zone_3\"\tRelError: 1.14186e+00\tAbsError: 1.21483e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.90955e-02\tAbsError: 6.10228e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.44176e-02\tAbsError: 6.04607e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08766e+00\tAbsError: 1.06615e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.79147e-04\tAbsError: 2.35580e-01\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 1.14209e+04\tAbsError: 3.18688e+14\n", - " Region: \"zone_1\"\tRelError: 2.59223e-02\tAbsError: 1.40661e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.55799e-02\tAbsError: 2.17875e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.42444e-04\tAbsError: 1.18874e-01\n", - " Region: \"zone_3\"\tRelError: 1.14208e+04\tAbsError: 3.18688e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.14208e+04\tAbsError: 1.57888e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.09664e-03\tAbsError: 3.02900e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.93581e-02\tAbsError: 2.17884e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.42953e-04\tAbsError: 1.19052e-01\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 1.39778e-03\tAbsError: 2.64036e+10\n", - " Region: \"zone_1\"\tRelError: 1.02275e-03\tAbsError: 1.13260e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02274e-03\tAbsError: 9.95943e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.25141e-09\tAbsError: 1.13160e-06\n", - " Region: \"zone_3\"\tRelError: 3.75036e-04\tAbsError: 2.64036e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.18289e-08\tAbsError: 1.31607e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.84989e-08\tAbsError: 1.32430e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.74952e-04\tAbsError: 1.00632e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.25274e-09\tAbsError: 1.13210e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.98888e+00\tAbsError: 5.15087e+14\n", - " Region: \"zone_1\"\tRelError: 1.58063e+00\tAbsError: 1.38877e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.58023e+00\tAbsError: 9.18863e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.99000e-04\tAbsError: 1.38868e-01\n", - " Region: \"zone_3\"\tRelError: 4.08243e-01\tAbsError: 5.15087e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.30563e-04\tAbsError: 2.54061e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.93154e-04\tAbsError: 2.61026e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.06120e-01\tAbsError: 9.32589e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.99000e-04\tAbsError: 1.38868e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.91912e+02\tAbsError: 3.81871e+18\n", - " Region: \"zone_1\"\tRelError: 5.16724e+01\tAbsError: 2.23553e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.16662e+01\tAbsError: 8.54616e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.18799e-03\tAbsError: 2.15007e+00\n", - " Region: \"zone_3\"\tRelError: 1.40239e+02\tAbsError: 3.81871e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.90791e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.35803e+01\tAbsError: 1.91081e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 9.76528e+01\tAbsError: 8.54619e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.18799e-03\tAbsError: 2.15007e+00\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 1.04411e+00\tAbsError: 2.50280e+14\n", - " Region: \"zone_1\"\tRelError: 5.02432e-03\tAbsError: 2.11146e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.41747e-03\tAbsError: 3.60591e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.06848e-04\tAbsError: 2.10785e-01\n", - " Region: \"zone_3\"\tRelError: 1.03909e+00\tAbsError: 2.50280e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99718e-01\tAbsError: 2.56770e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.04445e-02\tAbsError: 2.24603e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.83179e-02\tAbsError: 3.68304e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.07465e-04\tAbsError: 2.11002e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.73047e-01\tAbsError: 1.36922e+15\n", - " Region: \"zone_1\"\tRelError: 1.96522e-02\tAbsError: 1.01954e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.93590e-02\tAbsError: 1.74848e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.93173e-04\tAbsError: 1.01937e-01\n", - " Region: \"zone_3\"\tRelError: 1.53395e-01\tAbsError: 1.36922e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.62916e-03\tAbsError: 7.15283e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.23255e-04\tAbsError: 6.53940e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49849e-01\tAbsError: 1.79107e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.93173e-04\tAbsError: 1.01937e-01\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 3.99447e-04\tAbsError: 7.75693e+09\n", - " Region: \"zone_1\"\tRelError: 2.89402e-04\tAbsError: 2.71336e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.89401e-04\tAbsError: 2.89100e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.78779e-10\tAbsError: 2.71047e-07\n", - " Region: \"zone_3\"\tRelError: 1.10046e-04\tAbsError: 7.75693e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.37898e-09\tAbsError: 3.86636e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.32737e-08\tAbsError: 3.89057e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10023e-04\tAbsError: 2.92143e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.79099e-10\tAbsError: 2.71163e-07\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.05350e+01\tAbsError: 7.00392e+14\n", - " Region: \"zone_1\"\tRelError: 1.88154e+01\tAbsError: 4.80835e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88154e+01\tAbsError: 3.93683e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36946e-05\tAbsError: 4.76898e-03\n", - " Region: \"zone_3\"\tRelError: 1.71959e+00\tAbsError: 7.00392e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10974e-03\tAbsError: 3.48796e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.68307e-04\tAbsError: 3.51596e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.71799e+00\tAbsError: 3.96999e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37000e-05\tAbsError: 4.77083e-03\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 2.62132e-01\tAbsError: 1.20370e+14\n", - " Region: \"zone_1\"\tRelError: 2.50228e-02\tAbsError: 1.76959e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.50181e-02\tAbsError: 1.41458e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.67653e-06\tAbsError: 1.62813e-03\n", - " Region: \"zone_3\"\tRelError: 2.37109e-01\tAbsError: 1.20370e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50710e-02\tAbsError: 3.54181e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.53409e-02\tAbsError: 8.49519e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06692e-01\tAbsError: 1.43144e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.67852e-06\tAbsError: 1.62885e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 4.47134e+03\tAbsError: 5.06320e+17\n", - " Region: \"zone_1\"\tRelError: 7.78525e+01\tAbsError: 8.09559e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 7.78504e+01\tAbsError: 8.20995e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.09575e-03\tAbsError: 7.27460e-01\n", - " Region: \"zone_3\"\tRelError: 4.39349e+03\tAbsError: 5.06320e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.22912e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.34666e+03\tAbsError: 2.83408e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 3.78239e+01\tAbsError: 8.20997e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.09710e-03\tAbsError: 7.27945e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.28010e-01\tAbsError: 4.89992e+14\n", - " Region: \"zone_1\"\tRelError: 1.30075e-02\tAbsError: 8.50269e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.30052e-02\tAbsError: 2.97332e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.35842e-06\tAbsError: 8.20536e-04\n", - " Region: \"zone_3\"\tRelError: 1.15003e-01\tAbsError: 4.89992e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.04716e-04\tAbsError: 2.43507e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.61931e-04\tAbsError: 2.46485e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13934e-01\tAbsError: 2.99961e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36059e-06\tAbsError: 8.21291e-04\n", - "Iteration: 16\n", - " Device: \"device\"\tRelError: 9.59509e-05\tAbsError: 1.84383e+09\n", - " Region: \"zone_1\"\tRelError: 6.90141e-05\tAbsError: 7.66547e-08\n", - " Equation: \"PotentialEquation\"\tRelError: 6.90139e-05\tAbsError: 7.02485e-11\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.20044e-10\tAbsError: 7.65844e-08\n", - " Region: \"zone_3\"\tRelError: 2.69368e-05\tAbsError: 1.84383e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12306e-09\tAbsError: 9.19073e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.38040e-09\tAbsError: 9.24762e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.69311e-05\tAbsError: 7.09816e-11\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.20135e-10\tAbsError: 7.66170e-08\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:42\u001b[0m.\u001b[1;36m759\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 1.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 16\n", - " Device: \"device\"\tRelError: 1.65985e-02\tAbsError: 1.45858e+12\n", - " Region: \"zone_1\"\tRelError: 1.72331e-03\tAbsError: 7.56454e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.70153e-03\tAbsError: 1.42959e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17736e-05\tAbsError: 7.56311e-03\n", - " Region: \"zone_3\"\tRelError: 1.48752e-02\tAbsError: 1.45858e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.82682e-04\tAbsError: 8.27787e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.80685e-04\tAbsError: 6.30790e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39900e-02\tAbsError: 1.47660e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17788e-05\tAbsError: 7.56500e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.71600e+00\tAbsError: 3.92118e+13\n", - " Region: \"zone_1\"\tRelError: 1.69230e+00\tAbsError: 5.33729e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.69229e+00\tAbsError: 1.74236e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.53221e-05\tAbsError: 5.33554e-03\n", - " Region: \"zone_3\"\tRelError: 2.36945e-02\tAbsError: 3.92118e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28370e-04\tAbsError: 1.95462e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.14838e-05\tAbsError: 1.96656e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.34693e-02\tAbsError: 1.75498e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.53283e-05\tAbsError: 5.33766e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.13672e+03\tAbsError: 3.08207e+16\n", - " Region: \"zone_1\"\tRelError: 2.36568e+01\tAbsError: 2.88538e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.36562e+01\tAbsError: 7.83982e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.04714e-04\tAbsError: 2.10140e-01\n", - " Region: \"zone_3\"\tRelError: 1.11306e+03\tAbsError: 3.08207e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.89674e+02\tAbsError: 1.98363e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.21917e+02\tAbsError: 1.09843e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.47211e+00\tAbsError: 7.83984e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.06798e-04\tAbsError: 2.10862e-01\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.61019e-03\tAbsError: 5.41292e+12\n", - " Region: \"zone_1\"\tRelError: 2.71259e-04\tAbsError: 3.69897e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.60627e-04\tAbsError: 5.44452e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06318e-05\tAbsError: 3.69843e-03\n", - " Region: \"zone_3\"\tRelError: 2.33893e-03\tAbsError: 5.41292e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.46504e-05\tAbsError: 2.68611e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.83588e-05\tAbsError: 2.72681e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.22528e-03\tAbsError: 5.47677e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06362e-05\tAbsError: 3.69989e-03\n", - "Iteration: 17\n", - " Device: \"device\"\tRelError: 2.25322e-02\tAbsError: 7.37926e+12\n", - " Region: \"zone_1\"\tRelError: 2.29241e-03\tAbsError: 5.68147e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29079e-03\tAbsError: 5.68672e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.61754e-06\tAbsError: 5.62460e-04\n", - " Region: \"zone_3\"\tRelError: 2.02398e-02\tAbsError: 7.37926e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.47694e-04\tAbsError: 3.31708e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.42959e-04\tAbsError: 4.06218e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87475e-02\tAbsError: 5.76539e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.61810e-06\tAbsError: 5.62663e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.29423e+03\tAbsError: 2.05927e+18\n", - " Region: \"zone_1\"\tRelError: 8.20020e+01\tAbsError: 4.09537e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.20020e+01\tAbsError: 4.09537e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.43761e-11\tAbsError: 1.89251e-08\n", - " Region: \"zone_3\"\tRelError: 2.21223e+03\tAbsError: 2.05927e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.07156e-01\tAbsError: 1.02695e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.89042e-01\tAbsError: 1.03232e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 2.21103e+03\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.43982e-11\tAbsError: 1.89331e-08\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 6.84397e-01\tAbsError: 3.65096e+13\n", - " Region: \"zone_1\"\tRelError: 6.42272e-01\tAbsError: 4.54710e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.42270e-01\tAbsError: 1.53943e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.30582e-06\tAbsError: 4.53171e-04\n", - " Region: \"zone_3\"\tRelError: 4.21253e-02\tAbsError: 3.65096e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.38727e-05\tAbsError: 1.81787e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.47740e-05\tAbsError: 1.83308e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.20554e-02\tAbsError: 1.55220e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.30599e-06\tAbsError: 4.53233e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.76807e+03\tAbsError: 1.55980e+16\n", - " Region: \"zone_1\"\tRelError: 1.60174e+00\tAbsError: 7.20164e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.59988e+00\tAbsError: 7.42895e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.85990e-03\tAbsError: 6.45874e-01\n", - " Region: \"zone_3\"\tRelError: 3.76647e+03\tAbsError: 1.55980e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.74521e+03\tAbsError: 3.55043e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.79546e+01\tAbsError: 1.20475e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.29813e+00\tAbsError: 7.42897e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.85990e-03\tAbsError: 6.45874e-01\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.33525e-02\tAbsError: 2.45530e+13\n", - " Region: \"zone_1\"\tRelError: 1.35325e-03\tAbsError: 1.72904e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35276e-03\tAbsError: 1.11340e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.93842e-07\tAbsError: 1.71790e-04\n", - " Region: \"zone_3\"\tRelError: 1.19992e-02\tAbsError: 2.45530e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.84766e-05\tAbsError: 1.22120e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.31490e-05\tAbsError: 1.23410e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19471e-02\tAbsError: 1.12340e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.94049e-07\tAbsError: 1.71859e-04\n", - "Iteration: 18\n", - " Device: \"device\"\tRelError: 2.64043e-03\tAbsError: 5.34779e+11\n", - " Region: \"zone_1\"\tRelError: 2.77402e-04\tAbsError: 4.85036e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.76008e-04\tAbsError: 3.99629e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39377e-06\tAbsError: 4.84636e-04\n", - " Region: \"zone_3\"\tRelError: 2.36302e-03\tAbsError: 5.34779e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.67157e-05\tAbsError: 2.86420e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.64870e-05\tAbsError: 2.48359e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.24843e-03\tAbsError: 4.05110e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39410e-06\tAbsError: 4.84764e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 4.61689e+02\tAbsError: 5.07798e+17\n", - " Region: \"zone_1\"\tRelError: 3.64692e+01\tAbsError: 1.84178e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 3.64640e+01\tAbsError: 3.07624e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.18031e-03\tAbsError: 1.81102e+00\n", - " Region: \"zone_3\"\tRelError: 4.25219e+02\tAbsError: 5.07798e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.93091e-01\tAbsError: 2.54521e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.93600e-01\tAbsError: 2.53278e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 4.24628e+02\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.18075e-03\tAbsError: 1.81120e+00\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 5.17602e-02\tAbsError: 3.81639e+12\n", - " Region: \"zone_1\"\tRelError: 5.05943e-02\tAbsError: 2.59396e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.05936e-02\tAbsError: 1.40385e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.46801e-07\tAbsError: 2.59255e-04\n", - " Region: \"zone_3\"\tRelError: 1.16583e-03\tAbsError: 3.81639e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.23974e-06\tAbsError: 1.90175e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.90322e-06\tAbsError: 1.91464e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15094e-03\tAbsError: 1.41500e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.46858e-07\tAbsError: 2.59300e-04\n", - "Iteration: 19\n", - " Device: \"device\"\tRelError: 1.73000e-03\tAbsError: 4.78739e+11\n", - " Region: \"zone_1\"\tRelError: 1.78256e-04\tAbsError: 6.66258e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.78065e-04\tAbsError: 3.27442e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.90658e-07\tAbsError: 6.62984e-05\n", - " Region: \"zone_3\"\tRelError: 1.55175e-03\tAbsError: 4.78739e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.75457e-05\tAbsError: 2.53700e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.72084e-05\tAbsError: 2.25039e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.45680e-03\tAbsError: 3.32100e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.90709e-07\tAbsError: 6.63163e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.12918e+02\tAbsError: 3.51252e+15\n", - " Region: \"zone_1\"\tRelError: 1.36922e-01\tAbsError: 1.01550e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36830e-01\tAbsError: 6.96841e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.19319e-05\tAbsError: 3.18660e-02\n", - " Region: \"zone_3\"\tRelError: 5.12781e+02\tAbsError: 3.51252e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.88180e+01\tAbsError: 7.73156e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.62438e+02\tAbsError: 2.73936e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.52468e+00\tAbsError: 6.96843e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.19319e-05\tAbsError: 3.18660e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.19315e-03\tAbsError: 1.39866e+12\n", - " Region: \"zone_1\"\tRelError: 1.21613e-04\tAbsError: 1.66369e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21135e-04\tAbsError: 6.37067e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.78109e-07\tAbsError: 1.66305e-04\n", - " Region: \"zone_3\"\tRelError: 1.07154e-03\tAbsError: 1.39866e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.74493e-06\tAbsError: 6.96417e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.55832e-06\tAbsError: 7.02247e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06476e-03\tAbsError: 6.42163e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.78280e-07\tAbsError: 1.66364e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.49657e+00\tAbsError: 3.51966e+16\n", - " Region: \"zone_1\"\tRelError: 4.64902e-01\tAbsError: 7.04755e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.62960e-01\tAbsError: 2.58789e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94154e-03\tAbsError: 6.78876e-01\n", - " Region: \"zone_3\"\tRelError: 2.03167e+00\tAbsError: 3.51966e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.92042e-02\tAbsError: 1.76602e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.22372e-02\tAbsError: 1.75363e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.95829e+00\tAbsError: 2.58789e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94154e-03\tAbsError: 6.78876e-01\n", - "Iteration: 20\n", - " Device: \"device\"\tRelError: 2.86203e-04\tAbsError: 6.27638e+10\n", - " Region: \"zone_1\"\tRelError: 2.99365e-05\tAbsError: 3.46445e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.98370e-05\tAbsError: 4.29595e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.95054e-08\tAbsError: 3.46015e-05\n", - " Region: \"zone_3\"\tRelError: 2.56266e-04\tAbsError: 6.27638e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.46343e-06\tAbsError: 3.56504e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.43574e-06\tAbsError: 2.71134e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.43268e-04\tAbsError: 4.35591e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.95328e-08\tAbsError: 3.46111e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.73954e-02\tAbsError: 2.09217e+12\n", - " Region: \"zone_1\"\tRelError: 2.66287e-02\tAbsError: 3.97498e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66286e-02\tAbsError: 7.21599e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.14055e-07\tAbsError: 3.96776e-05\n", - " Region: \"zone_3\"\tRelError: 7.66707e-04\tAbsError: 2.09217e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05973e-06\tAbsError: 1.04227e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.16702e-06\tAbsError: 1.04990e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.62366e-04\tAbsError: 7.27544e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.14099e-07\tAbsError: 3.96935e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.12441e+02\tAbsError: 2.27947e+15\n", - " Region: \"zone_1\"\tRelError: 2.57506e-01\tAbsError: 1.16072e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.57357e-01\tAbsError: 6.44638e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.48872e-04\tAbsError: 5.16086e-02\n", - " Region: \"zone_3\"\tRelError: 6.12183e+02\tAbsError: 2.27947e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.56346e+02\tAbsError: 1.29064e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.55679e+02\tAbsError: 9.88834e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.58235e-01\tAbsError: 6.44641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.48962e-04\tAbsError: 5.16397e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 9.93046e-04\tAbsError: 1.35047e+12\n", - " Region: \"zone_1\"\tRelError: 1.00839e-04\tAbsError: 1.62276e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00793e-04\tAbsError: 4.93121e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.66571e-08\tAbsError: 1.61783e-05\n", - " Region: \"zone_3\"\tRelError: 8.92207e-04\tAbsError: 1.35047e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.51574e-06\tAbsError: 6.72130e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.29808e-06\tAbsError: 6.78342e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 8.89346e-04\tAbsError: 4.97640e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.66657e-08\tAbsError: 1.61809e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 6.69589e+00\tAbsError: 5.37696e+15\n", - " Region: \"zone_1\"\tRelError: 3.73324e+00\tAbsError: 3.88180e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.73216e+00\tAbsError: 9.16423e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08076e-03\tAbsError: 3.79016e-01\n", - " Region: \"zone_3\"\tRelError: 2.96265e+00\tAbsError: 5.37696e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.56094e-03\tAbsError: 2.69855e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.01807e-03\tAbsError: 2.67840e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.95599e+00\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08076e-03\tAbsError: 3.79016e-01\n", - "Iteration: 21\n", - " Device: \"device\"\tRelError: 1.31318e-04\tAbsError: 3.33767e+10\n", - " Region: \"zone_1\"\tRelError: 1.36025e-05\tAbsError: 6.39159e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35842e-05\tAbsError: 2.17106e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83182e-08\tAbsError: 6.36988e-06\n", - " Region: \"zone_3\"\tRelError: 1.17716e-04\tAbsError: 3.33767e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.32200e-06\tAbsError: 1.90094e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.29852e-06\tAbsError: 1.43674e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11077e-04\tAbsError: 2.20254e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83215e-08\tAbsError: 6.37102e-06\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.33283e-03\tAbsError: 3.11070e+11\n", - " Region: \"zone_1\"\tRelError: 3.24208e-03\tAbsError: 1.67201e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.24204e-03\tAbsError: 1.08135e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.80316e-08\tAbsError: 1.67093e-05\n", - " Region: \"zone_3\"\tRelError: 9.07484e-05\tAbsError: 3.11070e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.27597e-07\tAbsError: 1.55029e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.37894e-07\tAbsError: 1.56041e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 8.97349e-05\tAbsError: 1.09264e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.80498e-08\tAbsError: 1.67159e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.48270e+02\tAbsError: 4.45564e+14\n", - " Region: \"zone_1\"\tRelError: 8.87797e-02\tAbsError: 1.14771e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 8.86173e-02\tAbsError: 5.84706e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62378e-04\tAbsError: 5.63000e-02\n", - " Region: \"zone_3\"\tRelError: 1.48181e+02\tAbsError: 4.45564e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.49194e+01\tAbsError: 5.02523e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.31608e+01\tAbsError: 3.95311e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01003e-01\tAbsError: 5.84709e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62420e-04\tAbsError: 5.63140e-02\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.35256e-04\tAbsError: 1.43351e+11\n", - " Region: \"zone_1\"\tRelError: 1.37721e-05\tAbsError: 9.73032e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37442e-05\tAbsError: 5.01073e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.79871e-08\tAbsError: 9.72531e-06\n", - " Region: \"zone_3\"\tRelError: 1.21484e-04\tAbsError: 1.43351e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.91834e-07\tAbsError: 7.13886e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.13078e-07\tAbsError: 7.19621e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21051e-04\tAbsError: 5.05336e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.79891e-08\tAbsError: 9.72902e-06\n", - "Iteration: 22\n", - " Device: \"device\"\tRelError: 2.67617e-05\tAbsError: 6.00511e+09\n", - " Region: \"zone_1\"\tRelError: 2.79436e-06\tAbsError: 2.58190e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78695e-06\tAbsError: 3.94165e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.41357e-09\tAbsError: 2.57796e-06\n", - " Region: \"zone_3\"\tRelError: 2.39674e-05\tAbsError: 6.00511e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.11125e-07\tAbsError: 3.51674e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.08086e-07\tAbsError: 2.48837e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27407e-05\tAbsError: 3.99807e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.41485e-09\tAbsError: 2.57841e-06\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.32012e-03\tAbsError: 1.28416e+11\n", - " Region: \"zone_1\"\tRelError: 1.28498e-03\tAbsError: 3.17813e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28497e-03\tAbsError: 4.23201e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.12342e-09\tAbsError: 3.17390e-06\n", - " Region: \"zone_3\"\tRelError: 3.51385e-05\tAbsError: 1.28416e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13826e-07\tAbsError: 6.39919e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.61332e-07\tAbsError: 6.44238e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.48542e-05\tAbsError: 4.27818e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.12696e-09\tAbsError: 3.17522e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:50\u001b[0m.\u001b[1;36m025\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:50\u001b[0m.\u001b[1;36m025\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.20454545454545453\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.88315e-01\tAbsError: 2.62271e+15\n", - " Region: \"zone_1\"\tRelError: 4.71922e-01\tAbsError: 5.76588e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.70275e-01\tAbsError: 6.27557e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.64666e-03\tAbsError: 5.76525e-01\n", - " Region: \"zone_3\"\tRelError: 3.16393e-01\tAbsError: 2.62271e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49491e-02\tAbsError: 1.29724e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.95632e-03\tAbsError: 1.32547e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.97839e-01\tAbsError: 6.29832e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.64866e-03\tAbsError: 5.77242e-01\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.42051e+03\tAbsError: 3.54615e+14\n", - " Region: \"zone_1\"\tRelError: 6.98275e-02\tAbsError: 1.09313e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 6.96607e-02\tAbsError: 5.14934e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.66728e-04\tAbsError: 5.78196e-02\n", - " Region: \"zone_3\"\tRelError: 1.42044e+03\tAbsError: 3.54615e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.98967e+01\tAbsError: 1.27688e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.36047e+03\tAbsError: 3.41846e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.97677e-02\tAbsError: 5.14938e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.66908e-04\tAbsError: 5.78809e-02\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 6.85104e-05\tAbsError: 8.03987e+10\n", - " Region: \"zone_1\"\tRelError: 6.96313e-06\tAbsError: 1.48881e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.95886e-06\tAbsError: 2.53806e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.27498e-09\tAbsError: 1.48627e-06\n", - " Region: \"zone_3\"\tRelError: 6.15472e-05\tAbsError: 8.03987e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.83998e-08\tAbsError: 4.00300e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.82676e-08\tAbsError: 4.03687e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 6.13763e-05\tAbsError: 2.56098e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.27661e-09\tAbsError: 1.48686e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:50\u001b[0m.\u001b[1;36m707\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 1.045\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 2.19681e-04\tAbsError: 2.36335e+10\n", - " Region: \"zone_1\"\tRelError: 2.12393e-04\tAbsError: 1.12120e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.12390e-04\tAbsError: 8.49866e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.22046e-09\tAbsError: 1.12035e-06\n", - " Region: \"zone_3\"\tRelError: 7.28849e-06\tAbsError: 2.36335e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.68162e-08\tAbsError: 1.17793e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.98264e-08\tAbsError: 1.18542e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.21862e-06\tAbsError: 8.58821e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.22171e-09\tAbsError: 1.12081e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.58997e+01\tAbsError: 3.20526e+15\n", - " Region: \"zone_1\"\tRelError: 1.29777e+01\tAbsError: 2.18715e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29777e+01\tAbsError: 1.22913e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.20649e-05\tAbsError: 2.17486e-02\n", - " Region: \"zone_3\"\tRelError: 8.29220e+01\tAbsError: 3.20526e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.66160e-03\tAbsError: 1.56677e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.59518e-03\tAbsError: 1.63849e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.29127e+01\tAbsError: 1.23738e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.20911e-05\tAbsError: 2.17577e-02\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 4.00781e+00\tAbsError: 3.94064e+14\n", - " Region: \"zone_1\"\tRelError: 5.54910e-02\tAbsError: 1.14682e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.52851e-02\tAbsError: 4.32616e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.05905e-04\tAbsError: 7.14208e-02\n", - " Region: \"zone_3\"\tRelError: 3.95232e+00\tAbsError: 3.94064e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89903e+00\tAbsError: 2.21274e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.97707e-01\tAbsError: 3.71937e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.53690e-02\tAbsError: 4.32621e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.06150e-04\tAbsError: 7.15040e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.04363e+01\tAbsError: 8.75931e+15\n", - " Region: \"zone_1\"\tRelError: 1.87906e+01\tAbsError: 4.18734e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87906e+01\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62204e-09\tAbsError: 5.64041e-07\n", - " Region: \"zone_3\"\tRelError: 1.64572e+00\tAbsError: 8.75931e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77321e-01\tAbsError: 4.84694e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.77252e-01\tAbsError: 3.91237e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.11488e-02\tAbsError: 4.18729e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62226e-09\tAbsError: 5.64117e-07\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 7.39581e-05\tAbsError: 8.24568e+09\n", - " Region: \"zone_1\"\tRelError: 7.15031e-05\tAbsError: 2.38813e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 7.15024e-05\tAbsError: 2.87074e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.85640e-10\tAbsError: 2.38526e-07\n", - " Region: \"zone_3\"\tRelError: 2.45501e-06\tAbsError: 8.24568e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.01995e-09\tAbsError: 4.10956e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.14388e-08\tAbsError: 4.13612e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.43586e-06\tAbsError: 2.90181e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.85923e-10\tAbsError: 2.38630e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 4.31267e+03\tAbsError: 1.61876e+18\n", - " Region: \"zone_1\"\tRelError: 2.15568e+03\tAbsError: 4.19632e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.15568e+03\tAbsError: 4.19626e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.86381e-09\tAbsError: 6.47983e-07\n", - " Region: \"zone_3\"\tRelError: 2.15699e+03\tAbsError: 1.61876e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.69859e-01\tAbsError: 8.03022e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.44383e-01\tAbsError: 8.15742e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 2.15568e+03\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.86451e-09\tAbsError: 6.48241e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:30:52\u001b[0m.\u001b[1;36m408\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 1.0899999999999999\u001b[0m\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.03311e+04\tAbsError: 3.93653e+14\n", - " Region: \"zone_1\"\tRelError: 4.12956e-02\tAbsError: 1.24407e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.10335e-02\tAbsError: 3.34880e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.62058e-04\tAbsError: 9.09187e-02\n", - " Region: \"zone_3\"\tRelError: 1.03311e+04\tAbsError: 3.93653e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03307e+04\tAbsError: 2.36735e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.21091e-01\tAbsError: 3.69979e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.10984e-02\tAbsError: 3.34886e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.62402e-04\tAbsError: 9.10387e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.68799e+00\tAbsError: 1.24428e+14\n", - " Region: \"zone_1\"\tRelError: 2.78169e+00\tAbsError: 1.62679e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78165e+00\tAbsError: 7.17419e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.64072e-05\tAbsError: 1.62607e-02\n", - " Region: \"zone_3\"\tRelError: 9.06301e-01\tAbsError: 1.24428e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.41976e-04\tAbsError: 6.19540e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.02421e-04\tAbsError: 6.24745e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.05410e-01\tAbsError: 7.21579e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.64251e-05\tAbsError: 1.62670e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.51527e+00\tAbsError: 3.25260e+14\n", - " Region: \"zone_1\"\tRelError: 2.05408e+00\tAbsError: 9.47161e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.05390e+00\tAbsError: 3.18465e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.80835e-04\tAbsError: 6.28696e-02\n", - " Region: \"zone_3\"\tRelError: 1.46119e+00\tAbsError: 3.25260e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.51540e-01\tAbsError: 1.59285e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.47035e-01\tAbsError: 1.65975e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.24340e-02\tAbsError: 3.18470e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.80835e-04\tAbsError: 6.28696e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.04408e+03\tAbsError: 5.36695e+17\n", - " Region: \"zone_1\"\tRelError: 5.36992e+02\tAbsError: 1.32221e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.36988e+02\tAbsError: 3.19518e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.70524e-03\tAbsError: 1.29026e+00\n", - " Region: \"zone_3\"\tRelError: 5.07091e+02\tAbsError: 5.36695e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.84800e-01\tAbsError: 2.69477e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.73451e-01\tAbsError: 2.67218e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 5.06329e+02\tAbsError: 3.19525e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.70570e-03\tAbsError: 1.29038e+00\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 1.08131e+00\tAbsError: 3.49481e+14\n", - " Region: \"zone_1\"\tRelError: 3.13058e-02\tAbsError: 1.42325e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.09702e-02\tAbsError: 2.58770e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.35529e-04\tAbsError: 1.16448e-01\n", - " Region: \"zone_3\"\tRelError: 1.05001e+00\tAbsError: 3.49481e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99703e-01\tAbsError: 2.12352e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.74562e-03\tAbsError: 3.28246e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.42204e-02\tAbsError: 2.45589e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.35937e-04\tAbsError: 1.16589e-01\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.48216e+03\tAbsError: 2.08749e+18\n", - " Region: \"zone_1\"\tRelError: 2.49066e+03\tAbsError: 4.29334e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49066e+03\tAbsError: 4.29333e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17085e-10\tAbsError: 7.55212e-08\n", - " Region: \"zone_3\"\tRelError: 5.99150e+03\tAbsError: 2.08749e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.46766e-01\tAbsError: 1.04031e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.25990e-01\tAbsError: 1.04718e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 5.99022e+03\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17175e-10\tAbsError: 7.55542e-08\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.74817e+00\tAbsError: 1.00690e+14\n", - " Region: \"zone_1\"\tRelError: 2.14136e+00\tAbsError: 1.40275e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.14135e+00\tAbsError: 4.52029e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.00073e-06\tAbsError: 1.39823e-03\n", - " Region: \"zone_3\"\tRelError: 1.60681e+00\tAbsError: 1.00690e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04820e-04\tAbsError: 5.01493e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.34375e-04\tAbsError: 5.05408e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60646e+00\tAbsError: 4.54847e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.00161e-06\tAbsError: 1.39859e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.57702e+00\tAbsError: 4.19775e+13\n", - " Region: \"zone_1\"\tRelError: 5.74741e-01\tAbsError: 3.08408e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.74726e-01\tAbsError: 2.58653e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43111e-05\tAbsError: 4.97551e-03\n", - " Region: \"zone_3\"\tRelError: 1.00228e+00\tAbsError: 4.19775e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.61753e-01\tAbsError: 3.02455e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.27245e-01\tAbsError: 1.17320e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13265e-01\tAbsError: 2.58955e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43111e-05\tAbsError: 4.97551e-03\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 1.40238e+00\tAbsError: 6.16489e+14\n", - " Region: \"zone_1\"\tRelError: 1.51392e-02\tAbsError: 3.50224e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.50753e-02\tAbsError: 1.28451e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.39045e-05\tAbsError: 2.21773e-02\n", - " Region: \"zone_3\"\tRelError: 1.38724e+00\tAbsError: 6.16489e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23954e+00\tAbsError: 2.14946e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.55726e-03\tAbsError: 5.94994e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.42077e-01\tAbsError: 1.28459e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.39045e-05\tAbsError: 2.21773e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 7.20944e+01\tAbsError: 7.56708e+16\n", - " Region: \"zone_1\"\tRelError: 6.54151e+01\tAbsError: 5.01672e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 6.54137e+01\tAbsError: 2.58373e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36322e-03\tAbsError: 4.75835e-01\n", - " Region: \"zone_3\"\tRelError: 6.67933e+00\tAbsError: 7.56708e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.58102e-02\tAbsError: 3.79633e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.47265e-02\tAbsError: 3.77076e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.52743e+00\tAbsError: 2.58764e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36338e-03\tAbsError: 4.75899e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 6.96046e+02\tAbsError: 6.12303e+17\n", - " Region: \"zone_1\"\tRelError: 4.96510e+01\tAbsError: 1.78943e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 4.96460e+01\tAbsError: 3.30992e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.02903e-03\tAbsError: 1.75633e+00\n", - " Region: \"zone_3\"\tRelError: 6.46395e+02\tAbsError: 6.12303e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.43837e-01\tAbsError: 3.06626e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.44545e-01\tAbsError: 3.05677e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 6.45701e+02\tAbsError: 3.31000e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.02964e-03\tAbsError: 1.75644e+00\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.05492e-01\tAbsError: 9.06572e+12\n", - " Region: \"zone_1\"\tRelError: 4.25847e-01\tAbsError: 6.76994e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.25845e-01\tAbsError: 4.28249e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93585e-06\tAbsError: 6.76565e-04\n", - " Region: \"zone_3\"\tRelError: 1.79645e-01\tAbsError: 9.06572e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.72999e-05\tAbsError: 4.51680e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.43151e-05\tAbsError: 4.54892e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.79592e-01\tAbsError: 4.30804e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93585e-06\tAbsError: 6.76565e-04\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.17749e-01\tAbsError: 2.75400e+12\n", - " Region: \"zone_1\"\tRelError: 2.84331e-02\tAbsError: 1.37857e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.84237e-02\tAbsError: 1.05213e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.38961e-06\tAbsError: 3.26443e-03\n", - " Region: \"zone_3\"\tRelError: 2.89316e-01\tAbsError: 2.75400e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17006e-01\tAbsError: 1.82710e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.54026e-02\tAbsError: 9.26901e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.68976e-02\tAbsError: 1.05214e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.39204e-06\tAbsError: 3.26533e-03\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 5.10120e-01\tAbsError: 6.13179e+14\n", - " Region: \"zone_1\"\tRelError: 2.16057e-02\tAbsError: 3.05911e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.07258e-02\tAbsError: 2.97755e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.79857e-04\tAbsError: 3.05613e-01\n", - " Region: \"zone_3\"\tRelError: 4.88514e-01\tAbsError: 6.13179e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.32466e-01\tAbsError: 1.25745e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.09422e-02\tAbsError: 6.00604e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.44225e-01\tAbsError: 3.09265e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.80493e-04\tAbsError: 3.05830e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.00029e+00\tAbsError: 4.66294e+15\n", - " Region: \"zone_1\"\tRelError: 2.27580e+00\tAbsError: 9.90877e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27300e+00\tAbsError: 1.06605e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.79721e-03\tAbsError: 9.80216e-01\n", - " Region: \"zone_3\"\tRelError: 7.24485e-01\tAbsError: 4.66294e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.91065e-02\tAbsError: 1.79042e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.75448e-03\tAbsError: 2.87252e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 6.97823e-01\tAbsError: 1.06615e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.80173e-03\tAbsError: 9.81795e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 8.79492e+00\tAbsError: 6.00288e+16\n", - " Region: \"zone_1\"\tRelError: 3.50227e+00\tAbsError: 1.40347e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 3.49833e+00\tAbsError: 2.58583e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.93821e-03\tAbsError: 1.37762e+00\n", - " Region: \"zone_3\"\tRelError: 5.29264e+00\tAbsError: 6.00288e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.79218e-02\tAbsError: 3.01274e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.42552e-02\tAbsError: 2.99014e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 5.16653e+00\tAbsError: 2.58698e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.93821e-03\tAbsError: 1.37762e+00\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.48197e-01\tAbsError: 4.50048e+12\n", - " Region: \"zone_1\"\tRelError: 1.60046e-01\tAbsError: 9.62234e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60046e-01\tAbsError: 1.80340e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.75240e-07\tAbsError: 9.60431e-05\n", - " Region: \"zone_3\"\tRelError: 8.81510e-02\tAbsError: 4.50048e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.56637e-06\tAbsError: 2.24288e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.56618e-06\tAbsError: 2.25761e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.81336e-02\tAbsError: 1.81436e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.75295e-07\tAbsError: 9.60627e-05\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.11164e-02\tAbsError: 2.67087e+12\n", - " Region: \"zone_1\"\tRelError: 1.76241e-02\tAbsError: 2.79462e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76161e-02\tAbsError: 1.58150e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.04209e-06\tAbsError: 2.79304e-03\n", - " Region: \"zone_3\"\tRelError: 7.34923e-02\tAbsError: 2.67087e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53543e-02\tAbsError: 1.66658e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.26844e-04\tAbsError: 1.00429e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.00307e-03\tAbsError: 1.64903e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.04209e-06\tAbsError: 2.79304e-03\n", - "Iteration: 16\n", - " Device: \"device\"\tRelError: 3.91597e-01\tAbsError: 1.73440e+14\n", - " Region: \"zone_1\"\tRelError: 3.78559e-02\tAbsError: 5.80300e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.78398e-02\tAbsError: 2.04009e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60820e-05\tAbsError: 5.59900e-03\n", - " Region: \"zone_3\"\tRelError: 3.53741e-01\tAbsError: 1.73440e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.20655e-02\tAbsError: 5.27691e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.20606e-02\tAbsError: 1.20671e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.09599e-01\tAbsError: 2.06461e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60897e-05\tAbsError: 5.60177e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.58249e+02\tAbsError: 1.00167e+16\n", - " Region: \"zone_1\"\tRelError: 1.56715e+02\tAbsError: 1.28436e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.56711e+02\tAbsError: 3.89823e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.67750e-03\tAbsError: 1.28397e+00\n", - " Region: \"zone_3\"\tRelError: 1.53416e+00\tAbsError: 1.00167e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.08913e-02\tAbsError: 4.42744e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.61882e-03\tAbsError: 5.58926e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49196e+00\tAbsError: 3.92419e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.68317e-03\tAbsError: 1.28594e+00\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 7.89743e+00\tAbsError: 9.07768e+15\n", - " Region: \"zone_1\"\tRelError: 4.30415e+00\tAbsError: 5.45655e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.30263e+00\tAbsError: 1.22641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.51850e-03\tAbsError: 5.33391e-01\n", - " Region: \"zone_3\"\tRelError: 3.59328e+00\tAbsError: 9.07768e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.05131e-03\tAbsError: 4.51642e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.02232e-02\tAbsError: 4.56126e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 3.57749e+00\tAbsError: 1.22654e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52202e-03\tAbsError: 5.34632e-01\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 4.16881e-02\tAbsError: 5.87027e+11\n", - " Region: \"zone_1\"\tRelError: 2.74007e-02\tAbsError: 3.67679e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.74006e-02\tAbsError: 2.53315e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.05297e-07\tAbsError: 3.67426e-05\n", - " Region: \"zone_3\"\tRelError: 1.42874e-02\tAbsError: 5.87027e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.44350e-06\tAbsError: 2.92634e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.68502e-06\tAbsError: 2.94393e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.42841e-02\tAbsError: 2.55528e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.05309e-07\tAbsError: 3.67468e-05\n", - "Iteration: 17\n", - " Device: \"device\"\tRelError: 3.63215e-02\tAbsError: 5.14930e+12\n", - " Region: \"zone_1\"\tRelError: 3.77742e-03\tAbsError: 1.10706e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.74556e-03\tAbsError: 3.72376e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.18607e-05\tAbsError: 1.10669e-02\n", - " Region: \"zone_3\"\tRelError: 3.25441e-02\tAbsError: 5.14930e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90786e-04\tAbsError: 3.12485e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.62634e-04\tAbsError: 2.02445e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.12588e-02\tAbsError: 3.85335e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.18645e-05\tAbsError: 1.10683e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.09610e-03\tAbsError: 1.37091e+12\n", - " Region: \"zone_1\"\tRelError: 2.76889e-03\tAbsError: 1.16527e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.76856e-03\tAbsError: 1.93106e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.29178e-07\tAbsError: 1.14596e-04\n", - " Region: \"zone_3\"\tRelError: 2.32720e-03\tAbsError: 1.37091e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.79315e-04\tAbsError: 3.79966e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.78776e-04\tAbsError: 9.90945e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.96878e-03\tAbsError: 1.93525e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.29334e-07\tAbsError: 1.14652e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.37705e+01\tAbsError: 7.27933e+15\n", - " Region: \"zone_1\"\tRelError: 4.31671e+01\tAbsError: 8.11674e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.31668e+01\tAbsError: 3.46437e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.31427e-04\tAbsError: 8.08209e-02\n", - " Region: \"zone_3\"\tRelError: 6.03404e-01\tAbsError: 7.27933e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.35117e-02\tAbsError: 3.54144e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.23337e-03\tAbsError: 3.73789e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.86427e-01\tAbsError: 3.48978e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.31517e-04\tAbsError: 8.08519e-02\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.48230e-02\tAbsError: 2.24518e+11\n", - " Region: \"zone_1\"\tRelError: 9.67323e-03\tAbsError: 6.58649e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 9.67321e-03\tAbsError: 9.07531e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.88326e-08\tAbsError: 6.57742e-06\n", - " Region: \"zone_3\"\tRelError: 5.14973e-03\tAbsError: 2.24518e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.12497e-07\tAbsError: 1.11948e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.18689e-07\tAbsError: 1.12571e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.14878e-03\tAbsError: 9.15701e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.88397e-08\tAbsError: 6.57999e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.12483e+00\tAbsError: 1.15592e+16\n", - " Region: \"zone_1\"\tRelError: 4.05248e-01\tAbsError: 1.15681e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 4.01945e-01\tAbsError: 2.01056e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.30361e-03\tAbsError: 1.15661e+00\n", - " Region: \"zone_3\"\tRelError: 7.19584e-01\tAbsError: 1.15592e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.33694e-02\tAbsError: 5.41979e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.47353e-03\tAbsError: 6.13946e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 6.91434e-01\tAbsError: 2.02997e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.30745e-03\tAbsError: 1.15796e+00\n", - "Iteration: 18\n", - " Device: \"device\"\tRelError: 3.40315e-02\tAbsError: 1.08685e+13\n", - " Region: \"zone_1\"\tRelError: 3.47306e-03\tAbsError: 1.02397e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.47014e-03\tAbsError: 8.30414e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.92082e-06\tAbsError: 1.01567e-03\n", - " Region: \"zone_3\"\tRelError: 3.05585e-02\tAbsError: 1.08685e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10259e-03\tAbsError: 4.97621e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.09570e-03\tAbsError: 5.89228e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.83573e-02\tAbsError: 8.41978e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.92167e-06\tAbsError: 1.01597e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 8.73840e-04\tAbsError: 9.29496e+10\n", - " Region: \"zone_1\"\tRelError: 5.71863e-04\tAbsError: 8.29789e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.71624e-04\tAbsError: 5.32027e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.38759e-07\tAbsError: 8.29257e-05\n", - " Region: \"zone_3\"\tRelError: 3.01977e-04\tAbsError: 9.29496e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.28949e-06\tAbsError: 6.93078e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.21757e-06\tAbsError: 2.36418e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.87231e-04\tAbsError: 5.59323e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.38888e-07\tAbsError: 8.29697e-05\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 2.80808e-03\tAbsError: 3.70977e+10\n", - " Region: \"zone_1\"\tRelError: 1.83927e-03\tAbsError: 2.15171e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.83927e-03\tAbsError: 1.71473e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.15592e-09\tAbsError: 2.15000e-06\n", - " Region: \"zone_3\"\tRelError: 9.68805e-04\tAbsError: 3.70977e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.10516e-08\tAbsError: 1.85046e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.09611e-07\tAbsError: 1.85931e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 9.68608e-04\tAbsError: 1.72971e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.15824e-09\tAbsError: 2.15085e-06\n", - "Iteration: 19\n", - " Device: \"device\"\tRelError: 4.64217e-03\tAbsError: 9.68026e+11\n", - " Region: \"zone_1\"\tRelError: 4.86514e-04\tAbsError: 7.30690e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.84414e-04\tAbsError: 6.88362e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.09942e-06\tAbsError: 7.30002e-04\n", - " Region: \"zone_3\"\tRelError: 4.15566e-03\tAbsError: 9.68026e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00606e-04\tAbsError: 5.36847e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.00120e-04\tAbsError: 4.31179e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.95283e-03\tAbsError: 6.97826e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.10002e-06\tAbsError: 7.30231e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.26630e+00\tAbsError: 4.92451e+14\n", - " Region: \"zone_1\"\tRelError: 1.13894e+00\tAbsError: 4.71328e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13880e+00\tAbsError: 2.57047e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.34907e-04\tAbsError: 4.71071e-02\n", - " Region: \"zone_3\"\tRelError: 1.27367e-01\tAbsError: 4.92451e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.64457e-03\tAbsError: 2.45424e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.47270e-04\tAbsError: 2.47027e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.24640e-01\tAbsError: 2.58802e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.34960e-04\tAbsError: 4.71255e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.14566e+00\tAbsError: 7.17512e+15\n", - " Region: \"zone_1\"\tRelError: 4.32124e+00\tAbsError: 5.46696e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.32108e+00\tAbsError: 2.97009e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.55267e-04\tAbsError: 5.43726e-02\n", - " Region: \"zone_3\"\tRelError: 2.82442e+00\tAbsError: 7.17512e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24488e-02\tAbsError: 3.50201e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.33247e-03\tAbsError: 3.67311e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.80849e+00\tAbsError: 2.99132e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.55338e-04\tAbsError: 5.43974e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.46596e-04\tAbsError: 7.70978e+10\n", - " Region: \"zone_1\"\tRelError: 3.52561e-04\tAbsError: 2.63577e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52554e-04\tAbsError: 6.54648e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.38295e-09\tAbsError: 2.57030e-06\n", - " Region: \"zone_3\"\tRelError: 1.94035e-04\tAbsError: 7.70978e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.14845e-06\tAbsError: 3.19726e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.09047e-06\tAbsError: 4.51252e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.79789e-04\tAbsError: 6.57794e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.38722e-09\tAbsError: 2.57183e-06\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 8.73376e-04\tAbsError: 1.21033e+10\n", - " Region: \"zone_1\"\tRelError: 5.71066e-04\tAbsError: 4.32120e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 5.71065e-04\tAbsError: 5.34362e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.23573e-09\tAbsError: 4.31585e-07\n", - " Region: \"zone_3\"\tRelError: 3.02310e-04\tAbsError: 1.21033e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.19763e-08\tAbsError: 6.03773e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.10528e-08\tAbsError: 6.06556e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.02256e-04\tAbsError: 5.39200e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.23623e-09\tAbsError: 4.31772e-07\n", - "Iteration: 20\n", - " Device: \"device\"\tRelError: 2.63806e-03\tAbsError: 7.18270e+11\n", - " Region: \"zone_1\"\tRelError: 2.72151e-04\tAbsError: 1.11167e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.71833e-04\tAbsError: 4.88634e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.18284e-07\tAbsError: 1.10678e-04\n", - " Region: \"zone_3\"\tRelError: 2.36591e-03\tAbsError: 7.18270e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.14304e-05\tAbsError: 3.84457e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.09324e-05\tAbsError: 3.33813e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.22323e-03\tAbsError: 4.95599e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.18357e-07\tAbsError: 1.10704e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.58694e+00\tAbsError: 2.89132e+14\n", - " Region: \"zone_1\"\tRelError: 1.52380e+00\tAbsError: 5.15698e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.52379e+00\tAbsError: 1.32365e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47696e-05\tAbsError: 5.14374e-03\n", - " Region: \"zone_3\"\tRelError: 6.31393e-02\tAbsError: 2.89132e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.46615e-04\tAbsError: 1.44083e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.48650e-04\tAbsError: 1.45050e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.22293e-02\tAbsError: 1.33305e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47725e-05\tAbsError: 5.14444e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.30025e-01\tAbsError: 2.94556e+14\n", - " Region: \"zone_1\"\tRelError: 3.15863e-01\tAbsError: 3.78530e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.15755e-01\tAbsError: 1.75941e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08057e-04\tAbsError: 3.78354e-02\n", - " Region: \"zone_3\"\tRelError: 4.14163e-01\tAbsError: 2.94556e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27992e-03\tAbsError: 1.46638e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.33355e-04\tAbsError: 1.47918e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.12141e-01\tAbsError: 1.76984e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08101e-04\tAbsError: 3.78506e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 4.93715e-06\tAbsError: 1.96214e+09\n", - " Region: \"zone_1\"\tRelError: 2.21785e-06\tAbsError: 4.49317e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20493e-06\tAbsError: 8.87397e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29217e-08\tAbsError: 4.49228e-06\n", - " Region: \"zone_3\"\tRelError: 2.71931e-06\tAbsError: 1.96214e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.26346e-07\tAbsError: 1.66685e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.04086e-07\tAbsError: 2.95287e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27595e-06\tAbsError: 9.19869e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29231e-08\tAbsError: 4.49284e-06\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 1.80868e-04\tAbsError: 2.31864e+09\n", - " Region: \"zone_1\"\tRelError: 1.18462e-04\tAbsError: 1.27109e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18462e-04\tAbsError: 1.10538e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.63622e-10\tAbsError: 1.26998e-07\n", - " Region: \"zone_3\"\tRelError: 6.24053e-05\tAbsError: 2.31864e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73488e-09\tAbsError: 1.15691e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.90572e-09\tAbsError: 1.16172e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 6.23933e-05\tAbsError: 1.11505e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.63771e-10\tAbsError: 1.27053e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:03\u001b[0m.\u001b[1;36m020\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:03\u001b[0m.\u001b[1;36m020\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.3090909090909091\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 21\n", - " Device: \"device\"\tRelError: 4.72856e-04\tAbsError: 1.04675e+11\n", - " Region: \"zone_1\"\tRelError: 4.94226e-05\tAbsError: 5.28859e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.92707e-05\tAbsError: 7.05222e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.51884e-07\tAbsError: 5.28154e-05\n", - " Region: \"zone_3\"\tRelError: 4.23433e-04\tAbsError: 1.04675e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07269e-05\tAbsError: 6.01563e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.06769e-05\tAbsError: 4.45187e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.01878e-04\tAbsError: 7.15151e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.51923e-07\tAbsError: 5.28292e-05\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.23377e-01\tAbsError: 3.53784e+13\n", - " Region: \"zone_1\"\tRelError: 2.12151e-01\tAbsError: 2.19055e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.12145e-01\tAbsError: 1.54072e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.28620e-06\tAbsError: 2.18901e-03\n", - " Region: \"zone_3\"\tRelError: 1.12254e-02\tAbsError: 3.53784e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.76777e-05\tAbsError: 1.76182e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.87863e-05\tAbsError: 1.77602e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10527e-02\tAbsError: 1.55136e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.28630e-06\tAbsError: 2.18913e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.71990e-01\tAbsError: 2.33075e+14\n", - " Region: \"zone_1\"\tRelError: 3.26655e-01\tAbsError: 3.26790e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.26646e-01\tAbsError: 1.05121e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.32610e-06\tAbsError: 3.25738e-03\n", - " Region: \"zone_3\"\tRelError: 2.45334e-01\tAbsError: 2.33075e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.69921e-04\tAbsError: 1.16087e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.98872e-04\tAbsError: 1.16987e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.44556e-01\tAbsError: 1.05793e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.32610e-06\tAbsError: 3.25738e-03\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 5.16278e-05\tAbsError: 6.84005e+08\n", - " Region: \"zone_1\"\tRelError: 3.37813e-05\tAbsError: 2.73846e-08\n", - " Equation: \"PotentialEquation\"\tRelError: 3.37812e-05\tAbsError: 3.15860e-11\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.83172e-11\tAbsError: 2.73530e-08\n", - " Region: \"zone_3\"\tRelError: 1.78465e-05\tAbsError: 6.84005e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24266e-09\tAbsError: 3.41303e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.85743e-09\tAbsError: 3.42702e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 1.78433e-05\tAbsError: 3.18691e-11\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.83488e-11\tAbsError: 2.73646e-08\n", - "Iteration: 22\n", - " Device: \"device\"\tRelError: 2.01937e-04\tAbsError: 5.08201e+10\n", - " Region: \"zone_1\"\tRelError: 2.09310e-05\tAbsError: 1.03517e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.09013e-05\tAbsError: 3.29728e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.96742e-08\tAbsError: 1.03187e-05\n", - " Region: \"zone_3\"\tRelError: 1.81006e-04\tAbsError: 5.08201e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.06381e-06\tAbsError: 2.90908e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.02859e-06\tAbsError: 2.17292e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.70884e-04\tAbsError: 3.34514e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.96790e-08\tAbsError: 1.03204e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.25390e+01\tAbsError: 8.66334e+15\n", - " Region: \"zone_1\"\tRelError: 3.08824e+01\tAbsError: 4.18730e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.08824e+01\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.61411e-10\tAbsError: 1.94992e-07\n", - " Region: \"zone_3\"\tRelError: 1.65669e+00\tAbsError: 8.66334e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77415e-01\tAbsError: 4.95016e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.77396e-01\tAbsError: 3.71318e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01878e-01\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.61411e-10\tAbsError: 1.94992e-07\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 9.78787e-02\tAbsError: 1.51579e+13\n", - " Region: \"zone_1\"\tRelError: 9.33811e-02\tAbsError: 3.72586e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.33800e-02\tAbsError: 5.93039e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06930e-06\tAbsError: 3.71993e-04\n", - " Region: \"zone_3\"\tRelError: 4.49766e-03\tAbsError: 1.51579e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.55718e-05\tAbsError: 7.54871e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.55129e-05\tAbsError: 7.60915e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.44551e-03\tAbsError: 5.97196e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06941e-06\tAbsError: 3.72032e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 7.52737e-02\tAbsError: 2.11632e+13\n", - " Region: \"zone_1\"\tRelError: 4.18693e-02\tAbsError: 1.59245e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 4.18648e-02\tAbsError: 1.01760e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.55695e-06\tAbsError: 1.59143e-03\n", - " Region: \"zone_3\"\tRelError: 3.34044e-02\tAbsError: 2.11632e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.42416e-05\tAbsError: 1.05434e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.40508e-05\tAbsError: 1.06198e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.32815e-02\tAbsError: 1.02389e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.55695e-06\tAbsError: 1.59143e-03\n", - "Iteration: 23\n", - " Device: \"device\"\tRelError: 4.31241e-05\tAbsError: 9.72368e+09\n", - " Region: \"zone_1\"\tRelError: 4.50120e-06\tAbsError: 3.97895e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.48977e-06\tAbsError: 6.34023e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.14243e-08\tAbsError: 3.97261e-06\n", - " Region: \"zone_3\"\tRelError: 3.86230e-05\tAbsError: 9.72368e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.87584e-07\tAbsError: 5.72032e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.82473e-07\tAbsError: 4.00336e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.66415e-05\tAbsError: 6.43135e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.14261e-08\tAbsError: 3.97327e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:05\u001b[0m.\u001b[1;36m445\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.2\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.71908e+00\tAbsError: 3.16119e+14\n", - " Region: \"zone_1\"\tRelError: 2.43910e-01\tAbsError: 9.06394e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.43741e-01\tAbsError: 3.18465e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69138e-04\tAbsError: 5.87930e-02\n", - " Region: \"zone_3\"\tRelError: 1.47517e+00\tAbsError: 3.16119e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.52371e-01\tAbsError: 1.84358e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.46585e-01\tAbsError: 1.31761e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.60470e-02\tAbsError: 3.18469e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69138e-04\tAbsError: 5.87930e-02\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.86969e-02\tAbsError: 2.46395e+12\n", - " Region: \"zone_1\"\tRelError: 1.78245e-02\tAbsError: 1.33518e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.78241e-02\tAbsError: 9.72546e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.82867e-07\tAbsError: 1.33421e-04\n", - " Region: \"zone_3\"\tRelError: 8.72445e-04\tAbsError: 2.46395e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.98555e-06\tAbsError: 1.22727e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.80165e-06\tAbsError: 1.23668e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.61275e-04\tAbsError: 9.81989e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.83008e-07\tAbsError: 1.33471e-04\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:06\u001b[0m.\u001b[1;36m541\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 3.58424e-02\tAbsError: 1.06654e+13\n", - " Region: \"zone_1\"\tRelError: 2.02058e-02\tAbsError: 2.22070e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.02052e-02\tAbsError: 4.26072e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.35587e-07\tAbsError: 2.21644e-04\n", - " Region: \"zone_3\"\tRelError: 1.56366e-02\tAbsError: 1.06654e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.99454e-05\tAbsError: 5.31546e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.95304e-05\tAbsError: 5.34998e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55965e-02\tAbsError: 4.28732e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.35746e-07\tAbsError: 2.21701e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.15185e+01\tAbsError: 8.37846e+15\n", - " Region: \"zone_1\"\tRelError: 9.89195e+00\tAbsError: 4.09551e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.89195e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.59013e-09\tAbsError: 9.00677e-07\n", - " Region: \"zone_3\"\tRelError: 1.62652e+00\tAbsError: 8.37846e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69532e-01\tAbsError: 4.63620e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69461e-01\tAbsError: 3.74226e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.75319e-02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.59045e-09\tAbsError: 9.00793e-07\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 6.40527e-03\tAbsError: 8.75105e+11\n", - " Region: \"zone_1\"\tRelError: 6.10804e-03\tAbsError: 2.72042e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.10796e-03\tAbsError: 3.31759e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.79703e-08\tAbsError: 2.71711e-05\n", - " Region: \"zone_3\"\tRelError: 2.97229e-04\tAbsError: 8.75105e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.37726e-06\tAbsError: 4.35905e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.72581e-06\tAbsError: 4.39200e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.94048e-04\tAbsError: 3.35063e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.79995e-08\tAbsError: 2.71819e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.29560e+00\tAbsError: 3.35290e+13\n", - " Region: \"zone_1\"\tRelError: 1.28873e+00\tAbsError: 3.19009e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28871e+00\tAbsError: 2.58882e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72972e-05\tAbsError: 6.01266e-03\n", - " Region: \"zone_3\"\tRelError: 1.00687e+00\tAbsError: 3.35290e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.61852e-01\tAbsError: 2.39644e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.32027e-01\tAbsError: 9.56462e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12978e-01\tAbsError: 2.58961e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72972e-05\tAbsError: 6.01266e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 5.84928e-03\tAbsError: 1.39322e+12\n", - " Region: \"zone_1\"\tRelError: 3.30163e-03\tAbsError: 8.73550e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.30138e-03\tAbsError: 5.81389e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.50332e-07\tAbsError: 8.72969e-05\n", - " Region: \"zone_3\"\tRelError: 2.54765e-03\tAbsError: 1.39322e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.41191e-06\tAbsError: 6.94509e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.86028e-06\tAbsError: 6.98710e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.54013e-03\tAbsError: 5.86552e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.50362e-07\tAbsError: 8.73074e-05\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.35493e-03\tAbsError: 1.68571e+11\n", - " Region: \"zone_1\"\tRelError: 1.29207e-03\tAbsError: 8.63102e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29205e-03\tAbsError: 7.02025e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.47475e-08\tAbsError: 8.62400e-06\n", - " Region: \"zone_3\"\tRelError: 6.28578e-05\tAbsError: 1.68571e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.02466e-07\tAbsError: 8.39739e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.04547e-07\tAbsError: 8.45971e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 6.21260e-05\tAbsError: 7.08891e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.47569e-08\tAbsError: 8.62749e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.94648e+00\tAbsError: 2.98429e+14\n", - " Region: \"zone_1\"\tRelError: 5.14528e-01\tAbsError: 9.09009e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.14355e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72975e-04\tAbsError: 6.01372e-02\n", - " Region: \"zone_3\"\tRelError: 1.43195e+00\tAbsError: 2.98429e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37879e-01\tAbsError: 1.45713e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32394e-01\tAbsError: 1.52715e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.15050e-02\tAbsError: 3.07641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72975e-04\tAbsError: 6.01372e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.60486e-01\tAbsError: 5.15725e+12\n", - " Region: \"zone_1\"\tRelError: 1.67222e-01\tAbsError: 1.31684e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.67215e-01\tAbsError: 1.05212e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.61512e-06\tAbsError: 2.64715e-03\n", - " Region: \"zone_3\"\tRelError: 2.93264e-01\tAbsError: 5.15725e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16225e-01\tAbsError: 2.60346e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.61655e-02\tAbsError: 2.55379e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.08654e-02\tAbsError: 1.05213e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.61791e-06\tAbsError: 2.64812e-03\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 2.15768e-03\tAbsError: 5.43505e+11\n", - " Region: \"zone_1\"\tRelError: 1.21686e-03\tAbsError: 1.55236e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21682e-03\tAbsError: 2.14847e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.44066e-08\tAbsError: 1.55021e-05\n", - " Region: \"zone_3\"\tRelError: 9.40815e-04\tAbsError: 5.43505e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.76219e-07\tAbsError: 2.70992e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.20806e-06\tAbsError: 2.72513e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 9.38587e-04\tAbsError: 2.16821e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.44232e-08\tAbsError: 1.55082e-05\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 4.15724e-04\tAbsError: 5.32265e+10\n", - " Region: \"zone_1\"\tRelError: 3.96435e-04\tAbsError: 1.89996e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.96429e-04\tAbsError: 2.15435e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.44595e-09\tAbsError: 1.89780e-06\n", - " Region: \"zone_3\"\tRelError: 1.92895e-05\tAbsError: 5.32265e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.13529e-08\tAbsError: 2.65160e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.13912e-07\tAbsError: 2.67106e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.90888e-05\tAbsError: 2.17574e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.44817e-09\tAbsError: 1.89863e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.04599e+00\tAbsError: 3.86288e+13\n", - " Region: \"zone_1\"\tRelError: 9.93304e-02\tAbsError: 3.04736e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.93171e-02\tAbsError: 2.58731e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32324e-05\tAbsError: 4.60051e-03\n", - " Region: \"zone_3\"\tRelError: 9.46663e-01\tAbsError: 3.86288e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39748e-01\tAbsError: 2.78668e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.98990e-01\tAbsError: 1.07620e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07912e-01\tAbsError: 2.56750e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32324e-05\tAbsError: 4.60051e-03\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 4.06154e-04\tAbsError: 8.98688e+10\n", - " Region: \"zone_1\"\tRelError: 2.29538e-04\tAbsError: 5.19148e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29523e-04\tAbsError: 4.04707e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.48597e-08\tAbsError: 5.18744e-06\n", - " Region: \"zone_3\"\tRelError: 1.76616e-04\tAbsError: 8.98688e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.93792e-07\tAbsError: 4.48232e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.56876e-07\tAbsError: 4.50456e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76151e-04\tAbsError: 4.08333e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.48652e-08\tAbsError: 5.18949e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.45727e-01\tAbsError: 2.22309e+12\n", - " Region: \"zone_1\"\tRelError: 7.29546e-02\tAbsError: 2.31873e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.29479e-02\tAbsError: 2.32615e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.67039e-06\tAbsError: 2.31641e-03\n", - " Region: \"zone_3\"\tRelError: 7.27727e-02\tAbsError: 2.22309e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.51626e-02\tAbsError: 1.48882e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.60331e-04\tAbsError: 7.34269e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 7.34309e-03\tAbsError: 2.39748e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.67039e-06\tAbsError: 2.31641e-03\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 9.37854e-05\tAbsError: 1.13966e+10\n", - " Region: \"zone_1\"\tRelError: 8.94375e-05\tAbsError: 5.57086e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 8.94359e-05\tAbsError: 4.85882e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59721e-09\tAbsError: 5.56600e-07\n", - " Region: \"zone_3\"\tRelError: 4.34795e-06\tAbsError: 1.13966e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.91086e-08\tAbsError: 5.67760e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.74403e-08\tAbsError: 5.71899e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 4.29981e-06\tAbsError: 4.90653e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59787e-09\tAbsError: 5.56840e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:10\u001b[0m.\u001b[1;36m411\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 1.15\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 1.29151e-04\tAbsError: 2.98537e+10\n", - " Region: \"zone_1\"\tRelError: 7.29015e-05\tAbsError: 1.04164e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 7.28985e-05\tAbsError: 1.28800e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.98013e-09\tAbsError: 1.04035e-06\n", - " Region: \"zone_3\"\tRelError: 5.62494e-05\tAbsError: 2.98537e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.28726e-08\tAbsError: 1.48916e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.37179e-08\tAbsError: 1.49620e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.61198e-05\tAbsError: 1.29987e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.98133e-09\tAbsError: 1.04079e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.81931e-01\tAbsError: 3.51179e+12\n", - " Region: \"zone_1\"\tRelError: 1.43962e-02\tAbsError: 1.26243e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43862e-02\tAbsError: 9.16567e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.94812e-06\tAbsError: 3.45863e-03\n", - " Region: \"zone_3\"\tRelError: 2.67535e-01\tAbsError: 3.51179e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10366e-01\tAbsError: 2.07273e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.20558e-02\tAbsError: 1.43906e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51028e-02\tAbsError: 9.16572e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.94812e-06\tAbsError: 3.45863e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.80600e-02\tAbsError: 1.14808e+12\n", - " Region: \"zone_1\"\tRelError: 1.61112e-02\tAbsError: 1.01064e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.61110e-02\tAbsError: 1.69201e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.85470e-07\tAbsError: 9.93716e-05\n", - " Region: \"zone_3\"\tRelError: 1.94877e-03\tAbsError: 1.14808e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36949e-04\tAbsError: 3.13929e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.34019e-04\tAbsError: 8.34149e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.67751e-03\tAbsError: 1.69786e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.85602e-07\tAbsError: 9.94189e-05\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 2.67419e-05\tAbsError: 5.73187e+09\n", - " Region: \"zone_1\"\tRelError: 1.51156e-05\tAbsError: 3.11729e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51147e-05\tAbsError: 2.66783e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.92195e-10\tAbsError: 3.11462e-07\n", - " Region: \"zone_3\"\tRelError: 1.16262e-05\tAbsError: 5.73187e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.14918e-08\tAbsError: 2.85974e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.65087e-08\tAbsError: 2.87213e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15974e-05\tAbsError: 2.69180e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.92560e-10\tAbsError: 3.11596e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:11\u001b[0m.\u001b[1;36m894\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 1.2\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Iteration: 0\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 1.83034e+01\tAbsError: 2.49126e+18\n", - " Region: \"zone_1\"\tRelError: 7.60404e+00\tAbsError: 4.19624e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.60404e+00\tAbsError: 4.19623e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.70440e-10\tAbsError: 1.29093e-07\n", - " Region: \"zone_3\"\tRelError: 1.06993e+01\tAbsError: 2.49126e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.80717e-01\tAbsError: 1.24361e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.68985e-01\tAbsError: 1.24765e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 9.54962e+00\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.70590e-10\tAbsError: 1.29147e-07\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.22420e-02\tAbsError: 3.50277e+12\n", - " Region: \"zone_1\"\tRelError: 6.27962e-03\tAbsError: 2.19295e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.27335e-03\tAbsError: 1.50745e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.27080e-06\tAbsError: 2.17787e-03\n", - " Region: \"zone_3\"\tRelError: 6.59624e-02\tAbsError: 3.50277e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.67825e-02\tAbsError: 2.11766e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.14380e-04\tAbsError: 1.38511e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.55922e-03\tAbsError: 1.55695e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.27080e-06\tAbsError: 2.17787e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.91190e-03\tAbsError: 7.96289e+10\n", - " Region: \"zone_1\"\tRelError: 2.63465e-03\tAbsError: 6.91735e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.63445e-03\tAbsError: 4.71976e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.99045e-07\tAbsError: 6.91263e-05\n", - " Region: \"zone_3\"\tRelError: 2.77243e-04\tAbsError: 7.96289e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.57432e-06\tAbsError: 6.01559e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.39554e-06\tAbsError: 1.94730e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66074e-04\tAbsError: 4.94439e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.99153e-07\tAbsError: 6.91621e-05\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.66836e+00\tAbsError: 5.26750e+17\n", - " Region: \"zone_1\"\tRelError: 5.40408e-01\tAbsError: 2.47466e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.33451e-01\tAbsError: 3.19514e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.95714e-03\tAbsError: 2.44271e+00\n", - " Region: \"zone_3\"\tRelError: 1.12795e+00\tAbsError: 5.26750e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.68024e-01\tAbsError: 2.63837e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.68166e-01\tAbsError: 2.62913e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 5.84807e-01\tAbsError: 3.19525e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.95799e-03\tAbsError: 2.44293e+00\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.61560e-03\tAbsError: 1.05154e+12\n", - " Region: \"zone_1\"\tRelError: 2.24369e-04\tAbsError: 1.45744e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.23954e-04\tAbsError: 1.49315e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14373e-07\tAbsError: 1.44251e-04\n", - " Region: \"zone_3\"\tRelError: 1.39123e-03\tAbsError: 1.05154e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46580e-04\tAbsError: 2.71204e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.31750e-04\tAbsError: 7.80335e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11248e-03\tAbsError: 1.49726e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14534e-07\tAbsError: 1.44309e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.10927e+00\tAbsError: 2.88051e+18\n", - " Region: \"zone_1\"\tRelError: 4.40935e+00\tAbsError: 4.29331e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.40935e+00\tAbsError: 4.29330e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.92687e-10\tAbsError: 6.72666e-08\n", - " Region: \"zone_3\"\tRelError: 2.69992e+00\tAbsError: 2.88051e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.57634e-01\tAbsError: 1.43872e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.49377e-01\tAbsError: 1.44179e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 1.59291e+00\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.92765e-10\tAbsError: 6.72951e-08\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.71121e-03\tAbsError: 6.42400e+10\n", - " Region: \"zone_1\"\tRelError: 1.54492e-03\tAbsError: 2.42438e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.54492e-03\tAbsError: 5.72492e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.79994e-09\tAbsError: 2.36713e-06\n", - " Region: \"zone_3\"\tRelError: 1.66287e-04\tAbsError: 6.42400e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.30507e-06\tAbsError: 2.63420e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.25914e-06\tAbsError: 3.78980e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55716e-04\tAbsError: 5.72919e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.80392e-09\tAbsError: 2.36856e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 5.19734e-01\tAbsError: 1.97992e+16\n", - " Region: \"zone_1\"\tRelError: 2.37038e-01\tAbsError: 2.07687e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 2.31212e-01\tAbsError: 2.58948e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.82632e-03\tAbsError: 2.05097e+00\n", - " Region: \"zone_3\"\tRelError: 2.82695e-01\tAbsError: 1.97992e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.49371e-02\tAbsError: 9.97403e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.96727e-02\tAbsError: 9.82517e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.12259e-01\tAbsError: 2.58980e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.82676e-03\tAbsError: 2.05114e+00\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.04484e-04\tAbsError: 1.25305e+11\n", - " Region: \"zone_1\"\tRelError: 1.66225e-04\tAbsError: 5.88372e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66056e-04\tAbsError: 7.31641e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69190e-07\tAbsError: 5.87641e-05\n", - " Region: \"zone_3\"\tRelError: 4.38259e-04\tAbsError: 1.25305e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07349e-05\tAbsError: 8.57569e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.06394e-05\tAbsError: 3.95479e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.16715e-04\tAbsError: 7.69558e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69190e-07\tAbsError: 5.87641e-05\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.04733e+00\tAbsError: 5.25888e+17\n", - " Region: \"zone_1\"\tRelError: 2.75293e-01\tAbsError: 3.17385e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66393e-01\tAbsError: 3.30987e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.89983e-03\tAbsError: 3.14075e+00\n", - " Region: \"zone_3\"\tRelError: 7.72042e-01\tAbsError: 5.25888e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.54638e-01\tAbsError: 2.63307e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.49625e-01\tAbsError: 2.62581e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 2.58877e-01\tAbsError: 3.31000e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.90099e-03\tAbsError: 3.14105e+00\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.98365e-05\tAbsError: 1.74812e+09\n", - " Region: \"zone_1\"\tRelError: 2.67203e-05\tAbsError: 3.71573e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.67096e-05\tAbsError: 8.84078e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06872e-08\tAbsError: 3.71484e-06\n", - " Region: \"zone_3\"\tRelError: 3.11622e-06\tAbsError: 1.74812e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.51296e-07\tAbsError: 1.52564e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.22090e-07\tAbsError: 2.22487e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.83214e-06\tAbsError: 9.16942e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06883e-08\tAbsError: 3.71526e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:15\u001b[0m.\u001b[1;36m058\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:15\u001b[0m.\u001b[1;36m058\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.4136363636363636\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.52761e-01\tAbsError: 2.62797e+16\n", - " Region: \"zone_1\"\tRelError: 9.76584e-02\tAbsError: 3.86718e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 8.68408e-02\tAbsError: 1.06597e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08176e-02\tAbsError: 3.85652e+00\n", - " Region: \"zone_3\"\tRelError: 1.55102e-01\tAbsError: 2.62797e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.12443e-02\tAbsError: 9.31974e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.14102e-03\tAbsError: 1.69599e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 8.68796e-02\tAbsError: 1.06615e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08372e-02\tAbsError: 3.86367e+00\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.49542e-04\tAbsError: 5.25658e+10\n", - " Region: \"zone_1\"\tRelError: 3.67449e-05\tAbsError: 6.09086e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.67275e-05\tAbsError: 4.65416e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73626e-08\tAbsError: 6.04431e-06\n", - " Region: \"zone_3\"\tRelError: 1.12797e-04\tAbsError: 5.25658e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.87848e-06\tAbsError: 1.95402e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.83780e-06\tAbsError: 3.30256e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03063e-04\tAbsError: 4.67695e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73703e-08\tAbsError: 6.04716e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 3.89417e-01\tAbsError: 2.54221e+16\n", - " Region: \"zone_1\"\tRelError: 1.69711e-01\tAbsError: 4.10046e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.58247e-01\tAbsError: 2.58978e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.14640e-02\tAbsError: 4.07456e+00\n", - " Region: \"zone_3\"\tRelError: 2.19706e-01\tAbsError: 2.54221e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73312e-02\tAbsError: 1.26603e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.56527e-02\tAbsError: 1.27618e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35257e-01\tAbsError: 2.58670e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.14658e-02\tAbsError: 4.07523e+00\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.07616e+01\tAbsError: 8.63834e+15\n", - " Region: \"zone_1\"\tRelError: 9.09370e+00\tAbsError: 4.18730e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.09370e+00\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.46502e-10\tAbsError: 1.55345e-07\n", - " Region: \"zone_3\"\tRelError: 1.66793e+00\tAbsError: 8.63834e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77440e-01\tAbsError: 5.07199e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.77420e-01\tAbsError: 3.56635e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13066e-01\tAbsError: 4.18729e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.46671e-10\tAbsError: 1.55403e-07\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 4.09087e-01\tAbsError: 3.99201e+16\n", - " Region: \"zone_1\"\tRelError: 1.13300e-01\tAbsError: 4.80576e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 9.96392e-02\tAbsError: 1.27897e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36607e-02\tAbsError: 4.80448e+00\n", - " Region: \"zone_3\"\tRelError: 2.95787e-01\tAbsError: 3.99201e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36733e-01\tAbsError: 1.96602e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.22422e-02\tAbsError: 2.02599e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13131e-01\tAbsError: 1.28517e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36804e-02\tAbsError: 4.81150e+00\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.34616e-05\tAbsError: 4.93077e+09\n", - " Region: \"zone_1\"\tRelError: 6.39653e-06\tAbsError: 2.70521e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.38875e-06\tAbsError: 2.92925e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.78050e-09\tAbsError: 2.70228e-06\n", - " Region: \"zone_3\"\tRelError: 1.70651e-05\tAbsError: 4.93077e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.08407e-07\tAbsError: 3.64057e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.02769e-07\tAbsError: 1.29020e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.62461e-05\tAbsError: 3.07627e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.78090e-09\tAbsError: 2.70245e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.31509e-01\tAbsError: 6.53670e+16\n", - " Region: \"zone_1\"\tRelError: 7.81600e-02\tAbsError: 2.54224e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 7.09907e-02\tAbsError: 1.22635e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.16926e-03\tAbsError: 2.52998e+00\n", - " Region: \"zone_3\"\tRelError: 1.53349e-01\tAbsError: 6.53670e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.15979e-02\tAbsError: 3.23947e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.35663e-02\tAbsError: 3.29723e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 7.10136e-02\tAbsError: 1.22654e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.17081e-03\tAbsError: 2.53053e+00\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:17\u001b[0m.\u001b[1;36m293\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.3\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.69633e+00\tAbsError: 3.30694e+14\n", - " Region: \"zone_1\"\tRelError: 2.04130e-01\tAbsError: 8.38465e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03981e-01\tAbsError: 3.18465e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.49617e-04\tAbsError: 5.20000e-02\n", - " Region: \"zone_3\"\tRelError: 1.49220e+00\tAbsError: 3.30694e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53231e-01\tAbsError: 2.41427e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.46012e-01\tAbsError: 8.92668e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.28037e-02\tAbsError: 3.18468e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.49617e-04\tAbsError: 5.20000e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.98801e-01\tAbsError: 3.32657e+16\n", - " Region: \"zone_1\"\tRelError: 1.02828e-01\tAbsError: 2.82782e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02028e-01\tAbsError: 1.18619e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.00031e-04\tAbsError: 2.81596e-01\n", - " Region: \"zone_3\"\tRelError: 1.95973e-01\tAbsError: 3.32657e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.03301e-02\tAbsError: 1.63093e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.05065e-02\tAbsError: 1.69564e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14336e-01\tAbsError: 1.19290e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.00341e-04\tAbsError: 2.81704e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.06521e-01\tAbsError: 5.25690e+16\n", - " Region: \"zone_1\"\tRelError: 2.96156e-02\tAbsError: 2.10225e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 2.36714e-02\tAbsError: 4.41949e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.94425e-03\tAbsError: 2.10181e+00\n", - " Region: \"zone_3\"\tRelError: 7.69054e-02\tAbsError: 5.25690e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.50907e-02\tAbsError: 2.61546e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.12925e-02\tAbsError: 2.64144e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.45709e-02\tAbsError: 4.42076e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.95136e-03\tAbsError: 2.10432e+00\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 9.54016e+00\tAbsError: 8.28773e+15\n", - " Region: \"zone_1\"\tRelError: 7.90066e+00\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.90066e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.70846e-10\tAbsError: 1.98729e-07\n", - " Region: \"zone_3\"\tRelError: 1.63951e+00\tAbsError: 8.28773e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69626e-01\tAbsError: 4.72857e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69607e-01\tAbsError: 3.55916e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00272e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.71110e-10\tAbsError: 1.98825e-07\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.08628e+00\tAbsError: 7.45591e+13\n", - " Region: \"zone_1\"\tRelError: 7.71598e-02\tAbsError: 3.28695e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.71397e-02\tAbsError: 2.58833e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.01007e-05\tAbsError: 6.98622e-03\n", - " Region: \"zone_3\"\tRelError: 1.00912e+00\tAbsError: 7.45591e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.62470e-01\tAbsError: 4.45904e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.40211e-01\tAbsError: 2.99687e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06420e-01\tAbsError: 2.58870e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.01007e-05\tAbsError: 6.98622e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.96187e-02\tAbsError: 1.75053e+15\n", - " Region: \"zone_1\"\tRelError: 1.42724e-02\tAbsError: 1.45028e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.38595e-02\tAbsError: 8.94746e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.12887e-04\tAbsError: 1.44939e-01\n", - " Region: \"zone_3\"\tRelError: 2.53464e-02\tAbsError: 1.75053e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.74622e-03\tAbsError: 8.55545e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.60907e-03\tAbsError: 8.94984e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55782e-02\tAbsError: 8.99214e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.12890e-04\tAbsError: 1.44947e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.05243e-02\tAbsError: 1.71928e+16\n", - " Region: \"zone_1\"\tRelError: 1.39003e-02\tAbsError: 9.75908e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36257e-02\tAbsError: 4.95045e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.74527e-04\tAbsError: 9.70958e-02\n", - " Region: \"zone_3\"\tRelError: 4.66240e-02\tAbsError: 1.71928e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.43183e-02\tAbsError: 8.46411e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.92900e-03\tAbsError: 8.72870e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41020e-02\tAbsError: 4.97560e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.74643e-04\tAbsError: 9.71365e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.57084e+00\tAbsError: 2.89575e+14\n", - " Region: \"zone_1\"\tRelError: 1.26543e-01\tAbsError: 8.72430e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.26381e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62480e-04\tAbsError: 5.64794e-02\n", - " Region: \"zone_3\"\tRelError: 1.44430e+00\tAbsError: 2.89575e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37983e-01\tAbsError: 1.66847e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32917e-01\tAbsError: 1.22728e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.32359e-02\tAbsError: 3.07641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62480e-04\tAbsError: 5.64794e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.37573e-01\tAbsError: 2.62583e+13\n", - " Region: \"zone_1\"\tRelError: 2.66856e-02\tAbsError: 1.29341e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66787e-02\tAbsError: 1.05212e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.94244e-06\tAbsError: 2.41284e-03\n", - " Region: \"zone_3\"\tRelError: 3.10887e-01\tAbsError: 2.62583e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14741e-01\tAbsError: 1.27736e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.92334e-02\tAbsError: 1.34847e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.69065e-02\tAbsError: 1.05213e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.94691e-06\tAbsError: 2.41446e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.84579e-02\tAbsError: 9.27268e+14\n", - " Region: \"zone_1\"\tRelError: 7.06495e-03\tAbsError: 1.50817e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.02210e-03\tAbsError: 4.11553e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.28501e-05\tAbsError: 1.50405e-02\n", - " Region: \"zone_3\"\tRelError: 1.13930e-02\tAbsError: 9.27268e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.00214e-03\tAbsError: 4.61804e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.45972e-03\tAbsError: 4.65464e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.88825e-03\tAbsError: 4.13778e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.28501e-05\tAbsError: 1.50405e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 5.11179e-03\tAbsError: 7.70441e+14\n", - " Region: \"zone_1\"\tRelError: 1.35889e-03\tAbsError: 5.45003e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20454e-03\tAbsError: 2.78425e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54352e-04\tAbsError: 5.44725e-02\n", - " Region: \"zone_3\"\tRelError: 3.75290e-03\tAbsError: 7.70441e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.99204e-03\tAbsError: 3.85016e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.80199e-04\tAbsError: 3.85425e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.26308e-04\tAbsError: 2.79655e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54352e-04\tAbsError: 5.44725e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.08933e+00\tAbsError: 3.08258e+13\n", - " Region: \"zone_1\"\tRelError: 1.39766e-01\tAbsError: 3.14532e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39750e-01\tAbsError: 2.58726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60540e-05\tAbsError: 5.58058e-03\n", - " Region: \"zone_3\"\tRelError: 9.49568e-01\tAbsError: 3.08258e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40223e-01\tAbsError: 2.27975e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.01508e-01\tAbsError: 8.02831e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07820e-01\tAbsError: 2.58966e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60540e-05\tAbsError: 5.58058e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.61545e-02\tAbsError: 3.83266e+12\n", - " Region: \"zone_1\"\tRelError: 2.81411e-03\tAbsError: 1.78747e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.80904e-03\tAbsError: 2.72818e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.06913e-06\tAbsError: 1.76019e-03\n", - " Region: \"zone_3\"\tRelError: 7.33404e-02\tAbsError: 3.83266e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.46251e-02\tAbsError: 2.27967e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.36878e-03\tAbsError: 1.55299e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.34146e-03\tAbsError: 2.95939e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.06913e-06\tAbsError: 1.76019e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.71738e-03\tAbsError: 1.07667e+14\n", - " Region: \"zone_1\"\tRelError: 1.03630e-03\tAbsError: 5.76985e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01984e-03\tAbsError: 4.42848e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.64621e-05\tAbsError: 5.76542e-03\n", - " Region: \"zone_3\"\tRelError: 1.68108e-03\tAbsError: 1.07667e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.64362e-04\tAbsError: 5.32517e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.53711e-04\tAbsError: 5.44154e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14654e-03\tAbsError: 4.45105e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.64621e-05\tAbsError: 5.76542e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.81043e-03\tAbsError: 4.89759e+14\n", - " Region: \"zone_1\"\tRelError: 7.77711e-04\tAbsError: 4.18472e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.65896e-04\tAbsError: 1.51951e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18145e-05\tAbsError: 4.16952e-03\n", - " Region: \"zone_3\"\tRelError: 2.03272e-03\tAbsError: 4.89759e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.36181e-04\tAbsError: 2.42285e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.91630e-04\tAbsError: 2.47473e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.93091e-04\tAbsError: 1.52676e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18155e-05\tAbsError: 4.16958e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.94758e-01\tAbsError: 4.98642e+12\n", - " Region: \"zone_1\"\tRelError: 2.19383e-02\tAbsError: 1.22221e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.19295e-02\tAbsError: 9.16564e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.79291e-06\tAbsError: 3.05651e-03\n", - " Region: \"zone_3\"\tRelError: 2.72820e-01\tAbsError: 4.98642e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12699e-01\tAbsError: 2.77867e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.23181e-02\tAbsError: 2.20775e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77940e-02\tAbsError: 9.16568e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.79389e-06\tAbsError: 3.05683e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.17479e-03\tAbsError: 8.38513e+11\n", - " Region: \"zone_1\"\tRelError: 9.80301e-05\tAbsError: 1.13249e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.77084e-05\tAbsError: 1.25766e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.21759e-07\tAbsError: 1.11992e-04\n", - " Region: \"zone_3\"\tRelError: 1.07676e-03\tAbsError: 8.38513e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06684e-04\tAbsError: 2.03880e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.34123e-05\tAbsError: 6.34633e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 8.86344e-04\tAbsError: 1.26205e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.21884e-07\tAbsError: 1.12037e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 9.60517e-04\tAbsError: 3.70140e+13\n", - " Region: \"zone_1\"\tRelError: 3.79391e-04\tAbsError: 8.82747e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.76874e-04\tAbsError: 1.49370e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.51627e-06\tAbsError: 8.81253e-04\n", - " Region: \"zone_3\"\tRelError: 5.81126e-04\tAbsError: 3.70140e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.42292e-05\tAbsError: 1.82854e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.05886e-05\tAbsError: 1.87285e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.23791e-04\tAbsError: 1.50155e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.51686e-06\tAbsError: 8.81464e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.90949e-04\tAbsError: 4.62352e+13\n", - " Region: \"zone_1\"\tRelError: 7.67261e-05\tAbsError: 1.67089e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.19872e-05\tAbsError: 1.28358e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73887e-06\tAbsError: 1.66960e-03\n", - " Region: \"zone_3\"\tRelError: 2.14223e-04\tAbsError: 4.62352e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.49627e-05\tAbsError: 2.29665e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.00098e-05\tAbsError: 2.32687e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.45113e-05\tAbsError: 1.28948e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73889e-06\tAbsError: 1.66962e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.73338e-02\tAbsError: 3.09182e+12\n", - " Region: \"zone_1\"\tRelError: 1.11598e-02\tAbsError: 1.65988e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11551e-02\tAbsError: 1.42279e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73882e-06\tAbsError: 1.64565e-03\n", - " Region: \"zone_3\"\tRelError: 6.61739e-02\tAbsError: 3.09182e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.71921e-02\tAbsError: 1.98622e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.49402e-04\tAbsError: 1.10560e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.42774e-03\tAbsError: 1.50865e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73882e-06\tAbsError: 1.64565e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.11158e-04\tAbsError: 9.57185e+10\n", - " Region: \"zone_1\"\tRelError: 4.17863e-05\tAbsError: 4.74842e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.16497e-05\tAbsError: 6.09462e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36564e-07\tAbsError: 4.74233e-05\n", - " Region: \"zone_3\"\tRelError: 3.69372e-04\tAbsError: 9.57185e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.25911e-06\tAbsError: 6.70220e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.19571e-06\tAbsError: 2.86965e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.56780e-04\tAbsError: 6.36408e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36564e-07\tAbsError: 4.74233e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.64548e-04\tAbsError: 6.13730e+12\n", - " Region: \"zone_1\"\tRelError: 6.45712e-05\tAbsError: 2.85998e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.37552e-05\tAbsError: 2.31313e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.15960e-07\tAbsError: 2.85767e-04\n", - " Region: \"zone_3\"\tRelError: 9.99767e-05\tAbsError: 6.13730e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.20916e-05\tAbsError: 3.04900e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.53543e-05\tAbsError: 3.08830e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.17148e-05\tAbsError: 2.33098e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.16042e-07\tAbsError: 2.85798e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.09161e-04\tAbsError: 1.86881e+13\n", - " Region: \"zone_1\"\tRelError: 3.26597e-05\tAbsError: 1.87205e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.21288e-05\tAbsError: 4.35351e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.30847e-07\tAbsError: 1.86769e-04\n", - " Region: \"zone_3\"\tRelError: 7.65013e-05\tAbsError: 1.86881e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07377e-05\tAbsError: 9.31169e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.19499e-05\tAbsError: 9.37639e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.32829e-05\tAbsError: 4.37180e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.30847e-07\tAbsError: 1.86769e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.35940e-03\tAbsError: 7.91644e+11\n", - " Region: \"zone_1\"\tRelError: 6.17001e-04\tAbsError: 1.42075e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.16596e-04\tAbsError: 1.18665e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.04748e-07\tAbsError: 1.40888e-04\n", - " Region: \"zone_3\"\tRelError: 7.42401e-04\tAbsError: 7.91644e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00211e-04\tAbsError: 1.88344e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.60094e-05\tAbsError: 6.03301e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.55776e-04\tAbsError: 1.18974e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.04912e-07\tAbsError: 1.40947e-04\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 4.97822e-05\tAbsError: 1.78863e+12\n", - " Region: \"zone_1\"\tRelError: 1.99209e-05\tAbsError: 5.22253e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.97720e-05\tAbsError: 7.17372e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.48921e-07\tAbsError: 5.21536e-05\n", - " Region: \"zone_3\"\tRelError: 2.98612e-05\tAbsError: 1.78863e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14705e-06\tAbsError: 8.88308e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.32143e-06\tAbsError: 9.00324e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.22438e-05\tAbsError: 7.23110e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.48977e-07\tAbsError: 5.21742e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.05534e-04\tAbsError: 4.21784e+10\n", - " Region: \"zone_1\"\tRelError: 1.03068e-05\tAbsError: 4.66453e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02935e-05\tAbsError: 3.88153e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32897e-08\tAbsError: 4.62572e-06\n", - " Region: \"zone_3\"\tRelError: 9.52277e-05\tAbsError: 4.21784e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.05233e-06\tAbsError: 1.53249e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.02568e-06\tAbsError: 2.68535e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 8.91364e-05\tAbsError: 3.88184e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32960e-08\tAbsError: 4.62800e-06\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.45996e-05\tAbsError: 2.40000e+12\n", - " Region: \"zone_1\"\tRelError: 4.26432e-06\tAbsError: 6.51115e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.07939e-06\tAbsError: 4.99211e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84928e-07\tAbsError: 6.50615e-05\n", - " Region: \"zone_3\"\tRelError: 1.03352e-05\tAbsError: 2.40000e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.62973e-06\tAbsError: 1.19621e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.29508e-06\tAbsError: 1.20379e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.22543e-06\tAbsError: 5.01223e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84982e-07\tAbsError: 6.50814e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.02141e-03\tAbsError: 1.23957e+11\n", - " Region: \"zone_1\"\tRelError: 5.52143e-04\tAbsError: 4.11028e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.52024e-04\tAbsError: 7.43261e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18138e-07\tAbsError: 4.10285e-05\n", - " Region: \"zone_3\"\tRelError: 4.69263e-04\tAbsError: 1.23957e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.58109e-06\tAbsError: 8.33431e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.49437e-06\tAbsError: 4.06143e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.50070e-04\tAbsError: 7.83274e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18138e-07\tAbsError: 4.10285e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.56608e-05\tAbsError: 3.69526e+09\n", - " Region: \"zone_1\"\tRelError: 1.59073e-06\tAbsError: 2.18297e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.58445e-06\tAbsError: 2.39172e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.27962e-09\tAbsError: 2.18058e-06\n", - " Region: \"zone_3\"\tRelError: 1.40700e-05\tAbsError: 3.69526e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.31303e-07\tAbsError: 2.80779e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.27370e-07\tAbsError: 8.87479e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36051e-05\tAbsError: 2.49316e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.28025e-09\tAbsError: 2.18083e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:26\u001b[0m.\u001b[1;36m725\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:26\u001b[0m.\u001b[1;36m725\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5181818181818182\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:27\u001b[0m.\u001b[1;36m529\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.30911e-04\tAbsError: 3.51442e+10\n", - " Region: \"zone_1\"\tRelError: 6.81885e-05\tAbsError: 6.92614e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.81687e-05\tAbsError: 3.42472e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.97989e-08\tAbsError: 6.89189e-06\n", - " Region: \"zone_3\"\tRelError: 6.27220e-05\tAbsError: 3.51442e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91737e-06\tAbsError: 1.11617e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.89123e-06\tAbsError: 2.39825e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.68936e-05\tAbsError: 3.42673e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.98072e-08\tAbsError: 6.89488e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:28\u001b[0m.\u001b[1;36m182\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.27541e+00\tAbsError: 8.60418e+15\n", - " Region: \"zone_1\"\tRelError: 6.58364e+00\tAbsError: 4.18730e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.58364e+00\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.17406e-10\tAbsError: 1.45288e-07\n", - " Region: \"zone_3\"\tRelError: 1.69177e+00\tAbsError: 8.60418e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77453e-01\tAbsError: 5.04627e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.77410e-01\tAbsError: 3.55791e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36912e-01\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.17616e-10\tAbsError: 1.45364e-07\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 4.91977e-05\tAbsError: 5.89586e+09\n", - " Region: \"zone_1\"\tRelError: 2.66095e-05\tAbsError: 1.68142e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66047e-05\tAbsError: 3.56714e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.83123e-09\tAbsError: 1.67785e-06\n", - " Region: \"zone_3\"\tRelError: 2.25882e-05\tAbsError: 5.89586e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.48785e-07\tAbsError: 4.10020e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.43251e-07\tAbsError: 1.79565e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.16913e-05\tAbsError: 3.75397e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.83123e-09\tAbsError: 1.67785e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:28\u001b[0m.\u001b[1;36m716\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.4\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.83363e+00\tAbsError: 8.77764e+14\n", - " Region: \"zone_1\"\tRelError: 3.25771e-01\tAbsError: 7.35950e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.25651e-01\tAbsError: 3.18464e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20135e-04\tAbsError: 4.17486e-02\n", - " Region: \"zone_3\"\tRelError: 1.50785e+00\tAbsError: 8.77764e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.54712e-01\tAbsError: 5.12926e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.40765e-01\tAbsError: 3.64838e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12257e-01\tAbsError: 3.18466e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20135e-04\tAbsError: 4.17486e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.62552e+00\tAbsError: 8.26510e+15\n", - " Region: \"zone_1\"\tRelError: 6.97719e+00\tAbsError: 4.09546e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.97719e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.33437e-10\tAbsError: 3.24924e-07\n", - " Region: \"zone_3\"\tRelError: 1.64833e+00\tAbsError: 8.26510e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69652e-01\tAbsError: 4.84454e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69632e-01\tAbsError: 3.42056e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09044e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.33825e-10\tAbsError: 3.25065e-07\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.23424e+00\tAbsError: 4.42838e+14\n", - " Region: \"zone_1\"\tRelError: 2.36025e-01\tAbsError: 3.39690e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.36002e-01\tAbsError: 2.58732e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.32959e-05\tAbsError: 8.09586e-03\n", - " Region: \"zone_3\"\tRelError: 9.98217e-01\tAbsError: 4.42838e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.64238e-01\tAbsError: 2.16900e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.32347e-01\tAbsError: 2.25938e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01608e-01\tAbsError: 2.58503e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.32959e-05\tAbsError: 8.09586e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.56210e+00\tAbsError: 2.88655e+14\n", - " Region: \"zone_1\"\tRelError: 1.01850e-01\tAbsError: 8.11752e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01705e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.45044e-04\tAbsError: 5.04116e-02\n", - " Region: \"zone_3\"\tRelError: 1.46025e+00\tAbsError: 2.88655e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39145e-01\tAbsError: 2.10222e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.31918e-01\tAbsError: 7.84329e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.90395e-02\tAbsError: 3.07640e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.45044e-04\tAbsError: 5.04116e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.75475e-01\tAbsError: 1.99867e+14\n", - " Region: \"zone_1\"\tRelError: 3.34759e-02\tAbsError: 1.58921e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.34604e-02\tAbsError: 1.05212e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54730e-05\tAbsError: 5.37087e-03\n", - " Region: \"zone_3\"\tRelError: 3.41999e-01\tAbsError: 1.99867e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12024e-01\tAbsError: 8.98614e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.57822e-02\tAbsError: 1.10005e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.41777e-02\tAbsError: 1.05213e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54821e-05\tAbsError: 5.37408e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.02466e+00\tAbsError: 6.04267e+13\n", - " Region: \"zone_1\"\tRelError: 7.18592e-02\tAbsError: 3.22577e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.18409e-02\tAbsError: 2.58878e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83272e-05\tAbsError: 6.36990e-03\n", - " Region: \"zone_3\"\tRelError: 9.52804e-01\tAbsError: 6.04267e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40508e-01\tAbsError: 3.80417e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.10167e-01\tAbsError: 2.23851e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02110e-01\tAbsError: 2.58991e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83272e-05\tAbsError: 6.36990e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.33968e-02\tAbsError: 3.34257e+13\n", - " Region: \"zone_1\"\tRelError: 1.43902e-02\tAbsError: 3.37019e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43809e-02\tAbsError: 1.48707e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.27817e-06\tAbsError: 3.22148e-03\n", - " Region: \"zone_3\"\tRelError: 7.90066e-02\tAbsError: 3.34257e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.13103e-02\tAbsError: 1.91554e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.18326e-03\tAbsError: 1.42703e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15037e-02\tAbsError: 1.58044e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.27817e-06\tAbsError: 3.22148e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.07050e-01\tAbsError: 1.83634e+13\n", - " Region: \"zone_1\"\tRelError: 2.24108e-02\tAbsError: 1.12606e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.24048e-02\tAbsError: 9.16557e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.02744e-06\tAbsError: 2.09499e-03\n", - " Region: \"zone_3\"\tRelError: 2.84640e-01\tAbsError: 1.83634e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.09245e-01\tAbsError: 8.86934e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.28005e-02\tAbsError: 9.49405e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25878e-02\tAbsError: 9.16561e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.02994e-06\tAbsError: 2.09586e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.63934e-03\tAbsError: 1.49207e+12\n", - " Region: \"zone_1\"\tRelError: 6.19467e-04\tAbsError: 2.24642e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.18826e-04\tAbsError: 1.84309e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.41085e-07\tAbsError: 2.22799e-04\n", - " Region: \"zone_3\"\tRelError: 3.01987e-03\tAbsError: 1.49207e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.23665e-04\tAbsError: 4.38788e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.32776e-04\tAbsError: 1.05329e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66279e-03\tAbsError: 1.84755e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.41085e-07\tAbsError: 2.22799e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.39650e-02\tAbsError: 2.30731e+12\n", - " Region: \"zone_1\"\tRelError: 9.33244e-04\tAbsError: 2.05118e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 9.27371e-04\tAbsError: 1.17101e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.87337e-06\tAbsError: 2.03947e-03\n", - " Region: \"zone_3\"\tRelError: 6.30318e-02\tAbsError: 2.30731e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.63237e-02\tAbsError: 1.57438e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.61914e-04\tAbsError: 7.32926e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 6.34034e-03\tAbsError: 1.22701e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.87337e-06\tAbsError: 2.03947e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 8.04014e-04\tAbsError: 1.78082e+11\n", - " Region: \"zone_1\"\tRelError: 1.64236e-04\tAbsError: 8.99450e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.63978e-04\tAbsError: 1.15245e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.58711e-07\tAbsError: 8.98298e-05\n", - " Region: \"zone_3\"\tRelError: 6.39777e-04\tAbsError: 1.78082e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07882e-05\tAbsError: 1.17921e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.06608e-05\tAbsError: 6.01615e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 6.18070e-04\tAbsError: 1.20248e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.58802e-07\tAbsError: 8.98625e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.79721e-03\tAbsError: 9.76589e+11\n", - " Region: \"zone_1\"\tRelError: 1.82738e-04\tAbsError: 8.39323e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82502e-04\tAbsError: 1.48235e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36874e-07\tAbsError: 8.24499e-05\n", - " Region: \"zone_3\"\tRelError: 1.61447e-03\tAbsError: 9.76589e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10820e-04\tAbsError: 2.51654e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.02342e-04\tAbsError: 7.24935e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40107e-03\tAbsError: 1.48793e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36983e-07\tAbsError: 8.24891e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.88086e-04\tAbsError: 8.35552e+10\n", - " Region: \"zone_1\"\tRelError: 5.73074e-05\tAbsError: 7.74193e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.72853e-05\tAbsError: 5.99789e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.20722e-08\tAbsError: 7.68195e-06\n", - " Region: \"zone_3\"\tRelError: 2.30778e-04\tAbsError: 8.35552e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.19425e-06\tAbsError: 3.65804e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.15002e-06\tAbsError: 4.69748e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20412e-04\tAbsError: 6.12813e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.20814e-08\tAbsError: 7.68536e-06\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.68582e-04\tAbsError: 6.39514e+10\n", - " Region: \"zone_1\"\tRelError: 3.10151e-05\tAbsError: 5.94800e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.08440e-05\tAbsError: 4.08298e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71164e-07\tAbsError: 5.94392e-05\n", - " Region: \"zone_3\"\tRelError: 2.37567e-04\tAbsError: 6.39514e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16150e-06\tAbsError: 5.01904e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.80228e-06\tAbsError: 1.37610e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29432e-04\tAbsError: 4.25523e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71229e-07\tAbsError: 5.94601e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.80999e-05\tAbsError: 6.55525e+09\n", - " Region: \"zone_1\"\tRelError: 5.74155e-06\tAbsError: 4.57456e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.72840e-06\tAbsError: 4.04596e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.31523e-08\tAbsError: 4.57052e-06\n", - " Region: \"zone_3\"\tRelError: 2.23583e-05\tAbsError: 6.55525e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.58194e-07\tAbsError: 4.71867e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.45841e-07\tAbsError: 1.83658e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.16411e-05\tAbsError: 4.21062e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.31539e-08\tAbsError: 4.57114e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:36\u001b[0m.\u001b[1;36m356\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:36\u001b[0m.\u001b[1;36m356\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6227272727272727\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.61549e-04\tAbsError: 5.47840e+10\n", - " Region: \"zone_1\"\tRelError: 1.81900e-05\tAbsError: 1.93945e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81846e-05\tAbsError: 4.89694e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.43105e-09\tAbsError: 1.89048e-06\n", - " Region: \"zone_3\"\tRelError: 1.43359e-04\tAbsError: 5.47840e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.04114e-06\tAbsError: 2.20323e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.00674e-06\tAbsError: 3.27517e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35306e-04\tAbsError: 4.90033e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.43421e-09\tAbsError: 1.89162e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.73597e+00\tAbsError: 8.78832e+15\n", - " Region: \"zone_1\"\tRelError: 4.00235e+00\tAbsError: 4.18730e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.00235e+00\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.45782e-10\tAbsError: 1.89960e-07\n", - " Region: \"zone_3\"\tRelError: 1.73361e+00\tAbsError: 8.78832e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77399e-01\tAbsError: 4.74842e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.77278e-01\tAbsError: 4.03990e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.78937e-01\tAbsError: 4.18729e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.46049e-10\tAbsError: 1.90057e-07\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.55715e-06\tAbsError: 1.55369e+09\n", - " Region: \"zone_1\"\tRelError: 2.75443e-07\tAbsError: 3.15707e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66361e-07\tAbsError: 7.16801e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.08162e-09\tAbsError: 3.15635e-06\n", - " Region: \"zone_3\"\tRelError: 2.28171e-06\tAbsError: 1.55369e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01860e-07\tAbsError: 1.23171e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.92720e-08\tAbsError: 3.21980e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.10150e-06\tAbsError: 7.37244e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.08225e-09\tAbsError: 3.15662e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:38\u001b[0m.\u001b[1;36m102\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.5\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.94703e+00\tAbsError: 4.41099e+15\n", - " Region: \"zone_1\"\tRelError: 4.22002e-01\tAbsError: 6.98420e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.21892e-01\tAbsError: 3.18463e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.09347e-04\tAbsError: 3.79957e-02\n", - " Region: \"zone_3\"\tRelError: 1.52503e+00\tAbsError: 4.41099e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53305e-01\tAbsError: 2.09959e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.26550e-01\tAbsError: 2.31140e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.45067e-01\tAbsError: 3.18463e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.09347e-04\tAbsError: 3.79957e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.44671e+02\tAbsError: 8.23352e+15\n", - " Region: \"zone_1\"\tRelError: 5.43003e+02\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.43003e+02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.11267e-10\tAbsError: 1.43080e-07\n", - " Region: \"zone_3\"\tRelError: 1.66763e+00\tAbsError: 8.23352e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.84587e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69628e-01\tAbsError: 3.38765e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28340e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.11422e-10\tAbsError: 1.43134e-07\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.13342e+00\tAbsError: 3.16052e+15\n", - " Region: \"zone_1\"\tRelError: 1.20914e-01\tAbsError: 3.06036e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20901e-01\tAbsError: 2.58438e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36978e-05\tAbsError: 4.75979e-03\n", - " Region: \"zone_3\"\tRelError: 1.01250e+00\tAbsError: 3.16052e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.67125e-01\tAbsError: 1.44537e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.15620e-01\tAbsError: 1.71514e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29744e-01\tAbsError: 2.58330e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36978e-05\tAbsError: 4.75979e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 4.93663e+00\tAbsError: 6.37428e+14\n", - " Region: \"zone_1\"\tRelError: 3.46019e+00\tAbsError: 7.21476e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.46007e+00\tAbsError: 3.07635e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", - " Region: \"zone_3\"\tRelError: 1.47644e+00\tAbsError: 6.37428e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40577e-01\tAbsError: 3.72575e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.27797e-01\tAbsError: 2.64853e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07947e-01\tAbsError: 3.07638e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19084e-04\tAbsError: 4.13841e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.87423e-01\tAbsError: 1.06489e+15\n", - " Region: \"zone_1\"\tRelError: 1.09495e-01\tAbsError: 3.11412e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09436e-01\tAbsError: 1.05215e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.93454e-05\tAbsError: 2.06197e-02\n", - " Region: \"zone_3\"\tRelError: 3.77927e-01\tAbsError: 1.06489e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07715e-01\tAbsError: 5.65159e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.28724e-01\tAbsError: 4.99726e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.14286e-02\tAbsError: 1.05216e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.93454e-05\tAbsError: 2.06197e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.95431e+00\tAbsError: 2.96317e+14\n", - " Region: \"zone_1\"\tRelError: 2.00902e+00\tAbsError: 3.34445e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.00900e+00\tAbsError: 2.58782e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", - " Region: \"zone_3\"\tRelError: 9.45295e-01\tAbsError: 2.96317e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42034e-01\tAbsError: 1.59420e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.10683e-01\tAbsError: 1.36896e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.25558e-02\tAbsError: 2.58843e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17717e-05\tAbsError: 7.56629e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.07124e-01\tAbsError: 1.79033e+14\n", - " Region: \"zone_1\"\tRelError: 6.54489e-03\tAbsError: 2.11446e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.48449e-03\tAbsError: 1.76026e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.03999e-05\tAbsError: 2.09686e-02\n", - " Region: \"zone_3\"\tRelError: 1.00579e-01\tAbsError: 1.79033e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.05426e-02\tAbsError: 1.01224e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.72982e-03\tAbsError: 7.78084e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.12463e-02\tAbsError: 1.83300e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.03999e-05\tAbsError: 2.09686e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.90232e-01\tAbsError: 1.27257e+14\n", - " Region: \"zone_1\"\tRelError: 2.88169e-01\tAbsError: 1.34324e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88157e-01\tAbsError: 9.16559e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22923e-05\tAbsError: 4.26682e-03\n", - " Region: \"zone_3\"\tRelError: 3.02062e-01\tAbsError: 1.27257e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98145e-01\tAbsError: 5.59682e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.53461e-02\tAbsError: 7.12890e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.85587e-02\tAbsError: 9.16563e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22942e-05\tAbsError: 4.26755e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.37034e-02\tAbsError: 1.05074e+13\n", - " Region: \"zone_1\"\tRelError: 2.67000e-03\tAbsError: 2.16848e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66940e-03\tAbsError: 9.03313e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.97153e-07\tAbsError: 2.07815e-04\n", - " Region: \"zone_3\"\tRelError: 3.10334e-02\tAbsError: 1.05074e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.29413e-04\tAbsError: 4.14886e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.45066e-04\tAbsError: 6.35852e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.94584e-02\tAbsError: 9.20156e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.97452e-07\tAbsError: 2.07924e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.81369e-01\tAbsError: 1.65118e+13\n", - " Region: \"zone_1\"\tRelError: 1.13683e-01\tAbsError: 2.48930e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13676e-01\tAbsError: 7.97182e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", - " Region: \"zone_3\"\tRelError: 6.76863e-02\tAbsError: 1.65118e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.50220e-02\tAbsError: 9.05581e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.84537e-03\tAbsError: 7.45604e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 9.81196e-03\tAbsError: 8.36703e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.93973e-06\tAbsError: 2.40958e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.09660e-04\tAbsError: 2.08695e+11\n", - " Region: \"zone_1\"\tRelError: 2.47254e-05\tAbsError: 6.86063e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27511e-05\tAbsError: 1.43700e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.97427e-06\tAbsError: 6.85919e-04\n", - " Region: \"zone_3\"\tRelError: 2.84935e-04\tAbsError: 2.08695e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.17199e-05\tAbsError: 1.45019e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.68171e-06\tAbsError: 6.36760e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66559e-04\tAbsError: 1.45320e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.97428e-06\tAbsError: 6.85933e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.11615e-03\tAbsError: 1.08851e+12\n", - " Region: \"zone_1\"\tRelError: 5.30759e-03\tAbsError: 1.67972e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.30711e-03\tAbsError: 1.45981e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", - " Region: \"zone_3\"\tRelError: 1.80856e-03\tAbsError: 1.08851e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43945e-04\tAbsError: 2.92186e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.94756e-05\tAbsError: 7.96320e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.56466e-03\tAbsError: 1.47422e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.79115e-07\tAbsError: 1.66512e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.68055e-03\tAbsError: 6.61369e+11\n", - " Region: \"zone_1\"\tRelError: 2.19776e-04\tAbsError: 3.52770e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.19675e-04\tAbsError: 3.47259e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00615e-07\tAbsError: 3.49297e-05\n", - " Region: \"zone_3\"\tRelError: 2.46078e-03\tAbsError: 6.61369e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.38712e-05\tAbsError: 3.34135e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.37692e-05\tAbsError: 3.27234e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.39304e-03\tAbsError: 3.62329e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00635e-07\tAbsError: 3.49373e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.59900e-03\tAbsError: 1.40711e+11\n", - " Region: \"zone_1\"\tRelError: 2.06948e-03\tAbsError: 6.41578e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06929e-03\tAbsError: 9.09489e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84503e-07\tAbsError: 6.40668e-05\n", - " Region: \"zone_3\"\tRelError: 5.29527e-04\tAbsError: 1.40711e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.39801e-06\tAbsError: 9.47438e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.30618e-06\tAbsError: 4.59674e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.12638e-04\tAbsError: 9.48359e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84568e-07\tAbsError: 6.40878e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.17224e-04\tAbsError: 3.34541e+10\n", - " Region: \"zone_1\"\tRelError: 1.80302e-05\tAbsError: 4.24293e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.79082e-05\tAbsError: 2.16023e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22054e-07\tAbsError: 4.24077e-05\n", - " Region: \"zone_3\"\tRelError: 1.99194e-04\tAbsError: 3.34541e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95013e-06\tAbsError: 1.55599e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.97435e-06\tAbsError: 1.78942e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.95147e-04\tAbsError: 2.25328e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22102e-07\tAbsError: 4.24242e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 6.84757e-04\tAbsError: 5.79872e+10\n", - " Region: \"zone_1\"\tRelError: 5.39232e-04\tAbsError: 6.69464e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.39213e-04\tAbsError: 4.49143e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91058e-08\tAbsError: 6.64972e-06\n", - " Region: \"zone_3\"\tRelError: 1.45525e-04\tAbsError: 5.79872e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.71562e-06\tAbsError: 2.34463e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.68397e-06\tAbsError: 3.45410e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.38106e-04\tAbsError: 4.56915e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91137e-08\tAbsError: 6.65261e-06\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.92407e-04\tAbsError: 4.16681e+10\n", - " Region: \"zone_1\"\tRelError: 1.58767e-05\tAbsError: 4.74333e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.58631e-05\tAbsError: 1.99539e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.35944e-08\tAbsError: 4.72338e-06\n", - " Region: \"zone_3\"\tRelError: 1.76530e-04\tAbsError: 4.16681e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.06328e-06\tAbsError: 2.34690e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.05628e-06\tAbsError: 1.81991e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72397e-04\tAbsError: 2.11694e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.35985e-08\tAbsError: 4.72481e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.02364e-04\tAbsError: 5.62248e+09\n", - " Region: \"zone_1\"\tRelError: 8.15379e-05\tAbsError: 3.03368e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.15291e-05\tAbsError: 3.57289e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.71937e-09\tAbsError: 3.03011e-06\n", - " Region: \"zone_3\"\tRelError: 2.08260e-05\tAbsError: 5.62248e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14319e-07\tAbsError: 4.05602e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.09034e-07\tAbsError: 1.56647e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.01939e-05\tAbsError: 3.71851e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.71944e-09\tAbsError: 3.03019e-06\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.66442e-05\tAbsError: 4.51828e+09\n", - " Region: \"zone_1\"\tRelError: 2.21134e-06\tAbsError: 2.88818e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20303e-06\tAbsError: 2.43029e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.30553e-09\tAbsError: 2.88575e-06\n", - " Region: \"zone_3\"\tRelError: 2.44328e-05\tAbsError: 4.51828e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.39512e-07\tAbsError: 2.57717e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.40681e-07\tAbsError: 1.94111e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.39443e-05\tAbsError: 2.56001e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.30706e-09\tAbsError: 2.88629e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:47\u001b[0m.\u001b[1;36m839\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:47\u001b[0m.\u001b[1;36m839\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7272727272727272\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.62671e-05\tAbsError: 3.10481e+09\n", - " Region: \"zone_1\"\tRelError: 3.66806e-05\tAbsError: 2.21724e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 3.66799e-05\tAbsError: 2.06476e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.31104e-10\tAbsError: 2.19659e-07\n", - " Region: \"zone_3\"\tRelError: 9.58659e-06\tAbsError: 3.10481e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88628e-07\tAbsError: 1.51763e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.86687e-07\tAbsError: 1.58718e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.21065e-06\tAbsError: 2.10348e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.31398e-10\tAbsError: 2.19764e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:31:48\u001b[0m.\u001b[1;36m517\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.6\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.28678e+01\tAbsError: 2.41720e+16\n", - " Region: \"zone_1\"\tRelError: 1.10745e+01\tAbsError: 4.18733e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10745e+01\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.35235e-09\tAbsError: 4.69873e-07\n", - " Region: \"zone_3\"\tRelError: 1.79337e+00\tAbsError: 2.41720e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.76842e-01\tAbsError: 1.21471e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.76445e-01\tAbsError: 1.20250e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.40077e-01\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.35254e-09\tAbsError: 4.69938e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.94073e+01\tAbsError: 8.32958e+15\n", - " Region: \"zone_1\"\tRelError: 1.77016e+01\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77016e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.06764e-10\tAbsError: 1.76108e-07\n", - " Region: \"zone_3\"\tRelError: 1.70569e+00\tAbsError: 8.32958e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69637e-01\tAbsError: 4.59097e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69532e-01\tAbsError: 3.73860e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66519e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.06930e-10\tAbsError: 1.76171e-07\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.81152e+00\tAbsError: 2.51170e+16\n", - " Region: \"zone_1\"\tRelError: 2.40084e-01\tAbsError: 1.36620e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.39783e-01\tAbsError: 3.18461e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.01653e-04\tAbsError: 1.04774e-01\n", - " Region: \"zone_3\"\tRelError: 1.57143e+00\tAbsError: 2.51170e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.50352e-01\tAbsError: 1.24519e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.16673e-01\tAbsError: 1.26651e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.04104e-01\tAbsError: 3.18461e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.01653e-04\tAbsError: 1.04774e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.07616e+01\tAbsError: 3.02291e+15\n", - " Region: \"zone_1\"\tRelError: 9.27113e+00\tAbsError: 6.52674e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.27103e+00\tAbsError: 3.07634e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.92954e-05\tAbsError: 3.45040e-02\n", - " Region: \"zone_3\"\tRelError: 1.49044e+00\tAbsError: 3.02291e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40308e-01\tAbsError: 1.49698e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.14159e-01\tAbsError: 1.52592e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35875e-01\tAbsError: 3.07635e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.92954e-05\tAbsError: 3.45040e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.55235e+00\tAbsError: 1.60967e+16\n", - " Region: \"zone_1\"\tRelError: 3.10275e-01\tAbsError: 9.21671e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.10084e-01\tAbsError: 2.58591e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.90943e-04\tAbsError: 6.63081e-02\n", - " Region: \"zone_3\"\tRelError: 1.24207e+00\tAbsError: 1.60967e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.62478e-01\tAbsError: 7.99951e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.11305e-01\tAbsError: 8.09715e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 3.68101e-01\tAbsError: 2.52301e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.90943e-04\tAbsError: 6.63081e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.22732e+00\tAbsError: 2.06865e+15\n", - " Region: \"zone_1\"\tRelError: 2.78568e-01\tAbsError: 2.74627e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78563e-01\tAbsError: 2.58185e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73142e-06\tAbsError: 1.64416e-03\n", - " Region: \"zone_3\"\tRelError: 9.48751e-01\tAbsError: 2.06865e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.44918e-01\tAbsError: 9.02348e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.89155e-01\tAbsError: 1.16630e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14673e-01\tAbsError: 2.51147e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73142e-06\tAbsError: 1.64416e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 9.12966e-01\tAbsError: 4.93027e+15\n", - " Region: \"zone_1\"\tRelError: 3.16482e-01\tAbsError: 3.26469e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.16418e-01\tAbsError: 1.05209e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.37165e-05\tAbsError: 2.21260e-02\n", - " Region: \"zone_3\"\tRelError: 5.96484e-01\tAbsError: 4.93027e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.96829e-01\tAbsError: 2.70578e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.18110e-01\tAbsError: 2.22449e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.81481e-01\tAbsError: 1.05209e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.37165e-05\tAbsError: 2.21260e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 7.18897e+00\tAbsError: 6.29402e+14\n", - " Region: \"zone_1\"\tRelError: 6.86170e+00\tAbsError: 2.22868e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.86166e+00\tAbsError: 9.16572e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.77613e-05\tAbsError: 1.31211e-02\n", - " Region: \"zone_3\"\tRelError: 3.27267e-01\tAbsError: 6.29402e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84319e-01\tAbsError: 3.28649e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.08857e-01\tAbsError: 3.00753e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.40527e-02\tAbsError: 9.16579e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.77613e-05\tAbsError: 1.31211e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.73417e-01\tAbsError: 1.11041e+15\n", - " Region: \"zone_1\"\tRelError: 1.30194e-02\tAbsError: 1.66649e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.25399e-02\tAbsError: 2.99019e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.79500e-04\tAbsError: 1.66350e-01\n", - " Region: \"zone_3\"\tRelError: 1.60398e-01\tAbsError: 1.11041e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.88743e-02\tAbsError: 4.52060e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.61195e-02\tAbsError: 6.58351e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.49232e-02\tAbsError: 3.25903e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.80894e-04\tAbsError: 1.66829e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.42105e-01\tAbsError: 9.57843e+13\n", - " Region: \"zone_1\"\tRelError: 5.64317e-01\tAbsError: 1.44974e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.64276e-01\tAbsError: 1.24104e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14024e-05\tAbsError: 1.43733e-02\n", - " Region: \"zone_3\"\tRelError: 7.77880e-02\tAbsError: 9.57843e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.25473e-02\tAbsError: 4.71405e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.65020e-03\tAbsError: 4.86438e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.95491e-02\tAbsError: 1.28397e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14024e-05\tAbsError: 1.43733e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.67871e-01\tAbsError: 1.71023e+14\n", - " Region: \"zone_1\"\tRelError: 1.13573e-01\tAbsError: 1.02796e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13544e-01\tAbsError: 5.49352e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.94716e-05\tAbsError: 1.02247e-02\n", - " Region: \"zone_3\"\tRelError: 6.54297e-01\tAbsError: 1.71023e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.30590e-03\tAbsError: 8.58374e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.13746e-03\tAbsError: 8.51855e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.45825e-01\tAbsError: 5.53316e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.94949e-05\tAbsError: 1.02325e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.36557e-01\tAbsError: 7.18470e+12\n", - " Region: \"zone_1\"\tRelError: 1.16158e-01\tAbsError: 1.78279e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16157e-01\tAbsError: 6.59165e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.94530e-07\tAbsError: 1.71687e-04\n", - " Region: \"zone_3\"\tRelError: 2.03993e-02\tAbsError: 7.18470e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.98223e-04\tAbsError: 2.78831e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.37326e-04\tAbsError: 4.39639e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.92632e-02\tAbsError: 6.83641e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.94530e-07\tAbsError: 1.71687e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 8.66150e-02\tAbsError: 1.31466e+13\n", - " Region: \"zone_1\"\tRelError: 1.39621e-02\tAbsError: 5.12705e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39474e-02\tAbsError: 4.18122e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47663e-05\tAbsError: 5.12287e-03\n", - " Region: \"zone_3\"\tRelError: 7.26529e-02\tAbsError: 1.31466e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.21405e-04\tAbsError: 6.60915e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.25654e-04\tAbsError: 6.53741e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.19911e-02\tAbsError: 4.31922e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47687e-05\tAbsError: 5.12379e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.13498e-03\tAbsError: 1.41105e+11\n", - " Region: \"zone_1\"\tRelError: 2.73398e-03\tAbsError: 4.76357e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.73260e-03\tAbsError: 1.35633e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37060e-06\tAbsError: 4.76221e-04\n", - " Region: \"zone_3\"\tRelError: 4.01007e-04\tAbsError: 1.41105e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.96062e-06\tAbsError: 6.85210e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.81427e-06\tAbsError: 7.25836e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.87862e-04\tAbsError: 1.38229e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37060e-06\tAbsError: 4.76221e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 6.10896e-02\tAbsError: 8.02079e+12\n", - " Region: \"zone_1\"\tRelError: 9.41575e-03\tAbsError: 6.68589e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.41383e-03\tAbsError: 2.13817e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91987e-06\tAbsError: 6.66451e-04\n", - " Region: \"zone_3\"\tRelError: 5.16738e-02\tAbsError: 8.02079e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.96956e-04\tAbsError: 4.03346e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.95510e-04\tAbsError: 3.98733e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.12794e-02\tAbsError: 2.27733e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.92042e-06\tAbsError: 6.66662e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.31814e-02\tAbsError: 4.58362e+11\n", - " Region: \"zone_1\"\tRelError: 1.15315e-02\tAbsError: 2.80900e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15314e-02\tAbsError: 2.57528e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.01667e-08\tAbsError: 2.78324e-05\n", - " Region: \"zone_3\"\tRelError: 1.64997e-03\tAbsError: 4.58362e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47024e-05\tAbsError: 2.30121e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.45967e-05\tAbsError: 2.28241e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60059e-03\tAbsError: 2.62890e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.01667e-08\tAbsError: 2.78324e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 9.90143e-03\tAbsError: 1.08924e+12\n", - " Region: \"zone_1\"\tRelError: 1.54299e-03\tAbsError: 3.21984e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.54206e-03\tAbsError: 2.77661e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.26693e-07\tAbsError: 3.21707e-04\n", - " Region: \"zone_3\"\tRelError: 8.35844e-03\tAbsError: 1.08924e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.68262e-05\tAbsError: 5.46733e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.66605e-05\tAbsError: 5.42503e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 8.30402e-03\tAbsError: 2.99268e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.26885e-07\tAbsError: 3.21773e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.25913e-03\tAbsError: 2.71128e+10\n", - " Region: \"zone_1\"\tRelError: 1.10973e-03\tAbsError: 2.99279e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10965e-03\tAbsError: 1.77983e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.60783e-08\tAbsError: 2.99101e-05\n", - " Region: \"zone_3\"\tRelError: 1.49391e-04\tAbsError: 2.71128e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61984e-06\tAbsError: 1.29863e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.63350e-06\tAbsError: 1.41265e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46052e-04\tAbsError: 1.82225e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.61134e-08\tAbsError: 2.99224e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.42186e-03\tAbsError: 4.98160e+11\n", - " Region: \"zone_1\"\tRelError: 6.86933e-04\tAbsError: 5.78872e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.86767e-04\tAbsError: 1.23785e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.66172e-07\tAbsError: 5.77634e-05\n", - " Region: \"zone_3\"\tRelError: 3.73493e-03\tAbsError: 4.98160e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.22855e-05\tAbsError: 2.50372e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.21426e-05\tAbsError: 2.47788e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.71034e-03\tAbsError: 1.33015e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.66188e-07\tAbsError: 5.77856e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 9.89584e-04\tAbsError: 2.93050e+10\n", - " Region: \"zone_1\"\tRelError: 8.69289e-04\tAbsError: 3.58476e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.69279e-04\tAbsError: 1.49163e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.02736e-08\tAbsError: 3.56984e-06\n", - " Region: \"zone_3\"\tRelError: 1.20295e-04\tAbsError: 2.93050e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52554e-06\tAbsError: 1.64489e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.51838e-06\tAbsError: 1.28561e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17241e-04\tAbsError: 1.55101e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.02768e-08\tAbsError: 3.57094e-06\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 8.77845e-04\tAbsError: 9.00104e+10\n", - " Region: \"zone_1\"\tRelError: 1.36631e-04\tAbsError: 2.25392e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36566e-04\tAbsError: 2.33969e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.47310e-08\tAbsError: 2.25158e-05\n", - " Region: \"zone_3\"\tRelError: 7.41215e-04\tAbsError: 9.00104e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.22024e-06\tAbsError: 4.51658e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.19948e-06\tAbsError: 4.48447e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.36730e-04\tAbsError: 2.51096e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.47572e-08\tAbsError: 2.25252e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.48739e-04\tAbsError: 3.41314e+09\n", - " Region: \"zone_1\"\tRelError: 1.31134e-04\tAbsError: 2.06494e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31128e-04\tAbsError: 1.91971e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.93716e-09\tAbsError: 2.06302e-06\n", - " Region: \"zone_3\"\tRelError: 1.76048e-05\tAbsError: 3.41314e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88514e-07\tAbsError: 1.94837e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.89063e-07\tAbsError: 1.46477e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72213e-05\tAbsError: 1.99642e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.93836e-09\tAbsError: 2.06344e-06\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 3.17998e-04\tAbsError: 3.34676e+10\n", - " Region: \"zone_1\"\tRelError: 4.94909e-05\tAbsError: 4.79910e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.94771e-05\tAbsError: 8.85122e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37715e-08\tAbsError: 4.79025e-06\n", - " Region: \"zone_3\"\tRelError: 2.68507e-04\tAbsError: 3.34676e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.26317e-07\tAbsError: 1.68128e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.15644e-07\tAbsError: 1.66549e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66852e-04\tAbsError: 9.45123e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37769e-08\tAbsError: 4.79218e-06\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 7.33109e-05\tAbsError: 1.99171e+09\n", - " Region: \"zone_1\"\tRelError: 6.45108e-05\tAbsError: 3.50573e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 6.45098e-05\tAbsError: 1.06453e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00585e-09\tAbsError: 3.49509e-07\n", - " Region: \"zone_3\"\tRelError: 8.80008e-06\tAbsError: 1.99171e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03719e-07\tAbsError: 1.17952e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03272e-07\tAbsError: 8.12184e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 8.59208e-06\tAbsError: 1.10473e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00600e-09\tAbsError: 3.49562e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:00\u001b[0m.\u001b[1;36m749\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.7\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 7.13061e-05\tAbsError: 7.12270e+09\n", - " Region: \"zone_1\"\tRelError: 1.11041e-05\tAbsError: 1.61505e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10995e-05\tAbsError: 1.92666e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.63760e-09\tAbsError: 1.61313e-06\n", - " Region: \"zone_3\"\tRelError: 6.02020e-05\tAbsError: 7.12270e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.75816e-07\tAbsError: 3.57407e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.73885e-07\tAbsError: 3.54864e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 5.98477e-05\tAbsError: 2.05662e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.63937e-09\tAbsError: 1.61378e-06\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:00\u001b[0m.\u001b[1;36m890\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:00\u001b[0m.\u001b[1;36m890\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.8318181818181818\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.94222e+01\tAbsError: 1.62190e+16\n", - " Region: \"zone_1\"\tRelError: 2.76662e+01\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.76662e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.29578e-10\tAbsError: 1.49268e-07\n", - " Region: \"zone_3\"\tRelError: 1.75598e+00\tAbsError: 1.62190e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69267e-01\tAbsError: 8.18784e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.68971e-01\tAbsError: 8.03117e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.17740e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.29628e-10\tAbsError: 1.49286e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 4.48214e+01\tAbsError: 1.27161e+17\n", - " Region: \"zone_1\"\tRelError: 4.16643e+01\tAbsError: 4.18732e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.16643e+01\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08576e-09\tAbsError: 3.77666e-07\n", - " Region: \"zone_3\"\tRelError: 3.15707e+00\tAbsError: 1.27161e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.72955e-01\tAbsError: 6.38462e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.70759e-01\tAbsError: 6.33149e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.61336e+00\tAbsError: 4.18729e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08617e-09\tAbsError: 3.77819e-07\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.57455e+00\tAbsError: 1.59389e+16\n", - " Region: \"zone_1\"\tRelError: 1.04759e+00\tAbsError: 1.06162e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04737e+00\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17045e-04\tAbsError: 7.53990e-02\n", - " Region: \"zone_3\"\tRelError: 1.52696e+00\tAbsError: 1.59389e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37511e-01\tAbsError: 7.87332e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.04735e-01\tAbsError: 8.06553e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.84502e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17045e-04\tAbsError: 7.53990e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.41302e+00\tAbsError: 1.17930e+17\n", - " Region: \"zone_1\"\tRelError: 3.44060e-01\tAbsError: 3.41507e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.43167e-01\tAbsError: 3.18461e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.92830e-04\tAbsError: 3.09661e-01\n", - " Region: \"zone_3\"\tRelError: 3.06896e+00\tAbsError: 1.17930e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.33886e-01\tAbsError: 5.94093e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.85749e-01\tAbsError: 5.85208e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74843e+00\tAbsError: 3.18461e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.93043e-04\tAbsError: 3.09742e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.14822e+00\tAbsError: 9.83178e+15\n", - " Region: \"zone_1\"\tRelError: 1.39457e-01\tAbsError: 7.32841e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39320e-01\tAbsError: 2.58400e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36592e-04\tAbsError: 4.74441e-02\n", - " Region: \"zone_3\"\tRelError: 1.00877e+00\tAbsError: 9.83178e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43427e-01\tAbsError: 4.83336e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.90483e-01\tAbsError: 4.99841e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74720e-01\tAbsError: 2.58193e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36592e-04\tAbsError: 4.74441e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 5.86698e+00\tAbsError: 7.50678e+16\n", - " Region: \"zone_1\"\tRelError: 3.54477e+00\tAbsError: 5.54414e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.54468e+00\tAbsError: 2.58460e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.53345e-05\tAbsError: 2.95954e-02\n", - " Region: \"zone_3\"\tRelError: 2.32221e+00\tAbsError: 7.50678e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.14936e-01\tAbsError: 3.85162e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.28711e-01\tAbsError: 3.65517e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.57848e+00\tAbsError: 2.37733e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.53345e-05\tAbsError: 2.95954e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 9.17087e-01\tAbsError: 2.70112e+15\n", - " Region: \"zone_1\"\tRelError: 4.13278e-01\tAbsError: 1.18036e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.12964e-01\tAbsError: 9.16529e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.13541e-04\tAbsError: 1.08871e-01\n", - " Region: \"zone_3\"\tRelError: 5.03809e-01\tAbsError: 2.70112e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.83333e-01\tAbsError: 1.43386e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03452e-01\tAbsError: 1.26726e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.16711e-01\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.13541e-04\tAbsError: 1.08871e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.49512e+00\tAbsError: 2.22343e+16\n", - " Region: \"zone_1\"\tRelError: 7.22230e-01\tAbsError: 5.29663e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.22108e-01\tAbsError: 1.05208e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22416e-04\tAbsError: 4.24455e-02\n", - " Region: \"zone_3\"\tRelError: 7.72890e-01\tAbsError: 2.22343e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.48169e-01\tAbsError: 1.15801e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.09555e-02\tAbsError: 1.06542e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 5.53643e-01\tAbsError: 1.05209e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22416e-04\tAbsError: 4.24455e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 4.27279e-01\tAbsError: 8.17053e+14\n", - " Region: \"zone_1\"\tRelError: 1.09940e-01\tAbsError: 2.21034e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09304e-01\tAbsError: 3.29075e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.36020e-04\tAbsError: 2.20705e-01\n", - " Region: \"zone_3\"\tRelError: 3.17339e-01\tAbsError: 8.17053e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.72653e-02\tAbsError: 1.99598e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.68899e-02\tAbsError: 6.17455e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.42547e-01\tAbsError: 3.29140e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.36020e-04\tAbsError: 2.20705e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.24776e-01\tAbsError: 3.73586e+15\n", - " Region: \"zone_1\"\tRelError: 7.45352e-02\tAbsError: 3.03331e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 7.36605e-02\tAbsError: 2.36141e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.74683e-04\tAbsError: 3.03094e-01\n", - " Region: \"zone_3\"\tRelError: 5.02411e-02\tAbsError: 3.73586e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.75032e-02\tAbsError: 1.96426e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.84727e-03\tAbsError: 1.77160e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40144e-02\tAbsError: 2.68517e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.76136e-04\tAbsError: 3.03589e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.01035e-01\tAbsError: 1.64733e+14\n", - " Region: \"zone_1\"\tRelError: 2.03094e-01\tAbsError: 1.60100e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03048e-01\tAbsError: 7.96658e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.59052e-05\tAbsError: 1.59303e-02\n", - " Region: \"zone_3\"\tRelError: 4.97941e-01\tAbsError: 1.64733e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17881e-03\tAbsError: 7.88164e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.07895e-03\tAbsError: 8.59168e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.85637e-01\tAbsError: 8.00849e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.59052e-05\tAbsError: 1.59303e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.51962e-01\tAbsError: 9.20112e+14\n", - " Region: \"zone_1\"\tRelError: 9.61216e-02\tAbsError: 1.85870e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.60682e-02\tAbsError: 5.78211e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.34689e-05\tAbsError: 1.85292e-02\n", - " Region: \"zone_3\"\tRelError: 5.55840e-01\tAbsError: 9.20112e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.53243e-03\tAbsError: 4.43917e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.69520e-03\tAbsError: 4.76195e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.48559e-01\tAbsError: 5.87235e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.34733e-05\tAbsError: 1.85300e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.04323e-01\tAbsError: 1.53102e+13\n", - " Region: \"zone_1\"\tRelError: 3.15774e-02\tAbsError: 7.15567e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.15568e-02\tAbsError: 7.10876e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.05999e-05\tAbsError: 7.14856e-03\n", - " Region: \"zone_3\"\tRelError: 7.27454e-02\tAbsError: 1.53102e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94207e-04\tAbsError: 7.65839e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.98721e-04\tAbsError: 7.65181e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.15319e-02\tAbsError: 7.17354e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.06009e-05\tAbsError: 7.14900e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.71590e-02\tAbsError: 7.66261e+13\n", - " Region: \"zone_1\"\tRelError: 1.20009e-02\tAbsError: 8.30452e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19770e-02\tAbsError: 5.27249e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.39494e-05\tAbsError: 8.29925e-03\n", - " Region: \"zone_3\"\tRelError: 6.51581e-02\tAbsError: 7.66261e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.06580e-04\tAbsError: 3.73072e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.04337e-04\tAbsError: 3.93189e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.45233e-02\tAbsError: 5.30950e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.39514e-05\tAbsError: 8.29962e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.82885e-02\tAbsError: 7.75343e+12\n", - " Region: \"zone_1\"\tRelError: 1.74263e-02\tAbsError: 1.11082e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74231e-02\tAbsError: 3.27682e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.18949e-06\tAbsError: 1.10754e-03\n", - " Region: \"zone_3\"\tRelError: 4.08622e-02\tAbsError: 7.75343e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.01160e-04\tAbsError: 3.88269e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.99390e-04\tAbsError: 3.87074e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.02585e-02\tAbsError: 3.34987e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.19059e-06\tAbsError: 1.10796e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.06377e-02\tAbsError: 4.36188e+13\n", - " Region: \"zone_1\"\tRelError: 7.66673e-03\tAbsError: 1.05621e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.66369e-03\tAbsError: 2.82677e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.03907e-06\tAbsError: 1.05338e-03\n", - " Region: \"zone_3\"\tRelError: 4.29710e-02\tAbsError: 4.36188e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.90527e-04\tAbsError: 2.12589e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.78772e-04\tAbsError: 2.23599e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.25987e-02\tAbsError: 2.84898e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.04014e-06\tAbsError: 1.05370e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.09210e-02\tAbsError: 1.22286e+12\n", - " Region: \"zone_1\"\tRelError: 3.28469e-03\tAbsError: 4.72819e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.28333e-03\tAbsError: 4.87030e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36013e-06\tAbsError: 4.72332e-04\n", - " Region: \"zone_3\"\tRelError: 7.63634e-03\tAbsError: 1.22286e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.75678e-05\tAbsError: 6.11672e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.73305e-05\tAbsError: 6.11193e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 7.54008e-03\tAbsError: 5.02425e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.36049e-06\tAbsError: 4.72455e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 8.26317e-03\tAbsError: 5.97645e+12\n", - " Region: \"zone_1\"\tRelError: 1.26006e-03\tAbsError: 4.95200e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.25864e-03\tAbsError: 3.70328e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42381e-06\tAbsError: 4.94829e-04\n", - " Region: \"zone_3\"\tRelError: 7.00311e-03\tAbsError: 5.97645e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.57319e-05\tAbsError: 2.91052e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.41552e-05\tAbsError: 3.06593e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 6.95180e-03\tAbsError: 3.73182e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42436e-06\tAbsError: 4.95028e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.38843e-03\tAbsError: 5.18838e+11\n", - " Region: \"zone_1\"\tRelError: 1.31867e-03\tAbsError: 9.39018e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31840e-03\tAbsError: 1.99779e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69826e-07\tAbsError: 9.37020e-05\n", - " Region: \"zone_3\"\tRelError: 3.06976e-03\tAbsError: 5.18838e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95362e-05\tAbsError: 2.68345e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.93671e-05\tAbsError: 2.50493e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.03058e-03\tAbsError: 2.07424e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69859e-07\tAbsError: 9.37138e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 3.54716e-03\tAbsError: 2.62008e+12\n", - " Region: \"zone_1\"\tRelError: 5.39788e-04\tAbsError: 8.92263e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.39531e-04\tAbsError: 1.50390e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.56301e-07\tAbsError: 8.90759e-05\n", - " Region: \"zone_3\"\tRelError: 3.00737e-03\tAbsError: 2.62008e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.14929e-05\tAbsError: 1.27607e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.07559e-05\tAbsError: 1.34402e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.98487e-03\tAbsError: 1.51609e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.56399e-07\tAbsError: 8.91117e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 9.50080e-04\tAbsError: 1.03863e+11\n", - " Region: \"zone_1\"\tRelError: 2.85910e-04\tAbsError: 3.37412e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.85814e-04\tAbsError: 4.14946e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.68675e-08\tAbsError: 3.36997e-05\n", - " Region: \"zone_3\"\tRelError: 6.64170e-04\tAbsError: 1.03863e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.88184e-06\tAbsError: 5.40187e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.85553e-06\tAbsError: 4.98443e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 6.56335e-04\tAbsError: 4.30256e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.69043e-08\tAbsError: 3.37128e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 6.95864e-04\tAbsError: 4.65649e+11\n", - " Region: \"zone_1\"\tRelError: 1.06054e-04\tAbsError: 3.37560e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.05957e-04\tAbsError: 2.82366e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.70459e-08\tAbsError: 3.37277e-05\n", - " Region: \"zone_3\"\tRelError: 5.89810e-04\tAbsError: 4.65649e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01758e-06\tAbsError: 2.26719e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.89641e-06\tAbsError: 2.38931e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.85799e-04\tAbsError: 2.84329e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.70857e-08\tAbsError: 3.37425e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 3.25927e-04\tAbsError: 3.72019e+10\n", - " Region: \"zone_1\"\tRelError: 9.80813e-05\tAbsError: 7.68282e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 9.80593e-05\tAbsError: 1.46928e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.20415e-08\tAbsError: 7.66812e-06\n", - " Region: \"zone_3\"\tRelError: 2.27846e-04\tAbsError: 3.72019e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36089e-06\tAbsError: 1.97599e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.34801e-06\tAbsError: 1.74420e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25115e-04\tAbsError: 1.52180e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.20501e-08\tAbsError: 7.67121e-06\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 2.45400e-04\tAbsError: 1.68299e+11\n", - " Region: \"zone_1\"\tRelError: 3.73915e-05\tAbsError: 7.04108e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.73713e-05\tAbsError: 1.02290e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.02296e-08\tAbsError: 7.03085e-06\n", - " Region: \"zone_3\"\tRelError: 2.08008e-04\tAbsError: 1.68299e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.36950e-07\tAbsError: 8.19502e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.90014e-07\tAbsError: 8.63483e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06561e-04\tAbsError: 1.03006e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.02382e-08\tAbsError: 7.03392e-06\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 7.72661e-05\tAbsError: 8.43440e+09\n", - " Region: \"zone_1\"\tRelError: 2.32650e-05\tAbsError: 2.49052e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.32578e-05\tAbsError: 3.39814e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.14902e-09\tAbsError: 2.48712e-06\n", - " Region: \"zone_3\"\tRelError: 5.40011e-05\tAbsError: 8.43440e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.08161e-07\tAbsError: 4.47973e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.05735e-07\tAbsError: 3.95466e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 5.33800e-05\tAbsError: 3.51782e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.15190e-09\tAbsError: 2.48816e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:13\u001b[0m.\u001b[1;36m705\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.7999999999999999\u001b[0m\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 5.39068e-05\tAbsError: 3.49491e+10\n", - " Region: \"zone_1\"\tRelError: 8.21869e-06\tAbsError: 2.31681e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.21203e-06\tAbsError: 2.20536e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.65971e-09\tAbsError: 2.31460e-06\n", - " Region: \"zone_3\"\tRelError: 4.56881e-05\tAbsError: 3.49491e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.51818e-07\tAbsError: 1.70152e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.42691e-07\tAbsError: 1.79339e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.53869e-05\tAbsError: 2.22047e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.66248e-09\tAbsError: 2.31560e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:14\u001b[0m.\u001b[1;36m265\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:14\u001b[0m.\u001b[1;36m265\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.9363636363636363\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.91796e+01\tAbsError: 8.00136e+16\n", - " Region: \"zone_1\"\tRelError: 1.61687e+01\tAbsError: 4.09548e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.61687e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75011e-09\tAbsError: 6.08861e-07\n", - " Region: \"zone_3\"\tRelError: 3.01093e+00\tAbsError: 8.00136e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.66958e-01\tAbsError: 4.00295e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.65547e-01\tAbsError: 3.99841e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.47843e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75082e-09\tAbsError: 6.09112e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 9.53347e+01\tAbsError: 5.85371e+17\n", - " Region: \"zone_1\"\tRelError: 8.27765e+01\tAbsError: 4.18732e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.27765e+01\tAbsError: 4.18727e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52118e-09\tAbsError: 5.28690e-07\n", - " Region: \"zone_3\"\tRelError: 1.25582e+01\tAbsError: 5.85371e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.44563e-01\tAbsError: 2.83553e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.31848e-01\tAbsError: 3.01819e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10818e+01\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52181e-09\tAbsError: 5.28919e-07\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.23024e+00\tAbsError: 7.24788e+16\n", - " Region: \"zone_1\"\tRelError: 2.89301e-01\tAbsError: 2.81842e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88577e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.23562e-04\tAbsError: 2.51079e-01\n", - " Region: \"zone_3\"\tRelError: 2.94094e+00\tAbsError: 7.24788e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.29061e-01\tAbsError: 3.72143e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.83761e-01\tAbsError: 3.52645e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.62740e+00\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.23562e-04\tAbsError: 2.51079e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.35816e+01\tAbsError: 4.38149e+17\n", - " Region: \"zone_1\"\tRelError: 1.38930e+01\tAbsError: 4.99074e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.38916e+01\tAbsError: 3.18458e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.34648e-03\tAbsError: 4.67228e-01\n", - " Region: \"zone_3\"\tRelError: 9.68863e+00\tAbsError: 4.38149e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.42884e-01\tAbsError: 2.18851e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.28261e-01\tAbsError: 2.19298e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 8.61613e+00\tAbsError: 3.18461e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.34768e-03\tAbsError: 4.67627e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 5.71850e+00\tAbsError: 4.10464e+16\n", - " Region: \"zone_1\"\tRelError: 1.82923e-01\tAbsError: 1.08958e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82684e-01\tAbsError: 2.58969e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.39429e-04\tAbsError: 8.30609e-02\n", - " Region: \"zone_3\"\tRelError: 5.53558e+00\tAbsError: 4.10464e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16071e-01\tAbsError: 2.08924e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.47287e-01\tAbsError: 2.01540e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.77198e+00\tAbsError: 2.46271e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.39429e-04\tAbsError: 8.30609e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 5.53490e+00\tAbsError: 1.10286e+17\n", - " Region: \"zone_1\"\tRelError: 2.56956e+00\tAbsError: 1.81425e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.56912e+00\tAbsError: 2.58889e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.47417e-04\tAbsError: 1.55536e-01\n", - " Region: \"zone_3\"\tRelError: 2.96534e+00\tAbsError: 1.10286e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.48327e-01\tAbsError: 5.52116e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.47448e-01\tAbsError: 5.50739e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.56912e+00\tAbsError: 2.58782e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.47594e-04\tAbsError: 1.55593e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.06773e+00\tAbsError: 1.32751e+16\n", - " Region: \"zone_1\"\tRelError: 2.27618e-01\tAbsError: 5.11022e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27498e-01\tAbsError: 9.16524e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20880e-04\tAbsError: 4.19369e-02\n", - " Region: \"zone_3\"\tRelError: 8.40108e-01\tAbsError: 1.32751e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49254e-01\tAbsError: 7.44002e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.85993e-02\tAbsError: 5.83511e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 6.12131e-01\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.23429e-04\tAbsError: 4.28226e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.56612e+00\tAbsError: 1.23216e+16\n", - " Region: \"zone_1\"\tRelError: 7.26552e-01\tAbsError: 2.41455e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 7.25886e-01\tAbsError: 1.05204e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.65769e-04\tAbsError: 2.30934e-01\n", - " Region: \"zone_3\"\tRelError: 8.39571e-01\tAbsError: 1.23216e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.12201e-02\tAbsError: 6.18993e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.48009e-02\tAbsError: 6.13165e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.82884e-01\tAbsError: 1.05209e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.66165e-04\tAbsError: 2.31065e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.91937e-01\tAbsError: 2.33353e+15\n", - " Region: \"zone_1\"\tRelError: 2.61363e-02\tAbsError: 3.15290e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.52274e-02\tAbsError: 2.65917e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.08859e-04\tAbsError: 3.15024e-01\n", - " Region: \"zone_3\"\tRelError: 2.65801e-01\tAbsError: 2.33353e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.40034e-02\tAbsError: 1.23195e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.91867e-03\tAbsError: 1.10158e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20969e-01\tAbsError: 2.95967e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.10098e-04\tAbsError: 3.15450e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.04421e-02\tAbsError: 1.45216e+15\n", - " Region: \"zone_1\"\tRelError: 4.34524e-02\tAbsError: 1.16728e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.31168e-02\tAbsError: 1.74721e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.35663e-04\tAbsError: 1.16710e-01\n", - " Region: \"zone_3\"\tRelError: 4.69896e-02\tAbsError: 1.45216e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.93609e-03\tAbsError: 7.70658e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.01075e-04\tAbsError: 6.81500e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.31168e-02\tAbsError: 1.76380e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.35688e-04\tAbsError: 1.16715e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.68338e-01\tAbsError: 7.28836e+14\n", - " Region: \"zone_1\"\tRelError: 4.44613e-02\tAbsError: 2.04423e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.44025e-02\tAbsError: 6.98557e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.87704e-05\tAbsError: 2.03724e-02\n", - " Region: \"zone_3\"\tRelError: 4.23877e-01\tAbsError: 7.28836e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89975e-03\tAbsError: 3.57624e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.06394e-03\tAbsError: 3.71212e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.13854e-01\tAbsError: 7.63149e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.87832e-05\tAbsError: 2.03761e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.57790e-02\tAbsError: 5.53776e+14\n", - " Region: \"zone_1\"\tRelError: 2.72664e-02\tAbsError: 1.65342e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.72617e-02\tAbsError: 3.40332e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.65495e-06\tAbsError: 1.61938e-03\n", - " Region: \"zone_3\"\tRelError: 2.85126e-02\tAbsError: 5.53776e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.03401e-04\tAbsError: 2.75139e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.42857e-04\tAbsError: 2.78638e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.72617e-02\tAbsError: 3.43282e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.65837e-06\tAbsError: 1.62055e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.64410e-02\tAbsError: 6.34524e+13\n", - " Region: \"zone_1\"\tRelError: 6.01943e-03\tAbsError: 8.87148e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.99386e-03\tAbsError: 6.06051e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.55757e-05\tAbsError: 8.86542e-03\n", - " Region: \"zone_3\"\tRelError: 6.04216e-02\tAbsError: 6.34524e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43427e-04\tAbsError: 3.11581e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.51084e-04\tAbsError: 3.22943e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95015e-02\tAbsError: 6.26485e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.55822e-05\tAbsError: 8.86737e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.64663e-03\tAbsError: 9.54828e+12\n", - " Region: \"zone_1\"\tRelError: 7.63718e-04\tAbsError: 4.21975e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.51589e-04\tAbsError: 8.32688e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.21290e-05\tAbsError: 4.21892e-03\n", - " Region: \"zone_3\"\tRelError: 8.82908e-04\tAbsError: 9.54828e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.90874e-05\tAbsError: 4.74690e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.00972e-05\tAbsError: 4.80137e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.51589e-04\tAbsError: 8.38480e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.21339e-05\tAbsError: 4.22059e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.75673e-02\tAbsError: 3.32993e+13\n", - " Region: \"zone_1\"\tRelError: 3.52548e-03\tAbsError: 1.20689e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52200e-03\tAbsError: 3.09455e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.47154e-06\tAbsError: 1.20380e-03\n", - " Region: \"zone_3\"\tRelError: 3.40418e-02\tAbsError: 3.32993e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47698e-04\tAbsError: 1.63796e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.38649e-04\tAbsError: 1.69197e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.35520e-02\tAbsError: 3.11273e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.47235e-06\tAbsError: 1.20402e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.87542e-03\tAbsError: 2.78952e+13\n", - " Region: \"zone_1\"\tRelError: 2.90731e-03\tAbsError: 2.23946e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.90667e-03\tAbsError: 1.27907e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.40144e-07\tAbsError: 2.22667e-04\n", - " Region: \"zone_3\"\tRelError: 2.96811e-03\tAbsError: 2.78952e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.34898e-05\tAbsError: 1.38719e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.73182e-05\tAbsError: 1.40233e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.90667e-03\tAbsError: 1.29061e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.40413e-07\tAbsError: 2.22756e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.47008e-03\tAbsError: 4.77215e+12\n", - " Region: \"zone_1\"\tRelError: 6.05494e-04\tAbsError: 5.38691e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.03946e-04\tAbsError: 4.25617e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54844e-06\tAbsError: 5.38265e-04\n", - " Region: \"zone_3\"\tRelError: 5.86458e-03\tAbsError: 4.77215e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.53153e-05\tAbsError: 2.34800e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.40122e-05\tAbsError: 2.42415e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.79371e-03\tAbsError: 4.28072e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54906e-06\tAbsError: 5.38488e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 5.69726e-04\tAbsError: 1.77554e+12\n", - " Region: \"zone_1\"\tRelError: 2.81273e-04\tAbsError: 1.90569e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.80725e-04\tAbsError: 8.09815e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.47674e-07\tAbsError: 1.90489e-04\n", - " Region: \"zone_3\"\tRelError: 2.88453e-04\tAbsError: 1.77554e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33842e-06\tAbsError: 8.83844e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.84134e-06\tAbsError: 8.91692e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.80725e-04\tAbsError: 8.16431e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.47870e-07\tAbsError: 1.90556e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.65398e-03\tAbsError: 2.00158e+12\n", - " Region: \"zone_1\"\tRelError: 2.48909e-04\tAbsError: 1.00808e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.48620e-04\tAbsError: 1.66964e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.89512e-07\tAbsError: 1.00641e-04\n", - " Region: \"zone_3\"\tRelError: 2.40507e-03\tAbsError: 2.00158e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50347e-05\tAbsError: 9.84888e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.44145e-05\tAbsError: 1.01669e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.37533e-03\tAbsError: 1.67974e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.89623e-07\tAbsError: 1.00681e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.41439e-04\tAbsError: 1.54296e+12\n", - " Region: \"zone_1\"\tRelError: 2.19052e-04\tAbsError: 1.95890e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18996e-04\tAbsError: 5.68742e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.63328e-08\tAbsError: 1.95322e-05\n", - " Region: \"zone_3\"\tRelError: 2.22387e-04\tAbsError: 1.54296e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.79567e-06\tAbsError: 7.67812e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.53849e-06\tAbsError: 7.75148e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18996e-04\tAbsError: 5.74023e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.63439e-08\tAbsError: 1.95355e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 5.36228e-04\tAbsError: 3.67963e+11\n", - " Region: \"zone_1\"\tRelError: 5.03370e-05\tAbsError: 3.69568e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.02308e-05\tAbsError: 3.27141e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06219e-07\tAbsError: 3.69241e-05\n", - " Region: \"zone_3\"\tRelError: 4.85891e-04\tAbsError: 3.67963e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.74381e-06\tAbsError: 1.81082e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.63918e-06\tAbsError: 1.86881e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.80402e-04\tAbsError: 3.29054e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06263e-07\tAbsError: 3.69404e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 6.28099e-05\tAbsError: 1.73172e+11\n", - " Region: \"zone_1\"\tRelError: 3.11765e-05\tAbsError: 1.11459e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.11445e-05\tAbsError: 6.09244e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.20807e-08\tAbsError: 1.11398e-05\n", - " Region: \"zone_3\"\tRelError: 3.16334e-05\tAbsError: 1.73172e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16960e-07\tAbsError: 8.62244e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.39894e-07\tAbsError: 8.69476e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.11445e-05\tAbsError: 6.14462e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.20831e-08\tAbsError: 1.11440e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.84514e-04\tAbsError: 1.29331e+11\n", - " Region: \"zone_1\"\tRelError: 1.73204e-05\tAbsError: 7.90813e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.72976e-05\tAbsError: 1.15361e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.27155e-08\tAbsError: 7.89660e-06\n", - " Region: \"zone_3\"\tRelError: 1.67193e-04\tAbsError: 1.29331e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.72276e-07\tAbsError: 6.36462e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.31421e-07\tAbsError: 6.56851e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65267e-04\tAbsError: 1.16052e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.27252e-08\tAbsError: 7.90006e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:25\u001b[0m.\u001b[1;36m882\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:25\u001b[0m.\u001b[1;36m882\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m1.0409090909090908\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 4.13464e-05\tAbsError: 2.75069e+10\n", - " Region: \"zone_1\"\tRelError: 3.88379e-06\tAbsError: 2.55222e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.87646e-06\tAbsError: 2.54121e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.33447e-09\tAbsError: 2.54968e-06\n", - " Region: \"zone_3\"\tRelError: 3.74626e-05\tAbsError: 2.75069e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05752e-07\tAbsError: 1.35376e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.97692e-07\tAbsError: 1.39693e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.70518e-05\tAbsError: 2.55608e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.33751e-09\tAbsError: 2.55078e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:26\u001b[0m.\u001b[1;36m709\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.8999999999999999\u001b[0m\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.87468e+03\tAbsError: 1.57594e+18\n", - " Region: \"zone_1\"\tRelError: 6.11972e+03\tAbsError: 4.18742e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.11972e+03\tAbsError: 4.18725e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.06414e-09\tAbsError: 1.76056e-06\n", - " Region: \"zone_3\"\tRelError: 1.75496e+03\tAbsError: 1.57594e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.71865e-01\tAbsError: 7.81473e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.46168e-01\tAbsError: 7.94463e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.75364e+03\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.06608e-09\tAbsError: 1.76125e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.18618e+01\tAbsError: 3.43486e+17\n", - " Region: \"zone_1\"\tRelError: 4.68734e+01\tAbsError: 4.09548e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.68734e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70509e-09\tAbsError: 5.92742e-07\n", - " Region: \"zone_3\"\tRelError: 1.49884e+01\tAbsError: 3.43486e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.50361e-01\tAbsError: 1.67687e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.42491e-01\tAbsError: 1.75799e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.34955e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70580e-09\tAbsError: 5.92998e-07\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.30315e+03\tAbsError: 5.28037e+17\n", - " Region: \"zone_1\"\tRelError: 4.13286e+02\tAbsError: 1.28690e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 4.13283e+02\tAbsError: 3.18455e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.60513e-03\tAbsError: 1.25505e+00\n", - " Region: \"zone_3\"\tRelError: 1.88986e+03\tAbsError: 5.28037e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.88929e-01\tAbsError: 2.65094e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.76179e-01\tAbsError: 2.62943e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88910e+03\tAbsError: 3.18461e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.60541e-03\tAbsError: 1.25519e+00\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 6.59116e+00\tAbsError: 3.05940e+17\n", - " Region: \"zone_1\"\tRelError: 1.06162e+00\tAbsError: 1.92710e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06116e+00\tAbsError: 3.07630e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.67257e-04\tAbsError: 1.61947e-01\n", - " Region: \"zone_3\"\tRelError: 5.52954e+00\tAbsError: 3.05940e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.66708e-01\tAbsError: 1.53394e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.75609e-01\tAbsError: 1.52546e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 4.38676e+00\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.67257e-04\tAbsError: 1.61947e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.23949e+02\tAbsError: 7.68225e+16\n", - " Region: \"zone_1\"\tRelError: 1.01274e+02\tAbsError: 5.10475e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01273e+02\tAbsError: 2.57970e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.38904e-03\tAbsError: 4.84678e-01\n", - " Region: \"zone_3\"\tRelError: 1.22675e+02\tAbsError: 7.68225e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.85556e-02\tAbsError: 3.85589e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.64057e-02\tAbsError: 3.82636e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.22518e+02\tAbsError: 2.58939e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.38924e-03\tAbsError: 4.84741e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 3.39017e+01\tAbsError: 1.15461e+17\n", - " Region: \"zone_1\"\tRelError: 6.40052e-01\tAbsError: 2.51200e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 6.39402e-01\tAbsError: 2.58690e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.49519e-04\tAbsError: 2.25331e-01\n", - " Region: \"zone_3\"\tRelError: 3.32617e+01\tAbsError: 1.15461e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89584e-01\tAbsError: 5.80157e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.82182e-01\tAbsError: 5.74450e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.27893e+01\tAbsError: 2.58944e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.51823e-04\tAbsError: 2.26124e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.99106e+00\tAbsError: 4.60947e+15\n", - " Region: \"zone_1\"\tRelError: 9.82178e-01\tAbsError: 9.51528e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 9.79492e-01\tAbsError: 1.05200e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.68610e-03\tAbsError: 9.41008e-01\n", - " Region: \"zone_3\"\tRelError: 1.00888e+00\tAbsError: 4.60947e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.86739e-02\tAbsError: 1.78353e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.53479e-03\tAbsError: 2.82595e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.82985e-01\tAbsError: 1.05209e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69033e-03\tAbsError: 9.42484e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.34480e+00\tAbsError: 1.48853e+16\n", - " Region: \"zone_1\"\tRelError: 1.80604e-01\tAbsError: 1.59400e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.80172e-01\tAbsError: 9.16501e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.31839e-04\tAbsError: 1.50235e-01\n", - " Region: \"zone_3\"\tRelError: 3.16419e+00\tAbsError: 1.48853e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.34401e-02\tAbsError: 7.53366e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.19569e-02\tAbsError: 7.35164e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 3.07837e+00\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.31839e-04\tAbsError: 1.50235e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.86435e+00\tAbsError: 9.79041e+15\n", - " Region: \"zone_1\"\tRelError: 1.84952e+00\tAbsError: 1.25697e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.84592e+00\tAbsError: 3.77567e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.59985e-03\tAbsError: 1.25659e+00\n", - " Region: \"zone_3\"\tRelError: 1.01483e+00\tAbsError: 9.79041e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.98548e-02\tAbsError: 4.26210e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.13855e-03\tAbsError: 5.52831e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.74232e-01\tAbsError: 3.79891e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.60540e-03\tAbsError: 1.25852e+00\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 3.42204e-01\tAbsError: 1.90329e+15\n", - " Region: \"zone_1\"\tRelError: 2.01983e-02\tAbsError: 3.47392e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.91990e-02\tAbsError: 1.15001e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.99221e-04\tAbsError: 3.47277e-01\n", - " Region: \"zone_3\"\tRelError: 3.22006e-01\tAbsError: 1.90329e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.20950e-03\tAbsError: 1.00831e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03234e-03\tAbsError: 8.94978e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.11765e-01\tAbsError: 1.16357e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.99221e-04\tAbsError: 3.47277e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.24847e+01\tAbsError: 7.06406e+15\n", - " Region: \"zone_1\"\tRelError: 6.33480e-01\tAbsError: 7.91039e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.33255e-01\tAbsError: 3.40300e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.25585e-04\tAbsError: 7.87636e-02\n", - " Region: \"zone_3\"\tRelError: 1.18512e+01\tAbsError: 7.06406e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31041e-02\tAbsError: 3.43640e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.02226e-03\tAbsError: 3.62765e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18348e+01\tAbsError: 3.42813e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.25683e-04\tAbsError: 7.87975e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.26159e-01\tAbsError: 1.60368e+15\n", - " Region: \"zone_1\"\tRelError: 2.39971e-02\tAbsError: 1.68797e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.39489e-02\tAbsError: 1.07820e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.82419e-05\tAbsError: 1.67718e-02\n", - " Region: \"zone_3\"\tRelError: 7.02162e-01\tAbsError: 1.60368e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.86883e-03\tAbsError: 7.94204e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.42424e-03\tAbsError: 8.09476e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.96821e-01\tAbsError: 1.08766e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.82636e-05\tAbsError: 1.67793e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 8.20251e-01\tAbsError: 4.81045e+14\n", - " Region: \"zone_1\"\tRelError: 1.33651e-01\tAbsError: 4.63651e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33518e-01\tAbsError: 2.50993e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32739e-04\tAbsError: 4.63400e-02\n", - " Region: \"zone_3\"\tRelError: 6.86600e-01\tAbsError: 4.81045e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.60043e-03\tAbsError: 2.39564e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.09695e-04\tAbsError: 2.41481e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.83957e-01\tAbsError: 2.52723e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32791e-04\tAbsError: 4.63581e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.12346e-01\tAbsError: 1.08123e+14\n", - " Region: \"zone_1\"\tRelError: 3.56238e-03\tAbsError: 1.31451e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52458e-03\tAbsError: 6.36043e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.77942e-05\tAbsError: 1.31387e-02\n", - " Region: \"zone_3\"\tRelError: 1.08784e-01\tAbsError: 1.08123e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.76703e-04\tAbsError: 5.36465e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.39449e-04\tAbsError: 5.44763e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08330e-01\tAbsError: 6.41381e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.78094e-05\tAbsError: 1.31440e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 6.40048e-01\tAbsError: 2.83614e+14\n", - " Region: \"zone_1\"\tRelError: 6.61348e-02\tAbsError: 5.04447e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.61204e-02\tAbsError: 1.30341e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.44504e-05\tAbsError: 5.03144e-03\n", - " Region: \"zone_3\"\tRelError: 5.73913e-01\tAbsError: 2.83614e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.31177e-04\tAbsError: 1.41341e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.34459e-04\tAbsError: 1.42273e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.73033e-01\tAbsError: 1.31277e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.44524e-05\tAbsError: 5.03188e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 8.36096e-02\tAbsError: 8.44228e+13\n", - " Region: \"zone_1\"\tRelError: 2.87350e-03\tAbsError: 1.23009e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.86998e-03\tAbsError: 4.23325e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.52636e-06\tAbsError: 1.22586e-03\n", - " Region: \"zone_3\"\tRelError: 8.07361e-02\tAbsError: 8.44228e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46087e-04\tAbsError: 4.18513e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.25646e-04\tAbsError: 4.25715e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.04608e-02\tAbsError: 4.27186e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.52783e-06\tAbsError: 1.22636e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.04807e-01\tAbsError: 3.49952e+13\n", - " Region: \"zone_1\"\tRelError: 1.19544e-02\tAbsError: 2.15893e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19482e-02\tAbsError: 1.51234e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.19688e-06\tAbsError: 2.15742e-03\n", - " Region: \"zone_3\"\tRelError: 9.28525e-02\tAbsError: 3.49952e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.54709e-05\tAbsError: 1.74282e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.63267e-05\tAbsError: 1.75670e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.26845e-02\tAbsError: 1.52290e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.19717e-06\tAbsError: 2.15761e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.36875e-02\tAbsError: 9.69294e+12\n", - " Region: \"zone_1\"\tRelError: 4.70501e-04\tAbsError: 6.20216e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.68718e-04\tAbsError: 4.28680e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.78298e-06\tAbsError: 6.19787e-04\n", - " Region: \"zone_3\"\tRelError: 1.32170e-02\tAbsError: 9.69294e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.60935e-05\tAbsError: 4.80983e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.36870e-05\tAbsError: 4.88312e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31854e-02\tAbsError: 4.32490e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.78363e-06\tAbsError: 6.20008e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.34395e-02\tAbsError: 1.50873e+13\n", - " Region: \"zone_1\"\tRelError: 4.76678e-03\tAbsError: 3.66196e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.76573e-03\tAbsError: 5.85936e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.05115e-06\tAbsError: 3.65610e-04\n", - " Region: \"zone_3\"\tRelError: 3.86727e-02\tAbsError: 1.50873e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.49064e-05\tAbsError: 7.51386e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.47458e-05\tAbsError: 7.57343e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.86220e-02\tAbsError: 5.90085e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.05126e-06\tAbsError: 3.65648e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 6.63798e-03\tAbsError: 4.90503e+12\n", - " Region: \"zone_1\"\tRelError: 2.29406e-04\tAbsError: 9.25474e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29140e-04\tAbsError: 1.97212e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.66464e-07\tAbsError: 9.23502e-05\n", - " Region: \"zone_3\"\tRelError: 6.40857e-03\tAbsError: 4.90503e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.34900e-06\tAbsError: 2.43347e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32522e-06\tAbsError: 2.47155e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 6.39263e-03\tAbsError: 1.99078e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.66498e-07\tAbsError: 9.23593e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 8.47313e-03\tAbsError: 2.45459e+12\n", - " Region: \"zone_1\"\tRelError: 9.36987e-04\tAbsError: 1.32000e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.36609e-04\tAbsError: 9.56354e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.78566e-07\tAbsError: 1.31904e-04\n", - " Region: \"zone_3\"\tRelError: 7.53614e-03\tAbsError: 2.45459e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.87205e-06\tAbsError: 1.22267e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.65680e-06\tAbsError: 1.23192e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.52524e-03\tAbsError: 9.65698e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.78706e-07\tAbsError: 1.31954e-04\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.25648e-03\tAbsError: 7.75715e+11\n", - " Region: \"zone_1\"\tRelError: 4.35799e-05\tAbsError: 3.84452e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.34694e-05\tAbsError: 2.84735e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10539e-07\tAbsError: 3.84167e-05\n", - " Region: \"zone_3\"\tRelError: 1.21290e-03\tAbsError: 7.75715e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28473e-06\tAbsError: 3.85060e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.13479e-06\tAbsError: 3.90655e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21037e-03\tAbsError: 2.87358e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10581e-07\tAbsError: 3.84313e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 2.88106e-03\tAbsError: 8.75795e+11\n", - " Region: \"zone_1\"\tRelError: 3.17767e-04\tAbsError: 2.68964e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.17689e-04\tAbsError: 3.28042e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.70983e-08\tAbsError: 2.68636e-05\n", - " Region: \"zone_3\"\tRelError: 2.56329e-03\tAbsError: 8.75795e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34563e-06\tAbsError: 4.36269e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.68576e-06\tAbsError: 4.39526e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.56018e-03\tAbsError: 3.31331e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.71271e-08\tAbsError: 2.68742e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 4.79935e-04\tAbsError: 3.06765e+11\n", - " Region: \"zone_1\"\tRelError: 1.66486e-05\tAbsError: 7.60779e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66267e-05\tAbsError: 1.06336e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18595e-08\tAbsError: 7.59715e-06\n", - " Region: \"zone_3\"\tRelError: 4.63286e-04\tAbsError: 3.06765e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.16909e-07\tAbsError: 1.52260e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.59699e-07\tAbsError: 1.54505e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.62288e-04\tAbsError: 1.07353e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18679e-08\tAbsError: 7.60017e-06\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 6.15045e-04\tAbsError: 1.68932e+11\n", - " Region: \"zone_1\"\tRelError: 6.78668e-05\tAbsError: 8.57075e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.78422e-05\tAbsError: 6.94676e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.45781e-08\tAbsError: 8.56380e-06\n", - " Region: \"zone_3\"\tRelError: 5.47178e-04\tAbsError: 1.68932e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96513e-07\tAbsError: 8.41586e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.96621e-07\tAbsError: 8.47738e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.46460e-04\tAbsError: 7.01511e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.45874e-08\tAbsError: 8.56727e-06\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.01824e-04\tAbsError: 5.91028e+10\n", - " Region: \"zone_1\"\tRelError: 3.53926e-06\tAbsError: 2.67115e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.53158e-06\tAbsError: 2.19844e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.67947e-09\tAbsError: 2.66896e-06\n", - " Region: \"zone_3\"\tRelError: 9.82849e-05\tAbsError: 5.91028e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.78782e-08\tAbsError: 2.93440e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.77169e-08\tAbsError: 2.97588e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 9.80917e-05\tAbsError: 2.22202e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.68243e-09\tAbsError: 2.67005e-06\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 1.88221e-04\tAbsError: 5.35359e+10\n", - " Region: \"zone_1\"\tRelError: 2.07676e-05\tAbsError: 1.88845e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.07622e-05\tAbsError: 2.14079e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.41371e-09\tAbsError: 1.88631e-06\n", - " Region: \"zone_3\"\tRelError: 1.67453e-04\tAbsError: 5.35359e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.97944e-08\tAbsError: 2.66714e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.11906e-07\tAbsError: 2.68645e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.67256e-04\tAbsError: 2.16218e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.41591e-09\tAbsError: 1.88713e-06\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 3.38300e-05\tAbsError: 2.01418e+10\n", - " Region: \"zone_1\"\tRelError: 1.17571e-06\tAbsError: 5.87640e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17402e-06\tAbsError: 7.44968e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.68869e-09\tAbsError: 5.86895e-07\n", - " Region: \"zone_3\"\tRelError: 3.26543e-05\tAbsError: 2.01418e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.37367e-08\tAbsError: 9.99956e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.02428e-08\tAbsError: 1.01422e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.25886e-05\tAbsError: 7.53080e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.68939e-09\tAbsError: 5.87154e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:40\u001b[0m.\u001b[1;36m587\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.9999999999999999\u001b[0m\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 4.27414e-05\tAbsError: 1.14823e+10\n", - " Region: \"zone_1\"\tRelError: 4.71554e-06\tAbsError: 5.55691e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 4.71394e-06\tAbsError: 4.83442e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59344e-09\tAbsError: 5.55208e-07\n", - " Region: \"zone_3\"\tRelError: 3.80259e-05\tAbsError: 1.14823e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88030e-08\tAbsError: 5.72062e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.70392e-08\tAbsError: 5.76169e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.79784e-05\tAbsError: 4.88216e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59409e-09\tAbsError: 5.55448e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:40\u001b[0m.\u001b[1;36m783\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:40\u001b[0m.\u001b[1;36m783\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m1.1454545454545455\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.07845e+03\tAbsError: 1.16809e+18\n", - " Region: \"zone_1\"\tRelError: 2.98806e+02\tAbsError: 4.09541e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.98806e+02\tAbsError: 4.09540e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.33797e-10\tAbsError: 1.85521e-07\n", - " Region: \"zone_3\"\tRelError: 7.79646e+02\tAbsError: 1.16809e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90701e-01\tAbsError: 5.74604e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.65642e-01\tAbsError: 5.93489e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 7.78290e+02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.34021e-10\tAbsError: 1.85602e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.48560e+01\tAbsError: 2.45370e+18\n", - " Region: \"zone_1\"\tRelError: 1.31353e+01\tAbsError: 4.18724e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31353e+01\tAbsError: 4.18723e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.70107e-10\tAbsError: 1.28959e-07\n", - " Region: \"zone_3\"\tRelError: 2.17207e+01\tAbsError: 2.45370e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.83005e-01\tAbsError: 1.22478e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.70802e-01\tAbsError: 1.22892e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 2.05669e+01\tAbsError: 4.18730e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.70257e-10\tAbsError: 1.29014e-07\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.95227e+03\tAbsError: 4.47180e+17\n", - " Region: \"zone_1\"\tRelError: 5.95735e+02\tAbsError: 1.32695e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95731e+02\tAbsError: 3.07627e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.72641e-03\tAbsError: 1.29619e+00\n", - " Region: \"zone_3\"\tRelError: 2.35653e+03\tAbsError: 4.47180e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.30389e-01\tAbsError: 2.23868e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.07870e-01\tAbsError: 2.23312e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 2.35569e+03\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.72703e-03\tAbsError: 1.29643e+00\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.98343e+00\tAbsError: 5.25979e+17\n", - " Region: \"zone_1\"\tRelError: 6.78890e-01\tAbsError: 2.40460e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 6.72129e-01\tAbsError: 3.18452e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.76081e-03\tAbsError: 2.37276e+00\n", - " Region: \"zone_3\"\tRelError: 1.30454e+00\tAbsError: 5.25979e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.69683e-01\tAbsError: 2.63478e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.70057e-01\tAbsError: 2.62501e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 7.58037e-01\tAbsError: 3.18462e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.76160e-03\tAbsError: 2.37299e+00\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 8.37720e+02\tAbsError: 8.62713e+16\n", - " Region: \"zone_1\"\tRelError: 6.83172e+02\tAbsError: 5.09423e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 6.83170e+02\tAbsError: 2.58987e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39194e-03\tAbsError: 4.83524e-01\n", - " Region: \"zone_3\"\tRelError: 1.54548e+02\tAbsError: 8.62713e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27446e-01\tAbsError: 4.32970e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.20316e-02\tAbsError: 4.29743e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.54357e+02\tAbsError: 2.58982e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39675e-03\tAbsError: 4.85195e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 5.69994e-01\tAbsError: 2.17602e+16\n", - " Region: \"zone_1\"\tRelError: 2.50379e-01\tAbsError: 2.20116e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 2.44199e-01\tAbsError: 2.58997e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.17935e-03\tAbsError: 2.17526e+00\n", - " Region: \"zone_3\"\tRelError: 3.19615e-01\tAbsError: 2.17602e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.70343e-02\tAbsError: 1.09545e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.17379e-02\tAbsError: 1.08057e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.44659e-01\tAbsError: 2.58997e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.18370e-03\tAbsError: 2.17682e+00\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 6.13777e+02\tAbsError: 9.41150e+15\n", - " Region: \"zone_1\"\tRelError: 7.34943e+01\tAbsError: 1.74710e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 7.34894e+01\tAbsError: 9.16455e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.95952e-03\tAbsError: 1.73794e+00\n", - " Region: \"zone_3\"\tRelError: 5.40283e+02\tAbsError: 9.41150e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.82819e-02\tAbsError: 3.95531e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.70902e-02\tAbsError: 5.45619e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.40223e+02\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.96820e-03\tAbsError: 1.74101e+00\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.85302e-01\tAbsError: 2.54840e+16\n", - " Region: \"zone_1\"\tRelError: 1.03223e-01\tAbsError: 5.09960e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 8.89918e-02\tAbsError: 1.05193e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42311e-02\tAbsError: 5.08908e+00\n", - " Region: \"zone_3\"\tRelError: 1.82079e-01\tAbsError: 2.54840e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.18364e-02\tAbsError: 9.82764e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.96671e-03\tAbsError: 1.56563e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 8.90331e-02\tAbsError: 1.05211e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42430e-02\tAbsError: 5.09332e+00\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.16806e+01\tAbsError: 1.22386e+16\n", - " Region: \"zone_1\"\tRelError: 5.81165e+00\tAbsError: 2.01324e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.80588e+00\tAbsError: 6.99078e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.77633e-03\tAbsError: 2.01254e+00\n", - " Region: \"zone_3\"\tRelError: 5.86896e+00\tAbsError: 1.22386e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.88114e-02\tAbsError: 5.53671e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.06848e-02\tAbsError: 6.70184e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.80368e+00\tAbsError: 7.04147e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.78367e-03\tAbsError: 2.01512e+00\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.66806e-01\tAbsError: 4.46613e+16\n", - " Region: \"zone_1\"\tRelError: 2.01778e-01\tAbsError: 6.07668e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.84496e-01\tAbsError: 1.64814e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72818e-02\tAbsError: 6.07503e+00\n", - " Region: \"zone_3\"\tRelError: 4.65028e-01\tAbsError: 4.46613e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.85265e-01\tAbsError: 2.19504e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.34316e-02\tAbsError: 2.27109e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.19041e-01\tAbsError: 1.65634e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72910e-02\tAbsError: 6.07824e+00\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.44367e+01\tAbsError: 1.02259e+16\n", - " Region: \"zone_1\"\tRelError: 4.22055e+01\tAbsError: 1.45859e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.22051e+01\tAbsError: 5.71640e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.16833e-04\tAbsError: 1.45287e-01\n", - " Region: \"zone_3\"\tRelError: 4.22312e+01\tAbsError: 1.02259e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97020e-02\tAbsError: 4.95775e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.96648e-03\tAbsError: 5.26817e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 4.22051e+01\tAbsError: 5.76213e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.17002e-04\tAbsError: 1.45346e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.48036e-01\tAbsError: 4.08947e+16\n", - " Region: \"zone_1\"\tRelError: 1.59671e-01\tAbsError: 3.39263e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.58711e-01\tAbsError: 1.47989e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.59972e-04\tAbsError: 3.37784e-01\n", - " Region: \"zone_3\"\tRelError: 2.88365e-01\tAbsError: 4.08947e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.87342e-02\tAbsError: 2.00424e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.55822e-02\tAbsError: 2.08523e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.83088e-01\tAbsError: 1.48837e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.60353e-04\tAbsError: 3.37917e-01\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.49604e+00\tAbsError: 9.70392e+14\n", - " Region: \"zone_1\"\tRelError: 3.74605e+00\tAbsError: 7.97463e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.74582e+00\tAbsError: 4.64021e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28718e-04\tAbsError: 7.96999e-02\n", - " Region: \"zone_3\"\tRelError: 3.74999e+00\tAbsError: 9.70392e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.58316e-03\tAbsError: 4.83793e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.36045e-03\tAbsError: 4.86599e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.74582e+00\tAbsError: 4.67428e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28813e-04\tAbsError: 7.97327e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 5.94888e-02\tAbsError: 2.09629e+15\n", - " Region: \"zone_1\"\tRelError: 2.22902e-02\tAbsError: 1.82349e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.17712e-02\tAbsError: 1.08536e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.18918e-04\tAbsError: 1.82241e-01\n", - " Region: \"zone_3\"\tRelError: 3.71987e-02\tAbsError: 2.09629e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.94884e-03\tAbsError: 1.04302e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.49555e-03\tAbsError: 1.05327e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.52353e-02\tAbsError: 1.09074e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.18942e-04\tAbsError: 1.82257e-01\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 9.26745e+00\tAbsError: 5.14481e+14\n", - " Region: \"zone_1\"\tRelError: 8.59152e+00\tAbsError: 9.35409e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 8.59150e+00\tAbsError: 2.29233e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.68516e-05\tAbsError: 9.33117e-03\n", - " Region: \"zone_3\"\tRelError: 6.75929e-01\tAbsError: 5.14481e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.99602e-04\tAbsError: 2.56366e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.52414e-04\tAbsError: 2.58114e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.74650e-01\tAbsError: 2.31041e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.68516e-05\tAbsError: 9.33117e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.83605e-02\tAbsError: 1.16657e+15\n", - " Region: \"zone_1\"\tRelError: 1.11393e-02\tAbsError: 1.87909e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10859e-02\tAbsError: 5.17315e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.34103e-05\tAbsError: 1.87392e-02\n", - " Region: \"zone_3\"\tRelError: 1.72212e-02\tAbsError: 1.16657e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.50800e-03\tAbsError: 5.80987e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.83040e-03\tAbsError: 5.85581e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28294e-02\tAbsError: 5.20147e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.34103e-05\tAbsError: 1.87392e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.48030e+01\tAbsError: 7.19505e+13\n", - " Region: \"zone_1\"\tRelError: 1.40655e+01\tAbsError: 3.86191e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40655e+01\tAbsError: 2.84880e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11050e-05\tAbsError: 3.85906e-03\n", - " Region: \"zone_3\"\tRelError: 7.37529e-01\tAbsError: 7.19505e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38672e-04\tAbsError: 3.58470e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.21484e-04\tAbsError: 3.61036e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.37257e-01\tAbsError: 2.87067e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11068e-05\tAbsError: 3.85947e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 4.18320e-03\tAbsError: 1.27381e+14\n", - " Region: \"zone_1\"\tRelError: 1.63776e-03\tAbsError: 7.35262e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.61677e-03\tAbsError: 5.51755e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.09861e-05\tAbsError: 7.34711e-03\n", - " Region: \"zone_3\"\tRelError: 2.54544e-03\tAbsError: 1.27381e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.31618e-04\tAbsError: 6.29513e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.20105e-04\tAbsError: 6.44296e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87274e-03\tAbsError: 5.54604e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.09861e-05\tAbsError: 7.34711e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.47896e+00\tAbsError: 2.94682e+13\n", - " Region: \"zone_1\"\tRelError: 1.24509e+00\tAbsError: 6.95816e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.24509e+00\tAbsError: 1.07735e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.99937e-06\tAbsError: 6.94739e-04\n", - " Region: \"zone_3\"\tRelError: 2.33869e-01\tAbsError: 2.94682e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.81392e-05\tAbsError: 1.46808e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.76977e-05\tAbsError: 1.47873e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.33792e-01\tAbsError: 1.08579e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.99953e-06\tAbsError: 6.95001e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.50724e-03\tAbsError: 4.58277e+13\n", - " Region: \"zone_1\"\tRelError: 6.07327e-04\tAbsError: 1.12554e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.04117e-04\tAbsError: 1.90266e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.20955e-06\tAbsError: 1.12364e-03\n", - " Region: \"zone_3\"\tRelError: 8.99917e-04\tAbsError: 4.58277e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.44714e-05\tAbsError: 2.28384e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.02367e-04\tAbsError: 2.29892e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.99868e-04\tAbsError: 1.91285e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.21023e-06\tAbsError: 1.12389e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.23148e-01\tAbsError: 5.24321e+12\n", - " Region: \"zone_1\"\tRelError: 2.61296e-01\tAbsError: 2.47766e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.61295e-01\tAbsError: 1.83418e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.11380e-07\tAbsError: 2.47583e-04\n", - " Region: \"zone_3\"\tRelError: 6.18518e-02\tAbsError: 5.24321e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94642e-06\tAbsError: 2.61290e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.40186e-06\tAbsError: 2.63031e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 6.18338e-02\tAbsError: 1.85316e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.11644e-07\tAbsError: 2.47677e-04\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.58569e-04\tAbsError: 7.36064e+12\n", - " Region: \"zone_1\"\tRelError: 1.03590e-04\tAbsError: 3.69022e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02537e-04\tAbsError: 2.95343e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.05323e-06\tAbsError: 3.68726e-04\n", - " Region: \"zone_3\"\tRelError: 1.54979e-04\tAbsError: 7.36064e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54889e-05\tAbsError: 3.65218e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.96114e-05\tAbsError: 3.70846e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18825e-04\tAbsError: 2.97648e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.05333e-06\tAbsError: 3.68764e-04\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 9.77270e-02\tAbsError: 1.82347e+12\n", - " Region: \"zone_1\"\tRelError: 7.65024e-02\tAbsError: 5.28468e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.65022e-02\tAbsError: 6.24160e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.51664e-07\tAbsError: 5.27844e-05\n", - " Region: \"zone_3\"\tRelError: 2.12246e-02\tAbsError: 1.82347e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11287e-06\tAbsError: 9.08701e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.75258e-06\tAbsError: 9.14773e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.12196e-02\tAbsError: 6.30788e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.51721e-07\tAbsError: 5.28055e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 7.93615e-05\tAbsError: 2.16297e+12\n", - " Region: \"zone_1\"\tRelError: 3.23104e-05\tAbsError: 6.76144e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.21176e-05\tAbsError: 9.25130e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.92857e-07\tAbsError: 6.75219e-05\n", - " Region: \"zone_3\"\tRelError: 4.70511e-05\tAbsError: 2.16297e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.07553e-06\tAbsError: 1.07246e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.55801e-06\tAbsError: 1.09051e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.72246e-05\tAbsError: 9.32629e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.92929e-07\tAbsError: 6.75484e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:53\u001b[0m.\u001b[1;36m173\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: 1.25\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 2.05494e-02\tAbsError: 3.74583e+11\n", - " Region: \"zone_1\"\tRelError: 1.55447e-02\tAbsError: 1.67716e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55447e-02\tAbsError: 1.38057e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.81497e-08\tAbsError: 1.67577e-05\n", - " Region: \"zone_3\"\tRelError: 5.00469e-03\tAbsError: 3.74583e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.90614e-07\tAbsError: 1.86695e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.85333e-07\tAbsError: 1.87888e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.00347e-03\tAbsError: 1.39492e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.81681e-08\tAbsError: 1.67646e-05\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 6.14058e-03\tAbsError: 1.17501e+11\n", - " Region: \"zone_1\"\tRelError: 4.56971e-03\tAbsError: 3.83354e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.56970e-03\tAbsError: 4.25999e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10026e-08\tAbsError: 3.82928e-06\n", - " Region: \"zone_3\"\tRelError: 1.57087e-03\tAbsError: 1.17501e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.29368e-07\tAbsError: 5.85629e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.92613e-07\tAbsError: 5.89376e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.57054e-03\tAbsError: 4.30497e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10071e-08\tAbsError: 3.83095e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.36008e+00\tAbsError: 2.97116e+18\n", - " Region: \"zone_1\"\tRelError: 3.47604e+00\tAbsError: 4.18915e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.47604e+00\tAbsError: 4.18718e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.64368e-08\tAbsError: 1.97593e-05\n", - " Region: \"zone_3\"\tRelError: 1.88404e+00\tAbsError: 2.97116e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.08761e-01\tAbsError: 1.48457e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.00956e-01\tAbsError: 1.48659e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 8.74325e-01\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.64587e-08\tAbsError: 1.97673e-05\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 1.39778e-03\tAbsError: 2.64036e+10\n", - " Region: \"zone_1\"\tRelError: 1.02275e-03\tAbsError: 1.13260e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02274e-03\tAbsError: 9.95943e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.25141e-09\tAbsError: 1.13160e-06\n", - " Region: \"zone_3\"\tRelError: 3.75036e-04\tAbsError: 2.64036e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.18289e-08\tAbsError: 1.31607e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.84989e-08\tAbsError: 1.32430e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.74952e-04\tAbsError: 1.00632e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.25274e-09\tAbsError: 1.13210e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 8.38000e-01\tAbsError: 4.19541e+17\n", - " Region: \"zone_1\"\tRelError: 2.02810e-01\tAbsError: 3.72206e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.92418e-01\tAbsError: 3.18445e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.03924e-02\tAbsError: 3.69022e+00\n", - " Region: \"zone_3\"\tRelError: 6.35190e-01\tAbsError: 4.19541e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.22905e-01\tAbsError: 2.10016e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.09404e-01\tAbsError: 2.09524e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.92487e-01\tAbsError: 3.18460e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.03935e-02\tAbsError: 3.69072e+00\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 3.99447e-04\tAbsError: 7.75693e+09\n", - " Region: \"zone_1\"\tRelError: 2.89402e-04\tAbsError: 2.71336e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.89401e-04\tAbsError: 2.89100e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.78779e-10\tAbsError: 2.71047e-07\n", - " Region: \"zone_3\"\tRelError: 1.10046e-04\tAbsError: 7.75693e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.37898e-09\tAbsError: 3.86636e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.32737e-08\tAbsError: 3.89057e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10023e-04\tAbsError: 2.92143e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.79099e-10\tAbsError: 2.71163e-07\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.94946e-01\tAbsError: 3.72204e+16\n", - " Region: \"zone_1\"\tRelError: 1.32375e-01\tAbsError: 2.45003e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.25563e-01\tAbsError: 2.58821e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.81251e-03\tAbsError: 2.42415e+00\n", - " Region: \"zone_3\"\tRelError: 1.62571e-01\tAbsError: 3.72204e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94379e-02\tAbsError: 1.85679e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.04649e-02\tAbsError: 1.86524e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.25823e-01\tAbsError: 2.58467e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.84508e-03\tAbsError: 2.43578e+00\n", - "Iteration: 16\n", - " Device: \"device\"\tRelError: 9.59509e-05\tAbsError: 1.84384e+09\n", - " Region: \"zone_1\"\tRelError: 6.90141e-05\tAbsError: 7.66546e-08\n", - " Equation: \"PotentialEquation\"\tRelError: 6.90138e-05\tAbsError: 7.02485e-11\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.20044e-10\tAbsError: 7.65844e-08\n", - " Region: \"zone_3\"\tRelError: 2.69368e-05\tAbsError: 1.84384e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12306e-09\tAbsError: 9.19073e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.38040e-09\tAbsError: 9.24762e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.69311e-05\tAbsError: 7.09816e-11\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.20134e-10\tAbsError: 7.66170e-08\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:32:56\u001b[0m.\u001b[1;36m861\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 1.0999999999999999\u001b[0m\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.61360e-01\tAbsError: 3.87872e+16\n", - " Region: \"zone_1\"\tRelError: 5.16143e-02\tAbsError: 1.56589e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 4.72241e-02\tAbsError: 1.05190e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.39019e-03\tAbsError: 1.55537e+00\n", - " Region: \"zone_3\"\tRelError: 1.09746e-01\tAbsError: 3.87872e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47430e-02\tAbsError: 1.93636e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.33427e-02\tAbsError: 1.94236e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.72362e-02\tAbsError: 1.05208e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.42403e-03\tAbsError: 1.56733e+00\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.29423e+03\tAbsError: 2.05927e+18\n", - " Region: \"zone_1\"\tRelError: 8.20020e+01\tAbsError: 4.09537e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.20020e+01\tAbsError: 4.09537e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.43761e-11\tAbsError: 1.89251e-08\n", - " Region: \"zone_3\"\tRelError: 2.21223e+03\tAbsError: 2.05927e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.07156e-01\tAbsError: 1.02695e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.89042e-01\tAbsError: 1.03232e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 2.21103e+03\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.43983e-11\tAbsError: 1.89331e-08\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 4.12508e-02\tAbsError: 2.36362e+16\n", - " Region: \"zone_1\"\tRelError: 1.23306e-02\tAbsError: 5.50249e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07777e-02\tAbsError: 3.00426e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.55296e-03\tAbsError: 5.49949e-01\n", - " Region: \"zone_3\"\tRelError: 2.89202e-02\tAbsError: 2.36362e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.42033e-03\tAbsError: 1.18049e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.09279e-02\tAbsError: 1.18314e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10135e-02\tAbsError: 3.00426e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.55851e-03\tAbsError: 5.51737e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 4.61689e+02\tAbsError: 5.07798e+17\n", - " Region: \"zone_1\"\tRelError: 3.64692e+01\tAbsError: 1.84178e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 3.64640e+01\tAbsError: 3.07624e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.18031e-03\tAbsError: 1.81102e+00\n", - " Region: \"zone_3\"\tRelError: 4.25219e+02\tAbsError: 5.07798e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.93091e-01\tAbsError: 2.54521e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.93600e-01\tAbsError: 2.53278e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 4.24628e+02\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.18075e-03\tAbsError: 1.81120e+00\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.30456e-02\tAbsError: 5.05269e+15\n", - " Region: \"zone_1\"\tRelError: 2.57227e-03\tAbsError: 2.38651e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.50544e-03\tAbsError: 9.30864e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.68300e-05\tAbsError: 2.37721e-02\n", - " Region: \"zone_3\"\tRelError: 1.04733e-02\tAbsError: 5.05269e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.20422e-03\tAbsError: 2.49761e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.45765e-03\tAbsError: 2.55509e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74456e-03\tAbsError: 9.35381e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.68749e-05\tAbsError: 2.37885e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.49657e+00\tAbsError: 3.51966e+16\n", - " Region: \"zone_1\"\tRelError: 4.64902e-01\tAbsError: 7.04755e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.62960e-01\tAbsError: 2.58789e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94154e-03\tAbsError: 6.78876e-01\n", - " Region: \"zone_3\"\tRelError: 2.03167e+00\tAbsError: 3.51966e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.92042e-02\tAbsError: 1.76602e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.22372e-02\tAbsError: 1.75363e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.95829e+00\tAbsError: 2.58789e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94154e-03\tAbsError: 6.78876e-01\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.34859e-04\tAbsError: 4.31967e+14\n", - " Region: \"zone_1\"\tRelError: 1.54373e-04\tAbsError: 1.04332e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.25013e-04\tAbsError: 4.01967e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.93605e-05\tAbsError: 1.04292e-02\n", - " Region: \"zone_3\"\tRelError: 4.80486e-04\tAbsError: 4.31967e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.73966e-04\tAbsError: 2.14461e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.90341e-05\tAbsError: 2.17506e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.81236e-05\tAbsError: 4.04531e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.93628e-05\tAbsError: 1.04303e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 6.69589e+00\tAbsError: 5.37696e+15\n", - " Region: \"zone_1\"\tRelError: 3.73324e+00\tAbsError: 3.88180e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.73216e+00\tAbsError: 9.16423e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08076e-03\tAbsError: 3.79016e-01\n", - " Region: \"zone_3\"\tRelError: 2.96265e+00\tAbsError: 5.37696e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.56094e-03\tAbsError: 2.69855e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.01807e-03\tAbsError: 2.67840e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.95599e+00\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08076e-03\tAbsError: 3.79016e-01\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.80331e-04\tAbsError: 1.22832e+14\n", - " Region: \"zone_1\"\tRelError: 8.29661e-05\tAbsError: 8.78226e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 8.05056e-05\tAbsError: 2.87475e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.46051e-06\tAbsError: 8.75351e-04\n", - " Region: \"zone_3\"\tRelError: 2.97365e-04\tAbsError: 1.22832e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42838e-04\tAbsError: 6.10063e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.36160e-05\tAbsError: 6.18260e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.84489e-05\tAbsError: 2.88687e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.46143e-06\tAbsError: 8.75680e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.88315e-01\tAbsError: 2.62271e+15\n", - " Region: \"zone_1\"\tRelError: 4.71922e-01\tAbsError: 5.76588e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.70275e-01\tAbsError: 6.27557e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.64666e-03\tAbsError: 5.76525e-01\n", - " Region: \"zone_3\"\tRelError: 3.16393e-01\tAbsError: 2.62271e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49491e-02\tAbsError: 1.29724e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.95632e-03\tAbsError: 1.32547e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.97839e-01\tAbsError: 6.29832e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.64866e-03\tAbsError: 5.77242e-01\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.18220e-05\tAbsError: 9.16581e+12\n", - " Region: \"zone_1\"\tRelError: 7.98670e-06\tAbsError: 2.39440e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.31303e-06\tAbsError: 2.34929e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.73668e-07\tAbsError: 2.39205e-04\n", - " Region: \"zone_3\"\tRelError: 2.38353e-05\tAbsError: 9.16581e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31675e-05\tAbsError: 4.59210e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.33363e-06\tAbsError: 4.57371e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.66041e-06\tAbsError: 2.35961e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.73759e-07\tAbsError: 2.39225e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.58997e+01\tAbsError: 3.20526e+15\n", - " Region: \"zone_1\"\tRelError: 1.29777e+01\tAbsError: 2.18715e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29777e+01\tAbsError: 1.22913e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.20649e-05\tAbsError: 2.17486e-02\n", - " Region: \"zone_3\"\tRelError: 8.29220e+01\tAbsError: 3.20526e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.66160e-03\tAbsError: 1.56677e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.59518e-03\tAbsError: 1.63849e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.29127e+01\tAbsError: 1.23738e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.20911e-05\tAbsError: 2.17577e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.68799e+00\tAbsError: 1.24428e+14\n", - " Region: \"zone_1\"\tRelError: 2.78169e+00\tAbsError: 1.62679e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78165e+00\tAbsError: 7.17419e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.64072e-05\tAbsError: 1.62607e-02\n", - " Region: \"zone_3\"\tRelError: 9.06301e-01\tAbsError: 1.24428e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.41976e-04\tAbsError: 6.19540e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.02421e-04\tAbsError: 6.24745e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.05410e-01\tAbsError: 7.21579e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.64251e-05\tAbsError: 1.62670e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:04\u001b[0m.\u001b[1;36m521\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.74817e+00\tAbsError: 1.00690e+14\n", - " Region: \"zone_1\"\tRelError: 2.14136e+00\tAbsError: 1.40275e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.14135e+00\tAbsError: 4.52029e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.00073e-06\tAbsError: 1.39823e-03\n", - " Region: \"zone_3\"\tRelError: 1.60681e+00\tAbsError: 1.00690e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04820e-04\tAbsError: 5.01493e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.34375e-04\tAbsError: 5.05408e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60646e+00\tAbsError: 4.54847e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.00161e-06\tAbsError: 1.39859e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.05492e-01\tAbsError: 9.06572e+12\n", - " Region: \"zone_1\"\tRelError: 4.25847e-01\tAbsError: 6.76994e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.25845e-01\tAbsError: 4.28249e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93585e-06\tAbsError: 6.76565e-04\n", - " Region: \"zone_3\"\tRelError: 1.79645e-01\tAbsError: 9.06572e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.72999e-05\tAbsError: 4.51680e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.43151e-05\tAbsError: 4.54892e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.79592e-01\tAbsError: 4.30804e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93585e-06\tAbsError: 6.76565e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.48197e-01\tAbsError: 4.50048e+12\n", - " Region: \"zone_1\"\tRelError: 1.60046e-01\tAbsError: 9.62234e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60046e-01\tAbsError: 1.80340e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.75240e-07\tAbsError: 9.60431e-05\n", - " Region: \"zone_3\"\tRelError: 8.81510e-02\tAbsError: 4.50048e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.56637e-06\tAbsError: 2.24288e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.56618e-06\tAbsError: 2.25761e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.81336e-02\tAbsError: 1.81436e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.75295e-07\tAbsError: 9.60627e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 4.16881e-02\tAbsError: 5.87027e+11\n", - " Region: \"zone_1\"\tRelError: 2.74007e-02\tAbsError: 3.67679e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.74006e-02\tAbsError: 2.53315e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.05297e-07\tAbsError: 3.67426e-05\n", - " Region: \"zone_3\"\tRelError: 1.42874e-02\tAbsError: 5.87027e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.44350e-06\tAbsError: 2.92634e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.68502e-06\tAbsError: 2.94393e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.42841e-02\tAbsError: 2.55528e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.05309e-07\tAbsError: 3.67468e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.48230e-02\tAbsError: 2.24518e+11\n", - " Region: \"zone_1\"\tRelError: 9.67323e-03\tAbsError: 6.58649e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 9.67321e-03\tAbsError: 9.07531e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.88326e-08\tAbsError: 6.57742e-06\n", - " Region: \"zone_3\"\tRelError: 5.14973e-03\tAbsError: 2.24518e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.12497e-07\tAbsError: 1.11948e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.18689e-07\tAbsError: 1.12571e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.14878e-03\tAbsError: 9.15701e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.88397e-08\tAbsError: 6.57999e-06\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 2.80808e-03\tAbsError: 3.70977e+10\n", - " Region: \"zone_1\"\tRelError: 1.83927e-03\tAbsError: 2.15171e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.83927e-03\tAbsError: 1.71473e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.15592e-09\tAbsError: 2.15000e-06\n", - " Region: \"zone_3\"\tRelError: 9.68805e-04\tAbsError: 3.70977e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.10516e-08\tAbsError: 1.85046e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.09611e-07\tAbsError: 1.85931e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 9.68608e-04\tAbsError: 1.72971e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.15824e-09\tAbsError: 2.15085e-06\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 8.73376e-04\tAbsError: 1.21033e+10\n", - " Region: \"zone_1\"\tRelError: 5.71066e-04\tAbsError: 4.32120e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 5.71065e-04\tAbsError: 5.34362e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.23573e-09\tAbsError: 4.31585e-07\n", - " Region: \"zone_3\"\tRelError: 3.02310e-04\tAbsError: 1.21033e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.19763e-08\tAbsError: 6.03773e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.10528e-08\tAbsError: 6.06556e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.02256e-04\tAbsError: 5.39200e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.23623e-09\tAbsError: 4.31772e-07\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 1.80868e-04\tAbsError: 2.31864e+09\n", - " Region: \"zone_1\"\tRelError: 1.18462e-04\tAbsError: 1.27109e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18462e-04\tAbsError: 1.10538e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.63622e-10\tAbsError: 1.26998e-07\n", - " Region: \"zone_3\"\tRelError: 6.24053e-05\tAbsError: 2.31864e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73488e-09\tAbsError: 1.15691e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.90572e-09\tAbsError: 1.16172e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 6.23933e-05\tAbsError: 1.11505e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.63771e-10\tAbsError: 1.27053e-07\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 5.16278e-05\tAbsError: 6.84005e+08\n", - " Region: \"zone_1\"\tRelError: 3.37813e-05\tAbsError: 2.73846e-08\n", - " Equation: \"PotentialEquation\"\tRelError: 3.37812e-05\tAbsError: 3.15860e-11\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.83172e-11\tAbsError: 2.73530e-08\n", - " Region: \"zone_3\"\tRelError: 1.78465e-05\tAbsError: 6.84005e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24266e-09\tAbsError: 3.41303e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.85743e-09\tAbsError: 3.42702e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 1.78433e-05\tAbsError: 3.18691e-11\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.83488e-11\tAbsError: 2.73645e-08\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:11\u001b[0m.\u001b[1;36m280\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 1.2\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.69357e+00\tAbsError: 2.66495e+18\n", - " Region: \"zone_1\"\tRelError: 4.21216e+00\tAbsError: 4.09534e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.21216e+00\tAbsError: 4.09534e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.15817e-11\tAbsError: 7.53761e-09\n", - " Region: \"zone_3\"\tRelError: 2.48140e+00\tAbsError: 2.66495e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.26904e-01\tAbsError: 1.33117e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.18950e-01\tAbsError: 1.33378e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43555e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.15905e-11\tAbsError: 7.54080e-09\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 9.11083e-01\tAbsError: 4.29693e+17\n", - " Region: \"zone_1\"\tRelError: 2.33260e-01\tAbsError: 3.01190e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 2.24815e-01\tAbsError: 3.07620e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.44504e-03\tAbsError: 2.98114e+00\n", - " Region: \"zone_3\"\tRelError: 6.77823e-01\tAbsError: 4.29693e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.26134e-01\tAbsError: 2.15151e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.18205e-01\tAbsError: 2.14542e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25038e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.44618e-03\tAbsError: 2.98144e+00\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 3.98015e-01\tAbsError: 3.44260e+16\n", - " Region: \"zone_1\"\tRelError: 1.67630e-01\tAbsError: 4.32385e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55559e-01\tAbsError: 2.58776e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20711e-02\tAbsError: 4.29797e+00\n", - " Region: \"zone_3\"\tRelError: 2.30385e-01\tAbsError: 3.44260e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.28242e-02\tAbsError: 1.71675e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.96798e-02\tAbsError: 1.72585e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55792e-01\tAbsError: 2.58613e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20893e-02\tAbsError: 4.30461e+00\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.88268e-01\tAbsError: 5.44887e+16\n", - " Region: \"zone_1\"\tRelError: 8.11123e-02\tAbsError: 3.74063e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 7.05212e-02\tAbsError: 9.16402e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.05911e-02\tAbsError: 3.73147e+00\n", - " Region: \"zone_3\"\tRelError: 2.07156e-01\tAbsError: 5.44887e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.14920e-02\tAbsError: 2.71499e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.19391e-02\tAbsError: 2.73388e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 7.31159e-02\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06092e-02\tAbsError: 3.73794e+00\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.46664e-01\tAbsError: 4.08487e+16\n", - " Region: \"zone_1\"\tRelError: 4.56801e-02\tAbsError: 3.69590e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.46303e-02\tAbsError: 6.80823e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.04978e-03\tAbsError: 3.68909e-01\n", - " Region: \"zone_3\"\tRelError: 1.00984e-01\tAbsError: 4.08487e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47873e-02\tAbsError: 2.03982e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.89178e-02\tAbsError: 2.04505e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.62262e-02\tAbsError: 6.81912e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.05310e-03\tAbsError: 3.70023e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.50047e-03\tAbsError: 3.65688e+15\n", - " Region: \"zone_1\"\tRelError: 1.17570e-03\tAbsError: 5.54688e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01812e-03\tAbsError: 2.86291e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.57580e-04\tAbsError: 5.54401e-02\n", - " Region: \"zone_3\"\tRelError: 6.32477e-03\tAbsError: 3.65688e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.94960e-03\tAbsError: 1.81551e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.15827e-03\tAbsError: 1.84137e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.05928e-03\tAbsError: 2.88541e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.57617e-04\tAbsError: 5.54541e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.05325e-03\tAbsError: 7.39656e+14\n", - " Region: \"zone_1\"\tRelError: 1.05635e-03\tAbsError: 4.72946e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04302e-03\tAbsError: 1.25154e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.33385e-05\tAbsError: 4.71694e-03\n", - " Region: \"zone_3\"\tRelError: 1.99689e-03\tAbsError: 7.39656e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.06585e-04\tAbsError: 3.69865e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.95891e-04\tAbsError: 3.69791e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08107e-03\tAbsError: 1.26067e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.33460e-05\tAbsError: 4.71960e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.02228e-04\tAbsError: 7.07967e+13\n", - " Region: \"zone_1\"\tRelError: 5.25423e-05\tAbsError: 1.84411e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 4.72968e-05\tAbsError: 8.14577e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.24545e-06\tAbsError: 1.84329e-03\n", - " Region: \"zone_3\"\tRelError: 1.49686e-04\tAbsError: 7.07967e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.00882e-05\tAbsError: 3.51107e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.52399e-05\tAbsError: 3.56860e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.91100e-05\tAbsError: 8.19808e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.24790e-06\tAbsError: 1.84419e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 9.93368e-05\tAbsError: 1.98300e+13\n", - " Region: \"zone_1\"\tRelError: 3.45670e-05\tAbsError: 1.74429e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.40718e-05\tAbsError: 4.08047e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.95220e-07\tAbsError: 1.74021e-04\n", - " Region: \"zone_3\"\tRelError: 6.47697e-05\tAbsError: 1.98300e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.78567e-06\tAbsError: 9.91314e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.41541e-05\tAbsError: 9.91687e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.53344e-05\tAbsError: 4.11038e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.95524e-07\tAbsError: 1.74130e-04\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:19\u001b[0m.\u001b[1;36m618\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 1.3\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.74984e+00\tAbsError: 2.99427e+18\n", - " Region: \"zone_1\"\tRelError: 1.22014e+00\tAbsError: 4.10265e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.22014e+00\tAbsError: 4.09531e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.08768e-07\tAbsError: 7.33628e-05\n", - " Region: \"zone_3\"\tRelError: 1.52970e+00\tAbsError: 2.99427e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.68781e-01\tAbsError: 1.49643e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.58888e-01\tAbsError: 1.49783e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 6.02035e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.08870e-07\tAbsError: 7.33999e-05\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 7.11354e-01\tAbsError: 3.39922e+17\n", - " Region: \"zone_1\"\tRelError: 1.62508e-01\tAbsError: 4.20847e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.50825e-01\tAbsError: 3.07616e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.16823e-02\tAbsError: 4.17771e+00\n", - " Region: \"zone_3\"\tRelError: 5.48846e-01\tAbsError: 3.39922e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.02912e-01\tAbsError: 1.70116e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.83391e-01\tAbsError: 1.69806e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.50859e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.16835e-02\tAbsError: 4.17814e+00\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.39788e-01\tAbsError: 5.48577e+16\n", - " Region: \"zone_1\"\tRelError: 1.05133e-01\tAbsError: 2.52094e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 9.81720e-02\tAbsError: 2.58708e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.96071e-03\tAbsError: 2.49507e+00\n", - " Region: \"zone_3\"\tRelError: 1.34655e-01\tAbsError: 5.48577e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.44445e-02\tAbsError: 2.73900e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.50754e-02\tAbsError: 2.74677e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 9.81720e-02\tAbsError: 2.58708e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.96305e-03\tAbsError: 2.49588e+00\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.46801e-01\tAbsError: 5.16511e+16\n", - " Region: \"zone_1\"\tRelError: 3.82516e-02\tAbsError: 1.66960e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 3.35977e-02\tAbsError: 9.16363e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.65383e-03\tAbsError: 1.66044e+00\n", - " Region: \"zone_3\"\tRelError: 1.08549e-01\tAbsError: 5.16511e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.50546e-02\tAbsError: 2.58130e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.52331e-02\tAbsError: 2.58381e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.36049e-02\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.65675e-03\tAbsError: 1.66145e+00\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 4.18420e-02\tAbsError: 3.01642e+16\n", - " Region: \"zone_1\"\tRelError: 1.00205e-02\tAbsError: 3.09336e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 9.14415e-03\tAbsError: 3.58905e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.76318e-04\tAbsError: 3.08977e-01\n", - " Region: \"zone_3\"\tRelError: 3.18216e-02\tAbsError: 3.01642e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.57299e-03\tAbsError: 1.50610e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.30870e-02\tAbsError: 1.51033e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 9.28151e-03\tAbsError: 3.59005e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.80063e-04\tAbsError: 3.10394e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.19199e-03\tAbsError: 3.33433e+15\n", - " Region: \"zone_1\"\tRelError: 7.32131e-04\tAbsError: 2.20514e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.70631e-04\tAbsError: 3.80425e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.14997e-05\tAbsError: 2.20134e-02\n", - " Region: \"zone_3\"\tRelError: 5.45986e-03\tAbsError: 3.33433e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.47884e-03\tAbsError: 1.65513e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.44744e-04\tAbsError: 1.67921e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 4.74729e-04\tAbsError: 3.80514e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.15473e-05\tAbsError: 2.20319e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.71686e-04\tAbsError: 6.22919e+14\n", - " Region: \"zone_1\"\tRelError: 7.57987e-05\tAbsError: 4.41710e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.34842e-05\tAbsError: 4.90940e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.23145e-05\tAbsError: 4.41219e-03\n", - " Region: \"zone_3\"\tRelError: 3.95887e-04\tAbsError: 6.22919e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.19030e-04\tAbsError: 3.10182e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.00016e-04\tAbsError: 3.12737e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.45237e-05\tAbsError: 4.91118e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.23180e-05\tAbsError: 4.41341e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.23949e-04\tAbsError: 6.05361e+13\n", - " Region: \"zone_1\"\tRelError: 2.06195e-05\tAbsError: 8.14059e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.83500e-05\tAbsError: 1.11800e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.26953e-06\tAbsError: 8.12941e-04\n", - " Region: \"zone_3\"\tRelError: 1.03330e-04\tAbsError: 6.05361e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.60362e-05\tAbsError: 3.03412e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.74075e-05\tAbsError: 3.01949e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76158e-05\tAbsError: 1.12220e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.27050e-06\tAbsError: 8.13295e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.75170e-05\tAbsError: 8.97976e+12\n", - " Region: \"zone_1\"\tRelError: 2.87179e-06\tAbsError: 8.96839e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.62152e-06\tAbsError: 1.74588e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.50268e-07\tAbsError: 8.95093e-05\n", - " Region: \"zone_3\"\tRelError: 1.46452e-05\tAbsError: 8.97976e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00137e-05\tAbsError: 4.44041e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.14437e-06\tAbsError: 4.53935e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.23658e-06\tAbsError: 1.75366e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.50560e-07\tAbsError: 8.96198e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:29\u001b[0m.\u001b[1;36m537\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:30\u001b[0m.\u001b[1;36m580\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:30\u001b[0m.\u001b[1;36m595\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.0.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:30\u001b[0m.\u001b[1;36m706\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.5.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:30\u001b[0m.\u001b[1;36m812\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.55.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:30\u001b[0m.\u001b[1;36m918\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.6.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:31\u001b[0m.\u001b[1;36m017\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.65.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:31\u001b[0m.\u001b[1;36m129\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.7.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:31\u001b[0m.\u001b[1;36m256\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.75.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:31\u001b[0m.\u001b[1;36m360\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.8.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:31\u001b[0m.\u001b[1;36m475\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.85.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:31\u001b[0m.\u001b[1;36m575\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.9.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:31\u001b[0m.\u001b[1;36m680\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.95.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:31\u001b[0m.\u001b[1;36m778\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.0.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:31\u001b[0m.\u001b[1;36m885\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.05.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:31\u001b[0m.\u001b[1;36m994\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.1.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:32\u001b[0m.\u001b[1;36m104\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.15.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:32\u001b[0m.\u001b[1;36m212\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.2.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:32\u001b[0m.\u001b[1;36m316\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.25.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:32\u001b[0m.\u001b[1;36m423\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.3.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:32\u001b[0m.\u001b[1;36m534\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mFinished_reading devsim data\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:32\u001b[0m.\u001b[1;36m544\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading heat-charge solver CHARGE output.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:32\u001b[0m.\u001b[1;36m648\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor charge_global_mnt\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:33\u001b[0m.\u001b[1;36m888\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor potential_global_mnt\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:34\u001b[0m.\u001b[1;36m594\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor capacitance_global_mnt\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:35\u001b[0m.\u001b[1;36m870\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor temp_mnt\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m463\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mPostprocess time (s): 5.8727\u001b[0m \n" - ] - }, - { - "data": { - "text/plain": [ - "CompletedProcess(args=['cp', 'output/simulation_data.hdf5', 'tmp_Ba_example_cst/'], returncode=0)" - ] - }, - "execution_count": 17, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "results_cst = run_heat_sim(sim=sim_cst, log_level=\"DEBUG\")\n", - "subprocess.run([\"cp\", \"-r\", \"tmp\", \"tmp_Ba_example_cst\"]) \n", - "subprocess.run([\"cp\", \"output/simulation_data.hdf5\", \"tmp_Ba_example_cst/\"]) " - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "id": "f2db1025-950c-4c15-a7c0-4980022d1ebd", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m815\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mSetting up heat-charge simulation.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m866\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin meshing heat-charge simulation.\u001b[0m \n", - "Debug : Destroying model model\n", - "Debug : Destroying model \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m889\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin adding structures to mesh.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m900\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m914\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m926\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m938\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m949\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m960\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m977\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:36\u001b[0m.\u001b[1;36m996\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m012\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m028\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m040\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m051\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m062\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m070\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd adding structures to mesh.\u001b[0m \n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Warning : Logger already started - ignoring\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m078\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m090\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m101\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m113\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m121\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m129\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m137\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m147\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m157\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m168\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m179\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m190\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m200\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin adding monitors.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m211\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd adding monitors.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m219\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin combining added structures.\u001b[0m \n", - "Debug : BOOL (2,1) other \n", - "Debug : BOOL (3,1) replaced by 1\n", - "Debug : BOOL (3,2) other\n", - "Debug : BOOL (3,3) replaced by 1\n", - "Debug : BOOL (3,4) replaced by 1\n", - "Debug : BOOL (3,5) replaced by 1\n", - "Debug : BOOL (3,6) other\n", - "Debug : BOOL (2,38) other\n", - "Debug : BOOL (2,39) other\n", - "Debug : BOOL (2,40) other\n", - "Debug : BOOL (2,41) other\n", - "Debug : BOOL (2,42) other\n", - "Debug : BOOL (2,43) other\n", - "Debug : BOOL (2,44) other\n", - "Debug : BOOL (2,45) other\n", - "Debug : BOOL (2,46) other\n", - "Debug : BOOL (2,47) other\n", - "Debug : BOOL (2,48) other\n", - "Debug : BOOL (2,49) other\n", - "Debug : BOOL in (2,1) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", - "Debug : BOOL in (3,1) -> out (3,1)\n", - "Debug : BOOL in (3,2) -> out (3,6) (3,5) (3,3) (3,7) (3,8) (3,4) (3,9)\n", - "Debug : BOOL in (3,3) -> out (3,3)\n", - "Debug : BOOL in (3,4) -> out (3,4)\n", - "Debug : BOOL in (3,5) -> out (3,5)\n", - "Debug : BOOL in (3,6) -> out (3,9) (3,8)\n", - "Debug : BOOL in (2,38) -> out (2,13) (2,48) (2,49)\n", - "Debug : BOOL in (2,39) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", - "Debug : BOOL in (2,40) -> out (2,8) (2,51) (2,54)\n", - "Debug : BOOL in (2,41) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", - "Debug : BOOL in (2,42) -> out (2,11) (2,60) (2,37) (2,43)\n", - "Debug : BOOL in (2,43) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", - "Debug : BOOL in (2,44) -> out (2,10) (2,63) (2,44) (2,38)\n", - "Debug : BOOL in (2,45) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", - "Debug : BOOL in (2,46) -> out (2,12) (2,53) (2,36)\n", - "Debug : BOOL in (2,47) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", - "Debug : BOOL in (2,48) -> out (2,9) (2,58) (2,39)\n", - "Debug : BOOL in (2,49) -> out (2,47) (2,7) (2,13) (2,48) (2,8) (2,49) (2,50) (2,51) (2,52) (2,53) (2,12) (2,54) (2,55) (2,35) (2,36) (2,56) (2,57) (2,9) (2,58) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m319\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd adding structures to mesh.\u001b[0m \n", - "Debug : Syncing OCC_Internals with GModel\n", - "Debug : Sync is removing 377 model entities\n", - "Debug : Destroying 0 entities in model\n", - "Debug : OCCRTree found 3 matches at (-2.5,-2.09,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (-2.5,-2.09,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (-2.5,-2.09,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (-2.5,-2.09,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (-2.5,-2.09,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (-2.5,-2.09,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (2.5,-2.09,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (2.5,-2.09,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (2.5,-2.09,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (2.5,-2.09,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (2.5,-2.09,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (2.5,-2.09,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-2.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-2.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-2.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-2.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-2.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-2.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-0.09,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-0.09,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-0.09,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.29,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.29,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.29,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.31,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.31,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.31,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.19,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.19,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.19,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.31,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.31,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.31,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.19,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.19,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.19,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.19,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.19,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.19,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.31,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.31,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.31,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.19,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.19,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.19,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.31,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.31,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.31,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.29,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.29,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.29,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.4,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.4,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.4,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.29,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.29,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.29,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.31,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.31,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.31,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.19,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.19,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.19,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.31,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.31,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.31,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.19,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.19,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.19,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.19,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.19,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.19,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.31,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.31,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.31,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.19,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.19,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.19,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.31,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.31,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.31,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.29,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.29,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.29,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.4,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.4,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.4,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.5,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.5,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.5,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,1,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,1,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,1,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,1,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,1,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,1,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.5,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.5,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.5,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.31,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.31,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.31,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.25,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.25,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.25,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.19,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.19,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.19,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.31,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.31,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.31,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.25,0.22,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.25,0.22,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.25,0.22,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.25,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.25,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.25,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.25,0.22,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.25,0.22,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.25,0.22,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.25,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.25,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.25,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.25,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.25,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.25,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.31,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.31,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.31,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.19,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.19,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.19,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.31,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.31,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.31,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.31,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.31,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.31,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.19,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.19,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.19,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.31,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.31,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.31,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.31,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.31,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.31,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.19,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.19,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.19,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.31,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.31,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.31,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.19,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.19,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.19,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.19,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.19,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.19,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.19,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.19,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.19,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.19,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.19,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.19,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (2.4,-2.295,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (2.4,-2.295,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (2.4,-2.295,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (-2.4,-2.295,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (-2.4,-2.295,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (-2.4,-2.295,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.29,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.29,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.29,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.29,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.29,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.29,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.4,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.4,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.4,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.29,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.29,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.29,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.4,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.4,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.4,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.29,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.29,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.29,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (2.4,1.205,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (2.4,1.205,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (2.4,1.205,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (-2.4,1.205,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (-2.4,1.205,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (-2.4,1.205,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.47,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.47,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.47,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.47,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.47,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.47,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.47,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.47,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.47,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (2.5,0,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (2.5,0,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (2.5,0,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (2.5,0,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (2.5,0,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 3 matches at (2.5,0,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,-2.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,-2.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,-2.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.345,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.345,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.345,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.8,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.8,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.8,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.25,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.25,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.25,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.75,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.75,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.75,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.25,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.25,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.25,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.25,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.25,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.25,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.75,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.75,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.75,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.25,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.25,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.25,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.8,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.8,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.8,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.345,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.345,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.345,-0.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-1.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-1.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-1.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.345,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.345,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.345,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.29,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.29,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.29,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.31,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.31,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.31,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.25,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.25,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.25,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.19,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.19,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.19,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.31,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.31,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.31,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.25,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.25,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.25,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.19,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.19,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.19,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.19,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.19,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.19,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.25,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.25,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.25,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.31,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.31,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.31,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.19,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.19,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.19,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.25,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.25,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.25,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.31,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.31,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.31,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.29,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.29,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.29,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.345,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.345,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.345,-0.095,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-1.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-1.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-1.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,1,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,1,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,1,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.2,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.2,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.2,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2,0.25,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2,0.25,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2,0.25,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.28,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.28,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.28,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.75,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.75,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.75,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.25,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.25,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.25,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.655,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.655,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.655,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.25,0.1125,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.25,0.1125,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.25,0.1125,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.25,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.25,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.25,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,0.22,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,0.22,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,0.22,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.25,0.1125,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.25,0.1125,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.25,0.1125,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.25,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.25,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.25,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.655,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.655,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.655,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.25,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.25,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.25,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.75,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.75,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.75,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.28,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.28,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.28,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2,0.25,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2,0.25,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2,0.25,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.2,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.2,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.2,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.31,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.31,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.31,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.25,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.25,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.25,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.19,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.19,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.19,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.31,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.31,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.31,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.28,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.28,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.28,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.28,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.28,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.28,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.31,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.31,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.31,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.19,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.19,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.19,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.25,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.25,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.25,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.31,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.31,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.31,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0.75,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0.75,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0.75,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0.75,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0.75,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0.75,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.22,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.22,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.22,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.22,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.22,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.22,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.19,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.19,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.19,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.22,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.22,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.22,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.22,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.22,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.22,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.19,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.19,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.19,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (0,-2.295,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (0,-2.295,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (0,-2.295,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-2.1925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-2.1925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,-2.1925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-2.1925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-2.1925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,-2.1925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.29,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.29,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.29,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.345,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.345,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.345,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.4,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.4,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.4,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.29,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.29,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.29,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.345,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.345,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.345,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.31,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.31,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.31,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.145,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.145,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.145,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.4,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.4,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.4,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.345,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.345,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.345,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.29,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.29,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.29,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0.2525,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0.2525,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,0.2525,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.19,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.19,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.19,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.345,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.345,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.345,0.005,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.29,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.29,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.29,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.145,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.145,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.145,0,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.31,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.31,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.31,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.31,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.31,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.31,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0.2525,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0.2525,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,0.2525,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.19,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.19,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.19,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,1.1025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,1.1025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.4,1.1025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (0,1.205,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (0,1.205,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 8 matches at (0,1.205,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,1.1025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,1.1025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.4,1.1025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.19,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.19,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.19,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.31,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.31,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.31,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.19,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.19,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.19,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.47,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.28,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.28,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.28,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.28,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.28,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.5,-2.28,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0,-2.47,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0,-2.47,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0,-2.47,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.47,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.47,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.47,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0,-2.47,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0,-2.47,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0,-2.47,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.28,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.28,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.28,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.28,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.28,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-2.28,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-0.045,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-0.045,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,-0.045,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.25,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.25,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.25,0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.25,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.25,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.5,0.25,-0.55) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 7 - new wire\n", - "Debug : Curve 8 (7 --> 8) ori 1\n", - "Debug : Curve 42 (8 --> 34) ori 1\n", - "Debug : Curve 41 (33 --> 34) ori -1\n", - "Debug : Curve 40 (11 --> 33) ori -1\n", - "Debug : Curve 14 (13 --> 11) ori -1\n", - "Debug : Curve 39 (32 --> 13) ori -1\n", - "Debug : Curve 38 (31 --> 32) ori -1\n", - "Debug : Curve 37 (14 --> 31) ori -1\n", - "Debug : Curve 16 (15 --> 14) ori -1\n", - "Debug : Curve 36 (30 --> 15) ori -1\n", - "Debug : Curve 35 (29 --> 30) ori -1\n", - "Debug : Curve 34 (16 --> 29) ori -1\n", - "Debug : Curve 18 (17 --> 16) ori -1\n", - "Debug : Curve 33 (28 --> 17) ori -1\n", - "Debug : Curve 32 (27 --> 28) ori -1\n", - "Debug : Curve 31 (18 --> 27) ori -1\n", - "Debug : Curve 20 (19 --> 18) ori -1\n", - "Debug : Curve 30 (26 --> 19) ori -1\n", - "Debug : Curve 29 (25 --> 26) ori -1\n", - "Debug : Curve 28 (20 --> 25) ori -1\n", - "Debug : Curve 22 (21 --> 20) ori -1\n", - "Debug : Curve 27 (24 --> 21) ori -1\n", - "Debug : Curve 26 (23 --> 24) ori -1\n", - "Debug : Curve 25 (23 --> 7) ori 1\n", - "Debug : OCC surface 7 with 24 parameter bounds (-2.4,2.4)(-1.545,0.455)\n", - "Debug : OCCRTree found 1 matches at (0,-1.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,-1.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,-1.09,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 8 - new wire\n", - "Debug : Curve 43 (22 --> 23) ori 1\n", - "Debug : Curve 26 (23 --> 24) ori 1\n", - "Debug : Curve 27 (24 --> 21) ori 1\n", - "Debug : Curve 23 (22 --> 21) ori -1\n", - "Debug : OCC surface 8 with 4 parameter bounds (-2.4,-2.29)(0.45,0.455)\n", - "Debug : OCCRTree found 1 matches at (2.345,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.345,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.345,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 9 - new wire\n", - "Debug : Curve 21 (20 --> 19) ori -1\n", - "Debug : Curve 28 (20 --> 25) ori 1\n", - "Debug : Curve 29 (25 --> 26) ori 1\n", - "Debug : Curve 30 (26 --> 19) ori 1\n", - "Debug : OCC surface 9 with 4 parameter bounds (-1.31,-1.19)(0.45,0.455)\n", - "Debug : OCCRTree found 1 matches at (1.25,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.25,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.25,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 10 - new wire\n", - "Debug : Curve 19 (18 --> 17) ori -1\n", - "Debug : Curve 31 (18 --> 27) ori 1\n", - "Debug : Curve 32 (27 --> 28) ori 1\n", - "Debug : Curve 33 (28 --> 17) ori 1\n", - "Debug : OCC surface 10 with 4 parameter bounds (-0.31,-0.19)(0.45,0.455)\n", - "Debug : OCCRTree found 1 matches at (0.25,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.25,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.25,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 11 - new wire\n", - "Debug : Curve 36 (30 --> 15) ori 1\n", - "Debug : Curve 17 (16 --> 15) ori -1\n", - "Debug : Curve 34 (16 --> 29) ori 1\n", - "Debug : Curve 35 (29 --> 30) ori 1\n", - "Debug : OCC surface 11 with 4 parameter bounds (0.19,0.31)(0.45,0.455)\n", - "Debug : OCCRTree found 1 matches at (-0.25,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.25,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.25,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 12 - new wire\n", - "Debug : Curve 39 (32 --> 13) ori 1\n", - "Debug : Curve 15 (14 --> 13) ori -1\n", - "Debug : Curve 37 (14 --> 31) ori 1\n", - "Debug : Curve 38 (31 --> 32) ori 1\n", - "Debug : OCC surface 12 with 4 parameter bounds (1.19,1.31)(0.45,0.455)\n", - "Debug : OCCRTree found 1 matches at (-1.25,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.25,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.25,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 13 - new wire\n", - "Debug : Curve 41 (33 --> 34) ori 1\n", - "Debug : Curve 44 (34 --> 12) ori 1\n", - "Debug : Curve 13 (11 --> 12) ori -1\n", - "Debug : Curve 40 (11 --> 33) ori 1\n", - "Debug : OCC surface 13 with 4 parameter bounds (2.29,2.4)(0.45,0.455)\n", - "Debug : OCCRTree found 1 matches at (-2.345,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.345,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.345,-0.0925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 35 - new wire\n", - "Debug : Curve 93 (70 --> 72) ori 1\n", - "Debug : Curve 118 (72 --> 51) ori 1\n", - "Debug : Curve 62 (50 --> 51) ori -1\n", - "Debug : Curve 117 (50 --> 55) ori 1\n", - "Debug : Curve 68 (55 --> 54) ori 1\n", - "Debug : Curve 70 (56 --> 54) ori -1\n", - "Debug : Curve 74 (56 --> 60) ori 1\n", - "Debug : Curve 116 (84 --> 60) ori -1\n", - "Debug : Curve 115 (83 --> 84) ori -1\n", - "Debug : Curve 114 (59 --> 83) ori -1\n", - "Debug : Curve 72 (59 --> 57) ori 1\n", - "Debug : Curve 113 (82 --> 57) ori -1\n", - "Debug : Curve 112 (62 --> 82) ori -1\n", - "Debug : Curve 77 (62 --> 61) ori 1\n", - "Debug : Curve 80 (61 --> 63) ori 1\n", - "Debug : Curve 82 (65 --> 63) ori -1\n", - "Debug : Curve 111 (81 --> 65) ori -1\n", - "Debug : Curve 110 (69 --> 81) ori -1\n", - "Debug : Curve 86 (69 --> 68) ori 1\n", - "Debug : Curve 109 (80 --> 68) ori -1\n", - "Debug : Curve 108 (79 --> 80) ori -1\n", - "Debug : Curve 107 (66 --> 79) ori -1\n", - "Debug : Curve 84 (66 --> 67) ori 1\n", - "Debug : Curve 90 (67 --> 70) ori 1\n", - "Debug : OCC surface 35 with 24 parameter bounds (-2.4,2.4)(0.545,1.545)\n", - "Debug : OCCRTree found 1 matches at (0,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,0.5,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 36 - new wire\n", - "Debug : Curve 85 (68 --> 66) ori 1\n", - "Debug : Curve 107 (66 --> 79) ori 1\n", - "Debug : Curve 108 (79 --> 80) ori 1\n", - "Debug : Curve 109 (80 --> 68) ori 1\n", - "Debug : OCC surface 36 with 4 parameter bounds (1.19,1.31)(0.545,0.55)\n", - "Debug : OCCRTree found 1 matches at (-1.25,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.25,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.25,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 37 - new wire\n", - "Debug : Curve 87 (64 --> 69) ori 1\n", - "Debug : Curve 110 (69 --> 81) ori 1\n", - "Debug : Curve 111 (81 --> 65) ori 1\n", - "Debug : Curve 83 (64 --> 65) ori -1\n", - "Debug : OCC surface 37 with 4 parameter bounds (0.25,0.31)(0.545,0.55)\n", - "Debug : OCCRTree found 1 matches at (-0.28,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.28,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.28,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 38 - new wire\n", - "Debug : Curve 113 (82 --> 57) ori 1\n", - "Debug : Curve 71 (57 --> 58) ori 1\n", - "Debug : Curve 78 (58 --> 62) ori 1\n", - "Debug : Curve 112 (62 --> 82) ori 1\n", - "Debug : OCC surface 38 with 4 parameter bounds (-0.31,-0.25)(0.545,0.55)\n", - "Debug : OCCRTree found 1 matches at (0.28,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.28,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.28,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 39 - new wire\n", - "Debug : Curve 116 (84 --> 60) ori 1\n", - "Debug : Curve 73 (60 --> 59) ori 1\n", - "Debug : Curve 114 (59 --> 83) ori 1\n", - "Debug : Curve 115 (83 --> 84) ori 1\n", - "Debug : OCC surface 39 with 4 parameter bounds (-1.31,-1.19)(0.545,0.55)\n", - "Debug : OCCRTree found 1 matches at (1.25,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.25,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.25,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 42 - new wire\n", - "Debug : Curve 121 (86 --> 85) ori 1\n", - "Debug : Curve 126 (88 --> 85) ori -1\n", - "Debug : Curve 125 (65 --> 88) ori -1\n", - "Debug : Curve 82 (65 --> 63) ori 1\n", - "Debug : Curve 80 (61 --> 63) ori -1\n", - "Debug : Curve 77 (62 --> 61) ori -1\n", - "Debug : Curve 124 (87 --> 62) ori -1\n", - "Debug : Curve 123 (86 --> 87) ori -1\n", - "Debug : OCC surface 42 with 8 parameter bounds (-0.25,0.25)(0.545,0.765)\n", - "Debug : OCCRTree found 1 matches at (0,0.11,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,0.11,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,0.11,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 43 - new wire\n", - "Debug : Curve 120 (85 --> 64) ori 1\n", - "Debug : Curve 83 (64 --> 65) ori 1\n", - "Debug : Curve 125 (65 --> 88) ori 1\n", - "Debug : Curve 126 (88 --> 85) ori 1\n", - "Debug : OCC surface 43 with 4 parameter bounds (0.19,0.25)(0.545,0.55)\n", - "Debug : OCCRTree found 1 matches at (-0.22,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.22,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.22,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 44 - new wire\n", - "Debug : Curve 122 (58 --> 86) ori 1\n", - "Debug : Curve 123 (86 --> 87) ori 1\n", - "Debug : Curve 124 (87 --> 62) ori 1\n", - "Debug : Curve 78 (58 --> 62) ori -1\n", - "Debug : OCC surface 44 with 4 parameter bounds (-0.25,-0.19)(0.545,0.55)\n", - "Debug : OCCRTree found 1 matches at (0.22,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.22,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.22,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 47 - new wire\n", - "Debug : Curve 128 (89 --> 90) ori 1\n", - "Debug : Curve 130 (90 --> 8) ori 1\n", - "Debug : Curve 8 (7 --> 8) ori -1\n", - "Debug : Curve 129 (7 --> 89) ori 1\n", - "Debug : OCC surface 47 with 4 parameter bounds (-2.4,2.4)(-1.75,-1.545)\n", - "Debug : OCCRTree found 1 matches at (0,-2.1925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,-2.1925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,-2.1925,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 48 - new wire\n", - "Debug : Curve 13 (11 --> 12) ori 1\n", - "Debug : Curve 133 (12 --> 92) ori 1\n", - "Debug : Curve 132 (91 --> 92) ori -1\n", - "Debug : Curve 131 (91 --> 11) ori 1\n", - "Debug : OCC surface 48 with 4 parameter bounds (2.29,2.4)(0.455,0.545)\n", - "Debug : OCCRTree found 2 matches at (-2.345,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.345,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-2.345,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 49 - new wire\n", - "Debug : Curve 132 (91 --> 92) ori 1\n", - "Debug : Curve 136 (92 --> 94) ori 1\n", - "Debug : Curve 135 (94 --> 93) ori 1\n", - "Debug : Curve 134 (93 --> 91) ori 1\n", - "Debug : OCC surface 49 with 4 parameter bounds (2.29,2.4)(0.545,0.55)\n", - "Debug : OCCRTree found 1 matches at (-2.345,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.345,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.345,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 50 - new wire\n", - "Debug : Curve 14 (13 --> 11) ori 1\n", - "Debug : Curve 131 (91 --> 11) ori -1\n", - "Debug : Curve 138 (67 --> 91) ori -1\n", - "Debug : Curve 84 (66 --> 67) ori -1\n", - "Debug : Curve 137 (13 --> 66) ori -1\n", - "Debug : OCC surface 50 with 5 parameter bounds (1.31,2.29)(0.455,0.545)\n", - "Debug : OCCRTree found 1 matches at (-1.8,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.8,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-1.8,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 51 - new wire\n", - "Debug : Curve 139 (95 --> 22) ori 1\n", - "Debug : Curve 23 (22 --> 21) ori 1\n", - "Debug : Curve 141 (21 --> 96) ori 1\n", - "Debug : Curve 140 (95 --> 96) ori -1\n", - "Debug : OCC surface 51 with 4 parameter bounds (-2.4,-2.29)(0.455,0.545)\n", - "Debug : OCCRTree found 2 matches at (2.345,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.345,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (2.345,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 52 - new wire\n", - "Debug : Curve 135 (94 --> 93) ori -1\n", - "Debug : Curve 142 (94 --> 72) ori 1\n", - "Debug : Curve 93 (70 --> 72) ori -1\n", - "Debug : Curve 90 (67 --> 70) ori -1\n", - "Debug : Curve 138 (67 --> 91) ori 1\n", - "Debug : Curve 134 (93 --> 91) ori -1\n", - "Debug : OCC surface 52 with 6 parameter bounds (2,2.4)(0.545,1.045)\n", - "Debug : OCCRTree found 1 matches at (-2.2,0.25,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.2,0.25,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-2.2,0.25,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 53 - new wire\n", - "Debug : Curve 15 (14 --> 13) ori 1\n", - "Debug : Curve 137 (13 --> 66) ori 1\n", - "Debug : Curve 85 (68 --> 66) ori -1\n", - "Debug : Curve 143 (68 --> 14) ori 1\n", - "Debug : OCC surface 53 with 4 parameter bounds (1.19,1.31)(0.455,0.545)\n", - "Debug : OCCRTree found 2 matches at (-1.25,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.25,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-1.25,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 54 - new wire\n", - "Debug : Curve 144 (97 --> 95) ori 1\n", - "Debug : Curve 140 (95 --> 96) ori 1\n", - "Debug : Curve 146 (96 --> 98) ori 1\n", - "Debug : Curve 145 (98 --> 97) ori 1\n", - "Debug : OCC surface 54 with 4 parameter bounds (-2.4,-2.29)(0.545,0.55)\n", - "Debug : OCCRTree found 1 matches at (2.345,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.345,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.345,0.0025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 55 - new wire\n", - "Debug : Curve 141 (21 --> 96) ori -1\n", - "Debug : Curve 22 (21 --> 20) ori 1\n", - "Debug : Curve 148 (60 --> 20) ori -1\n", - "Debug : Curve 74 (56 --> 60) ori -1\n", - "Debug : Curve 147 (96 --> 56) ori -1\n", - "Debug : OCC surface 55 with 5 parameter bounds (-2.29,-1.31)(0.455,0.545)\n", - "Debug : OCCRTree found 1 matches at (1.8,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.8,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (1.8,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 56 - new wire\n", - "Debug : Curve 16 (15 --> 14) ori 1\n", - "Debug : Curve 143 (68 --> 14) ori -1\n", - "Debug : Curve 86 (69 --> 68) ori -1\n", - "Debug : Curve 149 (15 --> 69) ori -1\n", - "Debug : OCC surface 56 with 4 parameter bounds (0.31,1.19)(0.455,0.545)\n", - "Debug : OCCRTree found 1 matches at (-0.75,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.75,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (-0.75,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 57 - new wire\n", - "Debug : Curve 150 (55 --> 97) ori 1\n", - "Debug : Curve 145 (98 --> 97) ori -1\n", - "Debug : Curve 146 (96 --> 98) ori -1\n", - "Debug : Curve 147 (96 --> 56) ori 1\n", - "Debug : Curve 70 (56 --> 54) ori 1\n", - "Debug : Curve 68 (55 --> 54) ori -1\n", - "Debug : OCC surface 57 with 6 parameter bounds (-2.4,-2)(0.545,1.045)\n", - "Debug : OCCRTree found 1 matches at (2.2,0.25,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.2,0.25,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (2.2,0.25,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 58 - new wire\n", - "Debug : Curve 148 (60 --> 20) ori 1\n", - "Debug : Curve 21 (20 --> 19) ori 1\n", - "Debug : Curve 151 (19 --> 59) ori 1\n", - "Debug : Curve 73 (60 --> 59) ori -1\n", - "Debug : OCC surface 58 with 4 parameter bounds (-1.31,-1.19)(0.455,0.545)\n", - "Debug : OCCRTree found 2 matches at (1.25,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.25,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (1.25,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 59 - new wire\n", - "Debug : Curve 62 (50 --> 51) ori 1\n", - "Debug : Curve 154 (51 --> 100) ori 1\n", - "Debug : Curve 153 (100 --> 99) ori 1\n", - "Debug : Curve 152 (99 --> 50) ori 1\n", - "Debug : OCC surface 59 with 4 parameter bounds (-2.4,2.4)(1.545,1.75)\n", - "Debug : OCCRTree found 1 matches at (0,1.1025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,1.1025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,1.1025,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 60 - new wire\n", - "Debug : Curve 17 (16 --> 15) ori 1\n", - "Debug : Curve 149 (15 --> 69) ori 1\n", - "Debug : Curve 87 (64 --> 69) ori -1\n", - "Debug : Curve 120 (85 --> 64) ori -1\n", - "Debug : Curve 155 (85 --> 16) ori 1\n", - "Debug : OCC surface 60 with 5 parameter bounds (0.19,0.31)(0.455,0.545)\n", - "Debug : OCCRTree found 2 matches at (-0.25,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.25,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (-0.25,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 61 - new wire\n", - "Debug : Curve 151 (19 --> 59) ori -1\n", - "Debug : Curve 20 (19 --> 18) ori 1\n", - "Debug : Curve 156 (57 --> 18) ori -1\n", - "Debug : Curve 72 (59 --> 57) ori -1\n", - "Debug : OCC surface 61 with 4 parameter bounds (-1.19,-0.31)(0.455,0.545)\n", - "Debug : OCCRTree found 1 matches at (0.75,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.75,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0.75,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 62 - new wire\n", - "Debug : Curve 18 (17 --> 16) ori 1\n", - "Debug : Curve 155 (85 --> 16) ori -1\n", - "Debug : Curve 121 (86 --> 85) ori -1\n", - "Debug : Curve 157 (17 --> 86) ori -1\n", - "Debug : OCC surface 62 with 4 parameter bounds (-0.19,0.19)(0.455,0.545)\n", - "Debug : OCCRTree found 1 matches at (0,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 1 matches at (0,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCC surface 63 - new wire\n", - "Debug : Curve 156 (57 --> 18) ori 1\n", - "Debug : Curve 19 (18 --> 17) ori 1\n", - "Debug : Curve 157 (17 --> 86) ori 1\n", - "Debug : Curve 122 (58 --> 86) ori -1\n", - "Debug : Curve 71 (57 --> 58) ori -1\n", - "Debug : OCC surface 63 with 5 parameter bounds (-0.31,-0.19)(0.455,0.545)\n", - "Debug : OCCRTree found 2 matches at (0.25,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.25,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : OCCRTree found 2 matches at (0.25,-0.045,0) in tree of size 654\n", - "Debug : OCCRtree 0 matches after bounding box filtering\n", - "Debug : GModel imported:\n", - "Debug : 81 points\n", - "Debug : 110 curves\n", - "Debug : 32 surfaces\n", - "Debug : 0 volumes\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m346\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin constructing surface dictionary.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m359\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd constructing surface dictionary.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m369\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin create volume zones.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m380\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd create volume zones.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m390\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin create surface zones.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m405\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mContinue create surface zones.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m417\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd create surface zones.\u001b[0m \n", - "Debug : Decoded option name 'Mesh' . 'MeshSizeExtendFromBoundary' (index 0)\n", - "Debug : Decoded option name 'Mesh' . 'MeshSizeFromPoints' (index 0)\n", - "Debug : Decoded option name 'Mesh' . 'MeshSizeFromCurvature' (index 0)\n", - "Debug : Destroying 28 entities in model\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m428\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin meshing.\u001b[0m \n", - "Debug : Decoded option name 'Mesh' . 'Algorithm' (index 0)\n", - "Debug : Decoded option name 'Mesh' . 'Algorithm3D' (index 0)\n", - "Debug : Decoded option name 'General' . 'NumThreads' (index 0)\n", - "Info : Meshing 1D...\n", - "Info : [ 0%] Meshing curve 8 (Line)\n", - "Debug : Meshing curve 8 (Line): 9 interior vertices\n", - "Info : [ 10%] Meshing curve 13 (Line)\n", - "Debug : Meshing curve 13 (Line): 26 interior vertices\n", - "Info : [ 10%] Meshing curve 14 (Line)\n", - "Debug : Meshing curve 14 (Line): 44 interior vertices\n", - "Info : [ 10%] Meshing curve 15 (Line)\n", - "Debug : Meshing curve 15 (Line): 28 interior vertices\n", - "Info : [ 10%] Meshing curve 16 (Line)\n", - "Debug : Meshing curve 16 (Line): 40 interior vertices\n", - "Info : [ 10%] Meshing curve 17 (Line)\n", - "Debug : Meshing curve 17 (Line): 28 interior vertices\n", - "Info : [ 10%] Meshing curve 18 (Line)\n", - "Debug : Meshing curve 18 (Line): 20 interior vertices\n", - "Info : [ 10%] Meshing curve 19 (Line)\n", - "Debug : Meshing curve 19 (Line): 28 interior vertices\n", - "Info : [ 10%] Meshing curve 20 (Line)\n", - "Debug : Meshing curve 20 (Line): 40 interior vertices\n", - "Info : [ 10%] Meshing curve 21 (Line)\n", - "Debug : Meshing curve 21 (Line): 28 interior vertices\n", - "Info : [ 20%] Meshing curve 22 (Line)\n", - "Debug : Meshing curve 22 (Line): 44 interior vertices\n", - "Info : [ 20%] Meshing curve 23 (Line)\n", - "Debug : Meshing curve 23 (Line): 26 interior vertices\n", - "Info : [ 20%] Meshing curve 25 (Line)\n", - "Debug : Meshing curve 25 (Line): 15 interior vertices\n", - "Info : [ 20%] Meshing curve 26 (Line)\n", - "Debug : Meshing curve 26 (Line): 26 interior vertices\n", - "Info : [ 20%] Meshing curve 27 (Line)\n", - "Debug : Meshing curve 27 (Line): 1 interior vertices\n", - "Info : [ 20%] Meshing curve 28 (Line)\n", - "Debug : Meshing curve 28 (Line): 1 interior vertices\n", - "Info : [ 20%] Meshing curve 29 (Line)\n", - "Debug : Meshing curve 29 (Line): 28 interior vertices\n", - "Info : [ 20%] Meshing curve 30 (Line)\n", - "Debug : Meshing curve 30 (Line): 1 interior vertices\n", - "Info : [ 20%] Meshing curve 31 (Line)\n", - "Debug : Meshing curve 31 (Line): 1 interior vertices\n", - "Info : [ 20%] Meshing curve 32 (Line)\n", - "Debug : Meshing curve 32 (Line): 28 interior vertices\n", - "Info : [ 30%] Meshing curve 33 (Line)\n", - "Debug : Meshing curve 33 (Line): 1 interior vertices\n", - "Info : [ 30%] Meshing curve 34 (Line)\n", - "Debug : Meshing curve 34 (Line): 1 interior vertices\n", - "Info : [ 30%] Meshing curve 35 (Line)\n", - "Debug : Meshing curve 35 (Line): 28 interior vertices\n", - "Info : [ 30%] Meshing curve 36 (Line)\n", - "Debug : Meshing curve 36 (Line): 1 interior vertices\n", - "Info : [ 30%] Meshing curve 37 (Line)\n", - "Debug : Meshing curve 37 (Line): 1 interior vertices\n", - "Info : [ 30%] Meshing curve 38 (Line)\n", - "Debug : Meshing curve 38 (Line): 28 interior vertices\n", - "Info : [ 30%] Meshing curve 39 (Line)\n", - "Debug : Meshing curve 39 (Line): 1 interior vertices\n", - "Info : [ 30%] Meshing curve 40 (Line)\n", - "Debug : Meshing curve 40 (Line): 1 interior vertices\n", - "Info : [ 30%] Meshing curve 41 (Line)\n", - "Debug : Meshing curve 41 (Line): 26 interior vertices\n", - "Info : [ 40%] Meshing curve 42 (Line)\n", - "Debug : Meshing curve 42 (Line): 15 interior vertices\n", - "Info : [ 40%] Meshing curve 43 (Line)\n", - "Debug : Meshing curve 43 (Line): 1 interior vertices\n", - "Info : [ 40%] Meshing curve 44 (Line)\n", - "Debug : Meshing curve 44 (Line): 1 interior vertices\n", - "Info : [ 40%] Meshing curve 62 (Line)\n", - "Debug : Meshing curve 62 (Line): 9 interior vertices\n", - "Info : [ 40%] Meshing curve 68 (Line)\n", - "Debug : Meshing curve 68 (Line): 0 interior vertices\n", - "Info : [ 40%] Meshing curve 70 (Line)\n", - "Debug : Meshing curve 70 (Line): 4 interior vertices\n", - "Info : [ 40%] Meshing curve 71 (Line)\n", - "Debug : Meshing curve 71 (Line): 14 interior vertices\n", - "Info : [ 40%] Meshing curve 72 (Line)\n", - "Debug : Meshing curve 72 (Line): 40 interior vertices\n", - "Info : [ 40%] Meshing curve 73 (Line)\n", - "Debug : Meshing curve 73 (Line): 28 interior vertices\n", - "Info : [ 40%] Meshing curve 74 (Line)\n", - "Debug : Meshing curve 74 (Line): 30 interior vertices\n", - "Info : [ 50%] Meshing curve 77 (Line)\n", - "Debug : Meshing curve 77 (Line): 11 interior vertices\n", - "Info : [ 50%] Meshing curve 78 (Line)\n", - "Debug : Meshing curve 78 (Line): 1 interior vertices\n", - "Info : [ 50%] Meshing curve 80 (Line)\n", - "Debug : Meshing curve 80 (Line): 19 interior vertices\n", - "Info : [ 50%] Meshing curve 82 (Line)\n", - "Debug : Meshing curve 82 (Line): 11 interior vertices\n", - "Info : [ 50%] Meshing curve 83 (Line)\n", - "Debug : Meshing curve 83 (Line): 1 interior vertices\n", - "Info : [ 50%] Meshing curve 84 (Line)\n", - "Debug : Meshing curve 84 (Line): 30 interior vertices\n", - "Info : [ 50%] Meshing curve 85 (Line)\n", - "Debug : Meshing curve 85 (Line): 28 interior vertices\n", - "Info : [ 50%] Meshing curve 86 (Line)\n", - "Debug : Meshing curve 86 (Line): 40 interior vertices\n", - "Info : [ 50%] Meshing curve 87 (Line)\n", - "Debug : Meshing curve 87 (Line): 14 interior vertices\n", - "Info : [ 60%] Meshing curve 90 (Line)\n", - "Debug : Meshing curve 90 (Line): 4 interior vertices\n", - "Info : [ 60%] Meshing curve 93 (Line)\n", - "Debug : Meshing curve 93 (Line): 0 interior vertices\n", - "Info : [ 60%] Meshing curve 107 (Line)\n", - "Debug : Meshing curve 107 (Line): 1 interior vertices\n", - "Info : [ 60%] Meshing curve 108 (Line)\n", - "Debug : Meshing curve 108 (Line): 28 interior vertices\n", - "Info : [ 60%] Meshing curve 109 (Line)\n", - "Debug : Meshing curve 109 (Line): 1 interior vertices\n", - "Info : [ 60%] Meshing curve 110 (Line)\n", - "Debug : Meshing curve 110 (Line): 1 interior vertices\n", - "Info : [ 60%] Meshing curve 111 (Line)\n", - "Debug : Meshing curve 111 (Line): 14 interior vertices\n", - "Info : [ 60%] Meshing curve 112 (Line)\n", - "Debug : Meshing curve 112 (Line): 14 interior vertices\n", - "Info : [ 60%] Meshing curve 113 (Line)\n", - "Debug : Meshing curve 113 (Line): 1 interior vertices\n", - "Info : [ 60%] Meshing curve 114 (Line)\n", - "Debug : Meshing curve 114 (Line): 1 interior vertices\n", - "Info : [ 70%] Meshing curve 115 (Line)\n", - "Debug : Meshing curve 115 (Line): 28 interior vertices\n", - "Info : [ 70%] Meshing curve 116 (Line)\n", - "Debug : Meshing curve 116 (Line): 1 interior vertices\n", - "Info : [ 70%] Meshing curve 117 (Line)\n", - "Debug : Meshing curve 117 (Line): 0 interior vertices\n", - "Info : [ 70%] Meshing curve 118 (Line)\n", - "Debug : Meshing curve 118 (Line): 0 interior vertices\n", - "Info : [ 70%] Meshing curve 120 (Line)\n", - "Debug : Meshing curve 120 (Line): 14 interior vertices\n", - "Info : [ 70%] Meshing curve 121 (Line)\n", - "Debug : Meshing curve 121 (Line): 20 interior vertices\n", - "Info : [ 70%] Meshing curve 122 (Line)\n", - "Debug : Meshing curve 122 (Line): 14 interior vertices\n", - "Info : [ 70%] Meshing curve 123 (Line)\n", - "Debug : Meshing curve 123 (Line): 1 interior vertices\n", - "Info : [ 70%] Meshing curve 124 (Line)\n", - "Debug : Meshing curve 124 (Line): 14 interior vertices\n", - "Info : [ 70%] Meshing curve 125 (Line)\n", - "Debug : Meshing curve 125 (Line): 14 interior vertices\n", - "Info : [ 80%] Meshing curve 126 (Line)\n", - "Debug : Meshing curve 126 (Line): 1 interior vertices\n", - "Info : [ 80%] Meshing curve 131 (Line)\n", - "Debug : Meshing curve 131 (Line): 21 interior vertices\n", - "Info : [ 80%] Meshing curve 132 (Line)\n", - "Debug : Meshing curve 132 (Line): 26 interior vertices\n", - "Info : [ 80%] Meshing curve 133 (Line)\n", - "Debug : Meshing curve 133 (Line): 21 interior vertices\n", - "Info : [ 80%] Meshing curve 137 (Line)\n", - "Debug : Meshing curve 137 (Line): 21 interior vertices\n", - "Info : [ 80%] Meshing curve 138 (Line)\n", - "Debug : Meshing curve 138 (Line): 14 interior vertices\n", - "Info : [ 80%] Meshing curve 139 (Line)\n", - "Debug : Meshing curve 139 (Line): 21 interior vertices\n", - "Info : [ 80%] Meshing curve 140 (Line)\n", - "Debug : Meshing curve 140 (Line): 26 interior vertices\n", - "Info : [ 80%] Meshing curve 141 (Line)\n", - "Debug : Meshing curve 141 (Line): 21 interior vertices\n", - "Info : [ 90%] Meshing curve 143 (Line)\n", - "Debug : Meshing curve 143 (Line): 21 interior vertices\n", - "Info : [ 90%] Meshing curve 147 (Line)\n", - "Debug : Meshing curve 147 (Line): 14 interior vertices\n", - "Info : [ 90%] Meshing curve 148 (Line)\n", - "Debug : Meshing curve 148 (Line): 21 interior vertices\n", - "Info : [ 90%] Meshing curve 149 (Line)\n", - "Debug : Meshing curve 149 (Line): 21 interior vertices\n", - "Info : [ 90%] Meshing curve 151 (Line)\n", - "Debug : Meshing curve 151 (Line): 21 interior vertices\n", - "Info : [ 90%] Meshing curve 155 (Line)\n", - "Debug : Meshing curve 155 (Line): 21 interior vertices\n", - "Info : [ 90%] Meshing curve 156 (Line)\n", - "Debug : Meshing curve 156 (Line): 21 interior vertices\n", - "Info : [ 90%] Meshing curve 157 (Line)\n", - "Debug : Meshing curve 157 (Line): 21 interior vertices\n", - "Info : [ 90%] Meshing curve 158 (Line)\n", - "Debug : Meshing curve 158 (Line): 2 interior vertices\n", - "Info : [ 90%] Meshing curve 159 (Line)\n", - "Debug : Meshing curve 159 (Line): 0 interior vertices\n", - "Info : [100%] Meshing curve 160 (Line)\n", - "Debug : Meshing curve 160 (Line): 0 interior vertices\n", - "Info : [100%] Meshing curve 161 (Line)\n", - "Debug : Meshing curve 161 (Line): 9 interior vertices\n", - "Info : [100%] Meshing curve 162 (Line)\n", - "Debug : Meshing curve 162 (Line): 2 interior vertices\n", - "Info : [100%] Meshing curve 163 (Line)\n", - "Debug : Meshing curve 163 (Line): 9 interior vertices\n", - "Info : [100%] Meshing curve 164 (Line)\n", - "Debug : Meshing curve 164 (Line): 0 interior vertices\n", - "Info : [100%] Meshing curve 165 (Line)\n", - "Debug : Meshing curve 165 (Line): 0 interior vertices\n", - "Info : [100%] Meshing curve 171 (Line)\n", - "Debug : Meshing curve 171 (Line): 0 interior vertices\n", - "Info : [100%] Meshing curve 178 (Line)\n", - "Debug : Meshing curve 178 (Line): 0 interior vertices\n", - "Info : [100%] Meshing curve 179 (Line)\n", - "Debug : Meshing curve 179 (Line): 0 interior vertices\n", - "Info : Done meshing 1D (Wall 0.0770174s, CPU 0.081491s)\n", - "Info : Meshing 2D...\n", - "Info : [ 0%] Meshing surface 7 (Plane, Delaunay)\n", - "Debug : Recovering 24 model edges\n", - "Debug : Recovering 425 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 7\n", - "Debug : Computing mesh size field at mesh nodes 425\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 425 points created -- Worst tri radius is 47.689\n", - "Debug : Point -2.28753 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point 2.28753 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.31247 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.31247 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.312471 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point 0.312471 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.18753 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.18753 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point 0.187542 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.187542 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 2011 triangles generated, 794 internal nodes\n", - "Info : [ 10%] Meshing surface 8 (Plane, Delaunay)\n", - "Debug : Recovering 4 model edges\n", - "Debug : Recovering 58 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 8\n", - "Debug : Computing mesh size field at mesh nodes 58\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 58 points created -- Worst tri radius is 0.792\n", - "Debug : Point -2.39796 0.45125 cannot be inserted because it is too close to another point)\n", - "Debug : Point -2.39796 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point -2.29204 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point -2.29204 0.45125 cannot be inserted because it is too close to another point)\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 110 triangles generated, 27 internal nodes\n", - "Info : [ 10%] Meshing surface 9 (Plane, Delaunay)\n", - "Debug : Recovering 4 model edges\n", - "Debug : Recovering 62 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 9\n", - "Debug : Computing mesh size field at mesh nodes 62\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 62 points created -- Worst tri radius is 0.794\n", - "Debug : Point -1.19207 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.30793 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.30793 0.45125 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.19207 0.45125 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.30718 0.4525 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.19282 0.4525 cannot be inserted because it is too close to another point)\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 114 triangles generated, 27 internal nodes\n", - "Info : [ 20%] Meshing surface 10 (Plane, Delaunay)\n", - "Debug : Recovering 4 model edges\n", - "Debug : Recovering 62 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 10\n", - "Debug : Computing mesh size field at mesh nodes 62\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 62 points created -- Worst tri radius is 0.794\n", - "Debug : Point -0.307931 0.45125 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.192069 0.45125 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.192069 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.307931 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.192824 0.4525 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.307176 0.4525 cannot be inserted because it is too close to another point)\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 114 triangles generated, 27 internal nodes\n", - "Info : [ 20%] Meshing surface 11 (Plane, Delaunay)\n", - "Debug : Recovering 4 model edges\n", - "Debug : Recovering 62 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 11\n", - "Debug : Computing mesh size field at mesh nodes 62\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 62 points created -- Worst tri radius is 0.794\n", - "Debug : Point 0.307931 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point 0.192069 0.45125 cannot be inserted because it is too close to another point)\n", - "Debug : Point 0.307931 0.45125 cannot be inserted because it is too close to another point)\n", - "Debug : Point 0.192069 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point 0.192824 0.4525 cannot be inserted because it is too close to another point)\n", - "Debug : Point 0.307176 0.4525 cannot be inserted because it is too close to another point)\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 114 triangles generated, 27 internal nodes\n", - "Info : [ 20%] Meshing surface 12 (Plane, Delaunay)\n", - "Debug : Recovering 4 model edges\n", - "Debug : Recovering 62 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 12\n", - "Debug : Computing mesh size field at mesh nodes 62\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 62 points created -- Worst tri radius is 0.794\n", - "Debug : Point 1.30793 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.19207 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.19207 0.45125 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.30793 0.45125 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.19282 0.4525 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.30718 0.4525 cannot be inserted because it is too close to another point)\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 114 triangles generated, 27 internal nodes\n", - "Info : [ 30%] Meshing surface 13 (Plane, Delaunay)\n", - "Debug : Recovering 4 model edges\n", - "Debug : Recovering 58 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 13\n", - "Debug : Computing mesh size field at mesh nodes 58\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 58 points created -- Worst tri radius is 0.792\n", - "Debug : Point 2.39796 0.45125 cannot be inserted because it is too close to another point)\n", - "Debug : Point 2.39796 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point 2.29204 0.45375 cannot be inserted because it is too close to another point)\n", - "Debug : Point 2.29204 0.45125 cannot be inserted because it is too close to another point)\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 110 triangles generated, 27 internal nodes\n", - "Info : [ 30%] Meshing surface 35 (Plane, Delaunay)\n", - "Debug : Recovering 24 model edges\n", - "Debug : Recovering 312 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 35\n", - "Debug : Computing mesh size field at mesh nodes 312\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 312 points created -- Worst tri radius is 28.183\n", - "Debug : Point 0.278471 0.753119 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.278471 0.753119 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.92425 0.599632 cannot be inserted because it is too close to another point)\n", - "Debug : Point 0.92425 0.599632 cannot be inserted because it is too close to another point)\n", - "Debug : Point 0.974031 0.599626 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.974031 0.599626 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.0236 0.600088 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.0236 0.600088 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.79154 0.598819 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.74272 0.599332 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.79154 0.598819 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.74272 0.599332 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.90192 0.601289 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.90192 0.601289 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.312471 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : Point 0.312471 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.18753 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.18753 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.31243 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.31243 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.268545 0.773526 cannot be inserted because it is too close to another point)\n", - "Debug : Point 0.268545 0.773526 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.60759 0.590312 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.60759 0.590312 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.97768 0.604631 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.97768 0.604631 cannot be inserted because it is too close to another point)\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 1284 triangles generated, 487 internal nodes\n", - "Info : [ 40%] Meshing surface 36 (Plane, Delaunay)\n", - "Debug : Recovering 4 model edges\n", - "Debug : Recovering 62 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 36\n", - "Debug : Computing mesh size field at mesh nodes 62\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 62 points created -- Worst tri radius is 0.794\n", - "Debug : Point 1.19207 0.54875 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.19207 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.30793 0.54875 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.30793 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.19282 0.5475 cannot be inserted because it is too close to another point)\n", - "Debug : Point 1.30718 0.5475 cannot be inserted because it is too close to another point)\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 114 triangles generated, 27 internal nodes\n", - "Info : [ 40%] Meshing surface 37 (Plane, Delaunay)\n", - "Debug : Recovering 4 model edges\n", - "Debug : Recovering 34 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 37\n", - "Debug : Computing mesh size field at mesh nodes 34\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 34 points created -- Worst tri radius is 0.800\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 62 triangles generated, 15 internal nodes\n", - "Info : [ 40%] Meshing surface 38 (Plane, Delaunay)\n", - "Debug : Recovering 4 model edges\n", - "Debug : Recovering 34 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 38\n", - "Debug : Computing mesh size field at mesh nodes 34\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 34 points created -- Worst tri radius is 0.800\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 62 triangles generated, 15 internal nodes\n", - "Info : [ 50%] Meshing surface 39 (Plane, Delaunay)\n", - "Debug : Recovering 4 model edges\n", - "Debug : Recovering 62 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 39\n", - "Debug : Computing mesh size field at mesh nodes 62\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 62 points created -- Worst tri radius is 0.794\n", - "Debug : Point -1.30793 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.19207 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.30793 0.54875 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.19207 0.54875 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.19282 0.5475 cannot be inserted because it is too close to another point)\n", - "Debug : Point -1.30718 0.5475 cannot be inserted because it is too close to another point)\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 114 triangles generated, 27 internal nodes\n", - "Info : [ 50%] Meshing surface 42 (Plane, Delaunay)\n", - "Debug : Recovering 8 model edges\n", - "Debug : Recovering 99 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 42\n", - "Debug : Computing mesh size field at mesh nodes 99\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 99 points created -- Worst tri radius is 9.102\n", - "Debug : Point 0.187542 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : Point -0.187542 0.54625 cannot be inserted because it is too close to another point)\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 617 triangles generated, 260 internal nodes\n", - "Info : [ 60%] Meshing surface 43 (Plane, Delaunay)\n", - "Debug : Recovering 4 model edges\n", - "Debug : Recovering 34 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 43\n", - "Debug : Computing mesh size field at mesh nodes 34\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 34 points created -- Worst tri radius is 0.800\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 62 triangles generated, 15 internal nodes\n", - "Info : [ 60%] Meshing surface 44 (Plane, Delaunay)\n", - "Debug : Recovering 4 model edges\n", - "Debug : Recovering 34 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 44\n", - "Debug : Computing mesh size field at mesh nodes 34\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 34 points created -- Worst tri radius is 0.800\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 62 triangles generated, 15 internal nodes\n", - "Info : [ 60%] Meshing surface 48 (Plane, Delaunay)\n", - "Debug : Recovering 4 model edges\n", - "Debug : Recovering 98 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 48\n", - "Debug : Computing mesh size field at mesh nodes 98\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 98 points created -- Worst tri radius is 11.057\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 1502 triangles generated, 703 internal nodes\n", - "Info : [ 70%] Meshing surface 50 (Plane, Delaunay)\n", - "Debug : Recovering 5 model edges\n", - "Debug : Recovering 135 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 50\n", - "Debug : Computing mesh size field at mesh nodes 135\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 135 points created -- Worst tri radius is 5.960\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 539 triangles generated, 203 internal nodes\n", - "Info : [ 70%] Meshing surface 51 (Plane, Delaunay)\n", - "Debug : Recovering 4 model edges\n", - "Debug : Recovering 98 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 51\n", - "Debug : Computing mesh size field at mesh nodes 98\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 98 points created -- Worst tri radius is 11.057\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 1516 triangles generated, 710 internal nodes\n", - "Info : [ 70%] Meshing surface 53 (Plane, Delaunay)\n", - "Debug : Recovering 4 model edges\n", - "Debug : Recovering 102 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 53\n", - "Debug : Computing mesh size field at mesh nodes 102\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 102 points created -- Worst tri radius is 10.917\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 1620 triangles generated, 760 internal nodes\n", - "Info : [ 80%] Meshing surface 55 (Plane, Delaunay)\n", - "Debug : Recovering 5 model edges\n", - "Debug : Recovering 135 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 55\n", - "Debug : Computing mesh size field at mesh nodes 135\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 135 points created -- Worst tri radius is 5.960\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 539 triangles generated, 203 internal nodes\n", - "Info : [ 80%] Meshing surface 56 (Plane, Delaunay)\n", - "Debug : Recovering 4 model edges\n", - "Debug : Recovering 126 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 56\n", - "Debug : Computing mesh size field at mesh nodes 126\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 126 points created -- Worst tri radius is 5.990\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 486 triangles generated, 181 internal nodes\n", - "Info : [ 90%] Meshing surface 58 (Plane, Delaunay)\n", - "Debug : Recovering 4 model edges\n", - "Debug : Recovering 102 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 58\n", - "Debug : Computing mesh size field at mesh nodes 102\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 102 points created -- Worst tri radius is 10.917\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 1612 triangles generated, 756 internal nodes\n", - "Info : [ 90%] Meshing surface 60 (Plane, Delaunay)\n", - "Debug : Recovering 5 model edges\n", - "Debug : Recovering 103 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 60\n", - "Debug : Computing mesh size field at mesh nodes 103\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 103 points created -- Worst tri radius is 11.128\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 1627 triangles generated, 763 internal nodes\n", - "Info : [ 90%] Meshing surface 61 (Plane, Delaunay)\n", - "Debug : Recovering 4 model edges\n", - "Debug : Recovering 126 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 61\n", - "Debug : Computing mesh size field at mesh nodes 126\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 126 points created -- Worst tri radius is 5.990\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 494 triangles generated, 185 internal nodes\n", - "Info : [100%] Meshing surface 62 (Plane, Delaunay)\n", - "Debug : Recovering 4 model edges\n", - "Debug : Recovering 86 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 62\n", - "Debug : Computing mesh size field at mesh nodes 86\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 86 points created -- Worst tri radius is 6.043\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 326 triangles generated, 121 internal nodes\n", - "Info : [100%] Meshing surface 63 (Plane, Delaunay)\n", - "Debug : Recovering 5 model edges\n", - "Debug : Recovering 103 mesh edges (0 not recovered)\n", - "Debug : Boundary edges recovered for surface 63\n", - "Debug : Computing mesh size field at mesh nodes 103\n", - "Debug : Delaunizing the initial mesh\n", - "Debug : Starting to add internal nodes\n", - "Debug : 103 points created -- Worst tri radius is 11.128\n", - "Debug : laplacian smoothing ...\n", - "Debug : Type 16 1613 triangles generated, 756 internal nodes\n", - "Info : Done meshing 2D (Wall 0.221417s, CPU 0.233159s)\n", - "Info : 8604 nodes 18480 elements\n", - "Debug : Minimum mesh quality (ICN) = 0.348727\n", - "Debug : Renumbering for potentially partial mesh save\n", - "Info : Removing duplicate mesh elements...\n", - "Info : Done removing duplicate mesh elements\n", - "Info : Removing duplicate mesh nodes...\n", - "Info : Found 0 duplicate nodes \n", - "Info : No duplicate nodes found\n", - "Debug : Renumbering for potentially partial mesh save\n", - "Debug : Decoded option name 'Mesh' . 'MshFileVersion' (index 0)\n", - "Info : Writing './output/gmsh.msh'...\n", - "Info : Done writing './output/gmsh.msh'\n", - "Info : Writing './output/gmsh.vtk'...\n", - "Info : Done writing './output/gmsh.vtk'\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m823\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd meshing.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m832\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd meshing heat-charge simulation.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:37\u001b[0m.\u001b[1;36m842\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mMesh heat-charge simulation time (s): 1.0171\u001b[0m \n", - "Resetting DEVSIM\n", - "Physical group name bc_0 has 0 Tetrahedra.\n", - "Physical group name bc_0 has 0 Triangles.\n", - "Physical group name bc_0 has 48 Lines.\n", - "Physical group name bc_0 has 51 Points.\n", - "Physical group name bc_1 has 0 Tetrahedra.\n", - "Physical group name bc_1 has 0 Triangles.\n", - "Physical group name bc_1 has 10 Lines.\n", - "Physical group name bc_1 has 11 Points.\n", - "Physical group name bc_2 has 0 Tetrahedra.\n", - "Physical group name bc_2 has 0 Triangles.\n", - "Physical group name bc_2 has 643 Lines.\n", - "Physical group name bc_2 has 645 Points.\n", - "Physical group name bc_3 has 0 Tetrahedra.\n", - "Physical group name bc_3 has 0 Triangles.\n", - "Physical group name bc_3 has 12 Lines.\n", - "Physical group name bc_3 has 14 Points.\n", - "Physical group name bc_4 has 0 Tetrahedra.\n", - "Physical group name bc_4 has 0 Triangles.\n", - "Physical group name bc_4 has 42 Lines.\n", - "Physical group name bc_4 has 43 Points.\n", - "Physical group name bc_5 has 0 Tetrahedra.\n", - "Physical group name bc_5 has 0 Triangles.\n", - "Physical group name bc_5 has 42 Lines.\n", - "Physical group name bc_5 has 43 Points.\n", - "Physical group name bc_6 has 0 Tetrahedra.\n", - "Physical group name bc_6 has 0 Triangles.\n", - "Physical group name bc_6 has 44 Lines.\n", - "Physical group name bc_6 has 46 Points.\n", - "Physical group name zone_1 has 0 Tetrahedra.\n", - "Physical group name zone_1 has 4323 Triangles.\n", - "Physical group name zone_1 has 6841 Lines.\n", - "Physical group name zone_1 has 2520 Points.\n", - "Physical group name zone_3 has 0 Tetrahedra.\n", - "Physical group name zone_3 has 12615 Triangles.\n", - "Physical group name zone_3 has 19308 Lines.\n", - "Physical group name zone_3 has 6694 Points.\n", - "Device device has 8569 coordinates with max index 8569\n", - "Region zone_1 has 2520 nodes.\n", - "Region zone_3 has 6694 nodes.\n", - "Contact zone_1_bc_0 in region zone_1 with 51 nodes\n", - "Warning, contact \"zone_1_bc_0\" shares a node with contact \"zone_1_bc_1\" (repeated 1 times)\n", - "Contact zone_1_bc_1 in region zone_1 with 11 nodes\n", - "Warning, contact \"zone_1_bc_0\" shares a node with contact \"zone_1_bc_3\" (repeated 1 times)\n", - "Contact zone_1_bc_3 in region zone_1 with 14 nodes\n", - "Warning, contact \"zone_1_bc_3\" shares a node with contact \"zone_3_bc_4\"\n", - "Contact zone_3_bc_4 in region zone_3 with 43 nodes\n", - "Warning, contact \"zone_1_bc_3\" shares a node with contact \"zone_3_bc_5\"\n", - "Contact zone_3_bc_5 in region zone_3 with 43 nodes\n", - "Warning, contact \"zone_1_bc_0\" shares a node with contact \"zone_3_bc_6\" (repeated 1 times)\n", - "Warning, contact \"zone_3_bc_4\" shares a node with contact \"zone_3_bc_6\"\n", - "Warning, contact \"zone_3_bc_5\" shares a node with contact \"zone_3_bc_6\"\n", - "Contact zone_3_bc_6 in region zone_3 with 46 nodes\n", - "Warning, contact \"zone_1_bc_3\" shares a node with interface \"zone_1_bc_2\" (repeated 1 times)\n", - "Warning, contact \"zone_3_bc_6\" shares a node with interface \"zone_1_bc_2\" (repeated 1 times)\n", - "Adding interface zone_1_bc_2 with 645, 645 nodes\n", - "Warning: Replacing equation with equation of the same name.\n", - "Region: zone_1, Equation: PotentialEquation, Variable: Potential\n", - "Replacing Node Model Holes in region zone_1 of material Si\n", - "Replacing Node Model Electrons in region zone_1 of material Si\n", - "Warning: Replacing equation with equation of the same name.\n", - "Region: zone_3, Equation: PotentialEquation, Variable: Potential\n", - "Warning: Replacing equation with equation of the same name.\n", - "Region: zone_3, Equation: TemperatureEquation, Variable: T\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:33:55\u001b[0m.\u001b[1;36m349\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 0.01\u001b[0m \n", - "Replacing Node Model NetDoping in region zone_1 of material Si\n", - "Replacing Node Model n_i in region zone_1 of material Si\n", - "Replacing Edge Model n_i@n0 in region zone_1 of material Si\n", - "Replacing Edge Model n_i@n1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en2 in region zone_1 of material Si\n", - "Replacing Node Model n_i:Electrons in region zone_1 of material Si\n", - "Replacing Node Model n_i:Holes in region zone_1 of material Si\n", - "Replacing Node Model n_i:T in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en2 in region zone_1 of material Si\n", - "Replacing Node Model NetDoping in region zone_3 of material Si\n", - "Replacing Node Model n_i in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en2 in region zone_3 of material Si\n", - "Replacing Node Model n_i:Electrons in region zone_3 of material Si\n", - "Replacing Node Model n_i:Holes in region zone_3 of material Si\n", - "Replacing Node Model n_i:T in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:Electrons@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:Holes@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:T@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:Electrons@n1 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:Holes@n1 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:T@n1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en2 in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.94776e+06\tAbsError: 2.04000e+18\n", - " Region: \"zone_1\"\tRelError: 1.14286e+00\tAbsError: 5.03923e+01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00000e+00\tAbsError: 3.92273e-01\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42857e-01\tAbsError: 5.00000e+01\n", - " Region: \"zone_3\"\tRelError: 1.94776e+06\tAbsError: 2.04000e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.73890e+05\tAbsError: 1.01999e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.73871e+05\tAbsError: 1.02001e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00000e+00\tAbsError: 3.94258e-01\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42857e-01\tAbsError: 5.00000e+01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 6.67125e+02\tAbsError: 1.33461e+18\n", - " Region: \"zone_1\"\tRelError: 1.20765e+00\tAbsError: 1.73937e+02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.73060e-01\tAbsError: 1.07722e-01\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.34587e-01\tAbsError: 1.73829e+02\n", - " Region: \"zone_3\"\tRelError: 6.65917e+02\tAbsError: 1.33461e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.70455e+02\tAbsError: 4.94500e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.94360e+02\tAbsError: 8.40115e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 7.67341e-01\tAbsError: 1.12369e-01\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.34791e-01\tAbsError: 1.73988e+02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.30072e+03\tAbsError: 1.46621e+18\n", - " Region: \"zone_1\"\tRelError: 5.66736e+00\tAbsError: 6.21208e+01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.53177e+00\tAbsError: 8.68314e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.35594e-01\tAbsError: 6.20340e+01\n", - " Region: \"zone_3\"\tRelError: 1.29505e+03\tAbsError: 1.46621e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.98626e+02\tAbsError: 5.27076e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.93595e+02\tAbsError: 9.39137e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 2.69209e+00\tAbsError: 8.63083e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.35695e-01\tAbsError: 6.20936e+01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.92859e+03\tAbsError: 6.96382e+17\n", - " Region: \"zone_1\"\tRelError: 5.95263e+01\tAbsError: 7.27435e+01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.93375e+01\tAbsError: 8.37936e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.88805e-01\tAbsError: 7.26597e+01\n", - " Region: \"zone_3\"\tRelError: 3.86907e+03\tAbsError: 6.96382e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.90197e+03\tAbsError: 2.98121e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.66146e+02\tAbsError: 3.98260e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 5.00763e+02\tAbsError: 8.37910e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.88952e-01\tAbsError: 7.27229e+01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.95059e+03\tAbsError: 1.53714e+17\n", - " Region: \"zone_1\"\tRelError: 4.47601e+02\tAbsError: 1.33171e+01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.47568e+02\tAbsError: 8.18747e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.32482e-02\tAbsError: 1.32353e+01\n", - " Region: \"zone_3\"\tRelError: 2.50299e+03\tAbsError: 1.53714e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.86779e+02\tAbsError: 6.22634e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.24742e+03\tAbsError: 9.14502e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.68756e+02\tAbsError: 8.19661e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.32744e-02\tAbsError: 1.32473e+01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.89183e+03\tAbsError: 1.32069e+17\n", - " Region: \"zone_1\"\tRelError: 9.63120e+02\tAbsError: 2.36855e+01\n", - " Equation: \"PotentialEquation\"\tRelError: 9.63057e+02\tAbsError: 7.58983e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.30488e-02\tAbsError: 2.36096e+01\n", - " Region: \"zone_3\"\tRelError: 4.92871e+03\tAbsError: 1.32069e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.68041e+02\tAbsError: 4.90786e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.25338e+02\tAbsError: 8.29902e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.53527e+03\tAbsError: 7.54264e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.30998e-02\tAbsError: 2.36303e+01\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.91257e+03\tAbsError: 2.45952e+16\n", - " Region: \"zone_1\"\tRelError: 4.00274e+00\tAbsError: 2.56698e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 3.99605e+00\tAbsError: 7.69849e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.69398e-03\tAbsError: 2.48999e+00\n", - " Region: \"zone_3\"\tRelError: 1.90857e+03\tAbsError: 2.45952e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.38175e+02\tAbsError: 1.16483e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.65893e+02\tAbsError: 1.29469e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.49097e+00\tAbsError: 7.70600e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.69995e-03\tAbsError: 2.49238e+00\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.66274e+03\tAbsError: 8.40381e+15\n", - " Region: \"zone_1\"\tRelError: 7.75919e-01\tAbsError: 5.24262e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 7.61812e-01\tAbsError: 6.79483e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41076e-02\tAbsError: 5.17468e+00\n", - " Region: \"zone_3\"\tRelError: 1.66197e+03\tAbsError: 8.40381e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.58469e+02\tAbsError: 2.69142e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.02704e+02\tAbsError: 5.71240e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.82716e-01\tAbsError: 6.79483e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41204e-02\tAbsError: 5.17962e+00\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.24866e+03\tAbsError: 3.16272e+15\n", - " Region: \"zone_1\"\tRelError: 3.66397e-01\tAbsError: 6.01586e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 3.49892e-01\tAbsError: 6.01222e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.65050e-02\tAbsError: 5.95574e+00\n", - " Region: \"zone_3\"\tRelError: 2.24829e+03\tAbsError: 3.16272e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.11206e+02\tAbsError: 1.71777e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.13671e+03\tAbsError: 1.44495e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 3.57030e-01\tAbsError: 6.01222e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.65192e-02\tAbsError: 5.96108e+00\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 3.19658e+03\tAbsError: 4.07304e+15\n", - " Region: \"zone_1\"\tRelError: 2.22622e-01\tAbsError: 7.04686e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 2.02853e-01\tAbsError: 5.15633e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.97692e-02\tAbsError: 6.99530e+00\n", - " Region: \"zone_3\"\tRelError: 3.19636e+03\tAbsError: 4.07304e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13171e+03\tAbsError: 2.16998e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.06442e+03\tAbsError: 1.90306e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.08591e-01\tAbsError: 5.12074e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.97872e-02\tAbsError: 7.00183e+00\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 7.28118e+03\tAbsError: 6.93925e+15\n", - " Region: \"zone_1\"\tRelError: 1.29224e-01\tAbsError: 4.66597e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15984e-01\tAbsError: 4.20159e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32406e-02\tAbsError: 4.62395e+00\n", - " Region: \"zone_3\"\tRelError: 7.28105e+03\tAbsError: 6.93925e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16511e+03\tAbsError: 3.71724e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.11583e+03\tAbsError: 3.22201e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00397e-01\tAbsError: 4.13918e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32528e-02\tAbsError: 4.62826e+00\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 2.46907e+02\tAbsError: 1.08406e+16\n", - " Region: \"zone_1\"\tRelError: 8.02287e-02\tAbsError: 2.35784e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 7.35182e-02\tAbsError: 2.99851e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.71049e-03\tAbsError: 2.32785e+00\n", - " Region: \"zone_3\"\tRelError: 2.46826e+02\tAbsError: 1.08406e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.87789e+01\tAbsError: 5.90881e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.77975e+02\tAbsError: 4.93175e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 6.61012e-02\tAbsError: 2.58908e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.71698e-03\tAbsError: 2.33011e+00\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.34357e+04\tAbsError: 1.19559e+16\n", - " Region: \"zone_1\"\tRelError: 6.09932e-02\tAbsError: 9.36029e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.83763e-02\tAbsError: 3.05969e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.61692e-03\tAbsError: 9.05432e-01\n", - " Region: \"zone_3\"\tRelError: 1.34357e+04\tAbsError: 1.19559e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.22439e+03\tAbsError: 6.88914e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.21121e+03\tAbsError: 5.06678e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.99220e-02\tAbsError: 3.18503e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.62022e-03\tAbsError: 9.06573e-01\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 2.51914e+02\tAbsError: 3.41911e+15\n", - " Region: \"zone_1\"\tRelError: 5.37272e-02\tAbsError: 2.53023e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.30702e-02\tAbsError: 2.58390e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.57047e-04\tAbsError: 2.27184e-01\n", - " Region: \"zone_3\"\tRelError: 2.51860e+02\tAbsError: 3.41911e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09434e+02\tAbsError: 1.76185e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.42371e+02\tAbsError: 1.65725e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.39750e-02\tAbsError: 2.58978e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.57247e-04\tAbsError: 2.27252e-01\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 9.17153e+03\tAbsError: 1.53174e+15\n", - " Region: \"zone_1\"\tRelError: 3.35927e-02\tAbsError: 6.34263e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.34496e-02\tAbsError: 1.39634e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43074e-04\tAbsError: 4.94630e-02\n", - " Region: \"zone_3\"\tRelError: 9.17149e+03\tAbsError: 1.53174e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.72842e+02\tAbsError: 6.29796e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.99862e+03\tAbsError: 9.01944e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.44281e-02\tAbsError: 1.50572e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43193e-04\tAbsError: 4.95039e-02\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 1.00752e+04\tAbsError: 3.51392e+14\n", - " Region: \"zone_1\"\tRelError: 1.25933e-02\tAbsError: 1.36724e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.25722e-02\tAbsError: 6.36915e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.11256e-05\tAbsError: 7.30329e-03\n", - " Region: \"zone_3\"\tRelError: 1.00751e+04\tAbsError: 3.51392e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98699e+03\tAbsError: 1.94249e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.81432e+01\tAbsError: 1.57143e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36562e-02\tAbsError: 6.88316e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.11388e-05\tAbsError: 7.30782e-03\n", - "Iteration: 16\n", - " Device: \"device\"\tRelError: 1.48057e+02\tAbsError: 7.55540e+12\n", - " Region: \"zone_1\"\tRelError: 1.35837e-04\tAbsError: 9.15436e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33386e-04\tAbsError: 6.81099e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.45099e-06\tAbsError: 8.47326e-04\n", - " Region: \"zone_3\"\tRelError: 1.48057e+02\tAbsError: 7.55540e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04520e+02\tAbsError: 5.86235e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.35366e+01\tAbsError: 1.69306e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.54934e-04\tAbsError: 7.83782e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.45202e-06\tAbsError: 8.47678e-04\n", - "Iteration: 17\n", - " Device: \"device\"\tRelError: 1.61095e-01\tAbsError: 1.05062e+11\n", - " Region: \"zone_1\"\tRelError: 6.80612e-07\tAbsError: 2.10057e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.20301e-07\tAbsError: 1.55674e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.03111e-08\tAbsError: 2.08500e-05\n", - " Region: \"zone_3\"\tRelError: 1.61095e-01\tAbsError: 1.05062e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.45800e-01\tAbsError: 5.36236e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.52936e-02\tAbsError: 5.14380e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 6.43614e-07\tAbsError: 1.59316e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.03688e-08\tAbsError: 2.08699e-05\n", - "Iteration: 18\n", - " Device: \"device\"\tRelError: 2.80810e-06\tAbsError: 3.32876e+09\n", - " Region: \"zone_1\"\tRelError: 2.35479e-08\tAbsError: 8.94470e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.09842e-08\tAbsError: 4.33411e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.56372e-09\tAbsError: 8.90136e-07\n", - " Region: \"zone_3\"\tRelError: 2.78455e-06\tAbsError: 3.32876e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.51830e-06\tAbsError: 1.84896e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.24197e-06\tAbsError: 1.47980e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.17144e-08\tAbsError: 4.43296e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.56540e-09\tAbsError: 8.90719e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:11\u001b[0m.\u001b[1;36m800\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 0.03162277660168379\u001b[0m \n", - "Replacing Node Model NetDoping in region zone_1 of material Si\n", - "Replacing Node Model n_i in region zone_1 of material Si\n", - "Replacing Edge Model n_i@n0 in region zone_1 of material Si\n", - "Replacing Edge Model n_i@n1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en2 in region zone_1 of material Si\n", - "Replacing Node Model n_i:Electrons in region zone_1 of material Si\n", - "Replacing Node Model n_i:Holes in region zone_1 of material Si\n", - "Replacing Node Model n_i:T in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en2 in region zone_1 of material Si\n", - "Replacing Node Model NetDoping in region zone_3 of material Si\n", - "Replacing Node Model n_i in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en2 in region zone_3 of material Si\n", - "Replacing Node Model n_i:Electrons in region zone_3 of material Si\n", - "Replacing Node Model n_i:Holes in region zone_3 of material Si\n", - "Replacing Node Model n_i:T in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:Electrons@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:Holes@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:T@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:Electrons@n1 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:Holes@n1 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:T@n1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en2 in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.09589e+04\tAbsError: 4.42835e+18\n", - " Region: \"zone_1\"\tRelError: 3.76402e-01\tAbsError: 3.71294e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.76398e-01\tAbsError: 3.58464e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.66599e-06\tAbsError: 1.28302e-03\n", - " Region: \"zone_3\"\tRelError: 1.09585e+04\tAbsError: 4.42835e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.08828e+03\tAbsError: 2.21419e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.86986e+03\tAbsError: 2.21416e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 3.77508e-01\tAbsError: 3.65195e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.66651e-06\tAbsError: 1.28320e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.68704e+00\tAbsError: 4.09689e+16\n", - " Region: \"zone_1\"\tRelError: 1.59987e-01\tAbsError: 3.78978e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.59912e-01\tAbsError: 1.21279e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.44743e-05\tAbsError: 2.57699e-02\n", - " Region: \"zone_3\"\tRelError: 2.52705e+00\tAbsError: 4.09689e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.20519e+00\tAbsError: 2.06847e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.16158e+00\tAbsError: 2.02842e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60211e-01\tAbsError: 1.27503e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.44743e-05\tAbsError: 2.57699e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 7.16777e-01\tAbsError: 2.84880e+15\n", - " Region: \"zone_1\"\tRelError: 2.13091e-03\tAbsError: 1.34529e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.09298e-03\tAbsError: 2.83116e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.79289e-05\tAbsError: 1.31698e-02\n", - " Region: \"zone_3\"\tRelError: 7.14646e-01\tAbsError: 2.84880e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.40737e-01\tAbsError: 1.50317e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.71739e-01\tAbsError: 1.34563e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.13216e-03\tAbsError: 2.93924e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.79505e-05\tAbsError: 1.31770e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.53330e-03\tAbsError: 4.97209e+12\n", - " Region: \"zone_1\"\tRelError: 2.95921e-05\tAbsError: 2.95955e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.87527e-05\tAbsError: 4.52958e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.39356e-07\tAbsError: 2.91426e-04\n", - " Region: \"zone_3\"\tRelError: 2.50371e-03\tAbsError: 4.97209e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10415e-03\tAbsError: 3.14115e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.36935e-03\tAbsError: 1.83094e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.93707e-05\tAbsError: 4.65627e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.39451e-07\tAbsError: 2.91462e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 3.31368e-05\tAbsError: 1.03126e+11\n", - " Region: \"zone_1\"\tRelError: 8.82046e-07\tAbsError: 7.25910e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.73282e-07\tAbsError: 1.05369e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.08765e-07\tAbsError: 7.24857e-05\n", - " Region: \"zone_3\"\tRelError: 3.22547e-05\tAbsError: 1.03126e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.57484e-05\tAbsError: 6.95547e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.56070e-05\tAbsError: 3.35713e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 6.90339e-07\tAbsError: 1.08090e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.08891e-07\tAbsError: 7.25309e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:16\u001b[0m.\u001b[1;36m705\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 0.1\u001b[0m \n", - "Replacing Node Model NetDoping in region zone_1 of material Si\n", - "Replacing Node Model n_i in region zone_1 of material Si\n", - "Replacing Edge Model n_i@n0 in region zone_1 of material Si\n", - "Replacing Edge Model n_i@n1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en2 in region zone_1 of material Si\n", - "Replacing Node Model n_i:Electrons in region zone_1 of material Si\n", - "Replacing Node Model n_i:Holes in region zone_1 of material Si\n", - "Replacing Node Model n_i:T in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en2 in region zone_1 of material Si\n", - "Replacing Node Model NetDoping in region zone_3 of material Si\n", - "Replacing Node Model n_i in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en2 in region zone_3 of material Si\n", - "Replacing Node Model n_i:Electrons in region zone_3 of material Si\n", - "Replacing Node Model n_i:Holes in region zone_3 of material Si\n", - "Replacing Node Model n_i:T in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:Electrons@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:Holes@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:T@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:Electrons@n1 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:Holes@n1 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:T@n1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en2 in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 4.59181e+03\tAbsError: 1.39723e+19\n", - " Region: \"zone_1\"\tRelError: 7.56617e-01\tAbsError: 3.57738e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.56605e-01\tAbsError: 3.16803e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18304e-05\tAbsError: 4.09344e-03\n", - " Region: \"zone_3\"\tRelError: 4.59105e+03\tAbsError: 1.39723e+19\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.88119e+02\tAbsError: 6.98585e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.80218e+03\tAbsError: 6.98649e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 7.56801e-01\tAbsError: 3.19349e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18304e-05\tAbsError: 4.09344e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.84985e+00\tAbsError: 5.93483e+16\n", - " Region: \"zone_1\"\tRelError: 3.91051e-01\tAbsError: 9.08795e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.90822e-01\tAbsError: 1.14871e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.29416e-04\tAbsError: 7.93923e-02\n", - " Region: \"zone_3\"\tRelError: 2.45880e+00\tAbsError: 5.93483e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06772e+00\tAbsError: 2.86051e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.99141e-01\tAbsError: 3.07432e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.91709e-01\tAbsError: 1.14871e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.29490e-04\tAbsError: 7.94203e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 3.05684e-01\tAbsError: 2.58379e+14\n", - " Region: \"zone_1\"\tRelError: 2.55963e-03\tAbsError: 6.45560e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.54282e-03\tAbsError: 6.41085e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.68020e-05\tAbsError: 5.81451e-03\n", - " Region: \"zone_3\"\tRelError: 3.03124e-01\tAbsError: 2.58379e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68002e-01\tAbsError: 1.37307e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.32383e-01\tAbsError: 1.21072e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.72183e-03\tAbsError: 6.81504e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.68020e-05\tAbsError: 5.81451e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.98022e-03\tAbsError: 2.85263e+12\n", - " Region: \"zone_1\"\tRelError: 2.85485e-05\tAbsError: 2.74721e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06166e-05\tAbsError: 2.24456e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.93198e-06\tAbsError: 2.74496e-03\n", - " Region: \"zone_3\"\tRelError: 2.95167e-03\tAbsError: 2.85263e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49430e-03\tAbsError: 2.03236e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.42813e-03\tAbsError: 8.20269e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.13020e-05\tAbsError: 2.28367e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.93591e-06\tAbsError: 2.74628e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 4.32722e-04\tAbsError: 1.09424e+12\n", - " Region: \"zone_1\"\tRelError: 5.94752e-06\tAbsError: 8.07354e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.71760e-06\tAbsError: 8.94103e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.29918e-07\tAbsError: 7.98413e-05\n", - " Region: \"zone_3\"\tRelError: 4.26775e-04\tAbsError: 1.09424e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11667e-04\tAbsError: 6.50366e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.09053e-04\tAbsError: 4.43872e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.82510e-06\tAbsError: 9.33163e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.30055e-07\tAbsError: 7.98910e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.14431e-05\tAbsError: 4.11796e+10\n", - " Region: \"zone_1\"\tRelError: 3.18218e-07\tAbsError: 2.36712e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.50145e-07\tAbsError: 3.35603e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.80731e-08\tAbsError: 2.36377e-05\n", - " Region: \"zone_3\"\tRelError: 1.11249e-05\tAbsError: 4.11796e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.42049e-06\tAbsError: 2.80121e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.38209e-06\tAbsError: 1.31675e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.54185e-07\tAbsError: 3.45102e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.81052e-08\tAbsError: 2.36495e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:22\u001b[0m.\u001b[1;36m456\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 0.31622776601683794\u001b[0m \n", - "Replacing Node Model NetDoping in region zone_1 of material Si\n", - "Replacing Node Model n_i in region zone_1 of material Si\n", - "Replacing Edge Model n_i@n0 in region zone_1 of material Si\n", - "Replacing Edge Model n_i@n1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en2 in region zone_1 of material Si\n", - "Replacing Node Model n_i:Electrons in region zone_1 of material Si\n", - "Replacing Node Model n_i:Holes in region zone_1 of material Si\n", - "Replacing Node Model n_i:T in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en2 in region zone_1 of material Si\n", - "Replacing Node Model NetDoping in region zone_3 of material Si\n", - "Replacing Node Model n_i in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en2 in region zone_3 of material Si\n", - "Replacing Node Model n_i:Electrons in region zone_3 of material Si\n", - "Replacing Node Model n_i:Holes in region zone_3 of material Si\n", - "Replacing Node Model n_i:T in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:Electrons@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:Holes@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:T@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:Electrons@n1 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:Holes@n1 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:T@n1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en2 in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.81548e+04\tAbsError: 4.41452e+19\n", - " Region: \"zone_1\"\tRelError: 4.00112e+02\tAbsError: 5.38619e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.00112e+02\tAbsError: 3.01539e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.85108e-05\tAbsError: 2.37080e-02\n", - " Region: \"zone_3\"\tRelError: 1.77547e+04\tAbsError: 4.41452e+19\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.11357e+03\tAbsError: 2.20717e+19\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.68429e+03\tAbsError: 2.20736e+19\n", - " Equation: \"PotentialEquation\"\tRelError: 8.95682e+03\tAbsError: 3.01539e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.85824e-05\tAbsError: 2.37335e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 6.37823e+03\tAbsError: 7.77266e+16\n", - " Region: \"zone_1\"\tRelError: 2.55259e+03\tAbsError: 3.32603e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.55259e+03\tAbsError: 1.21605e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.25174e-04\tAbsError: 3.20443e-01\n", - " Region: \"zone_3\"\tRelError: 3.82564e+03\tAbsError: 7.77266e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.85918e+00\tAbsError: 4.09086e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.30746e+00\tAbsError: 3.68181e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.82047e+03\tAbsError: 1.27151e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.25174e-04\tAbsError: 3.20443e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.51948e+00\tAbsError: 1.24184e+15\n", - " Region: \"zone_1\"\tRelError: 3.41095e-01\tAbsError: 5.88077e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.40927e-01\tAbsError: 8.76347e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67226e-04\tAbsError: 5.79314e-02\n", - " Region: \"zone_3\"\tRelError: 1.17838e+00\tAbsError: 1.24184e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.50766e-01\tAbsError: 8.12970e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.95876e-01\tAbsError: 4.28870e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.31571e-01\tAbsError: 9.34668e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67226e-04\tAbsError: 5.79314e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.30025e-02\tAbsError: 1.81225e+13\n", - " Region: \"zone_1\"\tRelError: 1.31169e-02\tAbsError: 1.68781e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.30682e-02\tAbsError: 1.34387e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.86794e-05\tAbsError: 1.68646e-02\n", - " Region: \"zone_3\"\tRelError: 3.98856e-02\tAbsError: 1.81225e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.03737e-02\tAbsError: 1.02962e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.70790e-03\tAbsError: 7.82629e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.27553e-02\tAbsError: 1.42458e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.86794e-05\tAbsError: 1.68646e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.41263e-02\tAbsError: 9.07776e+12\n", - " Region: \"zone_1\"\tRelError: 9.62176e-03\tAbsError: 4.08013e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.62060e-03\tAbsError: 6.26261e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.15956e-06\tAbsError: 4.01751e-04\n", - " Region: \"zone_3\"\tRelError: 4.50458e-03\tAbsError: 9.07776e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.40964e-03\tAbsError: 5.33124e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.38896e-03\tAbsError: 3.74652e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.70482e-03\tAbsError: 6.61320e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.16036e-06\tAbsError: 4.02019e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.48775e-04\tAbsError: 2.90368e+11\n", - " Region: \"zone_1\"\tRelError: 3.86328e-04\tAbsError: 3.03437e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.85453e-04\tAbsError: 1.50377e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.75364e-07\tAbsError: 3.03287e-04\n", - " Region: \"zone_3\"\tRelError: 4.62447e-04\tAbsError: 2.90368e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.48536e-05\tAbsError: 1.72985e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.41646e-05\tAbsError: 1.17383e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.92553e-04\tAbsError: 1.58814e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.75483e-07\tAbsError: 3.03321e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.03929e-04\tAbsError: 2.36139e+11\n", - " Region: \"zone_1\"\tRelError: 2.89879e-04\tAbsError: 1.34924e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.89875e-04\tAbsError: 1.43748e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.46954e-09\tAbsError: 1.20549e-06\n", - " Region: \"zone_3\"\tRelError: 1.14050e-04\tAbsError: 2.36139e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.76341e-05\tAbsError: 1.44548e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.73640e-05\tAbsError: 9.15910e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.90481e-05\tAbsError: 1.50265e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.47105e-09\tAbsError: 1.20601e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.89084e-05\tAbsError: 1.30416e+09\n", - " Region: \"zone_1\"\tRelError: 1.60532e-05\tAbsError: 7.73681e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60310e-05\tAbsError: 6.68367e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.22657e-08\tAbsError: 7.73614e-06\n", - " Region: \"zone_3\"\tRelError: 1.28552e-05\tAbsError: 1.30416e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.96650e-07\tAbsError: 7.75602e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.23307e-07\tAbsError: 5.28556e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18129e-05\tAbsError: 6.69589e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.22749e-08\tAbsError: 7.73943e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:30\u001b[0m.\u001b[1;36m250\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 1.0\u001b[0m \n", - "Replacing Node Model NetDoping in region zone_1 of material Si\n", - "Replacing Node Model n_i in region zone_1 of material Si\n", - "Replacing Edge Model n_i@n0 in region zone_1 of material Si\n", - "Replacing Edge Model n_i@n1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i@en2 in region zone_1 of material Si\n", - "Replacing Node Model n_i:Electrons in region zone_1 of material Si\n", - "Replacing Node Model n_i:Holes in region zone_1 of material Si\n", - "Replacing Node Model n_i:T in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en0 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en1 in region zone_1 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en2 in region zone_1 of material Si\n", - "Replacing Node Model NetDoping in region zone_3 of material Si\n", - "Replacing Node Model n_i in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i@en2 in region zone_3 of material Si\n", - "Replacing Node Model n_i:Electrons in region zone_3 of material Si\n", - "Replacing Node Model n_i:Holes in region zone_3 of material Si\n", - "Replacing Node Model n_i:T in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:Electrons@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:Holes@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n0:T@n0 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:Electrons@n1 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:Holes@n1 in region zone_3 of material Si\n", - "Replacing Edge Model n_i@n1:T@n1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en0 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en1 in region zone_3 of material Si\n", - "Replacing Triangle Edge Model n_i:T@en2 in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.25598e+03\tAbsError: 1.39519e+20\n", - " Region: \"zone_1\"\tRelError: 1.78965e+02\tAbsError: 1.67941e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.78964e+02\tAbsError: 4.06320e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.67619e-04\tAbsError: 1.27309e-01\n", - " Region: \"zone_3\"\tRelError: 2.07701e+03\tAbsError: 1.39519e+20\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.52607e+02\tAbsError: 6.97576e+19\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.11741e+03\tAbsError: 6.97615e+19\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06993e+02\tAbsError: 4.15365e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.67619e-04\tAbsError: 1.27309e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.17154e+04\tAbsError: 6.81771e+16\n", - " Region: \"zone_1\"\tRelError: 2.30977e+02\tAbsError: 1.32838e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 2.30973e+02\tAbsError: 2.82997e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.74009e-03\tAbsError: 1.30008e+00\n", - " Region: \"zone_3\"\tRelError: 1.14845e+04\tAbsError: 6.81771e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12728e+04\tAbsError: 3.49371e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.62860e+00\tAbsError: 3.32400e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.10015e+02\tAbsError: 2.93816e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.74009e-03\tAbsError: 1.30008e+00\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.82529e+00\tAbsError: 2.16371e+15\n", - " Region: \"zone_1\"\tRelError: 7.14038e-01\tAbsError: 9.63977e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.13819e-01\tAbsError: 2.02378e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19044e-04\tAbsError: 7.61599e-02\n", - " Region: \"zone_3\"\tRelError: 2.11126e+00\tAbsError: 2.16371e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99928e-01\tAbsError: 1.08980e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.09314e-01\tAbsError: 1.07391e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.01796e-01\tAbsError: 2.24265e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19044e-04\tAbsError: 7.61599e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.19459e+00\tAbsError: 9.46737e+13\n", - " Region: \"zone_1\"\tRelError: 2.48858e-01\tAbsError: 7.49117e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.48644e-01\tAbsError: 6.58192e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.13516e-04\tAbsError: 7.42536e-02\n", - " Region: \"zone_3\"\tRelError: 9.45729e-01\tAbsError: 9.46737e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.14875e-01\tAbsError: 4.65985e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.08043e-01\tAbsError: 4.80752e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25967e-02\tAbsError: 7.03900e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.13612e-04\tAbsError: 7.42871e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.14246e-02\tAbsError: 6.01858e+13\n", - " Region: \"zone_1\"\tRelError: 2.16696e-02\tAbsError: 2.70554e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.16619e-02\tAbsError: 4.09885e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.65293e-06\tAbsError: 2.66456e-03\n", - " Region: \"zone_3\"\tRelError: 6.97550e-02\tAbsError: 6.01858e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.51834e-03\tAbsError: 3.45595e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.49371e-03\tAbsError: 2.56263e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.87353e-02\tAbsError: 4.18557e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.65609e-06\tAbsError: 2.66571e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.32865e-03\tAbsError: 2.21399e+12\n", - " Region: \"zone_1\"\tRelError: 1.82386e-03\tAbsError: 4.30666e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81148e-03\tAbsError: 1.70549e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.23785e-05\tAbsError: 4.30496e-03\n", - " Region: \"zone_3\"\tRelError: 5.50479e-03\tAbsError: 2.21399e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.69673e-04\tAbsError: 1.46537e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.83712e-04\tAbsError: 7.48619e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.83902e-03\tAbsError: 1.76657e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.23819e-05\tAbsError: 4.30614e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.56549e-03\tAbsError: 4.01137e+12\n", - " Region: \"zone_1\"\tRelError: 1.54046e-03\tAbsError: 4.35699e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.53922e-03\tAbsError: 2.45136e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.24576e-06\tAbsError: 4.33248e-04\n", - " Region: \"zone_3\"\tRelError: 5.02503e-03\tAbsError: 4.01137e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.28020e-04\tAbsError: 2.37441e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.24782e-04\tAbsError: 1.63695e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.17098e-03\tAbsError: 2.50044e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.24583e-06\tAbsError: 4.33272e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 8.67547e-04\tAbsError: 3.95476e+11\n", - " Region: \"zone_1\"\tRelError: 2.12214e-04\tAbsError: 2.93797e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.11370e-04\tAbsError: 2.53684e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.44057e-07\tAbsError: 2.93544e-04\n", - " Region: \"zone_3\"\tRelError: 6.55333e-04\tAbsError: 3.95476e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37464e-05\tAbsError: 2.41005e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.36537e-05\tAbsError: 1.54470e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.67089e-04\tAbsError: 2.59006e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.44176e-07\tAbsError: 2.93586e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 4.70521e-04\tAbsError: 2.77095e+11\n", - " Region: \"zone_1\"\tRelError: 1.11249e-04\tAbsError: 4.61091e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11117e-04\tAbsError: 1.66976e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32102e-07\tAbsError: 4.59421e-05\n", - " Region: \"zone_3\"\tRelError: 3.59272e-04\tAbsError: 2.77095e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.92629e-05\tAbsError: 1.66200e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.90560e-05\tAbsError: 1.10895e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.00821e-04\tAbsError: 1.70352e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32114e-07\tAbsError: 4.59465e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 8.45205e-05\tAbsError: 4.25447e+10\n", - " Region: \"zone_1\"\tRelError: 2.04303e-05\tAbsError: 2.13507e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03690e-05\tAbsError: 2.66316e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.13154e-08\tAbsError: 2.13241e-05\n", - " Region: \"zone_3\"\tRelError: 6.40902e-05\tAbsError: 4.25447e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.61885e-06\tAbsError: 2.57226e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.60021e-06\tAbsError: 1.68221e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.48098e-05\tAbsError: 2.71818e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.13223e-08\tAbsError: 2.13265e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m507\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m528\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBuilt-in potential: % (np.float64(-1.0448670768291761),)\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m528\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mnot all arguments converted during string formatting\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m637\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.55 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m637\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.5 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m639\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.65 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m640\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.6 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m640\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.7 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m659\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: 0.1\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m659\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: 0.1\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m661\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.1\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m667\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:41\u001b[0m.\u001b[1;36m676\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "number of equations 31816\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "number of equations 31816\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.58159e+00\tAbsError: 8.42925e+15\n", - " Region: \"zone_1\"\tRelError: 6.96489e+00\tAbsError: 4.09585e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.96489e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22081e-08\tAbsError: 4.24570e-06\n", - " Region: \"zone_3\"\tRelError: 1.61670e+00\tAbsError: 8.42925e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68720e-01\tAbsError: 4.55135e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.68261e-01\tAbsError: 3.87791e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.97210e-02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22093e-08\tAbsError: 4.24613e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.58159e+00\tAbsError: 8.42925e+15\n", - " Region: \"zone_1\"\tRelError: 6.96489e+00\tAbsError: 4.09585e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.96489e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22081e-08\tAbsError: 4.24570e-06\n", - " Region: \"zone_3\"\tRelError: 1.61670e+00\tAbsError: 8.42925e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68720e-01\tAbsError: 4.55135e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.68261e-01\tAbsError: 3.87791e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.97210e-02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22093e-08\tAbsError: 4.24613e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.58159e+00\tAbsError: 8.42925e+15\n", - " Region: \"zone_1\"\tRelError: 6.96489e+00\tAbsError: 4.09585e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.96489e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22081e-08\tAbsError: 4.24570e-06\n", - " Region: \"zone_3\"\tRelError: 1.61670e+00\tAbsError: 8.42925e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68720e-01\tAbsError: 4.55135e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.68261e-01\tAbsError: 3.87791e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.97210e-02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22093e-08\tAbsError: 4.24613e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.58159e+00\tAbsError: 8.42925e+15\n", - " Region: \"zone_1\"\tRelError: 6.96489e+00\tAbsError: 4.09585e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.96489e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22081e-08\tAbsError: 4.24570e-06\n", - " Region: \"zone_3\"\tRelError: 1.61670e+00\tAbsError: 8.42925e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68720e-01\tAbsError: 4.55135e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.68261e-01\tAbsError: 3.87791e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.97210e-02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22093e-08\tAbsError: 4.24613e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.58159e+00\tAbsError: 8.42925e+15\n", - " Region: \"zone_1\"\tRelError: 6.96489e+00\tAbsError: 4.09585e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.96489e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22081e-08\tAbsError: 4.24570e-06\n", - " Region: \"zone_3\"\tRelError: 1.61670e+00\tAbsError: 8.42925e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68720e-01\tAbsError: 4.55135e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.68261e-01\tAbsError: 3.87791e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.97210e-02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22093e-08\tAbsError: 4.24613e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.51014e+00\tAbsError: 2.99004e+14\n", - " Region: \"zone_1\"\tRelError: 8.86940e-02\tAbsError: 9.23854e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.85168e-02\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77223e-04\tAbsError: 6.16217e-02\n", - " Region: \"zone_3\"\tRelError: 1.42145e+00\tAbsError: 2.99004e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37288e-01\tAbsError: 1.29763e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.31407e-01\tAbsError: 1.69241e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.25791e-02\tAbsError: 3.07641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77223e-04\tAbsError: 6.16217e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.51014e+00\tAbsError: 2.99004e+14\n", - " Region: \"zone_1\"\tRelError: 8.86940e-02\tAbsError: 9.23854e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.85168e-02\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77223e-04\tAbsError: 6.16217e-02\n", - " Region: \"zone_3\"\tRelError: 1.42145e+00\tAbsError: 2.99004e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37288e-01\tAbsError: 1.29763e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.31407e-01\tAbsError: 1.69241e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.25791e-02\tAbsError: 3.07641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77223e-04\tAbsError: 6.16217e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.51014e+00\tAbsError: 2.99004e+14\n", - " Region: \"zone_1\"\tRelError: 8.86940e-02\tAbsError: 9.23854e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.85168e-02\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77223e-04\tAbsError: 6.16217e-02\n", - " Region: \"zone_3\"\tRelError: 1.42145e+00\tAbsError: 2.99004e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37288e-01\tAbsError: 1.29763e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.31407e-01\tAbsError: 1.69241e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.25791e-02\tAbsError: 3.07641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77223e-04\tAbsError: 6.16217e-02\n", - "Iteration: 1\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.51014e+00\tAbsError: 2.99004e+14\n", - " Region: \"zone_1\"\tRelError: 8.86940e-02\tAbsError: 9.23854e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.85168e-02\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77223e-04\tAbsError: 6.16217e-02\n", - " Region: \"zone_3\"\tRelError: 1.42145e+00\tAbsError: 2.99004e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37288e-01\tAbsError: 1.29763e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.31407e-01\tAbsError: 1.69241e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.25791e-02\tAbsError: 3.07641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77223e-04\tAbsError: 6.16217e-02\n", - " Device: \"device\"\tRelError: 1.51014e+00\tAbsError: 2.99004e+14\n", - " Region: \"zone_1\"\tRelError: 8.86940e-02\tAbsError: 9.23854e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.85168e-02\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77223e-04\tAbsError: 6.16217e-02\n", - " Region: \"zone_3\"\tRelError: 1.42145e+00\tAbsError: 2.99004e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37288e-01\tAbsError: 1.29763e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.31407e-01\tAbsError: 1.69241e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.25791e-02\tAbsError: 3.07641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77223e-04\tAbsError: 6.16217e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.16282e-01\tAbsError: 4.40895e+13\n", - " Region: \"zone_1\"\tRelError: 3.94410e-02\tAbsError: 2.98107e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.94296e-02\tAbsError: 2.58562e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13728e-05\tAbsError: 3.95446e-03\n", - " Region: \"zone_3\"\tRelError: 8.76841e-01\tAbsError: 4.40895e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.38974e-01\tAbsError: 3.05502e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.97980e-01\tAbsError: 1.35393e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.98753e-02\tAbsError: 2.58800e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13728e-05\tAbsError: 3.95446e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.16282e-01\tAbsError: 4.40895e+13\n", - " Region: \"zone_1\"\tRelError: 3.94410e-02\tAbsError: 2.98107e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.94296e-02\tAbsError: 2.58562e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13728e-05\tAbsError: 3.95446e-03\n", - " Region: \"zone_3\"\tRelError: 8.76841e-01\tAbsError: 4.40895e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.38974e-01\tAbsError: 3.05502e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.97980e-01\tAbsError: 1.35393e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.98753e-02\tAbsError: 2.58800e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13728e-05\tAbsError: 3.95446e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.16282e-01\tAbsError: 4.40895e+13\n", - " Region: \"zone_1\"\tRelError: 3.94410e-02\tAbsError: 2.98107e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.94296e-02\tAbsError: 2.58562e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13728e-05\tAbsError: 3.95446e-03\n", - " Region: \"zone_3\"\tRelError: 8.76841e-01\tAbsError: 4.40895e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.38974e-01\tAbsError: 3.05502e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.97980e-01\tAbsError: 1.35393e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.98753e-02\tAbsError: 2.58800e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13728e-05\tAbsError: 3.95446e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.16282e-01\tAbsError: 4.40895e+13\n", - " Region: \"zone_1\"\tRelError: 3.94410e-02\tAbsError: 2.98107e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.94296e-02\tAbsError: 2.58562e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13728e-05\tAbsError: 3.95446e-03\n", - " Region: \"zone_3\"\tRelError: 8.76841e-01\tAbsError: 4.40895e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.38974e-01\tAbsError: 3.05502e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.97980e-01\tAbsError: 1.35393e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.98753e-02\tAbsError: 2.58800e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13728e-05\tAbsError: 3.95446e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.16282e-01\tAbsError: 4.40895e+13\n", - " Region: \"zone_1\"\tRelError: 3.94410e-02\tAbsError: 2.98107e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.94296e-02\tAbsError: 2.58562e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13728e-05\tAbsError: 3.95446e-03\n", - " Region: \"zone_3\"\tRelError: 8.76841e-01\tAbsError: 4.40895e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.38974e-01\tAbsError: 3.05502e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.97980e-01\tAbsError: 1.35393e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.98753e-02\tAbsError: 2.58800e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13728e-05\tAbsError: 3.95446e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.80924e-01\tAbsError: 4.14041e+12\n", - " Region: \"zone_1\"\tRelError: 1.26761e-02\tAbsError: 1.28810e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.26654e-02\tAbsError: 9.16569e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06852e-05\tAbsError: 3.71531e-03\n", - " Region: \"zone_3\"\tRelError: 2.68247e-01\tAbsError: 4.14041e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13343e-01\tAbsError: 1.97531e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.20174e-02\tAbsError: 2.16511e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28765e-02\tAbsError: 9.16574e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06852e-05\tAbsError: 3.71531e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.80924e-01\tAbsError: 4.14041e+12\n", - " Region: \"zone_1\"\tRelError: 1.26761e-02\tAbsError: 1.28810e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.26654e-02\tAbsError: 9.16569e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06852e-05\tAbsError: 3.71531e-03\n", - " Region: \"zone_3\"\tRelError: 2.68247e-01\tAbsError: 4.14041e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13343e-01\tAbsError: 1.97531e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.20174e-02\tAbsError: 2.16511e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28765e-02\tAbsError: 9.16574e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06852e-05\tAbsError: 3.71531e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.80924e-01\tAbsError: 4.14041e+12\n", - " Region: \"zone_1\"\tRelError: 1.26761e-02\tAbsError: 1.28810e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.26654e-02\tAbsError: 9.16569e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06852e-05\tAbsError: 3.71531e-03\n", - " Region: \"zone_3\"\tRelError: 2.68247e-01\tAbsError: 4.14041e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13343e-01\tAbsError: 1.97531e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.20174e-02\tAbsError: 2.16511e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28765e-02\tAbsError: 9.16574e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06852e-05\tAbsError: 3.71531e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.80924e-01\tAbsError: 4.14041e+12\n", - " Region: \"zone_1\"\tRelError: 1.26761e-02\tAbsError: 1.28810e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.26654e-02\tAbsError: 9.16569e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06852e-05\tAbsError: 3.71531e-03\n", - " Region: \"zone_3\"\tRelError: 2.68247e-01\tAbsError: 4.14041e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13343e-01\tAbsError: 1.97531e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.20174e-02\tAbsError: 2.16511e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28765e-02\tAbsError: 9.16574e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06852e-05\tAbsError: 3.71531e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.80924e-01\tAbsError: 4.14041e+12\n", - " Region: \"zone_1\"\tRelError: 1.26761e-02\tAbsError: 1.28810e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.26654e-02\tAbsError: 9.16569e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06852e-05\tAbsError: 3.71531e-03\n", - " Region: \"zone_3\"\tRelError: 2.68247e-01\tAbsError: 4.14041e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13343e-01\tAbsError: 1.97531e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.20174e-02\tAbsError: 2.16511e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28765e-02\tAbsError: 9.16574e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06852e-05\tAbsError: 3.71531e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.24267e-02\tAbsError: 4.44373e+12\n", - " Region: \"zone_1\"\tRelError: 1.55756e-03\tAbsError: 2.71473e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.54980e-03\tAbsError: 2.11332e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.75517e-06\tAbsError: 2.69360e-03\n", - " Region: \"zone_3\"\tRelError: 6.08692e-02\tAbsError: 4.44373e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.73099e-02\tAbsError: 2.36189e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.64950e-04\tAbsError: 2.08185e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.58656e-03\tAbsError: 2.12775e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.75517e-06\tAbsError: 2.69360e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.24267e-02\tAbsError: 4.44373e+12\n", - " Region: \"zone_1\"\tRelError: 1.55756e-03\tAbsError: 2.71473e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.54980e-03\tAbsError: 2.11332e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.75517e-06\tAbsError: 2.69360e-03\n", - " Region: \"zone_3\"\tRelError: 6.08692e-02\tAbsError: 4.44373e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.73099e-02\tAbsError: 2.36189e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.64950e-04\tAbsError: 2.08185e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.58656e-03\tAbsError: 2.12775e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.75517e-06\tAbsError: 2.69360e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.24267e-02\tAbsError: 4.44373e+12\n", - " Region: \"zone_1\"\tRelError: 1.55756e-03\tAbsError: 2.71473e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.54980e-03\tAbsError: 2.11332e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.75517e-06\tAbsError: 2.69360e-03\n", - " Region: \"zone_3\"\tRelError: 6.08692e-02\tAbsError: 4.44373e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.73099e-02\tAbsError: 2.36189e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.64950e-04\tAbsError: 2.08185e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.58656e-03\tAbsError: 2.12775e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.75517e-06\tAbsError: 2.69360e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.24267e-02\tAbsError: 4.44373e+12\n", - " Region: \"zone_1\"\tRelError: 1.55756e-03\tAbsError: 2.71473e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.54980e-03\tAbsError: 2.11332e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.75517e-06\tAbsError: 2.69360e-03\n", - " Region: \"zone_3\"\tRelError: 6.08692e-02\tAbsError: 4.44373e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.73099e-02\tAbsError: 2.36189e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.64950e-04\tAbsError: 2.08185e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.58656e-03\tAbsError: 2.12775e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.75517e-06\tAbsError: 2.69360e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.24267e-02\tAbsError: 4.44373e+12\n", - " Region: \"zone_1\"\tRelError: 1.55756e-03\tAbsError: 2.71473e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.54980e-03\tAbsError: 2.11332e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.75517e-06\tAbsError: 2.69360e-03\n", - " Region: \"zone_3\"\tRelError: 6.08692e-02\tAbsError: 4.44373e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.73099e-02\tAbsError: 2.36189e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.64950e-04\tAbsError: 2.08185e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.58656e-03\tAbsError: 2.12775e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.75517e-06\tAbsError: 2.69360e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.05482e-03\tAbsError: 1.29241e+12\n", - " Region: \"zone_1\"\tRelError: 1.90090e-04\tAbsError: 1.43838e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.89682e-04\tAbsError: 1.76981e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.08079e-07\tAbsError: 1.42068e-04\n", - " Region: \"zone_3\"\tRelError: 8.64726e-04\tAbsError: 1.29241e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98376e-04\tAbsError: 3.47698e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.77560e-04\tAbsError: 9.44709e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.88382e-04\tAbsError: 1.78415e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.08236e-07\tAbsError: 1.42125e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.05482e-03\tAbsError: 1.29241e+12\n", - " Region: \"zone_1\"\tRelError: 1.90090e-04\tAbsError: 1.43838e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.89682e-04\tAbsError: 1.76981e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.08079e-07\tAbsError: 1.42068e-04\n", - " Region: \"zone_3\"\tRelError: 8.64726e-04\tAbsError: 1.29241e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98376e-04\tAbsError: 3.47698e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.77560e-04\tAbsError: 9.44709e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.88382e-04\tAbsError: 1.78415e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.08236e-07\tAbsError: 1.42125e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.05482e-03\tAbsError: 1.29241e+12\n", - " Region: \"zone_1\"\tRelError: 1.90090e-04\tAbsError: 1.43838e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.89682e-04\tAbsError: 1.76981e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.08079e-07\tAbsError: 1.42068e-04\n", - " Region: \"zone_3\"\tRelError: 8.64726e-04\tAbsError: 1.29241e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98376e-04\tAbsError: 3.47698e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.77560e-04\tAbsError: 9.44709e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.88382e-04\tAbsError: 1.78415e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.08236e-07\tAbsError: 1.42125e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.05482e-03\tAbsError: 1.29241e+12\n", - " Region: \"zone_1\"\tRelError: 1.90090e-04\tAbsError: 1.43838e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.89682e-04\tAbsError: 1.76981e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.08079e-07\tAbsError: 1.42068e-04\n", - " Region: \"zone_3\"\tRelError: 8.64726e-04\tAbsError: 1.29241e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98376e-04\tAbsError: 3.47698e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.77560e-04\tAbsError: 9.44709e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.88382e-04\tAbsError: 1.78415e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.08236e-07\tAbsError: 1.42125e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.05482e-03\tAbsError: 1.29241e+12\n", - " Region: \"zone_1\"\tRelError: 1.90090e-04\tAbsError: 1.43838e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.89682e-04\tAbsError: 1.76981e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.08079e-07\tAbsError: 1.42068e-04\n", - " Region: \"zone_3\"\tRelError: 8.64726e-04\tAbsError: 1.29241e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98376e-04\tAbsError: 3.47698e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.77560e-04\tAbsError: 9.44709e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.88382e-04\tAbsError: 1.78415e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.08236e-07\tAbsError: 1.42125e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.83337e-04\tAbsError: 1.21087e+11\n", - " Region: \"zone_1\"\tRelError: 4.90568e-05\tAbsError: 7.60331e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.88381e-05\tAbsError: 6.98456e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18693e-07\tAbsError: 7.59633e-05\n", - " Region: \"zone_3\"\tRelError: 1.34280e-04\tAbsError: 1.21087e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09790e-05\tAbsError: 8.50144e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.08806e-05\tAbsError: 3.60730e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12202e-04\tAbsError: 7.33777e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18747e-07\tAbsError: 7.59802e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.83337e-04\tAbsError: 1.21087e+11\n", - " Region: \"zone_1\"\tRelError: 4.90568e-05\tAbsError: 7.60331e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.88381e-05\tAbsError: 6.98456e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18693e-07\tAbsError: 7.59633e-05\n", - " Region: \"zone_3\"\tRelError: 1.34280e-04\tAbsError: 1.21087e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09790e-05\tAbsError: 8.50144e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.08806e-05\tAbsError: 3.60730e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12202e-04\tAbsError: 7.33777e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18747e-07\tAbsError: 7.59802e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.83337e-04\tAbsError: 1.21087e+11\n", - " Region: \"zone_1\"\tRelError: 4.90568e-05\tAbsError: 7.60331e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.88381e-05\tAbsError: 6.98456e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18693e-07\tAbsError: 7.59633e-05\n", - " Region: \"zone_3\"\tRelError: 1.34280e-04\tAbsError: 1.21087e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09790e-05\tAbsError: 8.50144e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.08806e-05\tAbsError: 3.60730e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12202e-04\tAbsError: 7.33777e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18747e-07\tAbsError: 7.59802e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.83337e-04\tAbsError: 1.21087e+11\n", - " Region: \"zone_1\"\tRelError: 4.90568e-05\tAbsError: 7.60331e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.88381e-05\tAbsError: 6.98456e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18693e-07\tAbsError: 7.59633e-05\n", - " Region: \"zone_3\"\tRelError: 1.34280e-04\tAbsError: 1.21087e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09790e-05\tAbsError: 8.50144e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.08806e-05\tAbsError: 3.60730e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12202e-04\tAbsError: 7.33777e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18747e-07\tAbsError: 7.59802e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.83337e-04\tAbsError: 1.21087e+11\n", - " Region: \"zone_1\"\tRelError: 4.90568e-05\tAbsError: 7.60331e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.88381e-05\tAbsError: 6.98456e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18693e-07\tAbsError: 7.59633e-05\n", - " Region: \"zone_3\"\tRelError: 1.34280e-04\tAbsError: 1.21087e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09790e-05\tAbsError: 8.50144e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.08806e-05\tAbsError: 3.60730e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12202e-04\tAbsError: 7.33777e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18747e-07\tAbsError: 7.59802e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 7.81161e-05\tAbsError: 6.93771e+10\n", - " Region: \"zone_1\"\tRelError: 1.93898e-05\tAbsError: 4.92941e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.93758e-05\tAbsError: 5.79060e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39925e-08\tAbsError: 4.87150e-06\n", - " Region: \"zone_3\"\tRelError: 5.87263e-05\tAbsError: 6.93771e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90534e-06\tAbsError: 2.77459e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.85181e-06\tAbsError: 4.16312e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.49552e-05\tAbsError: 5.84903e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39990e-08\tAbsError: 4.87388e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:52\u001b[0m.\u001b[1;36m670\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:52\u001b[0m.\u001b[1;36m670\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.21250000000000002\u001b[0m \n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 7.81161e-05\tAbsError: 6.93771e+10\n", - " Region: \"zone_1\"\tRelError: 1.93898e-05\tAbsError: 4.92941e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.93758e-05\tAbsError: 5.79060e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39925e-08\tAbsError: 4.87150e-06\n", - " Region: \"zone_3\"\tRelError: 5.87263e-05\tAbsError: 6.93771e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90534e-06\tAbsError: 2.77459e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.85181e-06\tAbsError: 4.16312e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.49552e-05\tAbsError: 5.84903e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39990e-08\tAbsError: 4.87388e-06\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Iteration: 7\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 7.81161e-05\tAbsError: 6.93771e+10\n", - " Region: \"zone_1\"\tRelError: 1.93898e-05\tAbsError: 4.92941e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.93758e-05\tAbsError: 5.79060e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39925e-08\tAbsError: 4.87150e-06\n", - " Region: \"zone_3\"\tRelError: 5.87263e-05\tAbsError: 6.93771e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90534e-06\tAbsError: 2.77459e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.85181e-06\tAbsError: 4.16312e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.49552e-05\tAbsError: 5.84903e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39990e-08\tAbsError: 4.87388e-06\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Iteration: 7\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - " Device: \"device\"\tRelError: 7.81161e-05\tAbsError: 6.93771e+10\n", - " Region: \"zone_1\"\tRelError: 1.93898e-05\tAbsError: 4.92941e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.93758e-05\tAbsError: 5.79060e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39925e-08\tAbsError: 4.87150e-06\n", - " Region: \"zone_3\"\tRelError: 5.87263e-05\tAbsError: 6.93771e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90534e-06\tAbsError: 2.77459e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.85181e-06\tAbsError: 4.16312e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.49552e-05\tAbsError: 5.84903e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39990e-08\tAbsError: 4.87388e-06\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 7.81161e-05\tAbsError: 6.93771e+10\n", - " Region: \"zone_1\"\tRelError: 1.93898e-05\tAbsError: 4.92941e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.93758e-05\tAbsError: 5.79060e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39925e-08\tAbsError: 4.87150e-06\n", - " Region: \"zone_3\"\tRelError: 5.87263e-05\tAbsError: 6.93771e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90534e-06\tAbsError: 2.77459e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.85181e-06\tAbsError: 4.16312e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.49552e-05\tAbsError: 5.84903e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39990e-08\tAbsError: 4.87388e-06\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:52\u001b[0m.\u001b[1;36m793\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:52\u001b[0m.\u001b[1;36m793\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.21000000000000002\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:52\u001b[0m.\u001b[1;36m796\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.225\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:52\u001b[0m.\u001b[1;36m798\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.22\u001b[0m \n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:34:52\u001b[0m.\u001b[1;36m862\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: 0.2\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "number of equations 31816\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.53879e+00\tAbsError: 9.39205e+15\n", - " Region: \"zone_1\"\tRelError: 1.86269e+00\tAbsError: 4.34098e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86269e+00\tAbsError: 4.34059e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10402e-08\tAbsError: 3.83862e-06\n", - " Region: \"zone_3\"\tRelError: 1.67610e+00\tAbsError: 9.39205e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.89767e-01\tAbsError: 5.25395e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.89699e-01\tAbsError: 4.13810e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.66371e-02\tAbsError: 4.34059e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10406e-08\tAbsError: 3.83883e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 4.28200e+00\tAbsError: 1.04356e+16\n", - " Region: \"zone_1\"\tRelError: 2.57025e+00\tAbsError: 4.56493e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.57025e+00\tAbsError: 4.56455e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10402e-08\tAbsError: 3.83862e-06\n", - " Region: \"zone_3\"\tRelError: 1.71175e+00\tAbsError: 1.04356e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.06727e-01\tAbsError: 5.83772e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.06663e-01\tAbsError: 4.59788e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.83590e-02\tAbsError: 4.56455e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10406e-08\tAbsError: 3.83883e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.56710e+00\tAbsError: 9.18334e+15\n", - " Region: \"zone_1\"\tRelError: 1.89994e+00\tAbsError: 4.29376e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.89994e+00\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10402e-08\tAbsError: 3.83862e-06\n", - " Region: \"zone_3\"\tRelError: 1.66716e+00\tAbsError: 9.18334e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86011e-01\tAbsError: 5.13720e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.85942e-01\tAbsError: 4.04614e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.52021e-02\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10406e-08\tAbsError: 3.83883e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.93684e+00\tAbsError: 1.00182e+16\n", - " Region: \"zone_1\"\tRelError: 2.23741e+00\tAbsError: 4.47766e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.23741e+00\tAbsError: 4.47728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10402e-08\tAbsError: 3.83862e-06\n", - " Region: \"zone_3\"\tRelError: 1.69943e+00\tAbsError: 1.00182e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.00282e-01\tAbsError: 5.60422e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.00217e-01\tAbsError: 4.41397e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.89279e-02\tAbsError: 4.47728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10406e-08\tAbsError: 3.83883e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.71665e+00\tAbsError: 8.34849e+15\n", - " Region: \"zone_1\"\tRelError: 2.08783e+00\tAbsError: 4.09581e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.08783e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10402e-08\tAbsError: 3.83862e-06\n", - " Region: \"zone_3\"\tRelError: 1.62882e+00\tAbsError: 8.34849e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69544e-01\tAbsError: 4.67018e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69471e-01\tAbsError: 3.67831e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.98079e-02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10406e-08\tAbsError: 3.83883e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.58790e+00\tAbsError: 3.66802e+14\n", - " Region: \"zone_1\"\tRelError: 7.55897e-02\tAbsError: 1.00192e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 7.53983e-02\tAbsError: 3.36593e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91386e-04\tAbsError: 6.65330e-02\n", - " Region: \"zone_3\"\tRelError: 1.51231e+00\tAbsError: 3.66802e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.73823e-01\tAbsError: 1.90008e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69654e-01\tAbsError: 1.76794e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.86418e-02\tAbsError: 3.36598e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91386e-04\tAbsError: 6.65330e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.57053e+00\tAbsError: 3.51165e+14\n", - " Region: \"zone_1\"\tRelError: 7.27979e-02\tAbsError: 9.81633e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.26108e-02\tAbsError: 3.31004e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.87156e-04\tAbsError: 6.50629e-02\n", - " Region: \"zone_3\"\tRelError: 1.49773e+00\tAbsError: 3.51165e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67194e-01\tAbsError: 1.81651e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.62787e-01\tAbsError: 1.69514e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.75645e-02\tAbsError: 3.31009e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.87156e-04\tAbsError: 6.50629e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.66284e+00\tAbsError: 4.50140e+14\n", - " Region: \"zone_1\"\tRelError: 8.50588e-02\tAbsError: 1.10173e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 8.48463e-02\tAbsError: 3.63158e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.12460e-04\tAbsError: 7.38576e-02\n", - " Region: \"zone_3\"\tRelError: 1.57778e+00\tAbsError: 4.50140e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.04046e-01\tAbsError: 2.35006e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.99754e-01\tAbsError: 2.15134e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.37676e-02\tAbsError: 3.63162e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.12460e-04\tAbsError: 7.38576e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.63292e+00\tAbsError: 4.15375e+14\n", - " Region: \"zone_1\"\tRelError: 7.97441e-02\tAbsError: 1.06260e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 7.95399e-02\tAbsError: 3.52797e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.04182e-04\tAbsError: 7.09806e-02\n", - " Region: \"zone_3\"\tRelError: 1.55318e+00\tAbsError: 4.15375e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.92034e-01\tAbsError: 2.15992e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.89172e-01\tAbsError: 1.99383e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.17701e-02\tAbsError: 3.52802e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.04182e-04\tAbsError: 7.09806e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.50135e+00\tAbsError: 2.91709e+14\n", - " Region: \"zone_1\"\tRelError: 6.56152e-02\tAbsError: 8.99308e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.54450e-02\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70194e-04\tAbsError: 5.91672e-02\n", - " Region: \"zone_3\"\tRelError: 1.43573e+00\tAbsError: 2.91709e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37692e-01\tAbsError: 1.49990e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32867e-01\tAbsError: 1.41719e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.50013e-02\tAbsError: 3.07641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70194e-04\tAbsError: 5.91672e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.07805e+00\tAbsError: 4.45719e+13\n", - " Region: \"zone_1\"\tRelError: 5.25512e-02\tAbsError: 3.19171e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.25338e-02\tAbsError: 2.58938e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73262e-05\tAbsError: 6.02337e-03\n", - " Region: \"zone_3\"\tRelError: 1.02550e+00\tAbsError: 4.45719e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.97356e-01\tAbsError: 3.25945e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.75305e-01\tAbsError: 1.19774e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.28239e-02\tAbsError: 2.58580e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73262e-05\tAbsError: 6.02337e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.20178e+00\tAbsError: 5.38350e+13\n", - " Region: \"zone_1\"\tRelError: 5.65078e-02\tAbsError: 3.29649e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.64872e-02\tAbsError: 2.58169e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.05615e-05\tAbsError: 7.14795e-03\n", - " Region: \"zone_3\"\tRelError: 1.14528e+00\tAbsError: 5.38350e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.46674e-01\tAbsError: 3.92893e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.41993e-01\tAbsError: 1.45456e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.65882e-02\tAbsError: 2.58050e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.05615e-05\tAbsError: 7.14795e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.05165e+00\tAbsError: 4.28489e+13\n", - " Region: \"zone_1\"\tRelError: 5.19381e-02\tAbsError: 3.16771e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.19214e-02\tAbsError: 2.58745e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.66912e-05\tAbsError: 5.80261e-03\n", - " Region: \"zone_3\"\tRelError: 9.99707e-01\tAbsError: 4.28489e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.86538e-01\tAbsError: 3.13493e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.61055e-01\tAbsError: 1.14996e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.20976e-02\tAbsError: 2.58960e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.66912e-05\tAbsError: 5.80261e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.15262e+00\tAbsError: 5.01447e+13\n", - " Region: \"zone_1\"\tRelError: 5.48144e-02\tAbsError: 3.25839e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.47949e-02\tAbsError: 2.58232e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94474e-05\tAbsError: 6.76072e-03\n", - " Region: \"zone_3\"\tRelError: 1.09780e+00\tAbsError: 5.01447e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.27983e-01\tAbsError: 3.66370e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.14663e-01\tAbsError: 1.35077e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.51367e-02\tAbsError: 2.58961e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94474e-05\tAbsError: 6.76072e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.34092e-01\tAbsError: 3.63172e+13\n", - " Region: \"zone_1\"\tRelError: 4.74089e-02\tAbsError: 3.08414e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.73947e-02\tAbsError: 2.58899e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42429e-05\tAbsError: 4.95155e-03\n", - " Region: \"zone_3\"\tRelError: 8.86683e-01\tAbsError: 3.63172e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40041e-01\tAbsError: 2.66176e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.98904e-01\tAbsError: 9.69965e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.77236e-02\tAbsError: 2.58388e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42429e-05\tAbsError: 4.95155e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.84829e-01\tAbsError: 3.38152e+12\n", - " Region: \"zone_1\"\tRelError: 2.22384e-02\tAbsError: 1.67900e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.22278e-02\tAbsError: 1.31069e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.05945e-05\tAbsError: 3.68307e-03\n", - " Region: \"zone_3\"\tRelError: 3.62591e-01\tAbsError: 3.38152e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.57689e-01\tAbsError: 2.18351e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.23925e-02\tAbsError: 1.19802e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.24992e-02\tAbsError: 1.31070e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.05945e-05\tAbsError: 3.68307e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.16809e-01\tAbsError: 4.52158e+12\n", - " Region: \"zone_1\"\tRelError: 3.08342e-02\tAbsError: 2.17664e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.08224e-02\tAbsError: 1.76840e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.17434e-05\tAbsError: 4.08239e-03\n", - " Region: \"zone_3\"\tRelError: 4.85974e-01\tAbsError: 4.52158e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.20160e-01\tAbsError: 2.93839e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.34635e-01\tAbsError: 1.58320e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.11676e-02\tAbsError: 1.76841e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.17434e-05\tAbsError: 4.08239e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.59925e-01\tAbsError: 3.29811e+12\n", - " Region: \"zone_1\"\tRelError: 2.06968e-02\tAbsError: 1.57226e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06868e-02\tAbsError: 1.22658e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.94379e-06\tAbsError: 3.45688e-03\n", - " Region: \"zone_3\"\tRelError: 3.39228e-01\tAbsError: 3.29811e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.44822e-01\tAbsError: 2.09106e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.34528e-02\tAbsError: 1.20705e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.09440e-02\tAbsError: 1.22658e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.94484e-06\tAbsError: 3.45731e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.63237e-01\tAbsError: 3.89858e+12\n", - " Region: \"zone_1\"\tRelError: 2.72186e-02\tAbsError: 1.97367e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.72072e-02\tAbsError: 1.57809e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13791e-05\tAbsError: 3.95578e-03\n", - " Region: \"zone_3\"\tRelError: 4.36018e-01\tAbsError: 3.89858e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.95865e-01\tAbsError: 2.60793e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.12619e-01\tAbsError: 1.29064e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.75223e-02\tAbsError: 1.57810e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13791e-05\tAbsError: 3.95578e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.84661e-01\tAbsError: 3.60663e+12\n", - " Region: \"zone_1\"\tRelError: 1.51217e-02\tAbsError: 1.24487e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51123e-02\tAbsError: 9.16566e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.44365e-06\tAbsError: 3.28306e-03\n", - " Region: \"zone_3\"\tRelError: 2.69539e-01\tAbsError: 3.60663e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12296e-01\tAbsError: 2.19846e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.19182e-02\tAbsError: 1.40817e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.53153e-02\tAbsError: 9.16570e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.44365e-06\tAbsError: 3.28306e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.84170e-02\tAbsError: 2.98589e+12\n", - " Region: \"zone_1\"\tRelError: 1.01074e-03\tAbsError: 2.47043e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00364e-03\tAbsError: 2.37290e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.10666e-06\tAbsError: 2.46806e-03\n", - " Region: \"zone_3\"\tRelError: 8.74063e-02\tAbsError: 2.98589e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.43433e-02\tAbsError: 1.88413e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.78684e-04\tAbsError: 1.10176e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.77718e-03\tAbsError: 2.58380e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.10666e-06\tAbsError: 2.46806e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.28938e-01\tAbsError: 3.34909e+12\n", - " Region: \"zone_1\"\tRelError: 8.90961e-04\tAbsError: 2.97123e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 8.82412e-04\tAbsError: 2.22756e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.54922e-06\tAbsError: 2.96901e-03\n", - " Region: \"zone_3\"\tRelError: 1.28047e-01\tAbsError: 3.34909e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24383e-01\tAbsError: 2.03710e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.91050e-04\tAbsError: 1.31199e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.06484e-03\tAbsError: 2.23835e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.54922e-06\tAbsError: 2.96901e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.12077e-01\tAbsError: 3.22720e+12\n", - " Region: \"zone_1\"\tRelError: 9.34001e-04\tAbsError: 2.75666e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 9.26069e-04\tAbsError: 2.01820e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.93193e-06\tAbsError: 2.75464e-03\n", - " Region: \"zone_3\"\tRelError: 1.11143e-01\tAbsError: 3.22720e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07769e-01\tAbsError: 1.97456e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.93688e-04\tAbsError: 1.25263e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.97332e-03\tAbsError: 2.09794e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.93193e-06\tAbsError: 2.75464e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.15555e-02\tAbsError: 2.83273e+12\n", - " Region: \"zone_1\"\tRelError: 9.61737e-04\tAbsError: 2.53661e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 9.54438e-04\tAbsError: 1.76901e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.29893e-06\tAbsError: 2.53484e-03\n", - " Region: \"zone_3\"\tRelError: 8.05938e-02\tAbsError: 2.83273e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77894e-02\tAbsError: 1.76357e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.00697e-04\tAbsError: 1.06916e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.59639e-03\tAbsError: 1.83626e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.29893e-06\tAbsError: 2.53484e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.15193e-02\tAbsError: 3.32533e+12\n", - " Region: \"zone_1\"\tRelError: 1.39861e-03\tAbsError: 2.06499e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39271e-03\tAbsError: 1.45908e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.90395e-06\tAbsError: 2.05040e-03\n", - " Region: \"zone_3\"\tRelError: 6.01207e-02\tAbsError: 3.32533e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.70408e-02\tAbsError: 2.05872e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.81905e-04\tAbsError: 1.26661e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49208e-03\tAbsError: 1.52370e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.90395e-06\tAbsError: 2.05040e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.83872e-04\tAbsError: 1.20586e+12\n", - " Region: \"zone_1\"\tRelError: 1.08141e-04\tAbsError: 1.50843e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07713e-04\tAbsError: 1.73879e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.28324e-07\tAbsError: 1.49104e-04\n", - " Region: \"zone_3\"\tRelError: 6.75731e-04\tAbsError: 1.20586e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47748e-04\tAbsError: 3.09981e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.43876e-04\tAbsError: 8.95875e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.83677e-04\tAbsError: 1.73899e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.28505e-07\tAbsError: 1.49169e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.24807e-04\tAbsError: 1.44810e+12\n", - " Region: \"zone_1\"\tRelError: 1.11443e-04\tAbsError: 1.61914e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10984e-04\tAbsError: 2.10195e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.59089e-07\tAbsError: 1.59812e-04\n", - " Region: \"zone_3\"\tRelError: 8.13364e-04\tAbsError: 1.44810e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68603e-04\tAbsError: 3.67953e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.69322e-04\tAbsError: 1.08015e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.74980e-04\tAbsError: 2.10266e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.59279e-07\tAbsError: 1.59881e-04\n", - "Iteration: 5\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.98965e-04\tAbsError: 1.24659e+12\n", - " Region: \"zone_1\"\tRelError: 1.38362e-04\tAbsError: 1.35908e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37977e-04\tAbsError: 1.78872e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.85277e-07\tAbsError: 1.34119e-04\n", - " Region: \"zone_3\"\tRelError: 7.60603e-04\tAbsError: 1.24659e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53741e-04\tAbsError: 3.31806e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.52332e-04\tAbsError: 9.14787e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.54145e-04\tAbsError: 1.78892e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.85437e-07\tAbsError: 1.34177e-04\n", - " Device: \"device\"\tRelError: 8.54154e-04\tAbsError: 1.34353e+12\n", - " Region: \"zone_1\"\tRelError: 1.07529e-04\tAbsError: 1.59272e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07078e-04\tAbsError: 1.94603e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.51946e-07\tAbsError: 1.57326e-04\n", - " Region: \"zone_3\"\tRelError: 7.46624e-04\tAbsError: 1.34353e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.58803e-04\tAbsError: 3.42023e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.58116e-04\tAbsError: 1.00151e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.29253e-04\tAbsError: 1.94645e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.52133e-07\tAbsError: 1.57394e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.41619e-04\tAbsError: 9.91737e+11\n", - " Region: \"zone_1\"\tRelError: 9.96328e-05\tAbsError: 1.41218e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.92313e-05\tAbsError: 1.43598e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.01548e-07\tAbsError: 1.39782e-04\n", - " Region: \"zone_3\"\tRelError: 5.41987e-04\tAbsError: 9.91737e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33851e-04\tAbsError: 2.52743e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.19510e-04\tAbsError: 7.38994e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88224e-04\tAbsError: 1.43642e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.01703e-07\tAbsError: 1.39838e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.88505e-04\tAbsError: 1.27858e+11\n", - " Region: \"zone_1\"\tRelError: 4.26064e-05\tAbsError: 6.82507e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.24101e-05\tAbsError: 7.45728e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.96297e-07\tAbsError: 6.81762e-05\n", - " Region: \"zone_3\"\tRelError: 1.45898e-04\tAbsError: 1.27858e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01716e-05\tAbsError: 8.89126e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.00818e-05\tAbsError: 3.89454e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.25448e-04\tAbsError: 7.84802e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.96297e-07\tAbsError: 6.81762e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.88637e-04\tAbsError: 1.33871e+11\n", - " Region: \"zone_1\"\tRelError: 3.67778e-05\tAbsError: 8.30989e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.65388e-05\tAbsError: 7.88474e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.39039e-07\tAbsError: 8.30200e-05\n", - " Region: \"zone_3\"\tRelError: 1.51859e-04\tAbsError: 1.33871e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03403e-05\tAbsError: 9.56490e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.02501e-05\tAbsError: 3.82221e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31030e-04\tAbsError: 8.29792e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.39042e-07\tAbsError: 8.30200e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.91512e-04\tAbsError: 1.33302e+11\n", - " Region: \"zone_1\"\tRelError: 3.95318e-05\tAbsError: 7.64793e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.93118e-05\tAbsError: 7.81883e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19981e-07\tAbsError: 7.64012e-05\n", - " Region: \"zone_3\"\tRelError: 1.51980e-04\tAbsError: 1.33302e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04356e-05\tAbsError: 9.39778e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03447e-05\tAbsError: 3.93238e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.30980e-04\tAbsError: 8.22844e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19981e-07\tAbsError: 7.64012e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.63404e-04\tAbsError: 1.13118e+11\n", - " Region: \"zone_1\"\tRelError: 3.79692e-05\tAbsError: 7.25340e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.77606e-05\tAbsError: 6.55674e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.08655e-07\tAbsError: 7.24685e-05\n", - " Region: \"zone_3\"\tRelError: 1.25435e-04\tAbsError: 1.13118e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.83920e-06\tAbsError: 8.03454e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.75701e-06\tAbsError: 3.27729e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07630e-04\tAbsError: 6.89930e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.08701e-07\tAbsError: 7.24825e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.93092e-04\tAbsError: 1.20956e+11\n", - " Region: \"zone_1\"\tRelError: 5.19796e-05\tAbsError: 5.49717e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.18215e-05\tAbsError: 7.13664e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.58071e-07\tAbsError: 5.49003e-05\n", - " Region: \"zone_3\"\tRelError: 1.41112e-04\tAbsError: 1.20956e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98278e-06\tAbsError: 8.30737e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.89193e-06\tAbsError: 3.78825e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21079e-04\tAbsError: 7.51109e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.58071e-07\tAbsError: 5.49003e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 6.02240e-05\tAbsError: 6.13809e+10\n", - " Region: \"zone_1\"\tRelError: 1.22214e-05\tAbsError: 5.85783e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.22048e-05\tAbsError: 5.52827e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.66684e-08\tAbsError: 5.80254e-06\n", - " Region: \"zone_3\"\tRelError: 4.80026e-05\tAbsError: 6.13809e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.42789e-06\tAbsError: 2.30389e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.38225e-06\tAbsError: 3.83421e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.71758e-05\tAbsError: 5.53762e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.66761e-08\tAbsError: 5.80531e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:04\u001b[0m.\u001b[1;36m201\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:04\u001b[0m.\u001b[1;36m201\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.32500000000000007\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 7.25073e-05\tAbsError: 7.50435e+10\n", - " Region: \"zone_1\"\tRelError: 1.27392e-05\tAbsError: 5.72098e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.27230e-05\tAbsError: 6.77997e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62395e-08\tAbsError: 5.65318e-06\n", - " Region: \"zone_3\"\tRelError: 5.97680e-05\tAbsError: 7.50435e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.54092e-06\tAbsError: 2.83626e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.48691e-06\tAbsError: 4.66809e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.67240e-05\tAbsError: 6.78612e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62475e-08\tAbsError: 5.65608e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 6.64634e-05\tAbsError: 6.88445e+10\n", - " Region: \"zone_1\"\tRelError: 1.23151e-05\tAbsError: 5.93606e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.22982e-05\tAbsError: 6.22343e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.68733e-08\tAbsError: 5.87382e-06\n", - " Region: \"zone_3\"\tRelError: 5.41483e-05\tAbsError: 6.88445e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.03522e-06\tAbsError: 2.58299e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.98503e-06\tAbsError: 4.30146e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.21112e-05\tAbsError: 6.23101e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.68809e-08\tAbsError: 5.87661e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 6.96553e-05\tAbsError: 6.62371e+10\n", - " Region: \"zone_1\"\tRelError: 1.48815e-05\tAbsError: 4.57528e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.48685e-05\tAbsError: 5.85248e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29748e-08\tAbsError: 4.51675e-06\n", - " Region: \"zone_3\"\tRelError: 5.47738e-05\tAbsError: 6.62371e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.88342e-06\tAbsError: 2.60354e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.83402e-06\tAbsError: 4.02017e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.30433e-05\tAbsError: 5.86384e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29813e-08\tAbsError: 4.51913e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:04\u001b[0m.\u001b[1;36m442\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.35\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:04\u001b[0m.\u001b[1;36m478\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: \u001b[0m \n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:04\u001b[0m.\u001b[1;36m478\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.33999999999999997\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:04\u001b[0m.\u001b[1;36m494\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: \u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:04\u001b[0m.\u001b[1;36m494\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.32000000000000006\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.80808e-05\tAbsError: 4.88682e+10\n", - " Region: \"zone_1\"\tRelError: 1.14733e-05\tAbsError: 6.01729e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14561e-05\tAbsError: 4.42617e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71583e-08\tAbsError: 5.97303e-06\n", - " Region: \"zone_3\"\tRelError: 3.66076e-05\tAbsError: 4.88682e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37895e-06\tAbsError: 1.78097e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.34162e-06\tAbsError: 3.10585e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78698e-05\tAbsError: 4.43739e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71659e-08\tAbsError: 5.97583e-06\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:04\u001b[0m.\u001b[1;36m657\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:04\u001b[0m.\u001b[1;36m657\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.52071e+00\tAbsError: 9.31230e+15\n", - " Region: \"zone_1\"\tRelError: 6.83668e+00\tAbsError: 4.34092e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.83668e+00\tAbsError: 4.34059e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.31980e-09\tAbsError: 3.23984e-06\n", - " Region: \"zone_3\"\tRelError: 1.68403e+00\tAbsError: 9.31230e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.89855e-01\tAbsError: 5.38690e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.89836e-01\tAbsError: 3.92539e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04337e-01\tAbsError: 4.34059e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.31980e-09\tAbsError: 3.23984e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 9.02508e+00\tAbsError: 1.03436e+16\n", - " Region: \"zone_1\"\tRelError: 7.30011e+00\tAbsError: 4.56495e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.30011e+00\tAbsError: 4.56455e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.16793e-08\tAbsError: 4.06001e-06\n", - " Region: \"zone_3\"\tRelError: 1.72497e+00\tAbsError: 1.03436e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.06813e-01\tAbsError: 6.00379e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.06796e-01\tAbsError: 4.33979e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11360e-01\tAbsError: 4.56455e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.16793e-08\tAbsError: 4.06001e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.11166e+00\tAbsError: 9.93116e+15\n", - " Region: \"zone_1\"\tRelError: 4.40001e+00\tAbsError: 4.47764e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.40001e+00\tAbsError: 4.47728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.05684e-08\tAbsError: 3.67386e-06\n", - " Region: \"zone_3\"\tRelError: 1.71166e+00\tAbsError: 9.93116e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.00369e-01\tAbsError: 5.75673e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.00352e-01\tAbsError: 4.17443e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10937e-01\tAbsError: 4.47728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.05684e-08\tAbsError: 3.67386e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.13208e+01\tAbsError: 9.10596e+15\n", - " Region: \"zone_1\"\tRelError: 9.64710e+00\tAbsError: 4.29375e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.64710e+00\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.05109e-08\tAbsError: 3.65393e-06\n", - " Region: \"zone_3\"\tRelError: 1.67375e+00\tAbsError: 9.10596e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86100e-01\tAbsError: 5.26385e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.86081e-01\tAbsError: 3.84211e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01565e-01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.05112e-08\tAbsError: 3.65410e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.29649e+01\tAbsError: 8.28032e+15\n", - " Region: \"zone_1\"\tRelError: 1.13261e+01\tAbsError: 4.09567e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13261e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.18797e-09\tAbsError: 2.49640e-06\n", - " Region: \"zone_3\"\tRelError: 1.63880e+00\tAbsError: 8.28032e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69633e-01\tAbsError: 4.77284e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.50748e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.95556e-02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.18889e-09\tAbsError: 2.49675e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.62246e+00\tAbsError: 3.65433e+14\n", - " Region: \"zone_1\"\tRelError: 9.44049e-02\tAbsError: 9.44380e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.42301e-02\tAbsError: 3.36593e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.74863e-04\tAbsError: 6.07788e-02\n", - " Region: \"zone_3\"\tRelError: 1.52805e+00\tAbsError: 3.65433e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.74362e-01\tAbsError: 2.33112e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69900e-01\tAbsError: 1.32321e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.36162e-02\tAbsError: 3.36597e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.74863e-04\tAbsError: 6.07788e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.67898e+00\tAbsError: 4.16529e+14\n", - " Region: \"zone_1\"\tRelError: 1.08583e-01\tAbsError: 9.95281e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08398e-01\tAbsError: 3.52797e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84850e-04\tAbsError: 6.42484e-02\n", - " Region: \"zone_3\"\tRelError: 1.57040e+00\tAbsError: 4.16529e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.92917e-01\tAbsError: 2.71892e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.88893e-01\tAbsError: 1.44637e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.84045e-02\tAbsError: 3.52801e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84850e-04\tAbsError: 6.42484e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.76174e+00\tAbsError: 4.53186e+14\n", - " Region: \"zone_1\"\tRelError: 1.66138e-01\tAbsError: 1.02791e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65947e-01\tAbsError: 3.63157e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91260e-04\tAbsError: 6.64756e-02\n", - " Region: \"zone_3\"\tRelError: 1.59560e+00\tAbsError: 4.53186e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.04551e-01\tAbsError: 3.00667e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.00035e-01\tAbsError: 1.52519e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.08233e-02\tAbsError: 3.63162e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91260e-04\tAbsError: 6.64756e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.60555e+00\tAbsError: 3.49070e+14\n", - " Region: \"zone_1\"\tRelError: 9.22733e-02\tAbsError: 9.26848e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.21018e-02\tAbsError: 3.31004e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71426e-04\tAbsError: 5.95845e-02\n", - " Region: \"zone_3\"\tRelError: 1.51327e+00\tAbsError: 3.49070e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67916e-01\tAbsError: 2.20940e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.62728e-01\tAbsError: 1.28130e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.24571e-02\tAbsError: 3.31008e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71426e-04\tAbsError: 5.95845e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.56865e+00\tAbsError: 2.86625e+14\n", - " Region: \"zone_1\"\tRelError: 1.21045e-01\tAbsError: 8.55195e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20888e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", - " Region: \"zone_3\"\tRelError: 1.44761e+00\tAbsError: 2.86625e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38556e-01\tAbsError: 1.75436e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32332e-01\tAbsError: 1.11189e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.65613e-02\tAbsError: 3.07640e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.11363e+00\tAbsError: 5.96545e+13\n", - " Region: \"zone_1\"\tRelError: 6.75695e-02\tAbsError: 3.29339e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.75487e-02\tAbsError: 2.57042e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.07999e-05\tAbsError: 7.22975e-03\n", - " Region: \"zone_3\"\tRelError: 1.04606e+00\tAbsError: 5.96545e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.97798e-01\tAbsError: 4.25095e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.80228e-01\tAbsError: 1.71450e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.80105e-02\tAbsError: 2.58162e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.07999e-05\tAbsError: 7.22975e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.19514e+00\tAbsError: 7.59573e+13\n", - " Region: \"zone_1\"\tRelError: 7.24050e-02\tAbsError: 3.39834e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.23816e-02\tAbsError: 2.58364e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.34393e-05\tAbsError: 8.14699e-03\n", - " Region: \"zone_3\"\tRelError: 1.12273e+00\tAbsError: 7.59573e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.28455e-01\tAbsError: 5.29748e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.21700e-01\tAbsError: 2.29824e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.25511e-02\tAbsError: 2.58828e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.34393e-05\tAbsError: 8.14699e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.24543e+00\tAbsError: 8.44995e+13\n", - " Region: \"zone_1\"\tRelError: 7.48143e-02\tAbsError: 3.41274e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.47891e-02\tAbsError: 2.53557e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.52369e-05\tAbsError: 8.77172e-03\n", - " Region: \"zone_3\"\tRelError: 1.17061e+00\tAbsError: 8.44995e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.47366e-01\tAbsError: 5.66747e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.48284e-01\tAbsError: 2.78248e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.49367e-02\tAbsError: 2.57734e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.52369e-05\tAbsError: 8.77172e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.08576e+00\tAbsError: 5.42272e+13\n", - " Region: \"zone_1\"\tRelError: 6.57302e-02\tAbsError: 3.25935e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.57103e-02\tAbsError: 2.56636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.99371e-05\tAbsError: 6.92989e-03\n", - " Region: \"zone_3\"\tRelError: 1.02003e+00\tAbsError: 5.42272e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.86826e-01\tAbsError: 3.87041e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.66488e-01\tAbsError: 1.55232e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.66923e-02\tAbsError: 2.58213e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.99371e-05\tAbsError: 6.92989e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.63437e-01\tAbsError: 3.66677e+13\n", - " Region: \"zone_1\"\tRelError: 5.93231e-02\tAbsError: 3.16919e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.93064e-02\tAbsError: 2.58707e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", - " Region: \"zone_3\"\tRelError: 9.04114e-01\tAbsError: 3.66677e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40101e-01\tAbsError: 2.63702e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.04471e-01\tAbsError: 1.02975e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95256e-02\tAbsError: 2.58992e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.00848e-01\tAbsError: 1.07895e+13\n", - " Region: \"zone_1\"\tRelError: 2.84831e-02\tAbsError: 1.61431e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.84743e-02\tAbsError: 1.31069e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.73558e-06\tAbsError: 3.03626e-03\n", - " Region: \"zone_3\"\tRelError: 3.72365e-01\tAbsError: 1.07895e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.56914e-01\tAbsError: 5.23438e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.67239e-02\tAbsError: 5.55513e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.87187e-02\tAbsError: 1.31069e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.73893e-06\tAbsError: 3.03751e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.85588e-01\tAbsError: 1.61066e+13\n", - " Region: \"zone_1\"\tRelError: 3.56563e-02\tAbsError: 1.89664e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.56471e-02\tAbsError: 1.57809e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.16511e-06\tAbsError: 3.18549e-03\n", - " Region: \"zone_3\"\tRelError: 4.49932e-01\tAbsError: 1.61066e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.95059e-01\tAbsError: 8.36463e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.18941e-01\tAbsError: 7.74195e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.59228e-02\tAbsError: 1.57809e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.16867e-06\tAbsError: 3.18682e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.45003e-01\tAbsError: 2.12588e+13\n", - " Region: \"zone_1\"\tRelError: 4.10214e-02\tAbsError: 2.09861e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.10119e-02\tAbsError: 1.76839e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.50094e-06\tAbsError: 3.30217e-03\n", - " Region: \"zone_3\"\tRelError: 5.03981e-01\tAbsError: 2.12588e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.20049e-01\tAbsError: 1.15224e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.42587e-01\tAbsError: 9.73636e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.13362e-02\tAbsError: 1.76840e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.50472e-06\tAbsError: 3.30358e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.73642e-01\tAbsError: 9.69815e+12\n", - " Region: \"zone_1\"\tRelError: 2.63134e-02\tAbsError: 1.52684e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.63048e-02\tAbsError: 1.22657e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.63884e-06\tAbsError: 3.00266e-03\n", - " Region: \"zone_3\"\tRelError: 3.47328e-01\tAbsError: 9.69815e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.43903e-01\tAbsError: 4.70596e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.68748e-02\tAbsError: 4.99219e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.65414e-02\tAbsError: 1.22658e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.64176e-06\tAbsError: 3.00375e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.93334e-01\tAbsError: 6.56738e+12\n", - " Region: \"zone_1\"\tRelError: 1.86981e-02\tAbsError: 1.19586e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86900e-02\tAbsError: 9.16562e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03535e-06\tAbsError: 2.79297e-03\n", - " Region: \"zone_3\"\tRelError: 2.74636e-01\tAbsError: 6.56738e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11907e-01\tAbsError: 3.29549e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.38500e-02\tAbsError: 3.27189e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88710e-02\tAbsError: 9.16566e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03753e-06\tAbsError: 2.79381e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.82821e-02\tAbsError: 2.68252e+12\n", - " Region: \"zone_1\"\tRelError: 5.25129e-04\tAbsError: 1.93840e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.19570e-04\tAbsError: 8.03188e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.55898e-06\tAbsError: 1.93037e-03\n", - " Region: \"zone_3\"\tRelError: 8.77570e-02\tAbsError: 2.68252e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.43925e-02\tAbsError: 1.75308e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.55318e-04\tAbsError: 9.29440e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.50363e-03\tAbsError: 8.78638e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.55898e-06\tAbsError: 1.93037e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.11980e-01\tAbsError: 2.98837e+12\n", - " Region: \"zone_1\"\tRelError: 5.60614e-04\tAbsError: 2.14512e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.54465e-04\tAbsError: 1.00063e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.14867e-06\tAbsError: 2.13511e-03\n", - " Region: \"zone_3\"\tRelError: 1.11419e-01\tAbsError: 2.98837e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06867e-01\tAbsError: 1.76788e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.90377e-03\tAbsError: 1.22049e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.64228e-03\tAbsError: 1.04392e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.14867e-06\tAbsError: 2.13511e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.30171e-01\tAbsError: 3.28068e+12\n", - " Region: \"zone_1\"\tRelError: 5.86889e-04\tAbsError: 2.27696e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.80377e-04\tAbsError: 1.55714e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.51238e-06\tAbsError: 2.26139e-03\n", - " Region: \"zone_3\"\tRelError: 1.29584e-01\tAbsError: 3.28068e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23299e-01\tAbsError: 1.75938e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.53077e-03\tAbsError: 1.52130e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.74781e-03\tAbsError: 1.70018e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.51238e-06\tAbsError: 2.26139e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.13764e-02\tAbsError: 2.60011e+12\n", - " Region: \"zone_1\"\tRelError: 5.15644e-04\tAbsError: 1.86139e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.10306e-04\tAbsError: 7.73509e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.33805e-06\tAbsError: 1.85366e-03\n", - " Region: \"zone_3\"\tRelError: 8.08607e-02\tAbsError: 2.60011e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77471e-02\tAbsError: 1.74501e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.39413e-04\tAbsError: 8.55098e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.46890e-03\tAbsError: 8.53513e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.33805e-06\tAbsError: 1.85366e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.00158e-02\tAbsError: 2.47729e+12\n", - " Region: \"zone_1\"\tRelError: 6.29744e-04\tAbsError: 1.66755e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.24968e-04\tAbsError: 8.94858e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", - " Region: \"zone_3\"\tRelError: 5.93860e-02\tAbsError: 2.47729e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.68115e-02\tAbsError: 1.70064e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.91678e-04\tAbsError: 7.76647e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27809e-03\tAbsError: 9.43816e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.07510e-04\tAbsError: 1.02613e+12\n", - " Region: \"zone_1\"\tRelError: 4.81162e-05\tAbsError: 1.44442e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.77057e-05\tAbsError: 1.54944e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.10523e-07\tAbsError: 1.42893e-04\n", - " Region: \"zone_3\"\tRelError: 4.59393e-04\tAbsError: 1.02613e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.20154e-04\tAbsError: 2.39172e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03494e-04\tAbsError: 7.86956e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.35335e-04\tAbsError: 1.55565e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.10697e-07\tAbsError: 1.42956e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.59692e-04\tAbsError: 9.32961e+11\n", - " Region: \"zone_1\"\tRelError: 4.35244e-05\tAbsError: 1.38312e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.31311e-05\tAbsError: 1.40628e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.93324e-07\tAbsError: 1.36906e-04\n", - " Region: \"zone_3\"\tRelError: 4.16167e-04\tAbsError: 9.32961e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03722e-04\tAbsError: 2.21928e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.61297e-05\tAbsError: 7.11033e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.15922e-04\tAbsError: 1.41248e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.93489e-07\tAbsError: 1.36966e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.38944e-04\tAbsError: 1.08088e+12\n", - " Region: \"zone_1\"\tRelError: 5.57220e-05\tAbsError: 1.49946e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.52959e-05\tAbsError: 1.63142e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.26101e-07\tAbsError: 1.48314e-04\n", - " Region: \"zone_3\"\tRelError: 4.83222e-04\tAbsError: 1.08088e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36277e-04\tAbsError: 2.47335e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.07539e-04\tAbsError: 8.33548e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.38980e-04\tAbsError: 1.63690e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.26280e-07\tAbsError: 1.48379e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.48966e-04\tAbsError: 8.96566e+11\n", - " Region: \"zone_1\"\tRelError: 5.28566e-05\tAbsError: 1.37320e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.24660e-05\tAbsError: 1.35084e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.90631e-07\tAbsError: 1.35969e-04\n", - " Region: \"zone_3\"\tRelError: 3.96109e-04\tAbsError: 8.96566e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98545e-05\tAbsError: 2.13909e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.29182e-05\tAbsError: 6.82656e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.02946e-04\tAbsError: 1.35679e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.90791e-07\tAbsError: 1.36028e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.31240e-04\tAbsError: 7.97937e+11\n", - " Region: \"zone_1\"\tRelError: 7.54533e-05\tAbsError: 1.27890e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.50894e-05\tAbsError: 1.20855e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.63943e-07\tAbsError: 1.26681e-04\n", - " Region: \"zone_3\"\tRelError: 3.55787e-04\tAbsError: 7.97937e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.38045e-05\tAbsError: 1.92064e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.48742e-05\tAbsError: 6.05872e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76744e-04\tAbsError: 1.21338e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.64089e-07\tAbsError: 1.26735e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.70737e-04\tAbsError: 1.21785e+11\n", - " Region: \"zone_1\"\tRelError: 2.65857e-05\tAbsError: 5.61935e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.64241e-05\tAbsError: 7.54825e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.61597e-07\tAbsError: 5.61181e-05\n", - " Region: \"zone_3\"\tRelError: 1.44151e-04\tAbsError: 1.21785e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.31951e-06\tAbsError: 8.52238e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.24759e-06\tAbsError: 3.65614e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.27422e-04\tAbsError: 7.88477e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.61597e-07\tAbsError: 5.61181e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.77308e-04\tAbsError: 1.25818e+11\n", - " Region: \"zone_1\"\tRelError: 2.79068e-05\tAbsError: 5.92346e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.77364e-05\tAbsError: 7.86787e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70346e-07\tAbsError: 5.91560e-05\n", - " Region: \"zone_3\"\tRelError: 1.49401e-04\tAbsError: 1.25818e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.46957e-06\tAbsError: 8.85315e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.39871e-06\tAbsError: 3.72862e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.32362e-04\tAbsError: 8.21640e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70346e-07\tAbsError: 5.91560e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.64583e-04\tAbsError: 1.17941e+11\n", - " Region: \"zone_1\"\tRelError: 2.52141e-05\tAbsError: 5.07020e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.50683e-05\tAbsError: 7.21588e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.45792e-07\tAbsError: 5.06299e-05\n", - " Region: \"zone_3\"\tRelError: 1.39369e-04\tAbsError: 1.17941e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.26647e-06\tAbsError: 8.14899e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.19254e-06\tAbsError: 3.64508e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.22764e-04\tAbsError: 7.54100e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.45792e-07\tAbsError: 5.06299e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.53826e-04\tAbsError: 1.09912e+11\n", - " Region: \"zone_1\"\tRelError: 2.29821e-05\tAbsError: 4.27473e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.28592e-05\tAbsError: 6.65170e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", - " Region: \"zone_3\"\tRelError: 1.30844e-04\tAbsError: 1.09912e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.01681e-06\tAbsError: 7.52234e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94349e-06\tAbsError: 3.46881e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14760e-04\tAbsError: 6.98367e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.64329e-04\tAbsError: 1.17757e+11\n", - " Region: \"zone_1\"\tRelError: 2.50373e-05\tAbsError: 4.84121e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.48981e-05\tAbsError: 7.17289e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39198e-07\tAbsError: 4.83403e-05\n", - " Region: \"zone_3\"\tRelError: 1.39291e-04\tAbsError: 1.17757e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.33650e-06\tAbsError: 8.08468e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.26154e-06\tAbsError: 3.69104e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.22554e-04\tAbsError: 7.49738e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39198e-07\tAbsError: 4.83403e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.90390e-05\tAbsError: 4.90602e+10\n", - " Region: \"zone_1\"\tRelError: 5.41804e-06\tAbsError: 6.22537e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.40029e-06\tAbsError: 4.72424e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77494e-08\tAbsError: 6.17812e-06\n", - " Region: \"zone_3\"\tRelError: 3.36210e-05\tAbsError: 4.90602e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.73319e-06\tAbsError: 1.65926e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.70156e-06\tAbsError: 3.24676e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.61685e-05\tAbsError: 4.73196e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77577e-08\tAbsError: 6.18118e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:15\u001b[0m.\u001b[1;36m847\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:15\u001b[0m.\u001b[1;36m847\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.45999999999999996\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.06903e-05\tAbsError: 5.15663e+10\n", - " Region: \"zone_1\"\tRelError: 5.70157e-06\tAbsError: 6.43438e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.68323e-06\tAbsError: 4.97272e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83425e-08\tAbsError: 6.38465e-06\n", - " Region: \"zone_3\"\tRelError: 3.49887e-05\tAbsError: 5.15663e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.87284e-06\tAbsError: 1.72438e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.84060e-06\tAbsError: 3.43225e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.72569e-05\tAbsError: 4.97993e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83512e-08\tAbsError: 6.38778e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.50001e-05\tAbsError: 4.42708e+10\n", - " Region: \"zone_1\"\tRelError: 4.76850e-06\tAbsError: 6.11915e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.75104e-06\tAbsError: 4.26401e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.74573e-08\tAbsError: 6.07651e-06\n", - " Region: \"zone_3\"\tRelError: 3.02316e-05\tAbsError: 4.42708e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.43399e-06\tAbsError: 1.50234e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.40416e-06\tAbsError: 2.92474e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.33760e-05\tAbsError: 4.27135e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.74650e-08\tAbsError: 6.07937e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:16\u001b[0m.\u001b[1;36m086\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.475\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:16\u001b[0m.\u001b[1;36m094\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: 0.4375\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.84860e-05\tAbsError: 3.70987e+10\n", - " Region: \"zone_1\"\tRelError: 3.74711e-06\tAbsError: 5.87951e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.73032e-06\tAbsError: 3.58594e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67880e-08\tAbsError: 5.84365e-06\n", - " Region: \"zone_3\"\tRelError: 2.47389e-05\tAbsError: 3.70987e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96764e-06\tAbsError: 1.24118e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.94133e-06\tAbsError: 2.46869e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88131e-05\tAbsError: 3.59119e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67950e-08\tAbsError: 5.84625e-06\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.29104e-05\tAbsError: 4.21734e+10\n", - " Region: \"zone_1\"\tRelError: 4.44495e-06\tAbsError: 6.18426e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.42730e-06\tAbsError: 4.07074e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.76498e-08\tAbsError: 6.14355e-06\n", - " Region: \"zone_3\"\tRelError: 2.84655e-05\tAbsError: 4.21734e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.29169e-06\tAbsError: 1.42178e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.26285e-06\tAbsError: 2.79556e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18933e-05\tAbsError: 4.07772e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.76574e-08\tAbsError: 6.14636e-06\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:16\u001b[0m.\u001b[1;36m233\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: 0.4\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:16\u001b[0m.\u001b[1;36m337\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:16\u001b[0m.\u001b[1;36m337\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.43000000000000005\u001b[0m \n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "number of equations 31816\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.81358e+01\tAbsError: 9.89122e+15\n", - " Region: \"zone_1\"\tRelError: 3.64061e+01\tAbsError: 4.47753e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.64061e+01\tAbsError: 4.47728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.22055e-09\tAbsError: 2.50749e-06\n", - " Region: \"zone_3\"\tRelError: 1.72979e+00\tAbsError: 9.89122e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.00390e-01\tAbsError: 5.83984e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.00363e-01\tAbsError: 4.05139e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29036e-01\tAbsError: 4.47728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.22309e-09\tAbsError: 2.50831e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.24985e+01\tAbsError: 1.02989e+16\n", - " Region: \"zone_1\"\tRelError: 1.07491e+01\tAbsError: 4.56481e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07491e+01\tAbsError: 4.56455e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.61244e-09\tAbsError: 2.64356e-06\n", - " Region: \"zone_3\"\tRelError: 1.74934e+00\tAbsError: 1.02989e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.06833e-01\tAbsError: 6.07666e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.06804e-01\tAbsError: 4.22228e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35703e-01\tAbsError: 4.56455e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.61471e-09\tAbsError: 2.64428e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.06444e+00\tAbsError: 9.27893e+15\n", - " Region: \"zone_1\"\tRelError: 4.36525e+00\tAbsError: 4.34082e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.36525e+00\tAbsError: 4.34059e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.43922e-09\tAbsError: 2.23618e-06\n", - " Region: \"zone_3\"\tRelError: 1.69919e+00\tAbsError: 9.27893e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.89877e-01\tAbsError: 5.47844e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.89852e-01\tAbsError: 3.80049e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19466e-01\tAbsError: 4.34059e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.44131e-09\tAbsError: 2.23685e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.87618e+01\tAbsError: 8.25603e+15\n", - " Region: \"zone_1\"\tRelError: 2.71120e+01\tAbsError: 4.09561e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.71120e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.29384e-09\tAbsError: 1.83846e-06\n", - " Region: \"zone_3\"\tRelError: 1.64979e+00\tAbsError: 8.25603e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69658e-01\tAbsError: 4.86497e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69634e-01\tAbsError: 3.39106e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10500e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.29480e-09\tAbsError: 1.83875e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 4.99434e+00\tAbsError: 9.07460e+15\n", - " Region: \"zone_1\"\tRelError: 3.30452e+00\tAbsError: 4.29359e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.30452e+00\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.08442e-09\tAbsError: 2.11298e-06\n", - " Region: \"zone_3\"\tRelError: 1.68981e+00\tAbsError: 9.07460e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86122e-01\tAbsError: 5.35667e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.86097e-01\tAbsError: 3.71793e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17595e-01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.08597e-09\tAbsError: 2.11346e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.76698e+00\tAbsError: 6.05674e+14\n", - " Region: \"zone_1\"\tRelError: 1.76193e-01\tAbsError: 8.82156e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76041e-01\tAbsError: 3.52796e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52324e-04\tAbsError: 5.29360e-02\n", - " Region: \"zone_3\"\tRelError: 1.59079e+00\tAbsError: 6.05674e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.94698e-01\tAbsError: 3.52874e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.85858e-01\tAbsError: 2.52800e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10077e-01\tAbsError: 3.52799e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52324e-04\tAbsError: 5.29360e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.77155e+00\tAbsError: 7.60573e+14\n", - " Region: \"zone_1\"\tRelError: 1.51457e-01\tAbsError: 9.01901e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51302e-01\tAbsError: 3.63157e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.55027e-04\tAbsError: 5.38744e-02\n", - " Region: \"zone_3\"\tRelError: 1.62010e+00\tAbsError: 7.60573e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.06073e-01\tAbsError: 4.40912e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.96799e-01\tAbsError: 3.19661e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17069e-01\tAbsError: 3.63160e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.55027e-04\tAbsError: 5.38744e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.66739e+00\tAbsError: 5.06300e+14\n", - " Region: \"zone_1\"\tRelError: 1.22234e-01\tAbsError: 8.49170e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.22087e-01\tAbsError: 3.36592e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47492e-04\tAbsError: 5.12578e-02\n", - " Region: \"zone_3\"\tRelError: 1.54515e+00\tAbsError: 5.06300e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.75921e-01\tAbsError: 3.27200e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.67567e-01\tAbsError: 1.79101e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01517e-01\tAbsError: 3.36595e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47492e-04\tAbsError: 5.12578e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.69855e+00\tAbsError: 3.40458e+14\n", - " Region: \"zone_1\"\tRelError: 2.34470e-01\tAbsError: 7.85796e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.34332e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", - " Region: \"zone_3\"\tRelError: 1.46408e+00\tAbsError: 3.40458e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39247e-01\tAbsError: 2.37038e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.31799e-01\tAbsError: 1.03420e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.29010e-02\tAbsError: 3.07639e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.64725e+00\tAbsError: 4.74556e+14\n", - " Region: \"zone_1\"\tRelError: 1.16564e-01\tAbsError: 8.37432e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16418e-01\tAbsError: 3.31003e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.45721e-04\tAbsError: 5.06428e-02\n", - " Region: \"zone_3\"\tRelError: 1.53069e+00\tAbsError: 4.74556e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.69093e-01\tAbsError: 3.14532e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.61063e-01\tAbsError: 1.60024e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00388e-01\tAbsError: 3.31007e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.45721e-04\tAbsError: 5.06428e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.35255e+00\tAbsError: 3.63655e+14\n", - " Region: \"zone_1\"\tRelError: 1.97939e-01\tAbsError: 3.56019e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.97911e-01\tAbsError: 2.56995e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.84934e-05\tAbsError: 9.90236e-03\n", - " Region: \"zone_3\"\tRelError: 1.15461e+00\tAbsError: 3.63655e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.30370e-01\tAbsError: 2.11310e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.26259e-01\tAbsError: 1.52345e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.79559e-02\tAbsError: 2.58613e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.84934e-05\tAbsError: 9.90236e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.33921e+00\tAbsError: 4.90102e+14\n", - " Region: \"zone_1\"\tRelError: 1.39048e-01\tAbsError: 3.67457e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39017e-01\tAbsError: 2.58798e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.12666e-05\tAbsError: 1.08660e-02\n", - " Region: \"zone_3\"\tRelError: 1.20016e+00\tAbsError: 4.90102e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.49633e-01\tAbsError: 2.77160e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.48210e-01\tAbsError: 2.12942e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02286e-01\tAbsError: 2.58607e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.12666e-05\tAbsError: 1.08660e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.16831e+00\tAbsError: 2.25997e+14\n", - " Region: \"zone_1\"\tRelError: 8.94403e-02\tAbsError: 3.44130e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.94155e-02\tAbsError: 2.57920e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.48059e-05\tAbsError: 8.62100e-03\n", - " Region: \"zone_3\"\tRelError: 1.07887e+00\tAbsError: 2.25997e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.99205e-01\tAbsError: 1.34698e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.88376e-01\tAbsError: 9.12987e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.12613e-02\tAbsError: 2.58613e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.48059e-05\tAbsError: 8.62100e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.13875e+00\tAbsError: 1.91429e+14\n", - " Region: \"zone_1\"\tRelError: 8.72362e-02\tAbsError: 3.41775e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.72123e-02\tAbsError: 2.58950e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.38317e-05\tAbsError: 8.28251e-03\n", - " Region: \"zone_3\"\tRelError: 1.05151e+00\tAbsError: 1.91429e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.88183e-01\tAbsError: 1.14582e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.74391e-01\tAbsError: 7.68472e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.89114e-02\tAbsError: 2.58546e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.38317e-05\tAbsError: 8.28251e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.10009e+00\tAbsError: 9.49766e+13\n", - " Region: \"zone_1\"\tRelError: 1.69910e-01\tAbsError: 3.26443e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.69891e-01\tAbsError: 2.58991e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", - " Region: \"zone_3\"\tRelError: 9.30185e-01\tAbsError: 9.49766e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40985e-01\tAbsError: 5.67002e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.12174e-01\tAbsError: 3.82763e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.70066e-02\tAbsError: 2.58994e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.36061e-01\tAbsError: 1.72469e+14\n", - " Region: \"zone_1\"\tRelError: 4.75512e-02\tAbsError: 1.91624e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.75415e-02\tAbsError: 1.57808e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.74068e-06\tAbsError: 3.38161e-03\n", - " Region: \"zone_3\"\tRelError: 4.88510e-01\tAbsError: 1.72469e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.93580e-01\tAbsError: 7.57065e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.46679e-01\tAbsError: 9.67627e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.82412e-02\tAbsError: 1.57809e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.74424e-06\tAbsError: 3.38291e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.97909e-01\tAbsError: 2.52002e+14\n", - " Region: \"zone_1\"\tRelError: 5.51282e-02\tAbsError: 2.15770e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.51170e-02\tAbsError: 1.76838e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12142e-05\tAbsError: 3.89314e-03\n", - " Region: \"zone_3\"\tRelError: 5.42781e-01\tAbsError: 2.52002e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.19147e-01\tAbsError: 1.09256e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.67592e-01\tAbsError: 1.42746e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.60306e-02\tAbsError: 1.76839e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12182e-05\tAbsError: 3.89457e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.43699e-01\tAbsError: 9.37478e+13\n", - " Region: \"zone_1\"\tRelError: 3.74442e-02\tAbsError: 1.59997e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.74359e-02\tAbsError: 1.31068e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.33312e-06\tAbsError: 2.89293e-03\n", - " Region: \"zone_3\"\tRelError: 4.06255e-01\tAbsError: 9.37478e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.55206e-01\tAbsError: 4.13823e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.13134e-01\tAbsError: 5.23655e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.79070e-02\tAbsError: 1.31068e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.33742e-06\tAbsError: 2.89445e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.13297e-01\tAbsError: 7.52929e+13\n", - " Region: \"zone_1\"\tRelError: 3.44170e-02\tAbsError: 1.51248e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.44088e-02\tAbsError: 1.22657e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.23601e-06\tAbsError: 2.85918e-03\n", - " Region: \"zone_3\"\tRelError: 3.78880e-01\tAbsError: 7.52929e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.42275e-01\tAbsError: 3.28684e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.01785e-01\tAbsError: 4.24245e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.48113e-02\tAbsError: 1.22657e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.23601e-06\tAbsError: 2.85918e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.56252e-01\tAbsError: 3.42527e+13\n", - " Region: \"zone_1\"\tRelError: 6.41646e-02\tAbsError: 1.11813e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.41588e-02\tAbsError: 9.16555e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.79958e-06\tAbsError: 2.01571e-03\n", - " Region: \"zone_3\"\tRelError: 2.92088e-01\tAbsError: 3.42527e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07223e-01\tAbsError: 1.60452e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.07953e-02\tAbsError: 1.82076e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.40630e-02\tAbsError: 9.16559e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.80279e-06\tAbsError: 2.01683e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.27933e-01\tAbsError: 3.77067e+13\n", - " Region: \"zone_1\"\tRelError: 8.63730e-03\tAbsError: 3.44155e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 8.62803e-03\tAbsError: 2.24917e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.26403e-06\tAbsError: 3.21663e-03\n", - " Region: \"zone_3\"\tRelError: 1.19296e-01\tAbsError: 3.77067e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01004e-01\tAbsError: 1.86096e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.59887e-02\tAbsError: 1.90970e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29412e-03\tAbsError: 2.44371e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.26403e-06\tAbsError: 3.21663e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.52868e-01\tAbsError: 5.88500e+13\n", - " Region: \"zone_1\"\tRelError: 9.73630e-03\tAbsError: 4.53225e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 9.72423e-03\tAbsError: 3.38686e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20778e-05\tAbsError: 4.19356e-03\n", - " Region: \"zone_3\"\tRelError: 1.43131e-01\tAbsError: 5.88500e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16572e-01\tAbsError: 2.83993e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.41855e-02\tAbsError: 3.04506e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.36161e-03\tAbsError: 3.65636e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20778e-05\tAbsError: 4.19356e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.29176e-02\tAbsError: 1.87255e+13\n", - " Region: \"zone_1\"\tRelError: 2.42581e-03\tAbsError: 2.43303e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.41913e-03\tAbsError: 1.13406e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.68051e-06\tAbsError: 2.31963e-03\n", - " Region: \"zone_3\"\tRelError: 9.04918e-02\tAbsError: 1.87255e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.06428e-02\tAbsError: 9.51123e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.64781e-03\tAbsError: 9.21422e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.19457e-03\tAbsError: 1.25751e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.68051e-06\tAbsError: 2.31963e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.59960e-02\tAbsError: 3.73217e+12\n", - " Region: \"zone_1\"\tRelError: 7.31305e-03\tAbsError: 2.21475e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.30674e-03\tAbsError: 2.57182e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", - " Region: \"zone_3\"\tRelError: 5.86829e-02\tAbsError: 3.73217e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.62142e-02\tAbsError: 2.07187e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.09163e-04\tAbsError: 1.66031e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65329e-03\tAbsError: 2.69578e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.55296e-02\tAbsError: 1.46785e+13\n", - " Region: \"zone_1\"\tRelError: 2.49644e-03\tAbsError: 2.18616e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49041e-03\tAbsError: 9.01307e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.03652e-06\tAbsError: 2.09603e-03\n", - " Region: \"zone_3\"\tRelError: 8.30332e-02\tAbsError: 1.46785e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.51171e-02\tAbsError: 7.64842e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.70344e-03\tAbsError: 7.03012e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20658e-03\tAbsError: 1.00679e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.03652e-06\tAbsError: 2.09603e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.46136e-03\tAbsError: 1.53101e+12\n", - " Region: \"zone_1\"\tRelError: 1.66986e-04\tAbsError: 2.22118e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66353e-04\tAbsError: 2.21820e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.32759e-07\tAbsError: 2.19900e-04\n", - " Region: \"zone_3\"\tRelError: 1.29437e-03\tAbsError: 1.53101e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.36978e-04\tAbsError: 4.54909e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.42881e-04\tAbsError: 1.07610e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.13878e-04\tAbsError: 2.48873e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.32759e-07\tAbsError: 2.19900e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.18982e-03\tAbsError: 2.05271e+12\n", - " Region: \"zone_1\"\tRelError: 2.63923e-04\tAbsError: 2.92360e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.63092e-04\tAbsError: 3.76510e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.30441e-07\tAbsError: 2.88595e-04\n", - " Region: \"zone_3\"\tRelError: 1.92590e-03\tAbsError: 2.05271e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.21596e-04\tAbsError: 6.82791e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.91395e-04\tAbsError: 1.36992e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11208e-03\tAbsError: 4.22049e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.30441e-07\tAbsError: 2.88595e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.17310e-04\tAbsError: 1.08380e+12\n", - " Region: \"zone_1\"\tRelError: 8.80491e-05\tAbsError: 1.60948e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 8.75900e-05\tAbsError: 1.40037e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.59060e-07\tAbsError: 1.59547e-04\n", - " Region: \"zone_3\"\tRelError: 7.29260e-04\tAbsError: 1.08380e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.40460e-04\tAbsError: 2.80505e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.02770e-04\tAbsError: 8.03299e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.85571e-04\tAbsError: 1.45875e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.59060e-07\tAbsError: 1.59547e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.58436e-04\tAbsError: 9.76197e+11\n", - " Region: \"zone_1\"\tRelError: 6.87963e-05\tAbsError: 1.52764e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.83606e-05\tAbsError: 1.30863e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.35775e-07\tAbsError: 1.51456e-04\n", - " Region: \"zone_3\"\tRelError: 5.89639e-04\tAbsError: 9.76197e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.93148e-04\tAbsError: 2.43686e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.21484e-05\tAbsError: 7.32511e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.03907e-04\tAbsError: 1.33351e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.35775e-07\tAbsError: 1.51456e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.14034e-04\tAbsError: 1.03618e+12\n", - " Region: \"zone_1\"\tRelError: 1.43803e-04\tAbsError: 7.79056e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43584e-04\tAbsError: 1.54074e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19396e-07\tAbsError: 7.63649e-05\n", - " Region: \"zone_3\"\tRelError: 6.70231e-04\tAbsError: 1.03618e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.21829e-04\tAbsError: 2.70793e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.05108e-04\tAbsError: 7.65387e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.43074e-04\tAbsError: 1.54210e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19498e-07\tAbsError: 7.64015e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.91105e-04\tAbsError: 1.53176e+11\n", - " Region: \"zone_1\"\tRelError: 3.27136e-05\tAbsError: 9.22669e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.24482e-05\tAbsError: 1.08446e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.65413e-07\tAbsError: 9.21585e-05\n", - " Region: \"zone_3\"\tRelError: 1.58391e-04\tAbsError: 1.53176e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05709e-05\tAbsError: 1.03501e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.04377e-05\tAbsError: 4.96748e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37117e-04\tAbsError: 1.13469e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.65524e-07\tAbsError: 9.21983e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.17167e-04\tAbsError: 1.84585e+11\n", - " Region: \"zone_1\"\tRelError: 3.72870e-05\tAbsError: 1.24890e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.69277e-05\tAbsError: 1.34606e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.59293e-07\tAbsError: 1.24755e-04\n", - " Region: \"zone_3\"\tRelError: 1.79880e-04\tAbsError: 1.84585e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31660e-05\tAbsError: 1.23826e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.29782e-05\tAbsError: 6.07589e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.53376e-04\tAbsError: 1.40980e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.59336e-07\tAbsError: 1.24771e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.65553e-04\tAbsError: 1.24515e+11\n", - " Region: \"zone_1\"\tRelError: 2.80671e-05\tAbsError: 6.32032e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78853e-05\tAbsError: 8.44023e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.81769e-07\tAbsError: 6.31188e-05\n", - " Region: \"zone_3\"\tRelError: 1.37486e-04\tAbsError: 1.24515e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.24823e-06\tAbsError: 8.47993e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.15629e-06\tAbsError: 3.97152e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20900e-04\tAbsError: 8.81984e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.81805e-07\tAbsError: 6.31296e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.65798e-04\tAbsError: 1.22174e+11\n", - " Region: \"zone_1\"\tRelError: 2.79805e-05\tAbsError: 5.56854e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78204e-05\tAbsError: 8.16520e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60127e-07\tAbsError: 5.56037e-05\n", - " Region: \"zone_3\"\tRelError: 1.37818e-04\tAbsError: 1.22174e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.04045e-06\tAbsError: 8.28593e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.95339e-06\tAbsError: 3.93149e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21664e-04\tAbsError: 8.53009e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60129e-07\tAbsError: 5.56037e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.61312e-05\tAbsError: 5.74046e+10\n", - " Region: \"zone_1\"\tRelError: 1.61849e-05\tAbsError: 6.45313e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.59991e-05\tAbsError: 3.79845e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.85726e-07\tAbsError: 6.44934e-05\n", - " Region: \"zone_3\"\tRelError: 5.99464e-05\tAbsError: 5.74046e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.77906e-06\tAbsError: 4.68633e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.20461e-06\tAbsError: 1.05413e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.27769e-05\tAbsError: 3.95532e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.85828e-07\tAbsError: 6.45281e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:26\u001b[0m.\u001b[1;36m614\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: 0.5\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 8.71599e-05\tAbsError: 8.63311e+10\n", - " Region: \"zone_1\"\tRelError: 1.45239e-05\tAbsError: 6.32337e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.45059e-05\tAbsError: 6.52346e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.79809e-08\tAbsError: 6.25813e-06\n", - " Region: \"zone_3\"\tRelError: 7.26359e-05\tAbsError: 8.63311e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.55694e-06\tAbsError: 3.72560e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.50849e-06\tAbsError: 4.90752e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 6.15525e-05\tAbsError: 6.62280e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.79882e-08\tAbsError: 6.26082e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:27\u001b[0m.\u001b[1;36m227\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.58\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.28225e-04\tAbsError: 1.19419e+11\n", - " Region: \"zone_1\"\tRelError: 2.19087e-05\tAbsError: 6.73240e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18896e-05\tAbsError: 8.49137e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.90998e-08\tAbsError: 6.64748e-06\n", - " Region: \"zone_3\"\tRelError: 1.06317e-04\tAbsError: 1.19419e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.49812e-06\tAbsError: 5.46310e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.43237e-06\tAbsError: 6.47876e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 9.13670e-05\tAbsError: 8.65435e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91076e-08\tAbsError: 6.65030e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.21903e-05\tAbsError: 5.72389e+10\n", - " Region: \"zone_1\"\tRelError: 8.34176e-06\tAbsError: 5.86080e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.32506e-06\tAbsError: 4.71382e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67033e-08\tAbsError: 5.81366e-06\n", - " Region: \"zone_3\"\tRelError: 4.38485e-05\tAbsError: 5.72389e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.81863e-06\tAbsError: 2.24731e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.78561e-06\tAbsError: 3.47657e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.62276e-05\tAbsError: 4.76030e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67103e-08\tAbsError: 5.81619e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.29840e-05\tAbsError: 4.97114e+10\n", - " Region: \"zone_1\"\tRelError: 6.74775e-06\tAbsError: 6.07457e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.73042e-06\tAbsError: 4.22286e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73315e-08\tAbsError: 6.03234e-06\n", - " Region: \"zone_3\"\tRelError: 3.62362e-05\tAbsError: 4.97114e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.35448e-06\tAbsError: 1.86949e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.32535e-06\tAbsError: 3.10165e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.95390e-05\tAbsError: 4.25647e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73388e-08\tAbsError: 6.03496e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:27\u001b[0m.\u001b[1;36m903\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: 0.55\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:27\u001b[0m.\u001b[1;36m949\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: 0.54\u001b[0m \n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.60199e+01\tAbsError: 8.22903e+15\n", - " Region: \"zone_1\"\tRelError: 3.43433e+01\tAbsError: 4.09555e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.43433e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.48443e-09\tAbsError: 1.21289e-06\n", - " Region: \"zone_3\"\tRelError: 1.67662e+00\tAbsError: 8.22903e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.78919e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.43984e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37338e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.48691e-09\tAbsError: 1.21378e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 4.61978e+01\tAbsError: 9.96785e+15\n", - " Region: \"zone_1\"\tRelError: 4.44199e+01\tAbsError: 4.47776e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.44199e+01\tAbsError: 4.47728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.38243e-08\tAbsError: 4.80419e-06\n", - " Region: \"zone_3\"\tRelError: 1.77789e+00\tAbsError: 9.96785e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.00373e-01\tAbsError: 5.53494e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.00283e-01\tAbsError: 4.43291e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77231e-01\tAbsError: 4.47728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.38259e-08\tAbsError: 4.80483e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 4.66418e-06\tAbsError: 5.37987e+09\n", - " Region: \"zone_1\"\tRelError: 8.01887e-07\tAbsError: 6.86973e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 7.82129e-07\tAbsError: 3.38380e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.97586e-08\tAbsError: 6.86635e-06\n", - " Region: \"zone_3\"\tRelError: 3.86229e-06\tAbsError: 5.37987e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.38045e-07\tAbsError: 4.16158e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.79512e-07\tAbsError: 1.21829e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.22497e-06\tAbsError: 3.52801e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.97625e-08\tAbsError: 6.86780e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:29\u001b[0m.\u001b[1;36m025\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.6\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.79935e+00\tAbsError: 9.07065e+15\n", - " Region: \"zone_1\"\tRelError: 6.07018e+00\tAbsError: 4.29363e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.07018e+00\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.28179e-09\tAbsError: 2.52849e-06\n", - " Region: \"zone_3\"\tRelError: 1.72916e+00\tAbsError: 9.07065e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86123e-01\tAbsError: 5.17830e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.86053e-01\tAbsError: 3.89234e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.56989e-01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.28214e-09\tAbsError: 2.52864e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.34489e+01\tAbsError: 9.28815e+15\n", - " Region: \"zone_1\"\tRelError: 1.17073e+01\tAbsError: 4.34089e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17073e+01\tAbsError: 4.34059e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.66604e-09\tAbsError: 3.01167e-06\n", - " Region: \"zone_3\"\tRelError: 1.74167e+00\tAbsError: 9.28815e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.89875e-01\tAbsError: 5.26960e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.89800e-01\tAbsError: 4.01855e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.61991e-01\tAbsError: 4.34059e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.66604e-09\tAbsError: 3.01169e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.73485e+00\tAbsError: 1.08973e+15\n", - " Region: \"zone_1\"\tRelError: 2.25350e+00\tAbsError: 6.85700e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25339e+00\tAbsError: 3.07635e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", - " Region: \"zone_3\"\tRelError: 1.48136e+00\tAbsError: 1.08973e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41054e-01\tAbsError: 6.25022e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.24005e-01\tAbsError: 4.64711e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16189e-01\tAbsError: 3.07637e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 9.49120e+00\tAbsError: 3.87577e+15\n", - " Region: \"zone_1\"\tRelError: 7.88160e+00\tAbsError: 7.65185e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.88148e+00\tAbsError: 3.52795e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18679e-04\tAbsError: 4.12390e-02\n", - " Region: \"zone_3\"\tRelError: 1.60960e+00\tAbsError: 3.87577e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.94752e-01\tAbsError: 1.96214e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.70036e-01\tAbsError: 1.91363e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.44693e-01\tAbsError: 3.52796e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18679e-04\tAbsError: 4.12390e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.52079e+01\tAbsError: 1.04499e+16\n", - " Region: \"zone_1\"\tRelError: 2.34063e+01\tAbsError: 4.56456e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.34063e+01\tAbsError: 4.56455e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.65927e-10\tAbsError: 1.27309e-07\n", - " Region: \"zone_3\"\tRelError: 1.80158e+00\tAbsError: 1.04499e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.06801e-01\tAbsError: 5.71038e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.06701e-01\tAbsError: 4.73948e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88074e-01\tAbsError: 4.56455e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.66097e-10\tAbsError: 1.27368e-07\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.87726e+00\tAbsError: 2.07784e+15\n", - " Region: \"zone_1\"\tRelError: 3.30726e-01\tAbsError: 7.19464e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.30614e-01\tAbsError: 3.31002e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11788e-04\tAbsError: 3.88462e-02\n", - " Region: \"zone_3\"\tRelError: 1.54653e+00\tAbsError: 2.07784e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.70151e-01\tAbsError: 1.12779e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.49677e-01\tAbsError: 9.50051e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.26591e-01\tAbsError: 3.31003e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11788e-04\tAbsError: 3.88462e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.06546e+00\tAbsError: 2.42910e+15\n", - " Region: \"zone_1\"\tRelError: 5.04047e-01\tAbsError: 7.29119e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.03934e-01\tAbsError: 3.36591e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12959e-04\tAbsError: 3.92528e-02\n", - " Region: \"zone_3\"\tRelError: 1.56142e+00\tAbsError: 2.42910e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.76732e-01\tAbsError: 1.29636e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.55184e-01\tAbsError: 1.13274e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29387e-01\tAbsError: 3.36592e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12959e-04\tAbsError: 3.92528e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.38677e+00\tAbsError: 6.38966e+14\n", - " Region: \"zone_1\"\tRelError: 4.51470e-01\tAbsError: 3.37904e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.51448e-01\tAbsError: 2.58448e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", - " Region: \"zone_3\"\tRelError: 9.35299e-01\tAbsError: 6.38966e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42607e-01\tAbsError: 3.02038e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.95795e-01\tAbsError: 3.36928e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.68743e-02\tAbsError: 2.57679e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.27685e+00\tAbsError: 3.22805e+15\n", - " Region: \"zone_1\"\tRelError: 1.23665e-01\tAbsError: 3.28269e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.23644e-01\tAbsError: 2.57799e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.03021e-05\tAbsError: 7.04693e-03\n", - " Region: \"zone_3\"\tRelError: 1.15319e+00\tAbsError: 3.22805e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.31406e-01\tAbsError: 1.41952e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.92785e-01\tAbsError: 1.80854e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28975e-01\tAbsError: 2.50223e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.03132e-05\tAbsError: 7.05082e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.97416e+01\tAbsError: 5.30793e+15\n", - " Region: \"zone_1\"\tRelError: 1.81011e+01\tAbsError: 8.03359e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81009e+01\tAbsError: 3.63155e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26686e-04\tAbsError: 4.40203e-02\n", - " Region: \"zone_3\"\tRelError: 1.64056e+00\tAbsError: 5.30793e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.05436e-01\tAbsError: 2.59655e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.79266e-01\tAbsError: 2.71137e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55737e-01\tAbsError: 3.63156e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26686e-04\tAbsError: 4.40203e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.15795e+00\tAbsError: 1.43317e+15\n", - " Region: \"zone_1\"\tRelError: 1.12652e-01\tAbsError: 3.52450e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12625e-01\tAbsError: 2.58896e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69531e-05\tAbsError: 9.35535e-03\n", - " Region: \"zone_3\"\tRelError: 1.04530e+00\tAbsError: 1.43317e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89809e-01\tAbsError: 6.27661e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.39858e-01\tAbsError: 8.05511e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15604e-01\tAbsError: 2.58543e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69724e-05\tAbsError: 9.36224e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.19014e+00\tAbsError: 1.77232e+15\n", - " Region: \"zone_1\"\tRelError: 1.16406e-01\tAbsError: 3.58693e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16377e-01\tAbsError: 2.57454e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.91673e-05\tAbsError: 1.01239e-02\n", - " Region: \"zone_3\"\tRelError: 1.07373e+00\tAbsError: 1.77232e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.00688e-01\tAbsError: 7.71149e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.53283e-01\tAbsError: 1.00118e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19733e-01\tAbsError: 2.58503e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.91886e-05\tAbsError: 1.01314e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.41554e-01\tAbsError: 2.20715e+14\n", - " Region: \"zone_1\"\tRelError: 2.89595e-02\tAbsError: 1.67352e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.89377e-02\tAbsError: 9.16565e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18085e-05\tAbsError: 7.56954e-03\n", - " Region: \"zone_3\"\tRelError: 3.12594e-01\tAbsError: 2.20715e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94155e-01\tAbsError: 1.01533e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.87246e-02\tAbsError: 1.19182e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.96932e-02\tAbsError: 9.16570e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18152e-05\tAbsError: 7.57200e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.03339e+00\tAbsError: 1.35100e+15\n", - " Region: \"zone_1\"\tRelError: 4.86638e-01\tAbsError: 4.06166e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.86567e-01\tAbsError: 1.57812e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.15551e-05\tAbsError: 2.48354e-02\n", - " Region: \"zone_3\"\tRelError: 5.46754e-01\tAbsError: 1.35100e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.94312e-01\tAbsError: 6.70250e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.91899e-01\tAbsError: 6.80751e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.04718e-02\tAbsError: 1.57813e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.15962e-05\tAbsError: 2.48500e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.90718e+00\tAbsError: 4.57799e+15\n", - " Region: \"zone_1\"\tRelError: 6.98987e-01\tAbsError: 3.15756e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.98970e-01\tAbsError: 2.58187e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.65873e-05\tAbsError: 5.75692e-03\n", - " Region: \"zone_3\"\tRelError: 1.20819e+00\tAbsError: 4.57799e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.50404e-01\tAbsError: 2.10275e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.16940e-01\tAbsError: 2.47524e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40833e-01\tAbsError: 2.57339e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.65919e-05\tAbsError: 5.75848e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.66101e-01\tAbsError: 5.71776e+14\n", - " Region: \"zone_1\"\tRelError: 4.21342e-02\tAbsError: 2.70003e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.20918e-02\tAbsError: 1.22659e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.24522e-05\tAbsError: 1.47344e-02\n", - " Region: \"zone_3\"\tRelError: 4.23967e-01\tAbsError: 5.71776e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.40635e-01\tAbsError: 2.83777e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.40006e-01\tAbsError: 2.87999e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.32840e-02\tAbsError: 1.22660e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.24816e-05\tAbsError: 1.47449e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.00471e-01\tAbsError: 7.18290e+14\n", - " Region: \"zone_1\"\tRelError: 4.58077e-02\tAbsError: 3.08706e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.57565e-02\tAbsError: 1.31071e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.11797e-05\tAbsError: 1.77635e-02\n", - " Region: \"zone_3\"\tRelError: 4.54664e-01\tAbsError: 7.18290e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.54015e-01\tAbsError: 3.59442e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.53250e-01\tAbsError: 3.58848e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.73475e-02\tAbsError: 1.31072e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.12103e-05\tAbsError: 1.77744e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.19808e-02\tAbsError: 3.06344e+13\n", - " Region: \"zone_1\"\tRelError: 2.04251e-02\tAbsError: 4.10278e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.04136e-02\tAbsError: 1.00349e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", - " Region: \"zone_3\"\tRelError: 6.15557e-02\tAbsError: 3.06344e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38926e-02\tAbsError: 1.71938e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.73234e-03\tAbsError: 1.34406e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.91920e-03\tAbsError: 1.01109e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.77064e-01\tAbsError: 2.74208e+14\n", - " Region: \"zone_1\"\tRelError: 1.45533e-01\tAbsError: 1.86642e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.45481e-01\tAbsError: 4.78882e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.23812e-05\tAbsError: 1.81853e-02\n", - " Region: \"zone_3\"\tRelError: 1.31531e-01\tAbsError: 2.74208e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.43134e-02\tAbsError: 1.47586e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.67438e-02\tAbsError: 1.26622e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04217e-02\tAbsError: 4.89202e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.23812e-05\tAbsError: 1.81853e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.08267e+00\tAbsError: 2.05555e+15\n", - " Region: \"zone_1\"\tRelError: 4.74733e-01\tAbsError: 5.07265e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.74638e-01\tAbsError: 1.76843e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.51006e-05\tAbsError: 3.30422e-02\n", - " Region: \"zone_3\"\tRelError: 6.07933e-01\tAbsError: 2.05555e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.19412e-01\tAbsError: 1.01229e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.17373e-01\tAbsError: 1.04326e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.10530e-02\tAbsError: 1.76844e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.51581e-05\tAbsError: 3.30598e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.84053e-02\tAbsError: 1.08690e+14\n", - " Region: \"zone_1\"\tRelError: 8.68078e-03\tAbsError: 8.41083e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 8.65731e-03\tAbsError: 2.61591e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.34713e-05\tAbsError: 8.14923e-03\n", - " Region: \"zone_3\"\tRelError: 8.97245e-02\tAbsError: 1.08690e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.02382e-02\tAbsError: 6.26697e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.25943e-02\tAbsError: 4.60204e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.86852e-03\tAbsError: 2.62736e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.34713e-05\tAbsError: 8.14923e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.53920e-03\tAbsError: 1.84314e+12\n", - " Region: \"zone_1\"\tRelError: 2.29752e-04\tAbsError: 2.41443e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29064e-04\tAbsError: 2.20702e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", - " Region: \"zone_3\"\tRelError: 1.30944e-03\tAbsError: 1.84314e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11485e-04\tAbsError: 5.81096e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.63190e-04\tAbsError: 1.26205e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 9.34079e-04\tAbsError: 2.25011e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.14444e-01\tAbsError: 1.39799e+14\n", - " Region: \"zone_1\"\tRelError: 1.51601e-02\tAbsError: 1.02733e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51314e-02\tAbsError: 3.09160e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.86990e-05\tAbsError: 9.96415e-03\n", - " Region: \"zone_3\"\tRelError: 9.92839e-02\tAbsError: 1.39799e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.56218e-02\tAbsError: 7.87755e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.55448e-02\tAbsError: 6.10233e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.08856e-03\tAbsError: 3.11493e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.86990e-05\tAbsError: 9.96415e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.30863e-02\tAbsError: 9.34886e+12\n", - " Region: \"zone_1\"\tRelError: 5.42500e-03\tAbsError: 1.09909e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.42186e-03\tAbsError: 8.38632e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.13916e-06\tAbsError: 1.09070e-03\n", - " Region: \"zone_3\"\tRelError: 7.66127e-03\tAbsError: 9.34886e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.03173e-04\tAbsError: 3.67297e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.55630e-04\tAbsError: 5.67589e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 6.09933e-03\tAbsError: 8.47585e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.13916e-06\tAbsError: 1.09070e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 3.21573e-01\tAbsError: 4.67958e+14\n", - " Region: \"zone_1\"\tRelError: 1.62369e-01\tAbsError: 2.82899e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.62289e-01\tAbsError: 6.12610e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.97267e-05\tAbsError: 2.76773e-02\n", - " Region: \"zone_3\"\tRelError: 1.59204e-01\tAbsError: 4.67958e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10876e-01\tAbsError: 2.44176e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.52599e-02\tAbsError: 2.23782e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29883e-02\tAbsError: 6.28778e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.97267e-05\tAbsError: 2.76773e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.70865e-03\tAbsError: 3.95368e+12\n", - " Region: \"zone_1\"\tRelError: 5.98822e-04\tAbsError: 5.60907e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.97219e-04\tAbsError: 3.89502e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60297e-06\tAbsError: 5.57012e-04\n", - " Region: \"zone_3\"\tRelError: 3.10982e-03\tAbsError: 3.95368e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.50396e-04\tAbsError: 1.41982e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.19860e-04\tAbsError: 2.53386e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.33796e-03\tAbsError: 3.96587e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60304e-06\tAbsError: 5.57046e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.63142e-03\tAbsError: 4.86609e+12\n", - " Region: \"zone_1\"\tRelError: 7.61282e-04\tAbsError: 6.97446e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.59288e-04\tAbsError: 4.58618e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.99396e-06\tAbsError: 6.92860e-04\n", - " Region: \"zone_3\"\tRelError: 3.87013e-03\tAbsError: 4.86609e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.40083e-04\tAbsError: 1.77391e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.84262e-04\tAbsError: 3.09218e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.94379e-03\tAbsError: 4.70350e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.99396e-06\tAbsError: 6.92860e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.51045e-04\tAbsError: 2.02519e+11\n", - " Region: \"zone_1\"\tRelError: 4.54891e-05\tAbsError: 1.12868e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.51644e-05\tAbsError: 1.25671e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.24705e-07\tAbsError: 1.12743e-04\n", - " Region: \"zone_3\"\tRelError: 2.05556e-04\tAbsError: 2.02519e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12163e-05\tAbsError: 1.36505e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10724e-05\tAbsError: 6.60139e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82943e-04\tAbsError: 1.30848e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.24777e-07\tAbsError: 1.12769e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.18680e-03\tAbsError: 7.18169e+11\n", - " Region: \"zone_1\"\tRelError: 5.59334e-04\tAbsError: 5.55817e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.57736e-04\tAbsError: 4.25373e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59852e-06\tAbsError: 5.55391e-04\n", - " Region: \"zone_3\"\tRelError: 6.27464e-04\tAbsError: 7.18169e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.03657e-05\tAbsError: 4.82924e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.86476e-05\tAbsError: 2.35246e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.46853e-04\tAbsError: 4.40551e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59852e-06\tAbsError: 5.55401e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.47140e-02\tAbsError: 1.50803e+13\n", - " Region: \"zone_1\"\tRelError: 1.27460e-02\tAbsError: 1.51578e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.27417e-02\tAbsError: 1.27789e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.32614e-06\tAbsError: 1.50300e-03\n", - " Region: \"zone_3\"\tRelError: 1.19680e-02\tAbsError: 1.50803e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28353e-03\tAbsError: 6.44204e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.49281e-04\tAbsError: 8.63829e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 9.73086e-03\tAbsError: 1.29461e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.32614e-06\tAbsError: 1.50300e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 5.03905e-04\tAbsError: 4.29222e+11\n", - " Region: \"zone_1\"\tRelError: 9.36879e-05\tAbsError: 2.36804e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.30066e-05\tAbsError: 2.54166e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.81308e-07\tAbsError: 2.36550e-04\n", - " Region: \"zone_3\"\tRelError: 4.10217e-04\tAbsError: 4.29222e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.41988e-05\tAbsError: 2.77763e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.38677e-05\tAbsError: 1.51459e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.61470e-04\tAbsError: 2.67086e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.81308e-07\tAbsError: 2.36550e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.09745e-04\tAbsError: 5.21468e+11\n", - " Region: \"zone_1\"\tRelError: 1.14300e-04\tAbsError: 2.90084e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13465e-04\tAbsError: 3.07455e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.34625e-07\tAbsError: 2.89777e-04\n", - " Region: \"zone_3\"\tRelError: 4.95445e-04\tAbsError: 5.21468e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.92372e-05\tAbsError: 3.37309e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.88204e-05\tAbsError: 1.84159e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.36553e-04\tAbsError: 3.22181e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.34625e-07\tAbsError: 2.89777e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.09882e-04\tAbsError: 1.05387e+11\n", - " Region: \"zone_1\"\tRelError: 1.91896e-05\tAbsError: 8.11152e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.91665e-05\tAbsError: 7.26801e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.30974e-08\tAbsError: 8.03884e-06\n", - " Region: \"zone_3\"\tRelError: 9.06925e-05\tAbsError: 1.05387e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41210e-06\tAbsError: 4.74044e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.36012e-06\tAbsError: 5.79823e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.78972e-05\tAbsError: 7.44246e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.31071e-08\tAbsError: 8.04242e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 9.89150e-04\tAbsError: 5.35964e+11\n", - " Region: \"zone_1\"\tRelError: 4.72333e-04\tAbsError: 1.96224e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.72277e-04\tAbsError: 2.88087e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.55580e-08\tAbsError: 1.93343e-05\n", - " Region: \"zone_3\"\tRelError: 5.16817e-04\tAbsError: 5.35964e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.78052e-05\tAbsError: 2.68732e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.76635e-05\tAbsError: 2.67232e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.61293e-04\tAbsError: 2.97401e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.55808e-08\tAbsError: 1.93427e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.80995e-03\tAbsError: 9.00716e+11\n", - " Region: \"zone_1\"\tRelError: 1.05911e-03\tAbsError: 8.52183e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.05666e-03\tAbsError: 5.36776e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.45139e-06\tAbsError: 8.51646e-04\n", - " Region: \"zone_3\"\tRelError: 7.50839e-04\tAbsError: 9.00716e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.26828e-05\tAbsError: 6.33818e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.67143e-05\tAbsError: 2.66898e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 6.48991e-04\tAbsError: 5.58586e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.45150e-06\tAbsError: 8.51699e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.52598e-04\tAbsError: 2.26713e+11\n", - " Region: \"zone_1\"\tRelError: 4.63661e-05\tAbsError: 1.62759e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.63197e-05\tAbsError: 1.37060e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.63731e-08\tAbsError: 1.61389e-05\n", - " Region: \"zone_3\"\tRelError: 2.06232e-04\tAbsError: 2.26713e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28007e-05\tAbsError: 1.09151e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.27071e-05\tAbsError: 1.17562e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.80678e-04\tAbsError: 1.41716e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.63910e-08\tAbsError: 1.61454e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 7.21635e-06\tAbsError: 6.66071e+09\n", - " Region: \"zone_1\"\tRelError: 1.30608e-06\tAbsError: 5.92265e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28905e-06\tAbsError: 4.03393e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70320e-08\tAbsError: 5.91862e-06\n", - " Region: \"zone_3\"\tRelError: 5.91027e-06\tAbsError: 6.66071e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61854e-07\tAbsError: 4.98334e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.27195e-07\tAbsError: 1.67738e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 5.20418e-06\tAbsError: 4.19235e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70346e-08\tAbsError: 5.91965e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.14039e-04\tAbsError: 2.78819e+11\n", - " Region: \"zone_1\"\tRelError: 5.82968e-05\tAbsError: 1.95922e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.82410e-05\tAbsError: 1.63517e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.58267e-08\tAbsError: 1.94287e-05\n", - " Region: \"zone_3\"\tRelError: 2.55743e-04\tAbsError: 2.78819e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54293e-05\tAbsError: 1.35487e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.53221e-05\tAbsError: 1.43332e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.24935e-04\tAbsError: 1.69505e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.58486e-08\tAbsError: 1.94366e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.51031e-06\tAbsError: 1.52707e+10\n", - " Region: \"zone_1\"\tRelError: 1.92750e-06\tAbsError: 3.15987e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.83658e-06\tAbsError: 7.53819e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.09197e-08\tAbsError: 3.15911e-05\n", - " Region: \"zone_3\"\tRelError: 4.58280e-06\tAbsError: 1.52707e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.43367e-07\tAbsError: 1.25040e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.52456e-07\tAbsError: 2.76660e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.79602e-06\tAbsError: 7.83943e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.09589e-08\tAbsError: 3.16048e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:40\u001b[0m.\u001b[1;36m058\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.7\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.97686e-03\tAbsError: 8.26086e+11\n", - " Region: \"zone_1\"\tRelError: 1.16335e-03\tAbsError: 1.77491e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16330e-03\tAbsError: 4.17046e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.98056e-08\tAbsError: 1.73321e-05\n", - " Region: \"zone_3\"\tRelError: 8.13509e-04\tAbsError: 8.26086e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.08663e-05\tAbsError: 4.18100e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.07187e-05\tAbsError: 4.07986e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 7.31874e-04\tAbsError: 4.36618e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.98285e-08\tAbsError: 1.73405e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.37529e-05\tAbsError: 1.40904e+10\n", - " Region: \"zone_1\"\tRelError: 2.56157e-06\tAbsError: 1.29255e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.52440e-06\tAbsError: 7.69838e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.71758e-08\tAbsError: 1.29178e-05\n", - " Region: \"zone_3\"\tRelError: 1.11914e-05\tAbsError: 1.40904e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.24225e-07\tAbsError: 1.00189e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.55953e-07\tAbsError: 4.07146e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.77400e-06\tAbsError: 8.06496e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.71861e-08\tAbsError: 1.29217e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:40\u001b[0m.\u001b[1;36m919\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: 0.65\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 8\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 1.63083e-05\tAbsError: 1.69923e+10\n", - " Region: \"zone_1\"\tRelError: 3.06233e-06\tAbsError: 1.59116e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.01656e-06\tAbsError: 9.13982e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.57663e-08\tAbsError: 1.59025e-05\n", - " Region: \"zone_3\"\tRelError: 1.32460e-05\tAbsError: 1.69923e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.64217e-07\tAbsError: 1.20714e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.75493e-07\tAbsError: 4.92097e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15605e-05\tAbsError: 9.54770e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.57804e-08\tAbsError: 1.59078e-05\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.68423e-05\tAbsError: 1.31861e+10\n", - " Region: \"zone_1\"\tRelError: 1.57902e-05\tAbsError: 4.90444e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.56491e-05\tAbsError: 5.53975e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41146e-07\tAbsError: 4.90389e-05\n", - " Region: \"zone_3\"\tRelError: 1.10521e-05\tAbsError: 1.31861e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00575e-06\tAbsError: 1.18844e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.38543e-07\tAbsError: 1.30166e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.16658e-06\tAbsError: 5.67278e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41201e-07\tAbsError: 4.90583e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.87250e+00\tAbsError: 2.38112e+16\n", - " Region: \"zone_1\"\tRelError: 4.02900e+00\tAbsError: 4.47737e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.02900e+00\tAbsError: 4.47728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.77280e-09\tAbsError: 9.62637e-07\n", - " Region: \"zone_3\"\tRelError: 1.84350e+00\tAbsError: 2.38112e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.99927e-01\tAbsError: 1.19850e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.99609e-01\tAbsError: 1.18262e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.43964e-01\tAbsError: 4.47728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.77327e-09\tAbsError: 9.62813e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:42\u001b[0m.\u001b[1;36m364\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:42\u001b[0m.\u001b[1;36m394\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.75 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:42\u001b[0m.\u001b[1;36m439\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.52664e+01\tAbsError: 1.16964e+16\n", - " Region: \"zone_1\"\tRelError: 5.34885e+01\tAbsError: 4.29340e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.34885e+01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.65399e-10\tAbsError: 1.96786e-07\n", - " Region: \"zone_3\"\tRelError: 1.77791e+00\tAbsError: 1.16964e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.85913e-01\tAbsError: 5.96599e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.85711e-01\tAbsError: 5.73044e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06286e-01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.65730e-10\tAbsError: 1.96905e-07\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.85583e+00\tAbsError: 2.82968e+16\n", - " Region: \"zone_1\"\tRelError: 2.08117e-01\tAbsError: 1.41550e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.07811e-01\tAbsError: 3.52793e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.05953e-04\tAbsError: 1.06271e-01\n", - " Region: \"zone_3\"\tRelError: 1.64772e+00\tAbsError: 2.82968e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91544e-01\tAbsError: 1.39566e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.57360e-01\tAbsError: 1.43401e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.98508e-01\tAbsError: 3.52793e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.05953e-04\tAbsError: 1.06271e-01\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.48679e+02\tAbsError: 3.39467e+16\n", - " Region: \"zone_1\"\tRelError: 7.11664e+02\tAbsError: 7.25191e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.11664e+02\tAbsError: 7.25190e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.57556e-10\tAbsError: 1.24451e-07\n", - " Region: \"zone_3\"\tRelError: 3.70144e+01\tAbsError: 3.39467e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10279e+01\tAbsError: 1.80458e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.57729e+01\tAbsError: 1.59008e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.13521e-01\tAbsError: 7.25190e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.57765e-10\tAbsError: 1.24526e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:43\u001b[0m.\u001b[1;36m596\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:43\u001b[0m.\u001b[1;36m635\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.8 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:43\u001b[0m.\u001b[1;36m684\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 6.33878e+00\tAbsError: 1.22675e+16\n", - " Region: \"zone_1\"\tRelError: 4.76725e+00\tAbsError: 9.34106e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.76707e+00\tAbsError: 3.31000e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73592e-04\tAbsError: 6.03106e-02\n", - " Region: \"zone_3\"\tRelError: 1.57153e+00\tAbsError: 1.22675e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67129e-01\tAbsError: 5.98252e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.36794e-01\tAbsError: 6.28496e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.67430e-01\tAbsError: 3.31000e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73592e-04\tAbsError: 6.03106e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:44\u001b[0m.\u001b[1;36m280\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:44\u001b[0m.\u001b[1;36m311\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.85 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:44\u001b[0m.\u001b[1;36m345\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.34811e+00\tAbsError: 2.09220e+16\n", - " Region: \"zone_1\"\tRelError: 1.55990e-01\tAbsError: 4.10360e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55945e-01\tAbsError: 2.55116e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.47424e-05\tAbsError: 1.55244e-02\n", - " Region: \"zone_3\"\tRelError: 1.19212e+00\tAbsError: 2.09220e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.27350e-01\tAbsError: 1.05095e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.94610e-01\tAbsError: 1.04125e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.70114e-01\tAbsError: 2.41674e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.47424e-05\tAbsError: 1.55244e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 9.93000e+01\tAbsError: 4.51525e+16\n", - " Region: \"zone_1\"\tRelError: 7.25052e+01\tAbsError: 7.53942e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.25052e+01\tAbsError: 7.53940e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.15069e-10\tAbsError: 2.14071e-07\n", - " Region: \"zone_3\"\tRelError: 2.67949e+01\tAbsError: 4.51525e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61657e+01\tAbsError: 2.54761e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03882e+01\tAbsError: 1.96764e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.41003e-01\tAbsError: 7.53940e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.15427e-10\tAbsError: 2.14199e-07\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.25381e+02\tAbsError: 7.27552e+15\n", - " Region: \"zone_1\"\tRelError: 1.16793e+01\tAbsError: 1.99937e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16789e+01\tAbsError: 6.76847e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.80427e-04\tAbsError: 1.32252e-01\n", - " Region: \"zone_3\"\tRelError: 1.13702e+02\tAbsError: 7.27552e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.96579e+01\tAbsError: 3.56588e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.38771e+01\tAbsError: 3.70964e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66530e-01\tAbsError: 6.76849e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.80427e-04\tAbsError: 1.32252e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.27823e+00\tAbsError: 8.68356e+15\n", - " Region: \"zone_1\"\tRelError: 1.88988e-01\tAbsError: 4.08652e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88944e-01\tAbsError: 2.57034e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.36930e-05\tAbsError: 1.51618e-02\n", - " Region: \"zone_3\"\tRelError: 1.08924e+00\tAbsError: 8.68356e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.90758e-01\tAbsError: 4.26881e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.47066e-01\tAbsError: 4.41475e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51374e-01\tAbsError: 2.52748e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.47625e-05\tAbsError: 1.55328e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.59636e+01\tAbsError: 9.97993e+16\n", - " Region: \"zone_1\"\tRelError: 4.40288e+01\tAbsError: 7.79837e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.40288e+01\tAbsError: 7.79815e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.54665e-09\tAbsError: 2.27445e-06\n", - " Region: \"zone_3\"\tRelError: 3.19348e+01\tAbsError: 9.97993e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19797e+01\tAbsError: 5.24562e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.96832e+01\tAbsError: 4.73431e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.71919e-01\tAbsError: 7.79815e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.54665e-09\tAbsError: 2.27445e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 6.70108e-01\tAbsError: 8.80223e+15\n", - " Region: \"zone_1\"\tRelError: 1.18953e-01\tAbsError: 1.56966e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18546e-01\tAbsError: 1.57804e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.06994e-04\tAbsError: 1.41186e-01\n", - " Region: \"zone_3\"\tRelError: 5.51155e-01\tAbsError: 8.80223e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.83768e-01\tAbsError: 4.18531e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.85569e-01\tAbsError: 4.61691e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.14117e-02\tAbsError: 1.57805e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.07123e-04\tAbsError: 1.41232e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.04468e+02\tAbsError: 1.94565e+16\n", - " Region: \"zone_1\"\tRelError: 1.33089e+00\tAbsError: 2.90662e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33026e+00\tAbsError: 7.09270e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.31969e-04\tAbsError: 2.19735e-01\n", - " Region: \"zone_3\"\tRelError: 3.03137e+02\tAbsError: 1.94565e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14106e+01\tAbsError: 1.05094e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.81537e+02\tAbsError: 8.94706e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88168e-01\tAbsError: 7.09271e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.31969e-04\tAbsError: 2.19735e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.21999e+02\tAbsError: 5.77042e+15\n", - " Region: \"zone_1\"\tRelError: 1.84527e+00\tAbsError: 8.08650e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.84522e+00\tAbsError: 6.21779e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.38134e-05\tAbsError: 1.86870e-02\n", - " Region: \"zone_3\"\tRelError: 1.20153e+02\tAbsError: 5.77042e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47805e+01\tAbsError: 2.59297e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.05233e+02\tAbsError: 3.17746e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39803e-01\tAbsError: 6.21780e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.38227e-05\tAbsError: 1.86907e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.63507e+02\tAbsError: 5.30277e+16\n", - " Region: \"zone_1\"\tRelError: 8.35852e+01\tAbsError: 4.44328e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 8.35841e+01\tAbsError: 7.38247e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06526e-03\tAbsError: 3.70503e-01\n", - " Region: \"zone_3\"\tRelError: 7.99220e+01\tAbsError: 5.30277e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.88005e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.07098e+01\tAbsError: 2.42271e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.11202e-01\tAbsError: 7.38248e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06526e-03\tAbsError: 3.70503e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.24591e+00\tAbsError: 3.26346e+15\n", - " Region: \"zone_1\"\tRelError: 1.80867e+00\tAbsError: 8.31621e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.80847e+00\tAbsError: 1.22663e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.04347e-04\tAbsError: 7.08958e-02\n", - " Region: \"zone_3\"\tRelError: 4.37234e-01\tAbsError: 3.26346e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.32552e-01\tAbsError: 1.73554e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.50687e-01\tAbsError: 1.52791e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.37915e-02\tAbsError: 1.22664e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.04553e-04\tAbsError: 7.09655e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.17815e-01\tAbsError: 1.58420e+15\n", - " Region: \"zone_1\"\tRelError: 4.13293e-02\tAbsError: 1.21701e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.09798e-02\tAbsError: 4.52349e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.49513e-04\tAbsError: 1.21249e-01\n", - " Region: \"zone_3\"\tRelError: 1.76486e-01\tAbsError: 1.58420e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.63825e-02\tAbsError: 9.43320e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.46672e-02\tAbsError: 6.40881e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.50863e-02\tAbsError: 4.79056e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.49530e-04\tAbsError: 1.21252e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.16103e+03\tAbsError: 9.66146e+15\n", - " Region: \"zone_1\"\tRelError: 2.70149e+00\tAbsError: 1.33956e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.70130e+00\tAbsError: 6.58786e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.95827e-04\tAbsError: 6.80778e-02\n", - " Region: \"zone_3\"\tRelError: 1.15833e+03\tAbsError: 9.66146e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.59756e+01\tAbsError: 2.60646e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.14219e+03\tAbsError: 7.05500e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.57544e-01\tAbsError: 6.58787e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.95827e-04\tAbsError: 6.80778e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 6.06291e+02\tAbsError: 4.01421e+14\n", - " Region: \"zone_1\"\tRelError: 1.10248e-01\tAbsError: 8.97582e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10150e-01\tAbsError: 5.58213e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.76059e-05\tAbsError: 3.39369e-02\n", - " Region: \"zone_3\"\tRelError: 6.06180e+02\tAbsError: 4.01421e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.98365e+02\tAbsError: 2.62317e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.70461e+00\tAbsError: 1.39104e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10110e-01\tAbsError: 5.58214e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.76059e-05\tAbsError: 3.39369e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.50763e+03\tAbsError: 2.23340e+16\n", - " Region: \"zone_1\"\tRelError: 6.44725e+00\tAbsError: 2.49092e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 6.44673e+00\tAbsError: 6.91599e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.17604e-04\tAbsError: 1.79932e-01\n", - " Region: \"zone_3\"\tRelError: 1.50119e+03\tAbsError: 2.23340e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.29257e+03\tAbsError: 8.51965e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.08393e+02\tAbsError: 1.38143e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.26018e-01\tAbsError: 6.91599e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.17604e-04\tAbsError: 1.79932e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.09725e-01\tAbsError: 5.66844e+14\n", - " Region: \"zone_1\"\tRelError: 9.74944e-02\tAbsError: 6.02281e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.73217e-02\tAbsError: 2.69090e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72760e-04\tAbsError: 5.99590e-02\n", - " Region: \"zone_3\"\tRelError: 1.12230e-01\tAbsError: 5.66844e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16841e-02\tAbsError: 3.36059e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.40653e-02\tAbsError: 2.30785e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.63081e-02\tAbsError: 2.86751e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72917e-04\tAbsError: 6.00120e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.10483e-02\tAbsError: 1.35513e+14\n", - " Region: \"zone_1\"\tRelError: 2.58322e-02\tAbsError: 2.48018e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.58252e-02\tAbsError: 3.80519e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.03965e-06\tAbsError: 2.44213e-03\n", - " Region: \"zone_3\"\tRelError: 5.52160e-02\tAbsError: 1.35513e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.20175e-03\tAbsError: 6.78200e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.94194e-03\tAbsError: 6.76932e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.90653e-02\tAbsError: 3.84912e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.05638e-06\tAbsError: 2.44787e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.46406e+03\tAbsError: 1.65999e+15\n", - " Region: \"zone_1\"\tRelError: 4.28617e-01\tAbsError: 1.04295e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.28490e-01\tAbsError: 6.01031e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27107e-04\tAbsError: 4.41918e-02\n", - " Region: \"zone_3\"\tRelError: 3.46363e+03\tAbsError: 1.65999e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.22098e+01\tAbsError: 1.04576e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.37130e+03\tAbsError: 6.14224e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.25668e-01\tAbsError: 6.01031e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27107e-04\tAbsError: 4.41918e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.20336e+03\tAbsError: 2.45508e+14\n", - " Region: \"zone_1\"\tRelError: 8.57374e-02\tAbsError: 4.98203e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.57333e-02\tAbsError: 4.83794e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14867e-06\tAbsError: 1.44089e-03\n", - " Region: \"zone_3\"\tRelError: 2.20327e+03\tAbsError: 2.45508e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14531e+03\tAbsError: 1.73130e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.78727e+01\tAbsError: 7.23779e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.58452e-02\tAbsError: 4.83794e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14867e-06\tAbsError: 1.44089e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.25272e+02\tAbsError: 6.60472e+15\n", - " Region: \"zone_1\"\tRelError: 2.27909e+00\tAbsError: 1.12504e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27895e+00\tAbsError: 6.38659e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.40057e-04\tAbsError: 4.86385e-02\n", - " Region: \"zone_3\"\tRelError: 4.22993e+02\tAbsError: 6.60472e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.16210e+01\tAbsError: 3.79266e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.41231e+02\tAbsError: 2.81205e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41418e-01\tAbsError: 6.38659e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.40177e-04\tAbsError: 4.86799e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.32859e-02\tAbsError: 3.83563e+13\n", - " Region: \"zone_1\"\tRelError: 8.24035e-03\tAbsError: 7.96612e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 8.23812e-03\tAbsError: 2.18441e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.23240e-06\tAbsError: 7.74768e-04\n", - " Region: \"zone_3\"\tRelError: 2.50456e-02\tAbsError: 3.83563e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.92826e-03\tAbsError: 1.79088e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.76021e-03\tAbsError: 2.04475e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.13549e-02\tAbsError: 2.23899e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.24276e-06\tAbsError: 7.78349e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 5.48813e-04\tAbsError: 1.88570e+12\n", - " Region: \"zone_1\"\tRelError: 1.45274e-04\tAbsError: 3.39970e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35478e-04\tAbsError: 1.22010e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.79649e-06\tAbsError: 3.39848e-03\n", - " Region: \"zone_3\"\tRelError: 4.03539e-04\tAbsError: 1.88570e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94628e-05\tAbsError: 9.77470e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.14796e-05\tAbsError: 9.08225e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.92798e-04\tAbsError: 1.23326e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.79900e-06\tAbsError: 3.39940e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 5.83067e+03\tAbsError: 5.92587e+14\n", - " Region: \"zone_1\"\tRelError: 1.88503e-01\tAbsError: 6.71506e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88463e-01\tAbsError: 5.34036e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.95381e-05\tAbsError: 1.37470e-02\n", - " Region: \"zone_3\"\tRelError: 5.83048e+03\tAbsError: 5.92587e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.74537e+03\tAbsError: 3.49738e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.50118e+01\tAbsError: 2.42848e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.98336e-02\tAbsError: 5.34037e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.95381e-05\tAbsError: 1.37470e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.77863e+01\tAbsError: 6.01969e+13\n", - " Region: \"zone_1\"\tRelError: 6.43140e-02\tAbsError: 4.43277e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.43003e-02\tAbsError: 3.95640e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37008e-05\tAbsError: 4.76374e-03\n", - " Region: \"zone_3\"\tRelError: 1.77220e+01\tAbsError: 6.01969e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.39628e+01\tAbsError: 3.74418e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.69466e+00\tAbsError: 2.27551e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.45263e-02\tAbsError: 3.95641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37008e-05\tAbsError: 4.76374e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.38541e+03\tAbsError: 6.79969e+14\n", - " Region: \"zone_1\"\tRelError: 1.13349e-01\tAbsError: 1.11530e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13194e-01\tAbsError: 5.77791e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54595e-04\tAbsError: 5.37513e-02\n", - " Region: \"zone_3\"\tRelError: 2.38530e+03\tAbsError: 6.79969e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.60459e+03\tAbsError: 2.66439e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.80597e+02\tAbsError: 4.13529e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13272e-01\tAbsError: 5.77792e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54595e-04\tAbsError: 5.37513e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.77352e-04\tAbsError: 7.13394e+11\n", - " Region: \"zone_1\"\tRelError: 2.80569e-04\tAbsError: 1.79321e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.75403e-04\tAbsError: 4.87828e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.16541e-06\tAbsError: 1.79273e-03\n", - " Region: \"zone_3\"\tRelError: 1.96783e-04\tAbsError: 7.13394e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.19881e-05\tAbsError: 4.92944e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.32443e-05\tAbsError: 2.20450e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46385e-04\tAbsError: 4.93945e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.16541e-06\tAbsError: 1.79273e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.92853e-03\tAbsError: 5.62124e+12\n", - " Region: \"zone_1\"\tRelError: 1.96532e-03\tAbsError: 1.96576e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.96476e-03\tAbsError: 1.37574e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.61379e-07\tAbsError: 1.95200e-04\n", - " Region: \"zone_3\"\tRelError: 3.96321e-03\tAbsError: 5.62124e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.25845e-04\tAbsError: 2.83157e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.24546e-04\tAbsError: 2.78967e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.71226e-03\tAbsError: 1.47660e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.61596e-07\tAbsError: 1.95273e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.08409e+02\tAbsError: 1.91699e+14\n", - " Region: \"zone_1\"\tRelError: 7.70948e-02\tAbsError: 5.30921e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.70730e-02\tAbsError: 4.55245e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17651e-05\tAbsError: 7.56764e-03\n", - " Region: \"zone_3\"\tRelError: 2.08332e+02\tAbsError: 1.91699e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05469e+02\tAbsError: 1.32563e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.78566e+00\tAbsError: 5.91361e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.73368e-02\tAbsError: 4.55246e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17651e-05\tAbsError: 7.56764e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 9.93223e+03\tAbsError: 1.22952e+13\n", - " Region: \"zone_1\"\tRelError: 4.57686e-02\tAbsError: 3.13053e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.57624e-02\tAbsError: 2.91306e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.26141e-06\tAbsError: 2.17471e-03\n", - " Region: \"zone_3\"\tRelError: 9.93219e+03\tAbsError: 1.22952e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.93152e+03\tAbsError: 6.28414e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.21409e-01\tAbsError: 6.01109e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.63288e-02\tAbsError: 2.91306e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.26141e-06\tAbsError: 2.17471e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.25988e+04\tAbsError: 5.24078e+14\n", - " Region: \"zone_1\"\tRelError: 1.49524e-01\tAbsError: 5.33198e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49516e-01\tAbsError: 5.06822e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.59452e-06\tAbsError: 2.63763e-03\n", - " Region: \"zone_3\"\tRelError: 1.25987e+04\tAbsError: 5.24078e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.25908e+04\tAbsError: 3.27064e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.78157e+00\tAbsError: 1.97014e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.90329e-02\tAbsError: 5.06822e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.59452e-06\tAbsError: 2.63763e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.49838e-03\tAbsError: 1.76569e+12\n", - " Region: \"zone_1\"\tRelError: 6.54941e-04\tAbsError: 9.30889e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.54675e-04\tAbsError: 8.39400e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.65787e-07\tAbsError: 9.22495e-05\n", - " Region: \"zone_3\"\tRelError: 1.84344e-03\tAbsError: 1.76569e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77494e-05\tAbsError: 8.82777e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.71860e-05\tAbsError: 8.82910e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.68824e-03\tAbsError: 8.40369e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.65787e-07\tAbsError: 9.22495e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 4.72762e-04\tAbsError: 3.41820e+11\n", - " Region: \"zone_1\"\tRelError: 1.58246e-04\tAbsError: 1.92506e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.57692e-04\tAbsError: 9.65722e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.54279e-07\tAbsError: 1.92410e-04\n", - " Region: \"zone_3\"\tRelError: 3.14516e-04\tAbsError: 3.41820e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.64023e-06\tAbsError: 1.71224e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.68076e-06\tAbsError: 1.70595e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.98641e-04\tAbsError: 1.03349e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.54407e-07\tAbsError: 1.92451e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.41194e+02\tAbsError: 5.68109e+13\n", - " Region: \"zone_1\"\tRelError: 5.66163e-02\tAbsError: 3.77625e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.66117e-02\tAbsError: 3.61717e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.58018e-06\tAbsError: 1.59077e-03\n", - " Region: \"zone_3\"\tRelError: 6.41138e+02\tAbsError: 5.68109e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33427e+02\tAbsError: 3.56087e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.07654e+02\tAbsError: 2.12022e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.69268e-02\tAbsError: 3.61718e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.58018e-06\tAbsError: 1.59077e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.11877e+00\tAbsError: 2.43618e+12\n", - " Region: \"zone_1\"\tRelError: 3.45248e-02\tAbsError: 2.79337e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.45156e-02\tAbsError: 2.47258e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.23616e-06\tAbsError: 3.20792e-03\n", - " Region: \"zone_3\"\tRelError: 1.08424e+00\tAbsError: 2.43618e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99948e-01\tAbsError: 1.31112e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.93315e-02\tAbsError: 1.12506e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.49530e-02\tAbsError: 2.47259e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.23616e-06\tAbsError: 3.20792e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.32327e+02\tAbsError: 1.48132e+14\n", - " Region: \"zone_1\"\tRelError: 6.77637e-02\tAbsError: 4.36000e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.77600e-02\tAbsError: 4.22992e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.74140e-06\tAbsError: 1.30085e-03\n", - " Region: \"zone_3\"\tRelError: 6.32260e+02\tAbsError: 1.48132e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.04050e+01\tAbsError: 1.03200e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.51786e+02\tAbsError: 4.49319e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.81931e-02\tAbsError: 4.22993e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.74140e-06\tAbsError: 1.30085e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.99060e-04\tAbsError: 9.07144e+10\n", - " Region: \"zone_1\"\tRelError: 5.32122e-05\tAbsError: 1.06982e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.29043e-05\tAbsError: 5.30299e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.07864e-07\tAbsError: 1.06929e-04\n", - " Region: \"zone_3\"\tRelError: 1.45848e-04\tAbsError: 9.07144e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37854e-06\tAbsError: 4.24042e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.42241e-06\tAbsError: 4.83102e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36739e-04\tAbsError: 5.34823e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.07966e-07\tAbsError: 1.06964e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.00550e-04\tAbsError: 3.20626e+11\n", - " Region: \"zone_1\"\tRelError: 1.33793e-04\tAbsError: 2.12224e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33732e-04\tAbsError: 7.08063e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.09330e-08\tAbsError: 2.11516e-05\n", - " Region: \"zone_3\"\tRelError: 2.66756e-04\tAbsError: 3.20626e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.21226e-06\tAbsError: 1.61400e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.10685e-06\tAbsError: 1.59226e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.52376e-04\tAbsError: 7.71568e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.09495e-08\tAbsError: 2.11573e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.07505e+00\tAbsError: 6.25389e+12\n", - " Region: \"zone_1\"\tRelError: 4.36529e-02\tAbsError: 2.95826e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.36423e-02\tAbsError: 2.58965e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06129e-05\tAbsError: 3.68607e-03\n", - " Region: \"zone_3\"\tRelError: 2.03140e+00\tAbsError: 6.25389e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.96580e-01\tAbsError: 1.78149e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.90898e-01\tAbsError: 4.47240e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.39096e-02\tAbsError: 2.58973e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06129e-05\tAbsError: 3.68607e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 9.51554e-01\tAbsError: 1.89582e+12\n", - " Region: \"zone_1\"\tRelError: 2.30110e-04\tAbsError: 6.58813e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.11154e-04\tAbsError: 4.13879e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.89561e-05\tAbsError: 6.58399e-03\n", - " Region: \"zone_3\"\tRelError: 9.51324e-01\tAbsError: 1.89582e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.49652e-01\tAbsError: 5.86158e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.60421e-03\tAbsError: 1.30967e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.88469e-05\tAbsError: 4.50711e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.89561e-05\tAbsError: 6.58399e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.09192e+00\tAbsError: 2.46218e+13\n", - " Region: \"zone_1\"\tRelError: 4.83263e-02\tAbsError: 3.71406e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.83125e-02\tAbsError: 3.23497e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37943e-05\tAbsError: 4.79093e-03\n", - " Region: \"zone_3\"\tRelError: 2.04359e+00\tAbsError: 2.46218e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99137e-01\tAbsError: 9.59394e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.95705e-01\tAbsError: 1.50279e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.87366e-02\tAbsError: 3.23497e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37943e-05\tAbsError: 4.79093e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.73943e-04\tAbsError: 1.07365e+11\n", - " Region: \"zone_1\"\tRelError: 4.60985e-05\tAbsError: 1.16082e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.60652e-05\tAbsError: 4.61233e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.32888e-08\tAbsError: 1.15620e-05\n", - " Region: \"zone_3\"\tRelError: 1.27845e-04\tAbsError: 1.07365e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.59108e-06\tAbsError: 6.01847e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.54678e-06\tAbsError: 4.71802e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18674e-04\tAbsError: 4.74794e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.32988e-08\tAbsError: 1.15655e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 5.47711e-05\tAbsError: 3.70815e+10\n", - " Region: \"zone_1\"\tRelError: 1.83966e-05\tAbsError: 1.25973e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.83604e-05\tAbsError: 8.35155e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.61935e-08\tAbsError: 1.25889e-05\n", - " Region: \"zone_3\"\tRelError: 3.63746e-05\tAbsError: 3.70815e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.32814e-07\tAbsError: 1.85960e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.27373e-07\tAbsError: 1.84855e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.46782e-05\tAbsError: 9.16153e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.62081e-08\tAbsError: 1.25941e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 9.27661e+02\tAbsError: 3.54994e+12\n", - " Region: \"zone_1\"\tRelError: 2.38776e-02\tAbsError: 2.12602e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.38666e-02\tAbsError: 1.74104e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10841e-05\tAbsError: 3.84976e-03\n", - " Region: \"zone_3\"\tRelError: 9.27637e+02\tAbsError: 3.54994e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.27595e+02\tAbsError: 1.74289e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.72650e-02\tAbsError: 1.80705e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.42829e-02\tAbsError: 1.74106e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10841e-05\tAbsError: 3.84976e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 3.89717e-03\tAbsError: 3.47997e+12\n", - " Region: \"zone_1\"\tRelError: 8.55125e-04\tAbsError: 1.16964e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 8.54801e-04\tAbsError: 4.36303e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.23842e-07\tAbsError: 1.12601e-04\n", - " Region: \"zone_3\"\tRelError: 3.04204e-03\tAbsError: 3.47997e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.47788e-04\tAbsError: 1.09617e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.59563e-04\tAbsError: 2.38380e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03437e-03\tAbsError: 4.40268e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.23842e-07\tAbsError: 1.12601e-04\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.42423e-05\tAbsError: 1.13845e+10\n", - " Region: \"zone_1\"\tRelError: 6.77172e-06\tAbsError: 7.06656e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.75139e-06\tAbsError: 5.42330e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.03301e-08\tAbsError: 7.06113e-06\n", - " Region: \"zone_3\"\tRelError: 1.74705e-05\tAbsError: 1.13845e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.20454e-07\tAbsError: 6.31987e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.20087e-07\tAbsError: 5.06458e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.64097e-05\tAbsError: 5.58892e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.03324e-08\tAbsError: 7.06195e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 9.11104e-01\tAbsError: 6.39403e+12\n", - " Region: \"zone_1\"\tRelError: 3.95295e-02\tAbsError: 3.01416e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.95166e-02\tAbsError: 2.56794e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.28475e-05\tAbsError: 4.46215e-03\n", - " Region: \"zone_3\"\tRelError: 8.71574e-01\tAbsError: 6.39403e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.22643e-01\tAbsError: 2.54350e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.08856e-01\tAbsError: 3.85053e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.00630e-02\tAbsError: 2.57518e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.28475e-05\tAbsError: 4.46215e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.01442e-04\tAbsError: 1.00519e+11\n", - " Region: \"zone_1\"\tRelError: 8.70773e-05\tAbsError: 2.27393e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 8.64229e-05\tAbsError: 1.01434e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.54379e-07\tAbsError: 2.27291e-04\n", - " Region: \"zone_3\"\tRelError: 2.14365e-04\tAbsError: 1.00519e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.62706e-05\tAbsError: 4.47105e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.33789e-05\tAbsError: 5.58084e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.84061e-04\tAbsError: 1.02591e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.54389e-07\tAbsError: 2.27297e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 9.98130e-01\tAbsError: 2.62533e+12\n", - " Region: \"zone_1\"\tRelError: 3.82333e-04\tAbsError: 6.10703e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.64779e-04\tAbsError: 9.96994e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75541e-05\tAbsError: 6.09706e-03\n", - " Region: \"zone_3\"\tRelError: 9.97748e-01\tAbsError: 2.62533e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.96506e-01\tAbsError: 8.87847e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.16735e-03\tAbsError: 1.73748e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.72863e-05\tAbsError: 1.05441e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75541e-05\tAbsError: 6.09706e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 9.47371e-01\tAbsError: 4.28530e+12\n", - " Region: \"zone_1\"\tRelError: 1.48935e-02\tAbsError: 1.65084e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.48782e-02\tAbsError: 1.11985e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52880e-05\tAbsError: 5.30987e-03\n", - " Region: \"zone_3\"\tRelError: 9.32478e-01\tAbsError: 4.28530e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.10570e-01\tAbsError: 1.95243e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.69199e-03\tAbsError: 2.33287e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51998e-02\tAbsError: 1.11987e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52880e-05\tAbsError: 5.30987e-03\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:58\u001b[0m.\u001b[1;36m352\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:58\u001b[0m.\u001b[1;36m385\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.9 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:58\u001b[0m.\u001b[1;36m415\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 3.12421e-04\tAbsError: 2.21889e+11\n", - " Region: \"zone_1\"\tRelError: 8.22854e-05\tAbsError: 2.08676e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 8.22259e-05\tAbsError: 1.72465e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.95208e-08\tAbsError: 2.06951e-05\n", - " Region: \"zone_3\"\tRelError: 2.30136e-04\tAbsError: 2.21889e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.20007e-05\tAbsError: 1.02564e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.18521e-05\tAbsError: 1.19326e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86224e-04\tAbsError: 1.74273e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.95335e-08\tAbsError: 2.07004e-05\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.47644e-03\tAbsError: 3.24054e+12\n", - " Region: \"zone_1\"\tRelError: 7.94661e-04\tAbsError: 8.94961e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.94416e-04\tAbsError: 4.03981e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.45773e-07\tAbsError: 8.54563e-05\n", - " Region: \"zone_3\"\tRelError: 2.68177e-03\tAbsError: 3.24054e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.67270e-04\tAbsError: 1.02396e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.23056e-04\tAbsError: 2.21658e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.89120e-03\tAbsError: 4.07680e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.45773e-07\tAbsError: 8.54563e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.11908e-01\tAbsError: 5.16826e+12\n", - " Region: \"zone_1\"\tRelError: 9.92569e-04\tAbsError: 6.44275e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 9.74107e-04\tAbsError: 3.01846e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84625e-05\tAbsError: 6.41257e-03\n", - " Region: \"zone_3\"\tRelError: 2.10915e-01\tAbsError: 5.16826e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.08472e-01\tAbsError: 1.83522e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.87614e-03\tAbsError: 3.33304e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.48673e-04\tAbsError: 3.03392e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84625e-05\tAbsError: 6.41257e-03\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:59\u001b[0m.\u001b[1;36m142\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:59\u001b[0m.\u001b[1;36m180\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.95 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:59\u001b[0m.\u001b[1;36m221\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 4.51573e+01\tAbsError: 5.73632e+17\n", - " Region: \"zone_1\"\tRelError: 2.42264e+01\tAbsError: 8.24921e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.42264e+01\tAbsError: 8.24901e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.73190e-09\tAbsError: 1.99366e-06\n", - " Region: \"zone_3\"\tRelError: 2.09309e+01\tAbsError: 5.73632e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.80469e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10902e+01\tAbsError: 2.93163e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 8.40641e-01\tAbsError: 8.24901e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.73416e-09\tAbsError: 1.99448e-06\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 4.17956e-05\tAbsError: 1.97290e+10\n", - " Region: \"zone_1\"\tRelError: 1.18661e-05\tAbsError: 1.49685e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18231e-05\tAbsError: 1.48864e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.30078e-08\tAbsError: 1.49536e-05\n", - " Region: \"zone_3\"\tRelError: 2.99295e-05\tAbsError: 1.97290e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01914e-06\tAbsError: 1.04404e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.01081e-06\tAbsError: 9.28869e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.58566e-05\tAbsError: 1.50609e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.30208e-08\tAbsError: 1.49586e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:59\u001b[0m.\u001b[1;36m721\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:35:59\u001b[0m.\u001b[1;36m721\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.20833333333333334\u001b[0m \n", - "Iteration: 11\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 2.60848e-04\tAbsError: 7.27867e+10\n", - " Region: \"zone_1\"\tRelError: 7.50893e-05\tAbsError: 2.09731e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.44857e-05\tAbsError: 7.59270e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.03603e-07\tAbsError: 2.09655e-04\n", - " Region: \"zone_3\"\tRelError: 1.85759e-04\tAbsError: 7.27867e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50933e-05\tAbsError: 3.42289e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.24436e-05\tAbsError: 3.85578e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.57619e-04\tAbsError: 7.67885e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.03618e-07\tAbsError: 2.09663e-04\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 3.66154e-03\tAbsError: 3.38692e+12\n", - " Region: \"zone_1\"\tRelError: 8.23270e-04\tAbsError: 5.50756e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 8.23124e-04\tAbsError: 4.23833e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.46208e-07\tAbsError: 5.08373e-05\n", - " Region: \"zone_3\"\tRelError: 2.83827e-03\tAbsError: 3.38692e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.27487e-04\tAbsError: 1.07437e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.47763e-04\tAbsError: 2.31254e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.96287e-03\tAbsError: 4.27713e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.46208e-07\tAbsError: 5.08373e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.04899e+02\tAbsError: 2.22519e+17\n", - " Region: \"zone_1\"\tRelError: 6.80302e+01\tAbsError: 8.03349e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.80302e+01\tAbsError: 8.03338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.23687e-09\tAbsError: 1.12425e-06\n", - " Region: \"zone_3\"\tRelError: 2.36869e+02\tAbsError: 2.22519e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.08226e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.27561e+02\tAbsError: 1.14293e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 3.07393e-01\tAbsError: 8.03338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.23715e-09\tAbsError: 1.12434e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.05786e+01\tAbsError: 3.90962e+17\n", - " Region: \"zone_1\"\tRelError: 7.44374e+00\tAbsError: 3.85122e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 7.44286e+00\tAbsError: 7.88298e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.81581e-04\tAbsError: 3.06292e-01\n", - " Region: \"zone_3\"\tRelError: 2.31349e+01\tAbsError: 3.90962e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.20845e+01\tAbsError: 1.91461e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.99501e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 2.04951e+00\tAbsError: 7.88298e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.81581e-04\tAbsError: 3.06292e-01\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 2.87569e-04\tAbsError: 2.04901e+11\n", - " Region: \"zone_1\"\tRelError: 7.57005e-05\tAbsError: 1.81146e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.56488e-05\tAbsError: 1.59044e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.16415e-08\tAbsError: 1.79555e-05\n", - " Region: \"zone_3\"\tRelError: 2.11869e-04\tAbsError: 2.04901e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.02801e-05\tAbsError: 9.47207e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.01434e-05\tAbsError: 1.10180e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.71394e-04\tAbsError: 1.60712e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.16551e-08\tAbsError: 1.79610e-05\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 2.22293e-04\tAbsError: 3.30869e+10\n", - " Region: \"zone_1\"\tRelError: 6.30972e-05\tAbsError: 2.17552e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.24710e-05\tAbsError: 4.60870e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.26207e-07\tAbsError: 2.17506e-04\n", - " Region: \"zone_3\"\tRelError: 1.59196e-04\tAbsError: 3.30869e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.57828e-05\tAbsError: 1.58467e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.30769e-05\tAbsError: 1.72402e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29710e-04\tAbsError: 4.66375e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.26215e-07\tAbsError: 2.17511e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.58703e+00\tAbsError: 9.04418e+15\n", - " Region: \"zone_1\"\tRelError: 1.92661e+00\tAbsError: 4.26164e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.92661e+00\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.45404e-09\tAbsError: 2.24417e-06\n", - " Region: \"zone_3\"\tRelError: 1.66042e+00\tAbsError: 9.04418e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83432e-01\tAbsError: 5.05936e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83363e-01\tAbsError: 3.98483e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.36246e-02\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.45579e-09\tAbsError: 2.24478e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 4.03354e+01\tAbsError: 1.45334e+17\n", - " Region: \"zone_1\"\tRelError: 2.05211e+01\tAbsError: 5.44014e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.05197e+01\tAbsError: 7.64428e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.34440e-03\tAbsError: 4.67571e-01\n", - " Region: \"zone_3\"\tRelError: 1.98143e+01\tAbsError: 1.45334e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02485e+01\tAbsError: 7.38983e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 7.14362e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 5.64509e-01\tAbsError: 7.64428e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.34619e-03\tAbsError: 4.68197e-01\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 3.69302e-05\tAbsError: 1.70378e+10\n", - " Region: \"zone_1\"\tRelError: 1.05164e-05\tAbsError: 1.37373e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04769e-05\tAbsError: 1.28711e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.94725e-08\tAbsError: 1.37244e-05\n", - " Region: \"zone_3\"\tRelError: 2.64138e-05\tAbsError: 1.70378e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.75140e-06\tAbsError: 9.08031e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.74451e-06\tAbsError: 7.95747e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.28784e-05\tAbsError: 1.30229e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.94844e-08\tAbsError: 1.37290e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:02\u001b[0m.\u001b[1;36m231\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.2\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 8.47490e+02\tAbsError: 1.27841e+17\n", - " Region: \"zone_1\"\tRelError: 1.17044e+00\tAbsError: 1.20401e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16720e+00\tAbsError: 7.47721e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.23989e-03\tAbsError: 1.12924e+00\n", - " Region: \"zone_3\"\tRelError: 8.46320e+02\tAbsError: 1.27841e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.64763e+01\tAbsError: 7.09434e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69485e+02\tAbsError: 5.68980e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.55471e-01\tAbsError: 7.47734e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.24142e-03\tAbsError: 1.12966e+00\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 2.95900e-04\tAbsError: 2.12250e+11\n", - " Region: \"zone_1\"\tRelError: 7.77472e-05\tAbsError: 1.62515e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.77010e-05\tAbsError: 1.64693e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.62658e-08\tAbsError: 1.60868e-05\n", - " Region: \"zone_3\"\tRelError: 2.18153e-04\tAbsError: 2.12250e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10257e-05\tAbsError: 9.81512e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.08823e-05\tAbsError: 1.14099e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76199e-04\tAbsError: 1.66424e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.62780e-08\tAbsError: 1.60913e-05\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.56197e+00\tAbsError: 3.41005e+14\n", - " Region: \"zone_1\"\tRelError: 7.42778e-02\tAbsError: 9.67927e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.40935e-02\tAbsError: 3.27224e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84300e-04\tAbsError: 6.40703e-02\n", - " Region: \"zone_3\"\tRelError: 1.48769e+00\tAbsError: 3.41005e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.62788e-01\tAbsError: 1.76260e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.57825e-01\tAbsError: 1.64745e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.68901e-02\tAbsError: 3.27228e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84300e-04\tAbsError: 6.40703e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.45968e+02\tAbsError: 5.46698e+16\n", - " Region: \"zone_1\"\tRelError: 1.20232e+00\tAbsError: 2.11631e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20192e+00\tAbsError: 7.21040e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.01760e-04\tAbsError: 1.39527e-01\n", - " Region: \"zone_3\"\tRelError: 1.44765e+02\tAbsError: 5.46698e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.07518e+01\tAbsError: 2.79405e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.37872e+01\tAbsError: 2.67293e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25797e-01\tAbsError: 7.21040e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.02283e-04\tAbsError: 1.39707e-01\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 3.43657e-05\tAbsError: 1.51208e+10\n", - " Region: \"zone_1\"\tRelError: 9.84464e-06\tAbsError: 1.40710e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 9.80420e-06\tAbsError: 1.16041e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.04359e-08\tAbsError: 1.40594e-05\n", - " Region: \"zone_3\"\tRelError: 2.45210e-05\tAbsError: 1.51208e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.57488e-06\tAbsError: 8.06094e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.56966e-06\tAbsError: 7.05983e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.13361e-05\tAbsError: 1.17422e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.04480e-08\tAbsError: 1.40640e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 7.26513e+02\tAbsError: 2.61970e+16\n", - " Region: \"zone_1\"\tRelError: 4.28289e+00\tAbsError: 1.05157e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 4.28006e+00\tAbsError: 7.02256e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.82352e-03\tAbsError: 9.81348e-01\n", - " Region: \"zone_3\"\tRelError: 7.22231e+02\tAbsError: 2.61970e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27009e+01\tAbsError: 1.26138e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.08947e+02\tAbsError: 1.35832e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 5.79421e-01\tAbsError: 7.02257e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.82352e-03\tAbsError: 9.81348e-01\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:03\u001b[0m.\u001b[1;36m693\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:03\u001b[0m.\u001b[1;36m693\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.20714285714285713\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.71665e+00\tAbsError: 8.34848e+15\n", - " Region: \"zone_1\"\tRelError: 2.08783e+00\tAbsError: 4.09562e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.08783e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.73741e-09\tAbsError: 1.99498e-06\n", - " Region: \"zone_3\"\tRelError: 1.62882e+00\tAbsError: 8.34848e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69544e-01\tAbsError: 4.67018e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69472e-01\tAbsError: 3.67830e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.98079e-02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.73892e-09\tAbsError: 1.99551e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.03390e+00\tAbsError: 4.16810e+13\n", - " Region: \"zone_1\"\tRelError: 5.13611e-02\tAbsError: 3.15350e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.13449e-02\tAbsError: 2.58934e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62282e-05\tAbsError: 5.64167e-03\n", - " Region: \"zone_3\"\tRelError: 9.82539e-01\tAbsError: 4.16810e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.79113e-01\tAbsError: 3.05006e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.51817e-01\tAbsError: 1.11804e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.15928e-02\tAbsError: 2.58971e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62282e-05\tAbsError: 5.64167e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.12673e+02\tAbsError: 1.53705e+16\n", - " Region: \"zone_1\"\tRelError: 5.06195e+00\tAbsError: 3.44130e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.06116e+00\tAbsError: 6.72141e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.96842e-04\tAbsError: 2.76915e-01\n", - " Region: \"zone_3\"\tRelError: 2.07611e+02\tAbsError: 1.53705e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.47712e+01\tAbsError: 8.09677e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.42682e+02\tAbsError: 7.27369e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.57154e-01\tAbsError: 6.72141e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.96842e-04\tAbsError: 2.76915e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 4.73206e+02\tAbsError: 3.66314e+15\n", - " Region: \"zone_1\"\tRelError: 2.06542e+00\tAbsError: 1.60031e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06514e+00\tAbsError: 6.50814e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.73108e-04\tAbsError: 9.49496e-02\n", - " Region: \"zone_3\"\tRelError: 4.71141e+02\tAbsError: 3.66314e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.58557e+02\tAbsError: 1.93985e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.11976e+02\tAbsError: 1.72329e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 6.06785e-01\tAbsError: 6.50815e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.73108e-04\tAbsError: 9.49496e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.60219e+00\tAbsError: 8.94480e+15\n", - " Region: \"zone_1\"\tRelError: 1.94666e+00\tAbsError: 4.23854e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.94666e+00\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.45611e-09\tAbsError: 1.89717e-06\n", - " Region: \"zone_3\"\tRelError: 1.65553e+00\tAbsError: 8.94480e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81552e-01\tAbsError: 5.00376e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.81482e-01\tAbsError: 3.94104e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.25006e-02\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.45755e-09\tAbsError: 1.89767e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.50135e+00\tAbsError: 2.91711e+14\n", - " Region: \"zone_1\"\tRelError: 6.56152e-02\tAbsError: 8.99300e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.54450e-02\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70192e-04\tAbsError: 5.91664e-02\n", - " Region: \"zone_3\"\tRelError: 1.43573e+00\tAbsError: 2.91711e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37693e-01\tAbsError: 1.49991e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32867e-01\tAbsError: 1.41720e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.50013e-02\tAbsError: 3.07641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70192e-04\tAbsError: 5.91664e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.43498e-01\tAbsError: 3.21382e+12\n", - " Region: \"zone_1\"\tRelError: 1.97019e-02\tAbsError: 1.49690e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.96925e-02\tAbsError: 1.17194e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.34753e-06\tAbsError: 3.24960e-03\n", - " Region: \"zone_3\"\tRelError: 3.23797e-01\tAbsError: 3.21382e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.36008e-01\tAbsError: 2.01560e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.78387e-02\tAbsError: 1.19822e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.99403e-02\tAbsError: 1.17194e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.35162e-06\tAbsError: 3.25108e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.14910e+03\tAbsError: 2.04407e+15\n", - " Region: \"zone_1\"\tRelError: 5.71463e-01\tAbsError: 2.34617e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.70965e-01\tAbsError: 6.16388e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.97509e-04\tAbsError: 1.72979e-01\n", - " Region: \"zone_3\"\tRelError: 2.14852e+03\tAbsError: 2.04407e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34986e+03\tAbsError: 1.29772e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.98463e+02\tAbsError: 7.46348e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.05158e-01\tAbsError: 6.16388e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.97509e-04\tAbsError: 1.72979e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.97407e+03\tAbsError: 3.02790e+15\n", - " Region: \"zone_1\"\tRelError: 1.06529e+00\tAbsError: 8.80521e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06521e+00\tAbsError: 5.91837e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.29279e-05\tAbsError: 2.88684e-02\n", - " Region: \"zone_3\"\tRelError: 2.97300e+03\tAbsError: 3.02790e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.51309e+02\tAbsError: 1.92031e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.62158e+03\tAbsError: 1.10759e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10085e-01\tAbsError: 5.91838e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.29699e-05\tAbsError: 2.88835e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.55313e+00\tAbsError: 3.33831e+14\n", - " Region: \"zone_1\"\tRelError: 7.29219e-02\tAbsError: 9.58119e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.27397e-02\tAbsError: 3.24496e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.82263e-04\tAbsError: 6.33622e-02\n", - " Region: \"zone_3\"\tRelError: 1.48020e+00\tAbsError: 3.33831e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.59573e-01\tAbsError: 1.72457e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.54195e-01\tAbsError: 1.61374e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.62545e-02\tAbsError: 3.24501e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.82263e-04\tAbsError: 6.33622e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.34092e-01\tAbsError: 3.63167e+13\n", - " Region: \"zone_1\"\tRelError: 4.74090e-02\tAbsError: 3.08415e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.73947e-02\tAbsError: 2.58899e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42431e-05\tAbsError: 4.95164e-03\n", - " Region: \"zone_3\"\tRelError: 8.86683e-01\tAbsError: 3.63167e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40041e-01\tAbsError: 2.66171e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.98905e-01\tAbsError: 9.69957e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.77237e-02\tAbsError: 2.58388e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42431e-05\tAbsError: 4.95164e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.71243e-02\tAbsError: 2.70156e+12\n", - " Region: \"zone_1\"\tRelError: 9.02595e-04\tAbsError: 2.64928e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 8.94971e-04\tAbsError: 1.55568e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.62398e-06\tAbsError: 2.64773e-03\n", - " Region: \"zone_3\"\tRelError: 7.62218e-02\tAbsError: 2.70156e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.36053e-02\tAbsError: 1.65880e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.79838e-04\tAbsError: 1.04276e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.42896e-03\tAbsError: 1.62853e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.62398e-06\tAbsError: 2.64773e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.03260e+02\tAbsError: 8.32195e+14\n", - " Region: \"zone_1\"\tRelError: 2.61910e-01\tAbsError: 7.68414e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.61848e-01\tAbsError: 5.51938e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.22632e-05\tAbsError: 2.16475e-02\n", - " Region: \"zone_3\"\tRelError: 4.02998e+02\tAbsError: 8.32195e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.42678e+02\tAbsError: 5.88353e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.02190e+01\tAbsError: 2.43842e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01300e-01\tAbsError: 5.51939e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.22632e-05\tAbsError: 2.16475e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.40047e+04\tAbsError: 4.49493e+14\n", - " Region: \"zone_1\"\tRelError: 8.73537e-02\tAbsError: 9.02032e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.72448e-02\tAbsError: 5.23288e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08938e-04\tAbsError: 3.78743e-02\n", - " Region: \"zone_3\"\tRelError: 4.40046e+04\tAbsError: 4.49493e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87099e+02\tAbsError: 2.63668e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.37175e+04\tAbsError: 1.85825e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.76009e-02\tAbsError: 5.23289e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08938e-04\tAbsError: 3.78743e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.02097e+00\tAbsError: 4.08584e+13\n", - " Region: \"zone_1\"\tRelError: 5.08907e-02\tAbsError: 3.14127e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.08748e-02\tAbsError: 2.58834e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59049e-05\tAbsError: 5.52929e-03\n", - " Region: \"zone_3\"\tRelError: 9.70077e-01\tAbsError: 4.08584e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73651e-01\tAbsError: 2.99028e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.45246e-01\tAbsError: 1.09556e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.11640e-02\tAbsError: 2.58996e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59049e-05\tAbsError: 5.52929e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.84661e-01\tAbsError: 3.60668e+12\n", - " Region: \"zone_1\"\tRelError: 1.51217e-02\tAbsError: 1.24486e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51123e-02\tAbsError: 9.16566e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.44333e-06\tAbsError: 3.28295e-03\n", - " Region: \"zone_3\"\tRelError: 2.69539e-01\tAbsError: 3.60668e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12296e-01\tAbsError: 2.19850e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.19182e-02\tAbsError: 1.40818e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.53153e-02\tAbsError: 9.16570e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.44333e-06\tAbsError: 3.28295e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.03129e-03\tAbsError: 1.30882e+12\n", - " Region: \"zone_1\"\tRelError: 1.71592e-04\tAbsError: 1.21225e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.71249e-04\tAbsError: 1.87177e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.42860e-07\tAbsError: 1.19353e-04\n", - " Region: \"zone_3\"\tRelError: 8.59698e-04\tAbsError: 1.30882e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.62718e-04\tAbsError: 3.58700e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.63159e-04\tAbsError: 9.50116e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.33478e-04\tAbsError: 1.87198e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.43020e-07\tAbsError: 1.19412e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.99477e+02\tAbsError: 1.64419e+14\n", - " Region: \"zone_1\"\tRelError: 7.79686e-02\tAbsError: 6.55201e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.79172e-02\tAbsError: 4.76397e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.14270e-05\tAbsError: 1.78804e-02\n", - " Region: \"zone_3\"\tRelError: 3.99399e+02\tAbsError: 1.64419e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.81466e+02\tAbsError: 9.03287e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.78544e+01\tAbsError: 7.40902e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.83657e-02\tAbsError: 4.76398e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.14270e-05\tAbsError: 1.78804e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.01826e+03\tAbsError: 2.61704e+14\n", - " Region: \"zone_1\"\tRelError: 7.59357e-02\tAbsError: 4.99197e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.59194e-02\tAbsError: 4.42519e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.63213e-05\tAbsError: 5.66780e-03\n", - " Region: \"zone_3\"\tRelError: 1.01818e+03\tAbsError: 2.61704e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00513e+03\tAbsError: 1.47036e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.29856e+01\tAbsError: 1.14668e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.78898e-02\tAbsError: 4.42520e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.63433e-05\tAbsError: 5.67561e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.31742e-01\tAbsError: 3.18634e+12\n", - " Region: \"zone_1\"\tRelError: 1.90077e-02\tAbsError: 1.45577e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.89985e-02\tAbsError: 1.13363e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.26664e-06\tAbsError: 3.22149e-03\n", - " Region: \"zone_3\"\tRelError: 3.12735e-01\tAbsError: 3.18634e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.29768e-01\tAbsError: 1.97921e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.37177e-02\tAbsError: 1.20713e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.92397e-02\tAbsError: 1.13363e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.27048e-06\tAbsError: 3.22288e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.15193e-02\tAbsError: 3.32526e+12\n", - " Region: \"zone_1\"\tRelError: 1.39859e-03\tAbsError: 2.06485e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39268e-03\tAbsError: 1.45910e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.90356e-06\tAbsError: 2.05026e-03\n", - " Region: \"zone_3\"\tRelError: 6.01207e-02\tAbsError: 3.32526e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.70409e-02\tAbsError: 2.05868e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.81916e-04\tAbsError: 1.26659e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49202e-03\tAbsError: 1.52371e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.90356e-06\tAbsError: 2.05026e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.36928e-04\tAbsError: 9.81205e+10\n", - " Region: \"zone_1\"\tRelError: 3.23153e-05\tAbsError: 7.81886e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.20903e-05\tAbsError: 5.65537e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.24962e-07\tAbsError: 7.81321e-05\n", - " Region: \"zone_3\"\tRelError: 1.04613e-04\tAbsError: 9.81205e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.45720e-06\tAbsError: 7.19535e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.38300e-06\tAbsError: 2.61671e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 8.95475e-05\tAbsError: 5.94976e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.25064e-07\tAbsError: 7.81656e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.96409e+02\tAbsError: 6.68527e+13\n", - " Region: \"zone_1\"\tRelError: 5.84302e-02\tAbsError: 4.24892e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.84192e-02\tAbsError: 3.86849e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.09539e-05\tAbsError: 3.80426e-03\n", - " Region: \"zone_3\"\tRelError: 5.96351e+02\tAbsError: 6.68527e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.88544e+02\tAbsError: 3.45664e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.74762e+00\tAbsError: 3.22862e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.88590e-02\tAbsError: 3.86850e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.09539e-05\tAbsError: 3.80426e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.30616e+02\tAbsError: 5.02085e+13\n", - " Region: \"zone_1\"\tRelError: 4.91483e-02\tAbsError: 4.53133e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.91176e-02\tAbsError: 3.46616e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.06722e-05\tAbsError: 1.06517e-02\n", - " Region: \"zone_3\"\tRelError: 1.30567e+02\tAbsError: 5.02085e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28276e+02\tAbsError: 3.22912e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.24066e+00\tAbsError: 1.79173e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.95443e-02\tAbsError: 3.46617e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.06722e-05\tAbsError: 1.06517e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.42804e-02\tAbsError: 2.67868e+12\n", - " Region: \"zone_1\"\tRelError: 9.10601e-04\tAbsError: 2.59909e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 9.03121e-04\tAbsError: 1.52325e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.47953e-06\tAbsError: 2.59757e-03\n", - " Region: \"zone_3\"\tRelError: 7.33698e-02\tAbsError: 2.67868e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.07907e-02\tAbsError: 1.63747e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.61085e-04\tAbsError: 1.04121e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.41051e-03\tAbsError: 1.60476e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.47953e-06\tAbsError: 2.59757e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.41545e-04\tAbsError: 9.91625e+11\n", - " Region: \"zone_1\"\tRelError: 9.96172e-05\tAbsError: 1.41216e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.92156e-05\tAbsError: 1.43586e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.01542e-07\tAbsError: 1.39780e-04\n", - " Region: \"zone_3\"\tRelError: 5.41928e-04\tAbsError: 9.91625e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33841e-04\tAbsError: 2.52723e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.19501e-04\tAbsError: 7.38901e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88184e-04\tAbsError: 1.43630e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.01697e-07\tAbsError: 1.39836e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 8.05460e-05\tAbsError: 7.23632e+10\n", - " Region: \"zone_1\"\tRelError: 1.78531e-05\tAbsError: 3.23123e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.78440e-05\tAbsError: 6.29009e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.10118e-09\tAbsError: 3.16833e-06\n", - " Region: \"zone_3\"\tRelError: 6.26929e-05\tAbsError: 7.23632e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.44791e-06\tAbsError: 2.95386e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.39399e-06\tAbsError: 4.28245e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.98419e-05\tAbsError: 6.30346e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.10613e-09\tAbsError: 3.17013e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:11\u001b[0m.\u001b[1;36m522\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:11\u001b[0m.\u001b[1;36m522\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.31666666666666665\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 8\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 1.50343e+00\tAbsError: 1.53730e+13\n", - " Region: \"zone_1\"\tRelError: 4.33572e-02\tAbsError: 3.51156e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.33370e-02\tAbsError: 2.81028e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.01921e-05\tAbsError: 7.01280e-03\n", - " Region: \"zone_3\"\tRelError: 1.46007e+00\tAbsError: 1.53730e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.95686e-01\tAbsError: 8.29728e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.20790e-01\tAbsError: 7.07575e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.35762e-02\tAbsError: 2.81030e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.01921e-05\tAbsError: 7.01280e-03\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.36741e+00\tAbsError: 1.62270e+13\n", - " Region: \"zone_1\"\tRelError: 3.93555e-02\tAbsError: 3.93757e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.93166e-02\tAbsError: 2.58717e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.88832e-05\tAbsError: 1.35040e-02\n", - " Region: \"zone_3\"\tRelError: 1.32805e+00\tAbsError: 1.62270e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.63434e-01\tAbsError: 4.27379e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.25261e-01\tAbsError: 1.19532e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.93166e-02\tAbsError: 2.57584e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.88832e-05\tAbsError: 1.35040e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.00690e-03\tAbsError: 1.28237e+12\n", - " Region: \"zone_1\"\tRelError: 1.69753e-04\tAbsError: 1.20834e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.69412e-04\tAbsError: 1.83530e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.41841e-07\tAbsError: 1.18999e-04\n", - " Region: \"zone_3\"\tRelError: 8.37147e-04\tAbsError: 1.28237e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.59291e-04\tAbsError: 3.50666e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.59888e-04\tAbsError: 9.31705e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.17626e-04\tAbsError: 1.83551e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.41999e-07\tAbsError: 1.19057e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.93092e-04\tAbsError: 1.20954e+11\n", - " Region: \"zone_1\"\tRelError: 5.19797e-05\tAbsError: 5.49654e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.18217e-05\tAbsError: 7.13657e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.58052e-07\tAbsError: 5.48940e-05\n", - " Region: \"zone_3\"\tRelError: 1.41112e-04\tAbsError: 1.20954e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98268e-06\tAbsError: 8.30723e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.89183e-06\tAbsError: 3.78820e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21079e-04\tAbsError: 7.51102e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.58052e-07\tAbsError: 5.48940e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.41610e+04\tAbsError: 7.17639e+12\n", - " Region: \"zone_1\"\tRelError: 2.96810e-02\tAbsError: 3.09975e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.96569e-02\tAbsError: 2.26509e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.40320e-05\tAbsError: 8.34661e-03\n", - " Region: \"zone_3\"\tRelError: 2.41610e+04\tAbsError: 7.17639e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.41609e+04\tAbsError: 2.45259e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.27385e-02\tAbsError: 4.72381e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.01714e-02\tAbsError: 2.26511e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.40320e-05\tAbsError: 8.34661e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.51593e+01\tAbsError: 8.96838e+15\n", - " Region: \"zone_1\"\tRelError: 1.34866e+01\tAbsError: 4.26184e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.34866e+01\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19321e-08\tAbsError: 4.14799e-06\n", - " Region: \"zone_3\"\tRelError: 1.67273e+00\tAbsError: 8.96838e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83521e-01\tAbsError: 5.18188e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83502e-01\tAbsError: 3.78650e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.05705e-01\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19332e-08\tAbsError: 4.14842e-06\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.12376e-01\tAbsError: 1.32407e+13\n", - " Region: \"zone_1\"\tRelError: 1.86149e-02\tAbsError: 3.04927e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.85695e-02\tAbsError: 1.47195e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.54157e-05\tAbsError: 1.57733e-02\n", - " Region: \"zone_3\"\tRelError: 2.93761e-01\tAbsError: 1.32407e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.66530e-01\tAbsError: 2.89957e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.33838e-03\tAbsError: 1.03411e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88480e-02\tAbsError: 1.47197e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.54157e-05\tAbsError: 1.57733e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.38268e-04\tAbsError: 9.80909e+10\n", - " Region: \"zone_1\"\tRelError: 3.31894e-05\tAbsError: 7.64321e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.29695e-05\tAbsError: 5.65440e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19904e-07\tAbsError: 7.63755e-05\n", - " Region: \"zone_3\"\tRelError: 1.05079e-04\tAbsError: 9.80909e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.48584e-06\tAbsError: 7.16917e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.41212e-06\tAbsError: 2.63992e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 8.99609e-05\tAbsError: 5.94850e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19998e-07\tAbsError: 7.64063e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.80740e-05\tAbsError: 4.88620e+10\n", - " Region: \"zone_1\"\tRelError: 1.14716e-05\tAbsError: 6.01747e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14544e-05\tAbsError: 4.42564e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71588e-08\tAbsError: 5.97321e-06\n", - " Region: \"zone_3\"\tRelError: 3.66024e-05\tAbsError: 4.88620e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37844e-06\tAbsError: 1.78074e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.34110e-06\tAbsError: 3.10546e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78657e-05\tAbsError: 4.43686e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71664e-08\tAbsError: 5.97601e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:13\u001b[0m.\u001b[1;36m942\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:13\u001b[0m.\u001b[1;36m942\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.00256e+00\tAbsError: 6.29281e+12\n", - " Region: \"zone_1\"\tRelError: 7.36212e-04\tAbsError: 1.59319e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.90387e-04\tAbsError: 1.56092e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.58248e-05\tAbsError: 1.59163e-02\n", - " Region: \"zone_3\"\tRelError: 1.00182e+00\tAbsError: 6.29281e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99900e-01\tAbsError: 1.62050e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.58212e-03\tAbsError: 4.67230e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.95706e-04\tAbsError: 1.65113e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.58248e-05\tAbsError: 1.59163e-02\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 2.00504e-02\tAbsError: 1.36312e+13\n", - " Region: \"zone_1\"\tRelError: 1.67906e-03\tAbsError: 2.32575e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.61222e-03\tAbsError: 4.44749e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.68327e-05\tAbsError: 2.32131e-02\n", - " Region: \"zone_3\"\tRelError: 1.83714e-02\tAbsError: 1.36312e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46967e-02\tAbsError: 3.48400e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.86261e-03\tAbsError: 1.01472e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.45246e-04\tAbsError: 4.46143e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.68327e-05\tAbsError: 2.32131e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.61981e+00\tAbsError: 3.38008e+14\n", - " Region: \"zone_1\"\tRelError: 1.16883e-01\tAbsError: 9.15205e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16713e-01\tAbsError: 3.27224e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69163e-04\tAbsError: 5.87981e-02\n", - " Region: \"zone_3\"\tRelError: 1.50293e+00\tAbsError: 3.38008e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.63193e-01\tAbsError: 2.12677e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.58118e-01\tAbsError: 1.25331e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.14513e-02\tAbsError: 3.27228e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69163e-04\tAbsError: 5.87981e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 7.86748e-05\tAbsError: 7.06440e+10\n", - " Region: \"zone_1\"\tRelError: 1.77064e-05\tAbsError: 3.31365e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76970e-05\tAbsError: 6.14599e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.34205e-09\tAbsError: 3.25219e-06\n", - " Region: \"zone_3\"\tRelError: 6.09684e-05\tAbsError: 7.06440e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.30255e-06\tAbsError: 2.87455e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.24987e-06\tAbsError: 4.18985e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.84067e-05\tAbsError: 6.15954e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.34693e-09\tAbsError: 3.25397e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:15\u001b[0m.\u001b[1;36m252\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:15\u001b[0m.\u001b[1;36m252\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.3142857142857143\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 9.12538e-03\tAbsError: 8.29355e+12\n", - " Region: \"zone_1\"\tRelError: 2.08099e-03\tAbsError: 2.64686e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.08026e-03\tAbsError: 1.04771e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.31107e-07\tAbsError: 2.54209e-04\n", - " Region: \"zone_3\"\tRelError: 7.04439e-03\tAbsError: 8.29355e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.92988e-04\tAbsError: 2.67109e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10434e-03\tAbsError: 5.62246e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.94633e-03\tAbsError: 1.05727e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.31107e-07\tAbsError: 2.54209e-04\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.29649e+01\tAbsError: 8.28032e+15\n", - " Region: \"zone_1\"\tRelError: 1.13261e+01\tAbsError: 4.09567e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13261e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.18696e-09\tAbsError: 2.49605e-06\n", - " Region: \"zone_3\"\tRelError: 1.63880e+00\tAbsError: 8.28032e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69633e-01\tAbsError: 4.77284e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.50748e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.95556e-02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.18788e-09\tAbsError: 2.49640e-06\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.34158e-02\tAbsError: 1.19582e+13\n", - " Region: \"zone_1\"\tRelError: 3.01432e-03\tAbsError: 2.59188e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.01362e-03\tAbsError: 1.51937e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.01730e-07\tAbsError: 2.43995e-04\n", - " Region: \"zone_3\"\tRelError: 1.04015e-02\tAbsError: 1.19582e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61556e-03\tAbsError: 3.90956e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.61419e-03\tAbsError: 8.04867e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.17105e-03\tAbsError: 1.53319e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.01730e-07\tAbsError: 2.43995e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.06676e+00\tAbsError: 5.12834e+13\n", - " Region: \"zone_1\"\tRelError: 6.50919e-02\tAbsError: 3.26334e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.50725e-02\tAbsError: 2.58998e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93722e-05\tAbsError: 6.73357e-03\n", - " Region: \"zone_3\"\tRelError: 1.00167e+00\tAbsError: 5.12834e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.79460e-01\tAbsError: 3.67676e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.56350e-01\tAbsError: 1.45158e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.58436e-02\tAbsError: 2.58998e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93722e-05\tAbsError: 6.73357e-03\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 7.21813e-04\tAbsError: 2.25467e+11\n", - " Region: \"zone_1\"\tRelError: 2.08779e-04\tAbsError: 5.42838e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.07217e-04\tAbsError: 2.20109e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.56221e-06\tAbsError: 5.42618e-04\n", - " Region: \"zone_3\"\tRelError: 5.13033e-04\tAbsError: 2.25467e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.86463e-05\tAbsError: 1.06489e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.23441e-05\tAbsError: 1.18978e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.40481e-04\tAbsError: 2.22554e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.56221e-06\tAbsError: 5.42618e-04\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 9.02425e-04\tAbsError: 1.99437e+11\n", - " Region: \"zone_1\"\tRelError: 2.58845e-04\tAbsError: 7.78826e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.56603e-04\tAbsError: 2.13625e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.24165e-06\tAbsError: 7.78612e-04\n", - " Region: \"zone_3\"\tRelError: 6.43580e-04\tAbsError: 1.99437e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.56078e-05\tAbsError: 9.74981e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.71798e-05\tAbsError: 1.01939e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.38550e-04\tAbsError: 2.16344e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.24165e-06\tAbsError: 7.78612e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.07146e+01\tAbsError: 8.87010e+15\n", - " Region: \"zone_1\"\tRelError: 1.90470e+01\tAbsError: 4.23875e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.90470e+01\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.16096e-08\tAbsError: 4.03587e-06\n", - " Region: \"zone_3\"\tRelError: 1.66756e+00\tAbsError: 8.87010e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81640e-01\tAbsError: 5.12336e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.81621e-01\tAbsError: 3.74674e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04297e-01\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.16105e-08\tAbsError: 4.03627e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.56865e+00\tAbsError: 2.86625e+14\n", - " Region: \"zone_1\"\tRelError: 1.21045e-01\tAbsError: 8.55195e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20888e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", - " Region: \"zone_3\"\tRelError: 1.44761e+00\tAbsError: 2.86625e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38556e-01\tAbsError: 1.75436e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32332e-01\tAbsError: 1.11189e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.65613e-02\tAbsError: 3.07640e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.56380e-01\tAbsError: 9.04740e+12\n", - " Region: \"zone_1\"\tRelError: 2.49262e-02\tAbsError: 1.46131e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49178e-02\tAbsError: 1.17194e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.32536e-06\tAbsError: 2.89371e-03\n", - " Region: \"zone_3\"\tRelError: 3.31454e-01\tAbsError: 9.04740e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.35521e-01\tAbsError: 4.40011e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.07755e-02\tAbsError: 4.64729e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.51491e-02\tAbsError: 1.17194e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.32897e-06\tAbsError: 2.89505e-03\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 7.51484e-04\tAbsError: 5.30342e+11\n", - " Region: \"zone_1\"\tRelError: 1.98140e-04\tAbsError: 4.91935e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.98000e-04\tAbsError: 4.10646e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.40303e-07\tAbsError: 4.87829e-05\n", - " Region: \"zone_3\"\tRelError: 5.53344e-04\tAbsError: 5.30342e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.26355e-05\tAbsError: 2.47265e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.22787e-05\tAbsError: 2.83078e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.48289e-04\tAbsError: 4.14967e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.40344e-07\tAbsError: 4.87992e-05\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 1.07606e-03\tAbsError: 7.60704e+11\n", - " Region: \"zone_1\"\tRelError: 2.83483e-04\tAbsError: 6.31258e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.83303e-04\tAbsError: 5.87620e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.79864e-07\tAbsError: 6.25382e-05\n", - " Region: \"zone_3\"\tRelError: 7.92573e-04\tAbsError: 7.60704e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.55839e-05\tAbsError: 3.56391e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.50650e-05\tAbsError: 4.04313e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 6.41744e-04\tAbsError: 5.93824e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.79923e-07\tAbsError: 6.25610e-05\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.65224e+00\tAbsError: 3.30458e+14\n", - " Region: \"zone_1\"\tRelError: 1.57009e-01\tAbsError: 9.06724e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.56841e-01\tAbsError: 3.24496e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67507e-04\tAbsError: 5.82228e-02\n", - " Region: \"zone_3\"\tRelError: 1.49523e+00\tAbsError: 3.30458e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.59966e-01\tAbsError: 2.07139e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.54489e-01\tAbsError: 1.23319e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.06062e-02\tAbsError: 3.24500e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67507e-04\tAbsError: 5.82228e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.63437e-01\tAbsError: 3.66677e+13\n", - " Region: \"zone_1\"\tRelError: 5.93231e-02\tAbsError: 3.16919e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.93064e-02\tAbsError: 2.58707e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", - " Region: \"zone_3\"\tRelError: 9.04114e-01\tAbsError: 3.66677e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40101e-01\tAbsError: 2.63702e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.04471e-01\tAbsError: 1.02975e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95256e-02\tAbsError: 2.58992e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 9.94176e-05\tAbsError: 4.63529e+10\n", - " Region: \"zone_1\"\tRelError: 2.82717e-05\tAbsError: 3.58236e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.81688e-05\tAbsError: 3.47638e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.02932e-07\tAbsError: 3.57889e-05\n", - " Region: \"zone_3\"\tRelError: 7.11459e-05\tAbsError: 4.63529e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.74636e-06\tAbsError: 2.47913e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.72724e-06\tAbsError: 2.15617e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 6.15693e-05\tAbsError: 3.51735e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.02964e-07\tAbsError: 3.58017e-05\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.71858e-02\tAbsError: 2.48975e+12\n", - " Region: \"zone_1\"\tRelError: 4.95435e-04\tAbsError: 1.88796e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 4.90019e-04\tAbsError: 7.50834e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.41520e-06\tAbsError: 1.88045e-03\n", - " Region: \"zone_3\"\tRelError: 7.66904e-02\tAbsError: 2.48975e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.37927e-02\tAbsError: 1.70657e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.15461e-04\tAbsError: 7.83185e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.37684e-03\tAbsError: 8.21515e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.41520e-06\tAbsError: 1.88045e-03\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:18\u001b[0m.\u001b[1;36m902\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.20625\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 1.31491e-04\tAbsError: 5.90327e+10\n", - " Region: \"zone_1\"\tRelError: 3.75774e-05\tAbsError: 5.09852e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.74309e-05\tAbsError: 4.46319e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.46509e-07\tAbsError: 5.09406e-05\n", - " Region: \"zone_3\"\tRelError: 9.39133e-05\tAbsError: 5.90327e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.09582e-06\tAbsError: 3.17063e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.07438e-06\tAbsError: 2.73264e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 8.15965e-05\tAbsError: 4.51622e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.46557e-07\tAbsError: 5.09593e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.05263e+00\tAbsError: 4.89278e+13\n", - " Region: \"zone_1\"\tRelError: 6.39420e-02\tAbsError: 3.23900e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.39231e-02\tAbsError: 2.57993e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.89612e-05\tAbsError: 6.59072e-03\n", - " Region: \"zone_3\"\tRelError: 9.88693e-01\tAbsError: 4.89278e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.74016e-01\tAbsError: 3.50971e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.49565e-01\tAbsError: 1.38306e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.50930e-02\tAbsError: 2.58802e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.89612e-05\tAbsError: 6.59072e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.93334e-01\tAbsError: 6.56738e+12\n", - " Region: \"zone_1\"\tRelError: 1.86981e-02\tAbsError: 1.19586e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86900e-02\tAbsError: 9.16562e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03535e-06\tAbsError: 2.79297e-03\n", - " Region: \"zone_3\"\tRelError: 2.74636e-01\tAbsError: 6.56738e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11907e-01\tAbsError: 3.29549e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.38500e-02\tAbsError: 3.27189e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88710e-02\tAbsError: 9.16566e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03753e-06\tAbsError: 2.79381e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.10907e-04\tAbsError: 9.14094e+11\n", - " Region: \"zone_1\"\tRelError: 7.15278e-05\tAbsError: 1.30119e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.11580e-05\tAbsError: 1.37277e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.69875e-07\tAbsError: 1.28746e-04\n", - " Region: \"zone_3\"\tRelError: 4.39379e-04\tAbsError: 9.14094e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03940e-04\tAbsError: 2.24049e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.64320e-05\tAbsError: 6.90046e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.38638e-04\tAbsError: 1.37888e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.70033e-07\tAbsError: 1.28803e-04\n", - "Iteration: 16\n", - " Device: \"device\"\tRelError: 8.12362e-05\tAbsError: 4.99851e+10\n", - " Region: \"zone_1\"\tRelError: 2.21078e-05\tAbsError: 7.18095e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20873e-05\tAbsError: 3.43586e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.05530e-08\tAbsError: 7.14659e-06\n", - " Region: \"zone_3\"\tRelError: 5.91283e-05\tAbsError: 4.99851e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.81529e-06\tAbsError: 2.69257e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.77928e-06\tAbsError: 2.30594e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.95132e-05\tAbsError: 3.47436e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.05582e-08\tAbsError: 7.14842e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:20\u001b[0m.\u001b[1;36m634\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.2\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Iteration: 0\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 3.61409e+00\tAbsError: 8.87025e+15\n", - " Region: \"zone_1\"\tRelError: 1.96227e+00\tAbsError: 4.22144e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.96227e+00\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.53160e-08\tAbsError: 5.32561e-06\n", - " Region: \"zone_3\"\tRelError: 1.65183e+00\tAbsError: 8.87025e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80120e-01\tAbsError: 4.96206e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.80050e-01\tAbsError: 3.90819e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.16591e-02\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.53200e-08\tAbsError: 5.32700e-06\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.43950e-01\tAbsError: 8.64627e+12\n", - " Region: \"zone_1\"\tRelError: 2.39638e-02\tAbsError: 1.42586e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.39554e-02\tAbsError: 1.13362e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.40795e-06\tAbsError: 2.92243e-03\n", - " Region: \"zone_3\"\tRelError: 3.19986e-01\tAbsError: 8.64627e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.29295e-01\tAbsError: 4.22448e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.65001e-02\tAbsError: 4.42180e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.41829e-02\tAbsError: 1.13362e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.41081e-06\tAbsError: 2.92350e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.00158e-02\tAbsError: 2.47729e+12\n", - " Region: \"zone_1\"\tRelError: 6.29744e-04\tAbsError: 1.66755e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.24968e-04\tAbsError: 8.94858e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", - " Region: \"zone_3\"\tRelError: 5.93860e-02\tAbsError: 2.47729e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.68115e-02\tAbsError: 1.70064e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.91678e-04\tAbsError: 7.76647e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27809e-03\tAbsError: 9.43816e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.52706e-04\tAbsError: 1.10689e+11\n", - " Region: \"zone_1\"\tRelError: 2.31976e-05\tAbsError: 5.03793e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.30527e-05\tAbsError: 6.72451e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.44875e-07\tAbsError: 5.03120e-05\n", - " Region: \"zone_3\"\tRelError: 1.29508e-04\tAbsError: 1.10689e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80539e-06\tAbsError: 7.67002e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.73296e-06\tAbsError: 3.39885e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13825e-04\tAbsError: 7.02938e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.44875e-07\tAbsError: 5.03120e-05\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.54654e+00\tAbsError: 3.28495e+14\n", - " Region: \"zone_1\"\tRelError: 7.19115e-02\tAbsError: 9.50734e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.17307e-02\tAbsError: 3.22436e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.80731e-04\tAbsError: 6.28298e-02\n", - " Region: \"zone_3\"\tRelError: 1.47463e+00\tAbsError: 3.28495e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57124e-01\tAbsError: 1.69631e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.51422e-01\tAbsError: 1.58864e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.59065e-02\tAbsError: 3.22440e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.80731e-04\tAbsError: 6.28298e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.71665e+00\tAbsError: 8.34849e+15\n", - " Region: \"zone_1\"\tRelError: 2.08783e+00\tAbsError: 4.09579e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.08783e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.04731e-08\tAbsError: 3.64165e-06\n", - " Region: \"zone_3\"\tRelError: 1.62882e+00\tAbsError: 8.34849e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69544e-01\tAbsError: 4.67018e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69471e-01\tAbsError: 3.67831e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.98079e-02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.04757e-08\tAbsError: 3.64256e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.43999e-02\tAbsError: 2.50743e+12\n", - " Region: \"zone_1\"\tRelError: 5.75118e-04\tAbsError: 1.79845e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.69963e-04\tAbsError: 8.13347e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.15562e-06\tAbsError: 1.79032e-03\n", - " Region: \"zone_3\"\tRelError: 7.38248e-02\tAbsError: 2.50743e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.09416e-02\tAbsError: 1.74296e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.77666e-04\tAbsError: 7.64461e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.40034e-03\tAbsError: 8.85193e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.15562e-06\tAbsError: 1.79032e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.31240e-04\tAbsError: 7.97937e+11\n", - " Region: \"zone_1\"\tRelError: 7.54533e-05\tAbsError: 1.27890e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.50894e-05\tAbsError: 1.20855e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.63943e-07\tAbsError: 1.26681e-04\n", - " Region: \"zone_3\"\tRelError: 3.55787e-04\tAbsError: 7.97937e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.38045e-05\tAbsError: 1.92064e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.48742e-05\tAbsError: 6.05872e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76744e-04\tAbsError: 1.21338e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.64089e-07\tAbsError: 1.26735e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.67402e-05\tAbsError: 4.44671e+10\n", - " Region: \"zone_1\"\tRelError: 5.00968e-06\tAbsError: 5.56992e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.99380e-06\tAbsError: 4.22760e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.58803e-08\tAbsError: 5.52764e-06\n", - " Region: \"zone_3\"\tRelError: 3.17305e-05\tAbsError: 4.44671e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.48788e-06\tAbsError: 1.56747e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.45722e-06\tAbsError: 2.87924e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.47695e-05\tAbsError: 4.23466e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.58876e-08\tAbsError: 5.53032e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:23\u001b[0m.\u001b[1;36m243\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:23\u001b[0m.\u001b[1;36m243\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.42500000000000004\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.01137e+00\tAbsError: 4.02464e+13\n", - " Region: \"zone_1\"\tRelError: 5.08084e-02\tAbsError: 3.13392e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.07928e-02\tAbsError: 2.58948e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.56605e-05\tAbsError: 5.44435e-03\n", - " Region: \"zone_3\"\tRelError: 9.60566e-01\tAbsError: 4.02464e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.69512e-01\tAbsError: 2.94578e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.40217e-01\tAbsError: 1.07885e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.08220e-02\tAbsError: 2.58948e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.56605e-05\tAbsError: 5.44435e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.50135e+00\tAbsError: 2.91713e+14\n", - " Region: \"zone_1\"\tRelError: 6.56152e-02\tAbsError: 8.99315e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.54450e-02\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70196e-04\tAbsError: 5.91678e-02\n", - " Region: \"zone_3\"\tRelError: 1.43573e+00\tAbsError: 2.91713e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37692e-01\tAbsError: 1.49991e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32867e-01\tAbsError: 1.41722e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.50013e-02\tAbsError: 3.07641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70196e-04\tAbsError: 5.91678e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.87646e-04\tAbsError: 8.67749e+11\n", - " Region: \"zone_1\"\tRelError: 9.48770e-05\tAbsError: 1.33724e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.44966e-05\tAbsError: 1.30548e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.80432e-07\tAbsError: 1.32419e-04\n", - " Region: \"zone_3\"\tRelError: 3.92769e-04\tAbsError: 8.67749e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99341e-05\tAbsError: 2.09226e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.08980e-05\tAbsError: 6.58523e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.01556e-04\tAbsError: 1.31118e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.80586e-07\tAbsError: 1.32476e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.53826e-04\tAbsError: 1.09912e+11\n", - " Region: \"zone_1\"\tRelError: 2.29821e-05\tAbsError: 4.27473e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.28592e-05\tAbsError: 6.65170e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", - " Region: \"zone_3\"\tRelError: 1.30844e-04\tAbsError: 1.09912e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.01681e-06\tAbsError: 7.52234e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94349e-06\tAbsError: 3.46881e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14760e-04\tAbsError: 6.98367e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.23075e-01\tAbsError: 3.16705e+12\n", - " Region: \"zone_1\"\tRelError: 1.84960e-02\tAbsError: 1.42995e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.84867e-02\tAbsError: 1.10528e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.33912e-06\tAbsError: 3.24669e-03\n", - " Region: \"zone_3\"\tRelError: 3.04579e-01\tAbsError: 3.16705e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.25074e-01\tAbsError: 1.95756e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.07733e-02\tAbsError: 1.20949e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87230e-02\tAbsError: 1.10529e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.34182e-06\tAbsError: 3.24769e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.40360e+00\tAbsError: 8.93831e+15\n", - " Region: \"zone_1\"\tRelError: 3.72095e+00\tAbsError: 4.26165e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.72095e+00\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.53609e-09\tAbsError: 2.26975e-06\n", - " Region: \"zone_3\"\tRelError: 1.68266e+00\tAbsError: 8.93831e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83544e-01\tAbsError: 5.27519e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83519e-01\tAbsError: 3.66312e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15595e-01\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.53754e-09\tAbsError: 2.27028e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.34092e-01\tAbsError: 3.63177e+13\n", - " Region: \"zone_1\"\tRelError: 4.74090e-02\tAbsError: 3.08419e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.73947e-02\tAbsError: 2.58899e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42440e-05\tAbsError: 4.95195e-03\n", - " Region: \"zone_3\"\tRelError: 8.86683e-01\tAbsError: 3.63177e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40041e-01\tAbsError: 2.66179e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.98905e-01\tAbsError: 9.69979e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.77237e-02\tAbsError: 2.58388e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42440e-05\tAbsError: 4.95195e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.59899e-04\tAbsError: 1.14890e+11\n", - " Region: \"zone_1\"\tRelError: 2.42180e-05\tAbsError: 4.68879e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.40832e-05\tAbsError: 6.97131e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.34814e-07\tAbsError: 4.68182e-05\n", - " Region: \"zone_3\"\tRelError: 1.35681e-04\tAbsError: 1.14890e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.20069e-06\tAbsError: 7.87113e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.12587e-06\tAbsError: 3.61787e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19220e-04\tAbsError: 7.29649e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.34814e-07\tAbsError: 4.68182e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.84860e-05\tAbsError: 3.70987e+10\n", - " Region: \"zone_1\"\tRelError: 3.74711e-06\tAbsError: 5.87951e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.73032e-06\tAbsError: 3.58594e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67880e-08\tAbsError: 5.84365e-06\n", - " Region: \"zone_3\"\tRelError: 2.47389e-05\tAbsError: 3.70987e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96764e-06\tAbsError: 1.24118e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.94133e-06\tAbsError: 2.46869e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88131e-05\tAbsError: 3.59119e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67950e-08\tAbsError: 5.84625e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:25\u001b[0m.\u001b[1;36m679\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.4\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.22904e-02\tAbsError: 2.68712e+12\n", - " Region: \"zone_1\"\tRelError: 9.38094e-04\tAbsError: 2.50767e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 9.30878e-04\tAbsError: 1.54437e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.21623e-06\tAbsError: 2.50613e-03\n", - " Region: \"zone_3\"\tRelError: 7.13523e-02\tAbsError: 2.68712e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.87484e-02\tAbsError: 1.64198e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.60494e-04\tAbsError: 1.04514e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.43618e-03\tAbsError: 1.62292e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.21623e-06\tAbsError: 2.50613e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.63245e+00\tAbsError: 4.50331e+14\n", - " Region: \"zone_1\"\tRelError: 1.12831e-01\tAbsError: 8.29307e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12687e-01\tAbsError: 3.27223e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.44470e-04\tAbsError: 5.02084e-02\n", - " Region: \"zone_3\"\tRelError: 1.51962e+00\tAbsError: 4.50331e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.64568e-01\tAbsError: 3.01705e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.56309e-01\tAbsError: 1.48626e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.85960e-02\tAbsError: 3.27226e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.44470e-04\tAbsError: 5.02084e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.84661e-01\tAbsError: 3.60692e+12\n", - " Region: \"zone_1\"\tRelError: 1.51217e-02\tAbsError: 1.24488e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51123e-02\tAbsError: 9.16566e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.44377e-06\tAbsError: 3.28310e-03\n", - " Region: \"zone_3\"\tRelError: 2.69539e-01\tAbsError: 3.60692e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12296e-01\tAbsError: 2.19871e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.19182e-02\tAbsError: 1.40821e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.53153e-02\tAbsError: 9.16570e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.44377e-06\tAbsError: 3.28310e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.21525e-05\tAbsError: 4.09265e+10\n", - " Region: \"zone_1\"\tRelError: 4.32183e-06\tAbsError: 6.02671e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.30463e-06\tAbsError: 3.93885e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72009e-08\tAbsError: 5.98732e-06\n", - " Region: \"zone_3\"\tRelError: 2.78307e-05\tAbsError: 4.09265e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.21775e-06\tAbsError: 1.39104e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.18932e-06\tAbsError: 2.70161e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.14064e-05\tAbsError: 3.94543e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72083e-08\tAbsError: 5.99004e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:26\u001b[0m.\u001b[1;36m874\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:26\u001b[0m.\u001b[1;36m874\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.4214285714285714\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.87618e+01\tAbsError: 8.25603e+15\n", - " Region: \"zone_1\"\tRelError: 2.71120e+01\tAbsError: 4.09561e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.71120e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.29384e-09\tAbsError: 1.83846e-06\n", - " Region: \"zone_3\"\tRelError: 1.64979e+00\tAbsError: 8.25603e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69658e-01\tAbsError: 4.86497e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69634e-01\tAbsError: 3.39106e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10500e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.29480e-09\tAbsError: 1.83875e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.39950e-04\tAbsError: 1.23354e+12\n", - " Region: \"zone_1\"\tRelError: 1.57429e-04\tAbsError: 1.24528e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.57077e-04\tAbsError: 1.76859e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.52644e-07\tAbsError: 1.22759e-04\n", - " Region: \"zone_3\"\tRelError: 7.82521e-04\tAbsError: 1.23354e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52512e-04\tAbsError: 3.33639e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.52950e-04\tAbsError: 8.99898e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.76706e-04\tAbsError: 1.76879e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.52798e-07\tAbsError: 1.22816e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.11920e+00\tAbsError: 1.70835e+14\n", - " Region: \"zone_1\"\tRelError: 8.61460e-02\tAbsError: 3.38462e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.61230e-02\tAbsError: 2.58705e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.29490e-05\tAbsError: 7.97577e-03\n", - " Region: \"zone_3\"\tRelError: 1.03306e+00\tAbsError: 1.70835e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.80607e-01\tAbsError: 1.02403e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.65100e-01\tAbsError: 6.84321e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.73272e-02\tAbsError: 2.58550e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.29490e-05\tAbsError: 7.97577e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.15194e-02\tAbsError: 3.32536e+12\n", - " Region: \"zone_1\"\tRelError: 1.39864e-03\tAbsError: 2.06494e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39274e-03\tAbsError: 1.45908e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.90382e-06\tAbsError: 2.05035e-03\n", - " Region: \"zone_3\"\tRelError: 6.01208e-02\tAbsError: 3.32536e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.70408e-02\tAbsError: 2.05875e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.81903e-04\tAbsError: 1.26661e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49215e-03\tAbsError: 1.52370e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.90382e-06\tAbsError: 2.05035e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.87963e+00\tAbsError: 8.84093e+15\n", - " Region: \"zone_1\"\tRelError: 4.20217e+00\tAbsError: 4.23855e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.20217e+00\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.89716e-09\tAbsError: 2.04796e-06\n", - " Region: \"zone_3\"\tRelError: 1.67746e+00\tAbsError: 8.84093e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81663e-01\tAbsError: 5.21686e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.81639e-01\tAbsError: 3.62407e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14160e-01\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.89891e-09\tAbsError: 2.04851e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.69855e+00\tAbsError: 3.40458e+14\n", - " Region: \"zone_1\"\tRelError: 2.34470e-01\tAbsError: 7.85796e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.34332e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", - " Region: \"zone_3\"\tRelError: 1.46408e+00\tAbsError: 3.40458e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39247e-01\tAbsError: 2.37038e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.31799e-01\tAbsError: 1.03420e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.29010e-02\tAbsError: 3.07639e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.47453e-04\tAbsError: 1.02312e+11\n", - " Region: \"zone_1\"\tRelError: 3.59361e-05\tAbsError: 7.27621e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.57268e-05\tAbsError: 5.90810e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.09330e-07\tAbsError: 7.27030e-05\n", - " Region: \"zone_3\"\tRelError: 1.11516e-04\tAbsError: 1.02312e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.91266e-06\tAbsError: 7.37581e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83718e-06\tAbsError: 2.85535e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 9.55573e-05\tAbsError: 6.21546e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.09397e-07\tAbsError: 7.27246e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.93271e-01\tAbsError: 6.53839e+13\n", - " Region: \"zone_1\"\tRelError: 3.24859e-02\tAbsError: 1.44118e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.24781e-02\tAbsError: 1.17193e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.75605e-06\tAbsError: 2.69257e-03\n", - " Region: \"zone_3\"\tRelError: 3.60785e-01\tAbsError: 6.53839e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.33638e-01\tAbsError: 2.83523e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.43002e-02\tAbsError: 3.70316e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.28392e-02\tAbsError: 1.17193e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.76255e-06\tAbsError: 2.69487e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.41555e-04\tAbsError: 9.91702e+11\n", - " Region: \"zone_1\"\tRelError: 9.96160e-05\tAbsError: 1.41223e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.92144e-05\tAbsError: 1.43594e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.01564e-07\tAbsError: 1.39787e-04\n", - " Region: \"zone_3\"\tRelError: 5.41939e-04\tAbsError: 9.91702e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33847e-04\tAbsError: 2.52734e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.19506e-04\tAbsError: 7.38968e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88185e-04\tAbsError: 1.43639e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.01719e-07\tAbsError: 1.39844e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.62508e+00\tAbsError: 4.33655e+14\n", - " Region: \"zone_1\"\tRelError: 1.12712e-01\tAbsError: 8.23385e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12568e-01\tAbsError: 3.24496e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43550e-04\tAbsError: 4.98890e-02\n", - " Region: \"zone_3\"\tRelError: 1.51236e+00\tAbsError: 4.33655e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.61271e-01\tAbsError: 2.92644e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.52818e-01\tAbsError: 1.41011e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.81319e-02\tAbsError: 3.24499e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43550e-04\tAbsError: 4.98890e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.10009e+00\tAbsError: 9.49766e+13\n", - " Region: \"zone_1\"\tRelError: 1.69910e-01\tAbsError: 3.26443e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.69891e-01\tAbsError: 2.58991e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", - " Region: \"zone_3\"\tRelError: 9.30185e-01\tAbsError: 9.49766e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40985e-01\tAbsError: 5.67002e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.12174e-01\tAbsError: 3.82763e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.70066e-02\tAbsError: 2.58994e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 7.33267e-05\tAbsError: 6.68891e+10\n", - " Region: \"zone_1\"\tRelError: 1.66207e-05\tAbsError: 3.79072e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66100e-05\tAbsError: 5.85273e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.07209e-08\tAbsError: 3.73220e-06\n", - " Region: \"zone_3\"\tRelError: 5.67059e-05\tAbsError: 6.68891e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.97072e-06\tAbsError: 2.68259e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.92076e-06\tAbsError: 4.00632e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.48037e-05\tAbsError: 5.86589e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.07263e-08\tAbsError: 3.73415e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.06829e-02\tAbsError: 1.23607e+13\n", - " Region: \"zone_1\"\tRelError: 2.59544e-03\tAbsError: 2.08969e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.58964e-03\tAbsError: 7.73904e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.79536e-06\tAbsError: 2.01230e-03\n", - " Region: \"zone_3\"\tRelError: 7.80875e-02\tAbsError: 1.23607e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.13217e-02\tAbsError: 6.44704e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.62937e-03\tAbsError: 5.91371e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.13063e-03\tAbsError: 8.57603e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.79536e-06\tAbsError: 2.01230e-03\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:30\u001b[0m.\u001b[1;36m695\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.3125\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Iteration: 6\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 1.93102e-04\tAbsError: 1.20961e+11\n", - " Region: \"zone_1\"\tRelError: 5.19826e-05\tAbsError: 5.49689e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.18246e-05\tAbsError: 7.13695e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.58063e-07\tAbsError: 5.48975e-05\n", - " Region: \"zone_3\"\tRelError: 1.41120e-04\tAbsError: 1.20961e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98321e-06\tAbsError: 8.30767e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.89236e-06\tAbsError: 3.78842e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21086e-04\tAbsError: 7.51141e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.58063e-07\tAbsError: 5.48975e-05\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.10442e+00\tAbsError: 1.57445e+14\n", - " Region: \"zone_1\"\tRelError: 8.48445e-02\tAbsError: 3.35487e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.48221e-02\tAbsError: 2.57873e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.23322e-05\tAbsError: 7.76143e-03\n", - " Region: \"zone_3\"\tRelError: 1.01957e+00\tAbsError: 1.57445e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.75187e-01\tAbsError: 9.44436e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.58188e-01\tAbsError: 6.30009e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.61734e-02\tAbsError: 2.58679e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.23322e-05\tAbsError: 7.76143e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.56252e-01\tAbsError: 3.42527e+13\n", - " Region: \"zone_1\"\tRelError: 6.41646e-02\tAbsError: 1.11813e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.41588e-02\tAbsError: 9.16555e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.79958e-06\tAbsError: 2.01571e-03\n", - " Region: \"zone_3\"\tRelError: 2.92088e-01\tAbsError: 3.42527e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07223e-01\tAbsError: 1.60452e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.07953e-02\tAbsError: 1.82076e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.40630e-02\tAbsError: 9.16559e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.80279e-06\tAbsError: 2.01683e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.14255e-04\tAbsError: 9.40247e+11\n", - " Region: \"zone_1\"\tRelError: 6.54694e-05\tAbsError: 1.40506e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.50689e-05\tAbsError: 1.28698e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.00564e-07\tAbsError: 1.39219e-04\n", - " Region: \"zone_3\"\tRelError: 5.48785e-04\tAbsError: 9.40247e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68628e-04\tAbsError: 2.33690e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.89618e-05\tAbsError: 7.06557e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.90795e-04\tAbsError: 1.29752e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.00564e-07\tAbsError: 1.39219e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.80758e-05\tAbsError: 4.88651e+10\n", - " Region: \"zone_1\"\tRelError: 1.14719e-05\tAbsError: 6.01780e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14548e-05\tAbsError: 4.42595e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71598e-08\tAbsError: 5.97354e-06\n", - " Region: \"zone_3\"\tRelError: 3.66039e-05\tAbsError: 4.88651e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37869e-06\tAbsError: 1.78080e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.34136e-06\tAbsError: 3.10571e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78667e-05\tAbsError: 4.43717e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71674e-08\tAbsError: 5.97634e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:32\u001b[0m.\u001b[1;36m303\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:32\u001b[0m.\u001b[1;36m303\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.94848e+01\tAbsError: 8.79639e+15\n", - " Region: \"zone_1\"\tRelError: 2.78194e+01\tAbsError: 4.22128e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78194e+01\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08286e-08\tAbsError: 3.76437e-06\n", - " Region: \"zone_3\"\tRelError: 1.66544e+00\tAbsError: 8.79639e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80208e-01\tAbsError: 5.07949e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.80189e-01\tAbsError: 3.71690e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.05047e-01\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08292e-08\tAbsError: 3.76466e-06\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.79288e-01\tAbsError: 5.94006e+13\n", - " Region: \"zone_1\"\tRelError: 3.11470e-02\tAbsError: 1.39501e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.11395e-02\tAbsError: 1.13362e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.52960e-06\tAbsError: 2.61394e-03\n", - " Region: \"zone_3\"\tRelError: 3.48141e-01\tAbsError: 5.94006e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.27166e-01\tAbsError: 2.60599e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.94917e-02\tAbsError: 3.33408e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.14750e-02\tAbsError: 1.13362e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.53142e-06\tAbsError: 2.61458e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.59960e-02\tAbsError: 3.73217e+12\n", - " Region: \"zone_1\"\tRelError: 7.31305e-03\tAbsError: 2.21475e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.30674e-03\tAbsError: 2.57182e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", - " Region: \"zone_3\"\tRelError: 5.86829e-02\tAbsError: 3.73217e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.62142e-02\tAbsError: 2.07187e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.09163e-04\tAbsError: 1.66031e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65329e-03\tAbsError: 2.69578e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.54770e-04\tAbsError: 1.13894e+11\n", - " Region: \"zone_1\"\tRelError: 2.60304e-05\tAbsError: 5.37278e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.58759e-05\tAbsError: 7.56671e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54506e-07\tAbsError: 5.36521e-05\n", - " Region: \"zone_3\"\tRelError: 1.28740e-04\tAbsError: 1.13894e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.44140e-06\tAbsError: 7.78465e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.36038e-06\tAbsError: 3.60472e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13783e-04\tAbsError: 7.90339e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54508e-07\tAbsError: 5.36521e-05\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.70312e+00\tAbsError: 3.24971e+14\n", - " Region: \"zone_1\"\tRelError: 2.13361e-01\tAbsError: 9.00553e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.13195e-01\tAbsError: 3.22435e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.66324e-04\tAbsError: 5.78118e-02\n", - " Region: \"zone_3\"\tRelError: 1.48976e+00\tAbsError: 3.24971e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57266e-01\tAbsError: 2.03165e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.52075e-01\tAbsError: 1.21806e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.02559e-02\tAbsError: 3.22440e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.66324e-04\tAbsError: 5.78118e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.29649e+01\tAbsError: 8.28032e+15\n", - " Region: \"zone_1\"\tRelError: 1.13261e+01\tAbsError: 4.09567e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13261e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.18741e-09\tAbsError: 2.49620e-06\n", - " Region: \"zone_3\"\tRelError: 1.63880e+00\tAbsError: 8.28032e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69633e-01\tAbsError: 4.77284e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.50748e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.95556e-02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.18833e-09\tAbsError: 2.49655e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.77930e-02\tAbsError: 1.08773e+13\n", - " Region: \"zone_1\"\tRelError: 2.79764e-03\tAbsError: 2.00488e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.79207e-03\tAbsError: 7.05910e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.57068e-06\tAbsError: 1.93429e-03\n", - " Region: \"zone_3\"\tRelError: 7.49953e-02\tAbsError: 1.08773e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.89446e-02\tAbsError: 5.71384e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.94604e-03\tAbsError: 5.16342e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.09913e-03\tAbsError: 7.75298e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.57068e-06\tAbsError: 1.93429e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.14034e-04\tAbsError: 1.03618e+12\n", - " Region: \"zone_1\"\tRelError: 1.43803e-04\tAbsError: 7.79056e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43584e-04\tAbsError: 1.54074e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19396e-07\tAbsError: 7.63649e-05\n", - " Region: \"zone_3\"\tRelError: 6.70231e-04\tAbsError: 1.03618e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.21829e-04\tAbsError: 2.70793e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.05108e-04\tAbsError: 7.65387e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.43074e-04\tAbsError: 1.54210e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19498e-07\tAbsError: 7.64015e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.16247e-05\tAbsError: 4.79653e+10\n", - " Region: \"zone_1\"\tRelError: 6.49903e-06\tAbsError: 5.59951e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.48306e-06\tAbsError: 4.11129e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59698e-08\tAbsError: 5.55840e-06\n", - " Region: \"zone_3\"\tRelError: 3.51257e-05\tAbsError: 4.79653e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.26178e-06\tAbsError: 1.79967e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.23354e-06\tAbsError: 2.99686e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.86144e-05\tAbsError: 4.14042e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59764e-08\tAbsError: 5.56082e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:35\u001b[0m.\u001b[1;36m044\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:35\u001b[0m.\u001b[1;36m044\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5333333333333333\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.04226e+00\tAbsError: 4.65248e+13\n", - " Region: \"zone_1\"\tRelError: 6.41149e-02\tAbsError: 3.23680e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.40962e-02\tAbsError: 2.58547e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.87385e-05\tAbsError: 6.51333e-03\n", - " Region: \"zone_3\"\tRelError: 9.78142e-01\tAbsError: 4.65248e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.70005e-01\tAbsError: 3.31907e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.43650e-01\tAbsError: 1.33341e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.44685e-02\tAbsError: 2.58526e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.87385e-05\tAbsError: 6.51333e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.56865e+00\tAbsError: 2.86625e+14\n", - " Region: \"zone_1\"\tRelError: 1.21045e-01\tAbsError: 8.55195e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20888e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", - " Region: \"zone_3\"\tRelError: 1.44761e+00\tAbsError: 2.86625e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38556e-01\tAbsError: 1.75436e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32332e-01\tAbsError: 1.11189e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.65613e-02\tAbsError: 3.07640e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.68614e-04\tAbsError: 9.03974e+11\n", - " Region: \"zone_1\"\tRelError: 6.02979e-05\tAbsError: 1.34982e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.99131e-05\tAbsError: 1.25892e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.84749e-07\tAbsError: 1.33723e-04\n", - " Region: \"zone_3\"\tRelError: 5.08317e-04\tAbsError: 9.03974e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53674e-04\tAbsError: 2.22199e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.53101e-05\tAbsError: 6.81775e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.68948e-04\tAbsError: 1.27221e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.84749e-07\tAbsError: 1.33723e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.61312e-05\tAbsError: 5.74046e+10\n", - " Region: \"zone_1\"\tRelError: 1.61849e-05\tAbsError: 6.45313e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.59991e-05\tAbsError: 3.79845e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.85726e-07\tAbsError: 6.44934e-05\n", - " Region: \"zone_3\"\tRelError: 5.99464e-05\tAbsError: 5.74046e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.77906e-06\tAbsError: 4.68633e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.20461e-06\tAbsError: 1.05413e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.27769e-05\tAbsError: 3.95532e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.85828e-07\tAbsError: 6.45281e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:35\u001b[0m.\u001b[1;36m884\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.5\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.35039e-01\tAbsError: 8.34092e+12\n", - " Region: \"zone_1\"\tRelError: 2.32576e-02\tAbsError: 1.39026e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.32494e-02\tAbsError: 1.10528e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.19887e-06\tAbsError: 2.84976e-03\n", - " Region: \"zone_3\"\tRelError: 3.11781e-01\tAbsError: 8.34092e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.24826e-01\tAbsError: 4.08239e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.34727e-02\tAbsError: 4.25852e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.34740e-02\tAbsError: 1.10529e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.20247e-06\tAbsError: 2.85110e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.52881e+00\tAbsError: 8.92759e+15\n", - " Region: \"zone_1\"\tRelError: 5.80811e+00\tAbsError: 4.26167e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.80811e+00\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.06999e-09\tAbsError: 2.45528e-06\n", - " Region: \"zone_3\"\tRelError: 1.72070e+00\tAbsError: 8.92759e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83546e-01\tAbsError: 5.11626e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83479e-01\tAbsError: 3.81133e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.53672e-01\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.07027e-09\tAbsError: 2.45528e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.63437e-01\tAbsError: 3.66677e+13\n", - " Region: \"zone_1\"\tRelError: 5.93231e-02\tAbsError: 3.16919e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.93064e-02\tAbsError: 2.58707e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", - " Region: \"zone_3\"\tRelError: 9.04114e-01\tAbsError: 3.66677e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40101e-01\tAbsError: 2.63702e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.04471e-01\tAbsError: 1.02975e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95256e-02\tAbsError: 2.58992e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.51065e-04\tAbsError: 1.10507e+11\n", - " Region: \"zone_1\"\tRelError: 2.53464e-05\tAbsError: 5.14009e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.51986e-05\tAbsError: 7.31456e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47812e-07\tAbsError: 5.13278e-05\n", - " Region: \"zone_3\"\tRelError: 1.25719e-04\tAbsError: 1.10507e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.19999e-06\tAbsError: 7.57136e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.12194e-06\tAbsError: 3.47937e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11249e-04\tAbsError: 7.63909e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47812e-07\tAbsError: 5.13278e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.60199e+01\tAbsError: 8.22903e+15\n", - " Region: \"zone_1\"\tRelError: 3.43433e+01\tAbsError: 4.09555e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.43433e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.48443e-09\tAbsError: 1.21289e-06\n", - " Region: \"zone_3\"\tRelError: 1.67662e+00\tAbsError: 8.22903e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.78919e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.43984e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37338e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.48691e-09\tAbsError: 1.21378e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.26265e-02\tAbsError: 2.44693e+12\n", - " Region: \"zone_1\"\tRelError: 7.79806e-04\tAbsError: 1.84272e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.74522e-04\tAbsError: 7.80818e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.28403e-06\tAbsError: 1.83491e-03\n", - " Region: \"zone_3\"\tRelError: 7.18467e-02\tAbsError: 2.44693e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90853e-02\tAbsError: 1.70837e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.19951e-04\tAbsError: 7.38555e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.33617e-03\tAbsError: 8.48436e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.28403e-06\tAbsError: 1.83491e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.86275e+00\tAbsError: 1.87242e+15\n", - " Region: \"zone_1\"\tRelError: 3.28371e-01\tAbsError: 7.13797e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.28260e-01\tAbsError: 3.27222e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11244e-04\tAbsError: 3.86575e-02\n", - " Region: \"zone_3\"\tRelError: 1.53438e+00\tAbsError: 1.87242e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.65737e-01\tAbsError: 1.02772e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.45622e-01\tAbsError: 8.44695e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.22910e-01\tAbsError: 3.27223e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11244e-04\tAbsError: 3.86575e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.91536e-05\tAbsError: 4.57180e+10\n", - " Region: \"zone_1\"\tRelError: 6.07239e-06\tAbsError: 5.48720e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.05674e-06\tAbsError: 3.96083e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.56514e-08\tAbsError: 5.44759e-06\n", - " Region: \"zone_3\"\tRelError: 3.30812e-05\tAbsError: 4.57180e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.12546e-06\tAbsError: 1.69379e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.09842e-06\tAbsError: 2.87802e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.68416e-05\tAbsError: 3.98463e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.56579e-08\tAbsError: 5.44996e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.93334e-01\tAbsError: 6.56738e+12\n", - " Region: \"zone_1\"\tRelError: 1.86981e-02\tAbsError: 1.19586e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86900e-02\tAbsError: 9.16562e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03535e-06\tAbsError: 2.79297e-03\n", - " Region: \"zone_3\"\tRelError: 2.74636e-01\tAbsError: 6.56738e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11907e-01\tAbsError: 3.29549e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.38500e-02\tAbsError: 3.27189e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88710e-02\tAbsError: 9.16566e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03753e-06\tAbsError: 2.79381e-03\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:38\u001b[0m.\u001b[1;36m413\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:38\u001b[0m.\u001b[1;36m413\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5285714285714286\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.73485e+00\tAbsError: 1.08973e+15\n", - " Region: \"zone_1\"\tRelError: 2.25350e+00\tAbsError: 6.85700e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25339e+00\tAbsError: 3.07635e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", - " Region: \"zone_3\"\tRelError: 1.48136e+00\tAbsError: 1.08973e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41054e-01\tAbsError: 6.25022e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.24005e-01\tAbsError: 4.64711e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16189e-01\tAbsError: 3.07637e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.64470e-04\tAbsError: 8.92718e+11\n", - " Region: \"zone_1\"\tRelError: 1.30265e-04\tAbsError: 1.28166e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29900e-04\tAbsError: 1.33995e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.64363e-07\tAbsError: 1.26826e-04\n", - " Region: \"zone_3\"\tRelError: 4.34205e-04\tAbsError: 8.92718e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03626e-04\tAbsError: 2.20233e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.48863e-05\tAbsError: 6.72486e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.35329e-04\tAbsError: 1.34586e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.64517e-07\tAbsError: 1.26883e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.13601e+00\tAbsError: 1.24388e+15\n", - " Region: \"zone_1\"\tRelError: 1.09882e-01\tAbsError: 3.47156e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09856e-01\tAbsError: 2.56729e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.60523e-05\tAbsError: 9.04266e-03\n", - " Region: \"zone_3\"\tRelError: 1.02613e+00\tAbsError: 1.24388e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.82293e-01\tAbsError: 5.50846e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.31304e-01\tAbsError: 6.93036e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12504e-01\tAbsError: 2.57603e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.60534e-05\tAbsError: 9.04329e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.00158e-02\tAbsError: 2.47729e+12\n", - " Region: \"zone_1\"\tRelError: 6.29744e-04\tAbsError: 1.66755e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.24968e-04\tAbsError: 8.94858e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", - " Region: \"zone_3\"\tRelError: 5.93860e-02\tAbsError: 2.47729e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.68115e-02\tAbsError: 1.70064e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.91678e-04\tAbsError: 7.76647e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27809e-03\tAbsError: 9.43816e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 9.33438e+00\tAbsError: 8.82623e+15\n", - " Region: \"zone_1\"\tRelError: 7.61981e+00\tAbsError: 4.23858e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.61981e+00\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.72531e-09\tAbsError: 2.33527e-06\n", - " Region: \"zone_3\"\tRelError: 1.71457e+00\tAbsError: 8.82623e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81667e-01\tAbsError: 5.07130e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.81602e-01\tAbsError: 3.75493e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51306e-01\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.72588e-09\tAbsError: 2.33550e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.38677e+00\tAbsError: 6.38966e+14\n", - " Region: \"zone_1\"\tRelError: 4.51470e-01\tAbsError: 3.37904e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.51448e-01\tAbsError: 2.58448e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", - " Region: \"zone_3\"\tRelError: 9.35299e-01\tAbsError: 6.38966e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42607e-01\tAbsError: 3.02038e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.95795e-01\tAbsError: 3.36928e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.68743e-02\tAbsError: 2.57679e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.50492e-04\tAbsError: 1.09226e+11\n", - " Region: \"zone_1\"\tRelError: 2.27622e-05\tAbsError: 4.91789e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.26208e-05\tAbsError: 6.61807e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41421e-07\tAbsError: 4.91127e-05\n", - " Region: \"zone_3\"\tRelError: 1.27730e-04\tAbsError: 1.09226e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.75259e-06\tAbsError: 7.55320e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.67996e-06\tAbsError: 3.36940e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12156e-04\tAbsError: 6.92520e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41421e-07\tAbsError: 4.91127e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.43445e-01\tAbsError: 4.90706e+14\n", - " Region: \"zone_1\"\tRelError: 3.97550e-02\tAbsError: 2.48451e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.97172e-02\tAbsError: 1.17195e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.78171e-05\tAbsError: 1.31257e-02\n", - " Region: \"zone_3\"\tRelError: 4.03690e-01\tAbsError: 4.90706e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.31740e-01\tAbsError: 2.41635e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.31153e-01\tAbsError: 2.49071e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.07598e-02\tAbsError: 1.17195e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.78263e-05\tAbsError: 1.31292e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.31240e-04\tAbsError: 7.97937e+11\n", - " Region: \"zone_1\"\tRelError: 7.54533e-05\tAbsError: 1.27890e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.50894e-05\tAbsError: 1.20855e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.63943e-07\tAbsError: 1.26681e-04\n", - " Region: \"zone_3\"\tRelError: 3.55787e-04\tAbsError: 7.97937e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.38045e-05\tAbsError: 1.92064e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.48742e-05\tAbsError: 6.05872e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76744e-04\tAbsError: 1.21338e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.64089e-07\tAbsError: 1.26735e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.89616e+00\tAbsError: 1.73726e+15\n", - " Region: \"zone_1\"\tRelError: 3.68926e-01\tAbsError: 7.09892e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.68815e-01\tAbsError: 3.24494e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10905e-04\tAbsError: 3.85398e-02\n", - " Region: \"zone_3\"\tRelError: 1.52723e+00\tAbsError: 1.73726e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.62498e-01\tAbsError: 9.60875e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.42645e-01\tAbsError: 7.76385e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21979e-01\tAbsError: 3.24495e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10905e-04\tAbsError: 3.85398e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.41554e-01\tAbsError: 2.20715e+14\n", - " Region: \"zone_1\"\tRelError: 2.89595e-02\tAbsError: 1.67352e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.89377e-02\tAbsError: 9.16565e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18085e-05\tAbsError: 7.56954e-03\n", - " Region: \"zone_3\"\tRelError: 3.12594e-01\tAbsError: 2.20715e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94155e-01\tAbsError: 1.01533e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.87246e-02\tAbsError: 1.19182e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.96932e-02\tAbsError: 9.16570e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18152e-05\tAbsError: 7.57200e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.59511e-05\tAbsError: 4.34369e+10\n", - " Region: \"zone_1\"\tRelError: 4.88152e-06\tAbsError: 5.50573e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.86582e-06\tAbsError: 4.12400e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.56988e-08\tAbsError: 5.46449e-06\n", - " Region: \"zone_3\"\tRelError: 3.10696e-05\tAbsError: 4.34369e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.42525e-06\tAbsError: 1.53634e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.39498e-06\tAbsError: 2.80735e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.42337e-05\tAbsError: 4.13073e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.57060e-08\tAbsError: 5.46711e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:42\u001b[0m.\u001b[1;36m394\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:42\u001b[0m.\u001b[1;36m394\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.41874999999999996\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.20911e-02\tAbsError: 9.08236e+13\n", - " Region: \"zone_1\"\tRelError: 8.36257e-03\tAbsError: 7.34644e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 8.34207e-03\tAbsError: 2.31528e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.04921e-05\tAbsError: 7.11491e-03\n", - " Region: \"zone_3\"\tRelError: 8.37285e-02\tAbsError: 9.08236e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.66541e-02\tAbsError: 5.29767e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.08300e-02\tAbsError: 3.78468e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.22394e-03\tAbsError: 2.32655e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.04921e-05\tAbsError: 7.11491e-03\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.53826e-04\tAbsError: 1.09912e+11\n", - " Region: \"zone_1\"\tRelError: 2.29821e-05\tAbsError: 4.27473e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.28592e-05\tAbsError: 6.65170e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", - " Region: \"zone_3\"\tRelError: 1.30844e-04\tAbsError: 1.09912e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.01681e-06\tAbsError: 7.52234e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94349e-06\tAbsError: 3.46881e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14760e-04\tAbsError: 6.98367e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.12115e+00\tAbsError: 1.12368e+15\n", - " Region: \"zone_1\"\tRelError: 1.07753e-01\tAbsError: 3.45134e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07728e-01\tAbsError: 2.56568e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.55163e-05\tAbsError: 8.85665e-03\n", - " Region: \"zone_3\"\tRelError: 1.01340e+00\tAbsError: 1.12368e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.76839e-01\tAbsError: 5.03019e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.25192e-01\tAbsError: 6.20662e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11342e-01\tAbsError: 2.58854e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.55171e-05\tAbsError: 8.85707e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.19808e-02\tAbsError: 3.06344e+13\n", - " Region: \"zone_1\"\tRelError: 2.04251e-02\tAbsError: 4.10278e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.04136e-02\tAbsError: 1.00349e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", - " Region: \"zone_3\"\tRelError: 6.15557e-02\tAbsError: 3.06344e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38926e-02\tAbsError: 1.71938e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.73234e-03\tAbsError: 1.34406e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.91920e-03\tAbsError: 1.01109e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.16827e-03\tAbsError: 3.42905e+12\n", - " Region: \"zone_1\"\tRelError: 5.05049e-04\tAbsError: 4.91012e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.03646e-04\tAbsError: 3.47475e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.40302e-06\tAbsError: 4.87537e-04\n", - " Region: \"zone_3\"\tRelError: 2.66322e-03\tAbsError: 3.42905e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.95349e-04\tAbsError: 1.21352e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.81812e-04\tAbsError: 2.21554e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.98465e-03\tAbsError: 3.54752e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.40328e-06\tAbsError: 4.87636e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.84860e-05\tAbsError: 3.70987e+10\n", - " Region: \"zone_1\"\tRelError: 3.74711e-06\tAbsError: 5.87951e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.73032e-06\tAbsError: 3.58594e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67880e-08\tAbsError: 5.84365e-06\n", - " Region: \"zone_3\"\tRelError: 2.47389e-05\tAbsError: 3.70987e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96764e-06\tAbsError: 1.24118e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.94133e-06\tAbsError: 2.46869e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88131e-05\tAbsError: 3.59119e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67950e-08\tAbsError: 5.84625e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:44\u001b[0m.\u001b[1;36m074\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.4\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Iteration: 0\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 6.33754e+00\tAbsError: 8.76787e+15\n", - " Region: \"zone_1\"\tRelError: 4.66402e+00\tAbsError: 4.22113e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.66402e+00\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.37385e-09\tAbsError: 2.21342e-06\n", - " Region: \"zone_3\"\tRelError: 1.67352e+00\tAbsError: 8.76787e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80231e-01\tAbsError: 5.17304e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.80207e-01\tAbsError: 3.59483e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13080e-01\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.37521e-09\tAbsError: 2.21392e-06\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.26825e-01\tAbsError: 4.37760e+14\n", - " Region: \"zone_1\"\tRelError: 3.80907e-02\tAbsError: 2.35516e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.80555e-02\tAbsError: 1.13363e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.51940e-05\tAbsError: 1.22153e-02\n", - " Region: \"zone_3\"\tRelError: 3.88734e-01\tAbsError: 4.37760e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.24657e-01\tAbsError: 2.14324e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.24964e-01\tAbsError: 2.23436e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.90785e-02\tAbsError: 1.13364e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.51963e-05\tAbsError: 1.22163e-02\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.53920e-03\tAbsError: 1.84314e+12\n", - " Region: \"zone_1\"\tRelError: 2.29752e-04\tAbsError: 2.41443e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29064e-04\tAbsError: 2.20702e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", - " Region: \"zone_3\"\tRelError: 1.30944e-03\tAbsError: 1.84314e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11485e-04\tAbsError: 5.81096e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.63190e-04\tAbsError: 1.26205e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 9.34079e-04\tAbsError: 2.25011e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.52226e-04\tAbsError: 3.81978e+11\n", - " Region: \"zone_1\"\tRelError: 8.36528e-05\tAbsError: 2.05703e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 8.30610e-05\tAbsError: 2.27394e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.91803e-07\tAbsError: 2.05476e-04\n", - " Region: \"zone_3\"\tRelError: 3.68573e-04\tAbsError: 3.81978e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16126e-05\tAbsError: 2.47156e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.13261e-05\tAbsError: 1.34821e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.25043e-04\tAbsError: 2.38613e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.91803e-07\tAbsError: 2.05476e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.95597e-02\tAbsError: 7.71424e+13\n", - " Region: \"zone_1\"\tRelError: 8.97757e-03\tAbsError: 6.57471e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 8.95924e-03\tAbsError: 2.10468e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83299e-05\tAbsError: 6.36424e-03\n", - " Region: \"zone_3\"\tRelError: 8.05821e-02\tAbsError: 7.71424e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.51160e-02\tAbsError: 4.59722e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.55840e-03\tAbsError: 3.11702e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.88934e-03\tAbsError: 2.11417e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83299e-05\tAbsError: 6.36424e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.61701e+00\tAbsError: 4.21474e+14\n", - " Region: \"zone_1\"\tRelError: 1.10816e-01\tAbsError: 8.18878e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10673e-01\tAbsError: 3.22435e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42846e-04\tAbsError: 4.96444e-02\n", - " Region: \"zone_3\"\tRelError: 1.50619e+00\tAbsError: 4.21474e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.58762e-01\tAbsError: 2.85907e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.50146e-01\tAbsError: 1.35567e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.71388e-02\tAbsError: 3.22438e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42846e-04\tAbsError: 4.96444e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.87618e+01\tAbsError: 8.25603e+15\n", - " Region: \"zone_1\"\tRelError: 2.71120e+01\tAbsError: 4.09561e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.71120e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.29384e-09\tAbsError: 1.83846e-06\n", - " Region: \"zone_3\"\tRelError: 1.64979e+00\tAbsError: 8.25603e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69658e-01\tAbsError: 4.86497e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69634e-01\tAbsError: 3.39106e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10500e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.29480e-09\tAbsError: 1.83875e-06\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.51045e-04\tAbsError: 2.02519e+11\n", - " Region: \"zone_1\"\tRelError: 4.54891e-05\tAbsError: 1.12868e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.51644e-05\tAbsError: 1.25671e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.24705e-07\tAbsError: 1.12743e-04\n", - " Region: \"zone_3\"\tRelError: 2.05556e-04\tAbsError: 2.02519e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12163e-05\tAbsError: 1.36505e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10724e-05\tAbsError: 6.60139e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82943e-04\tAbsError: 1.30848e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.24777e-07\tAbsError: 1.12769e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.16205e-04\tAbsError: 1.96223e+11\n", - " Region: \"zone_1\"\tRelError: 3.93698e-05\tAbsError: 1.48004e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.93276e-05\tAbsError: 1.21385e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.21780e-08\tAbsError: 1.46790e-05\n", - " Region: \"zone_3\"\tRelError: 1.76835e-04\tAbsError: 1.96223e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12231e-05\tAbsError: 9.36536e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.11384e-05\tAbsError: 1.02569e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.54432e-04\tAbsError: 1.24837e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.21943e-08\tAbsError: 1.46850e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.09334e+00\tAbsError: 1.47862e+14\n", - " Region: \"zone_1\"\tRelError: 8.41951e-02\tAbsError: 3.34998e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.41732e-02\tAbsError: 2.58874e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19032e-05\tAbsError: 7.61236e-03\n", - " Region: \"zone_3\"\tRelError: 1.00915e+00\tAbsError: 1.47862e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.70939e-01\tAbsError: 8.86673e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.53155e-01\tAbsError: 5.91945e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.50295e-02\tAbsError: 2.57870e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19032e-05\tAbsError: 7.61236e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.76323e-03\tAbsError: 3.04208e+12\n", - " Region: \"zone_1\"\tRelError: 4.34764e-04\tAbsError: 4.50535e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.33477e-04\tAbsError: 3.15266e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.28745e-06\tAbsError: 4.47383e-04\n", - " Region: \"zone_3\"\tRelError: 2.32847e-03\tAbsError: 3.04208e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.58402e-04\tAbsError: 1.05932e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.52573e-04\tAbsError: 1.98276e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.71621e-03\tAbsError: 3.22876e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.28792e-06\tAbsError: 4.47554e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.69855e+00\tAbsError: 3.40458e+14\n", - " Region: \"zone_1\"\tRelError: 2.34470e-01\tAbsError: 7.85796e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.34332e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", - " Region: \"zone_3\"\tRelError: 1.46408e+00\tAbsError: 3.40458e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39247e-01\tAbsError: 2.37038e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.31799e-01\tAbsError: 1.03420e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.29010e-02\tAbsError: 3.07639e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.09882e-04\tAbsError: 1.05387e+11\n", - " Region: \"zone_1\"\tRelError: 1.91896e-05\tAbsError: 8.11152e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.91665e-05\tAbsError: 7.26801e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.30974e-08\tAbsError: 8.03884e-06\n", - " Region: \"zone_3\"\tRelError: 9.06925e-05\tAbsError: 1.05387e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41210e-06\tAbsError: 4.74044e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.36012e-06\tAbsError: 5.79823e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.78972e-05\tAbsError: 7.44246e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.31071e-08\tAbsError: 8.04242e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.29328e-05\tAbsError: 1.28315e+10\n", - " Region: \"zone_1\"\tRelError: 2.39931e-06\tAbsError: 1.11358e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.36728e-06\tAbsError: 7.12558e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.20267e-08\tAbsError: 1.11287e-05\n", - " Region: \"zone_3\"\tRelError: 1.05335e-05\tAbsError: 1.28315e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.59775e-07\tAbsError: 9.09417e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.08523e-07\tAbsError: 3.73735e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.23314e-06\tAbsError: 7.44346e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.20347e-08\tAbsError: 1.11318e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:48\u001b[0m.\u001b[1;36m096\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:48\u001b[0m.\u001b[1;36m096\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6416666666666667\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.68709e-01\tAbsError: 5.55679e+13\n", - " Region: \"zone_1\"\tRelError: 3.01660e-02\tAbsError: 1.36189e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.01586e-02\tAbsError: 1.10528e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.39180e-06\tAbsError: 2.56611e-03\n", - " Region: \"zone_3\"\tRelError: 3.38543e-01\tAbsError: 5.55679e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.22734e-01\tAbsError: 2.45809e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.53253e-02\tAbsError: 3.09871e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.04764e-02\tAbsError: 1.10528e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.39597e-06\tAbsError: 2.56763e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.28398e-04\tAbsError: 3.56399e+11\n", - " Region: \"zone_1\"\tRelError: 7.90313e-05\tAbsError: 1.82266e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.85070e-05\tAbsError: 2.13360e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.24338e-07\tAbsError: 1.82053e-04\n", - " Region: \"zone_3\"\tRelError: 3.49366e-04\tAbsError: 3.56399e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01607e-05\tAbsError: 2.30451e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.98999e-05\tAbsError: 1.25949e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.08781e-04\tAbsError: 2.23060e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.24338e-07\tAbsError: 1.82053e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.10009e+00\tAbsError: 9.49766e+13\n", - " Region: \"zone_1\"\tRelError: 1.69910e-01\tAbsError: 3.26443e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.69891e-01\tAbsError: 2.58991e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", - " Region: \"zone_3\"\tRelError: 9.30185e-01\tAbsError: 9.49766e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40985e-01\tAbsError: 5.67002e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.12174e-01\tAbsError: 3.82763e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.70066e-02\tAbsError: 2.58994e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 7.21635e-06\tAbsError: 6.66070e+09\n", - " Region: \"zone_1\"\tRelError: 1.30608e-06\tAbsError: 5.92265e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28905e-06\tAbsError: 4.03393e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70320e-08\tAbsError: 5.91862e-06\n", - " Region: \"zone_3\"\tRelError: 5.91027e-06\tAbsError: 6.66070e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61854e-07\tAbsError: 4.98332e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.27195e-07\tAbsError: 1.67738e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 5.20418e-06\tAbsError: 4.19235e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70346e-08\tAbsError: 5.91965e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:49\u001b[0m.\u001b[1;36m098\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.6\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.55074e-02\tAbsError: 9.90968e+12\n", - " Region: \"zone_1\"\tRelError: 2.96123e-03\tAbsError: 1.94388e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.95582e-03\tAbsError: 6.53231e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.41016e-06\tAbsError: 1.87856e-03\n", - " Region: \"zone_3\"\tRelError: 7.25461e-02\tAbsError: 9.90968e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.69484e-02\tAbsError: 5.15392e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.51045e-03\tAbsError: 4.75576e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.08189e-03\tAbsError: 7.13022e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.41016e-06\tAbsError: 1.87856e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.87899e-04\tAbsError: 1.73082e+11\n", - " Region: \"zone_1\"\tRelError: 3.39934e-05\tAbsError: 1.43686e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.39525e-05\tAbsError: 1.08946e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.09731e-08\tAbsError: 1.42597e-05\n", - " Region: \"zone_3\"\tRelError: 1.53906e-04\tAbsError: 1.73082e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98939e-06\tAbsError: 8.17885e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.91188e-06\tAbsError: 9.12938e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33963e-04\tAbsError: 1.11897e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.09888e-08\tAbsError: 1.42655e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.75131e+01\tAbsError: 1.04832e+16\n", - " Region: \"zone_1\"\tRelError: 2.57460e+01\tAbsError: 4.26144e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.57460e+01\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.25795e-10\tAbsError: 2.17804e-07\n", - " Region: \"zone_3\"\tRelError: 1.76714e+00\tAbsError: 1.04832e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.83363e-01\tAbsError: 5.41685e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83175e-01\tAbsError: 5.06630e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.00598e-01\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.26134e-10\tAbsError: 2.17927e-07\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.56252e-01\tAbsError: 3.42527e+13\n", - " Region: \"zone_1\"\tRelError: 6.41646e-02\tAbsError: 1.11813e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.41588e-02\tAbsError: 9.16555e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.79958e-06\tAbsError: 2.01571e-03\n", - " Region: \"zone_3\"\tRelError: 2.92088e-01\tAbsError: 3.42527e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07223e-01\tAbsError: 1.60452e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.07953e-02\tAbsError: 1.82076e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.40630e-02\tAbsError: 9.16559e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.80279e-06\tAbsError: 2.01683e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.57743e+01\tAbsError: 8.48667e+15\n", - " Region: \"zone_1\"\tRelError: 1.40602e+01\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40602e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.57556e-10\tAbsError: 1.24451e-07\n", - " Region: \"zone_3\"\tRelError: 1.71408e+00\tAbsError: 8.48667e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69582e-01\tAbsError: 4.51146e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69441e-01\tAbsError: 3.97521e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.75053e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.57765e-10\tAbsError: 1.24526e-07\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.35924e-04\tAbsError: 8.77699e+11\n", - " Region: \"zone_1\"\tRelError: 5.65341e-05\tAbsError: 1.31717e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.61586e-05\tAbsError: 1.24204e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.75403e-07\tAbsError: 1.30475e-04\n", - " Region: \"zone_3\"\tRelError: 4.79390e-04\tAbsError: 8.77699e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43239e-04\tAbsError: 2.14015e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.28226e-05\tAbsError: 6.63684e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.52952e-04\tAbsError: 1.25007e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.75403e-07\tAbsError: 1.30475e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.33017e-05\tAbsError: 1.25250e+10\n", - " Region: \"zone_1\"\tRelError: 2.46569e-06\tAbsError: 9.72458e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.43772e-06\tAbsError: 7.05981e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.79653e-08\tAbsError: 9.71752e-06\n", - " Region: \"zone_3\"\tRelError: 1.08360e-05\tAbsError: 1.25250e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37872e-07\tAbsError: 8.80212e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.06618e-07\tAbsError: 3.72290e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.56353e-06\tAbsError: 7.35679e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.79715e-08\tAbsError: 9.71990e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.19195e+00\tAbsError: 1.07579e+16\n", - " Region: \"zone_1\"\tRelError: 6.33495e-01\tAbsError: 8.81214e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.33336e-01\tAbsError: 3.27220e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59452e-04\tAbsError: 5.53993e-02\n", - " Region: \"zone_3\"\tRelError: 1.55845e+00\tAbsError: 1.07579e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.62844e-01\tAbsError: 5.18589e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32311e-01\tAbsError: 5.57203e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.63136e-01\tAbsError: 3.27221e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59452e-04\tAbsError: 5.53993e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:51\u001b[0m.\u001b[1;36m255\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:51\u001b[0m.\u001b[1;36m255\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6357142857142857\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.59960e-02\tAbsError: 3.73217e+12\n", - " Region: \"zone_1\"\tRelError: 7.31305e-03\tAbsError: 2.21475e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.30674e-03\tAbsError: 2.57182e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", - " Region: \"zone_3\"\tRelError: 5.86829e-02\tAbsError: 3.73217e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.62142e-02\tAbsError: 2.07187e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.09163e-04\tAbsError: 1.66031e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65329e-03\tAbsError: 2.69578e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 4.55570e+00\tAbsError: 5.16331e+15\n", - " Region: \"zone_1\"\tRelError: 3.06111e+00\tAbsError: 6.97364e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.06100e+00\tAbsError: 3.07634e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12162e-04\tAbsError: 3.89730e-02\n", - " Region: \"zone_3\"\tRelError: 1.49459e+00\tAbsError: 5.16331e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38938e-01\tAbsError: 2.46191e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.11412e-01\tAbsError: 2.70140e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.44124e-01\tAbsError: 3.07634e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12162e-04\tAbsError: 3.89730e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.49173e-04\tAbsError: 1.08665e+11\n", - " Region: \"zone_1\"\tRelError: 2.49796e-05\tAbsError: 4.96969e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.48367e-05\tAbsError: 7.16851e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42909e-07\tAbsError: 4.96252e-05\n", - " Region: \"zone_3\"\tRelError: 1.24193e-04\tAbsError: 1.08665e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.07162e-06\tAbsError: 7.44871e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.99576e-06\tAbsError: 3.41777e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09983e-04\tAbsError: 7.48608e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42909e-07\tAbsError: 4.96252e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.20212e+00\tAbsError: 7.47831e+15\n", - " Region: \"zone_1\"\tRelError: 1.32597e-01\tAbsError: 3.89759e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.32557e-01\tAbsError: 2.52828e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.94599e-05\tAbsError: 1.36931e-02\n", - " Region: \"zone_3\"\tRelError: 1.06952e+00\tAbsError: 7.47831e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.83767e-01\tAbsError: 3.66669e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.39313e-01\tAbsError: 3.81162e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46404e-01\tAbsError: 2.54085e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.05332e-05\tAbsError: 1.40654e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.14034e-04\tAbsError: 1.03618e+12\n", - " Region: \"zone_1\"\tRelError: 1.43803e-04\tAbsError: 7.79056e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43584e-04\tAbsError: 1.54074e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19396e-07\tAbsError: 7.63649e-05\n", - " Region: \"zone_3\"\tRelError: 6.70231e-04\tAbsError: 1.03618e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.21829e-04\tAbsError: 2.70793e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.05108e-04\tAbsError: 7.65387e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.43074e-04\tAbsError: 1.54210e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19498e-07\tAbsError: 7.64015e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.84879e+02\tAbsError: 9.85047e+15\n", - " Region: \"zone_1\"\tRelError: 2.83120e+02\tAbsError: 4.23838e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.83120e+02\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.02987e-10\tAbsError: 2.79472e-07\n", - " Region: \"zone_3\"\tRelError: 1.75959e+00\tAbsError: 9.85047e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81501e-01\tAbsError: 5.21342e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.81322e-01\tAbsError: 4.63704e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.96768e-01\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03413e-10\tAbsError: 2.79627e-07\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.13964e+00\tAbsError: 3.47644e+15\n", - " Region: \"zone_1\"\tRelError: 1.85284e-01\tAbsError: 3.50197e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.85258e-01\tAbsError: 2.58979e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.62526e-05\tAbsError: 9.12177e-03\n", - " Region: \"zone_3\"\tRelError: 9.54354e-01\tAbsError: 3.47644e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46208e-01\tAbsError: 1.62778e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.89583e-01\tAbsError: 1.84866e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18536e-01\tAbsError: 2.53855e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.62526e-05\tAbsError: 9.12177e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.73047e-05\tAbsError: 4.40670e+10\n", - " Region: \"zone_1\"\tRelError: 5.75467e-06\tAbsError: 5.44475e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.73914e-06\tAbsError: 3.84897e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.55326e-08\tAbsError: 5.40626e-06\n", - " Region: \"zone_3\"\tRelError: 3.15501e-05\tAbsError: 4.40670e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.02445e-06\tAbsError: 1.61588e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.99827e-06\tAbsError: 2.79082e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.55118e-05\tAbsError: 3.86967e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.55391e-08\tAbsError: 5.40861e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:53\u001b[0m.\u001b[1;36m949\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.525\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 9.70347e-01\tAbsError: 2.72553e+15\n", - " Region: \"zone_1\"\tRelError: 5.51720e-01\tAbsError: 7.40138e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.51541e-01\tAbsError: 1.17200e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.79546e-04\tAbsError: 6.22938e-02\n", - " Region: \"zone_3\"\tRelError: 4.18627e-01\tAbsError: 2.72553e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.23799e-01\tAbsError: 1.44536e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.44218e-01\tAbsError: 1.28017e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.04299e-02\tAbsError: 1.17201e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.79839e-04\tAbsError: 6.23947e-02\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.61312e-05\tAbsError: 5.74046e+10\n", - " Region: \"zone_1\"\tRelError: 1.61849e-05\tAbsError: 6.45313e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.59991e-05\tAbsError: 3.79845e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.85726e-07\tAbsError: 6.44934e-05\n", - " Region: \"zone_3\"\tRelError: 5.99464e-05\tAbsError: 5.74046e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.77906e-06\tAbsError: 4.68633e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.20461e-06\tAbsError: 1.05413e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.27769e-05\tAbsError: 3.95532e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.85828e-07\tAbsError: 6.45281e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:36:54\u001b[0m.\u001b[1;36m293\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.5\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.40036e+00\tAbsError: 9.59182e+15\n", - " Region: \"zone_1\"\tRelError: 8.50865e-01\tAbsError: 8.47022e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.50714e-01\tAbsError: 3.24493e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.50393e-04\tAbsError: 5.22529e-02\n", - " Region: \"zone_3\"\tRelError: 1.54950e+00\tAbsError: 9.59182e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.59657e-01\tAbsError: 4.65942e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.29505e-01\tAbsError: 4.93240e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60188e-01\tAbsError: 3.24493e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.50393e-04\tAbsError: 5.22529e-02\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 8.24095e-01\tAbsError: 1.04537e+15\n", - " Region: \"zone_1\"\tRelError: 4.93544e-01\tAbsError: 2.65000e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.93494e-01\tAbsError: 9.16559e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.98913e-05\tAbsError: 1.73344e-02\n", - " Region: \"zone_3\"\tRelError: 3.30551e-01\tAbsError: 1.04537e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84640e-01\tAbsError: 5.55503e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10521e-01\tAbsError: 4.89866e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.53403e-02\tAbsError: 9.16565e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.98913e-05\tAbsError: 1.73344e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.33935e-01\tAbsError: 4.64555e+14\n", - " Region: \"zone_1\"\tRelError: 2.94732e-02\tAbsError: 5.29433e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.93213e-02\tAbsError: 2.44798e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.51832e-04\tAbsError: 5.26985e-02\n", - " Region: \"zone_3\"\tRelError: 1.04462e-01\tAbsError: 4.64555e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.87627e-02\tAbsError: 2.71658e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.26664e-02\tAbsError: 1.92897e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.28808e-02\tAbsError: 2.61363e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.51991e-04\tAbsError: 5.27520e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.17170e+01\tAbsError: 8.75063e+15\n", - " Region: \"zone_1\"\tRelError: 1.00071e+01\tAbsError: 4.22113e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00071e+01\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.46569e-09\tAbsError: 2.24513e-06\n", - " Region: \"zone_3\"\tRelError: 1.70995e+00\tAbsError: 8.75063e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80236e-01\tAbsError: 5.03722e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.80173e-01\tAbsError: 3.71341e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49543e-01\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.46650e-09\tAbsError: 2.24544e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.18426e+00\tAbsError: 6.71886e+15\n", - " Region: \"zone_1\"\tRelError: 1.30280e-01\tAbsError: 3.66340e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.30249e-01\tAbsError: 2.57139e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.14700e-05\tAbsError: 1.09200e-02\n", - " Region: \"zone_3\"\tRelError: 1.05398e+00\tAbsError: 6.71886e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.78717e-01\tAbsError: 3.28141e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.32598e-01\tAbsError: 3.43745e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.42637e-01\tAbsError: 2.54415e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.23852e-05\tAbsError: 1.12379e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.60199e+01\tAbsError: 8.22903e+15\n", - " Region: \"zone_1\"\tRelError: 3.43433e+01\tAbsError: 4.09555e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.43433e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.48443e-09\tAbsError: 1.21289e-06\n", - " Region: \"zone_3\"\tRelError: 1.67662e+00\tAbsError: 8.22903e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.78919e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.43984e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37338e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.48691e-09\tAbsError: 1.21378e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.23262e-02\tAbsError: 1.95138e+14\n", - " Region: \"zone_1\"\tRelError: 2.57438e-02\tAbsError: 3.23382e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.56511e-02\tAbsError: 1.67807e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.26701e-05\tAbsError: 3.21704e-02\n", - " Region: \"zone_3\"\tRelError: 6.65824e-02\tAbsError: 1.95138e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.49682e-02\tAbsError: 6.65802e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.06072e-03\tAbsError: 1.28558e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.46071e-03\tAbsError: 1.74923e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.26947e-05\tAbsError: 3.21777e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.87196e-02\tAbsError: 3.13816e+13\n", - " Region: \"zone_1\"\tRelError: 6.85396e-03\tAbsError: 6.84082e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.85204e-03\tAbsError: 1.95230e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.91475e-06\tAbsError: 6.64559e-04\n", - " Region: \"zone_3\"\tRelError: 2.18657e-02\tAbsError: 3.13816e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74111e-03\tAbsError: 1.46062e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.58712e-03\tAbsError: 1.67754e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.85355e-02\tAbsError: 2.02101e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.92269e-06\tAbsError: 6.67317e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.93208e+00\tAbsError: 1.64182e+15\n", - " Region: \"zone_1\"\tRelError: 4.10297e-01\tAbsError: 7.07022e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.10186e-01\tAbsError: 3.22434e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10672e-04\tAbsError: 3.84588e-02\n", - " Region: \"zone_3\"\tRelError: 1.52179e+00\tAbsError: 1.64182e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.60022e-01\tAbsError: 9.13086e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.40366e-01\tAbsError: 7.28733e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21289e-01\tAbsError: 3.22435e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10672e-04\tAbsError: 3.84588e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.81103e+00\tAbsError: 2.38656e+15\n", - " Region: \"zone_1\"\tRelError: 3.40562e+00\tAbsError: 6.61836e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.40546e+00\tAbsError: 1.13368e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.58076e-04\tAbsError: 5.48468e-02\n", - " Region: \"zone_3\"\tRelError: 4.05411e-01\tAbsError: 2.38656e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17600e-01\tAbsError: 1.25698e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.39569e-01\tAbsError: 1.12958e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 4.80838e-02\tAbsError: 1.13370e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.58243e-04\tAbsError: 5.49035e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.73485e+00\tAbsError: 1.08973e+15\n", - " Region: \"zone_1\"\tRelError: 2.25350e+00\tAbsError: 6.85700e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25339e+00\tAbsError: 3.07635e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", - " Region: \"zone_3\"\tRelError: 1.48136e+00\tAbsError: 1.08973e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41054e-01\tAbsError: 6.25022e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.24005e-01\tAbsError: 4.64711e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16189e-01\tAbsError: 3.07637e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.13427e-02\tAbsError: 1.62210e+13\n", - " Region: \"zone_1\"\tRelError: 1.73710e-02\tAbsError: 1.21679e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.73676e-02\tAbsError: 1.36050e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.46587e-06\tAbsError: 1.20318e-03\n", - " Region: \"zone_3\"\tRelError: 1.39717e-02\tAbsError: 1.62210e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19687e-03\tAbsError: 6.47584e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.09668e-03\tAbsError: 9.74512e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16747e-02\tAbsError: 1.39577e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.46587e-06\tAbsError: 1.20318e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.36574e-04\tAbsError: 6.20350e+11\n", - " Region: \"zone_1\"\tRelError: 5.71508e-05\tAbsError: 1.58969e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.25718e-05\tAbsError: 4.29208e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.57892e-06\tAbsError: 1.58926e-03\n", - " Region: \"zone_3\"\tRelError: 1.79423e-04\tAbsError: 6.20350e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.81023e-05\tAbsError: 4.31262e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.16006e-05\tAbsError: 1.89089e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35142e-04\tAbsError: 4.34629e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.57892e-06\tAbsError: 1.58926e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.10894e+00\tAbsError: 1.04098e+15\n", - " Region: \"zone_1\"\tRelError: 1.06086e-01\tAbsError: 3.49118e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06060e-01\tAbsError: 2.58908e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.59896e-05\tAbsError: 9.02095e-03\n", - " Region: \"zone_3\"\tRelError: 1.00285e+00\tAbsError: 1.04098e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.72685e-01\tAbsError: 4.70486e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.20681e-01\tAbsError: 5.70489e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09459e-01\tAbsError: 2.57724e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.59942e-05\tAbsError: 9.02254e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 3.95854e-01\tAbsError: 4.01780e+14\n", - " Region: \"zone_1\"\tRelError: 2.97435e-01\tAbsError: 4.83384e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.97297e-01\tAbsError: 2.29736e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.38604e-04\tAbsError: 4.81087e-02\n", - " Region: \"zone_3\"\tRelError: 9.84191e-02\tAbsError: 4.01780e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.66330e-02\tAbsError: 2.31666e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.17536e-02\tAbsError: 1.70115e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.98938e-02\tAbsError: 2.43734e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.38761e-04\tAbsError: 4.81621e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.38677e+00\tAbsError: 6.38966e+14\n", - " Region: \"zone_1\"\tRelError: 4.51470e-01\tAbsError: 3.37904e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.51448e-01\tAbsError: 2.58448e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", - " Region: \"zone_3\"\tRelError: 9.35299e-01\tAbsError: 6.38966e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42607e-01\tAbsError: 3.02038e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.95795e-01\tAbsError: 3.36928e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.68743e-02\tAbsError: 2.57679e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.53065e-03\tAbsError: 7.24481e+11\n", - " Region: \"zone_1\"\tRelError: 1.49459e-03\tAbsError: 1.07639e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49149e-03\tAbsError: 6.55190e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.09641e-06\tAbsError: 1.07573e-03\n", - " Region: \"zone_3\"\tRelError: 1.03606e-03\tAbsError: 7.24481e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73129e-05\tAbsError: 2.45596e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.81580e-05\tAbsError: 4.78885e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 9.37490e-04\tAbsError: 6.76708e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.09642e-06\tAbsError: 1.07576e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.16659e-03\tAbsError: 1.56179e+12\n", - " Region: \"zone_1\"\tRelError: 5.49118e-04\tAbsError: 8.25361e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.48882e-04\tAbsError: 7.56127e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.35610e-07\tAbsError: 8.17800e-05\n", - " Region: \"zone_3\"\tRelError: 1.61747e-03\tAbsError: 1.56179e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.04155e-05\tAbsError: 7.80826e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.99233e-05\tAbsError: 7.80963e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.47689e-03\tAbsError: 7.63501e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.35622e-07\tAbsError: 8.17818e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.15048e-01\tAbsError: 4.01161e+14\n", - " Region: \"zone_1\"\tRelError: 3.68701e-02\tAbsError: 2.28829e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.68361e-02\tAbsError: 1.10529e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.40835e-05\tAbsError: 1.18299e-02\n", - " Region: \"zone_3\"\tRelError: 3.78178e-01\tAbsError: 4.01161e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.20081e-01\tAbsError: 1.95045e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.20222e-01\tAbsError: 2.06116e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.78403e-02\tAbsError: 1.10530e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.40894e-05\tAbsError: 1.18320e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.32002e-02\tAbsError: 2.72995e+13\n", - " Region: \"zone_1\"\tRelError: 2.32135e-02\tAbsError: 6.74833e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.32116e-02\tAbsError: 1.80346e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.89232e-06\tAbsError: 6.56799e-04\n", - " Region: \"zone_3\"\tRelError: 1.99868e-02\tAbsError: 2.72995e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.62006e-03\tAbsError: 1.26801e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.47679e-03\tAbsError: 1.46193e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.68880e-02\tAbsError: 1.87805e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.89880e-06\tAbsError: 6.59049e-04\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.41554e-01\tAbsError: 2.20715e+14\n", - " Region: \"zone_1\"\tRelError: 2.89595e-02\tAbsError: 1.67352e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.89377e-02\tAbsError: 9.16565e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18085e-05\tAbsError: 7.56954e-03\n", - " Region: \"zone_3\"\tRelError: 3.12594e-01\tAbsError: 2.20715e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94155e-01\tAbsError: 1.01533e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.87246e-02\tAbsError: 1.19182e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.96932e-02\tAbsError: 9.16570e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18152e-05\tAbsError: 7.57200e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.69038e-03\tAbsError: 1.04370e+12\n", - " Region: \"zone_1\"\tRelError: 1.58975e-03\tAbsError: 1.04879e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.58945e-03\tAbsError: 5.38488e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.00336e-07\tAbsError: 1.04341e-04\n", - " Region: \"zone_3\"\tRelError: 1.10063e-03\tAbsError: 1.04370e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.23814e-05\tAbsError: 5.26651e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.22994e-05\tAbsError: 5.17045e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 9.95649e-04\tAbsError: 5.63224e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.00360e-07\tAbsError: 1.04351e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.73714e-04\tAbsError: 7.72899e+10\n", - " Region: \"zone_1\"\tRelError: 4.49573e-05\tAbsError: 9.55178e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.46825e-05\tAbsError: 4.77093e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.74854e-07\tAbsError: 9.54700e-05\n", - " Region: \"zone_3\"\tRelError: 1.28757e-04\tAbsError: 7.72899e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.96964e-06\tAbsError: 3.45890e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.00987e-06\tAbsError: 4.27008e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20503e-04\tAbsError: 4.78699e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.74949e-07\tAbsError: 9.55032e-05\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.89721e-02\tAbsError: 6.93237e+13\n", - " Region: \"zone_1\"\tRelError: 1.12555e-02\tAbsError: 6.08752e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12385e-02\tAbsError: 1.96047e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69682e-05\tAbsError: 5.89147e-03\n", - " Region: \"zone_3\"\tRelError: 7.77166e-02\tAbsError: 6.93237e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.31797e-02\tAbsError: 4.13510e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.75730e-03\tAbsError: 2.79727e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.76262e-03\tAbsError: 1.97204e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69682e-05\tAbsError: 5.89147e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.00874e-04\tAbsError: 5.54848e+11\n", - " Region: \"zone_1\"\tRelError: 3.62392e-04\tAbsError: 1.46665e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.58171e-04\tAbsError: 4.14226e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.22130e-06\tAbsError: 1.46624e-03\n", - " Region: \"zone_3\"\tRelError: 2.38482e-04\tAbsError: 5.54848e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38984e-05\tAbsError: 3.56593e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.33198e-05\tAbsError: 1.98255e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.97042e-04\tAbsError: 4.18018e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.22137e-06\tAbsError: 1.46629e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.19808e-02\tAbsError: 3.06344e+13\n", - " Region: \"zone_1\"\tRelError: 2.04251e-02\tAbsError: 4.10278e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.04136e-02\tAbsError: 1.00349e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", - " Region: \"zone_3\"\tRelError: 6.15557e-02\tAbsError: 3.06344e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38926e-02\tAbsError: 1.71938e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.73234e-03\tAbsError: 1.34406e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.91920e-03\tAbsError: 1.01109e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.67954e-04\tAbsError: 1.01821e+11\n", - " Region: \"zone_1\"\tRelError: 2.21136e-04\tAbsError: 6.97280e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20936e-04\tAbsError: 5.57180e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00534e-07\tAbsError: 6.96723e-05\n", - " Region: \"zone_3\"\tRelError: 1.46817e-04\tAbsError: 1.01821e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.39462e-06\tAbsError: 5.27392e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.41727e-06\tAbsError: 4.90816e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35805e-04\tAbsError: 5.79583e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00607e-07\tAbsError: 6.96980e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.51642e-04\tAbsError: 9.55059e+10\n", - " Region: \"zone_1\"\tRelError: 3.88744e-05\tAbsError: 1.03918e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.88446e-05\tAbsError: 4.18646e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.97970e-08\tAbsError: 1.03499e-05\n", - " Region: \"zone_3\"\tRelError: 1.12767e-04\tAbsError: 9.55059e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.17880e-06\tAbsError: 5.35381e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.13971e-06\tAbsError: 4.19677e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04419e-04\tAbsError: 4.29182e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.98061e-08\tAbsError: 1.03531e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.48729e-03\tAbsError: 2.79154e+12\n", - " Region: \"zone_1\"\tRelError: 3.87179e-04\tAbsError: 4.35466e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.85934e-04\tAbsError: 2.95614e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.24460e-06\tAbsError: 4.32510e-04\n", - " Region: \"zone_3\"\tRelError: 2.10011e-03\tAbsError: 2.79154e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.31175e-04\tAbsError: 9.56489e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.34157e-04\tAbsError: 1.83505e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.53353e-03\tAbsError: 3.02108e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.24504e-06\tAbsError: 4.32656e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.79283e-03\tAbsError: 1.43848e+12\n", - " Region: \"zone_1\"\tRelError: 3.30611e-03\tAbsError: 7.95001e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.30588e-03\tAbsError: 7.04439e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.27004e-07\tAbsError: 7.87957e-05\n", - " Region: \"zone_3\"\tRelError: 1.48671e-03\tAbsError: 1.43848e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.59255e-05\tAbsError: 7.19874e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.55139e-05\tAbsError: 7.18608e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35505e-03\tAbsError: 7.16273e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.27048e-07\tAbsError: 7.88086e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.53920e-03\tAbsError: 1.84314e+12\n", - " Region: \"zone_1\"\tRelError: 2.29752e-04\tAbsError: 2.41443e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29064e-04\tAbsError: 2.20702e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", - " Region: \"zone_3\"\tRelError: 1.30944e-03\tAbsError: 1.84314e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11485e-04\tAbsError: 5.81096e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.63190e-04\tAbsError: 1.26205e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 9.34079e-04\tAbsError: 2.25011e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.02562e-04\tAbsError: 6.84436e+10\n", - " Region: \"zone_1\"\tRelError: 1.21040e-04\tAbsError: 1.06970e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21010e-04\tAbsError: 3.27450e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.06942e-08\tAbsError: 1.06642e-05\n", - " Region: \"zone_3\"\tRelError: 8.15214e-05\tAbsError: 6.84436e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.33271e-06\tAbsError: 3.86457e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.32148e-06\tAbsError: 2.97979e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.48365e-05\tAbsError: 3.43670e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.07019e-08\tAbsError: 1.06669e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.08772e-05\tAbsError: 1.00314e+10\n", - " Region: \"zone_1\"\tRelError: 5.40787e-06\tAbsError: 6.34084e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.38963e-06\tAbsError: 4.94059e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.82408e-08\tAbsError: 6.33590e-06\n", - " Region: \"zone_3\"\tRelError: 1.54694e-05\tAbsError: 1.00314e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.74768e-07\tAbsError: 5.64810e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.74551e-07\tAbsError: 4.38331e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.45018e-05\tAbsError: 5.07095e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.82431e-08\tAbsError: 6.33672e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:03\u001b[0m.\u001b[1;36m771\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: 0.75\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.25466e-04\tAbsError: 3.48774e+11\n", - " Region: \"zone_1\"\tRelError: 7.83109e-05\tAbsError: 1.66659e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.78315e-05\tAbsError: 2.09453e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.79396e-07\tAbsError: 1.66449e-04\n", - " Region: \"zone_3\"\tRelError: 3.47155e-04\tAbsError: 3.48774e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98014e-05\tAbsError: 2.24608e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.95539e-05\tAbsError: 1.24166e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.07320e-04\tAbsError: 2.18500e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.79412e-07\tAbsError: 1.66457e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 4.62391e-04\tAbsError: 7.31803e+10\n", - " Region: \"zone_1\"\tRelError: 3.39031e-04\tAbsError: 8.88123e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.38775e-04\tAbsError: 4.59725e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.55543e-07\tAbsError: 8.87663e-05\n", - " Region: \"zone_3\"\tRelError: 1.23361e-04\tAbsError: 7.31803e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.89040e-06\tAbsError: 3.23307e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.92637e-06\tAbsError: 4.08496e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15288e-04\tAbsError: 4.64206e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.55633e-07\tAbsError: 8.87978e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.51045e-04\tAbsError: 2.02519e+11\n", - " Region: \"zone_1\"\tRelError: 4.54891e-05\tAbsError: 1.12868e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.51644e-05\tAbsError: 1.25671e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.24705e-07\tAbsError: 1.12743e-04\n", - " Region: \"zone_3\"\tRelError: 2.05556e-04\tAbsError: 2.02519e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12163e-05\tAbsError: 1.36505e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10724e-05\tAbsError: 6.60139e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82943e-04\tAbsError: 1.30848e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.24777e-07\tAbsError: 1.12769e-04\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.67619e-05\tAbsError: 1.02422e+10\n", - " Region: \"zone_1\"\tRelError: 2.21445e-05\tAbsError: 4.91320e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.21303e-05\tAbsError: 5.33976e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41260e-08\tAbsError: 4.90786e-06\n", - " Region: \"zone_3\"\tRelError: 1.46175e-05\tAbsError: 1.02422e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.20200e-07\tAbsError: 5.93794e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.20801e-07\tAbsError: 4.30423e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35623e-05\tAbsError: 5.58038e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41284e-08\tAbsError: 4.90869e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:04\u001b[0m.\u001b[1;36m706\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.7000000000000001\u001b[0m\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.68185e-04\tAbsError: 1.57528e+11\n", - " Region: \"zone_1\"\tRelError: 3.02594e-05\tAbsError: 1.46953e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.02175e-05\tAbsError: 1.00508e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.19359e-08\tAbsError: 1.45948e-05\n", - " Region: \"zone_3\"\tRelError: 1.37926e-04\tAbsError: 1.57528e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.15139e-06\tAbsError: 7.37040e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.07858e-06\tAbsError: 8.38241e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19654e-04\tAbsError: 1.03331e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.19521e-08\tAbsError: 1.46007e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.04368e+00\tAbsError: 5.76399e+16\n", - " Region: \"zone_1\"\tRelError: 6.20216e+00\tAbsError: 4.26152e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.20216e+00\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.91158e-09\tAbsError: 1.01133e-06\n", - " Region: \"zone_3\"\tRelError: 1.84152e+00\tAbsError: 5.76399e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81952e-01\tAbsError: 2.86549e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.81071e-01\tAbsError: 2.89849e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78493e-01\tAbsError: 4.26142e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.91186e-09\tAbsError: 1.01143e-06\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 3.62519e-04\tAbsError: 8.85487e+10\n", - " Region: \"zone_1\"\tRelError: 2.58264e-04\tAbsError: 9.90724e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.58235e-04\tAbsError: 3.93706e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.84079e-08\tAbsError: 9.86787e-06\n", - " Region: \"zone_3\"\tRelError: 1.04255e-04\tAbsError: 8.85487e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.93727e-06\tAbsError: 4.96723e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.90392e-06\tAbsError: 3.88764e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 9.63857e-05\tAbsError: 4.02462e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.84165e-08\tAbsError: 9.87086e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.09882e-04\tAbsError: 1.05387e+11\n", - " Region: \"zone_1\"\tRelError: 1.91896e-05\tAbsError: 8.11152e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.91665e-05\tAbsError: 7.26801e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.30974e-08\tAbsError: 8.03884e-06\n", - " Region: \"zone_3\"\tRelError: 9.06925e-05\tAbsError: 1.05387e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41210e-06\tAbsError: 4.74044e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.36012e-06\tAbsError: 5.79823e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.78972e-05\tAbsError: 7.44246e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.31071e-08\tAbsError: 8.04242e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.11982e+00\tAbsError: 2.71568e+16\n", - " Region: \"zone_1\"\tRelError: 3.35178e+00\tAbsError: 4.09552e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.35178e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.75560e-09\tAbsError: 9.57391e-07\n", - " Region: \"zone_3\"\tRelError: 1.76804e+00\tAbsError: 2.71568e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68907e-01\tAbsError: 1.36090e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.68433e-01\tAbsError: 1.35478e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.30705e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.75592e-09\tAbsError: 9.57503e-07\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 5.47840e-05\tAbsError: 9.54711e+09\n", - " Region: \"zone_1\"\tRelError: 4.01920e-05\tAbsError: 5.92982e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.01749e-05\tAbsError: 4.76008e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70572e-08\tAbsError: 5.92506e-06\n", - " Region: \"zone_3\"\tRelError: 1.45920e-05\tAbsError: 9.54711e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.57614e-07\tAbsError: 5.39303e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.57465e-07\tAbsError: 4.15407e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36599e-05\tAbsError: 4.87161e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70596e-08\tAbsError: 5.92588e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:06\u001b[0m.\u001b[1;36m793\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:06\u001b[0m.\u001b[1;36m793\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7428571428571428\u001b[0m \n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.44388e-05\tAbsError: 1.29327e+10\n", - " Region: \"zone_1\"\tRelError: 2.67541e-06\tAbsError: 8.73025e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.65031e-06\tAbsError: 7.36577e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.51027e-08\tAbsError: 8.72289e-06\n", - " Region: \"zone_3\"\tRelError: 1.17634e-05\tAbsError: 1.29327e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.52706e-07\tAbsError: 8.97101e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.39977e-07\tAbsError: 3.96172e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04456e-05\tAbsError: 7.66709e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.51079e-08\tAbsError: 8.72483e-06\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.86890e+00\tAbsError: 6.02920e+16\n", - " Region: \"zone_1\"\tRelError: 2.42910e-01\tAbsError: 2.38352e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.42317e-01\tAbsError: 3.27219e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.92373e-04\tAbsError: 2.05630e-01\n", - " Region: \"zone_3\"\tRelError: 1.62599e+00\tAbsError: 6.02920e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.58106e-01\tAbsError: 3.05392e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.16845e-01\tAbsError: 2.97528e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.50451e-01\tAbsError: 3.27220e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.92373e-04\tAbsError: 2.05630e-01\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:06\u001b[0m.\u001b[1;36m903\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.63125\u001b[0m \n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "number of equations 31816\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 7.21635e-06\tAbsError: 6.66070e+09\n", - " Region: \"zone_1\"\tRelError: 1.30608e-06\tAbsError: 5.92265e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28905e-06\tAbsError: 4.03393e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70320e-08\tAbsError: 5.91862e-06\n", - " Region: \"zone_3\"\tRelError: 5.91027e-06\tAbsError: 6.66070e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61854e-07\tAbsError: 4.98332e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.27195e-07\tAbsError: 1.67738e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 5.20418e-06\tAbsError: 4.19235e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70346e-08\tAbsError: 5.91965e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:07\u001b[0m.\u001b[1;36m421\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.6\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.73275e+00\tAbsError: 2.68838e+16\n", - " Region: \"zone_1\"\tRelError: 1.92080e-01\tAbsError: 1.46306e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.91747e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.32681e-04\tAbsError: 1.15542e-01\n", - " Region: \"zone_3\"\tRelError: 1.54067e+00\tAbsError: 2.68838e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.36324e-01\tAbsError: 1.35736e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.01335e-01\tAbsError: 1.33102e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.02681e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.32681e-04\tAbsError: 1.15542e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.88825e+00\tAbsError: 3.66092e+16\n", - " Region: \"zone_1\"\tRelError: 5.83989e-01\tAbsError: 1.20812e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.83715e-01\tAbsError: 2.58680e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.73592e-04\tAbsError: 9.49436e-02\n", - " Region: \"zone_3\"\tRelError: 1.30426e+00\tAbsError: 3.66092e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.65737e-01\tAbsError: 1.87328e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.12024e-01\tAbsError: 1.78764e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.26225e-01\tAbsError: 2.44271e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.73592e-04\tAbsError: 9.49436e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.15149e+01\tAbsError: 5.17173e+16\n", - " Region: \"zone_1\"\tRelError: 9.68451e+00\tAbsError: 4.23844e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.68451e+00\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.76263e-09\tAbsError: 9.59637e-07\n", - " Region: \"zone_3\"\tRelError: 1.83044e+00\tAbsError: 5.17173e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80233e-01\tAbsError: 2.56822e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.79429e-01\tAbsError: 2.60351e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.70776e-01\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.76291e-09\tAbsError: 9.59736e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.41152e+01\tAbsError: 9.50503e+15\n", - " Region: \"zone_1\"\tRelError: 2.23613e+01\tAbsError: 4.22094e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.23613e+01\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.04249e-09\tAbsError: 3.62828e-07\n", - " Region: \"zone_3\"\tRelError: 1.75392e+00\tAbsError: 9.50503e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80082e-01\tAbsError: 5.07100e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.79909e-01\tAbsError: 4.43403e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.93931e-01\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.04297e-09\tAbsError: 3.63001e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.57743e+01\tAbsError: 8.48667e+15\n", - " Region: \"zone_1\"\tRelError: 1.40602e+01\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40602e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.57556e-10\tAbsError: 1.24451e-07\n", - " Region: \"zone_3\"\tRelError: 1.71408e+00\tAbsError: 8.48667e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69582e-01\tAbsError: 4.51146e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69441e-01\tAbsError: 3.97521e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.75053e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.57765e-10\tAbsError: 1.24526e-07\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.12307e+00\tAbsError: 1.60442e+16\n", - " Region: \"zone_1\"\tRelError: 1.49907e-01\tAbsError: 9.31426e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49713e-01\tAbsError: 2.58569e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93773e-04\tAbsError: 6.72856e-02\n", - " Region: \"zone_3\"\tRelError: 9.73164e-01\tAbsError: 1.60442e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39500e-01\tAbsError: 8.04160e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.83757e-01\tAbsError: 8.00261e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49713e-01\tAbsError: 2.43087e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93773e-04\tAbsError: 6.72856e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.05061e+00\tAbsError: 1.23556e+16\n", - " Region: \"zone_1\"\tRelError: 5.12291e-01\tAbsError: 5.29221e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.12172e-01\tAbsError: 1.17189e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18739e-04\tAbsError: 4.12032e-02\n", - " Region: \"zone_3\"\tRelError: 5.38316e-01\tAbsError: 1.23556e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01621e-01\tAbsError: 6.29025e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.14930e-01\tAbsError: 6.06537e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.21646e-01\tAbsError: 1.17190e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18771e-04\tAbsError: 4.12145e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.84618e+00\tAbsError: 5.28715e+16\n", - " Region: \"zone_1\"\tRelError: 2.36818e-01\tAbsError: 2.22968e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.36269e-01\tAbsError: 3.24492e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.48791e-04\tAbsError: 1.90518e-01\n", - " Region: \"zone_3\"\tRelError: 1.60937e+00\tAbsError: 5.28715e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.54300e-01\tAbsError: 2.70880e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.18083e-01\tAbsError: 2.57835e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.36434e-01\tAbsError: 3.24492e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.48791e-04\tAbsError: 1.90518e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.85845e+00\tAbsError: 8.90679e+15\n", - " Region: \"zone_1\"\tRelError: 3.16258e-01\tAbsError: 8.25488e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.16114e-01\tAbsError: 3.22432e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.44787e-04\tAbsError: 5.03056e-02\n", - " Region: \"zone_3\"\tRelError: 1.54219e+00\tAbsError: 8.90679e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57509e-01\tAbsError: 4.31699e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.26535e-01\tAbsError: 4.58980e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.57998e-01\tAbsError: 3.22433e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.44787e-04\tAbsError: 5.03056e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 4.55570e+00\tAbsError: 5.16331e+15\n", - " Region: \"zone_1\"\tRelError: 3.06111e+00\tAbsError: 6.97364e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.06100e+00\tAbsError: 3.07634e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12162e-04\tAbsError: 3.89730e-02\n", - " Region: \"zone_3\"\tRelError: 1.49459e+00\tAbsError: 5.16331e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38938e-01\tAbsError: 2.46191e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.11412e-01\tAbsError: 2.70140e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.44124e-01\tAbsError: 3.07634e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12162e-04\tAbsError: 3.89730e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.25010e-01\tAbsError: 4.83168e+15\n", - " Region: \"zone_1\"\tRelError: 9.35029e-02\tAbsError: 6.02167e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.33558e-02\tAbsError: 9.16529e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47066e-04\tAbsError: 5.10514e-02\n", - " Region: \"zone_3\"\tRelError: 3.31507e-01\tAbsError: 4.83168e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74852e-01\tAbsError: 2.44485e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.96161e-02\tAbsError: 2.38683e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.68922e-02\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47066e-04\tAbsError: 5.10514e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.04879e-01\tAbsError: 2.54878e+15\n", - " Region: \"zone_1\"\tRelError: 1.27217e-02\tAbsError: 2.65399e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19572e-02\tAbsError: 3.55247e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.64526e-04\tAbsError: 2.65044e-01\n", - " Region: \"zone_3\"\tRelError: 9.21577e-02\tAbsError: 2.54878e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.96473e-02\tAbsError: 1.41994e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.63665e-02\tAbsError: 1.12884e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.53794e-02\tAbsError: 3.55247e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.64526e-04\tAbsError: 2.65044e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.52308e+00\tAbsError: 3.28495e+16\n", - " Region: \"zone_1\"\tRelError: 3.42407e-01\tAbsError: 1.19297e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.42138e-01\tAbsError: 2.58048e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69384e-04\tAbsError: 9.34920e-02\n", - " Region: \"zone_3\"\tRelError: 1.18068e+00\tAbsError: 3.28495e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.63948e-01\tAbsError: 1.69253e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.02911e-01\tAbsError: 1.59242e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.13548e-01\tAbsError: 2.45952e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69384e-04\tAbsError: 9.34920e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.17207e+00\tAbsError: 6.17482e+15\n", - " Region: \"zone_1\"\tRelError: 1.28422e-01\tAbsError: 3.49522e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28396e-01\tAbsError: 2.58694e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.61752e-05\tAbsError: 9.08277e-03\n", - " Region: \"zone_3\"\tRelError: 1.04365e+00\tAbsError: 6.17482e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.74587e-01\tAbsError: 3.00441e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.29308e-01\tAbsError: 3.17042e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39725e-01\tAbsError: 2.54349e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.70096e-05\tAbsError: 9.37260e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.13964e+00\tAbsError: 3.47644e+15\n", - " Region: \"zone_1\"\tRelError: 1.85284e-01\tAbsError: 3.50197e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.85258e-01\tAbsError: 2.58979e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.62526e-05\tAbsError: 9.12177e-03\n", - " Region: \"zone_3\"\tRelError: 9.54354e-01\tAbsError: 3.47644e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46208e-01\tAbsError: 1.62778e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.89583e-01\tAbsError: 1.84866e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18536e-01\tAbsError: 2.53855e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.62526e-05\tAbsError: 9.12177e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.30868e-01\tAbsError: 1.08442e+15\n", - " Region: \"zone_1\"\tRelError: 2.27753e-02\tAbsError: 2.15920e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.21537e-02\tAbsError: 2.84606e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.21607e-04\tAbsError: 2.15635e-01\n", - " Region: \"zone_3\"\tRelError: 1.08092e-01\tAbsError: 1.08442e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.76472e-02\tAbsError: 4.26455e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.43864e-02\tAbsError: 6.57964e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.54371e-02\tAbsError: 2.84606e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.21607e-04\tAbsError: 2.15635e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.96665e-01\tAbsError: 5.16423e+14\n", - " Region: \"zone_1\"\tRelError: 3.51283e-01\tAbsError: 1.69820e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.51234e-01\tAbsError: 6.58454e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.87925e-05\tAbsError: 1.69161e-02\n", - " Region: \"zone_3\"\tRelError: 2.45382e-01\tAbsError: 5.16423e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89150e-03\tAbsError: 2.57999e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.81653e-03\tAbsError: 2.58423e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.35626e-01\tAbsError: 7.03970e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.87939e-05\tAbsError: 1.69169e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 7.62225e-01\tAbsError: 1.05010e+16\n", - " Region: \"zone_1\"\tRelError: 2.83844e-01\tAbsError: 4.59930e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.83744e-01\tAbsError: 1.13358e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.98633e-05\tAbsError: 3.46572e-02\n", - " Region: \"zone_3\"\tRelError: 4.78382e-01\tAbsError: 1.05010e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.99385e-01\tAbsError: 5.29788e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.14439e-01\tAbsError: 5.20316e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.64458e-01\tAbsError: 1.13359e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.98633e-05\tAbsError: 3.46572e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 7.26645e-01\tAbsError: 2.15278e+15\n", - " Region: \"zone_1\"\tRelError: 3.31433e-01\tAbsError: 6.05991e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.31290e-01\tAbsError: 1.10534e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42795e-04\tAbsError: 4.95458e-02\n", - " Region: \"zone_3\"\tRelError: 3.95212e-01\tAbsError: 2.15278e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12816e-01\tAbsError: 1.12567e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.35891e-01\tAbsError: 1.02711e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 4.63622e-02\tAbsError: 1.10535e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42916e-04\tAbsError: 4.95873e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 8.24095e-01\tAbsError: 1.04537e+15\n", - " Region: \"zone_1\"\tRelError: 4.93544e-01\tAbsError: 2.65000e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.93494e-01\tAbsError: 9.16559e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.98913e-05\tAbsError: 1.73344e-02\n", - " Region: \"zone_3\"\tRelError: 3.30551e-01\tAbsError: 1.04537e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84640e-01\tAbsError: 5.55503e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10521e-01\tAbsError: 4.89866e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.53403e-02\tAbsError: 9.16565e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.98913e-05\tAbsError: 1.73344e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.55617e-01\tAbsError: 2.35794e+14\n", - " Region: \"zone_1\"\tRelError: 4.99367e-02\tAbsError: 1.38607e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.98970e-02\tAbsError: 6.98741e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.97528e-05\tAbsError: 1.37908e-02\n", - " Region: \"zone_3\"\tRelError: 1.05680e-01\tAbsError: 2.35794e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.27300e-03\tAbsError: 1.18548e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.21148e-03\tAbsError: 1.17246e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.51557e-02\tAbsError: 7.06637e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.97528e-05\tAbsError: 1.37908e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.15967e-01\tAbsError: 2.31425e+15\n", - " Region: \"zone_1\"\tRelError: 1.78760e-02\tAbsError: 2.59537e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.71284e-02\tAbsError: 3.48918e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.47562e-04\tAbsError: 2.59188e-01\n", - " Region: \"zone_3\"\tRelError: 9.80906e-02\tAbsError: 2.31425e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.02699e-02\tAbsError: 1.24901e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.64089e-02\tAbsError: 1.06525e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 3.06641e-02\tAbsError: 3.48918e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.47562e-04\tAbsError: 2.59188e-01\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.23535e-02\tAbsError: 4.12264e+13\n", - " Region: \"zone_1\"\tRelError: 4.26477e-02\tAbsError: 7.52812e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 4.26260e-02\tAbsError: 5.04964e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.16985e-05\tAbsError: 7.52307e-03\n", - " Region: \"zone_3\"\tRelError: 2.97057e-02\tAbsError: 4.12264e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.92264e-04\tAbsError: 2.07706e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.00613e-04\tAbsError: 2.04559e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88912e-02\tAbsError: 5.61722e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17073e-05\tAbsError: 7.52586e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.16517e-01\tAbsError: 3.59072e+14\n", - " Region: \"zone_1\"\tRelError: 2.25771e-02\tAbsError: 4.51359e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.24477e-02\tAbsError: 2.19008e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29405e-04\tAbsError: 4.49169e-02\n", - " Region: \"zone_3\"\tRelError: 9.39396e-02\tAbsError: 3.59072e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.49211e-02\tAbsError: 2.04313e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.11023e-02\tAbsError: 1.54759e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77866e-02\tAbsError: 2.31053e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29562e-04\tAbsError: 4.49702e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.23262e-02\tAbsError: 1.95138e+14\n", - " Region: \"zone_1\"\tRelError: 2.57438e-02\tAbsError: 3.23382e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.56511e-02\tAbsError: 1.67807e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.26701e-05\tAbsError: 3.21704e-02\n", - " Region: \"zone_3\"\tRelError: 6.65824e-02\tAbsError: 1.95138e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.49682e-02\tAbsError: 6.65802e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.06072e-03\tAbsError: 1.28558e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.46071e-03\tAbsError: 1.74923e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.26947e-05\tAbsError: 3.21777e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.12114e-02\tAbsError: 1.98754e+13\n", - " Region: \"zone_1\"\tRelError: 7.04172e-03\tAbsError: 6.58751e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.02275e-03\tAbsError: 5.51750e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.89733e-05\tAbsError: 6.58199e-03\n", - " Region: \"zone_3\"\tRelError: 1.41697e-02\tAbsError: 1.98754e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43525e-04\tAbsError: 1.00008e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.47254e-04\tAbsError: 9.87467e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.32599e-02\tAbsError: 5.78756e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.89775e-05\tAbsError: 6.58354e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.78541e-01\tAbsError: 4.65128e+14\n", - " Region: \"zone_1\"\tRelError: 1.82836e-01\tAbsError: 1.66511e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82788e-01\tAbsError: 6.74606e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.78290e-05\tAbsError: 1.65836e-02\n", - " Region: \"zone_3\"\tRelError: 1.95705e-01\tAbsError: 4.65128e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.02898e-03\tAbsError: 2.34869e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.93659e-03\tAbsError: 2.30259e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.85691e-01\tAbsError: 7.16761e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.78290e-05\tAbsError: 1.65838e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.63082e-02\tAbsError: 2.31107e+13\n", - " Region: \"zone_1\"\tRelError: 2.74677e-02\tAbsError: 9.69805e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.74649e-02\tAbsError: 2.62228e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.78862e-06\tAbsError: 9.67182e-04\n", - " Region: \"zone_3\"\tRelError: 1.88405e-02\tAbsError: 2.31107e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.28188e-04\tAbsError: 1.16873e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.22003e-04\tAbsError: 1.14235e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.83875e-02\tAbsError: 2.74324e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.78980e-06\tAbsError: 9.67608e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.42280e-02\tAbsError: 2.47518e+13\n", - " Region: \"zone_1\"\tRelError: 5.53796e-03\tAbsError: 6.73994e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.53607e-03\tAbsError: 1.69800e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.89289e-06\tAbsError: 6.57014e-04\n", - " Region: \"zone_3\"\tRelError: 1.86900e-02\tAbsError: 2.47518e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53333e-03\tAbsError: 1.14134e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.39823e-03\tAbsError: 1.33384e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.57566e-02\tAbsError: 1.77535e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.89838e-06\tAbsError: 6.58918e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.13427e-02\tAbsError: 1.62210e+13\n", - " Region: \"zone_1\"\tRelError: 1.73710e-02\tAbsError: 1.21679e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.73676e-02\tAbsError: 1.36050e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.46587e-06\tAbsError: 1.20318e-03\n", - " Region: \"zone_3\"\tRelError: 1.39717e-02\tAbsError: 1.62210e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19687e-03\tAbsError: 6.47584e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.09668e-03\tAbsError: 9.74512e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16747e-02\tAbsError: 1.39577e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.46587e-06\tAbsError: 1.20318e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.24258e-02\tAbsError: 1.10918e+13\n", - " Region: \"zone_1\"\tRelError: 4.12899e-03\tAbsError: 9.16825e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.12635e-03\tAbsError: 2.69238e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.63359e-06\tAbsError: 9.14133e-04\n", - " Region: \"zone_3\"\tRelError: 8.29681e-03\tAbsError: 1.10918e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.48339e-04\tAbsError: 5.58229e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.46113e-04\tAbsError: 5.50951e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.79972e-03\tAbsError: 2.89698e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.63458e-06\tAbsError: 9.14508e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.69761e-02\tAbsError: 3.74524e+13\n", - " Region: \"zone_1\"\tRelError: 2.29430e-02\tAbsError: 7.42886e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29216e-02\tAbsError: 5.18656e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.14100e-05\tAbsError: 7.42368e-03\n", - " Region: \"zone_3\"\tRelError: 2.40331e-02\tAbsError: 3.74524e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.05669e-04\tAbsError: 1.90492e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.13087e-04\tAbsError: 1.84032e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.31929e-02\tAbsError: 5.75912e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.14194e-05\tAbsError: 7.42671e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.70521e-04\tAbsError: 5.09113e+11\n", - " Region: \"zone_1\"\tRelError: 8.68892e-05\tAbsError: 1.38144e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 8.29133e-05\tAbsError: 4.07789e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.97587e-06\tAbsError: 1.38103e-03\n", - " Region: \"zone_3\"\tRelError: 2.83632e-04\tAbsError: 5.09113e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.08586e-05\tAbsError: 3.02120e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.47789e-05\tAbsError: 2.06993e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.44019e-04\tAbsError: 4.12158e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.97592e-06\tAbsError: 1.38107e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 7.66909e-03\tAbsError: 3.14704e+12\n", - " Region: \"zone_1\"\tRelError: 4.55516e-03\tAbsError: 4.55926e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.55385e-03\tAbsError: 3.50181e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.31037e-06\tAbsError: 4.55576e-04\n", - " Region: \"zone_3\"\tRelError: 3.11393e-03\tAbsError: 3.14704e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.10265e-05\tAbsError: 1.59250e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.05073e-05\tAbsError: 1.55454e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.05109e-03\tAbsError: 3.58954e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.31089e-06\tAbsError: 4.55760e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.53065e-03\tAbsError: 7.24481e+11\n", - " Region: \"zone_1\"\tRelError: 1.49459e-03\tAbsError: 1.07639e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49149e-03\tAbsError: 6.55190e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.09641e-06\tAbsError: 1.07573e-03\n", - " Region: \"zone_3\"\tRelError: 1.03606e-03\tAbsError: 7.24481e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73129e-05\tAbsError: 2.45596e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.81580e-05\tAbsError: 4.78885e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 9.37490e-04\tAbsError: 6.76708e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.09642e-06\tAbsError: 1.07576e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.18008e-03\tAbsError: 1.59787e+12\n", - " Region: \"zone_1\"\tRelError: 7.30404e-04\tAbsError: 4.14536e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.29211e-04\tAbsError: 3.64518e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19313e-06\tAbsError: 4.14171e-04\n", - " Region: \"zone_3\"\tRelError: 1.44968e-03\tAbsError: 1.59787e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.59026e-05\tAbsError: 8.02763e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.55751e-05\tAbsError: 7.95108e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37700e-03\tAbsError: 3.97752e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19336e-06\tAbsError: 4.14251e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.95048e-02\tAbsError: 2.09949e+13\n", - " Region: \"zone_1\"\tRelError: 1.44604e-02\tAbsError: 9.66419e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.44577e-02\tAbsError: 2.58958e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.77866e-06\tAbsError: 9.63829e-04\n", - " Region: \"zone_3\"\tRelError: 1.50444e-02\tAbsError: 2.09949e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.32276e-04\tAbsError: 1.06900e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.27944e-04\tAbsError: 1.03050e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.45814e-02\tAbsError: 2.79912e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.77982e-06\tAbsError: 9.64263e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.84577e-03\tAbsError: 1.35231e+12\n", - " Region: \"zone_1\"\tRelError: 4.49302e-04\tAbsError: 7.76287e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.49080e-04\tAbsError: 6.67565e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.21714e-07\tAbsError: 7.69611e-05\n", - " Region: \"zone_3\"\tRelError: 1.39647e-03\tAbsError: 1.35231e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.27210e-05\tAbsError: 6.77214e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.23713e-05\tAbsError: 6.75091e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.27115e-03\tAbsError: 6.82002e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.21783e-07\tAbsError: 7.69826e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 3.25810e-03\tAbsError: 1.38433e+12\n", - " Region: \"zone_1\"\tRelError: 1.93579e-03\tAbsError: 8.23265e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.93556e-03\tAbsError: 1.42317e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36383e-07\tAbsError: 8.21841e-05\n", - " Region: \"zone_3\"\tRelError: 1.32231e-03\tAbsError: 1.38433e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38095e-05\tAbsError: 7.00620e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.33622e-05\tAbsError: 6.83707e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29490e-03\tAbsError: 1.51943e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36475e-07\tAbsError: 8.22170e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.69038e-03\tAbsError: 1.04370e+12\n", - " Region: \"zone_1\"\tRelError: 1.58975e-03\tAbsError: 1.04879e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.58945e-03\tAbsError: 5.38488e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.00336e-07\tAbsError: 1.04341e-04\n", - " Region: \"zone_3\"\tRelError: 1.10063e-03\tAbsError: 1.04370e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.23814e-05\tAbsError: 5.26651e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.22994e-05\tAbsError: 5.17045e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 9.95649e-04\tAbsError: 5.63224e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.00360e-07\tAbsError: 1.04351e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 9.04358e-04\tAbsError: 6.91618e+11\n", - " Region: \"zone_1\"\tRelError: 3.02587e-04\tAbsError: 7.78938e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.02363e-04\tAbsError: 1.55785e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.23501e-07\tAbsError: 7.77380e-05\n", - " Region: \"zone_3\"\tRelError: 6.01772e-04\tAbsError: 6.91618e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.55559e-05\tAbsError: 3.47877e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.53466e-05\tAbsError: 3.43741e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.70646e-04\tAbsError: 1.69595e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.23586e-07\tAbsError: 7.77681e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 6.48585e-04\tAbsError: 2.47337e+11\n", - " Region: \"zone_1\"\tRelError: 3.85704e-04\tAbsError: 3.12578e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.85614e-04\tAbsError: 2.70859e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.98278e-08\tAbsError: 3.12307e-05\n", - " Region: \"zone_3\"\tRelError: 2.62881e-04\tAbsError: 2.47337e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.45149e-06\tAbsError: 1.25219e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.39340e-06\tAbsError: 1.22119e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.57946e-04\tAbsError: 2.86540e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.98642e-08\tAbsError: 3.12442e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 4.92425e-03\tAbsError: 2.88808e+12\n", - " Region: \"zone_1\"\tRelError: 2.42079e-03\tAbsError: 4.51314e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.41950e-03\tAbsError: 3.48348e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29703e-06\tAbsError: 4.50966e-04\n", - " Region: \"zone_3\"\tRelError: 2.50346e-03\tAbsError: 2.88808e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.20028e-05\tAbsError: 1.46758e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.15452e-05\tAbsError: 1.42050e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.43861e-03\tAbsError: 3.69507e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29753e-06\tAbsError: 4.51145e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.59664e-04\tAbsError: 7.21850e+10\n", - " Region: \"zone_1\"\tRelError: 3.97219e-05\tAbsError: 8.40966e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.94799e-05\tAbsError: 4.48581e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.41963e-07\tAbsError: 8.40517e-05\n", - " Region: \"zone_3\"\tRelError: 1.19942e-04\tAbsError: 7.21850e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.84724e-06\tAbsError: 3.25063e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.88000e-06\tAbsError: 3.96787e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11972e-04\tAbsError: 4.54967e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.42049e-07\tAbsError: 8.40819e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.87260e-04\tAbsError: 1.29403e+11\n", - " Region: \"zone_1\"\tRelError: 6.28801e-05\tAbsError: 2.91909e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.27963e-05\tAbsError: 3.06059e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.38368e-08\tAbsError: 2.91603e-05\n", - " Region: \"zone_3\"\tRelError: 1.24379e-04\tAbsError: 1.29403e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91169e-06\tAbsError: 6.49895e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.87741e-06\tAbsError: 6.44135e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18506e-04\tAbsError: 3.32307e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.38700e-08\tAbsError: 2.91722e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.67954e-04\tAbsError: 1.01821e+11\n", - " Region: \"zone_1\"\tRelError: 2.21136e-04\tAbsError: 6.97280e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20936e-04\tAbsError: 5.57180e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00534e-07\tAbsError: 6.96723e-05\n", - " Region: \"zone_3\"\tRelError: 1.46817e-04\tAbsError: 1.01821e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.39462e-06\tAbsError: 5.27392e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.41727e-06\tAbsError: 4.90816e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35805e-04\tAbsError: 5.79583e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00607e-07\tAbsError: 6.96980e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 2.27080e-04\tAbsError: 8.95041e+10\n", - " Region: \"zone_1\"\tRelError: 1.35033e-04\tAbsError: 6.56420e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35014e-04\tAbsError: 9.85787e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.88520e-08\tAbsError: 6.55434e-06\n", - " Region: \"zone_3\"\tRelError: 9.20470e-05\tAbsError: 8.95041e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.93785e-07\tAbsError: 4.53123e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.63978e-07\tAbsError: 4.41918e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 9.02704e-05\tAbsError: 1.05718e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.88598e-08\tAbsError: 6.55724e-06\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.08379e-03\tAbsError: 1.26566e+12\n", - " Region: \"zone_1\"\tRelError: 1.02437e-03\tAbsError: 8.20169e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02414e-03\tAbsError: 1.43461e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.35475e-07\tAbsError: 8.18735e-05\n", - " Region: \"zone_3\"\tRelError: 1.05941e-03\tAbsError: 1.26566e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.41101e-05\tAbsError: 6.43548e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.37336e-05\tAbsError: 6.22113e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03133e-03\tAbsError: 1.56834e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.35568e-07\tAbsError: 8.19066e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.30527e-04\tAbsError: 8.36755e+10\n", - " Region: \"zone_1\"\tRelError: 3.21528e-05\tAbsError: 9.58256e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.21253e-05\tAbsError: 3.75795e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.74775e-08\tAbsError: 9.54498e-06\n", - " Region: \"zone_3\"\tRelError: 9.83741e-05\tAbsError: 8.36755e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.76469e-06\tAbsError: 4.69627e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.73544e-06\tAbsError: 3.67128e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 9.08464e-05\tAbsError: 3.83355e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.74857e-08\tAbsError: 9.54784e-06\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 6.51617e-05\tAbsError: 4.65398e+10\n", - " Region: \"zone_1\"\tRelError: 2.18609e-05\tAbsError: 6.36014e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18427e-05\tAbsError: 1.11819e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.82534e-08\tAbsError: 6.34896e-06\n", - " Region: \"zone_3\"\tRelError: 4.33008e-05\tAbsError: 4.65398e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04809e-06\tAbsError: 2.33986e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03254e-06\tAbsError: 2.31412e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.12019e-05\tAbsError: 1.20844e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.82605e-08\tAbsError: 6.35150e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:21\u001b[0m.\u001b[1;36m511\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.8\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.02562e-04\tAbsError: 6.84436e+10\n", - " Region: \"zone_1\"\tRelError: 1.21040e-04\tAbsError: 1.06970e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21010e-04\tAbsError: 3.27450e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.06942e-08\tAbsError: 1.06642e-05\n", - " Region: \"zone_3\"\tRelError: 8.15214e-05\tAbsError: 6.84436e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.33271e-06\tAbsError: 3.86456e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.32148e-06\tAbsError: 2.97979e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.48365e-05\tAbsError: 3.43670e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.07019e-08\tAbsError: 1.06669e-05\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 5.05688e-05\tAbsError: 1.87400e+10\n", - " Region: \"zone_1\"\tRelError: 3.00855e-05\tAbsError: 2.16282e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.00793e-05\tAbsError: 2.13512e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.21457e-09\tAbsError: 2.16069e-06\n", - " Region: \"zone_3\"\tRelError: 2.04834e-05\tAbsError: 1.87400e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.86175e-07\tAbsError: 9.48899e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.81057e-07\tAbsError: 9.25103e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.01099e-05\tAbsError: 2.27669e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.21717e-09\tAbsError: 2.16162e-06\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 4.16846e-04\tAbsError: 2.27990e+11\n", - " Region: \"zone_1\"\tRelError: 2.05214e-04\tAbsError: 3.10681e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.05125e-04\tAbsError: 2.73539e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.92758e-08\tAbsError: 3.10408e-05\n", - " Region: \"zone_3\"\tRelError: 2.11632e-04\tAbsError: 2.27990e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.53498e-06\tAbsError: 1.15719e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.48133e-06\tAbsError: 1.12271e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06527e-04\tAbsError: 2.97043e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.93115e-08\tAbsError: 3.10540e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.86463e-05\tAbsError: 9.22316e+09\n", - " Region: \"zone_1\"\tRelError: 4.64280e-06\tAbsError: 5.64037e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.62657e-06\tAbsError: 4.63704e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62238e-08\tAbsError: 5.63573e-06\n", - " Region: \"zone_3\"\tRelError: 1.40035e-05\tAbsError: 9.22316e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46099e-07\tAbsError: 5.22327e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.46153e-07\tAbsError: 3.99989e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.30950e-05\tAbsError: 4.73572e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62261e-08\tAbsError: 5.63655e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:22\u001b[0m.\u001b[1;36m518\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:22\u001b[0m.\u001b[1;36m518\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7374999999999999\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.67619e-05\tAbsError: 1.02422e+10\n", - " Region: \"zone_1\"\tRelError: 2.21445e-05\tAbsError: 4.91320e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.21303e-05\tAbsError: 5.33976e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41260e-08\tAbsError: 4.90786e-06\n", - " Region: \"zone_3\"\tRelError: 1.46175e-05\tAbsError: 1.02422e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.20200e-07\tAbsError: 5.93794e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.20801e-07\tAbsError: 4.30421e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35623e-05\tAbsError: 5.58038e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41284e-08\tAbsError: 4.90869e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:23\u001b[0m.\u001b[1;36m083\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.7000000000000001\u001b[0m\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.97502e+01\tAbsError: 1.32808e+17\n", - " Region: \"zone_1\"\tRelError: 2.76074e+01\tAbsError: 4.09563e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.76074e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.00798e-09\tAbsError: 2.08971e-06\n", - " Region: \"zone_3\"\tRelError: 2.14284e+00\tAbsError: 1.32808e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.64512e-01\tAbsError: 6.68287e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.62033e-01\tAbsError: 6.59795e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.16298e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.01029e-09\tAbsError: 2.09057e-06\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.45746e-04\tAbsError: 8.22905e+10\n", - " Region: \"zone_1\"\tRelError: 7.17400e-05\tAbsError: 6.55605e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 7.17211e-05\tAbsError: 9.99739e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.88270e-08\tAbsError: 6.54605e-06\n", - " Region: \"zone_3\"\tRelError: 7.40064e-05\tAbsError: 8.22905e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.17218e-07\tAbsError: 4.18049e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.91845e-07\tAbsError: 4.04856e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.21785e-05\tAbsError: 1.09283e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.88347e-08\tAbsError: 6.54890e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.04546e+01\tAbsError: 4.76402e+16\n", - " Region: \"zone_1\"\tRelError: 1.86325e+01\tAbsError: 4.22100e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86325e+01\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.66022e-09\tAbsError: 9.24093e-07\n", - " Region: \"zone_3\"\tRelError: 1.82215e+00\tAbsError: 4.76402e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78912e-01\tAbsError: 2.36618e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.78161e-01\tAbsError: 2.39784e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.65074e-01\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.66050e-09\tAbsError: 9.24192e-07\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 3.25825e-05\tAbsError: 1.73376e+10\n", - " Region: \"zone_1\"\tRelError: 1.60497e-05\tAbsError: 2.15828e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60435e-05\tAbsError: 2.16924e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.20100e-09\tAbsError: 2.15611e-06\n", - " Region: \"zone_3\"\tRelError: 1.65328e-05\tAbsError: 1.73376e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.93034e-07\tAbsError: 8.79661e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.88292e-07\tAbsError: 8.54099e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.61453e-05\tAbsError: 2.36237e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.20362e-09\tAbsError: 2.15705e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 8.61535e+00\tAbsError: 1.17905e+17\n", - " Region: \"zone_1\"\tRelError: 7.44285e-01\tAbsError: 3.38569e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 7.43397e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.87545e-04\tAbsError: 3.07806e-01\n", - " Region: \"zone_3\"\tRelError: 7.87107e+00\tAbsError: 1.17905e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17750e-01\tAbsError: 5.81639e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.67341e-01\tAbsError: 5.97408e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.58509e+00\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.87924e-04\tAbsError: 3.07944e-01\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:24\u001b[0m.\u001b[1;36m622\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:24\u001b[0m.\u001b[1;36m654\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: 0.85\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:24\u001b[0m.\u001b[1;36m656\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.0 bias\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:24\u001b[0m.\u001b[1;36m687\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.1\u001b[0m \n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 0\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 5.11982e+00\tAbsError: 2.71568e+16\n", - " Region: \"zone_1\"\tRelError: 3.35178e+00\tAbsError: 4.09552e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.35178e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.75560e-09\tAbsError: 9.57391e-07\n", - " Region: \"zone_3\"\tRelError: 1.76804e+00\tAbsError: 2.71568e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68907e-01\tAbsError: 1.36090e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.68433e-01\tAbsError: 1.35478e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.30705e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.75592e-09\tAbsError: 9.57503e-07\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.08204e+00\tAbsError: 4.87885e+16\n", - " Region: \"zone_1\"\tRelError: 4.80662e-01\tAbsError: 2.12907e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.80142e-01\tAbsError: 3.22431e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.20374e-04\tAbsError: 1.80664e-01\n", - " Region: \"zone_3\"\tRelError: 1.60138e+00\tAbsError: 4.87885e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.52649e-01\tAbsError: 2.49201e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.15413e-01\tAbsError: 2.38684e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.32794e-01\tAbsError: 3.22432e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.20374e-04\tAbsError: 1.80664e-01\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.28132e+02\tAbsError: 1.34002e+18\n", - " Region: \"zone_1\"\tRelError: 4.00745e+01\tAbsError: 8.44811e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.00745e+01\tAbsError: 8.44806e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43106e-09\tAbsError: 4.97552e-07\n", - " Region: \"zone_3\"\tRelError: 1.88058e+02\tAbsError: 1.34002e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 6.46807e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.21124e+02\tAbsError: 6.93209e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 5.79337e+01\tAbsError: 8.44807e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43165e-09\tAbsError: 4.97767e-07\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 6.05251e+00\tAbsError: 7.12298e+16\n", - " Region: \"zone_1\"\tRelError: 9.54106e-01\tAbsError: 5.37894e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.54025e-01\tAbsError: 2.58886e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.04593e-05\tAbsError: 2.79009e-02\n", - " Region: \"zone_3\"\tRelError: 5.09841e+00\tAbsError: 7.12298e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.89784e-01\tAbsError: 3.67872e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.99659e-01\tAbsError: 3.44425e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.40888e+00\tAbsError: 2.58912e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.04593e-05\tAbsError: 2.79009e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.73275e+00\tAbsError: 2.68838e+16\n", - " Region: \"zone_1\"\tRelError: 1.92080e-01\tAbsError: 1.46306e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.91747e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.32681e-04\tAbsError: 1.15542e-01\n", - " Region: \"zone_3\"\tRelError: 1.54067e+00\tAbsError: 2.68838e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.36324e-01\tAbsError: 1.35736e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.01335e-01\tAbsError: 1.33102e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.02681e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.32681e-04\tAbsError: 1.15542e-01\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.64105e+01\tAbsError: 2.59446e+17\n", - " Region: \"zone_1\"\tRelError: 2.00842e+01\tAbsError: 4.23839e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.00842e+01\tAbsError: 4.23834e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43343e-09\tAbsError: 4.98409e-07\n", - " Region: \"zone_3\"\tRelError: 6.32622e+00\tAbsError: 2.59446e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.70010e-01\tAbsError: 1.32083e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.64985e-01\tAbsError: 1.27363e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 4.79123e+00\tAbsError: 4.23835e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43403e-09\tAbsError: 4.98625e-07\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.37739e+00\tAbsError: 3.01043e+16\n", - " Region: \"zone_1\"\tRelError: 2.54827e-01\tAbsError: 1.16608e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.54565e-01\tAbsError: 2.57918e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.61657e-04\tAbsError: 9.08165e-02\n", - " Region: \"zone_3\"\tRelError: 1.12257e+00\tAbsError: 3.01043e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.61101e-01\tAbsError: 1.54576e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.03577e-01\tAbsError: 1.46466e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.57626e-01\tAbsError: 2.46829e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.61657e-04\tAbsError: 9.08165e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 7.68784e+01\tAbsError: 1.04367e+18\n", - " Region: \"zone_1\"\tRelError: 5.24013e+01\tAbsError: 5.04750e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.24001e+01\tAbsError: 8.10225e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22364e-03\tAbsError: 4.23727e-01\n", - " Region: \"zone_3\"\tRelError: 2.44771e+01\tAbsError: 1.04367e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 5.28959e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 5.14715e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 6.47589e+00\tAbsError: 8.10225e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22533e-03\tAbsError: 4.24299e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.96439e+00\tAbsError: 2.12374e+16\n", - " Region: \"zone_1\"\tRelError: 1.45967e+00\tAbsError: 2.87618e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.45886e+00\tAbsError: 9.16520e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03570e-04\tAbsError: 2.78453e-01\n", - " Region: \"zone_3\"\tRelError: 2.50473e+00\tAbsError: 2.12374e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31487e-01\tAbsError: 1.07624e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.30649e-02\tAbsError: 1.04749e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.30937e+00\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03570e-04\tAbsError: 2.78453e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.12307e+00\tAbsError: 1.60442e+16\n", - " Region: \"zone_1\"\tRelError: 1.49907e-01\tAbsError: 9.31426e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49713e-01\tAbsError: 2.58569e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93773e-04\tAbsError: 6.72856e-02\n", - " Region: \"zone_3\"\tRelError: 9.73164e-01\tAbsError: 1.60442e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39500e-01\tAbsError: 8.04160e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.83757e-01\tAbsError: 8.00261e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49713e-01\tAbsError: 2.43087e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93773e-04\tAbsError: 6.72856e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.02422e+02\tAbsError: 2.63778e+17\n", - " Region: \"zone_1\"\tRelError: 1.85685e+01\tAbsError: 2.99586e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.85677e+01\tAbsError: 3.24491e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.70680e-04\tAbsError: 2.67137e-01\n", - " Region: \"zone_3\"\tRelError: 8.38537e+01\tAbsError: 2.63778e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.13259e-01\tAbsError: 1.33280e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.36876e-01\tAbsError: 1.30499e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 8.26028e+01\tAbsError: 3.24492e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.70680e-04\tAbsError: 2.67137e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 7.51142e-01\tAbsError: 9.33113e+15\n", - " Region: \"zone_1\"\tRelError: 3.05947e-01\tAbsError: 4.02202e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.05863e-01\tAbsError: 1.10524e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.40386e-05\tAbsError: 2.91677e-02\n", - " Region: \"zone_3\"\tRelError: 4.45195e-01\tAbsError: 9.33113e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.96551e-01\tAbsError: 4.72172e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.12941e-01\tAbsError: 4.60941e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35620e-01\tAbsError: 1.10525e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.40386e-05\tAbsError: 2.91677e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.75488e+03\tAbsError: 2.44334e+17\n", - " Region: \"zone_1\"\tRelError: 1.41546e+00\tAbsError: 3.55507e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40553e+00\tAbsError: 7.72108e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.93410e-03\tAbsError: 3.47786e+00\n", - " Region: \"zone_3\"\tRelError: 1.75347e+03\tAbsError: 2.44334e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.63420e+03\tAbsError: 1.25816e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.11660e+02\tAbsError: 1.18518e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 7.59442e+00\tAbsError: 7.72134e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.93410e-03\tAbsError: 3.47786e+00\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.06736e+00\tAbsError: 1.67079e+15\n", - " Region: \"zone_1\"\tRelError: 1.87002e-01\tAbsError: 2.94468e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86917e-01\tAbsError: 5.45669e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.47563e-05\tAbsError: 2.93922e-02\n", - " Region: \"zone_3\"\tRelError: 1.88036e+00\tAbsError: 1.67079e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95806e-02\tAbsError: 8.61655e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.32450e-03\tAbsError: 8.09135e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.85737e+00\tAbsError: 5.47236e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.50770e-05\tAbsError: 2.95046e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.25010e-01\tAbsError: 4.83168e+15\n", - " Region: \"zone_1\"\tRelError: 9.35029e-02\tAbsError: 6.02167e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.33558e-02\tAbsError: 9.16529e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47066e-04\tAbsError: 5.10514e-02\n", - " Region: \"zone_3\"\tRelError: 3.31507e-01\tAbsError: 4.83168e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74852e-01\tAbsError: 2.44485e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.96161e-02\tAbsError: 2.38683e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.68922e-02\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47066e-04\tAbsError: 5.10514e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.63527e+01\tAbsError: 1.33800e+17\n", - " Region: \"zone_1\"\tRelError: 1.09015e+00\tAbsError: 1.41262e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08982e+00\tAbsError: 2.56418e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.33266e-04\tAbsError: 1.15620e-01\n", - " Region: \"zone_3\"\tRelError: 1.52625e+01\tAbsError: 1.33800e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.58876e-01\tAbsError: 6.72557e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.58560e-01\tAbsError: 6.65448e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46448e+01\tAbsError: 2.58450e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.33331e-04\tAbsError: 1.15642e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.33797e-01\tAbsError: 2.13738e+15\n", - " Region: \"zone_1\"\tRelError: 3.22000e-02\tAbsError: 2.54939e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.14658e-02\tAbsError: 3.42748e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.34268e-04\tAbsError: 2.54597e-01\n", - " Region: \"zone_3\"\tRelError: 1.01597e-01\tAbsError: 2.13738e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.03029e-02\tAbsError: 1.12451e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.62975e-02\tAbsError: 1.01287e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 3.42622e-02\tAbsError: 3.42748e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.34268e-04\tAbsError: 2.54597e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.18948e+02\tAbsError: 4.94328e+16\n", - " Region: \"zone_1\"\tRelError: 5.73987e+00\tAbsError: 1.84809e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.73478e+00\tAbsError: 7.29586e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.09631e-03\tAbsError: 1.77513e+00\n", - " Region: \"zone_3\"\tRelError: 1.13208e+02\tAbsError: 4.94328e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.23685e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03096e+02\tAbsError: 2.70644e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10704e+00\tAbsError: 7.29586e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.09631e-03\tAbsError: 1.77513e+00\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.99757e-02\tAbsError: 6.03219e+13\n", - " Region: \"zone_1\"\tRelError: 5.28092e-03\tAbsError: 6.07421e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.26342e-03\tAbsError: 6.43272e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75062e-05\tAbsError: 6.06778e-03\n", - " Region: \"zone_3\"\tRelError: 2.46948e-02\tAbsError: 6.03219e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52421e-04\tAbsError: 2.92320e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.21852e-04\tAbsError: 3.10899e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.41030e-02\tAbsError: 6.47112e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75095e-05\tAbsError: 6.06885e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.30868e-01\tAbsError: 1.08442e+15\n", - " Region: \"zone_1\"\tRelError: 2.27753e-02\tAbsError: 2.15920e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.21537e-02\tAbsError: 2.84606e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.21607e-04\tAbsError: 2.15635e-01\n", - " Region: \"zone_3\"\tRelError: 1.08092e-01\tAbsError: 1.08442e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.76472e-02\tAbsError: 4.26455e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.43864e-02\tAbsError: 6.57964e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.54371e-02\tAbsError: 2.84606e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.21607e-04\tAbsError: 2.15635e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.85212e+00\tAbsError: 2.60146e+16\n", - " Region: \"zone_1\"\tRelError: 1.52146e-01\tAbsError: 2.92736e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51334e-01\tAbsError: 1.13356e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.12031e-04\tAbsError: 2.81400e-01\n", - " Region: \"zone_3\"\tRelError: 2.69997e+00\tAbsError: 2.60146e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.83870e-02\tAbsError: 1.30339e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.80323e-02\tAbsError: 1.29807e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.56274e+00\tAbsError: 1.13359e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.12031e-04\tAbsError: 2.81400e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.09062e-01\tAbsError: 4.29859e+14\n", - " Region: \"zone_1\"\tRelError: 1.36304e-01\tAbsError: 1.63400e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36257e-01\tAbsError: 6.84743e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.69255e-05\tAbsError: 1.62715e-02\n", - " Region: \"zone_3\"\tRelError: 1.72757e-01\tAbsError: 4.29859e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.11437e-03\tAbsError: 2.18144e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.01341e-03\tAbsError: 2.11715e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.62583e-01\tAbsError: 7.23727e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.69255e-05\tAbsError: 1.62715e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.23517e+03\tAbsError: 7.85419e+15\n", - " Region: \"zone_1\"\tRelError: 2.90624e+00\tAbsError: 9.08322e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.90382e+00\tAbsError: 6.81818e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.41775e-03\tAbsError: 8.40141e-01\n", - " Region: \"zone_3\"\tRelError: 1.23227e+03\tAbsError: 7.85419e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.21294e+02\tAbsError: 4.15991e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.10398e+02\tAbsError: 3.69428e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.73661e-01\tAbsError: 6.81819e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.41775e-03\tAbsError: 8.40141e-01\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.10405e-01\tAbsError: 3.12560e+13\n", - " Region: \"zone_1\"\tRelError: 1.08840e-02\tAbsError: 4.61195e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08827e-02\tAbsError: 1.71511e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32204e-06\tAbsError: 4.59479e-04\n", - " Region: \"zone_3\"\tRelError: 9.95213e-02\tAbsError: 3.12560e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34947e-04\tAbsError: 1.52362e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.27748e-04\tAbsError: 1.60198e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.92573e-02\tAbsError: 1.72813e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32271e-06\tAbsError: 4.59705e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.55617e-01\tAbsError: 2.35794e+14\n", - " Region: \"zone_1\"\tRelError: 4.99367e-02\tAbsError: 1.38607e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.98970e-02\tAbsError: 6.98741e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.97528e-05\tAbsError: 1.37908e-02\n", - " Region: \"zone_3\"\tRelError: 1.05680e-01\tAbsError: 2.35794e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.27300e-03\tAbsError: 1.18548e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.21148e-03\tAbsError: 1.17246e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.51557e-02\tAbsError: 7.06637e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.97528e-05\tAbsError: 1.37908e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.37163e-01\tAbsError: 2.74535e+15\n", - " Region: \"zone_1\"\tRelError: 4.29834e-02\tAbsError: 3.88215e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.28716e-02\tAbsError: 5.15121e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11776e-04\tAbsError: 3.87699e-02\n", - " Region: \"zone_3\"\tRelError: 5.94179e-01\tAbsError: 2.74535e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.22686e-02\tAbsError: 1.41321e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.01916e-03\tAbsError: 1.33214e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.79780e-01\tAbsError: 5.22069e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11776e-04\tAbsError: 3.87699e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.88220e-02\tAbsError: 3.48889e+13\n", - " Region: \"zone_1\"\tRelError: 1.73872e-02\tAbsError: 7.35021e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.73660e-02\tAbsError: 5.27671e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.11825e-05\tAbsError: 7.34493e-03\n", - " Region: \"zone_3\"\tRelError: 2.14348e-02\tAbsError: 3.48889e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.14000e-04\tAbsError: 1.77623e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.20581e-04\tAbsError: 1.71267e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.05790e-02\tAbsError: 5.82302e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.11913e-05\tAbsError: 7.34810e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.76205e+03\tAbsError: 5.21427e+15\n", - " Region: \"zone_1\"\tRelError: 2.12718e+00\tAbsError: 1.73590e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.12686e+00\tAbsError: 6.27474e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.18881e-04\tAbsError: 1.10843e-01\n", - " Region: \"zone_3\"\tRelError: 1.75993e+03\tAbsError: 5.21427e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.86052e+01\tAbsError: 3.34252e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.73093e+03\tAbsError: 1.87175e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 3.93221e-01\tAbsError: 6.27475e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.18881e-04\tAbsError: 1.10843e-01\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.63047e-03\tAbsError: 9.09027e+11\n", - " Region: \"zone_1\"\tRelError: 4.56990e-04\tAbsError: 3.44629e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.55999e-04\tAbsError: 1.41300e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.91190e-07\tAbsError: 3.44488e-04\n", - " Region: \"zone_3\"\tRelError: 4.17348e-03\tAbsError: 9.09027e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33335e-06\tAbsError: 4.38047e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.02288e-05\tAbsError: 4.70980e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.15793e-03\tAbsError: 1.42246e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.91601e-07\tAbsError: 3.44637e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.12114e-02\tAbsError: 1.98754e+13\n", - " Region: \"zone_1\"\tRelError: 7.04172e-03\tAbsError: 6.58751e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.02275e-03\tAbsError: 5.51750e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.89733e-05\tAbsError: 6.58199e-03\n", - " Region: \"zone_3\"\tRelError: 1.41697e-02\tAbsError: 1.98754e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43525e-04\tAbsError: 1.00008e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.47254e-04\tAbsError: 9.87467e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.32599e-02\tAbsError: 5.78756e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.89775e-05\tAbsError: 6.58354e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.12610e-03\tAbsError: 1.23500e+14\n", - " Region: \"zone_1\"\tRelError: 9.58048e-04\tAbsError: 4.98507e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 9.43691e-04\tAbsError: 9.96836e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43564e-05\tAbsError: 4.97510e-03\n", - " Region: \"zone_3\"\tRelError: 7.16806e-03\tAbsError: 1.23500e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.59288e-04\tAbsError: 6.07343e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.92957e-04\tAbsError: 6.27659e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.60145e-03\tAbsError: 1.00518e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43584e-05\tAbsError: 4.97565e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.41308e-02\tAbsError: 1.96068e+13\n", - " Region: \"zone_1\"\tRelError: 1.08376e-02\tAbsError: 9.63415e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08348e-02\tAbsError: 2.59318e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.76972e-06\tAbsError: 9.60822e-04\n", - " Region: \"zone_3\"\tRelError: 1.32932e-02\tAbsError: 1.96068e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.35702e-04\tAbsError: 9.96822e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.31894e-04\tAbsError: 9.63862e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28228e-02\tAbsError: 2.83052e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.77088e-06\tAbsError: 9.61249e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.14565e+04\tAbsError: 9.14413e+14\n", - " Region: \"zone_1\"\tRelError: 1.39595e-01\tAbsError: 7.87478e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39531e-01\tAbsError: 5.64826e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.40500e-05\tAbsError: 2.22652e-02\n", - " Region: \"zone_3\"\tRelError: 1.14564e+04\tAbsError: 9.14413e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33345e+02\tAbsError: 5.59104e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.13229e+04\tAbsError: 3.55309e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.59181e-02\tAbsError: 5.64827e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.40500e-05\tAbsError: 2.22652e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.49771e-03\tAbsError: 1.64940e+12\n", - " Region: \"zone_1\"\tRelError: 6.42053e-04\tAbsError: 1.77929e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.42002e-04\tAbsError: 9.99896e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.09050e-08\tAbsError: 1.76929e-05\n", - " Region: \"zone_3\"\tRelError: 5.85566e-03\tAbsError: 1.64940e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16109e-06\tAbsError: 8.03293e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.70130e-06\tAbsError: 8.46106e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.84174e-03\tAbsError: 1.00703e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.09341e-08\tAbsError: 1.77035e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.24258e-02\tAbsError: 1.10918e+13\n", - " Region: \"zone_1\"\tRelError: 4.12899e-03\tAbsError: 9.16825e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.12635e-03\tAbsError: 2.69238e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.63359e-06\tAbsError: 9.14133e-04\n", - " Region: \"zone_3\"\tRelError: 8.29681e-03\tAbsError: 1.10918e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.48339e-04\tAbsError: 5.58229e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.46113e-04\tAbsError: 5.50951e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.79972e-03\tAbsError: 2.89698e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.63458e-06\tAbsError: 9.14508e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.19304e-02\tAbsError: 3.37625e+13\n", - " Region: \"zone_1\"\tRelError: 2.21148e-03\tAbsError: 9.26970e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20882e-03\tAbsError: 1.29677e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.66313e-06\tAbsError: 9.25674e-04\n", - " Region: \"zone_3\"\tRelError: 2.97189e-02\tAbsError: 3.37625e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.98425e-05\tAbsError: 1.66919e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.50345e-05\tAbsError: 1.70706e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.95814e-02\tAbsError: 1.31036e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.66438e-06\tAbsError: 9.26102e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 4.04917e-03\tAbsError: 2.71056e+12\n", - " Region: \"zone_1\"\tRelError: 1.82570e-03\tAbsError: 4.47863e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82441e-03\tAbsError: 3.48647e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.28704e-06\tAbsError: 4.47514e-04\n", - " Region: \"zone_3\"\tRelError: 2.22347e-03\tAbsError: 2.71056e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.27242e-05\tAbsError: 1.37539e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.22424e-05\tAbsError: 1.33517e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.15721e-03\tAbsError: 3.75577e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.28753e-06\tAbsError: 4.47690e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 6.80714e+02\tAbsError: 5.90884e+14\n", - " Region: \"zone_1\"\tRelError: 1.77888e-01\tAbsError: 6.36192e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77846e-01\tAbsError: 4.91583e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.16492e-05\tAbsError: 1.44608e-02\n", - " Region: \"zone_3\"\tRelError: 6.80536e+02\tAbsError: 5.90884e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.80589e+02\tAbsError: 3.66469e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.99871e+02\tAbsError: 2.24415e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.58870e-02\tAbsError: 4.91584e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.16492e-05\tAbsError: 1.44608e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 5.44825e-04\tAbsError: 5.87780e+10\n", - " Region: \"zone_1\"\tRelError: 5.39394e-05\tAbsError: 2.02429e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.38812e-05\tAbsError: 6.87611e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.82246e-08\tAbsError: 2.02360e-05\n", - " Region: \"zone_3\"\tRelError: 4.90886e-04\tAbsError: 5.87780e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46411e-07\tAbsError: 2.85251e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.30809e-07\tAbsError: 3.02529e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.90250e-04\tAbsError: 6.91269e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.82487e-08\tAbsError: 2.02448e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.18008e-03\tAbsError: 1.59787e+12\n", - " Region: \"zone_1\"\tRelError: 7.30404e-04\tAbsError: 4.14536e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.29211e-04\tAbsError: 3.64518e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19313e-06\tAbsError: 4.14171e-04\n", - " Region: \"zone_3\"\tRelError: 1.44968e-03\tAbsError: 1.59787e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.59026e-05\tAbsError: 8.02763e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.55751e-05\tAbsError: 7.95108e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37700e-03\tAbsError: 3.97752e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19336e-06\tAbsError: 4.14251e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.90227e-04\tAbsError: 3.92351e+12\n", - " Region: \"zone_1\"\tRelError: 2.72528e-05\tAbsError: 2.64592e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.64923e-05\tAbsError: 2.92098e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.60517e-07\tAbsError: 2.64299e-04\n", - " Region: \"zone_3\"\tRelError: 1.62974e-04\tAbsError: 3.92351e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.77297e-06\tAbsError: 1.93410e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.01457e-05\tAbsError: 1.98941e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43295e-04\tAbsError: 2.94818e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.60830e-07\tAbsError: 2.64413e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.70902e-03\tAbsError: 1.18602e+12\n", - " Region: \"zone_1\"\tRelError: 7.70426e-04\tAbsError: 8.17764e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.70191e-04\tAbsError: 1.44392e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.34769e-07\tAbsError: 8.16320e-05\n", - " Region: \"zone_3\"\tRelError: 9.38599e-04\tAbsError: 1.18602e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43307e-05\tAbsError: 6.02246e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.40177e-05\tAbsError: 5.83770e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 9.10015e-04\tAbsError: 1.60170e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.34863e-07\tAbsError: 8.16654e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.92595e-04\tAbsError: 9.49473e+10\n", - " Region: \"zone_1\"\tRelError: 3.87978e-05\tAbsError: 2.02444e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.87920e-05\tAbsError: 5.96621e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.80757e-09\tAbsError: 2.01847e-06\n", - " Region: \"zone_3\"\tRelError: 3.53797e-04\tAbsError: 9.49473e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.10989e-07\tAbsError: 4.62324e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.83783e-07\tAbsError: 4.87150e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52997e-04\tAbsError: 6.00786e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.81025e-09\tAbsError: 2.01943e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.62289e+03\tAbsError: 1.35295e+14\n", - " Region: \"zone_1\"\tRelError: 5.75586e-02\tAbsError: 5.58816e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.75143e-02\tAbsError: 4.04895e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.43294e-05\tAbsError: 1.53921e-02\n", - " Region: \"zone_3\"\tRelError: 6.62283e+03\tAbsError: 1.35295e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.47649e+03\tAbsError: 7.04604e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.14628e+03\tAbsError: 6.48349e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.78569e-02\tAbsError: 4.04896e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.43426e-05\tAbsError: 1.53969e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 9.04358e-04\tAbsError: 6.91618e+11\n", - " Region: \"zone_1\"\tRelError: 3.02587e-04\tAbsError: 7.78938e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.02363e-04\tAbsError: 1.55785e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.23501e-07\tAbsError: 7.77380e-05\n", - " Region: \"zone_3\"\tRelError: 6.01772e-04\tAbsError: 6.91618e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.55559e-05\tAbsError: 3.47877e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.53466e-05\tAbsError: 3.43741e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.70646e-04\tAbsError: 1.69595e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.23586e-07\tAbsError: 7.77681e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.75434e-03\tAbsError: 1.68359e+12\n", - " Region: \"zone_1\"\tRelError: 1.21747e-04\tAbsError: 2.56631e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21674e-04\tAbsError: 7.10609e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.36274e-08\tAbsError: 2.55920e-05\n", - " Region: \"zone_3\"\tRelError: 1.63259e-03\tAbsError: 1.68359e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.52476e-06\tAbsError: 8.33155e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.22622e-06\tAbsError: 8.50439e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.62577e-03\tAbsError: 7.17605e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.36655e-08\tAbsError: 2.56055e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.43139e-04\tAbsError: 2.14557e+11\n", - " Region: \"zone_1\"\tRelError: 1.54959e-04\tAbsError: 3.09318e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.54870e-04\tAbsError: 2.76396e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.88786e-08\tAbsError: 3.09042e-05\n", - " Region: \"zone_3\"\tRelError: 1.88179e-04\tAbsError: 2.14557e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.59423e-06\tAbsError: 1.08761e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.54319e-06\tAbsError: 1.05796e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82953e-04\tAbsError: 3.04381e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.89137e-08\tAbsError: 3.09172e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 5.03275e-05\tAbsError: 9.08763e+09\n", - " Region: \"zone_1\"\tRelError: 4.97773e-06\tAbsError: 1.23989e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.97416e-06\tAbsError: 6.85123e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.56554e-09\tAbsError: 1.23921e-06\n", - " Region: \"zone_3\"\tRelError: 4.53497e-05\tAbsError: 9.08763e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.78500e-08\tAbsError: 4.42118e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.59273e-08\tAbsError: 4.66645e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 4.52724e-05\tAbsError: 6.89457e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.56702e-09\tAbsError: 1.23975e-06\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.07738e+00\tAbsError: 5.24938e+13\n", - " Region: \"zone_1\"\tRelError: 4.20260e-02\tAbsError: 5.38334e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.19580e-02\tAbsError: 3.02166e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.80118e-05\tAbsError: 2.36168e-02\n", - " Region: \"zone_3\"\tRelError: 2.03535e+00\tAbsError: 5.24938e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99267e-01\tAbsError: 7.06322e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.93883e-01\tAbsError: 4.54306e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.21368e-02\tAbsError: 3.02167e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.80118e-05\tAbsError: 2.36168e-02\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.87260e-04\tAbsError: 1.29403e+11\n", - " Region: \"zone_1\"\tRelError: 6.28801e-05\tAbsError: 2.91909e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.27963e-05\tAbsError: 3.06059e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.38368e-08\tAbsError: 2.91603e-05\n", - " Region: \"zone_3\"\tRelError: 1.24379e-04\tAbsError: 1.29403e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91169e-06\tAbsError: 6.49895e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.87741e-06\tAbsError: 6.44135e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18506e-04\tAbsError: 3.32307e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.38700e-08\tAbsError: 2.91722e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.80245e-05\tAbsError: 9.30200e+10\n", - " Region: \"zone_1\"\tRelError: 3.43660e-06\tAbsError: 1.44112e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.39515e-06\tAbsError: 7.79802e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14454e-08\tAbsError: 1.44034e-05\n", - " Region: \"zone_3\"\tRelError: 4.45879e-05\tAbsError: 9.30200e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.20234e-07\tAbsError: 4.57981e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.97102e-07\tAbsError: 4.72219e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.39291e-05\tAbsError: 7.86903e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.14632e-08\tAbsError: 1.44099e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.19883e-04\tAbsError: 7.73891e+10\n", - " Region: \"zone_1\"\tRelError: 5.41255e-05\tAbsError: 6.55072e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.41067e-05\tAbsError: 1.00869e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.88105e-08\tAbsError: 6.54063e-06\n", - " Region: \"zone_3\"\tRelError: 6.57577e-05\tAbsError: 7.73891e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.36349e-07\tAbsError: 3.92657e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.13567e-07\tAbsError: 3.81234e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 6.38890e-05\tAbsError: 1.11778e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.88181e-08\tAbsError: 6.54345e-06\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.81503e+00\tAbsError: 4.93850e+13\n", - " Region: \"zone_1\"\tRelError: 3.33651e-02\tAbsError: 5.43994e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.32830e-02\tAbsError: 2.58915e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.20906e-05\tAbsError: 2.85079e-02\n", - " Region: \"zone_3\"\tRelError: 2.78166e+00\tAbsError: 4.93850e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.72297e+00\tAbsError: 8.45730e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.53292e-02\tAbsError: 4.09277e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.32830e-02\tAbsError: 2.51005e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.20906e-05\tAbsError: 2.85079e-02\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 6.51617e-05\tAbsError: 4.65398e+10\n", - " Region: \"zone_1\"\tRelError: 2.18609e-05\tAbsError: 6.36014e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18427e-05\tAbsError: 1.11819e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.82534e-08\tAbsError: 6.34896e-06\n", - " Region: \"zone_3\"\tRelError: 4.33008e-05\tAbsError: 4.65398e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04809e-06\tAbsError: 2.33986e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03254e-06\tAbsError: 2.31412e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.12019e-05\tAbsError: 1.20844e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.82605e-08\tAbsError: 6.35150e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:39\u001b[0m.\u001b[1;36m943\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.8\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 2.68795e-05\tAbsError: 1.63620e+10\n", - " Region: \"zone_1\"\tRelError: 1.21466e-05\tAbsError: 2.15576e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21404e-05\tAbsError: 2.19556e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.19338e-09\tAbsError: 2.15356e-06\n", - " Region: \"zone_3\"\tRelError: 1.47329e-05\tAbsError: 1.63620e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98044e-07\tAbsError: 8.29145e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.93539e-07\tAbsError: 8.07050e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43351e-05\tAbsError: 2.42330e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.19602e-09\tAbsError: 2.15451e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:40\u001b[0m.\u001b[1;36m358\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.84375\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 6.22571e-01\tAbsError: 4.56857e+14\n", - " Region: \"zone_1\"\tRelError: 1.62060e-02\tAbsError: 1.05814e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.59258e-02\tAbsError: 8.53133e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.80210e-04\tAbsError: 9.72823e-02\n", - " Region: \"zone_3\"\tRelError: 6.06365e-01\tAbsError: 4.56857e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.73228e-01\tAbsError: 1.16314e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.46418e-03\tAbsError: 4.45226e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.53932e-02\tAbsError: 8.53142e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.80210e-04\tAbsError: 9.72823e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:40\u001b[0m.\u001b[1;36m916\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:40\u001b[0m.\u001b[1;36m958\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.05 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:40\u001b[0m.\u001b[1;36m999\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.97502e+01\tAbsError: 1.32808e+17\n", - " Region: \"zone_1\"\tRelError: 2.76074e+01\tAbsError: 4.09563e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.76074e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.00798e-09\tAbsError: 2.08971e-06\n", - " Region: \"zone_3\"\tRelError: 2.14284e+00\tAbsError: 1.32808e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.64512e-01\tAbsError: 6.68287e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.62033e-01\tAbsError: 6.59795e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.16298e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.01029e-09\tAbsError: 2.09057e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:41\u001b[0m.\u001b[1;36m721\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:41\u001b[0m.\u001b[1;36m771\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.1 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:41\u001b[0m.\u001b[1;36m807\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 2.43642e-01\tAbsError: 4.53193e+14\n", - " Region: \"zone_1\"\tRelError: 3.32872e-02\tAbsError: 1.60168e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.28268e-02\tAbsError: 2.34656e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.60457e-04\tAbsError: 1.59933e-01\n", - " Region: \"zone_3\"\tRelError: 2.10355e-01\tAbsError: 4.53193e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.41955e-01\tAbsError: 2.34411e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.91718e-03\tAbsError: 4.29752e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.20225e-02\tAbsError: 2.41034e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.60457e-04\tAbsError: 1.59933e-01\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.05327e+02\tAbsError: 2.40340e+17\n", - " Region: \"zone_1\"\tRelError: 8.42457e+01\tAbsError: 4.22095e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.42457e+01\tAbsError: 4.22090e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43581e-09\tAbsError: 4.99261e-07\n", - " Region: \"zone_3\"\tRelError: 2.10810e+01\tAbsError: 2.40340e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69705e-01\tAbsError: 1.22173e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.65105e-01\tAbsError: 1.18167e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.95462e+01\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43642e-09\tAbsError: 4.99480e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.41602e+03\tAbsError: 3.06873e+18\n", - " Region: \"zone_1\"\tRelError: 1.78720e+03\tAbsError: 8.63291e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.78720e+03\tAbsError: 8.63289e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.16236e-10\tAbsError: 1.79418e-07\n", - " Region: \"zone_3\"\tRelError: 6.28825e+02\tAbsError: 3.06873e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49638e+01\tAbsError: 1.38375e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.90759e+02\tAbsError: 1.68499e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 2.23103e+02\tAbsError: 8.63291e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.16460e-10\tAbsError: 1.79501e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 9.37033e+02\tAbsError: 4.27377e+18\n", - " Region: \"zone_1\"\tRelError: 3.36757e+02\tAbsError: 8.80545e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.36757e+02\tAbsError: 8.80540e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.28124e-09\tAbsError: 4.45311e-07\n", - " Region: \"zone_3\"\tRelError: 6.00276e+02\tAbsError: 4.27377e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.41012e+02\tAbsError: 2.14036e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.34799e+02\tAbsError: 2.13341e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 2.24465e+02\tAbsError: 8.80543e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.28210e-09\tAbsError: 4.45624e-07\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 8.61535e+00\tAbsError: 1.17905e+17\n", - " Region: \"zone_1\"\tRelError: 7.44285e-01\tAbsError: 3.38569e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 7.43397e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.87545e-04\tAbsError: 3.07806e-01\n", - " Region: \"zone_3\"\tRelError: 7.87107e+00\tAbsError: 1.17905e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17750e-01\tAbsError: 5.81639e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.67341e-01\tAbsError: 5.97408e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.58509e+00\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.87924e-04\tAbsError: 3.07944e-01\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 9.86343e-02\tAbsError: 8.08179e+13\n", - " Region: \"zone_1\"\tRelError: 2.27654e-02\tAbsError: 5.27781e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27505e-02\tAbsError: 1.02870e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.48829e-05\tAbsError: 5.17494e-03\n", - " Region: \"zone_3\"\tRelError: 7.58690e-02\tAbsError: 8.08179e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13342e-02\tAbsError: 2.81884e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10914e-02\tAbsError: 5.26295e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.34284e-02\tAbsError: 1.03806e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.48829e-05\tAbsError: 5.17494e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.09455e+01\tAbsError: 2.40473e+17\n", - " Region: \"zone_1\"\tRelError: 4.86841e+00\tAbsError: 3.09883e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.86761e+00\tAbsError: 3.22430e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.00931e-04\tAbsError: 2.77640e-01\n", - " Region: \"zone_3\"\tRelError: 6.07711e+00\tAbsError: 2.40473e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.15444e-01\tAbsError: 1.20661e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.41229e-01\tAbsError: 1.19812e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 4.81963e+00\tAbsError: 3.22432e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.00931e-04\tAbsError: 2.77640e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.09721e+02\tAbsError: 2.60473e+18\n", - " Region: \"zone_1\"\tRelError: 7.91237e+01\tAbsError: 5.60850e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 7.91223e+01\tAbsError: 8.30497e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.38072e-03\tAbsError: 4.77800e-01\n", - " Region: \"zone_3\"\tRelError: 3.05977e+01\tAbsError: 2.60473e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.22649e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.37824e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 1.25964e+01\tAbsError: 8.30498e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.38072e-03\tAbsError: 4.77800e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.87054e+02\tAbsError: 3.69608e+18\n", - " Region: \"zone_1\"\tRelError: 2.66785e+01\tAbsError: 9.63796e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66760e+01\tAbsError: 8.49343e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.53527e-03\tAbsError: 8.78861e-01\n", - " Region: \"zone_3\"\tRelError: 1.60376e+02\tAbsError: 3.69608e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.85943e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.43347e+01\tAbsError: 1.83665e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 9.70387e+01\tAbsError: 8.49344e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.53674e-03\tAbsError: 8.79382e-01\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 1.20075e-02\tAbsError: 5.18518e+12\n", - " Region: \"zone_1\"\tRelError: 3.52721e-03\tAbsError: 5.58056e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.51116e-03\tAbsError: 3.17947e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60410e-05\tAbsError: 5.57738e-03\n", - " Region: \"zone_3\"\tRelError: 8.48034e-03\tAbsError: 5.18518e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.41100e-04\tAbsError: 2.88203e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.22185e-04\tAbsError: 2.30315e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.60101e-03\tAbsError: 3.31547e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60410e-05\tAbsError: 5.57738e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 6.05251e+00\tAbsError: 7.12298e+16\n", - " Region: \"zone_1\"\tRelError: 9.54106e-01\tAbsError: 5.37894e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.54025e-01\tAbsError: 2.58886e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.04593e-05\tAbsError: 2.79009e-02\n", - " Region: \"zone_3\"\tRelError: 5.09841e+00\tAbsError: 7.12298e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.89784e-01\tAbsError: 3.67872e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.99659e-01\tAbsError: 3.44425e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.40888e+00\tAbsError: 2.58912e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.04593e-05\tAbsError: 2.79009e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 4.98539e+00\tAbsError: 1.26295e+17\n", - " Region: \"zone_1\"\tRelError: 2.24304e+00\tAbsError: 1.18280e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.24277e+00\tAbsError: 2.58625e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.66362e-04\tAbsError: 9.24173e-02\n", - " Region: \"zone_3\"\tRelError: 2.74235e+00\tAbsError: 1.26295e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.63874e-01\tAbsError: 6.36874e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.67792e-01\tAbsError: 6.26079e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.11042e+00\tAbsError: 2.58990e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.66406e-04\tAbsError: 9.24296e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 3.06185e+01\tAbsError: 4.23532e+17\n", - " Region: \"zone_1\"\tRelError: 8.20322e-01\tAbsError: 5.01433e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 8.06267e-01\tAbsError: 7.94496e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.40542e-02\tAbsError: 4.93488e+00\n", - " Region: \"zone_3\"\tRelError: 2.97982e+01\tAbsError: 4.23532e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.06356e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.17176e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17841e+01\tAbsError: 7.94512e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.40542e-02\tAbsError: 4.93488e+00\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 8.10308e-03\tAbsError: 5.43438e+12\n", - " Region: \"zone_1\"\tRelError: 2.15894e-03\tAbsError: 6.82302e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.15699e-03\tAbsError: 4.13314e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.95036e-06\tAbsError: 6.78169e-04\n", - " Region: \"zone_3\"\tRelError: 5.94415e-03\tAbsError: 5.43438e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.41785e-04\tAbsError: 2.63367e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.38178e-04\tAbsError: 2.80072e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.86223e-03\tAbsError: 4.17705e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.95089e-06\tAbsError: 6.78355e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 3.08699e+02\tAbsError: 6.01534e+17\n", - " Region: \"zone_1\"\tRelError: 8.57260e+00\tAbsError: 4.30788e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 8.56054e+00\tAbsError: 8.15209e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20604e-02\tAbsError: 4.22635e+00\n", - " Region: \"zone_3\"\tRelError: 3.00127e+02\tAbsError: 6.01534e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.88214e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.42861e+02\tAbsError: 3.13321e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 4.82531e+01\tAbsError: 8.15210e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20783e-02\tAbsError: 4.23287e+00\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.96439e+00\tAbsError: 2.12374e+16\n", - " Region: \"zone_1\"\tRelError: 1.45967e+00\tAbsError: 2.87618e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.45886e+00\tAbsError: 9.16520e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03570e-04\tAbsError: 2.78453e-01\n", - " Region: \"zone_3\"\tRelError: 2.50473e+00\tAbsError: 2.12374e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31487e-01\tAbsError: 1.07624e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.30649e-02\tAbsError: 1.04749e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.30937e+00\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03570e-04\tAbsError: 2.78453e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 7.12900e-01\tAbsError: 2.65152e+16\n", - " Region: \"zone_1\"\tRelError: 2.51915e-01\tAbsError: 2.84686e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.51125e-01\tAbsError: 1.10522e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.89640e-04\tAbsError: 2.73634e-01\n", - " Region: \"zone_3\"\tRelError: 4.60986e-01\tAbsError: 2.65152e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02169e-01\tAbsError: 1.32909e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.08802e-02\tAbsError: 1.32243e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.17147e-01\tAbsError: 1.10525e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.89640e-04\tAbsError: 2.73634e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.06736e+03\tAbsError: 8.87050e+16\n", - " Region: \"zone_1\"\tRelError: 1.23696e+00\tAbsError: 1.85167e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.23188e+00\tAbsError: 7.54578e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.08395e-03\tAbsError: 1.77622e+00\n", - " Region: \"zone_3\"\tRelError: 3.06612e+03\tAbsError: 8.87050e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.99485e+03\tAbsError: 5.55600e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.99885e+01\tAbsError: 3.31450e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.27295e+00\tAbsError: 7.54578e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.09190e-03\tAbsError: 1.77902e+00\n", - "Iteration: 16\n", - " Device: \"device\"\tRelError: 1.33093e-03\tAbsError: 6.47227e+11\n", - " Region: \"zone_1\"\tRelError: 3.76552e-04\tAbsError: 3.83474e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.75451e-04\tAbsError: 4.53566e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10153e-06\tAbsError: 3.83020e-04\n", - " Region: \"zone_3\"\tRelError: 9.54375e-04\tAbsError: 6.47227e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.44244e-05\tAbsError: 3.63104e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.40917e-05\tAbsError: 2.84123e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 8.24757e-04\tAbsError: 4.58961e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10198e-06\tAbsError: 3.83177e-04\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.81005e+01\tAbsError: 1.51046e+17\n", - " Region: \"zone_1\"\tRelError: 2.47539e+01\tAbsError: 8.87921e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.47516e+01\tAbsError: 7.77584e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.31701e-03\tAbsError: 8.10163e-01\n", - " Region: \"zone_3\"\tRelError: 1.33466e+01\tAbsError: 1.51046e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.06614e+00\tAbsError: 1.02024e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.23401e+00\tAbsError: 4.90221e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04413e+00\tAbsError: 7.77584e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.31701e-03\tAbsError: 8.10163e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.06736e+00\tAbsError: 1.67079e+15\n", - " Region: \"zone_1\"\tRelError: 1.87002e-01\tAbsError: 2.94468e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86917e-01\tAbsError: 5.45669e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.47563e-05\tAbsError: 2.93922e-02\n", - " Region: \"zone_3\"\tRelError: 1.88036e+00\tAbsError: 1.67079e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95806e-02\tAbsError: 8.61655e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.32450e-03\tAbsError: 8.09135e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.85737e+00\tAbsError: 5.47236e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.50770e-05\tAbsError: 2.95046e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.71203e-01\tAbsError: 2.64478e+15\n", - " Region: \"zone_1\"\tRelError: 7.37964e-02\tAbsError: 4.38243e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.36702e-02\tAbsError: 5.07687e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26208e-04\tAbsError: 4.37736e-02\n", - " Region: \"zone_3\"\tRelError: 1.97407e-01\tAbsError: 2.64478e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32945e-02\tAbsError: 1.36876e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.09641e-03\tAbsError: 1.27602e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81889e-01\tAbsError: 5.14090e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26670e-04\tAbsError: 4.39325e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.34773e+03\tAbsError: 2.46923e+16\n", - " Region: \"zone_1\"\tRelError: 5.61102e+00\tAbsError: 1.65414e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.60647e+00\tAbsError: 7.09984e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.55217e-03\tAbsError: 1.58314e+00\n", - " Region: \"zone_3\"\tRelError: 1.34212e+03\tAbsError: 2.46923e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.23183e+01\tAbsError: 1.45002e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.31944e+03\tAbsError: 1.01922e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52564e-01\tAbsError: 7.09985e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.55217e-03\tAbsError: 1.58314e+00\n", - "Iteration: 17\n", - " Device: \"device\"\tRelError: 6.27078e-04\tAbsError: 3.72961e+11\n", - " Region: \"zone_1\"\tRelError: 1.71680e-04\tAbsError: 6.72679e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.71487e-04\tAbsError: 2.54116e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.92726e-07\tAbsError: 6.70138e-05\n", - " Region: \"zone_3\"\tRelError: 4.55398e-04\tAbsError: 3.72961e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.60431e-05\tAbsError: 2.04507e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.57839e-05\tAbsError: 1.68455e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.83378e-04\tAbsError: 2.56993e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.92766e-07\tAbsError: 6.70275e-05\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 4.59577e+02\tAbsError: 7.82143e+16\n", - " Region: \"zone_1\"\tRelError: 2.03812e+02\tAbsError: 2.08058e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03806e+02\tAbsError: 7.35754e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.77336e-03\tAbsError: 2.00701e+00\n", - " Region: \"zone_3\"\tRelError: 2.55765e+02\tAbsError: 7.82143e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.13137e+00\tAbsError: 4.66961e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.46425e+02\tAbsError: 3.15182e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03151e-01\tAbsError: 7.35755e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.77445e-03\tAbsError: 2.00753e+00\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.99757e-02\tAbsError: 6.03219e+13\n", - " Region: \"zone_1\"\tRelError: 5.28092e-03\tAbsError: 6.07421e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.26342e-03\tAbsError: 6.43272e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75062e-05\tAbsError: 6.06778e-03\n", - " Region: \"zone_3\"\tRelError: 2.46948e-02\tAbsError: 6.03219e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52421e-04\tAbsError: 2.92320e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.21852e-04\tAbsError: 3.10899e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.41030e-02\tAbsError: 6.47112e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75095e-05\tAbsError: 6.06885e-03\n", - "Iteration: 18\n", - " Device: \"device\"\tRelError: 1.26073e-04\tAbsError: 6.34613e+10\n", - " Region: \"zone_1\"\tRelError: 3.54567e-05\tAbsError: 2.82723e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.53755e-05\tAbsError: 4.27763e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.11860e-08\tAbsError: 2.82296e-05\n", - " Region: \"zone_3\"\tRelError: 9.06159e-05\tAbsError: 6.34613e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.26251e-06\tAbsError: 3.67455e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.22962e-06\tAbsError: 2.67158e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.80425e-05\tAbsError: 4.32836e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.12039e-08\tAbsError: 2.82359e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.02394e-03\tAbsError: 1.42075e+14\n", - " Region: \"zone_1\"\tRelError: 1.02173e-03\tAbsError: 4.60762e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00847e-03\tAbsError: 1.08220e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32649e-05\tAbsError: 4.59680e-03\n", - " Region: \"zone_3\"\tRelError: 4.00220e-03\tAbsError: 1.42075e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14122e-04\tAbsError: 6.97525e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.15155e-04\tAbsError: 7.23226e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.35966e-03\tAbsError: 1.09108e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32665e-05\tAbsError: 4.59729e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.21180e+03\tAbsError: 2.42164e+15\n", - " Region: \"zone_1\"\tRelError: 6.49855e-01\tAbsError: 2.64728e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 6.49283e-01\tAbsError: 6.59600e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.71867e-04\tAbsError: 1.98768e-01\n", - " Region: \"zone_3\"\tRelError: 1.21115e+03\tAbsError: 2.42164e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.79812e+02\tAbsError: 1.29139e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.30741e+02\tAbsError: 1.13025e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.93252e-01\tAbsError: 6.59600e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.71867e-04\tAbsError: 1.98768e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.17213e+02\tAbsError: 1.25554e+16\n", - " Region: \"zone_1\"\tRelError: 2.19150e+00\tAbsError: 1.09716e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.19139e+00\tAbsError: 6.88787e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.17693e-04\tAbsError: 4.08372e-02\n", - " Region: \"zone_3\"\tRelError: 3.15021e+02\tAbsError: 1.25554e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 5.86596e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.05049e+02\tAbsError: 6.68940e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.71668e-01\tAbsError: 6.88788e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.17693e-04\tAbsError: 4.08372e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.10405e-01\tAbsError: 3.12560e+13\n", - " Region: \"zone_1\"\tRelError: 1.08840e-02\tAbsError: 4.61195e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08827e-02\tAbsError: 1.71511e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32204e-06\tAbsError: 4.59479e-04\n", - " Region: \"zone_3\"\tRelError: 9.95213e-02\tAbsError: 3.12560e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34947e-04\tAbsError: 1.52362e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.27748e-04\tAbsError: 1.60198e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.92573e-02\tAbsError: 1.72813e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32271e-06\tAbsError: 4.59705e-04\n", - "Iteration: 19\n", - " Device: \"device\"\tRelError: 4.83955e-05\tAbsError: 2.70607e+10\n", - " Region: \"zone_1\"\tRelError: 1.33880e-05\tAbsError: 6.01952e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33708e-05\tAbsError: 1.77378e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72607e-08\tAbsError: 6.00179e-06\n", - " Region: \"zone_3\"\tRelError: 3.50075e-05\tAbsError: 2.70607e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.61535e-06\tAbsError: 1.56370e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.59676e-06\tAbsError: 1.14238e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.97781e-05\tAbsError: 1.79440e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72632e-08\tAbsError: 6.00268e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:50\u001b[0m.\u001b[1;36m234\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.2\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.28731e-02\tAbsError: 3.02293e+13\n", - " Region: \"zone_1\"\tRelError: 3.52908e-03\tAbsError: 1.06265e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52602e-03\tAbsError: 1.19751e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.05388e-06\tAbsError: 1.06145e-03\n", - " Region: \"zone_3\"\tRelError: 9.34401e-03\tAbsError: 3.02293e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.79799e-05\tAbsError: 1.49185e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.36191e-05\tAbsError: 1.53108e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.20936e-03\tAbsError: 1.20971e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.05536e-06\tAbsError: 1.06195e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.65504e+03\tAbsError: 6.16435e+14\n", - " Region: \"zone_1\"\tRelError: 1.90949e-01\tAbsError: 9.65343e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.90844e-01\tAbsError: 6.01966e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.04401e-04\tAbsError: 3.63377e-02\n", - " Region: \"zone_3\"\tRelError: 2.65485e+03\tAbsError: 6.16435e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.90035e+03\tAbsError: 4.15710e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.54397e+02\tAbsError: 2.00726e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04014e-01\tAbsError: 6.01966e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.04442e-04\tAbsError: 3.63528e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.04629e+04\tAbsError: 2.37437e+15\n", - " Region: \"zone_1\"\tRelError: 4.74917e-01\tAbsError: 2.24943e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.74453e-01\tAbsError: 6.35445e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.64520e-04\tAbsError: 1.61399e-01\n", - " Region: \"zone_3\"\tRelError: 1.04625e+04\tAbsError: 2.37437e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07391e+01\tAbsError: 1.41468e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.04516e+04\tAbsError: 9.59690e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.42411e-01\tAbsError: 6.35445e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.64913e-04\tAbsError: 1.61539e-01\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.63047e-03\tAbsError: 9.09027e+11\n", - " Region: \"zone_1\"\tRelError: 4.56990e-04\tAbsError: 3.44629e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.55999e-04\tAbsError: 1.41300e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.91190e-07\tAbsError: 3.44488e-04\n", - " Region: \"zone_3\"\tRelError: 4.17348e-03\tAbsError: 9.09027e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33335e-06\tAbsError: 4.38047e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.02288e-05\tAbsError: 4.70980e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.15793e-03\tAbsError: 1.42246e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.91601e-07\tAbsError: 3.44637e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.87539e-04\tAbsError: 5.02822e+12\n", - " Region: \"zone_1\"\tRelError: 1.19584e-04\tAbsError: 2.34142e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18911e-04\tAbsError: 3.38653e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.72773e-07\tAbsError: 2.33803e-04\n", - " Region: \"zone_3\"\tRelError: 3.67955e-04\tAbsError: 5.02822e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18819e-05\tAbsError: 2.47643e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.05162e-05\tAbsError: 2.55180e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.44883e-04\tAbsError: 3.41809e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.73051e-07\tAbsError: 2.33906e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.71665e+00\tAbsError: 8.34849e+15\n", - " Region: \"zone_1\"\tRelError: 2.08783e+00\tAbsError: 4.09564e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.08783e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.19011e-09\tAbsError: 2.15239e-06\n", - " Region: \"zone_3\"\tRelError: 1.62882e+00\tAbsError: 8.34849e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69544e-01\tAbsError: 4.67018e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69471e-01\tAbsError: 3.67831e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.98079e-02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.19102e-09\tAbsError: 2.15271e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.39969e+02\tAbsError: 2.18179e+14\n", - " Region: \"zone_1\"\tRelError: 8.33405e-02\tAbsError: 7.51246e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.32783e-02\tAbsError: 5.35128e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.22639e-05\tAbsError: 2.16117e-02\n", - " Region: \"zone_3\"\tRelError: 1.39885e+02\tAbsError: 2.18179e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.25875e+01\tAbsError: 9.31122e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.27214e+02\tAbsError: 1.25067e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.35329e-02\tAbsError: 5.35129e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.22639e-05\tAbsError: 2.16117e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.10179e+04\tAbsError: 1.16660e+15\n", - " Region: \"zone_1\"\tRelError: 3.25898e-01\tAbsError: 7.98044e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.25833e-01\tAbsError: 5.74069e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.45576e-05\tAbsError: 2.23976e-02\n", - " Region: \"zone_3\"\tRelError: 3.10176e+04\tAbsError: 1.16660e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39601e+03\tAbsError: 7.27993e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.66214e+04\tAbsError: 4.38604e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21043e-01\tAbsError: 5.74070e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.45735e-05\tAbsError: 2.24025e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.49771e-03\tAbsError: 1.64940e+12\n", - " Region: \"zone_1\"\tRelError: 6.42053e-04\tAbsError: 1.77929e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.42002e-04\tAbsError: 9.99896e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.09050e-08\tAbsError: 1.76929e-05\n", - " Region: \"zone_3\"\tRelError: 5.85566e-03\tAbsError: 1.64940e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16109e-06\tAbsError: 8.03293e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.70130e-06\tAbsError: 8.46106e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.84174e-03\tAbsError: 1.00703e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.09341e-08\tAbsError: 1.77035e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.72996e-04\tAbsError: 1.42516e+12\n", - " Region: \"zone_1\"\tRelError: 1.84920e-04\tAbsError: 3.38943e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.84823e-04\tAbsError: 6.24884e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.73397e-08\tAbsError: 3.38318e-05\n", - " Region: \"zone_3\"\tRelError: 4.88075e-04\tAbsError: 1.42516e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.24640e-06\tAbsError: 7.04060e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.97985e-06\tAbsError: 7.21095e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.81752e-04\tAbsError: 6.30893e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.73857e-08\tAbsError: 3.38479e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 5.53468e+02\tAbsError: 1.83800e+14\n", - " Region: \"zone_1\"\tRelError: 6.52479e-02\tAbsError: 6.97119e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.51786e-02\tAbsError: 4.56537e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.93074e-05\tAbsError: 2.40582e-02\n", - " Region: \"zone_3\"\tRelError: 5.53402e+02\tAbsError: 1.83800e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.44590e+02\tAbsError: 3.99742e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.74701e+00\tAbsError: 1.43826e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.56062e-02\tAbsError: 4.56538e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.93074e-05\tAbsError: 2.40582e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.50135e+00\tAbsError: 2.91712e+14\n", - " Region: \"zone_1\"\tRelError: 6.56152e-02\tAbsError: 8.99313e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.54450e-02\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70195e-04\tAbsError: 5.91677e-02\n", - " Region: \"zone_3\"\tRelError: 1.43573e+00\tAbsError: 2.91712e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37692e-01\tAbsError: 1.49991e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32867e-01\tAbsError: 1.41722e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.50013e-02\tAbsError: 3.07641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70195e-04\tAbsError: 5.91677e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 5.52298e+03\tAbsError: 2.95926e+14\n", - " Region: \"zone_1\"\tRelError: 8.12337e-02\tAbsError: 8.96310e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.11201e-02\tAbsError: 5.02451e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13516e-04\tAbsError: 3.93859e-02\n", - " Region: \"zone_3\"\tRelError: 5.52289e+03\tAbsError: 2.95926e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32970e+03\tAbsError: 4.16430e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.19311e+03\tAbsError: 2.54283e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.54394e-02\tAbsError: 5.02452e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13516e-04\tAbsError: 3.93859e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 5.44825e-04\tAbsError: 5.87780e+10\n", - " Region: \"zone_1\"\tRelError: 5.39394e-05\tAbsError: 2.02429e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.38812e-05\tAbsError: 6.87611e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.82246e-08\tAbsError: 2.02360e-05\n", - " Region: \"zone_3\"\tRelError: 4.90886e-04\tAbsError: 5.87780e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46411e-07\tAbsError: 2.85251e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.30809e-07\tAbsError: 3.02529e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.90250e-04\tAbsError: 6.91269e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.82487e-08\tAbsError: 2.02448e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.68662e-05\tAbsError: 1.68112e+11\n", - " Region: \"zone_1\"\tRelError: 4.17110e-06\tAbsError: 1.20331e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.13651e-06\tAbsError: 1.05474e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.45951e-08\tAbsError: 1.20225e-05\n", - " Region: \"zone_3\"\tRelError: 1.26951e-05\tAbsError: 1.68112e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.02854e-07\tAbsError: 8.28209e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.89403e-07\tAbsError: 8.52907e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18682e-05\tAbsError: 1.06472e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.46105e-08\tAbsError: 1.20282e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:54\u001b[0m.\u001b[1;36m620\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.95\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.34092e-01\tAbsError: 3.63176e+13\n", - " Region: \"zone_1\"\tRelError: 4.74090e-02\tAbsError: 3.08418e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.73947e-02\tAbsError: 2.58899e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42438e-05\tAbsError: 4.95187e-03\n", - " Region: \"zone_3\"\tRelError: 8.86683e-01\tAbsError: 3.63176e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40041e-01\tAbsError: 2.66178e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.98904e-01\tAbsError: 9.69976e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.77237e-02\tAbsError: 2.58388e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42438e-05\tAbsError: 4.95187e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.06872e+01\tAbsError: 1.51429e+14\n", - " Region: \"zone_1\"\tRelError: 4.87097e-02\tAbsError: 6.88565e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.86160e-02\tAbsError: 3.63251e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.37085e-05\tAbsError: 3.25314e-02\n", - " Region: \"zone_3\"\tRelError: 4.06385e+01\tAbsError: 1.51429e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.01309e+01\tAbsError: 4.50003e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.58697e-01\tAbsError: 1.46929e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.87811e-02\tAbsError: 3.63252e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.37085e-05\tAbsError: 3.25314e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.43220e+02\tAbsError: 2.99755e+14\n", - " Region: \"zone_1\"\tRelError: 5.65647e-02\tAbsError: 8.60901e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.64370e-02\tAbsError: 4.17803e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27691e-04\tAbsError: 4.43098e-02\n", - " Region: \"zone_3\"\tRelError: 1.43164e+02\tAbsError: 2.99755e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.02854e+01\tAbsError: 6.91875e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.28172e+01\tAbsError: 2.92836e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.08944e-02\tAbsError: 4.17805e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27747e-04\tAbsError: 4.43292e-02\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.92595e-04\tAbsError: 9.49473e+10\n", - " Region: \"zone_1\"\tRelError: 3.87978e-05\tAbsError: 2.02444e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.87920e-05\tAbsError: 5.96621e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.80757e-09\tAbsError: 2.01847e-06\n", - " Region: \"zone_3\"\tRelError: 3.53797e-04\tAbsError: 9.49473e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.10989e-07\tAbsError: 4.62324e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.83783e-07\tAbsError: 4.87150e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52997e-04\tAbsError: 6.00786e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.81025e-09\tAbsError: 2.01943e-06\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.10412e+00\tAbsError: 1.49221e+14\n", - " Region: \"zone_1\"\tRelError: 3.55745e-02\tAbsError: 6.71415e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.54542e-02\tAbsError: 2.53668e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20320e-04\tAbsError: 4.17747e-02\n", - " Region: \"zone_3\"\tRelError: 1.06855e+00\tAbsError: 1.49221e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.63379e-01\tAbsError: 1.22026e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.75653e-02\tAbsError: 1.37018e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.74841e-02\tAbsError: 2.57075e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20320e-04\tAbsError: 4.17747e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.84661e-01\tAbsError: 3.60686e+12\n", - " Region: \"zone_1\"\tRelError: 1.51217e-02\tAbsError: 1.24487e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51123e-02\tAbsError: 9.16566e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.44373e-06\tAbsError: 3.28309e-03\n", - " Region: \"zone_3\"\tRelError: 2.69539e-01\tAbsError: 3.60686e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12296e-01\tAbsError: 2.19866e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.19182e-02\tAbsError: 1.40820e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.53153e-02\tAbsError: 9.16570e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.44373e-06\tAbsError: 3.28309e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.50413e+02\tAbsError: 1.00117e+18\n", - " Region: \"zone_1\"\tRelError: 2.24824e+02\tAbsError: 4.22098e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.24824e+02\tAbsError: 4.22089e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.80922e-09\tAbsError: 9.76412e-07\n", - " Region: \"zone_3\"\tRelError: 2.55890e+01\tAbsError: 1.00117e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.19984e-01\tAbsError: 4.87971e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.98829e-01\tAbsError: 5.13196e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 2.41702e+01\tAbsError: 4.22091e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.81054e-09\tAbsError: 9.76858e-07\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.24163e+03\tAbsError: 3.12356e+14\n", - " Region: \"zone_1\"\tRelError: 4.63736e-02\tAbsError: 9.00220e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.62056e-02\tAbsError: 3.17369e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67936e-04\tAbsError: 5.82850e-02\n", - " Region: \"zone_3\"\tRelError: 3.24159e+03\tAbsError: 3.12356e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.24035e+03\tAbsError: 1.81390e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.18548e+00\tAbsError: 2.94217e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.76331e-02\tAbsError: 3.17371e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67973e-04\tAbsError: 5.82975e-02\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 5.03275e-05\tAbsError: 9.08763e+09\n", - " Region: \"zone_1\"\tRelError: 4.97773e-06\tAbsError: 1.23989e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.97416e-06\tAbsError: 6.85123e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.56554e-09\tAbsError: 1.23921e-06\n", - " Region: \"zone_3\"\tRelError: 4.53497e-05\tAbsError: 9.08763e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.78500e-08\tAbsError: 4.42118e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.59273e-08\tAbsError: 4.66645e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 4.52724e-05\tAbsError: 6.89457e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.56702e-09\tAbsError: 1.23975e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:37:56\u001b[0m.\u001b[1;36m819\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.9\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 5.25803e-01\tAbsError: 1.09345e+14\n", - " Region: \"zone_1\"\tRelError: 2.16781e-02\tAbsError: 6.89999e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.15304e-02\tAbsError: 1.77021e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47726e-04\tAbsError: 5.12977e-02\n", - " Region: \"zone_3\"\tRelError: 5.04125e-01\tAbsError: 1.09345e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.76084e-01\tAbsError: 8.19390e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.13922e-03\tAbsError: 1.01152e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.17546e-02\tAbsError: 1.77023e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47726e-04\tAbsError: 5.12977e-02\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.11827e+00\tAbsError: 2.77763e+14\n", - " Region: \"zone_1\"\tRelError: 3.25038e-02\tAbsError: 1.01854e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.22849e-02\tAbsError: 2.58441e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18958e-04\tAbsError: 7.60097e-02\n", - " Region: \"zone_3\"\tRelError: 1.08576e+00\tAbsError: 2.77763e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99187e-01\tAbsError: 1.92358e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.41534e-02\tAbsError: 2.58528e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.22056e-02\tAbsError: 2.42935e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18972e-04\tAbsError: 7.60143e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.15194e-02\tAbsError: 3.32535e+12\n", - " Region: \"zone_1\"\tRelError: 1.39864e-03\tAbsError: 2.06495e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39273e-03\tAbsError: 1.45908e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.90384e-06\tAbsError: 2.05036e-03\n", - " Region: \"zone_3\"\tRelError: 6.01208e-02\tAbsError: 3.32535e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.70408e-02\tAbsError: 2.05874e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.81904e-04\tAbsError: 1.26661e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49213e-03\tAbsError: 1.52370e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.90384e-06\tAbsError: 2.05036e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.17999e+04\tAbsError: 5.10978e+17\n", - " Region: \"zone_1\"\tRelError: 5.03027e+02\tAbsError: 1.04768e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.03024e+02\tAbsError: 3.22427e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.92198e-03\tAbsError: 1.01544e+00\n", - " Region: \"zone_3\"\tRelError: 1.12969e+04\tAbsError: 5.10978e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.85509e-01\tAbsError: 2.56157e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.59104e-01\tAbsError: 2.54821e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12959e+04\tAbsError: 3.22432e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.92235e-03\tAbsError: 1.01559e+00\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 6.87726e-02\tAbsError: 8.38083e+13\n", - " Region: \"zone_1\"\tRelError: 6.67215e-03\tAbsError: 8.75624e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.42056e-03\tAbsError: 1.74141e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.51596e-04\tAbsError: 8.73883e-02\n", - " Region: \"zone_3\"\tRelError: 6.21005e-02\tAbsError: 8.38083e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.18225e-02\tAbsError: 1.20575e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.74554e-03\tAbsError: 7.17508e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.80774e-04\tAbsError: 1.76570e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.51596e-04\tAbsError: 8.73883e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.75731e+01\tAbsError: 5.68784e+17\n", - " Region: \"zone_1\"\tRelError: 3.83859e+01\tAbsError: 4.09543e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.83859e+01\tAbsError: 4.09541e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.16236e-10\tAbsError: 1.79418e-07\n", - " Region: \"zone_3\"\tRelError: 1.91873e+01\tAbsError: 5.68784e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.35377e-01\tAbsError: 2.75826e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.22188e-01\tAbsError: 2.92959e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77297e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.16460e-10\tAbsError: 1.79501e-07\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 2.61096e+00\tAbsError: 5.27748e+14\n", - " Region: \"zone_1\"\tRelError: 1.33610e-02\tAbsError: 2.72747e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33123e-02\tAbsError: 1.03781e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.86757e-05\tAbsError: 1.68966e-02\n", - " Region: \"zone_3\"\tRelError: 2.59760e+00\tAbsError: 5.27748e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.56561e+00\tAbsError: 1.59867e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.17779e-03\tAbsError: 5.11762e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.67637e-02\tAbsError: 1.03782e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.86757e-05\tAbsError: 1.68966e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.41567e-04\tAbsError: 9.91707e+11\n", - " Region: \"zone_1\"\tRelError: 9.96191e-05\tAbsError: 1.41222e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.92175e-05\tAbsError: 1.43594e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.01560e-07\tAbsError: 1.39786e-04\n", - " Region: \"zone_3\"\tRelError: 5.41948e-04\tAbsError: 9.91707e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33847e-04\tAbsError: 2.52735e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.19507e-04\tAbsError: 7.38971e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88192e-04\tAbsError: 1.43639e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.01715e-07\tAbsError: 1.39842e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 4.09005e+04\tAbsError: 1.09186e+17\n", - " Region: \"zone_1\"\tRelError: 3.89562e+04\tAbsError: 4.08435e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.89562e+04\tAbsError: 2.58909e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10194e-03\tAbsError: 3.82544e-01\n", - " Region: \"zone_3\"\tRelError: 1.94429e+03\tAbsError: 1.09186e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74831e-01\tAbsError: 5.48441e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.82033e-02\tAbsError: 5.43417e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.94402e+03\tAbsError: 2.58839e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10598e-03\tAbsError: 3.83947e-01\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 5.03731e-02\tAbsError: 4.41514e+13\n", - " Region: \"zone_1\"\tRelError: 1.13318e-02\tAbsError: 7.63919e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13298e-02\tAbsError: 5.65882e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.03424e-06\tAbsError: 7.07331e-04\n", - " Region: \"zone_3\"\tRelError: 3.90413e-02\tAbsError: 4.41514e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.03515e-03\tAbsError: 1.47172e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.05565e-03\tAbsError: 2.94343e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.69485e-02\tAbsError: 5.71003e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.03424e-06\tAbsError: 7.07331e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.10779e+01\tAbsError: 4.06443e+17\n", - " Region: \"zone_1\"\tRelError: 1.97168e+01\tAbsError: 4.69738e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.97155e+01\tAbsError: 3.07629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26517e-03\tAbsError: 4.38975e-01\n", - " Region: \"zone_3\"\tRelError: 1.13612e+01\tAbsError: 4.06443e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.26663e-01\tAbsError: 2.03016e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.10593e-01\tAbsError: 2.03427e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03227e+01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26614e-03\tAbsError: 4.39294e-01\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 4.70060e-01\tAbsError: 6.21356e+14\n", - " Region: \"zone_1\"\tRelError: 2.85732e-02\tAbsError: 2.05963e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.79813e-02\tAbsError: 3.65489e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.91933e-04\tAbsError: 2.05597e-01\n", - " Region: \"zone_3\"\tRelError: 4.41487e-01\tAbsError: 6.21356e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.81692e-01\tAbsError: 1.55850e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.38602e-02\tAbsError: 6.05771e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.53431e-02\tAbsError: 3.74070e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.91933e-04\tAbsError: 2.05597e-01\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 3.33365e-03\tAbsError: 6.06204e+11\n", - " Region: \"zone_1\"\tRelError: 9.58438e-04\tAbsError: 2.88131e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 9.50144e-04\tAbsError: 6.03756e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.29366e-06\tAbsError: 2.88071e-03\n", - " Region: \"zone_3\"\tRelError: 2.37521e-03\tAbsError: 6.06204e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05456e-04\tAbsError: 3.54398e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.77946e-04\tAbsError: 2.51806e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.98352e-03\tAbsError: 6.23154e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.29366e-06\tAbsError: 2.88071e-03\n", - "Iteration: 3\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.74454e+02\tAbsError: 8.01333e+15\n", - " Region: \"zone_1\"\tRelError: 6.80372e+01\tAbsError: 4.04598e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 6.80361e+01\tAbsError: 1.10518e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12846e-03\tAbsError: 3.93546e-01\n", - " Region: \"zone_3\"\tRelError: 7.06417e+02\tAbsError: 8.01333e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.62890e-02\tAbsError: 4.02354e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.06950e-02\tAbsError: 3.98978e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.06379e+02\tAbsError: 1.10525e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12877e-03\tAbsError: 3.93649e-01\n", - " Device: \"device\"\tRelError: 1.93100e-04\tAbsError: 1.20960e+11\n", - " Region: \"zone_1\"\tRelError: 5.19820e-05\tAbsError: 5.49694e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.18239e-05\tAbsError: 7.13688e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.58064e-07\tAbsError: 5.48980e-05\n", - " Region: \"zone_3\"\tRelError: 1.41118e-04\tAbsError: 1.20960e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98311e-06\tAbsError: 8.30760e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.89226e-06\tAbsError: 3.78838e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21085e-04\tAbsError: 7.51134e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.58064e-07\tAbsError: 5.48980e-05\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 1.22495e-01\tAbsError: 1.04521e+14\n", - " Region: \"zone_1\"\tRelError: 2.79563e-02\tAbsError: 3.74050e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.79459e-02\tAbsError: 1.32552e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.03633e-05\tAbsError: 3.60795e-03\n", - " Region: \"zone_3\"\tRelError: 9.45386e-02\tAbsError: 1.04521e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42087e-02\tAbsError: 3.56076e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.42360e-02\tAbsError: 6.89134e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.60836e-02\tAbsError: 1.33749e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.03685e-05\tAbsError: 3.60983e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 4.48960e+02\tAbsError: 9.69691e+16\n", - " Region: \"zone_1\"\tRelError: 4.44741e+02\tAbsError: 1.46848e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.44741e+02\tAbsError: 2.58943e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.47880e-04\tAbsError: 1.20954e-01\n", - " Region: \"zone_3\"\tRelError: 4.21888e+00\tAbsError: 9.69691e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.30659e-01\tAbsError: 4.85459e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.34310e-01\tAbsError: 4.84232e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.85356e+00\tAbsError: 2.58906e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.48053e-04\tAbsError: 1.21009e-01\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 4.00677e-03\tAbsError: 2.81686e+12\n", - " Region: \"zone_1\"\tRelError: 1.05646e-03\tAbsError: 2.25120e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.05582e-03\tAbsError: 2.16769e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.41193e-07\tAbsError: 2.22952e-04\n", - " Region: \"zone_3\"\tRelError: 2.95031e-03\tAbsError: 2.81686e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.80261e-04\tAbsError: 1.33088e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.78330e-04\tAbsError: 1.48598e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.39107e-03\tAbsError: 2.19067e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.41428e-07\tAbsError: 2.23034e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.80767e-05\tAbsError: 4.88656e+10\n", - " Region: \"zone_1\"\tRelError: 1.14722e-05\tAbsError: 6.01770e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14550e-05\tAbsError: 4.42598e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71595e-08\tAbsError: 5.97344e-06\n", - " Region: \"zone_3\"\tRelError: 3.66045e-05\tAbsError: 4.88656e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37873e-06\tAbsError: 1.78083e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.34140e-06\tAbsError: 3.10573e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78672e-05\tAbsError: 4.43720e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71671e-08\tAbsError: 5.97623e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 3.12975e+01\tAbsError: 3.16208e+15\n", - " Region: \"zone_1\"\tRelError: 2.83893e+01\tAbsError: 5.80956e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.83876e+01\tAbsError: 1.69468e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.66814e-03\tAbsError: 5.80787e-01\n", - " Region: \"zone_3\"\tRelError: 2.90821e+00\tAbsError: 3.16208e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12918e-02\tAbsError: 1.46803e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.97509e-03\tAbsError: 1.69405e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.89227e+00\tAbsError: 1.70953e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.66892e-03\tAbsError: 5.81053e-01\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 1.08908e-02\tAbsError: 3.13154e+12\n", - " Region: \"zone_1\"\tRelError: 3.20242e-03\tAbsError: 6.92103e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.18252e-03\tAbsError: 2.37467e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.98986e-05\tAbsError: 6.91866e-03\n", - " Region: \"zone_3\"\tRelError: 7.68840e-03\tAbsError: 3.13154e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.85378e-04\tAbsError: 2.02508e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.32251e-04\tAbsError: 1.10645e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 6.75087e-03\tAbsError: 2.45496e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.98986e-05\tAbsError: 6.91866e-03\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:02\u001b[0m.\u001b[1;36m208\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:02\u001b[0m.\u001b[1;36m208\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.03712e+00\tAbsError: 1.21527e+16\n", - " Region: \"zone_1\"\tRelError: 1.00977e+00\tAbsError: 5.07362e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00834e+00\tAbsError: 9.16487e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42992e-03\tAbsError: 4.98197e-01\n", - " Region: \"zone_3\"\tRelError: 4.02736e+00\tAbsError: 1.21527e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.24782e-02\tAbsError: 5.84262e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.44637e-02\tAbsError: 6.31012e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 3.96898e+00\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43302e-03\tAbsError: 4.99291e-01\n", - "Iteration: 16\n", - " Device: \"device\"\tRelError: 4.78745e-04\tAbsError: 2.09883e+11\n", - " Region: \"zone_1\"\tRelError: 1.37276e-04\tAbsError: 1.88799e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36733e-04\tAbsError: 1.56735e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.42550e-07\tAbsError: 1.88642e-04\n", - " Region: \"zone_3\"\tRelError: 3.41469e-04\tAbsError: 2.09883e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16342e-05\tAbsError: 1.14769e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.15603e-05\tAbsError: 9.51147e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.97732e-04\tAbsError: 1.58619e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.42742e-07\tAbsError: 1.88719e-04\n", - "Iteration: 16\n", - " Device: \"device\"\tRelError: 9.83445e-03\tAbsError: 6.77712e+12\n", - " Region: \"zone_1\"\tRelError: 2.60543e-03\tAbsError: 6.40859e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.60360e-03\tAbsError: 5.17337e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.82818e-06\tAbsError: 6.35685e-04\n", - " Region: \"zone_3\"\tRelError: 7.22901e-03\tAbsError: 6.77712e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.73598e-04\tAbsError: 3.24417e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.69049e-04\tAbsError: 3.53295e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.88454e-03\tAbsError: 5.22825e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.82857e-06\tAbsError: 6.35821e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.88061e+01\tAbsError: 2.85079e+15\n", - " Region: \"zone_1\"\tRelError: 6.73862e+00\tAbsError: 3.55831e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.73852e+00\tAbsError: 1.64420e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.01700e-04\tAbsError: 3.54187e-02\n", - " Region: \"zone_3\"\tRelError: 1.20674e+01\tAbsError: 2.85079e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.00192e-03\tAbsError: 1.41980e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.87415e-03\tAbsError: 1.43099e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20605e+01\tAbsError: 1.65854e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.01744e-04\tAbsError: 3.54336e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.29649e+01\tAbsError: 8.28032e+15\n", - " Region: \"zone_1\"\tRelError: 1.13261e+01\tAbsError: 4.09567e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13261e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.18750e-09\tAbsError: 2.49624e-06\n", - " Region: \"zone_3\"\tRelError: 1.63880e+00\tAbsError: 8.28032e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69633e-01\tAbsError: 4.77284e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.50748e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.95556e-02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.18842e-09\tAbsError: 2.49659e-06\n", - "Iteration: 17\n", - " Device: \"device\"\tRelError: 3.00999e-04\tAbsError: 1.84846e+11\n", - " Region: \"zone_1\"\tRelError: 8.19378e-05\tAbsError: 2.60922e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 8.18632e-05\tAbsError: 1.26660e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.46747e-08\tAbsError: 2.59655e-05\n", - " Region: \"zone_3\"\tRelError: 2.19061e-04\tAbsError: 1.84846e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.78055e-05\tAbsError: 9.99668e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.76719e-05\tAbsError: 8.48788e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.83509e-04\tAbsError: 1.28081e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.46923e-08\tAbsError: 2.59717e-05\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.22708e-01\tAbsError: 3.87768e+15\n", - " Region: \"zone_1\"\tRelError: 1.91968e-01\tAbsError: 6.75386e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.90026e-01\tAbsError: 2.52604e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94152e-03\tAbsError: 6.75134e-01\n", - " Region: \"zone_3\"\tRelError: 7.30741e-01\tAbsError: 3.87768e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.56619e-03\tAbsError: 1.77246e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.53274e-03\tAbsError: 2.10521e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.16698e-01\tAbsError: 2.55458e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94389e-03\tAbsError: 6.75970e-01\n", - "Iteration: 17\n", - " Device: \"device\"\tRelError: 1.33464e-03\tAbsError: 6.01865e+11\n", - " Region: \"zone_1\"\tRelError: 3.81615e-04\tAbsError: 4.62510e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.80286e-04\tAbsError: 4.26302e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32891e-06\tAbsError: 4.62083e-04\n", - " Region: \"zone_3\"\tRelError: 9.53024e-04\tAbsError: 6.01865e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.06082e-05\tAbsError: 3.41244e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.03411e-05\tAbsError: 2.60621e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 8.30746e-04\tAbsError: 4.31478e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32948e-06\tAbsError: 4.62282e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.17130e+00\tAbsError: 2.53243e+14\n", - " Region: \"zone_1\"\tRelError: 8.02048e-01\tAbsError: 2.24613e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.01984e-01\tAbsError: 1.17020e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.44660e-05\tAbsError: 2.24496e-02\n", - " Region: \"zone_3\"\tRelError: 2.36925e+00\tAbsError: 2.53243e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.56971e-04\tAbsError: 1.26152e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.59164e-04\tAbsError: 1.27091e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.36817e+00\tAbsError: 1.17921e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.44925e-05\tAbsError: 2.24588e-02\n", - "Iteration: 18\n", - " Device: \"device\"\tRelError: 5.05814e-05\tAbsError: 2.45283e+10\n", - " Region: \"zone_1\"\tRelError: 1.43034e-05\tAbsError: 1.34689e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.42647e-05\tAbsError: 1.69134e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.86869e-08\tAbsError: 1.34520e-05\n", - " Region: \"zone_3\"\tRelError: 3.62781e-05\tAbsError: 2.45283e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.44583e-06\tAbsError: 1.40482e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.43514e-06\tAbsError: 1.04801e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.13584e-05\tAbsError: 1.71147e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.86964e-08\tAbsError: 1.34553e-05\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.56865e+00\tAbsError: 2.86625e+14\n", - " Region: \"zone_1\"\tRelError: 1.21045e-01\tAbsError: 8.55195e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20888e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", - " Region: \"zone_3\"\tRelError: 1.44761e+00\tAbsError: 2.86625e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38556e-01\tAbsError: 1.75436e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32332e-01\tAbsError: 1.11189e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.65613e-02\tAbsError: 3.07640e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:05\u001b[0m.\u001b[1;36m386\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:05\u001b[0m.\u001b[1;36m386\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.20555555555555557\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 18\n", - " Device: \"device\"\tRelError: 7.45304e-04\tAbsError: 4.51516e+11\n", - " Region: \"zone_1\"\tRelError: 2.03387e-04\tAbsError: 6.97949e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03187e-04\tAbsError: 3.08050e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.99839e-07\tAbsError: 6.94869e-05\n", - " Region: \"zone_3\"\tRelError: 5.41916e-04\tAbsError: 4.51516e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.35288e-05\tAbsError: 2.46048e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.32078e-05\tAbsError: 2.05469e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.54980e-04\tAbsError: 3.11521e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.99878e-07\tAbsError: 6.95007e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.39826e+00\tAbsError: 3.43096e+15\n", - " Region: \"zone_1\"\tRelError: 2.04849e-01\tAbsError: 4.45309e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.04721e-01\tAbsError: 2.05839e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27433e-04\tAbsError: 4.43251e-02\n", - " Region: \"zone_3\"\tRelError: 2.19341e+00\tAbsError: 3.43096e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46827e-03\tAbsError: 1.70482e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.46042e-03\tAbsError: 1.72614e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18535e+00\tAbsError: 2.07760e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27493e-04\tAbsError: 4.43450e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 8.76689e+00\tAbsError: 1.50647e+14\n", - " Region: \"zone_1\"\tRelError: 3.16473e-01\tAbsError: 2.47908e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.16466e-01\tAbsError: 6.52205e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.12020e-06\tAbsError: 2.47256e-03\n", - " Region: \"zone_3\"\tRelError: 8.45042e+00\tAbsError: 1.50647e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01195e-04\tAbsError: 7.50093e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10297e-04\tAbsError: 7.56382e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.45010e+00\tAbsError: 6.57560e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.12020e-06\tAbsError: 2.47256e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.63437e-01\tAbsError: 3.66677e+13\n", - " Region: \"zone_1\"\tRelError: 5.93231e-02\tAbsError: 3.16919e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.93064e-02\tAbsError: 2.58707e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", - " Region: \"zone_3\"\tRelError: 9.04114e-01\tAbsError: 3.66677e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40101e-01\tAbsError: 2.63702e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.04471e-01\tAbsError: 1.02975e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95256e-02\tAbsError: 2.58992e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", - "Iteration: 19\n", - " Device: \"device\"\tRelError: 1.33987e-04\tAbsError: 6.55810e+10\n", - " Region: \"zone_1\"\tRelError: 3.78368e-05\tAbsError: 3.33798e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.77409e-05\tAbsError: 4.45468e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.58696e-08\tAbsError: 3.33353e-05\n", - " Region: \"zone_3\"\tRelError: 9.61507e-05\tAbsError: 6.55810e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.50926e-06\tAbsError: 3.79987e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.47837e-06\tAbsError: 2.75823e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 8.30672e-05\tAbsError: 4.50780e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.58918e-08\tAbsError: 3.33430e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.62369e+00\tAbsError: 8.81229e+15\n", - " Region: \"zone_1\"\tRelError: 1.97477e+00\tAbsError: 4.20751e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.97477e+00\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.14730e-09\tAbsError: 2.48522e-06\n", - " Region: \"zone_3\"\tRelError: 1.64892e+00\tAbsError: 8.81229e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78993e-01\tAbsError: 4.92963e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.78922e-01\tAbsError: 3.88266e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.10055e-02\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.14845e-09\tAbsError: 2.48562e-06\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.26801e-01\tAbsError: 3.21780e+14\n", - " Region: \"zone_1\"\tRelError: 1.55999e-02\tAbsError: 2.70060e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55223e-02\tAbsError: 1.53596e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.76036e-05\tAbsError: 2.69907e-02\n", - " Region: \"zone_3\"\tRelError: 3.11201e-01\tAbsError: 3.21780e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.63679e-04\tAbsError: 1.60119e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.88527e-04\tAbsError: 1.61661e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.10171e-01\tAbsError: 1.54896e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.76380e-05\tAbsError: 2.70022e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.51438e-01\tAbsError: 2.02395e+13\n", - " Region: \"zone_1\"\tRelError: 3.57663e-02\tAbsError: 1.10130e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.57631e-02\tAbsError: 7.62074e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.16921e-06\tAbsError: 1.10054e-03\n", - " Region: \"zone_3\"\tRelError: 6.15671e-01\tAbsError: 2.02395e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.51143e-05\tAbsError: 1.00841e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.17050e-05\tAbsError: 1.01554e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.15601e-01\tAbsError: 7.68131e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.16965e-06\tAbsError: 1.10064e-03\n", - "Iteration: 20\n", - " Device: \"device\"\tRelError: 5.65881e-05\tAbsError: 3.20218e+10\n", - " Region: \"zone_1\"\tRelError: 1.56237e-05\tAbsError: 6.50398e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.56051e-05\tAbsError: 2.09852e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.86446e-08\tAbsError: 6.48299e-06\n", - " Region: \"zone_3\"\tRelError: 4.09644e-05\tAbsError: 3.20218e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.08913e-06\tAbsError: 1.84508e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.06663e-06\tAbsError: 1.35710e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.47900e-05\tAbsError: 2.12285e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.86473e-08\tAbsError: 6.48396e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:08\u001b[0m.\u001b[1;36m114\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.2\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.93334e-01\tAbsError: 6.56738e+12\n", - " Region: \"zone_1\"\tRelError: 1.86981e-02\tAbsError: 1.19586e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86900e-02\tAbsError: 9.16562e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03535e-06\tAbsError: 2.79297e-03\n", - " Region: \"zone_3\"\tRelError: 2.74636e-01\tAbsError: 6.56738e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11907e-01\tAbsError: 3.29549e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.38500e-02\tAbsError: 3.27189e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88710e-02\tAbsError: 9.16566e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03753e-06\tAbsError: 2.79381e-03\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.54137e+00\tAbsError: 3.24375e+14\n", - " Region: \"zone_1\"\tRelError: 7.11295e-02\tAbsError: 9.45006e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.09500e-02\tAbsError: 3.20824e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.79547e-04\tAbsError: 6.24182e-02\n", - " Region: \"zone_3\"\tRelError: 1.47024e+00\tAbsError: 3.24375e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.55196e-01\tAbsError: 1.67449e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.49237e-01\tAbsError: 1.56926e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.56262e-02\tAbsError: 3.20828e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.79547e-04\tAbsError: 6.24182e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.06749e-01\tAbsError: 1.86094e+14\n", - " Region: \"zone_1\"\tRelError: 8.34420e-03\tAbsError: 3.03935e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 8.33549e-03\tAbsError: 8.31449e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.71533e-06\tAbsError: 3.03103e-03\n", - " Region: \"zone_3\"\tRelError: 1.98405e-01\tAbsError: 1.86094e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.28032e-04\tAbsError: 9.25440e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.88076e-04\tAbsError: 9.35503e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.97980e-01\tAbsError: 8.38945e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.71848e-06\tAbsError: 3.03213e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 3.40943e-01\tAbsError: 8.80988e+12\n", - " Region: \"zone_1\"\tRelError: 1.44364e-02\tAbsError: 1.94211e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.44358e-02\tAbsError: 3.09686e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.57362e-07\tAbsError: 1.93901e-04\n", - " Region: \"zone_3\"\tRelError: 3.26507e-01\tAbsError: 8.80988e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.53349e-06\tAbsError: 4.38892e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.69254e-06\tAbsError: 4.42096e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.26487e-01\tAbsError: 3.12212e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.57570e-07\tAbsError: 1.93974e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.00158e-02\tAbsError: 2.47729e+12\n", - " Region: \"zone_1\"\tRelError: 6.29744e-04\tAbsError: 1.66755e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.24968e-04\tAbsError: 8.94858e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", - " Region: \"zone_3\"\tRelError: 5.93860e-02\tAbsError: 2.47729e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.68115e-02\tAbsError: 1.70064e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.91678e-04\tAbsError: 7.76647e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27809e-03\tAbsError: 9.43816e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.71665e+00\tAbsError: 8.34849e+15\n", - " Region: \"zone_1\"\tRelError: 2.08783e+00\tAbsError: 4.09567e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.08783e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.19938e-09\tAbsError: 2.50333e-06\n", - " Region: \"zone_3\"\tRelError: 1.62882e+00\tAbsError: 8.34849e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69544e-01\tAbsError: 4.67018e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69471e-01\tAbsError: 3.67831e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.98079e-02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.20047e-09\tAbsError: 2.50372e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.00350e+00\tAbsError: 3.97769e+13\n", - " Region: \"zone_1\"\tRelError: 5.04291e-02\tAbsError: 3.12685e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.04136e-02\tAbsError: 2.58872e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54792e-05\tAbsError: 5.38132e-03\n", - " Region: \"zone_3\"\tRelError: 9.53067e-01\tAbsError: 3.97769e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.66315e-01\tAbsError: 2.91166e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.36187e-01\tAbsError: 1.06602e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.05491e-02\tAbsError: 2.58931e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54792e-05\tAbsError: 5.38132e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.88896e-02\tAbsError: 2.58485e+13\n", - " Region: \"zone_1\"\tRelError: 1.63690e-03\tAbsError: 1.31710e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.63310e-03\tAbsError: 9.88963e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.79528e-06\tAbsError: 1.31612e-03\n", - " Region: \"zone_3\"\tRelError: 3.72527e-02\tAbsError: 2.58485e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.09818e-05\tAbsError: 1.28647e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.53496e-05\tAbsError: 1.29838e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.71926e-02\tAbsError: 9.97598e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.79540e-06\tAbsError: 1.31620e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 6.52134e-02\tAbsError: 1.52515e+12\n", - " Region: \"zone_1\"\tRelError: 2.21558e-03\tAbsError: 7.17045e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.21537e-03\tAbsError: 5.18562e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.05963e-07\tAbsError: 7.16526e-05\n", - " Region: \"zone_3\"\tRelError: 6.29978e-02\tAbsError: 1.52515e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01859e-06\tAbsError: 7.60051e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.48154e-06\tAbsError: 7.65095e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 6.29931e-02\tAbsError: 5.24017e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.06040e-07\tAbsError: 7.16803e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.31240e-04\tAbsError: 7.97937e+11\n", - " Region: \"zone_1\"\tRelError: 7.54533e-05\tAbsError: 1.27890e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.50894e-05\tAbsError: 1.20855e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.63943e-07\tAbsError: 1.26681e-04\n", - " Region: \"zone_3\"\tRelError: 3.55787e-04\tAbsError: 7.97937e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.38045e-05\tAbsError: 1.92064e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.48742e-05\tAbsError: 6.05872e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76744e-04\tAbsError: 1.21338e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.64089e-07\tAbsError: 1.26735e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.50135e+00\tAbsError: 2.91712e+14\n", - " Region: \"zone_1\"\tRelError: 6.56152e-02\tAbsError: 8.99313e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.54450e-02\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70195e-04\tAbsError: 5.91677e-02\n", - " Region: \"zone_3\"\tRelError: 1.43573e+00\tAbsError: 2.91712e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37692e-01\tAbsError: 1.49991e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32867e-01\tAbsError: 1.41722e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.50013e-02\tAbsError: 3.07641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70195e-04\tAbsError: 5.91677e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.16475e-01\tAbsError: 3.15522e+12\n", - " Region: \"zone_1\"\tRelError: 1.81031e-02\tAbsError: 1.40659e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.80938e-02\tAbsError: 1.08348e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.29419e-06\tAbsError: 3.23108e-03\n", - " Region: \"zone_3\"\tRelError: 2.98372e-01\tAbsError: 3.15522e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21375e-01\tAbsError: 1.95194e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.86610e-02\tAbsError: 1.20327e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.83264e-02\tAbsError: 1.08348e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.29673e-06\tAbsError: 3.23201e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.59304e-02\tAbsError: 1.10975e+13\n", - " Region: \"zone_1\"\tRelError: 6.60647e-04\tAbsError: 2.32906e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.59978e-04\tAbsError: 3.98553e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.68839e-07\tAbsError: 2.32508e-04\n", - " Region: \"zone_3\"\tRelError: 1.52698e-02\tAbsError: 1.10975e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32236e-05\tAbsError: 5.52234e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.14382e-05\tAbsError: 5.57521e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.52444e-02\tAbsError: 4.02224e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.69094e-07\tAbsError: 2.32596e-04\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 2.27591e-02\tAbsError: 5.50028e+11\n", - " Region: \"zone_1\"\tRelError: 7.57810e-04\tAbsError: 1.50159e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.57766e-04\tAbsError: 1.82199e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.31100e-08\tAbsError: 1.49977e-05\n", - " Region: \"zone_3\"\tRelError: 2.20013e-02\tAbsError: 5.50028e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.28023e-07\tAbsError: 2.74093e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.25450e-07\tAbsError: 2.75935e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20000e-02\tAbsError: 1.84174e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.31264e-08\tAbsError: 1.50038e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.53826e-04\tAbsError: 1.09912e+11\n", - " Region: \"zone_1\"\tRelError: 2.29821e-05\tAbsError: 4.27473e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.28592e-05\tAbsError: 6.65170e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", - " Region: \"zone_3\"\tRelError: 1.30844e-04\tAbsError: 1.09912e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.01681e-06\tAbsError: 7.52234e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94349e-06\tAbsError: 3.46881e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14760e-04\tAbsError: 6.98367e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.34092e-01\tAbsError: 3.63176e+13\n", - " Region: \"zone_1\"\tRelError: 4.74090e-02\tAbsError: 3.08418e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.73947e-02\tAbsError: 2.58899e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42439e-05\tAbsError: 4.95189e-03\n", - " Region: \"zone_3\"\tRelError: 8.86683e-01\tAbsError: 3.63176e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40041e-01\tAbsError: 2.66178e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.98904e-01\tAbsError: 9.69977e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.77237e-02\tAbsError: 2.58388e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42439e-05\tAbsError: 4.95189e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.34486e-03\tAbsError: 1.97182e+12\n", - " Region: \"zone_1\"\tRelError: 1.39485e-04\tAbsError: 8.65138e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39236e-04\tAbsError: 6.47581e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.48683e-07\tAbsError: 8.64490e-05\n", - " Region: \"zone_3\"\tRelError: 3.20538e-03\tAbsError: 1.97182e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.27846e-06\tAbsError: 9.81632e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.12485e-06\tAbsError: 9.90188e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.20072e-03\tAbsError: 6.54815e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.48776e-07\tAbsError: 8.64826e-05\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 5.01087e-03\tAbsError: 1.11391e+11\n", - " Region: \"zone_1\"\tRelError: 1.44411e-04\tAbsError: 4.88363e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.44397e-04\tAbsError: 3.97189e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.40263e-08\tAbsError: 4.87966e-06\n", - " Region: \"zone_3\"\tRelError: 4.86646e-03\tAbsError: 1.11391e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24940e-07\tAbsError: 5.55183e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.83217e-07\tAbsError: 5.58731e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.86614e-03\tAbsError: 4.01386e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.40317e-08\tAbsError: 4.88166e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.06954e-02\tAbsError: 2.66197e+12\n", - " Region: \"zone_1\"\tRelError: 9.55650e-04\tAbsError: 2.48145e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 9.48509e-04\tAbsError: 1.57463e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.14062e-06\tAbsError: 2.47987e-03\n", - " Region: \"zone_3\"\tRelError: 6.97397e-02\tAbsError: 2.66197e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.71718e-02\tAbsError: 1.64482e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.35073e-04\tAbsError: 1.01715e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.42575e-03\tAbsError: 1.64454e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.14062e-06\tAbsError: 2.47987e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.84860e-05\tAbsError: 3.70987e+10\n", - " Region: \"zone_1\"\tRelError: 3.74711e-06\tAbsError: 5.87951e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.73032e-06\tAbsError: 3.58594e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67880e-08\tAbsError: 5.84365e-06\n", - " Region: \"zone_3\"\tRelError: 2.47389e-05\tAbsError: 3.70987e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96764e-06\tAbsError: 1.24118e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.94133e-06\tAbsError: 2.46869e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88131e-05\tAbsError: 3.59119e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67950e-08\tAbsError: 5.84625e-06\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.15137e-03\tAbsError: 7.06680e+11\n", - " Region: \"zone_1\"\tRelError: 4.79513e-05\tAbsError: 1.84347e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.78983e-05\tAbsError: 2.30046e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.29631e-08\tAbsError: 1.84117e-05\n", - " Region: \"zone_3\"\tRelError: 1.10342e-03\tAbsError: 7.06680e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.28767e-07\tAbsError: 3.51782e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.37241e-07\tAbsError: 3.54898e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10180e-03\tAbsError: 2.32700e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.29832e-08\tAbsError: 1.84191e-05\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 1.55548e-03\tAbsError: 3.57700e+10\n", - " Region: \"zone_1\"\tRelError: 4.47196e-05\tAbsError: 1.10628e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.47164e-05\tAbsError: 1.25298e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.17634e-09\tAbsError: 1.10503e-06\n", - " Region: \"zone_3\"\tRelError: 1.51077e-03\tAbsError: 3.57700e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.25221e-08\tAbsError: 1.78277e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.16249e-08\tAbsError: 1.79424e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51068e-03\tAbsError: 1.26647e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.17764e-09\tAbsError: 1.10551e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:13\u001b[0m.\u001b[1;36m829\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.4\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Iteration: 3\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 2.84661e-01\tAbsError: 3.60687e+12\n", - " Region: \"zone_1\"\tRelError: 1.51217e-02\tAbsError: 1.24488e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51123e-02\tAbsError: 9.16566e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.44375e-06\tAbsError: 3.28309e-03\n", - " Region: \"zone_3\"\tRelError: 2.69539e-01\tAbsError: 3.60687e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12296e-01\tAbsError: 2.19867e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.19182e-02\tAbsError: 1.40820e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.53153e-02\tAbsError: 9.16570e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.44375e-06\tAbsError: 3.28309e-03\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.26628e-04\tAbsError: 1.21933e+12\n", - " Region: \"zone_1\"\tRelError: 1.56167e-04\tAbsError: 1.24459e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55815e-04\tAbsError: 1.74943e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.52501e-07\tAbsError: 1.22710e-04\n", - " Region: \"zone_3\"\tRelError: 7.70461e-04\tAbsError: 1.21933e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.51322e-04\tAbsError: 3.29136e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.51151e-04\tAbsError: 8.90191e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.67636e-04\tAbsError: 1.74963e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.52654e-07\tAbsError: 1.22766e-04\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 2.60636e-04\tAbsError: 1.46372e+11\n", - " Region: \"zone_1\"\tRelError: 1.08690e-05\tAbsError: 6.03090e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08517e-05\tAbsError: 5.09600e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73339e-08\tAbsError: 6.02581e-06\n", - " Region: \"zone_3\"\tRelError: 2.49767e-04\tAbsError: 1.46372e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68311e-07\tAbsError: 7.29196e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.63262e-07\tAbsError: 7.34528e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49418e-04\tAbsError: 5.15309e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73406e-08\tAbsError: 6.02830e-06\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 3.64915e-04\tAbsError: 7.98660e+09\n", - " Region: \"zone_1\"\tRelError: 9.72642e-06\tAbsError: 3.32542e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 9.72547e-06\tAbsError: 2.90945e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.55034e-10\tAbsError: 3.32251e-07\n", - " Region: \"zone_3\"\tRelError: 3.55189e-04\tAbsError: 7.98660e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.14142e-09\tAbsError: 3.98083e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.31282e-08\tAbsError: 4.00578e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.55167e-04\tAbsError: 2.94028e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.55427e-10\tAbsError: 3.32397e-07\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.15194e-02\tAbsError: 3.32535e+12\n", - " Region: \"zone_1\"\tRelError: 1.39864e-03\tAbsError: 2.06495e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39273e-03\tAbsError: 1.45908e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.90384e-06\tAbsError: 2.05036e-03\n", - " Region: \"zone_3\"\tRelError: 6.01208e-02\tAbsError: 3.32535e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.70408e-02\tAbsError: 2.05874e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.81904e-04\tAbsError: 1.26661e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49214e-03\tAbsError: 1.52370e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.90384e-06\tAbsError: 2.05036e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.87618e+01\tAbsError: 8.25603e+15\n", - " Region: \"zone_1\"\tRelError: 2.71120e+01\tAbsError: 4.09561e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.71120e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.29384e-09\tAbsError: 1.83846e-06\n", - " Region: \"zone_3\"\tRelError: 1.64979e+00\tAbsError: 8.25603e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69658e-01\tAbsError: 4.86497e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69634e-01\tAbsError: 3.39106e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10500e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.29480e-09\tAbsError: 1.83875e-06\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.48517e-04\tAbsError: 1.02383e+11\n", - " Region: \"zone_1\"\tRelError: 3.65622e-05\tAbsError: 7.18044e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.63556e-05\tAbsError: 5.91894e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.06572e-07\tAbsError: 7.17452e-05\n", - " Region: \"zone_3\"\tRelError: 1.11955e-04\tAbsError: 1.02383e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94379e-06\tAbsError: 7.36990e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.86830e-06\tAbsError: 2.86838e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 9.59358e-05\tAbsError: 6.22686e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.06635e-07\tAbsError: 7.17655e-05\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 1.06447e-04\tAbsError: 2.38457e+09\n", - " Region: \"zone_1\"\tRelError: 2.83901e-06\tAbsError: 7.94085e-08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.83878e-06\tAbsError: 8.58058e-11\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28004e-10\tAbsError: 7.93227e-08\n", - " Region: \"zone_3\"\tRelError: 1.03608e-04\tAbsError: 2.38457e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12667e-09\tAbsError: 1.18855e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.60756e-09\tAbsError: 1.19603e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03602e-04\tAbsError: 8.67255e-11\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28098e-10\tAbsError: 7.93566e-08\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 8.12930e-05\tAbsError: 4.69072e+10\n", - " Region: \"zone_1\"\tRelError: 3.38946e-06\tAbsError: 1.38742e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.38548e-06\tAbsError: 1.62196e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.98640e-09\tAbsError: 1.38580e-06\n", - " Region: \"zone_3\"\tRelError: 7.79035e-05\tAbsError: 4.69072e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.45193e-08\tAbsError: 2.33605e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.92263e-08\tAbsError: 2.35467e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.77958e-05\tAbsError: 1.64038e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.98804e-09\tAbsError: 1.38641e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.41565e-04\tAbsError: 9.91706e+11\n", - " Region: \"zone_1\"\tRelError: 9.96184e-05\tAbsError: 1.41222e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.92169e-05\tAbsError: 1.43594e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.01561e-07\tAbsError: 1.39787e-04\n", - " Region: \"zone_3\"\tRelError: 5.41946e-04\tAbsError: 9.91706e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33847e-04\tAbsError: 2.52735e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.19507e-04\tAbsError: 7.38971e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88191e-04\tAbsError: 1.43639e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.01716e-07\tAbsError: 1.39843e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.69855e+00\tAbsError: 3.40458e+14\n", - " Region: \"zone_1\"\tRelError: 2.34470e-01\tAbsError: 7.85796e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.34332e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", - " Region: \"zone_3\"\tRelError: 1.46408e+00\tAbsError: 3.40458e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39247e-01\tAbsError: 2.37038e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.31799e-01\tAbsError: 1.03420e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.29010e-02\tAbsError: 3.07639e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 7.22553e-05\tAbsError: 6.59420e+10\n", - " Region: \"zone_1\"\tRelError: 1.65241e-05\tAbsError: 3.84626e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65132e-05\tAbsError: 5.77443e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08827e-08\tAbsError: 3.78852e-06\n", - " Region: \"zone_3\"\tRelError: 5.57311e-05\tAbsError: 6.59420e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.89013e-06\tAbsError: 2.63777e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.84086e-06\tAbsError: 3.95643e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.39893e-05\tAbsError: 5.78772e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08882e-08\tAbsError: 3.79051e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:17\u001b[0m.\u001b[1;36m160\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:17\u001b[0m.\u001b[1;36m160\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.3111111111111111\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "Iteration: 16\n", - "number of equations 31816\n", - " Device: \"device\"\tRelError: 2.60018e-05\tAbsError: 5.65889e+08\n", - " Region: \"zone_1\"\tRelError: 6.67181e-07\tAbsError: 2.27233e-08\n", - " Equation: \"PotentialEquation\"\tRelError: 6.67116e-07\tAbsError: 2.08086e-11\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.52555e-11\tAbsError: 2.27025e-08\n", - " Region: \"zone_3\"\tRelError: 2.53346e-05\tAbsError: 5.65889e+08\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.46746e-10\tAbsError: 2.82069e+08\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.26145e-10\tAbsError: 2.83820e+08\n", - " Equation: \"PotentialEquation\"\tRelError: 2.53331e-05\tAbsError: 2.10295e-11\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.52825e-11\tAbsError: 2.27122e-08\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.93101e-04\tAbsError: 1.20960e+11\n", - " Region: \"zone_1\"\tRelError: 5.19822e-05\tAbsError: 5.49693e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.18241e-05\tAbsError: 7.13690e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.58064e-07\tAbsError: 5.48979e-05\n", - " Region: \"zone_3\"\tRelError: 1.41119e-04\tAbsError: 1.20960e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98314e-06\tAbsError: 8.30762e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.89229e-06\tAbsError: 3.78839e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21085e-04\tAbsError: 7.51136e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.58064e-07\tAbsError: 5.48979e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.10009e+00\tAbsError: 9.49766e+13\n", - " Region: \"zone_1\"\tRelError: 1.69910e-01\tAbsError: 3.26443e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.69891e-01\tAbsError: 2.58991e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", - " Region: \"zone_3\"\tRelError: 9.30185e-01\tAbsError: 9.49766e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40985e-01\tAbsError: 5.67002e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.12174e-01\tAbsError: 3.82763e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.70066e-02\tAbsError: 2.58994e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 4.53796e+01\tAbsError: 8.73906e+15\n", - " Region: \"zone_1\"\tRelError: 4.37173e+01\tAbsError: 4.20763e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.37173e+01\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06476e-08\tAbsError: 3.70148e-06\n", - " Region: \"zone_3\"\tRelError: 1.66235e+00\tAbsError: 8.73906e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.79081e-01\tAbsError: 5.04538e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.79062e-01\tAbsError: 3.69368e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04209e-01\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06482e-08\tAbsError: 3.70175e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:18\u001b[0m.\u001b[1;36m772\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:18\u001b[0m.\u001b[1;36m813\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.15 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:18\u001b[0m.\u001b[1;36m859\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.80765e-05\tAbsError: 4.88655e+10\n", - " Region: \"zone_1\"\tRelError: 1.14721e-05\tAbsError: 6.01773e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14550e-05\tAbsError: 4.42598e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71595e-08\tAbsError: 5.97347e-06\n", - " Region: \"zone_3\"\tRelError: 3.66044e-05\tAbsError: 4.88655e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37873e-06\tAbsError: 1.78083e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.34139e-06\tAbsError: 3.10572e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78671e-05\tAbsError: 4.43720e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71671e-08\tAbsError: 5.97626e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:19\u001b[0m.\u001b[1;36m525\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:19\u001b[0m.\u001b[1;36m525\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30000000000000004\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.56252e-01\tAbsError: 3.42527e+13\n", - " Region: \"zone_1\"\tRelError: 6.41646e-02\tAbsError: 1.11813e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.41588e-02\tAbsError: 9.16555e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.79958e-06\tAbsError: 2.01571e-03\n", - " Region: \"zone_3\"\tRelError: 2.92088e-01\tAbsError: 3.42527e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07223e-01\tAbsError: 1.60452e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.07953e-02\tAbsError: 1.82076e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.40630e-02\tAbsError: 9.16559e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.80279e-06\tAbsError: 2.01683e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.90027e+03\tAbsError: 5.37118e+18\n", - " Region: \"zone_1\"\tRelError: 4.52123e+02\tAbsError: 8.96717e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.52123e+02\tAbsError: 8.96713e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20641e-09\tAbsError: 4.19390e-07\n", - " Region: \"zone_3\"\tRelError: 1.44814e+03\tAbsError: 5.37118e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05875e+03\tAbsError: 2.27129e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.72871e+01\tAbsError: 3.09989e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 3.02108e+02\tAbsError: 8.96718e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20691e-09\tAbsError: 4.19574e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:19\u001b[0m.\u001b[1;36m874\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:19\u001b[0m.\u001b[1;36m903\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.2 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:19\u001b[0m.\u001b[1;36m941\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.78353e+00\tAbsError: 3.20634e+14\n", - " Region: \"zone_1\"\tRelError: 2.98373e-01\tAbsError: 8.95563e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.98208e-01\tAbsError: 3.20823e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.65352e-04\tAbsError: 5.74740e-02\n", - " Region: \"zone_3\"\tRelError: 1.48516e+00\tAbsError: 3.20634e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.55334e-01\tAbsError: 2.00005e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.49888e-01\tAbsError: 1.20629e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.97682e-02\tAbsError: 3.20828e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.65352e-04\tAbsError: 5.74740e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.00258e+03\tAbsError: 8.62732e+18\n", - " Region: \"zone_1\"\tRelError: 2.86622e+02\tAbsError: 9.11935e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.86622e+02\tAbsError: 9.11935e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.61299e-11\tAbsError: 5.61160e-09\n", - " Region: \"zone_3\"\tRelError: 7.15961e+02\tAbsError: 8.62732e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.81333e+02\tAbsError: 3.52151e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.81580e+02\tAbsError: 5.10581e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 3.53049e+02\tAbsError: 9.11941e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.61365e-11\tAbsError: 5.61401e-09\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.29649e+01\tAbsError: 8.28032e+15\n", - " Region: \"zone_1\"\tRelError: 1.13261e+01\tAbsError: 4.09567e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13261e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.18749e-09\tAbsError: 2.49623e-06\n", - " Region: \"zone_3\"\tRelError: 1.63880e+00\tAbsError: 8.28032e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69633e-01\tAbsError: 4.77284e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.50748e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.95556e-02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.18841e-09\tAbsError: 2.49658e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.59960e-02\tAbsError: 3.73217e+12\n", - " Region: \"zone_1\"\tRelError: 7.31305e-03\tAbsError: 2.21475e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.30674e-03\tAbsError: 2.57182e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", - " Region: \"zone_3\"\tRelError: 5.86829e-02\tAbsError: 3.73217e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.62142e-02\tAbsError: 2.07187e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.09163e-04\tAbsError: 1.66031e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65329e-03\tAbsError: 2.69578e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.46925e+02\tAbsError: 4.60507e+18\n", - " Region: \"zone_1\"\tRelError: 9.01379e+01\tAbsError: 2.15512e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 9.01319e+01\tAbsError: 8.66949e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.98322e-03\tAbsError: 2.06842e+00\n", - " Region: \"zone_3\"\tRelError: 1.56787e+02\tAbsError: 4.60507e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.98090e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.08643e+01\tAbsError: 2.62417e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06917e+02\tAbsError: 8.66950e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.98604e-03\tAbsError: 2.06939e+00\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.03427e+00\tAbsError: 4.51977e+13\n", - " Region: \"zone_1\"\tRelError: 6.36974e-02\tAbsError: 3.23235e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.36789e-02\tAbsError: 2.58918e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.85036e-05\tAbsError: 6.43172e-03\n", - " Region: \"zone_3\"\tRelError: 9.70572e-01\tAbsError: 4.51977e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.66780e-01\tAbsError: 3.22363e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.39601e-01\tAbsError: 1.29614e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.41727e-02\tAbsError: 2.58956e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.85036e-05\tAbsError: 6.43172e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.48404e+03\tAbsError: 7.29201e+18\n", - " Region: \"zone_1\"\tRelError: 6.70547e+02\tAbsError: 2.86307e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 6.70539e+02\tAbsError: 8.83464e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.90934e-03\tAbsError: 2.77472e+00\n", - " Region: \"zone_3\"\tRelError: 8.13489e+02\tAbsError: 7.29201e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.04808e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.08013e+02\tAbsError: 4.24393e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 9.64677e+01\tAbsError: 8.83466e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.92313e-03\tAbsError: 2.77963e+00\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.56865e+00\tAbsError: 2.86625e+14\n", - " Region: \"zone_1\"\tRelError: 1.21045e-01\tAbsError: 8.55195e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20888e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", - " Region: \"zone_3\"\tRelError: 1.44761e+00\tAbsError: 2.86625e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38556e-01\tAbsError: 1.75436e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32332e-01\tAbsError: 1.11189e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.65613e-02\tAbsError: 3.07640e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.14034e-04\tAbsError: 1.03618e+12\n", - " Region: \"zone_1\"\tRelError: 1.43803e-04\tAbsError: 7.79056e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43584e-04\tAbsError: 1.54074e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19396e-07\tAbsError: 7.63649e-05\n", - " Region: \"zone_3\"\tRelError: 6.70231e-04\tAbsError: 1.03618e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.21829e-04\tAbsError: 2.70793e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.05108e-04\tAbsError: 7.65387e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.43074e-04\tAbsError: 1.54210e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19498e-07\tAbsError: 7.64015e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.62556e+02\tAbsError: 6.63850e+17\n", - " Region: \"zone_1\"\tRelError: 1.41773e+01\tAbsError: 3.02150e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41689e+01\tAbsError: 8.34500e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.43572e-03\tAbsError: 2.93805e+00\n", - " Region: \"zone_3\"\tRelError: 1.48378e+02\tAbsError: 6.63850e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.28198e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.21851e+02\tAbsError: 3.35652e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.75188e+01\tAbsError: 8.34501e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.43572e-03\tAbsError: 2.93805e+00\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.28178e-01\tAbsError: 8.08491e+12\n", - " Region: \"zone_1\"\tRelError: 2.27182e-02\tAbsError: 1.36097e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27102e-02\tAbsError: 1.08347e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.98363e-06\tAbsError: 2.77500e-03\n", - " Region: \"zone_3\"\tRelError: 3.05460e-01\tAbsError: 8.08491e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21319e-01\tAbsError: 3.95150e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.12011e-02\tAbsError: 4.13341e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29316e-02\tAbsError: 1.08348e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.98817e-06\tAbsError: 2.77667e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.14776e+02\tAbsError: 1.71822e+18\n", - " Region: \"zone_1\"\tRelError: 1.56981e+01\tAbsError: 2.79470e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.56903e+01\tAbsError: 8.52528e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.78337e-03\tAbsError: 2.70944e+00\n", - " Region: \"zone_3\"\tRelError: 9.90783e+01\tAbsError: 1.71822e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.15408e+01\tAbsError: 8.21769e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 8.96453e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 7.85297e+01\tAbsError: 8.52530e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.79850e-03\tAbsError: 2.71474e+00\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.63437e-01\tAbsError: 3.66677e+13\n", - " Region: \"zone_1\"\tRelError: 5.93231e-02\tAbsError: 3.16919e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.93064e-02\tAbsError: 2.58707e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", - " Region: \"zone_3\"\tRelError: 9.04114e-01\tAbsError: 3.66677e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40101e-01\tAbsError: 2.63702e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.04471e-01\tAbsError: 1.02975e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95256e-02\tAbsError: 2.58992e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.61312e-05\tAbsError: 5.74046e+10\n", - " Region: \"zone_1\"\tRelError: 1.61849e-05\tAbsError: 6.45313e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.59991e-05\tAbsError: 3.79845e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.85726e-07\tAbsError: 6.44934e-05\n", - " Region: \"zone_3\"\tRelError: 5.99464e-05\tAbsError: 5.74046e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.77906e-06\tAbsError: 4.68633e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.20461e-06\tAbsError: 1.05413e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.27769e-05\tAbsError: 3.95532e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.85828e-07\tAbsError: 6.45281e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.92816e+01\tAbsError: 2.74112e+17\n", - " Region: \"zone_1\"\tRelError: 3.85174e+01\tAbsError: 8.02176e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.85153e+01\tAbsError: 7.98884e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.07534e-03\tAbsError: 7.22287e-01\n", - " Region: \"zone_3\"\tRelError: 1.07642e+01\tAbsError: 2.74112e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.66332e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.94250e-01\tAbsError: 1.07780e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 7.67905e-01\tAbsError: 7.98885e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.07726e-03\tAbsError: 7.22960e-01\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:24\u001b[0m.\u001b[1;36m137\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.5\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.10167e-02\tAbsError: 2.38578e+12\n", - " Region: \"zone_1\"\tRelError: 1.03176e-03\tAbsError: 1.89283e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02633e-03\tAbsError: 7.31748e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.42975e-06\tAbsError: 1.88552e-03\n", - " Region: \"zone_3\"\tRelError: 6.99850e-02\tAbsError: 2.38578e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.73342e-02\tAbsError: 1.66489e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.74130e-04\tAbsError: 7.20890e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27127e-03\tAbsError: 7.80004e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.42975e-06\tAbsError: 1.88552e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.23062e+03\tAbsError: 2.01573e+18\n", - " Region: \"zone_1\"\tRelError: 5.83577e+01\tAbsError: 5.52378e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.83563e+01\tAbsError: 8.18705e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.35598e-03\tAbsError: 4.70508e-01\n", - " Region: \"zone_3\"\tRelError: 4.17227e+03\tAbsError: 2.01573e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.67371e+01\tAbsError: 1.02135e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.06151e+03\tAbsError: 9.94376e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40204e+01\tAbsError: 8.18706e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.35728e-03\tAbsError: 4.70981e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.93334e-01\tAbsError: 6.56738e+12\n", - " Region: \"zone_1\"\tRelError: 1.86981e-02\tAbsError: 1.19586e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86900e-02\tAbsError: 9.16562e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03535e-06\tAbsError: 2.79297e-03\n", - " Region: \"zone_3\"\tRelError: 2.74636e-01\tAbsError: 6.56738e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11907e-01\tAbsError: 3.29549e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.38500e-02\tAbsError: 3.27189e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88710e-02\tAbsError: 9.16566e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03753e-06\tAbsError: 2.79381e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.41920e+01\tAbsError: 8.92286e+16\n", - " Region: \"zone_1\"\tRelError: 1.34180e+01\tAbsError: 2.47057e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.34176e+01\tAbsError: 7.59482e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.93256e-04\tAbsError: 1.71108e-01\n", - " Region: \"zone_3\"\tRelError: 8.07740e+01\tAbsError: 8.92286e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.11407e+01\tAbsError: 4.48730e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.88068e+01\tAbsError: 4.43556e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 8.26014e-01\tAbsError: 7.59483e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.93256e-04\tAbsError: 1.71108e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.61567e-04\tAbsError: 9.20598e+11\n", - " Region: \"zone_1\"\tRelError: 1.84125e-04\tAbsError: 1.22381e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.83778e-04\tAbsError: 1.37878e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.47625e-07\tAbsError: 1.21002e-04\n", - " Region: \"zone_3\"\tRelError: 4.77442e-04\tAbsError: 9.20598e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07278e-04\tAbsError: 2.31855e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.91369e-05\tAbsError: 6.88743e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.70679e-04\tAbsError: 1.38492e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.47770e-07\tAbsError: 1.21055e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.60199e+01\tAbsError: 8.22903e+15\n", - " Region: \"zone_1\"\tRelError: 3.43433e+01\tAbsError: 4.09555e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.43433e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.48443e-09\tAbsError: 1.21289e-06\n", - " Region: \"zone_3\"\tRelError: 1.67662e+00\tAbsError: 8.22903e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.78919e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.43984e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37338e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.48691e-09\tAbsError: 1.21378e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.70269e+02\tAbsError: 3.15415e+17\n", - " Region: \"zone_1\"\tRelError: 3.97348e+01\tAbsError: 1.66973e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 3.97302e+01\tAbsError: 7.81451e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.56613e-03\tAbsError: 1.59158e+00\n", - " Region: \"zone_3\"\tRelError: 2.30534e+02\tAbsError: 3.15415e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.16146e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.20185e+02\tAbsError: 1.99269e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.34469e+00\tAbsError: 7.81452e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.56613e-03\tAbsError: 1.59158e+00\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.00158e-02\tAbsError: 2.47729e+12\n", - " Region: \"zone_1\"\tRelError: 6.29744e-04\tAbsError: 1.66755e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.24968e-04\tAbsError: 8.94858e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", - " Region: \"zone_3\"\tRelError: 5.93860e-02\tAbsError: 2.47729e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.68115e-02\tAbsError: 1.70064e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.91678e-04\tAbsError: 7.76647e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27809e-03\tAbsError: 9.43816e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.61868e+04\tAbsError: 2.45821e+16\n", - " Region: \"zone_1\"\tRelError: 5.96186e+01\tAbsError: 2.86664e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.96180e+01\tAbsError: 7.15490e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.18929e-04\tAbsError: 2.15115e-01\n", - " Region: \"zone_3\"\tRelError: 3.61271e+04\tAbsError: 2.45821e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.91378e+01\tAbsError: 1.52565e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.60678e+04\tAbsError: 9.32566e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.90477e-01\tAbsError: 7.15491e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.23341e-04\tAbsError: 2.16649e-01\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.40659e-04\tAbsError: 1.03289e+11\n", - " Region: \"zone_1\"\tRelError: 2.12574e-05\tAbsError: 5.16744e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.11088e-05\tAbsError: 6.24908e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.48618e-07\tAbsError: 5.16119e-05\n", - " Region: \"zone_3\"\tRelError: 1.19402e-04\tAbsError: 1.03289e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.27254e-06\tAbsError: 7.22229e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.20253e-06\tAbsError: 3.10661e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04778e-04\tAbsError: 6.53626e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.48618e-07\tAbsError: 5.16119e-05\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.73485e+00\tAbsError: 1.08973e+15\n", - " Region: \"zone_1\"\tRelError: 2.25350e+00\tAbsError: 6.85700e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25339e+00\tAbsError: 3.07635e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", - " Region: \"zone_3\"\tRelError: 1.48136e+00\tAbsError: 1.08973e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41054e-01\tAbsError: 6.25022e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.24005e-01\tAbsError: 4.64711e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16189e-01\tAbsError: 3.07637e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.23073e+02\tAbsError: 2.54941e+16\n", - " Region: \"zone_1\"\tRelError: 4.95529e+00\tAbsError: 3.09553e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.95461e+00\tAbsError: 7.40071e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.76242e-04\tAbsError: 2.35546e-01\n", - " Region: \"zone_3\"\tRelError: 1.18117e+02\tAbsError: 2.54941e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04760e+01\tAbsError: 1.58057e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.70604e+01\tAbsError: 9.68846e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.80403e-01\tAbsError: 7.40073e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.78155e-04\tAbsError: 2.36212e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.31240e-04\tAbsError: 7.97937e+11\n", - " Region: \"zone_1\"\tRelError: 7.54533e-05\tAbsError: 1.27890e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.50894e-05\tAbsError: 1.20855e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.63943e-07\tAbsError: 1.26681e-04\n", - " Region: \"zone_3\"\tRelError: 3.55787e-04\tAbsError: 7.97937e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.38045e-05\tAbsError: 1.92064e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.48742e-05\tAbsError: 6.05872e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76744e-04\tAbsError: 1.21338e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.64089e-07\tAbsError: 1.26735e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 9.92388e+02\tAbsError: 7.05220e+15\n", - " Region: \"zone_1\"\tRelError: 1.96893e+00\tAbsError: 2.66104e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.96836e+00\tAbsError: 6.65853e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.74410e-04\tAbsError: 1.99519e-01\n", - " Region: \"zone_3\"\tRelError: 9.90419e+02\tAbsError: 7.05220e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46081e+01\tAbsError: 3.87813e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.75648e+02\tAbsError: 3.17407e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.62802e-01\tAbsError: 6.65854e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.74742e-04\tAbsError: 1.99639e-01\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.99773e-05\tAbsError: 4.61446e+10\n", - " Region: \"zone_1\"\tRelError: 5.47446e-06\tAbsError: 4.95784e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 5.46034e-06\tAbsError: 4.32646e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41187e-08\tAbsError: 4.91458e-06\n", - " Region: \"zone_3\"\tRelError: 3.45029e-05\tAbsError: 4.61446e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.64729e-06\tAbsError: 1.69007e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.61509e-06\tAbsError: 2.92439e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.72264e-05\tAbsError: 4.33338e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41253e-08\tAbsError: 4.91694e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:28\u001b[0m.\u001b[1;36m636\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:28\u001b[0m.\u001b[1;36m636\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.41666666666666674\u001b[0m \n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.38677e+00\tAbsError: 6.38966e+14\n", - " Region: \"zone_1\"\tRelError: 4.51470e-01\tAbsError: 3.37904e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.51448e-01\tAbsError: 2.58448e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", - " Region: \"zone_3\"\tRelError: 9.35299e-01\tAbsError: 6.38966e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42607e-01\tAbsError: 3.02038e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.95795e-01\tAbsError: 3.36928e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.68743e-02\tAbsError: 2.57679e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.67495e+02\tAbsError: 1.22523e+16\n", - " Region: \"zone_1\"\tRelError: 7.25799e+00\tAbsError: 1.33943e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 7.25433e+00\tAbsError: 6.93658e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.65903e-03\tAbsError: 1.27006e+00\n", - " Region: \"zone_3\"\tRelError: 6.60237e+02\tAbsError: 1.22523e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.16281e+01\tAbsError: 8.36742e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.28467e+02\tAbsError: 3.88490e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37665e-01\tAbsError: 6.93660e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.66331e-03\tAbsError: 1.27164e+00\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.53826e-04\tAbsError: 1.09912e+11\n", - " Region: \"zone_1\"\tRelError: 2.29821e-05\tAbsError: 4.27473e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.28592e-05\tAbsError: 6.65170e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", - " Region: \"zone_3\"\tRelError: 1.30844e-04\tAbsError: 1.09912e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.01681e-06\tAbsError: 7.52234e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94349e-06\tAbsError: 3.46881e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14760e-04\tAbsError: 6.98367e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.07565e+03\tAbsError: 2.97831e+15\n", - " Region: \"zone_1\"\tRelError: 7.88747e-01\tAbsError: 7.97100e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.88692e-01\tAbsError: 6.09159e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.42014e-05\tAbsError: 1.87941e-02\n", - " Region: \"zone_3\"\tRelError: 2.07486e+03\tAbsError: 2.97831e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.62931e+03\tAbsError: 1.45076e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.45419e+02\tAbsError: 1.52755e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31609e-01\tAbsError: 6.09160e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.42014e-05\tAbsError: 1.87941e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.41554e-01\tAbsError: 2.20715e+14\n", - " Region: \"zone_1\"\tRelError: 2.89595e-02\tAbsError: 1.67352e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.89377e-02\tAbsError: 9.16565e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18085e-05\tAbsError: 7.56954e-03\n", - " Region: \"zone_3\"\tRelError: 3.12594e-01\tAbsError: 2.20715e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94155e-01\tAbsError: 1.01533e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.87246e-02\tAbsError: 1.19182e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.96932e-02\tAbsError: 9.16570e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18152e-05\tAbsError: 7.57200e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.78015e+00\tAbsError: 8.71104e+15\n", - " Region: \"zone_1\"\tRelError: 5.10762e+00\tAbsError: 4.20750e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.10762e+00\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.88726e-09\tAbsError: 2.39171e-06\n", - " Region: \"zone_3\"\tRelError: 1.67253e+00\tAbsError: 8.71104e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.79105e-01\tAbsError: 5.13893e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.79081e-01\tAbsError: 3.57211e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14344e-01\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.88765e-09\tAbsError: 2.39188e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 6.07056e+03\tAbsError: 2.63900e+15\n", - " Region: \"zone_1\"\tRelError: 5.09026e-01\tAbsError: 3.20040e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.08290e-01\tAbsError: 6.41007e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.36815e-04\tAbsError: 2.55940e-01\n", - " Region: \"zone_3\"\tRelError: 6.07005e+03\tAbsError: 2.63900e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.91925e+02\tAbsError: 1.14350e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.27722e+03\tAbsError: 1.49550e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.02237e-01\tAbsError: 6.41009e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.36815e-04\tAbsError: 2.55940e-01\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.84860e-05\tAbsError: 3.70987e+10\n", - " Region: \"zone_1\"\tRelError: 3.74711e-06\tAbsError: 5.87951e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.73032e-06\tAbsError: 3.58594e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67880e-08\tAbsError: 5.84365e-06\n", - " Region: \"zone_3\"\tRelError: 2.47389e-05\tAbsError: 3.70987e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96764e-06\tAbsError: 1.24118e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.94133e-06\tAbsError: 2.46869e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88131e-05\tAbsError: 3.59119e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67950e-08\tAbsError: 5.84625e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:30\u001b[0m.\u001b[1;36m918\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.4\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 4.49636e+02\tAbsError: 4.51750e+14\n", - " Region: \"zone_1\"\tRelError: 1.00276e-01\tAbsError: 1.10034e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00116e-01\tAbsError: 5.43521e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60564e-04\tAbsError: 5.56816e-02\n", - " Region: \"zone_3\"\tRelError: 4.49536e+02\tAbsError: 4.51750e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.26716e+01\tAbsError: 5.47094e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.06762e+02\tAbsError: 3.97041e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02347e-01\tAbsError: 5.43523e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60564e-04\tAbsError: 5.56816e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.19808e-02\tAbsError: 3.06344e+13\n", - " Region: \"zone_1\"\tRelError: 2.04251e-02\tAbsError: 4.10278e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.04136e-02\tAbsError: 1.00349e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", - " Region: \"zone_3\"\tRelError: 6.15557e-02\tAbsError: 3.06344e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38926e-02\tAbsError: 1.71938e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.73234e-03\tAbsError: 1.34406e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.91920e-03\tAbsError: 1.01109e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.61144e+00\tAbsError: 4.09484e+14\n", - " Region: \"zone_1\"\tRelError: 1.09378e-01\tAbsError: 8.14870e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09236e-01\tAbsError: 3.20823e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42156e-04\tAbsError: 4.94047e-02\n", - " Region: \"zone_3\"\tRelError: 1.50206e+00\tAbsError: 4.09484e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.56231e-01\tAbsError: 2.78101e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.48983e-01\tAbsError: 1.31383e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.67091e-02\tAbsError: 3.20827e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42156e-04\tAbsError: 4.94047e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.85182e+03\tAbsError: 1.09273e+15\n", - " Region: \"zone_1\"\tRelError: 2.54667e-01\tAbsError: 9.80021e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.54552e-01\tAbsError: 5.80508e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.14819e-04\tAbsError: 3.99513e-02\n", - " Region: \"zone_3\"\tRelError: 2.85157e+03\tAbsError: 1.09273e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.67991e+03\tAbsError: 5.50437e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.71484e+02\tAbsError: 5.42289e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74947e-01\tAbsError: 5.80510e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.14878e-04\tAbsError: 3.99728e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.37289e+02\tAbsError: 6.00976e+14\n", - " Region: \"zone_1\"\tRelError: 7.57511e-02\tAbsError: 9.88774e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.56005e-02\tAbsError: 4.66459e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.50592e-04\tAbsError: 5.22315e-02\n", - " Region: \"zone_3\"\tRelError: 4.37214e+02\tAbsError: 6.00976e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.45336e+02\tAbsError: 8.47462e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.17993e+01\tAbsError: 5.16230e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.77179e-02\tAbsError: 4.66461e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.50762e-04\tAbsError: 5.22909e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.87618e+01\tAbsError: 8.25603e+15\n", - " Region: \"zone_1\"\tRelError: 2.71120e+01\tAbsError: 4.09561e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.71120e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.29384e-09\tAbsError: 1.83846e-06\n", - " Region: \"zone_3\"\tRelError: 1.64979e+00\tAbsError: 8.25603e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69658e-01\tAbsError: 4.86497e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69634e-01\tAbsError: 3.39106e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10500e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.29480e-09\tAbsError: 1.83875e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.53920e-03\tAbsError: 1.84314e+12\n", - " Region: \"zone_1\"\tRelError: 2.29752e-04\tAbsError: 2.41443e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29064e-04\tAbsError: 2.20702e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", - " Region: \"zone_3\"\tRelError: 1.30944e-03\tAbsError: 1.84314e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11485e-04\tAbsError: 5.81096e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.63190e-04\tAbsError: 1.26205e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 9.34079e-04\tAbsError: 2.25011e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.08321e+00\tAbsError: 1.41299e+14\n", - " Region: \"zone_1\"\tRelError: 8.35316e-02\tAbsError: 3.33734e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.35101e-02\tAbsError: 2.58986e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.15071e-05\tAbsError: 7.47472e-03\n", - " Region: \"zone_3\"\tRelError: 9.99677e-01\tAbsError: 1.41299e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.67960e-01\tAbsError: 8.48978e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.47194e-01\tAbsError: 5.64012e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.45021e-02\tAbsError: 2.58966e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.15071e-05\tAbsError: 7.47472e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.62477e+02\tAbsError: 5.89812e+14\n", - " Region: \"zone_1\"\tRelError: 7.13628e-02\tAbsError: 1.06744e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 7.12020e-02\tAbsError: 5.10011e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60747e-04\tAbsError: 5.57429e-02\n", - " Region: \"zone_3\"\tRelError: 4.62405e+02\tAbsError: 5.89812e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.02675e+02\tAbsError: 1.03408e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.59659e+02\tAbsError: 4.86405e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.13133e-02\tAbsError: 5.10013e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60928e-04\tAbsError: 5.58062e-02\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 4.32712e+03\tAbsError: 5.18829e+14\n", - " Region: \"zone_1\"\tRelError: 5.29324e-02\tAbsError: 1.07188e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.27316e-02\tAbsError: 3.75038e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00872e-04\tAbsError: 6.96844e-02\n", - " Region: \"zone_3\"\tRelError: 4.32706e+03\tAbsError: 5.18829e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.69765e+03\tAbsError: 1.02592e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.29359e+02\tAbsError: 5.08570e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.53905e-02\tAbsError: 3.75040e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.01052e-04\tAbsError: 6.97476e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.69855e+00\tAbsError: 3.40458e+14\n", - " Region: \"zone_1\"\tRelError: 2.34470e-01\tAbsError: 7.85796e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.34332e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", - " Region: \"zone_3\"\tRelError: 1.46408e+00\tAbsError: 3.40458e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39247e-01\tAbsError: 2.37038e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.31799e-01\tAbsError: 1.03420e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.29010e-02\tAbsError: 3.07639e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.51045e-04\tAbsError: 2.02519e+11\n", - " Region: \"zone_1\"\tRelError: 4.54891e-05\tAbsError: 1.12868e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.51644e-05\tAbsError: 1.25671e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.24705e-07\tAbsError: 1.12743e-04\n", - " Region: \"zone_3\"\tRelError: 2.05556e-04\tAbsError: 2.02519e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12163e-05\tAbsError: 1.36505e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10724e-05\tAbsError: 6.60139e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82943e-04\tAbsError: 1.30848e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.24777e-07\tAbsError: 1.12769e-04\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.61508e-01\tAbsError: 5.27550e+13\n", - " Region: \"zone_1\"\tRelError: 2.94145e-02\tAbsError: 1.33202e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.94073e-02\tAbsError: 1.08347e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.15182e-06\tAbsError: 2.48551e-03\n", - " Region: \"zone_3\"\tRelError: 3.32093e-01\tAbsError: 5.27550e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.19610e-01\tAbsError: 2.36056e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.27630e-02\tAbsError: 2.91494e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.97131e-02\tAbsError: 1.08347e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.15458e-06\tAbsError: 2.48651e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.09883e+00\tAbsError: 5.25102e+14\n", - " Region: \"zone_1\"\tRelError: 5.64206e-02\tAbsError: 1.09629e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.62276e-02\tAbsError: 4.26776e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93033e-04\tAbsError: 6.69518e-02\n", - " Region: \"zone_3\"\tRelError: 2.04241e+00\tAbsError: 5.25102e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99889e-01\tAbsError: 4.07884e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.86014e-01\tAbsError: 4.84314e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.63142e-02\tAbsError: 4.26779e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93295e-04\tAbsError: 6.70436e-02\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 2.08201e+00\tAbsError: 5.20386e+14\n", - " Region: \"zone_1\"\tRelError: 4.27554e-02\tAbsError: 1.19970e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.24867e-02\tAbsError: 2.67288e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.68705e-04\tAbsError: 9.32414e-02\n", - " Region: \"zone_3\"\tRelError: 2.03925e+00\tAbsError: 5.20386e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99075e-01\tAbsError: 3.26587e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.95085e-01\tAbsError: 4.87727e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.48223e-02\tAbsError: 2.67290e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.68907e-04\tAbsError: 9.33127e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.10009e+00\tAbsError: 9.49766e+13\n", - " Region: \"zone_1\"\tRelError: 1.69910e-01\tAbsError: 3.26443e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.69891e-01\tAbsError: 2.58991e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", - " Region: \"zone_3\"\tRelError: 9.30185e-01\tAbsError: 9.49766e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40985e-01\tAbsError: 5.67002e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.12174e-01\tAbsError: 3.82763e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.70066e-02\tAbsError: 2.58994e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.09882e-04\tAbsError: 1.05387e+11\n", - " Region: \"zone_1\"\tRelError: 1.91896e-05\tAbsError: 8.11152e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.91665e-05\tAbsError: 7.26801e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.30974e-08\tAbsError: 8.03884e-06\n", - " Region: \"zone_3\"\tRelError: 9.06925e-05\tAbsError: 1.05387e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41210e-06\tAbsError: 4.74044e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.36012e-06\tAbsError: 5.79823e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.78972e-05\tAbsError: 7.44246e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.31071e-08\tAbsError: 8.04242e-06\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 2.05544e+04\tAbsError: 5.11096e+14\n", - " Region: \"zone_1\"\tRelError: 4.16734e-02\tAbsError: 1.22443e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.14150e-02\tAbsError: 3.27969e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.58397e-04\tAbsError: 8.96461e-02\n", - " Region: \"zone_3\"\tRelError: 2.05544e+04\tAbsError: 5.11096e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05540e+04\tAbsError: 2.67910e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.81524e-01\tAbsError: 4.84305e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.14810e-02\tAbsError: 3.27973e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.58690e-04\tAbsError: 8.97486e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.43219e-02\tAbsError: 8.92461e+12\n", - " Region: \"zone_1\"\tRelError: 3.17549e-03\tAbsError: 1.97067e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.16999e-03\tAbsError: 6.21400e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.49648e-06\tAbsError: 1.90853e-03\n", - " Region: \"zone_3\"\tRelError: 7.11465e-02\tAbsError: 8.92461e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.59529e-02\tAbsError: 4.79040e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.16358e-03\tAbsError: 4.13421e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.02452e-03\tAbsError: 6.75565e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.49648e-06\tAbsError: 1.90853e-03\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.41006e+03\tAbsError: 3.66092e+14\n", - " Region: \"zone_1\"\tRelError: 2.46352e-02\tAbsError: 1.36306e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.43003e-02\tAbsError: 2.00640e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.34877e-04\tAbsError: 1.16242e-01\n", - " Region: \"zone_3\"\tRelError: 1.41003e+03\tAbsError: 3.66092e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.40999e+03\tAbsError: 1.95915e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.08043e-02\tAbsError: 3.46501e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.43534e-02\tAbsError: 2.00645e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.35242e-04\tAbsError: 1.16370e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.56252e-01\tAbsError: 3.42527e+13\n", - " Region: \"zone_1\"\tRelError: 6.41646e-02\tAbsError: 1.11813e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.41588e-02\tAbsError: 9.16555e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.79958e-06\tAbsError: 2.01571e-03\n", - " Region: \"zone_3\"\tRelError: 2.92088e-01\tAbsError: 3.42527e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07223e-01\tAbsError: 1.60452e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.07953e-02\tAbsError: 1.82076e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.40630e-02\tAbsError: 9.16559e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.80279e-06\tAbsError: 2.01683e-03\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.07439e+00\tAbsError: 4.50827e+14\n", - " Region: \"zone_1\"\tRelError: 3.23408e-02\tAbsError: 1.43038e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.20031e-02\tAbsError: 2.58285e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.37733e-04\tAbsError: 1.17210e-01\n", - " Region: \"zone_3\"\tRelError: 1.04205e+00\tAbsError: 4.50827e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99839e-01\tAbsError: 2.39300e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03729e-02\tAbsError: 4.26898e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.14983e-02\tAbsError: 2.48472e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.38088e-04\tAbsError: 1.17334e-01\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 7.21635e-06\tAbsError: 6.66070e+09\n", - " Region: \"zone_1\"\tRelError: 1.30608e-06\tAbsError: 5.92265e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28905e-06\tAbsError: 4.03393e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70320e-08\tAbsError: 5.91862e-06\n", - " Region: \"zone_3\"\tRelError: 5.91027e-06\tAbsError: 6.66070e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61854e-07\tAbsError: 4.98332e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.27195e-07\tAbsError: 1.67738e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 5.20418e-06\tAbsError: 4.19235e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70346e-08\tAbsError: 5.91965e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:37\u001b[0m.\u001b[1;36m149\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.6\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 1.04005e+00\tAbsError: 3.08997e+14\n", - " Region: \"zone_1\"\tRelError: 1.65306e-02\tAbsError: 2.11910e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.59217e-02\tAbsError: 4.23946e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.08889e-04\tAbsError: 2.11486e-01\n", - " Region: \"zone_3\"\tRelError: 1.02352e+00\tAbsError: 3.08997e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.97860e-01\tAbsError: 2.83986e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.30303e-02\tAbsError: 2.80599e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.02464e-03\tAbsError: 4.31042e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.09325e-04\tAbsError: 2.11636e-01\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.70071e-04\tAbsError: 8.96392e+11\n", - " Region: \"zone_1\"\tRelError: 6.25886e-05\tAbsError: 1.24071e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.22353e-05\tAbsError: 1.27887e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.53296e-07\tAbsError: 1.22792e-04\n", - " Region: \"zone_3\"\tRelError: 5.07482e-04\tAbsError: 8.96392e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.41319e-04\tAbsError: 2.22546e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.52685e-05\tAbsError: 6.73846e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.80541e-04\tAbsError: 1.28523e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.53296e-07\tAbsError: 1.22792e-04\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 5.68541e-01\tAbsError: 7.02334e+14\n", - " Region: \"zone_1\"\tRelError: 1.54198e-02\tAbsError: 2.11319e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.53930e-02\tAbsError: 1.18259e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.68150e-05\tAbsError: 9.30596e-03\n", - " Region: \"zone_3\"\tRelError: 5.53122e-01\tAbsError: 7.02334e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.05728e-01\tAbsError: 1.92390e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.12305e-03\tAbsError: 6.83095e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.82429e-02\tAbsError: 1.18264e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.73828e-05\tAbsError: 9.50321e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.59960e-02\tAbsError: 3.73217e+12\n", - " Region: \"zone_1\"\tRelError: 7.31305e-03\tAbsError: 2.21475e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.30674e-03\tAbsError: 2.57182e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", - " Region: \"zone_3\"\tRelError: 5.86829e-02\tAbsError: 3.73217e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.62142e-02\tAbsError: 2.07187e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.09163e-04\tAbsError: 1.66031e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65329e-03\tAbsError: 2.69578e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 1.21559e-01\tAbsError: 1.10756e+14\n", - " Region: \"zone_1\"\tRelError: 2.72340e-02\tAbsError: 1.44568e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.72302e-02\tAbsError: 1.38679e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.75405e-06\tAbsError: 1.30700e-03\n", - " Region: \"zone_3\"\tRelError: 9.43255e-02\tAbsError: 1.10756e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46517e-02\tAbsError: 3.54716e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.47228e-02\tAbsError: 7.52840e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.49472e-02\tAbsError: 1.39930e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.75631e-06\tAbsError: 1.30781e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.39312e-04\tAbsError: 1.02416e+11\n", - " Region: \"zone_1\"\tRelError: 2.32943e-05\tAbsError: 5.15110e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.31462e-05\tAbsError: 6.75166e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.48145e-07\tAbsError: 5.14435e-05\n", - " Region: \"zone_3\"\tRelError: 1.16018e-04\tAbsError: 1.02416e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.61621e-06\tAbsError: 7.10207e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.54305e-06\tAbsError: 3.13952e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02711e-04\tAbsError: 7.04991e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.48150e-07\tAbsError: 5.14440e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.57743e+01\tAbsError: 8.48667e+15\n", - " Region: \"zone_1\"\tRelError: 1.40602e+01\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40602e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.57556e-10\tAbsError: 1.24451e-07\n", - " Region: \"zone_3\"\tRelError: 1.71408e+00\tAbsError: 8.48667e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69582e-01\tAbsError: 4.51146e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69441e-01\tAbsError: 3.97521e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.75053e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.57765e-10\tAbsError: 1.24526e-07\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 2.35931e-01\tAbsError: 5.99701e+14\n", - " Region: \"zone_1\"\tRelError: 3.40560e-02\tAbsError: 2.88091e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.32274e-02\tAbsError: 2.88427e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.28612e-04\tAbsError: 2.87802e-01\n", - " Region: \"zone_3\"\tRelError: 2.01875e-01\tAbsError: 5.99701e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.30353e-01\tAbsError: 1.08748e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.09805e-02\tAbsError: 5.88826e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.97122e-02\tAbsError: 2.98244e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.28690e-04\tAbsError: 2.87826e-01\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 7.61787e-03\tAbsError: 9.86476e+11\n", - " Region: \"zone_1\"\tRelError: 2.17871e-03\tAbsError: 7.09517e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.15829e-03\tAbsError: 1.18681e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.04238e-05\tAbsError: 7.09399e-03\n", - " Region: \"zone_3\"\tRelError: 5.43916e-03\tAbsError: 9.86476e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.18505e-04\tAbsError: 6.62872e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.39063e-04\tAbsError: 3.23604e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.46117e-03\tAbsError: 1.21591e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.04238e-05\tAbsError: 7.09399e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.14034e-04\tAbsError: 1.03618e+12\n", - " Region: \"zone_1\"\tRelError: 1.43803e-04\tAbsError: 7.79056e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43584e-04\tAbsError: 1.54074e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19396e-07\tAbsError: 7.63649e-05\n", - " Region: \"zone_3\"\tRelError: 6.70231e-04\tAbsError: 1.03618e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.21829e-04\tAbsError: 2.70793e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.05108e-04\tAbsError: 7.65387e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.43074e-04\tAbsError: 1.54210e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19498e-07\tAbsError: 7.64015e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.04978e-05\tAbsError: 4.60868e+10\n", - " Region: \"zone_1\"\tRelError: 6.27408e-06\tAbsError: 4.91709e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.26006e-06\tAbsError: 3.99684e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.40124e-08\tAbsError: 4.87713e-06\n", - " Region: \"zone_3\"\tRelError: 3.42237e-05\tAbsError: 4.60868e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.17357e-06\tAbsError: 1.73419e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.14611e-06\tAbsError: 2.87449e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78900e-05\tAbsError: 4.01687e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.40185e-08\tAbsError: 4.87937e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 4.55570e+00\tAbsError: 5.16331e+15\n", - " Region: \"zone_1\"\tRelError: 3.06111e+00\tAbsError: 6.97364e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.06100e+00\tAbsError: 3.07634e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12162e-04\tAbsError: 3.89730e-02\n", - " Region: \"zone_3\"\tRelError: 1.49459e+00\tAbsError: 5.16331e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38938e-01\tAbsError: 2.46191e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.11412e-01\tAbsError: 2.70140e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.44124e-01\tAbsError: 3.07634e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12162e-04\tAbsError: 3.89730e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:40\u001b[0m.\u001b[1;36m216\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:40\u001b[0m.\u001b[1;36m216\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5222222222222223\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 1.70543e-01\tAbsError: 1.53613e+14\n", - " Region: \"zone_1\"\tRelError: 3.87769e-02\tAbsError: 4.70916e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.87639e-02\tAbsError: 1.90017e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29805e-05\tAbsError: 4.51914e-03\n", - " Region: \"zone_3\"\tRelError: 1.31767e-01\tAbsError: 1.53613e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.99046e-02\tAbsError: 4.95216e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.98996e-02\tAbsError: 1.04092e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.19493e-02\tAbsError: 1.91751e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29871e-05\tAbsError: 4.52153e-03\n", - "Iteration: 16\n", - " Device: \"device\"\tRelError: 9.70203e-03\tAbsError: 6.93690e+12\n", - " Region: \"zone_1\"\tRelError: 2.55139e-03\tAbsError: 5.07427e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.54994e-03\tAbsError: 5.36335e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.44390e-06\tAbsError: 5.02063e-04\n", - " Region: \"zone_3\"\tRelError: 7.15064e-03\tAbsError: 6.93690e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.86533e-04\tAbsError: 3.22511e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.81873e-04\tAbsError: 3.71179e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.78079e-03\tAbsError: 5.41986e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.44435e-06\tAbsError: 5.02223e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.61312e-05\tAbsError: 5.74046e+10\n", - " Region: \"zone_1\"\tRelError: 1.61849e-05\tAbsError: 6.45313e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.59991e-05\tAbsError: 3.79845e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.85726e-07\tAbsError: 6.44934e-05\n", - " Region: \"zone_3\"\tRelError: 5.99464e-05\tAbsError: 5.74046e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.77906e-06\tAbsError: 4.68633e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.20461e-06\tAbsError: 1.05413e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.27769e-05\tAbsError: 3.95532e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.85828e-07\tAbsError: 6.45281e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:41\u001b[0m.\u001b[1;36m131\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.5\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.13964e+00\tAbsError: 3.47644e+15\n", - " Region: \"zone_1\"\tRelError: 1.85284e-01\tAbsError: 3.50197e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.85258e-01\tAbsError: 2.58979e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.62526e-05\tAbsError: 9.12177e-03\n", - " Region: \"zone_3\"\tRelError: 9.54354e-01\tAbsError: 3.47644e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46208e-01\tAbsError: 1.62778e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.89583e-01\tAbsError: 1.84866e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18536e-01\tAbsError: 2.53855e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.62526e-05\tAbsError: 9.12177e-03\n", - "Iteration: 16\n", - " Device: \"device\"\tRelError: 1.46078e-02\tAbsError: 3.77706e+12\n", - " Region: \"zone_1\"\tRelError: 4.27318e-03\tAbsError: 9.90979e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 4.24466e-03\tAbsError: 3.01565e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.85219e-05\tAbsError: 9.90677e-03\n", - " Region: \"zone_3\"\tRelError: 1.03346e-02\tAbsError: 3.77706e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16204e-04\tAbsError: 2.52925e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.13632e-04\tAbsError: 1.24782e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.97622e-03\tAbsError: 3.10988e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.85219e-05\tAbsError: 9.90677e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.50028e+01\tAbsError: 8.69204e+15\n", - " Region: \"zone_1\"\tRelError: 1.32965e+01\tAbsError: 4.20750e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.32965e+01\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.88775e-09\tAbsError: 2.39373e-06\n", - " Region: \"zone_3\"\tRelError: 1.70633e+00\tAbsError: 8.69204e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.79110e-01\tAbsError: 5.01048e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.79048e-01\tAbsError: 3.68156e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.48173e-01\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.88775e-09\tAbsError: 2.39373e-06\n", - "Iteration: 17\n", - " Device: \"device\"\tRelError: 1.10960e-03\tAbsError: 4.73055e+11\n", - " Region: \"zone_1\"\tRelError: 3.19443e-04\tAbsError: 4.59195e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.18123e-04\tAbsError: 3.53097e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.31966e-06\tAbsError: 4.58842e-04\n", - " Region: \"zone_3\"\tRelError: 7.90154e-04\tAbsError: 4.73055e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.87591e-05\tAbsError: 2.60324e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.85853e-05\tAbsError: 2.12731e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 6.91489e-04\tAbsError: 3.57389e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32008e-06\tAbsError: 4.59002e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.60199e+01\tAbsError: 8.22903e+15\n", - " Region: \"zone_1\"\tRelError: 3.43433e+01\tAbsError: 4.09555e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.43433e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.48443e-09\tAbsError: 1.21289e-06\n", - " Region: \"zone_3\"\tRelError: 1.67662e+00\tAbsError: 8.22903e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.78919e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.43984e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37338e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.48691e-09\tAbsError: 1.21378e-06\n", - "Iteration: 17\n", - " Device: \"device\"\tRelError: 1.38450e-02\tAbsError: 9.74863e+12\n", - " Region: \"zone_1\"\tRelError: 3.65570e-03\tAbsError: 8.68864e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.65323e-03\tAbsError: 7.50160e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.47721e-06\tAbsError: 8.61362e-04\n", - " Region: \"zone_3\"\tRelError: 1.01893e-02\tAbsError: 9.74863e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.63103e-04\tAbsError: 4.56281e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.56704e-04\tAbsError: 5.18582e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.26705e-03\tAbsError: 7.58052e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.47776e-06\tAbsError: 8.61555e-04\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 8.24095e-01\tAbsError: 1.04537e+15\n", - " Region: \"zone_1\"\tRelError: 4.93544e-01\tAbsError: 2.65000e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.93494e-01\tAbsError: 9.16559e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.98913e-05\tAbsError: 1.73344e-02\n", - " Region: \"zone_3\"\tRelError: 3.30551e-01\tAbsError: 1.04537e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84640e-01\tAbsError: 5.55503e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10521e-01\tAbsError: 4.89866e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.53403e-02\tAbsError: 9.16565e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.98913e-05\tAbsError: 1.73344e-02\n", - "Iteration: 18\n", - " Device: \"device\"\tRelError: 7.28348e-04\tAbsError: 4.51092e+11\n", - " Region: \"zone_1\"\tRelError: 1.97998e-04\tAbsError: 6.10956e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.97823e-04\tAbsError: 3.10291e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.74814e-07\tAbsError: 6.07853e-05\n", - " Region: \"zone_3\"\tRelError: 5.30351e-04\tAbsError: 4.51092e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.34024e-05\tAbsError: 2.42281e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.30773e-05\tAbsError: 2.08811e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.43696e-04\tAbsError: 3.13762e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.74855e-07\tAbsError: 6.07996e-05\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.05847e+00\tAbsError: 1.57080e+15\n", - " Region: \"zone_1\"\tRelError: 5.40974e-01\tAbsError: 7.04816e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.40864e-01\tAbsError: 3.20822e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10500e-04\tAbsError: 3.83994e-02\n", - " Region: \"zone_3\"\tRelError: 1.51749e+00\tAbsError: 1.57080e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.58067e-01\tAbsError: 8.77233e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.38564e-01\tAbsError: 6.93563e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20752e-01\tAbsError: 3.20823e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10500e-04\tAbsError: 3.83994e-02\n", - "Iteration: 18\n", - " Device: \"device\"\tRelError: 1.82717e-03\tAbsError: 8.17722e+11\n", - " Region: \"zone_1\"\tRelError: 5.23067e-04\tAbsError: 6.56535e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.21181e-04\tAbsError: 5.84430e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.88656e-06\tAbsError: 6.55950e-04\n", - " Region: \"zone_3\"\tRelError: 1.30410e-03\tAbsError: 8.17722e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.24609e-05\tAbsError: 4.60486e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.20813e-05\tAbsError: 3.57236e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13767e-03\tAbsError: 5.91533e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.88721e-06\tAbsError: 6.56204e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.73485e+00\tAbsError: 1.08973e+15\n", - " Region: \"zone_1\"\tRelError: 2.25350e+00\tAbsError: 6.85700e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25339e+00\tAbsError: 3.07635e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", - " Region: \"zone_3\"\tRelError: 1.48136e+00\tAbsError: 1.08973e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41054e-01\tAbsError: 6.25022e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.24005e-01\tAbsError: 4.64711e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16189e-01\tAbsError: 3.07637e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", - "Iteration: 19\n", - " Device: \"device\"\tRelError: 1.19276e-04\tAbsError: 5.73966e+10\n", - " Region: \"zone_1\"\tRelError: 3.37665e-05\tAbsError: 3.26250e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.36728e-05\tAbsError: 3.96778e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.37128e-08\tAbsError: 3.25853e-05\n", - " Region: \"zone_3\"\tRelError: 8.55093e-05\tAbsError: 5.73966e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.73159e-06\tAbsError: 3.28659e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.70707e-06\tAbsError: 2.45307e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.39769e-05\tAbsError: 4.01507e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.37366e-08\tAbsError: 3.25937e-05\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.23262e-02\tAbsError: 1.95138e+14\n", - " Region: \"zone_1\"\tRelError: 2.57438e-02\tAbsError: 3.23382e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.56511e-02\tAbsError: 1.67807e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.26701e-05\tAbsError: 3.21704e-02\n", - " Region: \"zone_3\"\tRelError: 6.65824e-02\tAbsError: 1.95138e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.49682e-02\tAbsError: 6.65802e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.06072e-03\tAbsError: 1.28558e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.46071e-03\tAbsError: 1.74923e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.26947e-05\tAbsError: 3.21777e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.13949e+00\tAbsError: 9.80441e+14\n", - " Region: \"zone_1\"\tRelError: 1.44938e-01\tAbsError: 3.48926e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.44912e-01\tAbsError: 2.57892e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.62274e-05\tAbsError: 9.10345e-03\n", - " Region: \"zone_3\"\tRelError: 9.94556e-01\tAbsError: 9.80441e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.69397e-01\tAbsError: 4.46559e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.17171e-01\tAbsError: 5.33882e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07961e-01\tAbsError: 2.56709e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.62374e-05\tAbsError: 9.10715e-03\n", - "Iteration: 19\n", - " Device: \"device\"\tRelError: 1.05186e-03\tAbsError: 6.43794e+11\n", - " Region: \"zone_1\"\tRelError: 2.86577e-04\tAbsError: 9.66109e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.86301e-04\tAbsError: 4.41981e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.76574e-07\tAbsError: 9.61689e-05\n", - " Region: \"zone_3\"\tRelError: 7.65285e-04\tAbsError: 6.43794e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.19983e-05\tAbsError: 3.47387e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.15429e-05\tAbsError: 2.96408e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 6.41467e-04\tAbsError: 4.46942e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.76632e-07\tAbsError: 9.61892e-05\n", - "Iteration: 20\n", - " Device: \"device\"\tRelError: 5.47743e-05\tAbsError: 3.14060e+10\n", - " Region: \"zone_1\"\tRelError: 1.50907e-05\tAbsError: 5.90998e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.50738e-05\tAbsError: 2.06583e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69372e-08\tAbsError: 5.88932e-06\n", - " Region: \"zone_3\"\tRelError: 3.96836e-05\tAbsError: 3.14060e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.02542e-06\tAbsError: 1.79710e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.00299e-06\tAbsError: 1.34350e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.36383e-05\tAbsError: 2.08968e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69400e-08\tAbsError: 5.89028e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.38677e+00\tAbsError: 6.38966e+14\n", - " Region: \"zone_1\"\tRelError: 4.51470e-01\tAbsError: 3.37904e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.51448e-01\tAbsError: 2.58448e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", - " Region: \"zone_3\"\tRelError: 9.35299e-01\tAbsError: 6.38966e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42607e-01\tAbsError: 3.02038e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.95795e-01\tAbsError: 3.36928e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.68743e-02\tAbsError: 2.57679e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:45\u001b[0m.\u001b[1;36m645\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 0.205\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.13427e-02\tAbsError: 1.62210e+13\n", - " Region: \"zone_1\"\tRelError: 1.73710e-02\tAbsError: 1.21679e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.73676e-02\tAbsError: 1.36050e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.46587e-06\tAbsError: 1.20318e-03\n", - " Region: \"zone_3\"\tRelError: 1.39717e-02\tAbsError: 1.62210e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19687e-03\tAbsError: 6.47584e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.09668e-03\tAbsError: 9.74512e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16747e-02\tAbsError: 1.39577e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.46587e-06\tAbsError: 1.20318e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.05949e-01\tAbsError: 3.74511e+14\n", - " Region: \"zone_1\"\tRelError: 3.59347e-02\tAbsError: 2.23497e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.59015e-02\tAbsError: 1.08348e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.31757e-05\tAbsError: 1.15148e-02\n", - " Region: \"zone_3\"\tRelError: 3.70014e-01\tAbsError: 3.74511e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16593e-01\tAbsError: 1.81213e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.16499e-01\tAbsError: 1.93297e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.68890e-02\tAbsError: 1.08349e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.31840e-05\tAbsError: 1.15180e-02\n", - "Iteration: 20\n", - " Device: \"device\"\tRelError: 1.85934e-04\tAbsError: 9.08573e+10\n", - " Region: \"zone_1\"\tRelError: 5.25212e-05\tAbsError: 4.72565e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.23854e-05\tAbsError: 6.20121e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.35728e-07\tAbsError: 4.71945e-05\n", - " Region: \"zone_3\"\tRelError: 1.33413e-04\tAbsError: 9.08573e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.02696e-06\tAbsError: 5.24312e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.98446e-06\tAbsError: 3.84261e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15266e-04\tAbsError: 6.27511e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.35761e-07\tAbsError: 4.72061e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.41554e-01\tAbsError: 2.20715e+14\n", - " Region: \"zone_1\"\tRelError: 2.89595e-02\tAbsError: 1.67352e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.89377e-02\tAbsError: 9.16565e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18085e-05\tAbsError: 7.56954e-03\n", - " Region: \"zone_3\"\tRelError: 3.12594e-01\tAbsError: 2.20715e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94155e-01\tAbsError: 1.01533e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.87246e-02\tAbsError: 1.19182e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.96932e-02\tAbsError: 9.16570e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18152e-05\tAbsError: 7.57200e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.53065e-03\tAbsError: 7.24481e+11\n", - " Region: \"zone_1\"\tRelError: 1.49459e-03\tAbsError: 1.07639e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49149e-03\tAbsError: 6.55190e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.09641e-06\tAbsError: 1.07573e-03\n", - " Region: \"zone_3\"\tRelError: 1.03606e-03\tAbsError: 7.24481e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73129e-05\tAbsError: 2.45596e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.81580e-05\tAbsError: 4.78885e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 9.37490e-04\tAbsError: 6.76708e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.09642e-06\tAbsError: 1.07576e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.63329e+00\tAbsError: 8.76591e+15\n", - " Region: \"zone_1\"\tRelError: 1.98501e+00\tAbsError: 4.19653e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.98501e+00\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.95648e-09\tAbsError: 2.41887e-06\n", - " Region: \"zone_3\"\tRelError: 1.64829e+00\tAbsError: 8.76591e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78082e-01\tAbsError: 4.90369e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.78012e-01\tAbsError: 3.86222e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.21916e-02\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.95760e-09\tAbsError: 2.41927e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.20098e-02\tAbsError: 6.36915e+13\n", - " Region: \"zone_1\"\tRelError: 1.64825e-02\tAbsError: 5.73455e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.64665e-02\tAbsError: 1.85410e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59822e-05\tAbsError: 5.54914e-03\n", - " Region: \"zone_3\"\tRelError: 7.55273e-02\tAbsError: 6.36915e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.16855e-02\tAbsError: 3.79951e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.17477e-03\tAbsError: 2.56964e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.65102e-03\tAbsError: 1.86769e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59822e-05\tAbsError: 5.54914e-03\n", - "Iteration: 21\n", - " Device: \"device\"\tRelError: 7.98541e-05\tAbsError: 4.54186e+10\n", - " Region: \"zone_1\"\tRelError: 2.20300e-05\tAbsError: 9.07155e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20040e-05\tAbsError: 2.98550e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.60032e-08\tAbsError: 9.04169e-06\n", - " Region: \"zone_3\"\tRelError: 5.78241e-05\tAbsError: 4.54186e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37976e-06\tAbsError: 2.60573e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.34782e-06\tAbsError: 1.93613e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.90705e-05\tAbsError: 3.02004e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.60072e-08\tAbsError: 9.04309e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:47\u001b[0m.\u001b[1;36m660\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.21\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.19808e-02\tAbsError: 3.06344e+13\n", - " Region: \"zone_1\"\tRelError: 2.04251e-02\tAbsError: 4.10278e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.04136e-02\tAbsError: 1.00349e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", - " Region: \"zone_3\"\tRelError: 6.15557e-02\tAbsError: 3.06344e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38926e-02\tAbsError: 1.71938e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.73234e-03\tAbsError: 1.34406e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.91920e-03\tAbsError: 1.01109e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.69038e-03\tAbsError: 1.04370e+12\n", - " Region: \"zone_1\"\tRelError: 1.58975e-03\tAbsError: 1.04879e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.58945e-03\tAbsError: 5.38488e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.00336e-07\tAbsError: 1.04341e-04\n", - " Region: \"zone_3\"\tRelError: 1.10063e-03\tAbsError: 1.04370e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.23814e-05\tAbsError: 5.26651e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.22994e-05\tAbsError: 5.17045e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 9.95649e-04\tAbsError: 5.63224e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.00360e-07\tAbsError: 1.04351e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.53740e+00\tAbsError: 3.20837e+14\n", - " Region: \"zone_1\"\tRelError: 7.05045e-02\tAbsError: 9.40579e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.03259e-02\tAbsError: 3.19529e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.78646e-04\tAbsError: 6.21050e-02\n", - " Region: \"zone_3\"\tRelError: 1.46689e+00\tAbsError: 3.20837e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53121e-01\tAbsError: 1.65481e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.48279e-01\tAbsError: 1.55355e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.53121e-02\tAbsError: 3.19533e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.78646e-04\tAbsError: 6.21050e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.29067e-03\tAbsError: 2.61140e+12\n", - " Region: \"zone_1\"\tRelError: 3.53522e-04\tAbsError: 4.23373e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52311e-04\tAbsError: 2.81142e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.21022e-06\tAbsError: 4.20562e-04\n", - " Region: \"zone_3\"\tRelError: 1.93715e-03\tAbsError: 2.61140e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.11236e-04\tAbsError: 8.82953e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.20779e-04\tAbsError: 1.72845e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40392e-03\tAbsError: 2.86772e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.21055e-06\tAbsError: 4.20672e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.56709e+00\tAbsError: 9.18334e+15\n", - " Region: \"zone_1\"\tRelError: 1.89994e+00\tAbsError: 4.29373e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.89994e+00\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.01691e-08\tAbsError: 3.53594e-06\n", - " Region: \"zone_3\"\tRelError: 1.66716e+00\tAbsError: 9.18334e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86011e-01\tAbsError: 5.13720e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.85942e-01\tAbsError: 4.04614e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.52021e-02\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.01707e-08\tAbsError: 3.53650e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.53920e-03\tAbsError: 1.84314e+12\n", - " Region: \"zone_1\"\tRelError: 2.29752e-04\tAbsError: 2.41443e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29064e-04\tAbsError: 2.20702e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", - " Region: \"zone_3\"\tRelError: 1.30944e-03\tAbsError: 1.84314e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11485e-04\tAbsError: 5.81096e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.63190e-04\tAbsError: 1.26205e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 9.34079e-04\tAbsError: 2.25011e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.67954e-04\tAbsError: 1.01821e+11\n", - " Region: \"zone_1\"\tRelError: 2.21136e-04\tAbsError: 6.97280e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20936e-04\tAbsError: 5.57180e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00534e-07\tAbsError: 6.96723e-05\n", - " Region: \"zone_3\"\tRelError: 1.46817e-04\tAbsError: 1.01821e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.39462e-06\tAbsError: 5.27392e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.41727e-06\tAbsError: 4.90816e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35805e-04\tAbsError: 5.79583e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00607e-07\tAbsError: 6.96980e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.95713e-01\tAbsError: 3.95001e+13\n", - " Region: \"zone_1\"\tRelError: 5.02856e-02\tAbsError: 3.12537e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.02701e-02\tAbsError: 2.58959e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54113e-05\tAbsError: 5.35772e-03\n", - " Region: \"zone_3\"\tRelError: 9.45427e-01\tAbsError: 3.95001e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.63975e-01\tAbsError: 2.89237e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.31137e-01\tAbsError: 1.05765e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.02993e-02\tAbsError: 2.58992e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54113e-05\tAbsError: 5.35772e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.21506e-04\tAbsError: 3.42031e+11\n", - " Region: \"zone_1\"\tRelError: 7.74355e-05\tAbsError: 1.55466e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.69883e-05\tAbsError: 2.05924e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.47168e-07\tAbsError: 1.55260e-04\n", - " Region: \"zone_3\"\tRelError: 3.44070e-04\tAbsError: 3.42031e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94758e-05\tAbsError: 2.19652e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.92382e-05\tAbsError: 1.22379e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.04909e-04\tAbsError: 2.14465e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.47202e-07\tAbsError: 1.55274e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.57053e+00\tAbsError: 3.51169e+14\n", - " Region: \"zone_1\"\tRelError: 7.27979e-02\tAbsError: 9.81640e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.26108e-02\tAbsError: 3.31004e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.87158e-04\tAbsError: 6.50636e-02\n", - " Region: \"zone_3\"\tRelError: 1.49773e+00\tAbsError: 3.51169e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67194e-01\tAbsError: 1.81651e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.62787e-01\tAbsError: 1.69517e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.75645e-02\tAbsError: 3.31009e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.87158e-04\tAbsError: 6.50636e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.51045e-04\tAbsError: 2.02519e+11\n", - " Region: \"zone_1\"\tRelError: 4.54891e-05\tAbsError: 1.12868e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.51644e-05\tAbsError: 1.25671e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.24705e-07\tAbsError: 1.12743e-04\n", - " Region: \"zone_3\"\tRelError: 2.05556e-04\tAbsError: 2.02519e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12163e-05\tAbsError: 1.36505e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10724e-05\tAbsError: 6.60139e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82943e-04\tAbsError: 1.30848e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.24777e-07\tAbsError: 1.12769e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.02562e-04\tAbsError: 6.84436e+10\n", - " Region: \"zone_1\"\tRelError: 1.21040e-04\tAbsError: 1.06970e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21010e-04\tAbsError: 3.27450e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.06942e-08\tAbsError: 1.06642e-05\n", - " Region: \"zone_3\"\tRelError: 8.15214e-05\tAbsError: 6.84436e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.33271e-06\tAbsError: 3.86456e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.32148e-06\tAbsError: 2.97979e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.48365e-05\tAbsError: 3.43670e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.07019e-08\tAbsError: 1.06669e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.11842e-01\tAbsError: 3.16076e+12\n", - " Region: \"zone_1\"\tRelError: 1.77920e-02\tAbsError: 1.38281e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77828e-02\tAbsError: 1.06618e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.10787e-06\tAbsError: 3.16630e-03\n", - " Region: \"zone_3\"\tRelError: 2.94050e-01\tAbsError: 3.16076e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.19046e-01\tAbsError: 1.95134e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.69828e-02\tAbsError: 1.20942e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.80124e-02\tAbsError: 1.06619e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.11145e-06\tAbsError: 3.16760e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.54214e-04\tAbsError: 1.46404e+11\n", - " Region: \"zone_1\"\tRelError: 2.76236e-05\tAbsError: 1.48453e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.75812e-05\tAbsError: 9.43789e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.23843e-08\tAbsError: 1.47509e-05\n", - " Region: \"zone_3\"\tRelError: 1.26590e-04\tAbsError: 1.46404e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.54821e-06\tAbsError: 6.79464e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.47893e-06\tAbsError: 7.84580e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09521e-04\tAbsError: 9.70963e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.24007e-08\tAbsError: 1.47569e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.05165e+00\tAbsError: 4.28494e+13\n", - " Region: \"zone_1\"\tRelError: 5.19381e-02\tAbsError: 3.16775e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.19214e-02\tAbsError: 2.58745e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.66923e-05\tAbsError: 5.80302e-03\n", - " Region: \"zone_3\"\tRelError: 9.99707e-01\tAbsError: 4.28494e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.86538e-01\tAbsError: 3.13497e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.61055e-01\tAbsError: 1.14997e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.20976e-02\tAbsError: 2.58960e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.66923e-05\tAbsError: 5.80302e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.09882e-04\tAbsError: 1.05387e+11\n", - " Region: \"zone_1\"\tRelError: 1.91896e-05\tAbsError: 8.11152e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.91665e-05\tAbsError: 7.26801e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.30974e-08\tAbsError: 8.03884e-06\n", - " Region: \"zone_3\"\tRelError: 9.06925e-05\tAbsError: 1.05387e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41210e-06\tAbsError: 4.74044e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.36012e-06\tAbsError: 5.79823e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.78972e-05\tAbsError: 7.44246e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.31071e-08\tAbsError: 8.04242e-06\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.67619e-05\tAbsError: 1.02422e+10\n", - " Region: \"zone_1\"\tRelError: 2.21445e-05\tAbsError: 4.91320e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.21303e-05\tAbsError: 5.33976e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41260e-08\tAbsError: 4.90786e-06\n", - " Region: \"zone_3\"\tRelError: 1.46175e-05\tAbsError: 1.02422e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.20200e-07\tAbsError: 5.93794e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.20801e-07\tAbsError: 4.30423e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35623e-05\tAbsError: 5.58038e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41284e-08\tAbsError: 4.90869e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:52\u001b[0m.\u001b[1;36m686\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.7000000000000001\u001b[0m\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.96216e-02\tAbsError: 2.61141e+12\n", - " Region: \"zone_1\"\tRelError: 9.45920e-04\tAbsError: 2.53689e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 9.38620e-04\tAbsError: 1.55354e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.30033e-06\tAbsError: 2.53534e-03\n", - " Region: \"zone_3\"\tRelError: 6.86757e-02\tAbsError: 2.61141e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.61725e-02\tAbsError: 1.62602e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.25124e-04\tAbsError: 9.85396e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.37081e-03\tAbsError: 1.62129e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.30033e-06\tAbsError: 2.53534e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.51422e-05\tAbsError: 1.31444e+10\n", - " Region: \"zone_1\"\tRelError: 2.80105e-06\tAbsError: 8.02449e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.77798e-06\tAbsError: 7.54204e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.30711e-08\tAbsError: 8.01695e-06\n", - " Region: \"zone_3\"\tRelError: 1.23412e-05\tAbsError: 1.31444e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.72219e-07\tAbsError: 9.04197e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.59854e-07\tAbsError: 4.10243e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09860e-05\tAbsError: 7.84254e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.30755e-08\tAbsError: 8.01862e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:53\u001b[0m.\u001b[1;36m150\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:53\u001b[0m.\u001b[1;36m150\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6277777777777779\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.59925e-01\tAbsError: 3.29836e+12\n", - " Region: \"zone_1\"\tRelError: 2.06968e-02\tAbsError: 1.57227e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06868e-02\tAbsError: 1.22658e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.94394e-06\tAbsError: 3.45693e-03\n", - " Region: \"zone_3\"\tRelError: 3.39228e-01\tAbsError: 3.29836e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.44822e-01\tAbsError: 2.09132e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.34529e-02\tAbsError: 1.20705e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.09440e-02\tAbsError: 1.22658e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.94500e-06\tAbsError: 3.45736e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 7.21635e-06\tAbsError: 6.66072e+09\n", - " Region: \"zone_1\"\tRelError: 1.30608e-06\tAbsError: 5.92265e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28905e-06\tAbsError: 4.03393e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70320e-08\tAbsError: 5.91862e-06\n", - " Region: \"zone_3\"\tRelError: 5.91027e-06\tAbsError: 6.66072e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61854e-07\tAbsError: 4.98334e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.27195e-07\tAbsError: 1.67738e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 5.20418e-06\tAbsError: 4.19235e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70346e-08\tAbsError: 5.91965e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:53\u001b[0m.\u001b[1;36m909\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.6\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.79272e-04\tAbsError: 1.24789e+12\n", - " Region: \"zone_1\"\tRelError: 1.69378e-04\tAbsError: 1.19504e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.69039e-04\tAbsError: 1.78974e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.38150e-07\tAbsError: 1.17714e-04\n", - " Region: \"zone_3\"\tRelError: 8.09894e-04\tAbsError: 1.24789e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.56091e-04\tAbsError: 3.40106e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.55755e-04\tAbsError: 9.07785e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.97709e-04\tAbsError: 1.78994e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.38303e-07\tAbsError: 1.17770e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.11982e+00\tAbsError: 2.71568e+16\n", - " Region: \"zone_1\"\tRelError: 3.35178e+00\tAbsError: 4.09552e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.35178e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.75560e-09\tAbsError: 9.57391e-07\n", - " Region: \"zone_3\"\tRelError: 1.76804e+00\tAbsError: 2.71568e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68907e-01\tAbsError: 1.36090e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.68433e-01\tAbsError: 1.35478e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.30705e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.75592e-09\tAbsError: 9.57503e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.47130e+01\tAbsError: 9.34749e+15\n", - " Region: \"zone_1\"\tRelError: 1.29635e+01\tAbsError: 4.20730e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29635e+01\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19790e-09\tAbsError: 4.16910e-07\n", - " Region: \"zone_3\"\tRelError: 1.74948e+00\tAbsError: 9.34749e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78965e-01\tAbsError: 4.96596e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.78797e-01\tAbsError: 4.38153e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.91722e-01\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19845e-09\tAbsError: 4.17112e-07\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.15556e-02\tAbsError: 2.83277e+12\n", - " Region: \"zone_1\"\tRelError: 9.61766e-04\tAbsError: 2.53657e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 9.54467e-04\tAbsError: 1.76904e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.29883e-06\tAbsError: 2.53480e-03\n", - " Region: \"zone_3\"\tRelError: 8.05939e-02\tAbsError: 2.83277e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77894e-02\tAbsError: 1.76360e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.00698e-04\tAbsError: 1.06917e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.59647e-03\tAbsError: 1.83630e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.29883e-06\tAbsError: 2.53480e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.57743e+01\tAbsError: 8.48667e+15\n", - " Region: \"zone_1\"\tRelError: 1.40602e+01\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40602e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.57556e-10\tAbsError: 1.24451e-07\n", - " Region: \"zone_3\"\tRelError: 1.71408e+00\tAbsError: 8.48667e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69582e-01\tAbsError: 4.51146e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69441e-01\tAbsError: 3.97521e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.75053e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.57765e-10\tAbsError: 1.24526e-07\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.39118e-04\tAbsError: 9.70617e+10\n", - " Region: \"zone_1\"\tRelError: 3.44334e-05\tAbsError: 7.42120e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.42198e-05\tAbsError: 5.61163e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.13513e-07\tAbsError: 7.41559e-05\n", - " Region: \"zone_3\"\tRelError: 1.04685e-04\tAbsError: 9.70617e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.45419e-06\tAbsError: 7.08787e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.38136e-06\tAbsError: 2.61830e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 8.96357e-05\tAbsError: 5.90320e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.13597e-07\tAbsError: 7.41831e-05\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.73275e+00\tAbsError: 2.68838e+16\n", - " Region: \"zone_1\"\tRelError: 1.92080e-01\tAbsError: 1.46306e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.91747e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.32681e-04\tAbsError: 1.15542e-01\n", - " Region: \"zone_3\"\tRelError: 1.54067e+00\tAbsError: 2.68838e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.36324e-01\tAbsError: 1.35736e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.01335e-01\tAbsError: 1.33102e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.02681e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.32681e-04\tAbsError: 1.15542e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.79022e+00\tAbsError: 8.31075e+15\n", - " Region: \"zone_1\"\tRelError: 2.52292e-01\tAbsError: 8.08004e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.52152e-01\tAbsError: 3.20821e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.40217e-04\tAbsError: 4.87183e-02\n", - " Region: \"zone_3\"\tRelError: 1.53793e+00\tAbsError: 8.31075e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.54947e-01\tAbsError: 4.05111e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.26465e-01\tAbsError: 4.25964e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.56377e-01\tAbsError: 3.20821e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.40217e-04\tAbsError: 4.87183e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.98909e-04\tAbsError: 1.24657e+12\n", - " Region: \"zone_1\"\tRelError: 1.38349e-04\tAbsError: 1.35913e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37964e-04\tAbsError: 1.78869e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.85293e-07\tAbsError: 1.34125e-04\n", - " Region: \"zone_3\"\tRelError: 7.60560e-04\tAbsError: 1.24657e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53737e-04\tAbsError: 3.31798e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.52329e-04\tAbsError: 9.14768e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.54109e-04\tAbsError: 1.78889e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.85453e-07\tAbsError: 1.34183e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 4.55570e+00\tAbsError: 5.16331e+15\n", - " Region: \"zone_1\"\tRelError: 3.06111e+00\tAbsError: 6.97364e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.06100e+00\tAbsError: 3.07634e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12162e-04\tAbsError: 3.89730e-02\n", - " Region: \"zone_3\"\tRelError: 1.49459e+00\tAbsError: 5.16331e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38938e-01\tAbsError: 2.46191e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.11412e-01\tAbsError: 2.70140e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.44124e-01\tAbsError: 3.07634e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12162e-04\tAbsError: 3.89730e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 7.65717e-05\tAbsError: 6.84700e+10\n", - " Region: \"zone_1\"\tRelError: 1.77384e-05\tAbsError: 3.36342e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77290e-05\tAbsError: 5.96230e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.49029e-09\tAbsError: 3.30380e-06\n", - " Region: \"zone_3\"\tRelError: 5.88333e-05\tAbsError: 6.84700e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.12243e-06\tAbsError: 2.77477e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.07134e-06\tAbsError: 4.07222e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.66300e-05\tAbsError: 5.97642e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.49511e-09\tAbsError: 3.30555e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:57\u001b[0m.\u001b[1;36m242\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:57\u001b[0m.\u001b[1;36m242\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.30999999999999994\u001b[0m \n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.12307e+00\tAbsError: 1.60442e+16\n", - " Region: \"zone_1\"\tRelError: 1.49907e-01\tAbsError: 9.31426e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49713e-01\tAbsError: 2.58569e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93773e-04\tAbsError: 6.72856e-02\n", - " Region: \"zone_3\"\tRelError: 9.73164e-01\tAbsError: 1.60442e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39500e-01\tAbsError: 8.04160e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.83757e-01\tAbsError: 8.00261e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49713e-01\tAbsError: 2.43087e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93773e-04\tAbsError: 6.72856e-02\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.15814e+00\tAbsError: 5.80361e+15\n", - " Region: \"zone_1\"\tRelError: 1.26863e-01\tAbsError: 3.43366e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.26839e-01\tAbsError: 2.58230e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.45030e-05\tAbsError: 8.51362e-03\n", - " Region: \"zone_3\"\tRelError: 1.03128e+00\tAbsError: 5.80361e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.72077e-01\tAbsError: 2.80851e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.21781e-01\tAbsError: 2.99509e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37397e-01\tAbsError: 2.54077e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.45030e-05\tAbsError: 8.51362e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.63415e-04\tAbsError: 1.13123e+11\n", - " Region: \"zone_1\"\tRelError: 3.79718e-05\tAbsError: 7.25317e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.77632e-05\tAbsError: 6.55707e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.08649e-07\tAbsError: 7.24662e-05\n", - " Region: \"zone_3\"\tRelError: 1.25443e-04\tAbsError: 1.13123e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.83965e-06\tAbsError: 8.03487e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.75746e-06\tAbsError: 3.27748e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07637e-04\tAbsError: 6.89964e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.08694e-07\tAbsError: 7.24802e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.13964e+00\tAbsError: 3.47644e+15\n", - " Region: \"zone_1\"\tRelError: 1.85284e-01\tAbsError: 3.50197e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.85258e-01\tAbsError: 2.58979e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.62526e-05\tAbsError: 9.12177e-03\n", - " Region: \"zone_3\"\tRelError: 9.54354e-01\tAbsError: 3.47644e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46208e-01\tAbsError: 1.62778e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.89583e-01\tAbsError: 1.84866e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18536e-01\tAbsError: 2.53855e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.62526e-05\tAbsError: 9.12177e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.25010e-01\tAbsError: 4.83168e+15\n", - " Region: \"zone_1\"\tRelError: 9.35029e-02\tAbsError: 6.02167e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.33558e-02\tAbsError: 9.16529e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47066e-04\tAbsError: 5.10514e-02\n", - " Region: \"zone_3\"\tRelError: 3.31507e-01\tAbsError: 4.83168e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74852e-01\tAbsError: 2.44485e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.96161e-02\tAbsError: 2.38683e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.68922e-02\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47066e-04\tAbsError: 5.10514e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.30180e+01\tAbsError: 8.69319e+15\n", - " Region: \"zone_1\"\tRelError: 8.13582e+01\tAbsError: 4.19668e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.13582e+01\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12128e-08\tAbsError: 3.89796e-06\n", - " Region: \"zone_3\"\tRelError: 1.65986e+00\tAbsError: 8.69319e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78172e-01\tAbsError: 5.01810e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.78152e-01\tAbsError: 3.67509e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03541e-01\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12137e-08\tAbsError: 3.89832e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.77709e-01\tAbsError: 1.99046e+15\n", - " Region: \"zone_1\"\tRelError: 1.89574e-01\tAbsError: 5.36432e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.89451e-01\tAbsError: 1.08352e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.23374e-04\tAbsError: 4.28080e-02\n", - " Region: \"zone_3\"\tRelError: 3.88135e-01\tAbsError: 1.99046e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.09762e-01\tAbsError: 1.04397e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.33212e-01\tAbsError: 9.46486e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.50372e-02\tAbsError: 1.08353e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.23409e-04\tAbsError: 4.28198e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 6.96510e-05\tAbsError: 6.62345e+10\n", - " Region: \"zone_1\"\tRelError: 1.48805e-05\tAbsError: 4.57579e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.48675e-05\tAbsError: 5.85229e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29763e-08\tAbsError: 4.51726e-06\n", - " Region: \"zone_3\"\tRelError: 5.47705e-05\tAbsError: 6.62345e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.88319e-06\tAbsError: 2.60340e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.83380e-06\tAbsError: 4.02005e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.30405e-05\tAbsError: 5.86366e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29828e-08\tAbsError: 4.51964e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:59\u001b[0m.\u001b[1;36m373\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:38:59\u001b[0m.\u001b[1;36m373\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.31999999999999995\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 8.24095e-01\tAbsError: 1.04537e+15\n", - " Region: \"zone_1\"\tRelError: 4.93544e-01\tAbsError: 2.65000e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.93494e-01\tAbsError: 9.16559e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.98913e-05\tAbsError: 1.73344e-02\n", - " Region: \"zone_3\"\tRelError: 3.30551e-01\tAbsError: 1.04537e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84640e-01\tAbsError: 5.55503e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10521e-01\tAbsError: 4.89866e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.53403e-02\tAbsError: 9.16565e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.98913e-05\tAbsError: 1.73344e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.30868e-01\tAbsError: 1.08442e+15\n", - " Region: \"zone_1\"\tRelError: 2.27753e-02\tAbsError: 2.15920e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.21537e-02\tAbsError: 2.84606e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.21607e-04\tAbsError: 2.15635e-01\n", - " Region: \"zone_3\"\tRelError: 1.08092e-01\tAbsError: 1.08442e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.76472e-02\tAbsError: 4.26455e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.43864e-02\tAbsError: 6.57964e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.54371e-02\tAbsError: 2.84606e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.21607e-04\tAbsError: 2.15635e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.92283e+00\tAbsError: 3.17185e+14\n", - " Region: \"zone_1\"\tRelError: 4.41326e-01\tAbsError: 8.91561e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.41161e-01\tAbsError: 3.19528e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.64573e-04\tAbsError: 5.72033e-02\n", - " Region: \"zone_3\"\tRelError: 1.48150e+00\tAbsError: 3.17185e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53774e-01\tAbsError: 1.97498e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.48120e-01\tAbsError: 1.19687e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.94425e-02\tAbsError: 3.19533e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.64573e-04\tAbsError: 5.72033e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.01956e-01\tAbsError: 3.30280e+14\n", - " Region: \"zone_1\"\tRelError: 1.23511e-02\tAbsError: 4.29826e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.22278e-02\tAbsError: 2.11230e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.23221e-04\tAbsError: 4.27714e-02\n", - " Region: \"zone_3\"\tRelError: 8.96046e-02\tAbsError: 3.30280e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38647e-02\tAbsError: 1.85641e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.06846e-02\tAbsError: 1.44639e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49319e-02\tAbsError: 2.22573e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.23378e-04\tAbsError: 4.28245e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.23262e-02\tAbsError: 1.95138e+14\n", - " Region: \"zone_1\"\tRelError: 2.57438e-02\tAbsError: 3.23382e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.56511e-02\tAbsError: 1.67807e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.26701e-05\tAbsError: 3.21704e-02\n", - " Region: \"zone_3\"\tRelError: 6.65824e-02\tAbsError: 1.95138e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.49682e-02\tAbsError: 6.65802e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.06072e-03\tAbsError: 1.28558e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.46071e-03\tAbsError: 1.74923e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.26947e-05\tAbsError: 3.21777e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.13208e+01\tAbsError: 9.10596e+15\n", - " Region: \"zone_1\"\tRelError: 9.64710e+00\tAbsError: 4.29375e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.64710e+00\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.05103e-08\tAbsError: 3.65373e-06\n", - " Region: \"zone_3\"\tRelError: 1.67375e+00\tAbsError: 9.10596e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86100e-01\tAbsError: 5.26385e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.86081e-01\tAbsError: 3.84211e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01565e-01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.05107e-08\tAbsError: 3.65390e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.55617e-01\tAbsError: 2.35794e+14\n", - " Region: \"zone_1\"\tRelError: 4.99367e-02\tAbsError: 1.38607e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.98970e-02\tAbsError: 6.98741e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.97528e-05\tAbsError: 1.37908e-02\n", - " Region: \"zone_3\"\tRelError: 1.05680e-01\tAbsError: 2.35794e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.27300e-03\tAbsError: 1.18548e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.21148e-03\tAbsError: 1.17246e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.51557e-02\tAbsError: 7.06637e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.97528e-05\tAbsError: 1.37908e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.02753e+00\tAbsError: 4.41602e+13\n", - " Region: \"zone_1\"\tRelError: 6.32910e-02\tAbsError: 3.22538e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.32727e-02\tAbsError: 2.58901e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83078e-05\tAbsError: 6.36365e-03\n", - " Region: \"zone_3\"\tRelError: 9.64244e-01\tAbsError: 4.41602e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.64145e-01\tAbsError: 3.14880e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.36393e-01\tAbsError: 1.26721e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.36877e-02\tAbsError: 2.58901e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83078e-05\tAbsError: 6.36365e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.32647e-02\tAbsError: 2.33464e+13\n", - " Region: \"zone_1\"\tRelError: 5.25069e-03\tAbsError: 7.72764e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.24852e-03\tAbsError: 1.62921e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17940e-06\tAbsError: 7.56472e-04\n", - " Region: \"zone_3\"\tRelError: 1.80140e-02\tAbsError: 2.33464e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47882e-03\tAbsError: 1.05981e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.34887e-03\tAbsError: 1.27483e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51841e-02\tAbsError: 1.70811e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18436e-06\tAbsError: 7.58194e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.13427e-02\tAbsError: 1.62210e+13\n", - " Region: \"zone_1\"\tRelError: 1.73710e-02\tAbsError: 1.21679e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.73676e-02\tAbsError: 1.36050e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.46587e-06\tAbsError: 1.20318e-03\n", - " Region: \"zone_3\"\tRelError: 1.39717e-02\tAbsError: 1.62210e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19687e-03\tAbsError: 6.47584e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.09668e-03\tAbsError: 9.74512e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16747e-02\tAbsError: 1.39577e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.46587e-06\tAbsError: 1.20318e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.60555e+00\tAbsError: 3.49070e+14\n", - " Region: \"zone_1\"\tRelError: 9.22733e-02\tAbsError: 9.26848e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.21018e-02\tAbsError: 3.31004e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71426e-04\tAbsError: 5.95845e-02\n", - " Region: \"zone_3\"\tRelError: 1.51327e+00\tAbsError: 3.49070e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67916e-01\tAbsError: 2.20940e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.62728e-01\tAbsError: 1.28130e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 8.24571e-02\tAbsError: 3.31008e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71426e-04\tAbsError: 5.95845e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.12114e-02\tAbsError: 1.98754e+13\n", - " Region: \"zone_1\"\tRelError: 7.04172e-03\tAbsError: 6.58751e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.02275e-03\tAbsError: 5.51750e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.89733e-05\tAbsError: 6.58199e-03\n", - " Region: \"zone_3\"\tRelError: 1.41697e-02\tAbsError: 1.98754e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43525e-04\tAbsError: 1.00008e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.47254e-04\tAbsError: 9.87467e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.32599e-02\tAbsError: 5.78756e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.89775e-05\tAbsError: 6.58354e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.22606e-01\tAbsError: 7.84939e+12\n", - " Region: \"zone_1\"\tRelError: 2.22941e-02\tAbsError: 1.32945e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.22866e-02\tAbsError: 1.06618e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.57416e-06\tAbsError: 2.63278e-03\n", - " Region: \"zone_3\"\tRelError: 3.00312e-01\tAbsError: 7.84939e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.18420e-01\tAbsError: 3.81260e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.93810e-02\tAbsError: 4.03679e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25037e-02\tAbsError: 1.06618e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.57783e-06\tAbsError: 2.63407e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 5.71129e-04\tAbsError: 4.64479e+11\n", - " Region: \"zone_1\"\tRelError: 1.36872e-04\tAbsError: 1.33677e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33025e-04\tAbsError: 4.45593e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.84708e-06\tAbsError: 1.33633e-03\n", - " Region: \"zone_3\"\tRelError: 4.34257e-04\tAbsError: 4.64479e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.87135e-05\tAbsError: 2.05740e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.04630e-05\tAbsError: 2.58739e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.91233e-04\tAbsError: 4.55558e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.84714e-06\tAbsError: 1.33637e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.53065e-03\tAbsError: 7.24481e+11\n", - " Region: \"zone_1\"\tRelError: 1.49459e-03\tAbsError: 1.07639e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49149e-03\tAbsError: 6.55190e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.09641e-06\tAbsError: 1.07573e-03\n", - " Region: \"zone_3\"\tRelError: 1.03606e-03\tAbsError: 7.24481e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73129e-05\tAbsError: 2.45596e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.81580e-05\tAbsError: 4.78885e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 9.37490e-04\tAbsError: 6.76708e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.09642e-06\tAbsError: 1.07576e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.08576e+00\tAbsError: 5.42272e+13\n", - " Region: \"zone_1\"\tRelError: 6.57302e-02\tAbsError: 3.25935e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.57103e-02\tAbsError: 2.56636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.99371e-05\tAbsError: 6.92989e-03\n", - " Region: \"zone_3\"\tRelError: 1.02003e+00\tAbsError: 5.42272e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.86826e-01\tAbsError: 3.87041e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.66488e-01\tAbsError: 1.55232e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.66923e-02\tAbsError: 2.58213e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.99371e-05\tAbsError: 6.92989e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.24258e-02\tAbsError: 1.10918e+13\n", - " Region: \"zone_1\"\tRelError: 4.12899e-03\tAbsError: 9.16825e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.12635e-03\tAbsError: 2.69238e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.63359e-06\tAbsError: 9.14133e-04\n", - " Region: \"zone_3\"\tRelError: 8.29681e-03\tAbsError: 1.10918e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.48339e-04\tAbsError: 5.58229e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.46113e-04\tAbsError: 5.50951e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.79972e-03\tAbsError: 2.89698e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.63458e-06\tAbsError: 9.14508e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.78415e-03\tAbsError: 1.30628e+12\n", - " Region: \"zone_1\"\tRelError: 4.28818e-04\tAbsError: 8.25926e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.28582e-04\tAbsError: 6.47778e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36078e-07\tAbsError: 8.19448e-05\n", - " Region: \"zone_3\"\tRelError: 1.35533e-03\tAbsError: 1.30628e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.11544e-05\tAbsError: 6.56040e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.08446e-05\tAbsError: 6.50242e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.23310e-03\tAbsError: 6.64003e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36136e-07\tAbsError: 8.19661e-05\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.99142e-02\tAbsError: 2.26296e+12\n", - " Region: \"zone_1\"\tRelError: 1.29118e-03\tAbsError: 2.02776e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28536e-03\tAbsError: 6.01525e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.82204e-06\tAbsError: 2.02174e-03\n", - " Region: \"zone_3\"\tRelError: 6.86230e-02\tAbsError: 2.26296e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.61419e-02\tAbsError: 1.56909e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.27666e-04\tAbsError: 6.93869e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.14763e-03\tAbsError: 6.34080e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.82204e-06\tAbsError: 2.02174e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.69038e-03\tAbsError: 1.04370e+12\n", - " Region: \"zone_1\"\tRelError: 1.58975e-03\tAbsError: 1.04879e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.58945e-03\tAbsError: 5.38488e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.00336e-07\tAbsError: 1.04341e-04\n", - " Region: \"zone_3\"\tRelError: 1.10063e-03\tAbsError: 1.04370e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.23814e-05\tAbsError: 5.26651e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.22994e-05\tAbsError: 5.17045e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 9.95649e-04\tAbsError: 5.63224e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.00360e-07\tAbsError: 1.04351e-04\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.73642e-01\tAbsError: 9.69815e+12\n", - " Region: \"zone_1\"\tRelError: 2.63134e-02\tAbsError: 1.52684e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.63048e-02\tAbsError: 1.22657e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.63884e-06\tAbsError: 3.00266e-03\n", - " Region: \"zone_3\"\tRelError: 3.47328e-01\tAbsError: 9.69815e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.43903e-01\tAbsError: 4.70596e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.68748e-02\tAbsError: 4.99219e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.65414e-02\tAbsError: 1.22658e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.64176e-06\tAbsError: 3.00375e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.18008e-03\tAbsError: 1.59787e+12\n", - " Region: \"zone_1\"\tRelError: 7.30404e-04\tAbsError: 4.14536e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.29211e-04\tAbsError: 3.64518e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19313e-06\tAbsError: 4.14171e-04\n", - " Region: \"zone_3\"\tRelError: 1.44968e-03\tAbsError: 1.59787e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.59026e-05\tAbsError: 8.02763e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.55751e-05\tAbsError: 7.95108e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37700e-03\tAbsError: 3.97752e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19336e-06\tAbsError: 4.14251e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.55127e-04\tAbsError: 9.93238e+11\n", - " Region: \"zone_1\"\tRelError: 2.79859e-04\tAbsError: 1.10574e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.79545e-04\tAbsError: 1.48236e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.13406e-07\tAbsError: 1.09091e-04\n", - " Region: \"zone_3\"\tRelError: 5.75269e-04\tAbsError: 9.93238e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.15795e-04\tAbsError: 2.59345e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.09339e-04\tAbsError: 7.33893e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.49821e-04\tAbsError: 1.48909e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.13540e-07\tAbsError: 1.09141e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.67945e-04\tAbsError: 7.85934e+10\n", - " Region: \"zone_1\"\tRelError: 4.12351e-05\tAbsError: 8.21508e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.09987e-05\tAbsError: 4.70612e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36350e-07\tAbsError: 8.21038e-05\n", - " Region: \"zone_3\"\tRelError: 1.26710e-04\tAbsError: 7.85934e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.14413e-06\tAbsError: 3.68644e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.17345e-06\tAbsError: 4.17290e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18156e-04\tAbsError: 4.78948e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36434e-07\tAbsError: 8.21331e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.67954e-04\tAbsError: 1.01821e+11\n", - " Region: \"zone_1\"\tRelError: 2.21136e-04\tAbsError: 6.97280e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20936e-04\tAbsError: 5.57180e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00534e-07\tAbsError: 6.96723e-05\n", - " Region: \"zone_3\"\tRelError: 1.46817e-04\tAbsError: 1.01821e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.39462e-06\tAbsError: 5.27392e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.41727e-06\tAbsError: 4.90816e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35805e-04\tAbsError: 5.79583e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00607e-07\tAbsError: 6.96980e-05\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.13764e-02\tAbsError: 2.60011e+12\n", - " Region: \"zone_1\"\tRelError: 5.15644e-04\tAbsError: 1.86139e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.10306e-04\tAbsError: 7.73509e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.33805e-06\tAbsError: 1.85366e-03\n", - " Region: \"zone_3\"\tRelError: 8.08607e-02\tAbsError: 2.60011e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77471e-02\tAbsError: 1.74501e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.39413e-04\tAbsError: 8.55098e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.46890e-03\tAbsError: 8.53513e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.33805e-06\tAbsError: 1.85366e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 9.04358e-04\tAbsError: 6.91618e+11\n", - " Region: \"zone_1\"\tRelError: 3.02587e-04\tAbsError: 7.78938e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.02363e-04\tAbsError: 1.55785e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.23501e-07\tAbsError: 7.77380e-05\n", - " Region: \"zone_3\"\tRelError: 6.01772e-04\tAbsError: 6.91618e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.55559e-05\tAbsError: 3.47877e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.53466e-05\tAbsError: 3.43741e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.70646e-04\tAbsError: 1.69595e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.23586e-07\tAbsError: 7.77681e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.20053e-04\tAbsError: 9.08394e+10\n", - " Region: \"zone_1\"\tRelError: 1.81544e-05\tAbsError: 5.77969e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.79881e-05\tAbsError: 5.48804e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.66269e-07\tAbsError: 5.77420e-05\n", - " Region: \"zone_3\"\tRelError: 1.01899e-04\tAbsError: 9.08394e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.23512e-06\tAbsError: 6.54956e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.17106e-06\tAbsError: 2.53438e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 8.93263e-05\tAbsError: 5.73246e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.66303e-07\tAbsError: 5.77524e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.27074e-04\tAbsError: 8.15536e+10\n", - " Region: \"zone_1\"\tRelError: 3.09063e-05\tAbsError: 9.88116e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.08780e-05\tAbsError: 3.69812e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.83382e-08\tAbsError: 9.84418e-06\n", - " Region: \"zone_3\"\tRelError: 9.61679e-05\tAbsError: 8.15536e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.70448e-06\tAbsError: 4.58581e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.67779e-06\tAbsError: 3.56955e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 8.87573e-05\tAbsError: 3.76646e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.83462e-08\tAbsError: 9.84698e-06\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.02562e-04\tAbsError: 6.84436e+10\n", - " Region: \"zone_1\"\tRelError: 1.21040e-04\tAbsError: 1.06970e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21010e-04\tAbsError: 3.27450e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.06942e-08\tAbsError: 1.06642e-05\n", - " Region: \"zone_3\"\tRelError: 8.15214e-05\tAbsError: 6.84436e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.33271e-06\tAbsError: 3.86457e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.32148e-06\tAbsError: 2.97979e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.48365e-05\tAbsError: 3.43670e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.07019e-08\tAbsError: 1.06669e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.48966e-04\tAbsError: 8.96566e+11\n", - " Region: \"zone_1\"\tRelError: 5.28566e-05\tAbsError: 1.37320e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.24660e-05\tAbsError: 1.35084e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.90631e-07\tAbsError: 1.35969e-04\n", - " Region: \"zone_3\"\tRelError: 3.96109e-04\tAbsError: 8.96566e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98545e-05\tAbsError: 2.13909e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.29182e-05\tAbsError: 6.82656e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.02946e-04\tAbsError: 1.35679e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.90791e-07\tAbsError: 1.36028e-04\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.87260e-04\tAbsError: 1.29403e+11\n", - " Region: \"zone_1\"\tRelError: 6.28801e-05\tAbsError: 2.91909e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.27963e-05\tAbsError: 3.06059e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.38368e-08\tAbsError: 2.91603e-05\n", - " Region: \"zone_3\"\tRelError: 1.24379e-04\tAbsError: 1.29403e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91169e-06\tAbsError: 6.49895e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.87741e-06\tAbsError: 6.44135e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18506e-04\tAbsError: 3.32307e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.38700e-08\tAbsError: 2.91722e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.89211e-05\tAbsError: 9.50180e+09\n", - " Region: \"zone_1\"\tRelError: 4.65037e-06\tAbsError: 5.55191e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.63440e-06\tAbsError: 4.80136e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59683e-08\tAbsError: 5.54711e-06\n", - " Region: \"zone_3\"\tRelError: 1.42707e-05\tAbsError: 9.50180e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.61313e-07\tAbsError: 5.41394e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.61345e-07\tAbsError: 4.08786e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33321e-05\tAbsError: 4.89497e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59706e-08\tAbsError: 5.54792e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:08\u001b[0m.\u001b[1;36m665\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:08\u001b[0m.\u001b[1;36m665\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7333333333333334\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.92305e-05\tAbsError: 5.26360e+10\n", - " Region: \"zone_1\"\tRelError: 6.83936e-06\tAbsError: 3.78015e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.82864e-06\tAbsError: 4.82672e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.07211e-08\tAbsError: 3.73188e-06\n", - " Region: \"zone_3\"\tRelError: 4.23911e-05\tAbsError: 5.26360e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.17044e-06\tAbsError: 2.04349e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.13380e-06\tAbsError: 3.22010e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.40762e-05\tAbsError: 4.83420e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.07265e-08\tAbsError: 3.73386e-06\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:08\u001b[0m.\u001b[1;36m840\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:08\u001b[0m.\u001b[1;36m840\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.4149999999999999\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.67619e-05\tAbsError: 1.02422e+10\n", - " Region: \"zone_1\"\tRelError: 2.21445e-05\tAbsError: 4.91320e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.21303e-05\tAbsError: 5.33976e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41260e-08\tAbsError: 4.90786e-06\n", - " Region: \"zone_3\"\tRelError: 1.46175e-05\tAbsError: 1.02422e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.20200e-07\tAbsError: 5.93796e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.20801e-07\tAbsError: 4.30421e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35623e-05\tAbsError: 5.58038e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41284e-08\tAbsError: 4.90869e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:09\u001b[0m.\u001b[1;36m165\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.7000000000000001\u001b[0m\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 6.51617e-05\tAbsError: 4.65398e+10\n", - " Region: \"zone_1\"\tRelError: 2.18609e-05\tAbsError: 6.36014e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18427e-05\tAbsError: 1.11819e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.82534e-08\tAbsError: 6.34896e-06\n", - " Region: \"zone_3\"\tRelError: 4.33008e-05\tAbsError: 4.65398e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04809e-06\tAbsError: 2.33986e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03254e-06\tAbsError: 2.31412e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.12019e-05\tAbsError: 1.20844e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.82605e-08\tAbsError: 6.35150e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:09\u001b[0m.\u001b[1;36m620\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.8\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Iteration: 6\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 1.64329e-04\tAbsError: 1.17757e+11\n", - " Region: \"zone_1\"\tRelError: 2.50373e-05\tAbsError: 4.84121e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.48981e-05\tAbsError: 7.17289e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39198e-07\tAbsError: 4.83403e-05\n", - " Region: \"zone_3\"\tRelError: 1.39291e-04\tAbsError: 1.17757e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.33650e-06\tAbsError: 8.08468e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.26154e-06\tAbsError: 3.69104e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.22554e-04\tAbsError: 7.49738e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.39198e-07\tAbsError: 4.83403e-05\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.05900e+01\tAbsError: 4.46557e+16\n", - " Region: \"zone_1\"\tRelError: 6.87743e+01\tAbsError: 4.20735e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.87743e+01\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.70008e-09\tAbsError: 9.37962e-07\n", - " Region: \"zone_3\"\tRelError: 1.81571e+00\tAbsError: 4.46557e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77865e-01\tAbsError: 2.21789e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.77152e-01\tAbsError: 2.24768e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.60688e-01\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.70036e-09\tAbsError: 9.38061e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.20408e+00\tAbsError: 8.66556e+15\n", - " Region: \"zone_1\"\tRelError: 5.53406e+00\tAbsError: 4.19658e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.53406e+00\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.30170e-09\tAbsError: 2.88550e-06\n", - " Region: \"zone_3\"\tRelError: 1.67003e+00\tAbsError: 8.66556e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78195e-01\tAbsError: 5.11161e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.78171e-01\tAbsError: 3.55395e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13660e-01\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.30183e-09\tAbsError: 2.88560e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.11982e+00\tAbsError: 2.71568e+16\n", - " Region: \"zone_1\"\tRelError: 3.35178e+00\tAbsError: 4.09552e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.35178e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.75560e-09\tAbsError: 9.57391e-07\n", - " Region: \"zone_3\"\tRelError: 1.76804e+00\tAbsError: 2.71568e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68907e-01\tAbsError: 1.36090e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.68433e-01\tAbsError: 1.35478e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.30705e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.75592e-09\tAbsError: 9.57503e-07\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.29104e-05\tAbsError: 4.21734e+10\n", - " Region: \"zone_1\"\tRelError: 4.44495e-06\tAbsError: 6.18426e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.42730e-06\tAbsError: 4.07074e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.76498e-08\tAbsError: 6.14355e-06\n", - " Region: \"zone_3\"\tRelError: 2.84655e-05\tAbsError: 4.21734e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.29169e-06\tAbsError: 1.42178e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.26285e-06\tAbsError: 2.79556e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18933e-05\tAbsError: 4.07772e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.76574e-08\tAbsError: 6.14636e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:11\u001b[0m.\u001b[1;36m152\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:11\u001b[0m.\u001b[1;36m152\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.42999999999999994\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.97502e+01\tAbsError: 1.32808e+17\n", - " Region: \"zone_1\"\tRelError: 2.76074e+01\tAbsError: 4.09563e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.76074e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.00798e-09\tAbsError: 2.08971e-06\n", - " Region: \"zone_3\"\tRelError: 2.14284e+00\tAbsError: 1.32808e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.64512e-01\tAbsError: 6.68287e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.62033e-01\tAbsError: 6.59795e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.16298e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.01029e-09\tAbsError: 2.09057e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 7.17594e+00\tAbsError: 4.58261e+16\n", - " Region: \"zone_1\"\tRelError: 5.57923e+00\tAbsError: 2.03711e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.57873e+00\tAbsError: 3.20819e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.94325e-04\tAbsError: 1.71629e-01\n", - " Region: \"zone_3\"\tRelError: 1.59671e+00\tAbsError: 4.58261e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.50864e-01\tAbsError: 2.32601e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.14248e-01\tAbsError: 2.25660e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.31103e-01\tAbsError: 3.20820e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.94325e-04\tAbsError: 1.71629e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.60672e+00\tAbsError: 4.02263e+14\n", - " Region: \"zone_1\"\tRelError: 1.08205e-01\tAbsError: 8.12031e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08064e-01\tAbsError: 3.19528e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41712e-04\tAbsError: 4.92503e-02\n", - " Region: \"zone_3\"\tRelError: 1.49852e+00\tAbsError: 4.02263e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.54640e-01\tAbsError: 2.74026e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.47272e-01\tAbsError: 1.28237e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.64644e-02\tAbsError: 3.19531e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41712e-04\tAbsError: 4.92503e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.73275e+00\tAbsError: 2.68838e+16\n", - " Region: \"zone_1\"\tRelError: 1.92080e-01\tAbsError: 1.46306e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.91747e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.32681e-04\tAbsError: 1.15542e-01\n", - " Region: \"zone_3\"\tRelError: 1.54067e+00\tAbsError: 2.68838e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.36324e-01\tAbsError: 1.35736e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.01335e-01\tAbsError: 1.33102e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.02681e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.32681e-04\tAbsError: 1.15542e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 8.61535e+00\tAbsError: 1.17905e+17\n", - " Region: \"zone_1\"\tRelError: 7.44285e-01\tAbsError: 3.38569e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 7.43397e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.87545e-04\tAbsError: 3.07806e-01\n", - " Region: \"zone_3\"\tRelError: 7.87107e+00\tAbsError: 1.17905e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17750e-01\tAbsError: 5.81639e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.67341e-01\tAbsError: 5.97408e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.58509e+00\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.87924e-04\tAbsError: 3.07944e-01\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 4.99434e+00\tAbsError: 9.07460e+15\n", - " Region: \"zone_1\"\tRelError: 3.30452e+00\tAbsError: 4.29359e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.30452e+00\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.08442e-09\tAbsError: 2.11298e-06\n", - " Region: \"zone_3\"\tRelError: 1.68981e+00\tAbsError: 9.07460e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86122e-01\tAbsError: 5.35667e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.86097e-01\tAbsError: 3.71793e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17595e-01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.08597e-09\tAbsError: 2.11346e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 3.35530e+00\tAbsError: 2.87948e+16\n", - " Region: \"zone_1\"\tRelError: 2.27290e+00\tAbsError: 1.15223e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27265e+00\tAbsError: 2.57661e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.57720e-04\tAbsError: 8.94567e-02\n", - " Region: \"zone_3\"\tRelError: 1.08240e+00\tAbsError: 2.87948e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.59123e-01\tAbsError: 1.44061e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.01637e-01\tAbsError: 1.43888e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.21384e-01\tAbsError: 2.47220e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.57720e-04\tAbsError: 8.94567e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.07637e+00\tAbsError: 1.35812e+14\n", - " Region: \"zone_1\"\tRelError: 8.30797e-02\tAbsError: 3.32939e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.30584e-02\tAbsError: 2.58851e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.13173e-05\tAbsError: 7.40875e-03\n", - " Region: \"zone_3\"\tRelError: 9.93286e-01\tAbsError: 1.35812e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.65266e-01\tAbsError: 8.15592e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.44014e-01\tAbsError: 5.42533e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.39844e-02\tAbsError: 2.58851e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.13173e-05\tAbsError: 7.40875e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.12307e+00\tAbsError: 1.60442e+16\n", - " Region: \"zone_1\"\tRelError: 1.49907e-01\tAbsError: 9.31426e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49713e-01\tAbsError: 2.58569e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93773e-04\tAbsError: 6.72856e-02\n", - " Region: \"zone_3\"\tRelError: 9.73164e-01\tAbsError: 1.60442e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39500e-01\tAbsError: 8.04160e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.83757e-01\tAbsError: 8.00261e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49713e-01\tAbsError: 2.43087e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93773e-04\tAbsError: 6.72856e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 6.05251e+00\tAbsError: 7.12298e+16\n", - " Region: \"zone_1\"\tRelError: 9.54106e-01\tAbsError: 5.37894e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.54025e-01\tAbsError: 2.58886e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.04593e-05\tAbsError: 2.79009e-02\n", - " Region: \"zone_3\"\tRelError: 5.09841e+00\tAbsError: 7.12298e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.89784e-01\tAbsError: 3.67872e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.99659e-01\tAbsError: 3.44425e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.40888e+00\tAbsError: 2.58912e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.04593e-05\tAbsError: 2.79009e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.64725e+00\tAbsError: 4.74556e+14\n", - " Region: \"zone_1\"\tRelError: 1.16564e-01\tAbsError: 8.37432e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16418e-01\tAbsError: 3.31003e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.45721e-04\tAbsError: 5.06428e-02\n", - " Region: \"zone_3\"\tRelError: 1.53069e+00\tAbsError: 4.74556e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.69093e-01\tAbsError: 3.14532e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.61063e-01\tAbsError: 1.60024e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00388e-01\tAbsError: 3.31007e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.45721e-04\tAbsError: 5.06428e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.48868e+00\tAbsError: 8.66364e+15\n", - " Region: \"zone_1\"\tRelError: 1.06272e+00\tAbsError: 3.63205e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06265e+00\tAbsError: 1.08343e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.34266e-05\tAbsError: 2.54862e-02\n", - " Region: \"zone_3\"\tRelError: 4.25956e-01\tAbsError: 8.66364e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94615e-01\tAbsError: 4.46596e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.11861e-01\tAbsError: 4.19767e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19407e-01\tAbsError: 1.08344e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.34266e-05\tAbsError: 2.54862e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.54994e-01\tAbsError: 5.06788e+13\n", - " Region: \"zone_1\"\tRelError: 2.88221e-02\tAbsError: 1.30680e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88152e-02\tAbsError: 1.06617e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.92395e-06\tAbsError: 2.40632e-03\n", - " Region: \"zone_3\"\tRelError: 3.26172e-01\tAbsError: 5.06788e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16815e-01\tAbsError: 2.27548e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.02389e-02\tAbsError: 2.79240e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.91117e-02\tAbsError: 1.06618e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.92713e-06\tAbsError: 2.40746e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.25010e-01\tAbsError: 4.83168e+15\n", - " Region: \"zone_1\"\tRelError: 9.35029e-02\tAbsError: 6.02167e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.33558e-02\tAbsError: 9.16529e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47066e-04\tAbsError: 5.10514e-02\n", - " Region: \"zone_3\"\tRelError: 3.31507e-01\tAbsError: 4.83168e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74852e-01\tAbsError: 2.44485e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.96161e-02\tAbsError: 2.38683e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.68922e-02\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47066e-04\tAbsError: 5.10514e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.96439e+00\tAbsError: 2.12374e+16\n", - " Region: \"zone_1\"\tRelError: 1.45967e+00\tAbsError: 2.87618e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.45886e+00\tAbsError: 9.16520e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03570e-04\tAbsError: 2.78453e-01\n", - " Region: \"zone_3\"\tRelError: 2.50473e+00\tAbsError: 2.12374e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31487e-01\tAbsError: 1.07624e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.30649e-02\tAbsError: 1.04749e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.30937e+00\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03570e-04\tAbsError: 2.78453e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.13875e+00\tAbsError: 1.91429e+14\n", - " Region: \"zone_1\"\tRelError: 8.72362e-02\tAbsError: 3.41775e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.72123e-02\tAbsError: 2.58950e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.38317e-05\tAbsError: 8.28251e-03\n", - " Region: \"zone_3\"\tRelError: 1.05151e+00\tAbsError: 1.91429e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.88183e-01\tAbsError: 1.14582e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.74391e-01\tAbsError: 7.68472e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.89114e-02\tAbsError: 2.58546e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.38317e-05\tAbsError: 8.28251e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.05269e-01\tAbsError: 2.00168e+15\n", - " Region: \"zone_1\"\tRelError: 1.01873e-01\tAbsError: 2.51091e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01150e-01\tAbsError: 3.37405e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.23145e-04\tAbsError: 2.50754e-01\n", - " Region: \"zone_3\"\tRelError: 1.03396e-01\tAbsError: 2.00168e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.03281e-02\tAbsError: 1.03044e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.61663e-02\tAbsError: 9.71243e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.61783e-02\tAbsError: 3.37405e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.23145e-04\tAbsError: 2.50754e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.30726e-02\tAbsError: 8.23927e+12\n", - " Region: \"zone_1\"\tRelError: 3.37848e-03\tAbsError: 2.02621e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.37281e-03\tAbsError: 5.95073e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.66400e-06\tAbsError: 1.96670e-03\n", - " Region: \"zone_3\"\tRelError: 6.96941e-02\tAbsError: 8.23927e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.48256e-02\tAbsError: 4.47787e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.90463e-03\tAbsError: 3.76140e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.95818e-03\tAbsError: 6.43767e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.66400e-06\tAbsError: 1.96670e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.30868e-01\tAbsError: 1.08442e+15\n", - " Region: \"zone_1\"\tRelError: 2.27753e-02\tAbsError: 2.15920e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.21537e-02\tAbsError: 2.84606e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.21607e-04\tAbsError: 2.15635e-01\n", - " Region: \"zone_3\"\tRelError: 1.08092e-01\tAbsError: 1.08442e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.76472e-02\tAbsError: 4.26455e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.43864e-02\tAbsError: 6.57964e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.54371e-02\tAbsError: 2.84606e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.21607e-04\tAbsError: 2.15635e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.06736e+00\tAbsError: 1.67079e+15\n", - " Region: \"zone_1\"\tRelError: 1.87002e-01\tAbsError: 2.94468e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86917e-01\tAbsError: 5.45669e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.47563e-05\tAbsError: 2.93922e-02\n", - " Region: \"zone_3\"\tRelError: 1.88036e+00\tAbsError: 1.67079e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95806e-02\tAbsError: 8.61655e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.32450e-03\tAbsError: 8.09135e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.85737e+00\tAbsError: 5.47236e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.50770e-05\tAbsError: 2.95046e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.13297e-01\tAbsError: 7.52929e+13\n", - " Region: \"zone_1\"\tRelError: 3.44170e-02\tAbsError: 1.51248e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.44088e-02\tAbsError: 1.22657e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.23601e-06\tAbsError: 2.85918e-03\n", - " Region: \"zone_3\"\tRelError: 3.78880e-01\tAbsError: 7.52929e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.42275e-01\tAbsError: 3.28684e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.01785e-01\tAbsError: 4.24245e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.48113e-02\tAbsError: 1.22657e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.23601e-06\tAbsError: 2.85918e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.73594e-01\tAbsError: 4.04568e+14\n", - " Region: \"zone_1\"\tRelError: 1.14252e-01\tAbsError: 1.60779e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14206e-01\tAbsError: 6.91107e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.61654e-05\tAbsError: 1.60088e-02\n", - " Region: \"zone_3\"\tRelError: 1.59342e-01\tAbsError: 4.04568e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.16744e-03\tAbsError: 2.05385e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.06128e-03\tAbsError: 1.99183e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49067e-01\tAbsError: 7.27188e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.61654e-05\tAbsError: 1.60088e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.22575e-04\tAbsError: 9.29075e+11\n", - " Region: \"zone_1\"\tRelError: 7.12288e-05\tAbsError: 1.15614e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.09000e-05\tAbsError: 1.32871e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.28820e-07\tAbsError: 1.14285e-04\n", - " Region: \"zone_3\"\tRelError: 5.51346e-04\tAbsError: 9.29075e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42058e-04\tAbsError: 2.36026e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.92710e-05\tAbsError: 6.93050e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.19689e-04\tAbsError: 1.33393e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.28820e-07\tAbsError: 1.14285e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.55617e-01\tAbsError: 2.35794e+14\n", - " Region: \"zone_1\"\tRelError: 4.99367e-02\tAbsError: 1.38607e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.98970e-02\tAbsError: 6.98741e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.97528e-05\tAbsError: 1.37908e-02\n", - " Region: \"zone_3\"\tRelError: 1.05680e-01\tAbsError: 2.35794e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.27300e-03\tAbsError: 1.18548e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.21148e-03\tAbsError: 1.17246e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.51557e-02\tAbsError: 7.06637e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.97528e-05\tAbsError: 1.37908e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.99757e-02\tAbsError: 6.03219e+13\n", - " Region: \"zone_1\"\tRelError: 5.28092e-03\tAbsError: 6.07421e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.26342e-03\tAbsError: 6.43272e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75062e-05\tAbsError: 6.06778e-03\n", - " Region: \"zone_3\"\tRelError: 2.46948e-02\tAbsError: 6.03219e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52421e-04\tAbsError: 2.92320e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.21852e-04\tAbsError: 3.10899e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.41030e-02\tAbsError: 6.47112e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75095e-05\tAbsError: 6.06885e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.55296e-02\tAbsError: 1.46785e+13\n", - " Region: \"zone_1\"\tRelError: 2.49644e-03\tAbsError: 2.18616e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49041e-03\tAbsError: 9.01307e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.03652e-06\tAbsError: 2.09603e-03\n", - " Region: \"zone_3\"\tRelError: 8.30332e-02\tAbsError: 1.46785e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.51171e-02\tAbsError: 7.64842e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.70344e-03\tAbsError: 7.03012e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20658e-03\tAbsError: 1.00679e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.03652e-06\tAbsError: 2.09603e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.46364e-02\tAbsError: 3.29563e+13\n", - " Region: \"zone_1\"\tRelError: 1.47274e-02\tAbsError: 7.28157e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.47064e-02\tAbsError: 5.33486e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.09833e-05\tAbsError: 7.27623e-03\n", - " Region: \"zone_3\"\tRelError: 1.99090e-02\tAbsError: 3.29563e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.19292e-04\tAbsError: 1.67682e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.25236e-04\tAbsError: 1.61881e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.90434e-02\tAbsError: 5.85649e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.09915e-05\tAbsError: 7.27922e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.27650e-04\tAbsError: 9.52408e+10\n", - " Region: \"zone_1\"\tRelError: 2.13213e-05\tAbsError: 5.43725e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.11649e-05\tAbsError: 6.28014e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.56399e-07\tAbsError: 5.43097e-05\n", - " Region: \"zone_3\"\tRelError: 1.06329e-04\tAbsError: 9.52408e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.09144e-06\tAbsError: 6.70989e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.02116e-06\tAbsError: 2.81420e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 9.40598e-05\tAbsError: 6.55661e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.56426e-07\tAbsError: 5.43178e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.12114e-02\tAbsError: 1.98754e+13\n", - " Region: \"zone_1\"\tRelError: 7.04172e-03\tAbsError: 6.58751e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.02275e-03\tAbsError: 5.51750e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.89733e-05\tAbsError: 6.58199e-03\n", - " Region: \"zone_3\"\tRelError: 1.41697e-02\tAbsError: 1.98754e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43525e-04\tAbsError: 1.00008e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.47254e-04\tAbsError: 9.87467e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.32599e-02\tAbsError: 5.78756e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.89775e-05\tAbsError: 6.58354e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.10405e-01\tAbsError: 3.12560e+13\n", - " Region: \"zone_1\"\tRelError: 1.08840e-02\tAbsError: 4.61195e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08827e-02\tAbsError: 1.71511e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32204e-06\tAbsError: 4.59479e-04\n", - " Region: \"zone_3\"\tRelError: 9.95213e-02\tAbsError: 3.12560e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34947e-04\tAbsError: 1.52362e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.27748e-04\tAbsError: 1.60198e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.92573e-02\tAbsError: 1.72813e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32271e-06\tAbsError: 4.59705e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.58436e-04\tAbsError: 9.76197e+11\n", - " Region: \"zone_1\"\tRelError: 6.87963e-05\tAbsError: 1.52764e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.83606e-05\tAbsError: 1.30863e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.35775e-07\tAbsError: 1.51456e-04\n", - " Region: \"zone_3\"\tRelError: 5.89639e-04\tAbsError: 9.76197e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.93148e-04\tAbsError: 2.43686e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.21484e-05\tAbsError: 7.32511e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.03907e-04\tAbsError: 1.33351e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.35775e-07\tAbsError: 1.51456e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.13924e-02\tAbsError: 1.85414e+13\n", - " Region: \"zone_1\"\tRelError: 9.11864e-03\tAbsError: 9.59661e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.11588e-03\tAbsError: 2.59243e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.75871e-06\tAbsError: 9.57068e-04\n", - " Region: \"zone_3\"\tRelError: 1.22737e-02\tAbsError: 1.85414e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38572e-04\tAbsError: 9.41604e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.34475e-04\tAbsError: 9.12538e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17979e-02\tAbsError: 2.84729e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.75985e-06\tAbsError: 9.57492e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.50840e-05\tAbsError: 4.91699e+10\n", - " Region: \"zone_1\"\tRelError: 7.02249e-06\tAbsError: 4.27319e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 7.01033e-06\tAbsError: 4.22210e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.21557e-08\tAbsError: 4.23096e-06\n", - " Region: \"zone_3\"\tRelError: 3.80615e-05\tAbsError: 4.91699e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.39542e-06\tAbsError: 1.90691e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.36606e-06\tAbsError: 3.01008e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.12878e-05\tAbsError: 4.24207e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.21614e-08\tAbsError: 4.23302e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:20\u001b[0m.\u001b[1;36m551\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:20\u001b[0m.\u001b[1;36m551\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5199999999999999\u001b[0m \n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.24258e-02\tAbsError: 1.10918e+13\n", - " Region: \"zone_1\"\tRelError: 4.12899e-03\tAbsError: 9.16825e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.12635e-03\tAbsError: 2.69238e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.63359e-06\tAbsError: 9.14133e-04\n", - " Region: \"zone_3\"\tRelError: 8.29681e-03\tAbsError: 1.10918e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.48339e-04\tAbsError: 5.58229e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.46113e-04\tAbsError: 5.50951e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.79972e-03\tAbsError: 2.89698e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.63458e-06\tAbsError: 9.14508e-04\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.63047e-03\tAbsError: 9.09027e+11\n", - " Region: \"zone_1\"\tRelError: 4.56990e-04\tAbsError: 3.44629e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.55999e-04\tAbsError: 1.41300e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.91190e-07\tAbsError: 3.44488e-04\n", - " Region: \"zone_3\"\tRelError: 4.17348e-03\tAbsError: 9.09027e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33335e-06\tAbsError: 4.38047e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.02288e-05\tAbsError: 4.70980e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.15793e-03\tAbsError: 1.42246e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.91601e-07\tAbsError: 3.44637e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.65798e-04\tAbsError: 1.22174e+11\n", - " Region: \"zone_1\"\tRelError: 2.79805e-05\tAbsError: 5.56854e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78204e-05\tAbsError: 8.16520e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60127e-07\tAbsError: 5.56037e-05\n", - " Region: \"zone_3\"\tRelError: 1.37818e-04\tAbsError: 1.22174e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.04045e-06\tAbsError: 8.28593e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.95339e-06\tAbsError: 3.93150e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21664e-04\tAbsError: 8.53009e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60129e-07\tAbsError: 5.56037e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.60352e-03\tAbsError: 2.57243e+12\n", - " Region: \"zone_1\"\tRelError: 1.54297e-03\tAbsError: 4.44694e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.54169e-03\tAbsError: 3.49758e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27787e-06\tAbsError: 4.44344e-04\n", - " Region: \"zone_3\"\tRelError: 2.06056e-03\tAbsError: 2.57243e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.32361e-05\tAbsError: 1.30390e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.27108e-05\tAbsError: 1.26853e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.99333e-03\tAbsError: 3.79227e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27835e-06\tAbsError: 4.44517e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.18008e-03\tAbsError: 1.59787e+12\n", - " Region: \"zone_1\"\tRelError: 7.30404e-04\tAbsError: 4.14536e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.29211e-04\tAbsError: 3.64518e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19313e-06\tAbsError: 4.14171e-04\n", - " Region: \"zone_3\"\tRelError: 1.44968e-03\tAbsError: 1.59787e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.59026e-05\tAbsError: 8.02763e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.55751e-05\tAbsError: 7.95108e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37700e-03\tAbsError: 3.97752e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19336e-06\tAbsError: 4.14251e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.98221e+01\tAbsError: 8.64531e+15\n", - " Region: \"zone_1\"\tRelError: 1.81187e+01\tAbsError: 4.19656e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81187e+01\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.58846e-09\tAbsError: 2.63725e-06\n", - " Region: \"zone_3\"\tRelError: 1.70342e+00\tAbsError: 8.64531e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78201e-01\tAbsError: 4.98895e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.78139e-01\tAbsError: 3.65636e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.47079e-01\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.58846e-09\tAbsError: 2.63727e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.49771e-03\tAbsError: 1.64940e+12\n", - " Region: \"zone_1\"\tRelError: 6.42053e-04\tAbsError: 1.77929e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.42002e-04\tAbsError: 9.99896e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.09050e-08\tAbsError: 1.76929e-05\n", - " Region: \"zone_3\"\tRelError: 5.85566e-03\tAbsError: 1.64940e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16109e-06\tAbsError: 8.03293e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.70130e-06\tAbsError: 8.46106e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.84174e-03\tAbsError: 1.00703e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.09341e-08\tAbsError: 1.77035e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.29840e-05\tAbsError: 4.97114e+10\n", - " Region: \"zone_1\"\tRelError: 6.74775e-06\tAbsError: 6.07457e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.73042e-06\tAbsError: 4.22286e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73315e-08\tAbsError: 6.03234e-06\n", - " Region: \"zone_3\"\tRelError: 3.62362e-05\tAbsError: 4.97114e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.35448e-06\tAbsError: 1.86949e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.32535e-06\tAbsError: 3.10165e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.95390e-05\tAbsError: 4.25647e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73388e-08\tAbsError: 6.03496e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:22\u001b[0m.\u001b[1;36m766\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.5399999999999999\u001b[0m\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.51864e-03\tAbsError: 1.12473e+12\n", - " Region: \"zone_1\"\tRelError: 6.50046e-04\tAbsError: 8.14798e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.49813e-04\tAbsError: 1.44801e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.33906e-07\tAbsError: 8.13350e-05\n", - " Region: \"zone_3\"\tRelError: 8.68591e-04\tAbsError: 1.12473e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.45444e-05\tAbsError: 5.70557e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.42123e-05\tAbsError: 5.54169e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 8.39600e-04\tAbsError: 1.62373e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.34000e-07\tAbsError: 8.13686e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 9.04358e-04\tAbsError: 6.91618e+11\n", - " Region: \"zone_1\"\tRelError: 3.02587e-04\tAbsError: 7.78938e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.02363e-04\tAbsError: 1.55785e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.23501e-07\tAbsError: 7.77380e-05\n", - " Region: \"zone_3\"\tRelError: 6.01772e-04\tAbsError: 6.91618e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.55559e-05\tAbsError: 3.47877e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.53466e-05\tAbsError: 3.43741e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.70646e-04\tAbsError: 1.69595e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.23586e-07\tAbsError: 7.77681e-05\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.39508e+00\tAbsError: 1.51600e+15\n", - " Region: \"zone_1\"\tRelError: 8.81064e-01\tAbsError: 7.03064e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.80954e-01\tAbsError: 3.19527e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10369e-04\tAbsError: 3.83537e-02\n", - " Region: \"zone_3\"\tRelError: 1.51402e+00\tAbsError: 1.51600e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.56486e-01\tAbsError: 8.49352e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.37103e-01\tAbsError: 6.66645e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20319e-01\tAbsError: 3.19528e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10369e-04\tAbsError: 3.83537e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 5.44825e-04\tAbsError: 5.87780e+10\n", - " Region: \"zone_1\"\tRelError: 5.39394e-05\tAbsError: 2.02429e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.38812e-05\tAbsError: 6.87611e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.82246e-08\tAbsError: 2.02360e-05\n", - " Region: \"zone_3\"\tRelError: 4.90886e-04\tAbsError: 5.87780e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46411e-07\tAbsError: 2.85251e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.30809e-07\tAbsError: 3.02529e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.90250e-04\tAbsError: 6.91269e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.82487e-08\tAbsError: 2.02448e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.05747e-04\tAbsError: 2.04109e+11\n", - " Region: \"zone_1\"\tRelError: 1.31137e-04\tAbsError: 3.07956e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31048e-04\tAbsError: 2.77993e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.84829e-08\tAbsError: 3.07678e-05\n", - " Region: \"zone_3\"\tRelError: 1.74610e-04\tAbsError: 2.04109e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.64104e-06\tAbsError: 1.03365e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.58639e-06\tAbsError: 1.00744e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.69295e-04\tAbsError: 3.09340e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.85176e-08\tAbsError: 3.07806e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.79935e+00\tAbsError: 9.07065e+15\n", - " Region: \"zone_1\"\tRelError: 6.07018e+00\tAbsError: 4.29363e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.07018e+00\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.28179e-09\tAbsError: 2.52849e-06\n", - " Region: \"zone_3\"\tRelError: 1.72916e+00\tAbsError: 9.07065e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86123e-01\tAbsError: 5.17830e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.86053e-01\tAbsError: 3.89234e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.56989e-01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.28214e-09\tAbsError: 2.52864e-06\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.87260e-04\tAbsError: 1.29403e+11\n", - " Region: \"zone_1\"\tRelError: 6.28801e-05\tAbsError: 2.91909e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.27963e-05\tAbsError: 3.06059e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.38368e-08\tAbsError: 2.91603e-05\n", - " Region: \"zone_3\"\tRelError: 1.24379e-04\tAbsError: 1.29403e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91169e-06\tAbsError: 6.49895e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.87741e-06\tAbsError: 6.44135e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18506e-04\tAbsError: 3.32307e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.38700e-08\tAbsError: 2.91722e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.26009e+00\tAbsError: 9.34620e+14\n", - " Region: \"zone_1\"\tRelError: 2.72242e-01\tAbsError: 3.47960e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.72216e-01\tAbsError: 2.58901e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.56581e-05\tAbsError: 8.90586e-03\n", - " Region: \"zone_3\"\tRelError: 9.87851e-01\tAbsError: 9.34620e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.66784e-01\tAbsError: 4.28739e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.14300e-01\tAbsError: 5.05881e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06741e-01\tAbsError: 2.58901e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.56594e-05\tAbsError: 8.90651e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.92595e-04\tAbsError: 9.49473e+10\n", - " Region: \"zone_1\"\tRelError: 3.87978e-05\tAbsError: 2.02444e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.87920e-05\tAbsError: 5.96621e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.80757e-09\tAbsError: 2.01847e-06\n", - " Region: \"zone_3\"\tRelError: 3.53797e-04\tAbsError: 9.49473e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.10989e-07\tAbsError: 4.62324e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.83783e-07\tAbsError: 4.87150e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52997e-04\tAbsError: 6.00786e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.81025e-09\tAbsError: 2.01943e-06\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.06787e-04\tAbsError: 7.36056e+10\n", - " Region: \"zone_1\"\tRelError: 4.57872e-05\tAbsError: 6.53937e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.57685e-05\tAbsError: 1.01369e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.87770e-08\tAbsError: 6.52923e-06\n", - " Region: \"zone_3\"\tRelError: 6.10000e-05\tAbsError: 7.36056e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.53086e-07\tAbsError: 3.73114e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.28982e-07\tAbsError: 3.62943e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.90992e-05\tAbsError: 1.13481e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.87845e-08\tAbsError: 6.53202e-06\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 6.51617e-05\tAbsError: 4.65398e+10\n", - " Region: \"zone_1\"\tRelError: 2.18609e-05\tAbsError: 6.36014e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18427e-05\tAbsError: 1.11819e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.82534e-08\tAbsError: 6.34896e-06\n", - " Region: \"zone_3\"\tRelError: 4.33008e-05\tAbsError: 4.65398e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04809e-06\tAbsError: 2.33986e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03254e-06\tAbsError: 2.31412e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.12019e-05\tAbsError: 1.20844e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.82605e-08\tAbsError: 6.35150e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:25\u001b[0m.\u001b[1;36m809\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.8\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.87726e+00\tAbsError: 2.07784e+15\n", - " Region: \"zone_1\"\tRelError: 3.30726e-01\tAbsError: 7.19464e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.30614e-01\tAbsError: 3.31002e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11788e-04\tAbsError: 3.88462e-02\n", - " Region: \"zone_3\"\tRelError: 1.54653e+00\tAbsError: 2.07784e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.70151e-01\tAbsError: 1.12779e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.49677e-01\tAbsError: 9.50051e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.26591e-01\tAbsError: 3.31003e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11788e-04\tAbsError: 3.88462e-02\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 5.03275e-05\tAbsError: 9.08763e+09\n", - " Region: \"zone_1\"\tRelError: 4.97773e-06\tAbsError: 1.23989e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.97416e-06\tAbsError: 6.85123e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.56554e-09\tAbsError: 1.23921e-06\n", - " Region: \"zone_3\"\tRelError: 4.53497e-05\tAbsError: 9.08763e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.78500e-08\tAbsError: 4.42118e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.59273e-08\tAbsError: 4.66645e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 4.52724e-05\tAbsError: 6.89457e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.56702e-09\tAbsError: 1.23975e-06\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 2.39966e-05\tAbsError: 1.56028e+10\n", - " Region: \"zone_1\"\tRelError: 1.02996e-05\tAbsError: 2.15196e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02934e-05\tAbsError: 2.21173e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.18226e-09\tAbsError: 2.14975e-06\n", - " Region: \"zone_3\"\tRelError: 1.36971e-05\tAbsError: 1.56028e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.02027e-07\tAbsError: 7.89960e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.97311e-07\tAbsError: 7.70324e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.32915e-05\tAbsError: 2.46563e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.18487e-09\tAbsError: 2.15070e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:26\u001b[0m.\u001b[1;36m431\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 0.9\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:26\u001b[0m.\u001b[1;36m492\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:26\u001b[0m.\u001b[1;36m492\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.8388888888888889\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Iteration: 3\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 4.15200e-01\tAbsError: 3.54843e+14\n", - " Region: \"zone_1\"\tRelError: 5.18783e-02\tAbsError: 2.16460e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.18467e-02\tAbsError: 1.06619e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.16468e-05\tAbsError: 1.09842e-02\n", - " Region: \"zone_3\"\tRelError: 3.63322e-01\tAbsError: 3.54843e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13274e-01\tAbsError: 1.70567e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.13884e-01\tAbsError: 1.84276e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.61323e-02\tAbsError: 1.06619e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.16468e-05\tAbsError: 1.09846e-02\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.15795e+00\tAbsError: 1.43317e+15\n", - " Region: \"zone_1\"\tRelError: 1.12652e-01\tAbsError: 3.52450e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12625e-01\tAbsError: 2.58896e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69531e-05\tAbsError: 9.35535e-03\n", - " Region: \"zone_3\"\tRelError: 1.04530e+00\tAbsError: 1.43317e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89809e-01\tAbsError: 6.27661e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.39858e-01\tAbsError: 8.05511e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15604e-01\tAbsError: 2.58543e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69724e-05\tAbsError: 9.36224e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.97502e+01\tAbsError: 1.32808e+17\n", - " Region: \"zone_1\"\tRelError: 2.76074e+01\tAbsError: 4.09563e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.76074e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.00798e-09\tAbsError: 2.08971e-06\n", - " Region: \"zone_3\"\tRelError: 2.14284e+00\tAbsError: 1.32808e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.64512e-01\tAbsError: 6.68287e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.62033e-01\tAbsError: 6.59795e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.16298e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.01029e-09\tAbsError: 2.09057e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.01228e-01\tAbsError: 6.23996e+13\n", - " Region: \"zone_1\"\tRelError: 2.72826e-02\tAbsError: 5.51066e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.72672e-02\tAbsError: 1.71694e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.53768e-05\tAbsError: 5.33897e-03\n", - " Region: \"zone_3\"\tRelError: 7.39455e-02\tAbsError: 6.23996e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.10935e-02\tAbsError: 3.59735e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.41458e-03\tAbsError: 2.64261e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.42212e-03\tAbsError: 1.72806e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.53768e-05\tAbsError: 5.33897e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.75731e+01\tAbsError: 5.68784e+17\n", - " Region: \"zone_1\"\tRelError: 3.83859e+01\tAbsError: 4.09543e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.83859e+01\tAbsError: 4.09541e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.16236e-10\tAbsError: 1.79418e-07\n", - " Region: \"zone_3\"\tRelError: 1.91873e+01\tAbsError: 5.68784e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.35377e-01\tAbsError: 2.75826e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.22188e-01\tAbsError: 2.92959e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77297e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.16460e-10\tAbsError: 1.79501e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.99733e+01\tAbsError: 2.26128e+17\n", - " Region: \"zone_1\"\tRelError: 2.03845e+01\tAbsError: 4.20731e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03845e+01\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43640e-09\tAbsError: 4.99480e-07\n", - " Region: \"zone_3\"\tRelError: 9.58886e+00\tAbsError: 2.26128e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69382e-01\tAbsError: 1.14820e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.65088e-01\tAbsError: 1.11307e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 8.05439e+00\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43701e-09\tAbsError: 4.99700e-07\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.66101e-01\tAbsError: 5.71776e+14\n", - " Region: \"zone_1\"\tRelError: 4.21342e-02\tAbsError: 2.70003e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.20918e-02\tAbsError: 1.22659e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.24522e-05\tAbsError: 1.47344e-02\n", - " Region: \"zone_3\"\tRelError: 4.23967e-01\tAbsError: 5.71776e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.40635e-01\tAbsError: 2.83777e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.40006e-01\tAbsError: 2.87999e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.32840e-02\tAbsError: 1.22660e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.24816e-05\tAbsError: 1.47449e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 8.61535e+00\tAbsError: 1.17905e+17\n", - " Region: \"zone_1\"\tRelError: 7.44285e-01\tAbsError: 3.38569e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 7.43397e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.87545e-04\tAbsError: 3.07806e-01\n", - " Region: \"zone_3\"\tRelError: 7.87107e+00\tAbsError: 1.17905e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17750e-01\tAbsError: 5.81639e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.67341e-01\tAbsError: 5.97408e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.58509e+00\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.87924e-04\tAbsError: 3.07944e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.18909e-03\tAbsError: 2.50797e+12\n", - " Region: \"zone_1\"\tRelError: 3.37136e-04\tAbsError: 3.99230e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.35995e-04\tAbsError: 2.73321e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.14096e-06\tAbsError: 3.96496e-04\n", - " Region: \"zone_3\"\tRelError: 1.85195e-03\tAbsError: 2.50797e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.95361e-04\tAbsError: 8.43932e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.13660e-04\tAbsError: 1.66404e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.34179e-03\tAbsError: 2.78356e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.14125e-06\tAbsError: 3.96599e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.10779e+01\tAbsError: 4.06443e+17\n", - " Region: \"zone_1\"\tRelError: 1.97168e+01\tAbsError: 4.69738e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.97155e+01\tAbsError: 3.07629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26517e-03\tAbsError: 4.38975e-01\n", - " Region: \"zone_3\"\tRelError: 1.13612e+01\tAbsError: 4.06443e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.26663e-01\tAbsError: 2.03016e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.10593e-01\tAbsError: 2.03427e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03227e+01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26614e-03\tAbsError: 4.39294e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 6.24242e+01\tAbsError: 2.24081e+17\n", - " Region: \"zone_1\"\tRelError: 2.85577e+00\tAbsError: 3.14825e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.85496e+00\tAbsError: 3.20819e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.15607e-04\tAbsError: 2.82743e-01\n", - " Region: \"zone_3\"\tRelError: 5.95684e+01\tAbsError: 2.24081e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.16910e-01\tAbsError: 1.12507e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.44277e-01\tAbsError: 1.11574e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 5.83064e+01\tAbsError: 3.20820e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.15607e-04\tAbsError: 2.82743e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.84053e-02\tAbsError: 1.08690e+14\n", - " Region: \"zone_1\"\tRelError: 8.68078e-03\tAbsError: 8.41083e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 8.65731e-03\tAbsError: 2.61591e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.34713e-05\tAbsError: 8.14923e-03\n", - " Region: \"zone_3\"\tRelError: 8.97245e-02\tAbsError: 1.08690e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.02382e-02\tAbsError: 6.26697e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.25943e-02\tAbsError: 4.60204e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.86852e-03\tAbsError: 2.62736e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.34713e-05\tAbsError: 8.14923e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 6.05251e+00\tAbsError: 7.12298e+16\n", - " Region: \"zone_1\"\tRelError: 9.54106e-01\tAbsError: 5.37894e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.54025e-01\tAbsError: 2.58886e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.04593e-05\tAbsError: 2.79009e-02\n", - " Region: \"zone_3\"\tRelError: 5.09841e+00\tAbsError: 7.12298e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.89784e-01\tAbsError: 3.67872e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.99659e-01\tAbsError: 3.44425e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.40888e+00\tAbsError: 2.58912e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.04593e-05\tAbsError: 2.79009e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.99123e-04\tAbsError: 3.24565e+11\n", - " Region: \"zone_1\"\tRelError: 7.31805e-05\tAbsError: 1.49703e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.27499e-05\tAbsError: 1.95433e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.30598e-07\tAbsError: 1.49507e-04\n", - " Region: \"zone_3\"\tRelError: 3.25943e-04\tAbsError: 3.24565e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84790e-05\tAbsError: 2.08597e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.82567e-05\tAbsError: 1.15968e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88776e-04\tAbsError: 2.03345e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.30635e-07\tAbsError: 1.49522e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 4.48960e+02\tAbsError: 9.69691e+16\n", - " Region: \"zone_1\"\tRelError: 4.44741e+02\tAbsError: 1.46848e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.44741e+02\tAbsError: 2.58943e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.47880e-04\tAbsError: 1.20954e-01\n", - " Region: \"zone_3\"\tRelError: 4.21888e+00\tAbsError: 9.69691e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.30659e-01\tAbsError: 4.85459e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.34310e-01\tAbsError: 4.84232e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.85356e+00\tAbsError: 2.58906e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.48053e-04\tAbsError: 1.21009e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.41397e+01\tAbsError: 1.19776e+17\n", - " Region: \"zone_1\"\tRelError: 1.71543e+01\tAbsError: 1.01229e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.71541e+01\tAbsError: 2.58798e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17159e-04\tAbsError: 7.53489e-02\n", - " Region: \"zone_3\"\tRelError: 6.98541e+00\tAbsError: 1.19776e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.67463e-01\tAbsError: 6.05237e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.74800e-01\tAbsError: 5.92520e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.34293e+00\tAbsError: 2.58798e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.17199e-04\tAbsError: 7.53648e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.70865e-03\tAbsError: 3.95368e+12\n", - " Region: \"zone_1\"\tRelError: 5.98822e-04\tAbsError: 5.60907e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.97219e-04\tAbsError: 3.89502e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60297e-06\tAbsError: 5.57012e-04\n", - " Region: \"zone_3\"\tRelError: 3.10982e-03\tAbsError: 3.95368e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.50396e-04\tAbsError: 1.41982e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.19860e-04\tAbsError: 2.53386e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.33796e-03\tAbsError: 3.96587e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60304e-06\tAbsError: 5.57046e-04\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.96439e+00\tAbsError: 2.12374e+16\n", - " Region: \"zone_1\"\tRelError: 1.45967e+00\tAbsError: 2.87618e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.45886e+00\tAbsError: 9.16520e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03570e-04\tAbsError: 2.78453e-01\n", - " Region: \"zone_3\"\tRelError: 2.50473e+00\tAbsError: 2.12374e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31487e-01\tAbsError: 1.07624e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.30649e-02\tAbsError: 1.04749e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.30937e+00\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03570e-04\tAbsError: 2.78453e-01\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.48281e-04\tAbsError: 1.40879e+11\n", - " Region: \"zone_1\"\tRelError: 2.64953e-05\tAbsError: 1.39788e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.64554e-05\tAbsError: 9.13637e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.99031e-08\tAbsError: 1.38874e-05\n", - " Region: \"zone_3\"\tRelError: 1.21785e-04\tAbsError: 1.40879e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.26051e-06\tAbsError: 6.52185e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.19355e-06\tAbsError: 7.56605e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.05291e-04\tAbsError: 9.40395e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.99185e-08\tAbsError: 1.38930e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.03712e+00\tAbsError: 1.21527e+16\n", - " Region: \"zone_1\"\tRelError: 1.00977e+00\tAbsError: 5.07362e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00834e+00\tAbsError: 9.16487e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42992e-03\tAbsError: 4.98197e-01\n", - " Region: \"zone_3\"\tRelError: 4.02736e+00\tAbsError: 1.21527e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.24782e-02\tAbsError: 5.84262e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.44637e-02\tAbsError: 6.31012e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 3.96898e+00\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43302e-03\tAbsError: 4.99291e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.35007e+00\tAbsError: 2.67006e+16\n", - " Region: \"zone_1\"\tRelError: 7.34338e-01\tAbsError: 2.86457e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 7.33542e-01\tAbsError: 1.08342e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.95408e-04\tAbsError: 2.75623e-01\n", - " Region: \"zone_3\"\tRelError: 6.15729e-01\tAbsError: 2.67006e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04981e-01\tAbsError: 1.33915e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.31768e-02\tAbsError: 1.33091e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.66775e-01\tAbsError: 1.08344e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.95408e-04\tAbsError: 2.75623e-01\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 5.03905e-04\tAbsError: 4.29222e+11\n", - " Region: \"zone_1\"\tRelError: 9.36879e-05\tAbsError: 2.36804e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.30066e-05\tAbsError: 2.54166e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.81308e-07\tAbsError: 2.36550e-04\n", - " Region: \"zone_3\"\tRelError: 4.10217e-04\tAbsError: 4.29222e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.41988e-05\tAbsError: 2.77763e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.38677e-05\tAbsError: 1.51459e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.61470e-04\tAbsError: 2.67086e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.81308e-07\tAbsError: 2.36550e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.06736e+00\tAbsError: 1.67079e+15\n", - " Region: \"zone_1\"\tRelError: 1.87002e-01\tAbsError: 2.94468e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86917e-01\tAbsError: 5.45669e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.47563e-05\tAbsError: 2.93922e-02\n", - " Region: \"zone_3\"\tRelError: 1.88036e+00\tAbsError: 1.67079e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95806e-02\tAbsError: 8.61655e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.32450e-03\tAbsError: 8.09135e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.85737e+00\tAbsError: 5.47236e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.50770e-05\tAbsError: 2.95046e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.41293e-05\tAbsError: 1.23437e+10\n", - " Region: \"zone_1\"\tRelError: 2.60795e-06\tAbsError: 7.73969e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.58570e-06\tAbsError: 7.10643e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.22527e-08\tAbsError: 7.73258e-06\n", - " Region: \"zone_3\"\tRelError: 1.15214e-05\tAbsError: 1.23437e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.31680e-07\tAbsError: 8.51809e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.19940e-07\tAbsError: 3.82564e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02475e-05\tAbsError: 7.37729e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.22569e-08\tAbsError: 7.73418e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:33\u001b[0m.\u001b[1;36m460\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:33\u001b[0m.\u001b[1;36m460\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6249999999999999\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 3.86687e-01\tAbsError: 2.60316e+15\n", - " Region: \"zone_1\"\tRelError: 1.88189e-01\tAbsError: 3.83312e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88079e-01\tAbsError: 5.27222e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10379e-04\tAbsError: 3.82785e-02\n", - " Region: \"zone_3\"\tRelError: 1.98497e-01\tAbsError: 2.60316e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.41703e-02\tAbsError: 1.34666e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.26131e-03\tAbsError: 1.25651e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81955e-01\tAbsError: 5.32997e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10741e-04\tAbsError: 3.84054e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.22708e-01\tAbsError: 3.87768e+15\n", - " Region: \"zone_1\"\tRelError: 1.91968e-01\tAbsError: 6.75386e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.90026e-01\tAbsError: 2.52604e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94152e-03\tAbsError: 6.75134e-01\n", - " Region: \"zone_3\"\tRelError: 7.30741e-01\tAbsError: 3.87768e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.56619e-03\tAbsError: 1.77246e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.53274e-03\tAbsError: 2.10521e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.16698e-01\tAbsError: 2.55458e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94389e-03\tAbsError: 6.75970e-01\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.52598e-04\tAbsError: 2.26713e+11\n", - " Region: \"zone_1\"\tRelError: 4.63661e-05\tAbsError: 1.62759e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.63197e-05\tAbsError: 1.37060e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.63731e-08\tAbsError: 1.61389e-05\n", - " Region: \"zone_3\"\tRelError: 2.06232e-04\tAbsError: 2.26713e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28007e-05\tAbsError: 1.09151e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.27071e-05\tAbsError: 1.17562e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.80678e-04\tAbsError: 1.41716e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.63910e-08\tAbsError: 1.61454e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.99757e-02\tAbsError: 6.03219e+13\n", - " Region: \"zone_1\"\tRelError: 5.28092e-03\tAbsError: 6.07421e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.26342e-03\tAbsError: 6.43272e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75062e-05\tAbsError: 6.06778e-03\n", - " Region: \"zone_3\"\tRelError: 2.46948e-02\tAbsError: 6.03219e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52421e-04\tAbsError: 2.92320e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.21852e-04\tAbsError: 3.10899e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.41030e-02\tAbsError: 6.47112e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75095e-05\tAbsError: 6.06885e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.14246e+01\tAbsError: 9.22518e+15\n", - " Region: \"zone_1\"\tRelError: 9.67873e+00\tAbsError: 4.19633e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.67873e+00\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.09432e-09\tAbsError: 3.80869e-07\n", - " Region: \"zone_3\"\tRelError: 1.74591e+00\tAbsError: 9.22518e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78063e-01\tAbsError: 4.88541e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.77898e-01\tAbsError: 4.33977e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.89954e-01\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.09484e-09\tAbsError: 3.81056e-07\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.68613e-03\tAbsError: 1.19599e+14\n", - " Region: \"zone_1\"\tRelError: 1.18191e-03\tAbsError: 4.76234e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16819e-03\tAbsError: 9.37959e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37156e-05\tAbsError: 4.75296e-03\n", - " Region: \"zone_3\"\tRelError: 2.50423e-03\tAbsError: 1.19599e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.83643e-04\tAbsError: 5.86149e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.96793e-04\tAbsError: 6.09836e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.91007e-03\tAbsError: 9.45545e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37174e-05\tAbsError: 4.75351e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.39826e+00\tAbsError: 3.43096e+15\n", - " Region: \"zone_1\"\tRelError: 2.04849e-01\tAbsError: 4.45309e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.04721e-01\tAbsError: 2.05839e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27433e-04\tAbsError: 4.43251e-02\n", - " Region: \"zone_3\"\tRelError: 2.19341e+00\tAbsError: 3.43096e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46827e-03\tAbsError: 1.70482e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.46042e-03\tAbsError: 1.72614e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18535e+00\tAbsError: 2.07760e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27493e-04\tAbsError: 4.43450e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.37529e-05\tAbsError: 1.40904e+10\n", - " Region: \"zone_1\"\tRelError: 2.56157e-06\tAbsError: 1.29255e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.52440e-06\tAbsError: 7.69838e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.71758e-08\tAbsError: 1.29178e-05\n", - " Region: \"zone_3\"\tRelError: 1.11914e-05\tAbsError: 1.40904e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.24225e-07\tAbsError: 1.00189e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.55953e-07\tAbsError: 4.07148e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.77400e-06\tAbsError: 8.06496e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.71861e-08\tAbsError: 1.29217e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:35\u001b[0m.\u001b[1;36m723\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.6499999999999999\u001b[0m\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.10405e-01\tAbsError: 3.12560e+13\n", - " Region: \"zone_1\"\tRelError: 1.08840e-02\tAbsError: 4.61195e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08827e-02\tAbsError: 1.71511e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32204e-06\tAbsError: 4.59479e-04\n", - " Region: \"zone_3\"\tRelError: 9.95213e-02\tAbsError: 3.12560e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34947e-04\tAbsError: 1.52362e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.27748e-04\tAbsError: 1.60198e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.92573e-02\tAbsError: 1.72813e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32271e-06\tAbsError: 4.59705e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.76420e+00\tAbsError: 7.94231e+15\n", - " Region: \"zone_1\"\tRelError: 2.30780e-01\tAbsError: 7.95917e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.30643e-01\tAbsError: 3.19526e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37110e-04\tAbsError: 4.76392e-02\n", - " Region: \"zone_3\"\tRelError: 1.53342e+00\tAbsError: 7.94231e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53576e-01\tAbsError: 3.86093e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.24579e-01\tAbsError: 4.08137e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55124e-01\tAbsError: 3.19526e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37110e-04\tAbsError: 4.76392e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.86896e-02\tAbsError: 3.12437e+13\n", - " Region: \"zone_1\"\tRelError: 9.26093e-03\tAbsError: 8.84290e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.25839e-03\tAbsError: 1.24238e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.54067e-06\tAbsError: 8.83047e-04\n", - " Region: \"zone_3\"\tRelError: 9.42871e-03\tAbsError: 3.12437e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.49244e-05\tAbsError: 1.53952e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.98149e-05\tAbsError: 1.58486e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.28143e-03\tAbsError: 1.25479e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.54187e-06\tAbsError: 8.83452e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.26801e-01\tAbsError: 3.21780e+14\n", - " Region: \"zone_1\"\tRelError: 1.55999e-02\tAbsError: 2.70060e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55223e-02\tAbsError: 1.53596e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.76036e-05\tAbsError: 2.69907e-02\n", - " Region: \"zone_3\"\tRelError: 3.11201e-01\tAbsError: 3.21780e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.63679e-04\tAbsError: 1.60119e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.88527e-04\tAbsError: 1.61661e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.10171e-01\tAbsError: 1.54896e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.76380e-05\tAbsError: 2.70022e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.63047e-03\tAbsError: 9.09027e+11\n", - " Region: \"zone_1\"\tRelError: 4.56990e-04\tAbsError: 3.44629e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.55999e-04\tAbsError: 1.41300e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.91190e-07\tAbsError: 3.44488e-04\n", - " Region: \"zone_3\"\tRelError: 4.17348e-03\tAbsError: 9.09027e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33335e-06\tAbsError: 4.38047e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.02288e-05\tAbsError: 4.70980e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.15793e-03\tAbsError: 1.42246e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.91601e-07\tAbsError: 3.44637e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.52664e+01\tAbsError: 1.16964e+16\n", - " Region: \"zone_1\"\tRelError: 5.34885e+01\tAbsError: 4.29340e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.34885e+01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.65399e-10\tAbsError: 1.96786e-07\n", - " Region: \"zone_3\"\tRelError: 1.77791e+00\tAbsError: 1.16964e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.85913e-01\tAbsError: 5.96599e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.85711e-01\tAbsError: 5.73044e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06286e-01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.65730e-10\tAbsError: 1.96905e-07\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.15026e+00\tAbsError: 5.50806e+15\n", - " Region: \"zone_1\"\tRelError: 1.25602e-01\tAbsError: 3.46873e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.25576e-01\tAbsError: 2.58319e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.54865e-05\tAbsError: 8.85540e-03\n", - " Region: \"zone_3\"\tRelError: 1.02466e+00\tAbsError: 5.50806e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.69453e-01\tAbsError: 2.66067e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.19655e-01\tAbsError: 2.84739e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35522e-01\tAbsError: 2.53767e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.54865e-05\tAbsError: 8.85540e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.70169e-04\tAbsError: 3.89103e+12\n", - " Region: \"zone_1\"\tRelError: 1.11728e-04\tAbsError: 2.48812e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11013e-04\tAbsError: 2.80731e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.15158e-07\tAbsError: 2.48531e-04\n", - " Region: \"zone_3\"\tRelError: 1.58440e-04\tAbsError: 3.89103e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.86956e-06\tAbsError: 1.91259e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.01000e-05\tAbsError: 1.97844e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37755e-04\tAbsError: 2.83260e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.15453e-07\tAbsError: 2.48639e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.06749e-01\tAbsError: 1.86094e+14\n", - " Region: \"zone_1\"\tRelError: 8.34420e-03\tAbsError: 3.03935e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 8.33549e-03\tAbsError: 8.31449e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.71533e-06\tAbsError: 3.03103e-03\n", - " Region: \"zone_3\"\tRelError: 1.98405e-01\tAbsError: 1.86094e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.28032e-04\tAbsError: 9.25440e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.88076e-04\tAbsError: 9.35503e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.97980e-01\tAbsError: 8.38945e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.71848e-06\tAbsError: 3.03213e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.49771e-03\tAbsError: 1.64940e+12\n", - " Region: \"zone_1\"\tRelError: 6.42053e-04\tAbsError: 1.77929e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.42002e-04\tAbsError: 9.99896e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.09050e-08\tAbsError: 1.76929e-05\n", - " Region: \"zone_3\"\tRelError: 5.85566e-03\tAbsError: 1.64940e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16109e-06\tAbsError: 8.03293e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.70130e-06\tAbsError: 8.46106e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.84174e-03\tAbsError: 1.00703e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.09341e-08\tAbsError: 1.77035e-05\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 6.33878e+00\tAbsError: 1.22675e+16\n", - " Region: \"zone_1\"\tRelError: 4.76725e+00\tAbsError: 9.34106e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.76707e+00\tAbsError: 3.31000e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73592e-04\tAbsError: 6.03106e-02\n", - " Region: \"zone_3\"\tRelError: 1.57153e+00\tAbsError: 1.22675e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67129e-01\tAbsError: 5.98252e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.36794e-01\tAbsError: 6.28496e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.67430e-01\tAbsError: 3.31000e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73592e-04\tAbsError: 6.03106e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.20405e-01\tAbsError: 1.87055e+15\n", - " Region: \"zone_1\"\tRelError: 1.38535e-01\tAbsError: 5.00612e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.38421e-01\tAbsError: 1.06622e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13548e-04\tAbsError: 3.93990e-02\n", - " Region: \"zone_3\"\tRelError: 3.81870e-01\tAbsError: 1.87055e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.06828e-01\tAbsError: 9.86809e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.30929e-01\tAbsError: 8.83740e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.39995e-02\tAbsError: 1.06623e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13572e-04\tAbsError: 3.94072e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.01858e-03\tAbsError: 1.52771e+12\n", - " Region: \"zone_1\"\tRelError: 5.05888e-04\tAbsError: 2.54426e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.05815e-04\tAbsError: 6.73730e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.30089e-08\tAbsError: 2.53753e-05\n", - " Region: \"zone_3\"\tRelError: 5.12693e-04\tAbsError: 1.52771e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.70016e-06\tAbsError: 7.53515e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.39004e-06\tAbsError: 7.74190e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.05530e-04\tAbsError: 6.80114e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.30427e-08\tAbsError: 2.53868e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.88896e-02\tAbsError: 2.58485e+13\n", - " Region: \"zone_1\"\tRelError: 1.63690e-03\tAbsError: 1.31710e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.63310e-03\tAbsError: 9.88963e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.79528e-06\tAbsError: 1.31612e-03\n", - " Region: \"zone_3\"\tRelError: 3.72527e-02\tAbsError: 2.58485e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.09818e-05\tAbsError: 1.28647e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.53496e-05\tAbsError: 1.29838e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.71926e-02\tAbsError: 9.97598e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.79540e-06\tAbsError: 1.31620e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 5.44825e-04\tAbsError: 5.87780e+10\n", - " Region: \"zone_1\"\tRelError: 5.39394e-05\tAbsError: 2.02429e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.38812e-05\tAbsError: 6.87611e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.82246e-08\tAbsError: 2.02360e-05\n", - " Region: \"zone_3\"\tRelError: 4.90886e-04\tAbsError: 5.87780e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46411e-07\tAbsError: 2.85251e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.30809e-07\tAbsError: 3.02529e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.90250e-04\tAbsError: 6.91269e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.82487e-08\tAbsError: 2.02448e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.27823e+00\tAbsError: 8.68356e+15\n", - " Region: \"zone_1\"\tRelError: 1.88988e-01\tAbsError: 4.08652e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88944e-01\tAbsError: 2.57034e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.36930e-05\tAbsError: 1.51618e-02\n", - " Region: \"zone_3\"\tRelError: 1.08924e+00\tAbsError: 8.68356e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.90758e-01\tAbsError: 4.26881e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.47066e-01\tAbsError: 4.41475e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51374e-01\tAbsError: 2.52748e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.47625e-05\tAbsError: 1.55328e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.56859e-02\tAbsError: 3.07403e+14\n", - " Region: \"zone_1\"\tRelError: 8.91573e-03\tAbsError: 4.12176e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.79758e-03\tAbsError: 2.04906e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18153e-04\tAbsError: 4.10127e-02\n", - " Region: \"zone_3\"\tRelError: 8.67701e-02\tAbsError: 3.07403e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.27638e-02\tAbsError: 1.70944e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03232e-02\tAbsError: 1.36458e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35648e-02\tAbsError: 2.15801e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.18309e-04\tAbsError: 4.10657e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.11187e-05\tAbsError: 1.04011e+11\n", - " Region: \"zone_1\"\tRelError: 5.62860e-06\tAbsError: 1.33801e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.59012e-06\tAbsError: 7.79374e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.84793e-08\tAbsError: 1.33723e-05\n", - " Region: \"zone_3\"\tRelError: 5.49015e-06\tAbsError: 1.04011e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.73835e-07\tAbsError: 5.10986e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.84056e-07\tAbsError: 5.29122e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.79376e-06\tAbsError: 7.86425e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.84956e-08\tAbsError: 1.33784e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.59304e-02\tAbsError: 1.10975e+13\n", - " Region: \"zone_1\"\tRelError: 6.60647e-04\tAbsError: 2.32906e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.59978e-04\tAbsError: 3.98553e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.68839e-07\tAbsError: 2.32508e-04\n", - " Region: \"zone_3\"\tRelError: 1.52698e-02\tAbsError: 1.10975e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32236e-05\tAbsError: 5.52234e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.14382e-05\tAbsError: 5.57521e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.52444e-02\tAbsError: 4.02224e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.69094e-07\tAbsError: 2.32596e-04\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:40\u001b[0m.\u001b[1;36m977\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:40\u001b[0m.\u001b[1;36m977\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.9444444444444445\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.92595e-04\tAbsError: 9.49473e+10\n", - " Region: \"zone_1\"\tRelError: 3.87978e-05\tAbsError: 2.02444e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.87920e-05\tAbsError: 5.96621e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.80757e-09\tAbsError: 2.01847e-06\n", - " Region: \"zone_3\"\tRelError: 3.53797e-04\tAbsError: 9.49473e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.10989e-07\tAbsError: 4.62324e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.83783e-07\tAbsError: 4.87150e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52997e-04\tAbsError: 6.00786e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.81025e-09\tAbsError: 2.01943e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.24591e+00\tAbsError: 3.26346e+15\n", - " Region: \"zone_1\"\tRelError: 1.80867e+00\tAbsError: 8.31621e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.80847e+00\tAbsError: 1.22663e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.04347e-04\tAbsError: 7.08958e-02\n", - " Region: \"zone_3\"\tRelError: 4.37234e-01\tAbsError: 3.26346e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.32552e-01\tAbsError: 1.73554e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.50687e-01\tAbsError: 1.52791e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.37915e-02\tAbsError: 1.22664e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.04553e-04\tAbsError: 7.09655e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.23155e-02\tAbsError: 2.21938e+13\n", - " Region: \"zone_1\"\tRelError: 4.98263e-03\tAbsError: 7.88142e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.98041e-03\tAbsError: 1.57019e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.22537e-06\tAbsError: 7.72440e-04\n", - " Region: \"zone_3\"\tRelError: 1.73329e-02\tAbsError: 2.21938e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42994e-03\tAbsError: 9.94824e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.30496e-03\tAbsError: 1.22456e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.45957e-02\tAbsError: 1.65306e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.22982e-06\tAbsError: 7.73986e-04\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.34486e-03\tAbsError: 1.97182e+12\n", - " Region: \"zone_1\"\tRelError: 1.39485e-04\tAbsError: 8.65138e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39236e-04\tAbsError: 6.47581e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.48683e-07\tAbsError: 8.64490e-05\n", - " Region: \"zone_3\"\tRelError: 3.20538e-03\tAbsError: 1.97182e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.27846e-06\tAbsError: 9.81632e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.12485e-06\tAbsError: 9.90188e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.20072e-03\tAbsError: 6.54815e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.48776e-07\tAbsError: 8.64826e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 5.03275e-05\tAbsError: 9.08763e+09\n", - " Region: \"zone_1\"\tRelError: 4.97773e-06\tAbsError: 1.23989e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.97416e-06\tAbsError: 6.85123e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.56554e-09\tAbsError: 1.23921e-06\n", - " Region: \"zone_3\"\tRelError: 4.53498e-05\tAbsError: 9.08763e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.78500e-08\tAbsError: 4.42118e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.59273e-08\tAbsError: 4.66645e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 4.52724e-05\tAbsError: 6.89457e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.56702e-09\tAbsError: 1.23975e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:42\u001b[0m.\u001b[1;36m573\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 0.9\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.22369e+02\tAbsError: 9.43638e+17\n", - " Region: \"zone_1\"\tRelError: 2.81696e+02\tAbsError: 4.20729e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.81696e+02\tAbsError: 4.20724e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.48401e-09\tAbsError: 5.15814e-07\n", - " Region: \"zone_3\"\tRelError: 4.06736e+01\tAbsError: 9.43638e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.21983e-01\tAbsError: 4.58740e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.01626e-01\tAbsError: 4.84898e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 3.92499e+01\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.48495e-09\tAbsError: 5.16134e-07\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.09725e-01\tAbsError: 5.66844e+14\n", - " Region: \"zone_1\"\tRelError: 9.74944e-02\tAbsError: 6.02281e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.73217e-02\tAbsError: 2.69090e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72760e-04\tAbsError: 5.99590e-02\n", - " Region: \"zone_3\"\tRelError: 1.12230e-01\tAbsError: 5.66844e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16841e-02\tAbsError: 3.36059e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.40653e-02\tAbsError: 2.30785e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.63081e-02\tAbsError: 2.86751e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72917e-04\tAbsError: 6.00120e-02\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.15137e-03\tAbsError: 7.06680e+11\n", - " Region: \"zone_1\"\tRelError: 4.79513e-05\tAbsError: 1.84347e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.78983e-05\tAbsError: 2.30046e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.29631e-08\tAbsError: 1.84117e-05\n", - " Region: \"zone_3\"\tRelError: 1.10342e-03\tAbsError: 7.06680e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.28767e-07\tAbsError: 3.51782e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.37241e-07\tAbsError: 3.54898e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10180e-03\tAbsError: 2.32700e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.29832e-08\tAbsError: 1.84191e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.30610e-04\tAbsError: 4.37226e+11\n", - " Region: \"zone_1\"\tRelError: 1.49974e-04\tAbsError: 1.29107e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46259e-04\tAbsError: 4.50181e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.71544e-06\tAbsError: 1.29062e-03\n", - " Region: \"zone_3\"\tRelError: 4.80636e-04\tAbsError: 4.37226e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05631e-05\tAbsError: 1.66427e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.21073e-05\tAbsError: 2.70799e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.34250e-04\tAbsError: 4.61483e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.71550e-06\tAbsError: 1.29067e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.46572e+02\tAbsError: 5.04463e+17\n", - " Region: \"zone_1\"\tRelError: 1.07438e+02\tAbsError: 9.56605e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07435e+02\tAbsError: 3.20815e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.66107e-03\tAbsError: 9.24524e-01\n", - " Region: \"zone_3\"\tRelError: 2.39134e+02\tAbsError: 5.04463e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.90578e-01\tAbsError: 2.52980e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.63428e-01\tAbsError: 2.51483e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 2.38177e+02\tAbsError: 3.20820e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.66135e-03\tAbsError: 9.24642e-01\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.75731e+01\tAbsError: 5.68784e+17\n", - " Region: \"zone_1\"\tRelError: 3.83859e+01\tAbsError: 4.09543e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.83859e+01\tAbsError: 4.09541e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.16236e-10\tAbsError: 1.79418e-07\n", - " Region: \"zone_3\"\tRelError: 1.91873e+01\tAbsError: 5.68784e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.35377e-01\tAbsError: 2.75826e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.22188e-01\tAbsError: 2.92959e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77297e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.16460e-10\tAbsError: 1.79501e-07\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.32859e-02\tAbsError: 3.83563e+13\n", - " Region: \"zone_1\"\tRelError: 8.24035e-03\tAbsError: 7.96612e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 8.23812e-03\tAbsError: 2.18441e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.23240e-06\tAbsError: 7.74768e-04\n", - " Region: \"zone_3\"\tRelError: 2.50456e-02\tAbsError: 3.83563e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.92826e-03\tAbsError: 1.79088e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.76021e-03\tAbsError: 2.04475e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.13549e-02\tAbsError: 2.23899e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.24276e-06\tAbsError: 7.78349e-04\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 2.60636e-04\tAbsError: 1.46372e+11\n", - " Region: \"zone_1\"\tRelError: 1.08690e-05\tAbsError: 6.03090e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08517e-05\tAbsError: 5.09600e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73339e-08\tAbsError: 6.02581e-06\n", - " Region: \"zone_3\"\tRelError: 2.49767e-04\tAbsError: 1.46372e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68311e-07\tAbsError: 7.29196e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.63262e-07\tAbsError: 7.34528e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49418e-04\tAbsError: 5.15309e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73406e-08\tAbsError: 6.02830e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.71714e-03\tAbsError: 1.26020e+12\n", - " Region: \"zone_1\"\tRelError: 4.08492e-04\tAbsError: 8.25373e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.08256e-04\tAbsError: 6.27594e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.35973e-07\tAbsError: 8.19097e-05\n", - " Region: \"zone_3\"\tRelError: 1.30864e-03\tAbsError: 1.26020e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94254e-05\tAbsError: 6.33437e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.91447e-05\tAbsError: 6.26764e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18984e-03\tAbsError: 6.44970e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36012e-07\tAbsError: 8.19244e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 3.60262e+03\tAbsError: 1.07930e+17\n", - " Region: \"zone_1\"\tRelError: 1.36612e+02\tAbsError: 3.37833e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36611e+02\tAbsError: 2.58874e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.98630e-04\tAbsError: 3.11946e-01\n", - " Region: \"zone_3\"\tRelError: 3.46601e+03\tAbsError: 1.07930e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.81165e-01\tAbsError: 5.42175e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.02149e-01\tAbsError: 5.37124e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.46573e+03\tAbsError: 2.58951e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.02058e-04\tAbsError: 3.13136e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.10779e+01\tAbsError: 4.06443e+17\n", - " Region: \"zone_1\"\tRelError: 1.97168e+01\tAbsError: 4.69738e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.97155e+01\tAbsError: 3.07629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26517e-03\tAbsError: 4.38975e-01\n", - " Region: \"zone_3\"\tRelError: 1.13612e+01\tAbsError: 4.06443e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.26663e-01\tAbsError: 2.03016e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.10593e-01\tAbsError: 2.03427e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03227e+01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26614e-03\tAbsError: 4.39294e-01\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 8.12930e-05\tAbsError: 4.69072e+10\n", - " Region: \"zone_1\"\tRelError: 3.38946e-06\tAbsError: 1.38742e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.38548e-06\tAbsError: 1.62196e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.98640e-09\tAbsError: 1.38580e-06\n", - " Region: \"zone_3\"\tRelError: 7.79035e-05\tAbsError: 4.69072e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.45193e-08\tAbsError: 2.33605e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.92263e-08\tAbsError: 2.35467e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.77958e-05\tAbsError: 1.64038e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.98804e-09\tAbsError: 1.38641e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:45\u001b[0m.\u001b[1;36m754\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 1.0\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.77352e-04\tAbsError: 7.13394e+11\n", - " Region: \"zone_1\"\tRelError: 2.80569e-04\tAbsError: 1.79321e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.75403e-04\tAbsError: 4.87828e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.16541e-06\tAbsError: 1.79273e-03\n", - " Region: \"zone_3\"\tRelError: 1.96783e-04\tAbsError: 7.13394e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.19881e-05\tAbsError: 4.92944e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.32443e-05\tAbsError: 2.20450e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46385e-04\tAbsError: 4.93945e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.16541e-06\tAbsError: 1.79273e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.66725e-04\tAbsError: 7.91368e+10\n", - " Region: \"zone_1\"\tRelError: 4.05183e-05\tAbsError: 7.96892e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.02890e-05\tAbsError: 4.69103e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.29260e-07\tAbsError: 7.96423e-05\n", - " Region: \"zone_3\"\tRelError: 1.26207e-04\tAbsError: 7.91368e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.17347e-06\tAbsError: 3.76121e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.20199e-06\tAbsError: 4.15247e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17602e-04\tAbsError: 4.78638e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.29342e-07\tAbsError: 7.96708e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 4.48960e+02\tAbsError: 9.69691e+16\n", - " Region: \"zone_1\"\tRelError: 4.44741e+02\tAbsError: 1.46848e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.44741e+02\tAbsError: 2.58943e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.47880e-04\tAbsError: 1.20954e-01\n", - " Region: \"zone_3\"\tRelError: 4.21888e+00\tAbsError: 9.69691e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.30659e-01\tAbsError: 4.85459e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.34310e-01\tAbsError: 4.84232e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.85356e+00\tAbsError: 2.58906e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.48053e-04\tAbsError: 1.21009e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.81757e+03\tAbsError: 8.17376e+15\n", - " Region: \"zone_1\"\tRelError: 7.13883e+01\tAbsError: 4.06377e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 7.13872e+01\tAbsError: 1.08337e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13430e-03\tAbsError: 3.95543e-01\n", - " Region: \"zone_3\"\tRelError: 1.74618e+03\tAbsError: 8.17376e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.73025e-02\tAbsError: 4.10350e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.12778e-02\tAbsError: 4.07026e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74614e+03\tAbsError: 1.08344e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13497e-03\tAbsError: 3.95788e-01\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.49838e-03\tAbsError: 1.76569e+12\n", - " Region: \"zone_1\"\tRelError: 6.54941e-04\tAbsError: 9.30889e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.54675e-04\tAbsError: 8.39400e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.65787e-07\tAbsError: 9.22495e-05\n", - " Region: \"zone_3\"\tRelError: 1.84344e-03\tAbsError: 1.76569e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77494e-05\tAbsError: 8.82777e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.71860e-05\tAbsError: 8.82910e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.68824e-03\tAbsError: 8.40369e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.65787e-07\tAbsError: 9.22495e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.58363e+04\tAbsError: 1.47473e+18\n", - " Region: \"zone_1\"\tRelError: 6.98536e+03\tAbsError: 4.09543e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.98536e+03\tAbsError: 4.09539e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20641e-09\tAbsError: 4.19390e-07\n", - " Region: \"zone_3\"\tRelError: 2.88509e+04\tAbsError: 1.47473e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.64637e-01\tAbsError: 7.31003e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.38568e-01\tAbsError: 7.43726e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88496e+04\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20691e-09\tAbsError: 4.19574e-07\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.22730e-04\tAbsError: 7.90058e+10\n", - " Region: \"zone_1\"\tRelError: 2.95470e-05\tAbsError: 9.77951e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.95189e-05\tAbsError: 3.60460e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.80478e-08\tAbsError: 9.74347e-06\n", - " Region: \"zone_3\"\tRelError: 9.31834e-05\tAbsError: 7.90058e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61463e-06\tAbsError: 4.44513e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.59003e-06\tAbsError: 3.45545e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 8.59506e-05\tAbsError: 3.66667e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.80556e-08\tAbsError: 9.74620e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.03712e+00\tAbsError: 1.21527e+16\n", - " Region: \"zone_1\"\tRelError: 1.00977e+00\tAbsError: 5.07362e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00834e+00\tAbsError: 9.16487e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42992e-03\tAbsError: 4.98197e-01\n", - " Region: \"zone_3\"\tRelError: 4.02736e+00\tAbsError: 1.21527e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.24782e-02\tAbsError: 5.84262e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.44637e-02\tAbsError: 6.31012e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 3.96898e+00\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43302e-03\tAbsError: 4.99291e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.54793e+00\tAbsError: 3.30288e+15\n", - " Region: \"zone_1\"\tRelError: 4.07651e-01\tAbsError: 6.07886e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.05905e-01\tAbsError: 1.75242e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.74578e-03\tAbsError: 6.07711e-01\n", - " Region: \"zone_3\"\tRelError: 1.14027e+00\tAbsError: 3.30288e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.14712e-02\tAbsError: 1.50798e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.76038e-03\tAbsError: 1.79491e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12430e+00\tAbsError: 1.77365e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.74637e-03\tAbsError: 6.07935e-01\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.85627e-05\tAbsError: 9.39763e+09\n", - " Region: \"zone_1\"\tRelError: 4.51595e-06\tAbsError: 5.40487e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.50041e-06\tAbsError: 4.76968e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.55448e-08\tAbsError: 5.40010e-06\n", - " Region: \"zone_3\"\tRelError: 1.40468e-05\tAbsError: 9.39763e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.58508e-07\tAbsError: 5.36588e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.58619e-07\tAbsError: 4.03174e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31141e-05\tAbsError: 4.85651e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.55471e-08\tAbsError: 5.40090e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.99060e-04\tAbsError: 9.07144e+10\n", - " Region: \"zone_1\"\tRelError: 5.32122e-05\tAbsError: 1.06982e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.29043e-05\tAbsError: 5.30299e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.07864e-07\tAbsError: 1.06929e-04\n", - " Region: \"zone_3\"\tRelError: 1.45848e-04\tAbsError: 9.07144e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37854e-06\tAbsError: 4.24042e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.42241e-06\tAbsError: 4.83102e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36739e-04\tAbsError: 5.34823e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.07966e-07\tAbsError: 1.06964e-04\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:48\u001b[0m.\u001b[1;36m797\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:48\u001b[0m.\u001b[1;36m797\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7299999999999999\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 8.73385e+02\tAbsError: 4.80817e+17\n", - " Region: \"zone_1\"\tRelError: 4.36320e+02\tAbsError: 1.19061e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 4.36317e+02\tAbsError: 3.07626e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.33293e-03\tAbsError: 1.15985e+00\n", - " Region: \"zone_3\"\tRelError: 4.37065e+02\tAbsError: 4.80817e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.79759e-01\tAbsError: 2.41402e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.64874e-01\tAbsError: 2.39414e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 4.36317e+02\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.33331e-03\tAbsError: 1.15994e+00\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.22708e-01\tAbsError: 3.87768e+15\n", - " Region: \"zone_1\"\tRelError: 1.91968e-01\tAbsError: 6.75386e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.90026e-01\tAbsError: 2.52604e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94152e-03\tAbsError: 6.75134e-01\n", - " Region: \"zone_3\"\tRelError: 7.30741e-01\tAbsError: 3.87768e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.56619e-03\tAbsError: 1.77246e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.53274e-03\tAbsError: 2.10521e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.16698e-01\tAbsError: 2.55458e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94389e-03\tAbsError: 6.75970e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.59463e+01\tAbsError: 2.98114e+15\n", - " Region: \"zone_1\"\tRelError: 2.97245e-01\tAbsError: 3.65177e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.97140e-01\tAbsError: 1.73243e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.04375e-04\tAbsError: 3.63445e-02\n", - " Region: \"zone_3\"\tRelError: 4.56490e+01\tAbsError: 2.98114e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.10791e-03\tAbsError: 1.48408e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.01404e-03\tAbsError: 1.49706e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 4.56418e+01\tAbsError: 1.74736e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.04419e-04\tAbsError: 3.63588e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.73943e-04\tAbsError: 1.07365e+11\n", - " Region: \"zone_1\"\tRelError: 4.60985e-05\tAbsError: 1.16082e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.60652e-05\tAbsError: 4.61233e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.32888e-08\tAbsError: 1.15620e-05\n", - " Region: \"zone_3\"\tRelError: 1.27845e-04\tAbsError: 1.07365e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.59108e-06\tAbsError: 6.01847e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.54678e-06\tAbsError: 4.71802e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18674e-04\tAbsError: 4.74794e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.32988e-08\tAbsError: 1.15655e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.66204e+03\tAbsError: 6.93474e+16\n", - " Region: \"zone_1\"\tRelError: 8.76338e+02\tAbsError: 4.68048e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 8.76336e+02\tAbsError: 2.58614e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26825e-03\tAbsError: 4.42186e-01\n", - " Region: \"zone_3\"\tRelError: 7.85702e+02\tAbsError: 6.93474e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.33245e-02\tAbsError: 3.47970e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.15582e-02\tAbsError: 3.45503e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 7.85556e+02\tAbsError: 2.58778e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26845e-03\tAbsError: 4.42250e-01\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.02177e+01\tAbsError: 4.24857e+16\n", - " Region: \"zone_1\"\tRelError: 5.84071e+01\tAbsError: 4.19638e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.84071e+01\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.65927e-09\tAbsError: 9.23800e-07\n", - " Region: \"zone_3\"\tRelError: 1.81056e+00\tAbsError: 4.24857e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77015e-01\tAbsError: 2.10830e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.76332e-01\tAbsError: 2.14027e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.57212e-01\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.65955e-09\tAbsError: 9.23899e-07\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.30314e+00\tAbsError: 2.60062e+14\n", - " Region: \"zone_1\"\tRelError: 5.30757e-02\tAbsError: 2.35199e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.30082e-02\tAbsError: 1.21066e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.75164e-05\tAbsError: 2.35078e-02\n", - " Region: \"zone_3\"\tRelError: 6.25006e+00\tAbsError: 2.60062e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.72969e-04\tAbsError: 1.29545e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.51490e-04\tAbsError: 1.30517e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.24897e+00\tAbsError: 1.22004e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.75445e-05\tAbsError: 2.35175e-02\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.39826e+00\tAbsError: 3.43096e+15\n", - " Region: \"zone_1\"\tRelError: 2.04849e-01\tAbsError: 4.45309e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.04721e-01\tAbsError: 2.05839e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27433e-04\tAbsError: 4.43251e-02\n", - " Region: \"zone_3\"\tRelError: 2.19341e+00\tAbsError: 3.43096e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46827e-03\tAbsError: 1.70482e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.46042e-03\tAbsError: 1.72614e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18535e+00\tAbsError: 2.07760e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27493e-04\tAbsError: 4.43450e-02\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.42423e-05\tAbsError: 1.13845e+10\n", - " Region: \"zone_1\"\tRelError: 6.77172e-06\tAbsError: 7.06656e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.75139e-06\tAbsError: 5.42330e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.03301e-08\tAbsError: 7.06113e-06\n", - " Region: \"zone_3\"\tRelError: 1.74705e-05\tAbsError: 1.13845e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.20454e-07\tAbsError: 6.31989e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.20087e-07\tAbsError: 5.06458e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.64097e-05\tAbsError: 5.58892e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.03324e-08\tAbsError: 7.06195e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:39:51\u001b[0m.\u001b[1;36m386\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.7599999999999999\u001b[0m\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.46324e+03\tAbsError: 5.14576e+15\n", - " Region: \"zone_1\"\tRelError: 6.87978e+02\tAbsError: 7.78255e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 6.87976e+02\tAbsError: 9.16449e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19704e-03\tAbsError: 7.69091e-01\n", - " Region: \"zone_3\"\tRelError: 7.75259e+02\tAbsError: 5.14576e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52317e-02\tAbsError: 2.57522e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.85097e-03\tAbsError: 2.57054e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.75237e+02\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19704e-03\tAbsError: 7.69091e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.09627e+00\tAbsError: 4.36555e+16\n", - " Region: \"zone_1\"\tRelError: 5.02975e-01\tAbsError: 1.96470e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.02501e-01\tAbsError: 3.19524e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73827e-04\tAbsError: 1.64518e-01\n", - " Region: \"zone_3\"\tRelError: 1.59330e+00\tAbsError: 4.36555e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.49345e-01\tAbsError: 2.19735e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.13383e-01\tAbsError: 2.16820e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.30094e-01\tAbsError: 3.19525e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.73827e-04\tAbsError: 1.64518e-01\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.26801e-01\tAbsError: 3.21780e+14\n", - " Region: \"zone_1\"\tRelError: 1.55999e-02\tAbsError: 2.70060e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55223e-02\tAbsError: 1.53596e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.76036e-05\tAbsError: 2.69907e-02\n", - " Region: \"zone_3\"\tRelError: 3.11201e-01\tAbsError: 3.21780e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.63679e-04\tAbsError: 1.60119e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.88527e-04\tAbsError: 1.61661e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.10171e-01\tAbsError: 1.54896e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.76380e-05\tAbsError: 2.70022e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.68467e+00\tAbsError: 1.58417e+14\n", - " Region: \"zone_1\"\tRelError: 2.74530e-02\tAbsError: 2.54276e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.74457e-02\tAbsError: 6.86415e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.30395e-06\tAbsError: 2.53589e-03\n", - " Region: \"zone_3\"\tRelError: 3.65721e+00\tAbsError: 1.58417e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.03404e-04\tAbsError: 7.88728e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.05406e-04\tAbsError: 7.95438e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.65690e+00\tAbsError: 6.92132e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.30395e-06\tAbsError: 2.53589e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.96023e+00\tAbsError: 5.32372e+15\n", - " Region: \"zone_1\"\tRelError: 4.54639e+00\tAbsError: 1.02863e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 4.54344e+00\tAbsError: 2.66559e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.94644e-03\tAbsError: 1.02837e+00\n", - " Region: \"zone_3\"\tRelError: 2.41384e+00\tAbsError: 5.32372e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.51219e-02\tAbsError: 2.60450e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.65403e-03\tAbsError: 2.71922e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.38011e+00\tAbsError: 2.68000e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.95139e-03\tAbsError: 1.03011e+00\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.66197e+01\tAbsError: 6.69458e+16\n", - " Region: \"zone_1\"\tRelError: 1.47623e+01\tAbsError: 4.29349e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.47623e+01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.23687e-09\tAbsError: 1.12425e-06\n", - " Region: \"zone_3\"\tRelError: 1.85742e+00\tAbsError: 6.69458e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.84273e-01\tAbsError: 3.33953e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83269e-01\tAbsError: 3.35506e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.89878e-01\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.23715e-09\tAbsError: 1.12434e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.23598e+00\tAbsError: 2.71916e+16\n", - " Region: \"zone_1\"\tRelError: 1.81508e-01\tAbsError: 1.13965e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.81254e-01\tAbsError: 2.57850e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.54037e-04\tAbsError: 8.81803e-02\n", - " Region: \"zone_3\"\tRelError: 1.05447e+00\tAbsError: 2.71916e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.57503e-01\tAbsError: 1.35855e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.99712e-01\tAbsError: 1.36061e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.97001e-01\tAbsError: 2.47369e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.54037e-04\tAbsError: 8.81803e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.06749e-01\tAbsError: 1.86094e+14\n", - " Region: \"zone_1\"\tRelError: 8.34420e-03\tAbsError: 3.03935e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 8.33549e-03\tAbsError: 8.31449e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.71533e-06\tAbsError: 3.03103e-03\n", - " Region: \"zone_3\"\tRelError: 1.98405e-01\tAbsError: 1.86094e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.28032e-04\tAbsError: 9.25440e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.88076e-04\tAbsError: 9.35503e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.97980e-01\tAbsError: 8.38945e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.71848e-06\tAbsError: 3.03213e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.06513e-01\tAbsError: 2.09865e+13\n", - " Region: \"zone_1\"\tRelError: 5.18521e-03\tAbsError: 1.14757e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.18190e-03\tAbsError: 7.90884e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.30299e-06\tAbsError: 1.14677e-03\n", - " Region: \"zone_3\"\tRelError: 3.01328e-01\tAbsError: 2.09865e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.56136e-05\tAbsError: 1.04559e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.15612e-05\tAbsError: 1.05307e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.01257e-01\tAbsError: 7.97233e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.30324e-06\tAbsError: 1.14681e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.90017e+00\tAbsError: 6.90569e+16\n", - " Region: \"zone_1\"\tRelError: 2.57152e-01\tAbsError: 2.59228e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.56500e-01\tAbsError: 3.31000e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.51506e-04\tAbsError: 2.26128e-01\n", - " Region: \"zone_3\"\tRelError: 1.64302e+00\tAbsError: 6.90569e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.60822e-01\tAbsError: 3.53198e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.20888e-01\tAbsError: 3.37371e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.60656e-01\tAbsError: 3.31000e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.51506e-04\tAbsError: 2.26128e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.07732e+01\tAbsError: 5.66142e+15\n", - " Region: \"zone_1\"\tRelError: 6.09549e-01\tAbsError: 6.00187e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.09378e-01\tAbsError: 2.72034e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71203e-04\tAbsError: 5.97467e-02\n", - " Region: \"zone_3\"\tRelError: 6.01636e+01\tAbsError: 5.66142e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13691e-02\tAbsError: 2.75447e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.48872e-03\tAbsError: 2.90695e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 6.01496e+01\tAbsError: 2.74039e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71270e-04\tAbsError: 5.97699e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.40788e+00\tAbsError: 8.15212e+15\n", - " Region: \"zone_1\"\tRelError: 9.95059e-01\tAbsError: 3.32770e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.94994e-01\tAbsError: 1.06614e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.51530e-05\tAbsError: 2.26155e-02\n", - " Region: \"zone_3\"\tRelError: 4.12819e-01\tAbsError: 8.15212e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.93063e-01\tAbsError: 4.25836e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10930e-01\tAbsError: 3.89376e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08761e-01\tAbsError: 1.06615e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.51530e-05\tAbsError: 2.26155e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.88896e-02\tAbsError: 2.58485e+13\n", - " Region: \"zone_1\"\tRelError: 1.63690e-03\tAbsError: 1.31710e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.63310e-03\tAbsError: 9.88963e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.79528e-06\tAbsError: 1.31612e-03\n", - " Region: \"zone_3\"\tRelError: 3.72527e-02\tAbsError: 2.58485e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.09818e-05\tAbsError: 1.28647e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.53496e-05\tAbsError: 1.29838e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.71926e-02\tAbsError: 9.97598e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.79540e-06\tAbsError: 1.31620e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.41465e-01\tAbsError: 9.26962e+12\n", - " Region: \"zone_1\"\tRelError: 2.09965e-03\tAbsError: 1.99365e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.09908e-03\tAbsError: 3.25300e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.72195e-07\tAbsError: 1.99040e-04\n", - " Region: \"zone_3\"\tRelError: 1.39366e-01\tAbsError: 9.26962e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.52741e-06\tAbsError: 4.61773e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.59504e-06\tAbsError: 4.65189e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39346e-01\tAbsError: 3.27986e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.72409e-07\tAbsError: 1.99115e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 3.51587e+00\tAbsError: 4.22581e+16\n", - " Region: \"zone_1\"\tRelError: 1.92551e+00\tAbsError: 1.21029e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.92524e+00\tAbsError: 2.58362e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.74346e-04\tAbsError: 9.51931e-02\n", - " Region: \"zone_3\"\tRelError: 1.59036e+00\tAbsError: 4.22581e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.69859e-01\tAbsError: 2.15299e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.09624e-01\tAbsError: 2.07282e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 7.10598e-01\tAbsError: 2.40553e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.74346e-04\tAbsError: 9.51931e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.18137e+00\tAbsError: 3.71256e+14\n", - " Region: \"zone_1\"\tRelError: 8.31734e-02\tAbsError: 3.74686e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.30661e-02\tAbsError: 1.92544e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.07324e-04\tAbsError: 3.74493e-02\n", - " Region: \"zone_3\"\tRelError: 1.09819e+00\tAbsError: 3.71256e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23962e-03\tAbsError: 1.84907e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.91184e-04\tAbsError: 1.86349e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09615e+00\tAbsError: 1.93888e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.07368e-04\tAbsError: 3.74645e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.21400e-01\tAbsError: 1.89468e+15\n", - " Region: \"zone_1\"\tRelError: 1.16917e-01\tAbsError: 2.47871e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16203e-01\tAbsError: 3.32836e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.13838e-04\tAbsError: 2.47538e-01\n", - " Region: \"zone_3\"\tRelError: 1.04483e-01\tAbsError: 1.89468e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.02995e-02\tAbsError: 9.56907e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.60325e-02\tAbsError: 9.37771e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.74370e-02\tAbsError: 3.32836e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.13838e-04\tAbsError: 2.47538e-01\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.23651e-02\tAbsError: 1.59153e+12\n", - " Region: \"zone_1\"\tRelError: 4.30371e-04\tAbsError: 7.45029e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.30157e-04\tAbsError: 5.34684e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.14025e-07\tAbsError: 7.44495e-05\n", - " Region: \"zone_3\"\tRelError: 2.19347e-02\tAbsError: 1.59153e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.02759e-06\tAbsError: 7.93109e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.49227e-06\tAbsError: 7.98425e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.19300e-02\tAbsError: 5.40337e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.14105e-07\tAbsError: 7.44781e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.59304e-02\tAbsError: 1.10975e+13\n", - " Region: \"zone_1\"\tRelError: 6.60647e-04\tAbsError: 2.32906e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.59978e-04\tAbsError: 3.98553e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.68839e-07\tAbsError: 2.32508e-04\n", - " Region: \"zone_3\"\tRelError: 1.52698e-02\tAbsError: 1.10975e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32236e-05\tAbsError: 5.52234e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.14382e-05\tAbsError: 5.57521e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.52444e-02\tAbsError: 4.02224e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.69094e-07\tAbsError: 2.32596e-04\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.78234e+01\tAbsError: 1.53845e+16\n", - " Region: \"zone_1\"\tRelError: 2.71002e+01\tAbsError: 6.40599e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.71001e+01\tAbsError: 1.22653e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.49294e-04\tAbsError: 5.17946e-02\n", - " Region: \"zone_3\"\tRelError: 7.23191e-01\tAbsError: 1.53845e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05690e-01\tAbsError: 7.89233e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.16443e-01\tAbsError: 7.49218e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 4.00908e-01\tAbsError: 1.22654e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.49294e-04\tAbsError: 5.17946e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.46007e+00\tAbsError: 2.29640e+14\n", - " Region: \"zone_1\"\tRelError: 4.03111e-02\tAbsError: 3.94907e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 4.02998e-02\tAbsError: 1.05545e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13173e-05\tAbsError: 3.93851e-03\n", - " Region: \"zone_3\"\tRelError: 1.41976e+00\tAbsError: 2.29640e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16328e-04\tAbsError: 1.14327e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.52600e-04\tAbsError: 1.15314e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41908e+00\tAbsError: 1.06317e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13180e-05\tAbsError: 3.93853e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.51782e-01\tAbsError: 3.85189e+14\n", - " Region: \"zone_1\"\tRelError: 1.01301e-01\tAbsError: 1.58596e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01255e-01\tAbsError: 6.95270e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.55327e-05\tAbsError: 1.57901e-02\n", - " Region: \"zone_3\"\tRelError: 1.50482e-01\tAbsError: 3.85189e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.20144e-03\tAbsError: 1.95375e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.09233e-03\tAbsError: 1.89813e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40142e-01\tAbsError: 7.28790e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.55327e-05\tAbsError: 1.57901e-02\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 7.73891e-03\tAbsError: 5.79413e+11\n", - " Region: \"zone_1\"\tRelError: 1.48362e-04\tAbsError: 1.55214e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.48317e-04\tAbsError: 1.89932e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.45655e-08\tAbsError: 1.55024e-05\n", - " Region: \"zone_3\"\tRelError: 7.59054e-03\tAbsError: 5.79413e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.23531e-07\tAbsError: 2.88725e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.27579e-07\tAbsError: 2.90688e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 7.58925e-03\tAbsError: 1.92003e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.45824e-08\tAbsError: 1.55087e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.34486e-03\tAbsError: 1.97182e+12\n", - " Region: \"zone_1\"\tRelError: 1.39485e-04\tAbsError: 8.65138e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39236e-04\tAbsError: 6.47581e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.48683e-07\tAbsError: 8.64490e-05\n", - " Region: \"zone_3\"\tRelError: 3.20538e-03\tAbsError: 1.97182e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.27846e-06\tAbsError: 9.81632e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.12485e-06\tAbsError: 9.90188e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.20072e-03\tAbsError: 6.54815e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.48776e-07\tAbsError: 8.64826e-05\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 5.78429e-01\tAbsError: 3.07251e+15\n", - " Region: \"zone_1\"\tRelError: 5.04734e-01\tAbsError: 2.71742e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.03951e-01\tAbsError: 3.65281e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.82895e-04\tAbsError: 2.71377e-01\n", - " Region: \"zone_3\"\tRelError: 7.36955e-02\tAbsError: 3.07251e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.87825e-02\tAbsError: 1.69644e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.61675e-02\tAbsError: 1.37607e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.96264e-03\tAbsError: 3.65281e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.82895e-04\tAbsError: 2.71377e-01\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.11111e-01\tAbsError: 2.79827e+13\n", - " Region: \"zone_1\"\tRelError: 7.25122e-03\tAbsError: 1.74217e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.24621e-03\tAbsError: 1.19347e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.00326e-06\tAbsError: 1.74098e-03\n", - " Region: \"zone_3\"\tRelError: 2.03859e-01\tAbsError: 2.79827e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67617e-05\tAbsError: 1.39372e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.89481e-05\tAbsError: 1.40455e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03729e-01\tAbsError: 1.20196e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.00391e-06\tAbsError: 1.74126e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.20699e-02\tAbsError: 3.14591e+13\n", - " Region: \"zone_1\"\tRelError: 1.31625e-02\tAbsError: 7.22224e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31417e-02\tAbsError: 5.37434e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.08111e-05\tAbsError: 7.21687e-03\n", - " Region: \"zone_3\"\tRelError: 1.89074e-02\tAbsError: 3.14591e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.22927e-04\tAbsError: 1.59868e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.28367e-04\tAbsError: 1.54723e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.80353e-02\tAbsError: 5.87419e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.08190e-05\tAbsError: 7.21971e-03\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.51790e-03\tAbsError: 1.16805e+11\n", - " Region: \"zone_1\"\tRelError: 3.28893e-05\tAbsError: 5.08720e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.28747e-05\tAbsError: 4.12395e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.46125e-08\tAbsError: 5.08307e-06\n", - " Region: \"zone_3\"\tRelError: 1.48501e-03\tAbsError: 1.16805e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24655e-07\tAbsError: 5.82147e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.85069e-07\tAbsError: 5.85901e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.48469e-03\tAbsError: 4.16773e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.46182e-08\tAbsError: 5.08516e-06\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.15137e-03\tAbsError: 7.06680e+11\n", - " Region: \"zone_1\"\tRelError: 4.79513e-05\tAbsError: 1.84347e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.78983e-05\tAbsError: 2.30046e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.29631e-08\tAbsError: 1.84117e-05\n", - " Region: \"zone_3\"\tRelError: 1.10342e-03\tAbsError: 7.06680e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.28767e-07\tAbsError: 3.51782e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.37241e-07\tAbsError: 3.54898e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10180e-03\tAbsError: 2.32700e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.29832e-08\tAbsError: 1.84191e-05\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 4.72898e-04\tAbsError: 3.77480e+10\n", - " Region: \"zone_1\"\tRelError: 1.02547e-05\tAbsError: 1.14933e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02514e-05\tAbsError: 1.31017e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.30027e-09\tAbsError: 1.14802e-06\n", - " Region: \"zone_3\"\tRelError: 4.62644e-04\tAbsError: 3.77480e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.21419e-08\tAbsError: 1.88129e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.21462e-08\tAbsError: 1.89351e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.62556e-04\tAbsError: 1.32435e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.30162e-09\tAbsError: 1.14852e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.28286e+00\tAbsError: 5.88773e+14\n", - " Region: \"zone_1\"\tRelError: 8.55347e-01\tAbsError: 1.74049e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.55297e-01\tAbsError: 6.30266e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.00269e-05\tAbsError: 1.73418e-02\n", - " Region: \"zone_3\"\tRelError: 4.27508e-01\tAbsError: 5.88773e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.63052e-03\tAbsError: 2.89838e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.58578e-03\tAbsError: 2.98935e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.18242e-01\tAbsError: 6.77930e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.00342e-05\tAbsError: 1.73447e-02\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 2.60636e-04\tAbsError: 1.46372e+11\n", - " Region: \"zone_1\"\tRelError: 1.08690e-05\tAbsError: 6.03090e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08517e-05\tAbsError: 5.09600e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73339e-08\tAbsError: 6.02581e-06\n", - " Region: \"zone_3\"\tRelError: 2.49767e-04\tAbsError: 1.46372e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68311e-07\tAbsError: 7.29196e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.63262e-07\tAbsError: 7.34528e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49418e-04\tAbsError: 5.15309e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73406e-08\tAbsError: 6.02830e-06\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 9.24879e-02\tAbsError: 1.23871e+13\n", - " Region: \"zone_1\"\tRelError: 2.93353e-03\tAbsError: 2.91323e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.93269e-03\tAbsError: 4.76030e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.36559e-07\tAbsError: 2.90847e-04\n", - " Region: \"zone_3\"\tRelError: 8.95543e-02\tAbsError: 1.23871e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95573e-05\tAbsError: 6.16953e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.91930e-05\tAbsError: 6.21758e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.95147e-02\tAbsError: 4.79468e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.36647e-07\tAbsError: 2.90878e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.97135e-02\tAbsError: 1.77017e+13\n", - " Region: \"zone_1\"\tRelError: 8.10974e-03\tAbsError: 9.56061e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 8.10699e-03\tAbsError: 2.58822e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.74820e-06\tAbsError: 9.53472e-04\n", - " Region: \"zone_3\"\tRelError: 1.16038e-02\tAbsError: 1.77017e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.40550e-04\tAbsError: 8.98186e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.36238e-04\tAbsError: 8.71985e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11242e-02\tAbsError: 2.86154e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.74933e-06\tAbsError: 9.53894e-04\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 1.04494e-04\tAbsError: 8.40909e+09\n", - " Region: \"zone_1\"\tRelError: 2.40898e-06\tAbsError: 3.47308e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.40799e-06\tAbsError: 3.03615e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.97547e-10\tAbsError: 3.47005e-07\n", - " Region: \"zone_3\"\tRelError: 1.02085e-04\tAbsError: 8.40909e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09555e-09\tAbsError: 4.19130e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.33180e-08\tAbsError: 4.21779e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02063e-04\tAbsError: 3.06848e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.97958e-10\tAbsError: 3.47157e-07\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 8.12930e-05\tAbsError: 4.69072e+10\n", - " Region: \"zone_1\"\tRelError: 3.38946e-06\tAbsError: 1.38742e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.38548e-06\tAbsError: 1.62196e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.98640e-09\tAbsError: 1.38580e-06\n", - " Region: \"zone_3\"\tRelError: 7.79035e-05\tAbsError: 4.69072e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.45193e-08\tAbsError: 2.33605e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.92263e-08\tAbsError: 2.35467e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.77958e-05\tAbsError: 1.64038e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.98804e-09\tAbsError: 1.38641e-06\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.79957e-02\tAbsError: 2.00241e+12\n", - " Region: \"zone_1\"\tRelError: 5.80226e-04\tAbsError: 1.06766e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.79919e-04\tAbsError: 7.62075e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.06294e-07\tAbsError: 1.06690e-04\n", - " Region: \"zone_3\"\tRelError: 1.74155e-02\tAbsError: 2.00241e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.83435e-06\tAbsError: 9.97535e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.43171e-06\tAbsError: 1.00487e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74069e-02\tAbsError: 7.69605e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.06408e-07\tAbsError: 1.06730e-04\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:01\u001b[0m.\u001b[1;36m462\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 1.0\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.69760e-01\tAbsError: 4.68334e+13\n", - " Region: \"zone_1\"\tRelError: 1.19569e-01\tAbsError: 7.61832e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19547e-01\tAbsError: 4.95901e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19618e-05\tAbsError: 7.61337e-03\n", - " Region: \"zone_3\"\tRelError: 5.01907e-02\tAbsError: 4.68334e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.70213e-04\tAbsError: 2.32020e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.79865e-04\tAbsError: 2.36314e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.94186e-02\tAbsError: 5.44228e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19693e-05\tAbsError: 7.61572e-03\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.33124e-03\tAbsError: 2.46309e+12\n", - " Region: \"zone_1\"\tRelError: 1.37719e-03\tAbsError: 4.41878e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37593e-03\tAbsError: 3.50170e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26973e-06\tAbsError: 4.41528e-04\n", - " Region: \"zone_3\"\tRelError: 1.95405e-03\tAbsError: 2.46309e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.36051e-05\tAbsError: 1.24745e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.30473e-05\tAbsError: 1.21564e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88613e-03\tAbsError: 3.81559e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27021e-06\tAbsError: 4.41698e-04\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 3.06417e-05\tAbsError: 2.52206e+09\n", - " Region: \"zone_1\"\tRelError: 7.05538e-07\tAbsError: 8.28433e-08\n", - " Equation: \"PotentialEquation\"\tRelError: 7.05300e-07\tAbsError: 8.99798e-11\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.37890e-10\tAbsError: 8.27533e-08\n", - " Region: \"zone_3\"\tRelError: 2.99361e-05\tAbsError: 2.52206e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10205e-09\tAbsError: 1.25704e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.66190e-09\tAbsError: 1.26502e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 2.99301e-05\tAbsError: 9.09499e-11\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.37988e-10\tAbsError: 8.27887e-08\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 6.16882e-03\tAbsError: 7.25783e+11\n", - " Region: \"zone_1\"\tRelError: 1.98056e-04\tAbsError: 2.16951e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.97994e-04\tAbsError: 2.65471e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.22079e-08\tAbsError: 2.16685e-05\n", - " Region: \"zone_3\"\tRelError: 5.97077e-03\tAbsError: 7.25783e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06142e-06\tAbsError: 3.61574e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.32785e-06\tAbsError: 3.64210e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.96832e-03\tAbsError: 2.68167e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.22311e-08\tAbsError: 2.16771e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:02\u001b[0m.\u001b[1;36m607\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: 1.05\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.03310e-01\tAbsError: 2.63271e+13\n", - " Region: \"zone_1\"\tRelError: 7.05840e-02\tAbsError: 9.69314e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.05812e-02\tAbsError: 2.64907e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.78758e-06\tAbsError: 9.66665e-04\n", - " Region: \"zone_3\"\tRelError: 3.27258e-02\tAbsError: 2.63271e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.20183e-04\tAbsError: 1.30792e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.13005e-04\tAbsError: 1.32480e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.22898e-02\tAbsError: 2.66390e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.78870e-06\tAbsError: 9.67064e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.58363e+04\tAbsError: 1.47473e+18\n", - " Region: \"zone_1\"\tRelError: 6.98536e+03\tAbsError: 4.09543e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.98536e+03\tAbsError: 4.09539e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20641e-09\tAbsError: 4.19390e-07\n", - " Region: \"zone_3\"\tRelError: 2.88509e+04\tAbsError: 1.47473e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.64637e-01\tAbsError: 7.31003e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.38568e-01\tAbsError: 7.43726e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88496e+04\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20691e-09\tAbsError: 4.19574e-07\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.40229e-03\tAbsError: 1.07633e+12\n", - " Region: \"zone_1\"\tRelError: 5.79486e-04\tAbsError: 8.11928e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.79253e-04\tAbsError: 1.44943e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.33074e-07\tAbsError: 8.10479e-05\n", - " Region: \"zone_3\"\tRelError: 8.22800e-04\tAbsError: 1.07633e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46984e-05\tAbsError: 5.45591e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.43521e-05\tAbsError: 5.30742e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 7.93516e-04\tAbsError: 1.63890e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.33168e-07\tAbsError: 8.10816e-05\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.32512e-03\tAbsError: 1.39840e+11\n", - " Region: \"zone_1\"\tRelError: 4.25623e-05\tAbsError: 6.99519e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.25422e-05\tAbsError: 5.61701e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00663e-08\tAbsError: 6.98958e-06\n", - " Region: \"zone_3\"\tRelError: 1.28256e-03\tAbsError: 1.39840e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.35090e-07\tAbsError: 6.96726e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.14577e-07\tAbsError: 7.01672e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28199e-03\tAbsError: 5.67287e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00739e-08\tAbsError: 6.99239e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.21198e+03\tAbsError: 1.97975e+18\n", - " Region: \"zone_1\"\tRelError: 5.40129e+03\tAbsError: 4.20722e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.40129e+03\tAbsError: 4.20722e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.83456e-11\tAbsError: 2.37750e-08\n", - " Region: \"zone_3\"\tRelError: 8.10687e+02\tAbsError: 1.97975e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39347e-01\tAbsError: 9.86517e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.18133e-01\tAbsError: 9.93237e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 8.09430e+02\tAbsError: 4.20726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.83739e-11\tAbsError: 2.37852e-08\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.82959e-04\tAbsError: 1.95824e+11\n", - " Region: \"zone_1\"\tRelError: 1.17187e-04\tAbsError: 3.06697e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17099e-04\tAbsError: 2.78943e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.81182e-08\tAbsError: 3.06418e-05\n", - " Region: \"zone_3\"\tRelError: 1.65772e-04\tAbsError: 1.95824e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.67567e-06\tAbsError: 9.90968e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.61832e-06\tAbsError: 9.67276e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60389e-04\tAbsError: 3.12886e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.81525e-08\tAbsError: 3.06545e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.71612e-02\tAbsError: 3.55945e+12\n", - " Region: \"zone_1\"\tRelError: 1.18000e-02\tAbsError: 4.59042e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17987e-02\tAbsError: 3.51306e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.31945e-06\tAbsError: 4.58691e-04\n", - " Region: \"zone_3\"\tRelError: 5.36119e-03\tAbsError: 3.55945e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.95552e-05\tAbsError: 1.76936e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.88055e-05\tAbsError: 1.79009e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.30151e-03\tAbsError: 3.53210e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.31997e-06\tAbsError: 4.58880e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 8.73385e+02\tAbsError: 4.80817e+17\n", - " Region: \"zone_1\"\tRelError: 4.36320e+02\tAbsError: 1.19061e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 4.36317e+02\tAbsError: 3.07626e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.33293e-03\tAbsError: 1.15985e+00\n", - " Region: \"zone_3\"\tRelError: 4.37065e+02\tAbsError: 4.80817e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.79759e-01\tAbsError: 2.41402e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.64874e-01\tAbsError: 2.39414e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 4.36317e+02\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.33331e-03\tAbsError: 1.15994e+00\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 4.07310e-04\tAbsError: 4.47841e+10\n", - " Region: \"zone_1\"\tRelError: 1.30926e-05\tAbsError: 1.54205e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.30881e-05\tAbsError: 1.75011e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.42203e-09\tAbsError: 1.54030e-06\n", - " Region: \"zone_3\"\tRelError: 3.94218e-04\tAbsError: 4.47841e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.33915e-08\tAbsError: 2.23135e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.92263e-08\tAbsError: 2.24706e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.94061e-04\tAbsError: 1.76782e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.42382e-09\tAbsError: 1.54097e-06\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 9.88095e-05\tAbsError: 7.06114e+10\n", - " Region: \"zone_1\"\tRelError: 4.09067e-05\tAbsError: 6.52689e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.08879e-05\tAbsError: 1.01656e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.87404e-08\tAbsError: 6.51672e-06\n", - " Region: \"zone_3\"\tRelError: 5.79028e-05\tAbsError: 7.06114e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.65522e-07\tAbsError: 3.57680e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.40427e-07\tAbsError: 3.48434e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.59781e-05\tAbsError: 1.14697e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.87479e-08\tAbsError: 6.51948e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:05\u001b[0m.\u001b[1;36m605\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:05\u001b[0m.\u001b[1;36m605\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.8349999999999999\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Iteration: 1\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - " Device: \"device\"\tRelError: 1.42901e+02\tAbsError: 5.66273e+17\n", - " Region: \"zone_1\"\tRelError: 1.35535e+01\tAbsError: 1.67685e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35488e+01\tAbsError: 3.20812e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.71225e-03\tAbsError: 1.64477e+00\n", - " Region: \"zone_3\"\tRelError: 1.29347e+02\tAbsError: 5.66273e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.34240e-01\tAbsError: 2.83703e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.33762e-01\tAbsError: 2.82571e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28675e+02\tAbsError: 3.20820e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.71256e-03\tAbsError: 1.64494e+00\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 7.29149e-03\tAbsError: 1.57099e+12\n", - " Region: \"zone_1\"\tRelError: 5.00283e-03\tAbsError: 8.22643e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.00259e-03\tAbsError: 1.42637e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36225e-07\tAbsError: 8.21216e-05\n", - " Region: \"zone_3\"\tRelError: 2.28866e-03\tAbsError: 1.57099e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32701e-05\tAbsError: 7.81015e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.27720e-05\tAbsError: 7.89977e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.26238e-03\tAbsError: 1.43454e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.36315e-07\tAbsError: 8.21544e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.66204e+03\tAbsError: 6.93474e+16\n", - " Region: \"zone_1\"\tRelError: 8.76338e+02\tAbsError: 4.68048e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 8.76336e+02\tAbsError: 2.58614e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26825e-03\tAbsError: 4.42186e-01\n", - " Region: \"zone_3\"\tRelError: 7.85702e+02\tAbsError: 6.93474e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.33245e-02\tAbsError: 3.47970e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.15582e-02\tAbsError: 3.45503e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 7.85556e+02\tAbsError: 2.58778e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26845e-03\tAbsError: 4.42250e-01\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 9.30929e-05\tAbsError: 9.62198e+09\n", - " Region: \"zone_1\"\tRelError: 2.99044e-06\tAbsError: 4.57774e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.98913e-06\tAbsError: 3.95789e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.31308e-09\tAbsError: 4.57379e-07\n", - " Region: \"zone_3\"\tRelError: 9.01025e-05\tAbsError: 9.62198e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50292e-08\tAbsError: 4.79430e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.16874e-08\tAbsError: 4.82769e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.00644e-05\tAbsError: 3.99741e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.31362e-09\tAbsError: 4.57578e-07\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.44483e-03\tAbsError: 2.78794e+11\n", - " Region: \"zone_1\"\tRelError: 9.92254e-04\tAbsError: 3.13341e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 9.92164e-04\tAbsError: 2.69105e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.00557e-08\tAbsError: 3.13071e-05\n", - " Region: \"zone_3\"\tRelError: 4.52576e-04\tAbsError: 2.78794e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.33571e-06\tAbsError: 1.38640e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.25733e-06\tAbsError: 1.40155e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.47893e-04\tAbsError: 2.70655e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.00927e-08\tAbsError: 3.13209e-05\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 8.75970e+00\tAbsError: 5.63764e+16\n", - " Region: \"zone_1\"\tRelError: 6.92610e+00\tAbsError: 3.03076e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 6.91755e+00\tAbsError: 2.58876e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.55205e-03\tAbsError: 3.00487e+00\n", - " Region: \"zone_3\"\tRelError: 1.83361e+00\tAbsError: 5.63764e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.50579e-02\tAbsError: 2.82845e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.12026e-02\tAbsError: 2.80919e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.68878e+00\tAbsError: 2.58755e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.56303e-03\tAbsError: 3.00881e+00\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 9.05392e+01\tAbsError: 2.15165e+17\n", - " Region: \"zone_1\"\tRelError: 8.45050e+01\tAbsError: 4.19650e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.45050e+01\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.17054e-09\tAbsError: 2.14572e-06\n", - " Region: \"zone_3\"\tRelError: 6.03424e+00\tAbsError: 2.15165e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69072e-01\tAbsError: 1.09160e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.65008e-01\tAbsError: 1.06006e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 4.50016e+00\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.17312e-09\tAbsError: 2.14667e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.46324e+03\tAbsError: 5.14576e+15\n", - " Region: \"zone_1\"\tRelError: 6.87978e+02\tAbsError: 7.78255e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 6.87976e+02\tAbsError: 9.16449e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19704e-03\tAbsError: 7.69091e-01\n", - " Region: \"zone_3\"\tRelError: 7.75259e+02\tAbsError: 5.14576e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52317e-02\tAbsError: 2.57522e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.85097e-03\tAbsError: 2.57054e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.75237e+02\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19704e-03\tAbsError: 7.69091e-01\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 5.06646e-04\tAbsError: 1.01086e+11\n", - " Region: \"zone_1\"\tRelError: 3.47894e-04\tAbsError: 6.54239e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.47875e-04\tAbsError: 9.81295e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.87909e-08\tAbsError: 6.53257e-06\n", - " Region: \"zone_3\"\tRelError: 1.58752e-04\tAbsError: 1.01086e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.54559e-07\tAbsError: 5.02676e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.21808e-07\tAbsError: 5.08185e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.57057e-04\tAbsError: 9.96756e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.87988e-08\tAbsError: 6.53547e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.51142e+01\tAbsError: 2.01718e+16\n", - " Region: \"zone_1\"\tRelError: 3.62794e+00\tAbsError: 1.96542e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 3.62235e+00\tAbsError: 1.08333e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.59401e-03\tAbsError: 1.95458e+00\n", - " Region: \"zone_3\"\tRelError: 2.14863e+01\tAbsError: 2.01718e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53811e-02\tAbsError: 1.01125e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.94421e-02\tAbsError: 1.00593e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.14358e+01\tAbsError: 1.08344e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.60311e-03\tAbsError: 1.95781e+00\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:08\u001b[0m.\u001b[1;36m726\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 6.86875e+01\tAbsError: 2.11173e+17\n", - " Region: \"zone_1\"\tRelError: 6.09541e+01\tAbsError: 3.17091e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 6.09532e+01\tAbsError: 3.19523e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.22478e-04\tAbsError: 2.85139e-01\n", - " Region: \"zone_3\"\tRelError: 7.73346e+00\tAbsError: 2.11173e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17930e-01\tAbsError: 1.06081e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.46503e-01\tAbsError: 1.05092e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 6.46820e+00\tAbsError: 3.19525e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.22478e-04\tAbsError: 2.85139e-01\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:08\u001b[0m.\u001b[1;36m754\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.25 bias\u001b[0m \n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.96023e+00\tAbsError: 5.32372e+15\n", - " Region: \"zone_1\"\tRelError: 4.54639e+00\tAbsError: 1.02863e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 4.54344e+00\tAbsError: 2.66559e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.94644e-03\tAbsError: 1.02837e+00\n", - " Region: \"zone_3\"\tRelError: 2.41384e+00\tAbsError: 5.32372e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.51219e-02\tAbsError: 2.60450e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.65403e-03\tAbsError: 2.71922e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.38011e+00\tAbsError: 2.68000e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.95139e-03\tAbsError: 1.03011e+00\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:08\u001b[0m.\u001b[1;36m778\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.12327e-04\tAbsError: 2.10463e+10\n", - " Region: \"zone_1\"\tRelError: 7.71522e-05\tAbsError: 2.15853e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 7.71460e-05\tAbsError: 2.11540e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.20283e-09\tAbsError: 2.15642e-06\n", - " Region: \"zone_3\"\tRelError: 3.51752e-05\tAbsError: 2.10463e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.76939e-07\tAbsError: 1.04674e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.70744e-07\tAbsError: 1.05789e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.48213e-05\tAbsError: 2.13769e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.20541e-09\tAbsError: 2.15735e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.45067e+01\tAbsError: 1.87553e+16\n", - " Region: \"zone_1\"\tRelError: 2.46370e+00\tAbsError: 1.47436e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 2.45948e+00\tAbsError: 1.97736e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.21275e-03\tAbsError: 1.47416e+00\n", - " Region: \"zone_3\"\tRelError: 1.20431e+01\tAbsError: 1.87553e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.15213e-02\tAbsError: 9.01113e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.31331e-03\tAbsError: 9.74413e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20100e+01\tAbsError: 1.98904e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.21492e-03\tAbsError: 1.47492e+00\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.19880e+03\tAbsError: 1.25545e+19\n", - " Region: \"zone_1\"\tRelError: 5.00629e+02\tAbsError: 9.26313e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.00629e+02\tAbsError: 9.26312e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.05730e-10\tAbsError: 1.06495e-07\n", - " Region: \"zone_3\"\tRelError: 6.98175e+02\tAbsError: 1.25545e+19\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32269e+02\tAbsError: 5.15576e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.45517e+02\tAbsError: 7.39872e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20389e+02\tAbsError: 9.26320e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.05855e-10\tAbsError: 1.06540e-07\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.07732e+01\tAbsError: 5.66142e+15\n", - " Region: \"zone_1\"\tRelError: 6.09549e-01\tAbsError: 6.00187e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.09378e-01\tAbsError: 2.72034e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71203e-04\tAbsError: 5.97467e-02\n", - " Region: \"zone_3\"\tRelError: 6.01636e+01\tAbsError: 5.66142e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13691e-02\tAbsError: 2.75447e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.48872e-03\tAbsError: 2.90695e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 6.01496e+01\tAbsError: 2.74039e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71270e-04\tAbsError: 5.97699e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.23338e+01\tAbsError: 1.14319e+17\n", - " Region: \"zone_1\"\tRelError: 9.07204e+00\tAbsError: 8.83948e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.07186e+00\tAbsError: 2.58559e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.80215e-04\tAbsError: 6.25389e-02\n", - " Region: \"zone_3\"\tRelError: 1.32617e+01\tAbsError: 1.14319e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.70133e-01\tAbsError: 5.77957e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.80255e-01\tAbsError: 5.65233e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.26112e+01\tAbsError: 2.58311e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.80264e-04\tAbsError: 6.25548e-02\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 3.52975e-05\tAbsError: 6.76967e+09\n", - " Region: \"zone_1\"\tRelError: 2.42437e-05\tAbsError: 4.94954e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.42423e-05\tAbsError: 6.80309e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42175e-09\tAbsError: 4.94273e-07\n", - " Region: \"zone_3\"\tRelError: 1.10538e-05\tAbsError: 6.76967e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.72210e-08\tAbsError: 3.36682e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.50231e-08\tAbsError: 3.40285e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09401e-05\tAbsError: 6.93709e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42234e-09\tAbsError: 4.94487e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:10\u001b[0m.\u001b[1;36m530\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.8699999999999999\u001b[0m\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.24072e+00\tAbsError: 9.43976e+15\n", - " Region: \"zone_1\"\tRelError: 5.40200e+00\tAbsError: 5.25342e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.40185e+00\tAbsError: 3.80157e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.49014e-04\tAbsError: 5.21540e-02\n", - " Region: \"zone_3\"\tRelError: 8.38724e-01\tAbsError: 9.43976e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52880e-02\tAbsError: 4.61247e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.01775e-03\tAbsError: 4.82729e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.20269e-01\tAbsError: 3.82769e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.49095e-04\tAbsError: 5.21821e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.64735e+02\tAbsError: 1.04135e+19\n", - " Region: \"zone_1\"\tRelError: 5.00518e+01\tAbsError: 4.83021e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.00380e+01\tAbsError: 8.99016e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37870e-02\tAbsError: 4.74031e+00\n", - " Region: \"zone_3\"\tRelError: 3.14684e+02\tAbsError: 1.04135e+19\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 4.33275e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.73820e+02\tAbsError: 6.08074e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 1.31850e+02\tAbsError: 8.99018e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37888e-02\tAbsError: 4.74083e+00\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.18137e+00\tAbsError: 3.71256e+14\n", - " Region: \"zone_1\"\tRelError: 8.31734e-02\tAbsError: 3.74686e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.30661e-02\tAbsError: 1.92544e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.07324e-04\tAbsError: 3.74493e-02\n", - " Region: \"zone_3\"\tRelError: 1.09819e+00\tAbsError: 3.71256e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23962e-03\tAbsError: 1.84907e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.91184e-04\tAbsError: 1.86349e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09615e+00\tAbsError: 1.93888e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.07368e-04\tAbsError: 3.74645e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.56211e+00\tAbsError: 2.66918e+16\n", - " Region: \"zone_1\"\tRelError: 1.69107e+00\tAbsError: 2.89241e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.69026e+00\tAbsError: 1.06612e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03961e-04\tAbsError: 2.78580e-01\n", - " Region: \"zone_3\"\tRelError: 3.87104e+00\tAbsError: 2.66918e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07163e-01\tAbsError: 1.33931e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.50486e-02\tAbsError: 1.32988e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.71803e+00\tAbsError: 1.06615e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03961e-04\tAbsError: 2.78580e-01\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.78693e+01\tAbsError: 3.39789e+17\n", - " Region: \"zone_1\"\tRelError: 6.85783e+01\tAbsError: 4.29339e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.85783e+01\tAbsError: 4.29337e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.31349e-10\tAbsError: 1.49959e-07\n", - " Region: \"zone_3\"\tRelError: 9.29095e+00\tAbsError: 3.39789e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.70074e-01\tAbsError: 1.69409e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.63422e-01\tAbsError: 1.70379e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 7.75745e+00\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.31527e-10\tAbsError: 1.50023e-07\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.06185e-01\tAbsError: 3.08037e+14\n", - " Region: \"zone_1\"\tRelError: 1.71268e-01\tAbsError: 4.84174e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.71130e-01\tAbsError: 1.73950e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.38313e-04\tAbsError: 4.84000e-02\n", - " Region: \"zone_3\"\tRelError: 3.49170e-02\tAbsError: 3.08037e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42050e-03\tAbsError: 1.49668e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.55604e-04\tAbsError: 1.58369e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.29026e-02\tAbsError: 1.74981e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.38368e-04\tAbsError: 4.84192e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.29490e+02\tAbsError: 3.51023e+18\n", - " Region: \"zone_1\"\tRelError: 1.98238e+01\tAbsError: 4.32385e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.98116e+01\tAbsError: 8.69446e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.21421e-02\tAbsError: 4.23691e+00\n", - " Region: \"zone_3\"\tRelError: 9.09666e+02\tAbsError: 3.51023e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.82099e+01\tAbsError: 1.78518e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.52423e+02\tAbsError: 1.72505e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 2.89021e+02\tAbsError: 8.69449e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.21450e-02\tAbsError: 4.23806e+00\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.46007e+00\tAbsError: 2.29640e+14\n", - " Region: \"zone_1\"\tRelError: 4.03111e-02\tAbsError: 3.94907e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 4.02998e-02\tAbsError: 1.05545e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13173e-05\tAbsError: 3.93851e-03\n", - " Region: \"zone_3\"\tRelError: 1.41976e+00\tAbsError: 2.29640e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16328e-04\tAbsError: 1.14327e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.52600e-04\tAbsError: 1.15314e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41908e+00\tAbsError: 1.06317e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13180e-05\tAbsError: 3.93853e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.83788e+00\tAbsError: 2.55334e+15\n", - " Region: \"zone_1\"\tRelError: 1.17954e+00\tAbsError: 3.25510e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17945e+00\tAbsError: 5.46819e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.37076e-05\tAbsError: 3.24963e-02\n", - " Region: \"zone_3\"\tRelError: 6.58336e-01\tAbsError: 2.55334e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.48841e-02\tAbsError: 1.31730e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.42693e-03\tAbsError: 1.23604e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 6.40932e-01\tAbsError: 5.52119e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.38423e-05\tAbsError: 3.25425e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.56499e+01\tAbsError: 3.39345e+17\n", - " Region: \"zone_1\"\tRelError: 1.75628e+00\tAbsError: 2.28368e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.75572e+00\tAbsError: 3.30998e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.63387e-04\tAbsError: 1.95268e-01\n", - " Region: \"zone_3\"\tRelError: 2.38936e+01\tAbsError: 3.39345e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.04191e-01\tAbsError: 1.72005e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.19865e-01\tAbsError: 1.67340e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 2.26690e+01\tAbsError: 3.31000e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.63387e-04\tAbsError: 1.95268e-01\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 7.52589e-01\tAbsError: 2.90021e+14\n", - " Region: \"zone_1\"\tRelError: 6.78925e-01\tAbsError: 3.33813e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.78915e-01\tAbsError: 1.33213e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.50121e-06\tAbsError: 3.32481e-03\n", - " Region: \"zone_3\"\tRelError: 7.36636e-02\tAbsError: 2.90021e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.74372e-04\tAbsError: 1.44443e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.19813e-04\tAbsError: 1.45579e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.27599e-02\tAbsError: 1.34085e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.50505e-06\tAbsError: 3.32614e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.72759e+02\tAbsError: 3.80692e+18\n", - " Region: \"zone_1\"\tRelError: 4.22886e+01\tAbsError: 1.58295e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 4.22843e+01\tAbsError: 8.37231e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.31494e-03\tAbsError: 1.49922e+00\n", - " Region: \"zone_3\"\tRelError: 1.30470e+02\tAbsError: 3.80692e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.29125e+01\tAbsError: 1.92102e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.31882e+01\tAbsError: 1.88590e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 6.43655e+01\tAbsError: 8.37233e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.31623e-03\tAbsError: 1.49970e+00\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.11111e-01\tAbsError: 2.79827e+13\n", - " Region: \"zone_1\"\tRelError: 7.25122e-03\tAbsError: 1.74217e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.24621e-03\tAbsError: 1.19347e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.00326e-06\tAbsError: 1.74098e-03\n", - " Region: \"zone_3\"\tRelError: 2.03859e-01\tAbsError: 2.79827e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67617e-05\tAbsError: 1.39372e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.89481e-05\tAbsError: 1.40455e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03729e-01\tAbsError: 1.20196e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.00391e-06\tAbsError: 1.74126e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.44853e-03\tAbsError: 9.65526e+13\n", - " Region: \"zone_1\"\tRelError: 5.54449e-03\tAbsError: 4.95915e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.53020e-03\tAbsError: 7.89077e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42878e-05\tAbsError: 4.95125e-03\n", - " Region: \"zone_3\"\tRelError: 9.04033e-04\tAbsError: 9.65526e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.44309e-04\tAbsError: 4.72399e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.72867e-04\tAbsError: 4.93127e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.72567e-04\tAbsError: 7.95387e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42898e-05\tAbsError: 4.95186e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.42340e+01\tAbsError: 1.51712e+17\n", - " Region: \"zone_1\"\tRelError: 8.67693e+00\tAbsError: 2.15109e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 8.67638e+00\tAbsError: 2.58904e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.45520e-04\tAbsError: 1.89218e-01\n", - " Region: \"zone_3\"\tRelError: 5.55710e+00\tAbsError: 1.51712e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.40518e-01\tAbsError: 7.62921e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.28757e-01\tAbsError: 7.54196e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.98728e+00\tAbsError: 2.58830e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.45609e-04\tAbsError: 1.89245e-01\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.95001e-02\tAbsError: 1.96145e+13\n", - " Region: \"zone_1\"\tRelError: 6.19508e-02\tAbsError: 1.94459e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.19452e-02\tAbsError: 1.07047e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.56869e-06\tAbsError: 1.94352e-03\n", - " Region: \"zone_3\"\tRelError: 7.54931e-03\tAbsError: 1.96145e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16796e-05\tAbsError: 9.76745e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.02449e-05\tAbsError: 9.84707e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.42181e-03\tAbsError: 1.07732e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.56990e-06\tAbsError: 1.94402e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 9.24879e-02\tAbsError: 1.23871e+13\n", - " Region: \"zone_1\"\tRelError: 2.93353e-03\tAbsError: 2.91323e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.93269e-03\tAbsError: 4.76030e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.36559e-07\tAbsError: 2.90847e-04\n", - " Region: \"zone_3\"\tRelError: 8.95543e-02\tAbsError: 1.23871e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95573e-05\tAbsError: 6.16953e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.91930e-05\tAbsError: 6.21758e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.95147e-02\tAbsError: 4.79468e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.36647e-07\tAbsError: 2.90878e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.70615e+03\tAbsError: 4.52231e+17\n", - " Region: \"zone_1\"\tRelError: 4.09008e+01\tAbsError: 7.77968e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.08988e+01\tAbsError: 8.01892e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.01232e-03\tAbsError: 6.97779e-01\n", - " Region: \"zone_3\"\tRelError: 1.66525e+03\tAbsError: 4.52231e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.99679e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.65067e+03\tAbsError: 2.52552e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 5.57927e+00\tAbsError: 8.01894e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.01232e-03\tAbsError: 6.97779e-01\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 9.75163e-02\tAbsError: 3.25390e+13\n", - " Region: \"zone_1\"\tRelError: 6.42969e-02\tAbsError: 6.98099e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.42949e-02\tAbsError: 1.30012e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00484e-06\tAbsError: 6.96799e-04\n", - " Region: \"zone_3\"\tRelError: 3.32194e-02\tAbsError: 3.25390e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.22317e-05\tAbsError: 1.60110e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.63713e-05\tAbsError: 1.65281e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.30588e-02\tAbsError: 1.31290e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00578e-06\tAbsError: 6.97121e-04\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.13410e+02\tAbsError: 2.22863e+16\n", - " Region: \"zone_1\"\tRelError: 1.13012e+02\tAbsError: 2.95028e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13011e+02\tAbsError: 1.22650e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.15806e-04\tAbsError: 2.82763e-01\n", - " Region: \"zone_3\"\tRelError: 3.97767e-01\tAbsError: 2.22863e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.56928e-02\tAbsError: 1.11657e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.97555e-02\tAbsError: 1.11206e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.81503e-01\tAbsError: 1.22654e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.15806e-04\tAbsError: 2.82763e-01\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.70469e-02\tAbsError: 1.30475e+13\n", - " Region: \"zone_1\"\tRelError: 4.22512e-02\tAbsError: 2.14289e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.22506e-02\tAbsError: 5.27007e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.13323e-07\tAbsError: 2.13762e-04\n", - " Region: \"zone_3\"\tRelError: 4.79561e-03\tAbsError: 1.30475e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.37860e-05\tAbsError: 6.50229e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.14826e-05\tAbsError: 6.54518e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.74973e-03\tAbsError: 5.30379e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.13323e-07\tAbsError: 2.13762e-04\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.79957e-02\tAbsError: 2.00241e+12\n", - " Region: \"zone_1\"\tRelError: 5.80226e-04\tAbsError: 1.06766e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.79919e-04\tAbsError: 7.62075e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.06294e-07\tAbsError: 1.06690e-04\n", - " Region: \"zone_3\"\tRelError: 1.74155e-02\tAbsError: 2.00241e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.83435e-06\tAbsError: 9.97535e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.43171e-06\tAbsError: 1.00487e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74069e-02\tAbsError: 7.69605e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.06408e-07\tAbsError: 1.06730e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.37479e+02\tAbsError: 4.65758e+16\n", - " Region: \"zone_1\"\tRelError: 6.64495e+00\tAbsError: 3.31762e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 6.64421e+00\tAbsError: 7.62823e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.36217e-04\tAbsError: 2.55480e-01\n", - " Region: \"zone_3\"\tRelError: 2.30834e+02\tAbsError: 4.65758e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.28075e+02\tAbsError: 3.44923e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.30645e+00\tAbsError: 1.20835e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.52764e-01\tAbsError: 7.62825e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.36217e-04\tAbsError: 2.55480e-01\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.13157e-03\tAbsError: 2.71555e+12\n", - " Region: \"zone_1\"\tRelError: 7.85615e-04\tAbsError: 2.66866e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.84848e-04\tAbsError: 2.19182e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.67288e-07\tAbsError: 2.66647e-04\n", - " Region: \"zone_3\"\tRelError: 3.45960e-04\tAbsError: 2.71555e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.38252e-06\tAbsError: 1.33180e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.48145e-06\tAbsError: 1.38375e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.28328e-04\tAbsError: 2.21071e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.67607e-07\tAbsError: 2.66762e-04\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 6.50941e-03\tAbsError: 1.40933e+12\n", - " Region: \"zone_1\"\tRelError: 5.82453e-03\tAbsError: 1.02397e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.82424e-03\tAbsError: 6.23406e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.93614e-07\tAbsError: 1.02335e-04\n", - " Region: \"zone_3\"\tRelError: 6.84879e-04\tAbsError: 1.40933e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.79459e-06\tAbsError: 7.02415e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.91114e-06\tAbsError: 7.06915e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 6.76879e-04\tAbsError: 6.27266e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.93670e-07\tAbsError: 1.02355e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.61604e+00\tAbsError: 2.71406e+15\n", - " Region: \"zone_1\"\tRelError: 1.44549e+00\tAbsError: 4.95422e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.44535e+00\tAbsError: 4.48303e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42647e-04\tAbsError: 4.94973e-02\n", - " Region: \"zone_3\"\tRelError: 1.70549e-01\tAbsError: 2.71406e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.01740e-03\tAbsError: 1.39529e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.58382e-03\tAbsError: 1.31876e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.59805e-01\tAbsError: 4.55618e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42858e-04\tAbsError: 4.95718e-02\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 6.16882e-03\tAbsError: 7.25783e+11\n", - " Region: \"zone_1\"\tRelError: 1.98056e-04\tAbsError: 2.16951e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.97994e-04\tAbsError: 2.65471e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.22079e-08\tAbsError: 2.16685e-05\n", - " Region: \"zone_3\"\tRelError: 5.97077e-03\tAbsError: 7.25783e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06142e-06\tAbsError: 3.61574e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.32785e-06\tAbsError: 3.64210e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.96832e-03\tAbsError: 2.68167e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.22311e-08\tAbsError: 2.16771e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.74025e+02\tAbsError: 3.37469e+16\n", - " Region: \"zone_1\"\tRelError: 1.68589e+01\tAbsError: 1.25546e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.68588e+01\tAbsError: 7.19237e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54526e-04\tAbsError: 5.36225e-02\n", - " Region: \"zone_3\"\tRelError: 7.57166e+02\tAbsError: 3.37469e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.78798e+02\tAbsError: 1.89188e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.78203e+02\tAbsError: 1.48281e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65070e-01\tAbsError: 7.19239e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.54982e-04\tAbsError: 5.37834e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 5.55248e-03\tAbsError: 1.64976e+12\n", - " Region: \"zone_1\"\tRelError: 3.67085e-03\tAbsError: 1.64025e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.67080e-03\tAbsError: 7.32464e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.69818e-08\tAbsError: 1.63293e-05\n", - " Region: \"zone_3\"\tRelError: 1.88163e-03\tAbsError: 1.64976e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.20100e-06\tAbsError: 8.12537e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.84601e-06\tAbsError: 8.37224e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87354e-03\tAbsError: 7.39315e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.70059e-08\tAbsError: 1.63376e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 2.83782e-03\tAbsError: 6.55135e+11\n", - " Region: \"zone_1\"\tRelError: 2.54483e-03\tAbsError: 1.58738e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.54479e-03\tAbsError: 2.47047e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.54187e-08\tAbsError: 1.58491e-05\n", - " Region: \"zone_3\"\tRelError: 2.92993e-04\tAbsError: 6.55135e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.14183e-06\tAbsError: 3.26636e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.34656e-06\tAbsError: 3.28499e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.90460e-04\tAbsError: 2.49353e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.54356e-08\tAbsError: 1.58552e-05\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.32512e-03\tAbsError: 1.39840e+11\n", - " Region: \"zone_1\"\tRelError: 4.25623e-05\tAbsError: 6.99519e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.25422e-05\tAbsError: 5.61701e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00663e-08\tAbsError: 6.98958e-06\n", - " Region: \"zone_3\"\tRelError: 1.28256e-03\tAbsError: 1.39840e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.35090e-07\tAbsError: 6.96726e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.14577e-07\tAbsError: 7.01672e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28199e-03\tAbsError: 5.67287e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00739e-08\tAbsError: 6.99239e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.39978e-01\tAbsError: 1.73686e+14\n", - " Region: \"zone_1\"\tRelError: 4.36730e-01\tAbsError: 5.01253e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 4.36716e-01\tAbsError: 1.35366e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43838e-05\tAbsError: 4.99899e-03\n", - " Region: \"zone_3\"\tRelError: 3.24796e-03\tAbsError: 1.73686e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.93699e-04\tAbsError: 8.57881e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.16982e-04\tAbsError: 8.78978e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.62289e-03\tAbsError: 1.36588e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43893e-05\tAbsError: 5.00091e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.10144e+04\tAbsError: 6.94366e+15\n", - " Region: \"zone_1\"\tRelError: 2.97996e-01\tAbsError: 3.02085e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.97319e-01\tAbsError: 6.70102e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.76859e-04\tAbsError: 2.35075e-01\n", - " Region: \"zone_3\"\tRelError: 1.10141e+04\tAbsError: 6.94366e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.37954e+02\tAbsError: 2.52596e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.04760e+04\tAbsError: 4.41770e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29582e-01\tAbsError: 6.70105e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.76859e-04\tAbsError: 2.35075e-01\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.41098e-04\tAbsError: 3.70638e+10\n", - " Region: \"zone_1\"\tRelError: 1.60736e-04\tAbsError: 1.49732e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60693e-04\tAbsError: 4.79644e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.30721e-08\tAbsError: 1.49684e-05\n", - " Region: \"zone_3\"\tRelError: 8.03619e-05\tAbsError: 3.70638e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16860e-07\tAbsError: 1.81925e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.69346e-07\tAbsError: 1.88712e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.98326e-05\tAbsError: 4.83644e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.30899e-08\tAbsError: 1.49749e-05\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 4.86432e-04\tAbsError: 9.58669e+10\n", - " Region: \"zone_1\"\tRelError: 4.35367e-04\tAbsError: 6.01843e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.35349e-04\tAbsError: 4.20846e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72349e-08\tAbsError: 6.01422e-06\n", - " Region: \"zone_3\"\tRelError: 5.10657e-05\tAbsError: 9.58669e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16308e-07\tAbsError: 4.78066e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.72686e-07\tAbsError: 4.80603e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.05595e-05\tAbsError: 4.24652e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.72414e-08\tAbsError: 6.01658e-06\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 4.07310e-04\tAbsError: 4.47841e+10\n", - " Region: \"zone_1\"\tRelError: 1.30926e-05\tAbsError: 1.54205e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.30881e-05\tAbsError: 1.75011e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.42203e-09\tAbsError: 1.54030e-06\n", - " Region: \"zone_3\"\tRelError: 3.94218e-04\tAbsError: 4.47841e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.33915e-08\tAbsError: 2.23135e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.92263e-08\tAbsError: 2.24706e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.94061e-04\tAbsError: 1.76782e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.42382e-09\tAbsError: 1.54097e-06\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 5.52811e-02\tAbsError: 3.34954e+13\n", - " Region: \"zone_1\"\tRelError: 4.72342e-02\tAbsError: 1.34444e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 4.72304e-02\tAbsError: 1.28454e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.86347e-06\tAbsError: 1.34316e-03\n", - " Region: \"zone_3\"\tRelError: 8.04684e-03\tAbsError: 3.34954e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.41615e-05\tAbsError: 1.66223e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.16688e-05\tAbsError: 1.68731e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.93715e-03\tAbsError: 1.29905e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.86527e-06\tAbsError: 1.34377e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.20598e-04\tAbsError: 9.09573e+10\n", - " Region: \"zone_1\"\tRelError: 2.12041e-04\tAbsError: 7.95285e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.12039e-04\tAbsError: 4.17842e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.27632e-09\tAbsError: 7.91107e-07\n", - " Region: \"zone_3\"\tRelError: 1.08557e-04\tAbsError: 9.09573e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.30667e-07\tAbsError: 4.48081e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.10381e-07\tAbsError: 4.61492e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08113e-04\tAbsError: 4.21673e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.27757e-09\tAbsError: 7.91562e-07\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 1.70591e-04\tAbsError: 3.56847e+10\n", - " Region: \"zone_1\"\tRelError: 1.52882e-04\tAbsError: 1.12241e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.52879e-04\tAbsError: 1.48688e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.21221e-09\tAbsError: 1.12092e-06\n", - " Region: \"zone_3\"\tRelError: 1.77094e-05\tAbsError: 3.56847e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.12857e-08\tAbsError: 1.77986e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.30410e-08\tAbsError: 1.78861e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.75618e-05\tAbsError: 1.50077e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.21347e-09\tAbsError: 1.12138e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.75750e+03\tAbsError: 1.37117e+15\n", - " Region: \"zone_1\"\tRelError: 2.98702e-01\tAbsError: 1.04404e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.98578e-01\tAbsError: 6.14041e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.24025e-04\tAbsError: 4.29995e-02\n", - " Region: \"zone_3\"\tRelError: 1.75720e+03\tAbsError: 1.37117e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.49632e+01\tAbsError: 7.96171e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.71211e+03\tAbsError: 5.74998e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.27908e-01\tAbsError: 6.14044e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.24152e-04\tAbsError: 4.30433e-02\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 9.30929e-05\tAbsError: 9.62198e+09\n", - " Region: \"zone_1\"\tRelError: 2.99044e-06\tAbsError: 4.57774e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.98912e-06\tAbsError: 3.95789e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.31308e-09\tAbsError: 4.57379e-07\n", - " Region: \"zone_3\"\tRelError: 9.01024e-05\tAbsError: 9.62198e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50292e-08\tAbsError: 4.79430e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.16874e-08\tAbsError: 4.82769e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.00644e-05\tAbsError: 3.99740e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.31362e-09\tAbsError: 4.57578e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:21\u001b[0m.\u001b[1;36m631\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 1.1\u001b[0m \n", + "number of equations 22535\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.13261e-09\tAbsError: 4.78253e+09\n", + " Region: \"zone_1\"\tRelError: 2.98682e-10\tAbsError: 5.60284e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.98682e-10\tAbsError: 5.60284e-11\n", + " Region: \"zone_3\"\tRelError: 1.83393e-09\tAbsError: 4.78253e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.88705e-10\tAbsError: 2.45633e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.18618e-10\tAbsError: 2.32619e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.26604e-10\tAbsError: 6.18152e-11\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:33\u001b[0m.\u001b[1;36m928\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 8.09742e+00\tAbsError: 5.41918e+18\n", + " Region: \"zone_1\"\tRelError: 3.11840e+00\tAbsError: 6.12736e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.11840e+00\tAbsError: 6.12736e-02\n", + " Region: \"zone_3\"\tRelError: 4.97902e+00\tAbsError: 5.41918e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.18232e-01\tAbsError: 2.70275e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.05643e-01\tAbsError: 2.71643e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35515e+00\tAbsError: 6.12741e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.36719e+00\tAbsError: 5.75579e+18\n", + " Region: \"zone_1\"\tRelError: 9.68184e-01\tAbsError: 5.60947e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.68184e-01\tAbsError: 5.60947e-02\n", + " Region: \"zone_3\"\tRelError: 2.39900e+00\tAbsError: 5.75579e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.11524e-01\tAbsError: 2.87551e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.04144e-01\tAbsError: 2.88028e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 9.83335e-01\tAbsError: 5.60955e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.80802e+00\tAbsError: 3.01893e+18\n", + " Region: \"zone_1\"\tRelError: 7.79164e-01\tAbsError: 5.47685e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.79164e-01\tAbsError: 5.47685e-02\n", + " Region: \"zone_3\"\tRelError: 2.02886e+00\tAbsError: 3.01893e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.01477e-01\tAbsError: 1.50903e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.36754e-01\tAbsError: 1.50990e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 7.90624e-01\tAbsError: 5.47695e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.72677e+00\tAbsError: 1.72189e+18\n", + " Region: \"zone_1\"\tRelError: 4.23318e-01\tAbsError: 4.87011e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.23318e-01\tAbsError: 4.87011e-02\n", + " Region: \"zone_3\"\tRelError: 1.30345e+00\tAbsError: 1.72189e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.24464e-01\tAbsError: 8.61571e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.52344e-01\tAbsError: 8.60322e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.26647e-01\tAbsError: 4.87025e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:34\u001b[0m.\u001b[1;36m535\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.16189e+00\tAbsError: 5.30167e+17\n", + " Region: \"zone_1\"\tRelError: 3.36088e-01\tAbsError: 4.71375e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.36088e-01\tAbsError: 4.71375e-02\n", + " Region: \"zone_3\"\tRelError: 8.25797e-01\tAbsError: 5.30167e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.81067e-01\tAbsError: 2.65405e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.08571e-01\tAbsError: 2.64762e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 3.36159e-01\tAbsError: 4.71388e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:34\u001b[0m.\u001b[1;36m768\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 5.64105e-01\tAbsError: 2.01694e+17\n", + " Region: \"zone_1\"\tRelError: 1.84213e-01\tAbsError: 3.99462e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84213e-01\tAbsError: 3.99462e-02\n", + " Region: \"zone_3\"\tRelError: 3.79892e-01\tAbsError: 2.01694e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.37960e-01\tAbsError: 1.01346e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.41218e-02\tAbsError: 1.00348e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87811e-01\tAbsError: 3.99479e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.96986e-01\tAbsError: 1.20881e+17\n", + " Region: \"zone_1\"\tRelError: 2.13568e-01\tAbsError: 3.80880e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13568e-01\tAbsError: 3.80880e-02\n", + " Region: \"zone_3\"\tRelError: 2.83418e-01\tAbsError: 1.20881e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.18801e-02\tAbsError: 6.06756e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.93476e-03\tAbsError: 6.02055e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13603e-01\tAbsError: 3.80896e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.59444e-01\tAbsError: 2.09352e+16\n", + " Region: \"zone_1\"\tRelError: 1.17659e-01\tAbsError: 2.95786e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17659e-01\tAbsError: 2.95786e-02\n", + " Region: \"zone_3\"\tRelError: 1.41785e-01\tAbsError: 2.09352e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13201e-02\tAbsError: 1.04920e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.79175e-03\tAbsError: 1.04432e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17673e-01\tAbsError: 2.95806e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.73166e-01\tAbsError: 1.11948e+16\n", + " Region: \"zone_1\"\tRelError: 1.33207e-01\tAbsError: 2.74074e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33207e-01\tAbsError: 2.74074e-02\n", + " Region: \"zone_3\"\tRelError: 1.39958e-01\tAbsError: 1.11948e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.62479e-03\tAbsError: 5.61415e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10675e-03\tAbsError: 5.58064e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33227e-01\tAbsError: 2.74092e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.87183e-01\tAbsError: 2.23636e+15\n", + " Region: \"zone_1\"\tRelError: 9.26474e-02\tAbsError: 2.56694e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.26474e-02\tAbsError: 2.56694e-02\n", + " Region: \"zone_3\"\tRelError: 9.45355e-02\tAbsError: 2.23636e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.69676e-03\tAbsError: 1.12052e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.80563e-04\tAbsError: 1.11585e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.26582e-02\tAbsError: 2.56735e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.88385e-01\tAbsError: 1.37643e+15\n", + " Region: \"zone_1\"\tRelError: 9.38716e-02\tAbsError: 2.13152e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.38716e-02\tAbsError: 2.13152e-02\n", + " Region: \"zone_3\"\tRelError: 9.45133e-02\tAbsError: 1.37643e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.62109e-04\tAbsError: 6.91148e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.66335e-04\tAbsError: 6.85279e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.38849e-02\tAbsError: 2.13187e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.29712e-04\tAbsError: 8.51599e+14\n", + " Region: \"zone_1\"\tRelError: 1.39923e-05\tAbsError: 3.37687e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39923e-05\tAbsError: 3.37687e-06\n", + " Region: \"zone_3\"\tRelError: 2.15719e-04\tAbsError: 8.51599e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.30847e-04\tAbsError: 4.26080e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.08799e-05\tAbsError: 4.25519e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39923e-05\tAbsError: 3.37687e-06\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 9.80562e-05\tAbsError: 7.56344e+13\n", + " Region: \"zone_1\"\tRelError: 6.81348e-06\tAbsError: 1.28070e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.81348e-06\tAbsError: 1.28070e-06\n", + " Region: \"zone_3\"\tRelError: 9.12427e-05\tAbsError: 7.56344e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69879e-05\tAbsError: 3.86813e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.36926e-06\tAbsError: 3.69531e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.88560e-06\tAbsError: 1.34278e-06\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.24921e-09\tAbsError: 6.12002e+09\n", + " Region: \"zone_1\"\tRelError: 6.39754e-10\tAbsError: 5.94538e-11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.39754e-10\tAbsError: 5.94538e-11\n", + " Region: \"zone_3\"\tRelError: 2.60945e-09\tAbsError: 6.12002e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.20883e-09\tAbsError: 3.09406e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.54944e-10\tAbsError: 3.02596e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 6.45680e-10\tAbsError: 5.94538e-11\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:36\u001b[0m.\u001b[1;36m729\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:36\u001b[0m.\u001b[1;36m807\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:37\u001b[0m.\u001b[1;36m346\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:37\u001b[0m.\u001b[1;36m353\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.0.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:37\u001b[0m.\u001b[1;36m416\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.5.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:37\u001b[0m.\u001b[1;36m479\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.55.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:37\u001b[0m.\u001b[1;36m537\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.6.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:37\u001b[0m.\u001b[1;36m592\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.65.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:37\u001b[0m.\u001b[1;36m647\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.7.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:37\u001b[0m.\u001b[1;36m703\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.75.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:37\u001b[0m.\u001b[1;36m758\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.8.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:37\u001b[0m.\u001b[1;36m812\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.85.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:37\u001b[0m.\u001b[1;36m867\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.9.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:37\u001b[0m.\u001b[1;36m922\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.95.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:37\u001b[0m.\u001b[1;36m978\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.0.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:38\u001b[0m.\u001b[1;36m034\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.05.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:38\u001b[0m.\u001b[1;36m087\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.1.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:38\u001b[0m.\u001b[1;36m143\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.15.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:38\u001b[0m.\u001b[1;36m197\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.2.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:38\u001b[0m.\u001b[1;36m252\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.25.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:38\u001b[0m.\u001b[1;36m307\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.3.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:38\u001b[0m.\u001b[1;36m361\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mFinished_reading devsim data\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:38\u001b[0m.\u001b[1;36m367\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading heat-charge solver CHARGE output.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:38\u001b[0m.\u001b[1;36m423\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor charge_global_mnt\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:39\u001b[0m.\u001b[1;36m384\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor potential_global_mnt\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:39\u001b[0m.\u001b[1;36m884\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor capacitance_global_mnt\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:40\u001b[0m.\u001b[1;36m879\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor temp_mnt\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m379\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mPostprocess time (s): 4.0256\u001b[0m \n" + ] + }, + { + "data": { + "text/plain": [ + "CompletedProcess(args=['cp', 'output/simulation_data.hdf5', 'tmp_Ba_example_iso/'], returncode=0)" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "results_iso = run_heat_sim(sim=sim_iso, log_level=\"DEBUG\")\n", + "subprocess.run([\"cp\", \"-r\", \"tmp\", \"tmp_Ba_example_iso\"]) \n", + "subprocess.run([\"cp\", \"output/simulation_data.hdf5\", \"tmp_Ba_example_iso/\"]) " + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "04d6037a-adb9-4b8c-b319-64074b203f9c", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m734\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mSetting up heat-charge simulation.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m751\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin meshing heat-charge simulation.\u001b[0m \n", + "Debug : Destroying model model\n", + "Debug : Destroying model \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m762\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin adding structures to mesh.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m768\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m775\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m781\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m787\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m793\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m799\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m805\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m811\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m817\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m823\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m829\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m835\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m841\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m848\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd adding structures to mesh.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m854\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m861\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m867\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m874\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m880\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m886\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m892\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m899\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m905\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m911\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m917\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m924\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m930\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin adding monitors.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m936\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd adding monitors.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:41\u001b[0m.\u001b[1;36m942\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin combining added structures.\u001b[0m \n", + "Info : [ 20%] Fragments " + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Warning : Logger already started - ignoring\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Debug : BOOL (2,1) other \n", + "Debug : BOOL (3,1) replaced by 1\n", + "Debug : BOOL (3,2) other\n", + "Debug : BOOL (3,3) replaced by 1\n", + "Debug : BOOL (3,4) replaced by 1\n", + "Debug : BOOL (3,5) replaced by 1\n", + "Debug : BOOL (3,6) other\n", + "Debug : BOOL (2,38) other\n", + "Debug : BOOL (2,39) other\n", + "Debug : BOOL (2,40) other\n", + "Debug : BOOL (2,41) other\n", + "Debug : BOOL (2,42) other\n", + "Debug : BOOL (2,43) other\n", + "Debug : BOOL (2,44) other\n", + "Debug : BOOL (2,45) other\n", + "Debug : BOOL (2,46) other\n", + "Debug : BOOL (2,47) other\n", + "Debug : BOOL (2,48) other\n", + "Debug : BOOL (2,49) other\n", + "Debug : BOOL in (2,1) -> out (2,47) (2,48) (2,7) (2,13) (2,49) (2,8) (2,50) (2,51) (2,52) (2,53) (2,54) (2,12) (2,55) (2,56) (2,35) (2,36) (2,57) (2,58) (2,9) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (3,1) -> out (3,1)\n", + "Debug : BOOL in (3,2) -> out (3,6) (3,5) (3,3) (3,7) (3,8) (3,4) (3,9)\n", + "Debug : BOOL in (3,3) -> out (3,3)\n", + "Debug : BOOL in (3,4) -> out (3,4)\n", + "Debug : BOOL in (3,5) -> out (3,5)\n", + "Debug : BOOL in (3,6) -> out (3,9) (3,8)\n", + "Debug : BOOL in (2,38) -> out (2,13) (2,49) (2,50)\n", + "Debug : BOOL in (2,39) -> out (2,47) (2,48) (2,7) (2,13) (2,49) (2,8) (2,50) (2,51) (2,52) (2,53) (2,54) (2,12) (2,55) (2,56) (2,35) (2,36) (2,57) (2,58) (2,9) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,40) -> out (2,8) (2,52) (2,55)\n", + "Debug : BOOL in (2,41) -> out (2,47) (2,48) (2,7) (2,13) (2,49) (2,8) (2,50) (2,51) (2,52) (2,53) (2,54) (2,12) (2,55) (2,56) (2,35) (2,36) (2,57) (2,58) (2,9) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,42) -> out (2,11) (2,60) (2,37) (2,43)\n", + "Debug : BOOL in (2,43) -> out (2,47) (2,48) (2,7) (2,13) (2,49) (2,8) (2,50) (2,51) (2,52) (2,53) (2,54) (2,12) (2,55) (2,56) (2,35) (2,36) (2,57) (2,58) (2,9) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,44) -> out (2,10) (2,63) (2,44) (2,38)\n", + "Debug : BOOL in (2,45) -> out (2,47) (2,48) (2,7) (2,13) (2,49) (2,8) (2,50) (2,51) (2,52) (2,53) (2,54) (2,12) (2,55) (2,56) (2,35) (2,36) (2,57) (2,58) (2,9) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,46) -> out (2,12) (2,54) (2,36)\n", + "Debug : BOOL in (2,47) -> out (2,47) (2,48) (2,7) (2,13) (2,49) (2,8) (2,50) (2,51) (2,52) (2,53) (2,54) (2,12) (2,55) (2,56) (2,35) (2,36) (2,57) (2,58) (2,9) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,48) -> out (2,9) (2,59) (2,39)\n", + "Debug : BOOL in (2,49) -> out (2,47) (2,48) (2,7) (2,13) (2,49) (2,8) (2,50) (2,51) (2,52) (2,53) (2,54) (2,12) (2,55) (2,56) (2,35) (2,36) (2,57) (2,58) (2,9) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:42\u001b[0m.\u001b[1;36m005\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd adding structures to mesh.\u001b[0m \n", + "Debug : Syncing OCC_Internals with GModel\n", + "Debug : Sync is removing 376 model entities\n", + "Debug : Destroying 0 entities in model\n", + "Debug : OCCRTree found 3 matches at (-2.5,-0.8,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (-2.5,-0.8,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (-2.5,-0.8,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (-2.5,-0.8,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (-2.5,-0.8,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (-2.5,-0.8,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-0.8,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-0.8,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-0.8,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-0.8,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-0.8,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-0.8,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.8,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.8,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.8,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.8,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.8,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.8,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,2,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,2,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,2,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,2,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,2,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,2,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.8,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.8,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.8,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.4475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.4475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.4475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.4475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.4475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.4475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,2.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,2.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,2.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,2.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,2.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,2.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,1.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,1.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,1.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,1.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,1.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,1.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.05,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.05,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.05,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.05,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.05,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.05,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-1.3,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-1.3,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-1.3,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-1.3,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-1.3,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-1.3,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.05,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.05,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.05,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.05,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.05,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.05,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.045,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.045,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.045,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,1,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,1,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,1,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,1,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,1,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,1,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 7 - new wire\n", + "Debug : Curve 8 (7 --> 8) ori 1\n", + "Debug : Curve 42 (8 --> 34) ori 1\n", + "Debug : Curve 41 (33 --> 34) ori -1\n", + "Debug : Curve 40 (11 --> 33) ori -1\n", + "Debug : Curve 14 (13 --> 11) ori -1\n", + "Debug : Curve 39 (32 --> 13) ori -1\n", + "Debug : Curve 38 (31 --> 32) ori -1\n", + "Debug : Curve 37 (14 --> 31) ori -1\n", + "Debug : Curve 16 (15 --> 14) ori -1\n", + "Debug : Curve 36 (30 --> 15) ori -1\n", + "Debug : Curve 35 (29 --> 30) ori -1\n", + "Debug : Curve 34 (16 --> 29) ori -1\n", + "Debug : Curve 18 (17 --> 16) ori -1\n", + "Debug : Curve 33 (28 --> 17) ori -1\n", + "Debug : Curve 32 (27 --> 28) ori -1\n", + "Debug : Curve 31 (18 --> 27) ori -1\n", + "Debug : Curve 20 (19 --> 18) ori -1\n", + "Debug : Curve 30 (26 --> 19) ori -1\n", + "Debug : Curve 29 (25 --> 26) ori -1\n", + "Debug : Curve 28 (20 --> 25) ori -1\n", + "Debug : Curve 22 (21 --> 20) ori -1\n", + "Debug : Curve 27 (24 --> 21) ori -1\n", + "Debug : Curve 26 (23 --> 24) ori -1\n", + "Debug : Curve 25 (23 --> 7) ori 1\n", + "Debug : OCC surface 7 with 24 parameter bounds (-2.4,2.4)(-1.65,-0.94)\n", + "Debug : OCCRTree found 1 matches at (0,-0.445,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.445,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.445,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 8 - new wire\n", + "Debug : Curve 43 (22 --> 23) ori 1\n", + "Debug : Curve 26 (23 --> 24) ori 1\n", + "Debug : Curve 27 (24 --> 21) ori 1\n", + "Debug : Curve 23 (22 --> 21) ori -1\n", + "Debug : OCC surface 8 with 4 parameter bounds (-2.4,-2.29)(-0.945,-0.94)\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 9 - new wire\n", + "Debug : Curve 21 (20 --> 19) ori -1\n", + "Debug : Curve 28 (20 --> 25) ori 1\n", + "Debug : Curve 29 (25 --> 26) ori 1\n", + "Debug : Curve 30 (26 --> 19) ori 1\n", + "Debug : OCC surface 9 with 4 parameter bounds (-1.31,-1.19)(-0.945,-0.94)\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 10 - new wire\n", + "Debug : Curve 19 (18 --> 17) ori -1\n", + "Debug : Curve 31 (18 --> 27) ori 1\n", + "Debug : Curve 32 (27 --> 28) ori 1\n", + "Debug : Curve 33 (28 --> 17) ori 1\n", + "Debug : OCC surface 10 with 4 parameter bounds (-0.31,-0.19)(-0.945,-0.94)\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 11 - new wire\n", + "Debug : Curve 36 (30 --> 15) ori 1\n", + "Debug : Curve 17 (16 --> 15) ori -1\n", + "Debug : Curve 34 (16 --> 29) ori 1\n", + "Debug : Curve 35 (29 --> 30) ori 1\n", + "Debug : OCC surface 11 with 4 parameter bounds (0.19,0.31)(-0.945,-0.94)\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 12 - new wire\n", + "Debug : Curve 39 (32 --> 13) ori 1\n", + "Debug : Curve 15 (14 --> 13) ori -1\n", + "Debug : Curve 37 (14 --> 31) ori 1\n", + "Debug : Curve 38 (31 --> 32) ori 1\n", + "Debug : OCC surface 12 with 4 parameter bounds (1.19,1.31)(-0.945,-0.94)\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 13 - new wire\n", + "Debug : Curve 41 (33 --> 34) ori 1\n", + "Debug : Curve 44 (34 --> 12) ori 1\n", + "Debug : Curve 13 (11 --> 12) ori -1\n", + "Debug : Curve 40 (11 --> 33) ori 1\n", + "Debug : OCC surface 13 with 4 parameter bounds (2.29,2.4)(-0.945,-0.94)\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 35 - new wire\n", + "Debug : Curve 92 (68 --> 70) ori 1\n", + "Debug : Curve 118 (70 --> 84) ori 1\n", + "Debug : Curve 117 (84 --> 83) ori 1\n", + "Debug : Curve 116 (83 --> 53) ori 1\n", + "Debug : Curve 67 (53 --> 52) ori 1\n", + "Debug : Curve 69 (54 --> 52) ori -1\n", + "Debug : Curve 73 (54 --> 58) ori 1\n", + "Debug : Curve 115 (82 --> 58) ori -1\n", + "Debug : Curve 114 (81 --> 82) ori -1\n", + "Debug : Curve 113 (57 --> 81) ori -1\n", + "Debug : Curve 71 (57 --> 55) ori 1\n", + "Debug : Curve 112 (80 --> 55) ori -1\n", + "Debug : Curve 111 (60 --> 80) ori -1\n", + "Debug : Curve 76 (60 --> 59) ori 1\n", + "Debug : Curve 79 (59 --> 61) ori 1\n", + "Debug : Curve 81 (63 --> 61) ori -1\n", + "Debug : Curve 110 (79 --> 63) ori -1\n", + "Debug : Curve 109 (67 --> 79) ori -1\n", + "Debug : Curve 85 (67 --> 66) ori 1\n", + "Debug : Curve 108 (78 --> 66) ori -1\n", + "Debug : Curve 107 (77 --> 78) ori -1\n", + "Debug : Curve 106 (64 --> 77) ori -1\n", + "Debug : Curve 83 (64 --> 65) ori 1\n", + "Debug : Curve 89 (65 --> 68) ori 1\n", + "Debug : OCC surface 35 with 24 parameter bounds (-2.4,2.4)(-0.85,2.5)\n", + "Debug : OCCRTree found 1 matches at (0,1.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,1.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,1.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 36 - new wire\n", + "Debug : Curve 84 (66 --> 64) ori 1\n", + "Debug : Curve 106 (64 --> 77) ori 1\n", + "Debug : Curve 107 (77 --> 78) ori 1\n", + "Debug : Curve 108 (78 --> 66) ori 1\n", + "Debug : OCC surface 36 with 4 parameter bounds (1.19,1.31)(-0.85,-0.845)\n", + "Debug : OCCRTree found 1 matches at (-1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 37 - new wire\n", + "Debug : Curve 86 (62 --> 67) ori 1\n", + "Debug : Curve 109 (67 --> 79) ori 1\n", + "Debug : Curve 110 (79 --> 63) ori 1\n", + "Debug : Curve 82 (62 --> 63) ori -1\n", + "Debug : OCC surface 37 with 4 parameter bounds (0.25,0.31)(-0.85,-0.845)\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 38 - new wire\n", + "Debug : Curve 112 (80 --> 55) ori 1\n", + "Debug : Curve 70 (55 --> 56) ori 1\n", + "Debug : Curve 77 (56 --> 60) ori 1\n", + "Debug : Curve 111 (60 --> 80) ori 1\n", + "Debug : OCC surface 38 with 4 parameter bounds (-0.31,-0.25)(-0.85,-0.845)\n", + "Debug : OCCRTree found 1 matches at (0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 39 - new wire\n", + "Debug : Curve 115 (82 --> 58) ori 1\n", + "Debug : Curve 72 (58 --> 57) ori 1\n", + "Debug : Curve 113 (57 --> 81) ori 1\n", + "Debug : Curve 114 (81 --> 82) ori 1\n", + "Debug : OCC surface 39 with 4 parameter bounds (-1.31,-1.19)(-0.85,-0.845)\n", + "Debug : OCCRTree found 1 matches at (1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 42 - new wire\n", + "Debug : Curve 121 (86 --> 85) ori 1\n", + "Debug : Curve 126 (88 --> 85) ori -1\n", + "Debug : Curve 125 (63 --> 88) ori -1\n", + "Debug : Curve 81 (63 --> 61) ori 1\n", + "Debug : Curve 79 (59 --> 61) ori -1\n", + "Debug : Curve 76 (60 --> 59) ori -1\n", + "Debug : Curve 124 (87 --> 60) ori -1\n", + "Debug : Curve 123 (86 --> 87) ori -1\n", + "Debug : OCC surface 42 with 8 parameter bounds (-0.25,0.25)(-0.85,-0.63)\n", + "Debug : OCCRTree found 1 matches at (0,0.11,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.11,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.11,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 43 - new wire\n", + "Debug : Curve 120 (85 --> 62) ori 1\n", + "Debug : Curve 82 (62 --> 63) ori 1\n", + "Debug : Curve 125 (63 --> 88) ori 1\n", + "Debug : Curve 126 (88 --> 85) ori 1\n", + "Debug : OCC surface 43 with 4 parameter bounds (0.19,0.25)(-0.85,-0.845)\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 44 - new wire\n", + "Debug : Curve 122 (56 --> 86) ori 1\n", + "Debug : Curve 123 (86 --> 87) ori 1\n", + "Debug : Curve 124 (87 --> 60) ori 1\n", + "Debug : Curve 77 (56 --> 60) ori -1\n", + "Debug : OCC surface 44 with 4 parameter bounds (-0.25,-0.19)(-0.85,-0.845)\n", + "Debug : OCCRTree found 1 matches at (0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 47 - new wire\n", + "Debug : Curve 128 (89 --> 90) ori 1\n", + "Debug : Curve 131 (90 --> 92) ori 1\n", + "Debug : Curve 130 (91 --> 92) ori -1\n", + "Debug : Curve 129 (91 --> 89) ori 1\n", + "Debug : OCC surface 47 with 4 parameter bounds (-2.4,2.4)(-2.5,-2.15)\n", + "Debug : OCCRTree found 1 matches at (0,-1.475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-1.475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-1.475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 48 - new wire\n", + "Debug : Curve 130 (91 --> 92) ori 1\n", + "Debug : Curve 133 (92 --> 8) ori 1\n", + "Debug : Curve 8 (7 --> 8) ori -1\n", + "Debug : Curve 132 (7 --> 91) ori 1\n", + "Debug : OCC surface 48 with 4 parameter bounds (-2.4,2.4)(-2.15,-1.65)\n", + "Debug : OCCRTree found 1 matches at (0,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 49 - new wire\n", + "Debug : Curve 13 (11 --> 12) ori 1\n", + "Debug : Curve 136 (12 --> 94) ori 1\n", + "Debug : Curve 135 (93 --> 94) ori -1\n", + "Debug : Curve 134 (93 --> 11) ori 1\n", + "Debug : OCC surface 49 with 4 parameter bounds (2.29,2.4)(-0.94,-0.85)\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 50 - new wire\n", + "Debug : Curve 135 (93 --> 94) ori 1\n", + "Debug : Curve 139 (94 --> 96) ori 1\n", + "Debug : Curve 138 (96 --> 95) ori 1\n", + "Debug : Curve 137 (95 --> 93) ori 1\n", + "Debug : OCC surface 50 with 4 parameter bounds (2.29,2.4)(-0.85,-0.845)\n", + "Debug : OCCRTree found 1 matches at (-2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 51 - new wire\n", + "Debug : Curve 14 (13 --> 11) ori 1\n", + "Debug : Curve 134 (93 --> 11) ori -1\n", + "Debug : Curve 141 (65 --> 93) ori -1\n", + "Debug : Curve 83 (64 --> 65) ori -1\n", + "Debug : Curve 140 (13 --> 64) ori -1\n", + "Debug : OCC surface 51 with 5 parameter bounds (1.31,2.29)(-0.94,-0.85)\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 52 - new wire\n", + "Debug : Curve 142 (97 --> 22) ori 1\n", + "Debug : Curve 23 (22 --> 21) ori 1\n", + "Debug : Curve 144 (21 --> 98) ori 1\n", + "Debug : Curve 143 (97 --> 98) ori -1\n", + "Debug : OCC surface 52 with 4 parameter bounds (-2.4,-2.29)(-0.94,-0.85)\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 53 - new wire\n", + "Debug : Curve 138 (96 --> 95) ori -1\n", + "Debug : Curve 145 (96 --> 70) ori 1\n", + "Debug : Curve 92 (68 --> 70) ori -1\n", + "Debug : Curve 89 (65 --> 68) ori -1\n", + "Debug : Curve 141 (65 --> 93) ori 1\n", + "Debug : Curve 137 (95 --> 93) ori -1\n", + "Debug : OCC surface 53 with 6 parameter bounds (2,2.4)(-0.85,1.15)\n", + "Debug : OCCRTree found 1 matches at (-2.2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 54 - new wire\n", + "Debug : Curve 15 (14 --> 13) ori 1\n", + "Debug : Curve 140 (13 --> 64) ori 1\n", + "Debug : Curve 84 (66 --> 64) ori -1\n", + "Debug : Curve 146 (66 --> 14) ori 1\n", + "Debug : OCC surface 54 with 4 parameter bounds (1.19,1.31)(-0.94,-0.85)\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 55 - new wire\n", + "Debug : Curve 147 (99 --> 97) ori 1\n", + "Debug : Curve 143 (97 --> 98) ori 1\n", + "Debug : Curve 149 (98 --> 100) ori 1\n", + "Debug : Curve 148 (100 --> 99) ori 1\n", + "Debug : OCC surface 55 with 4 parameter bounds (-2.4,-2.29)(-0.85,-0.845)\n", + "Debug : OCCRTree found 1 matches at (2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 56 - new wire\n", + "Debug : Curve 144 (21 --> 98) ori -1\n", + "Debug : Curve 22 (21 --> 20) ori 1\n", + "Debug : Curve 151 (58 --> 20) ori -1\n", + "Debug : Curve 73 (54 --> 58) ori -1\n", + "Debug : Curve 150 (98 --> 54) ori -1\n", + "Debug : OCC surface 56 with 5 parameter bounds (-2.29,-1.31)(-0.94,-0.85)\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 57 - new wire\n", + "Debug : Curve 16 (15 --> 14) ori 1\n", + "Debug : Curve 146 (66 --> 14) ori -1\n", + "Debug : Curve 85 (67 --> 66) ori -1\n", + "Debug : Curve 152 (15 --> 67) ori -1\n", + "Debug : OCC surface 57 with 4 parameter bounds (0.31,1.19)(-0.94,-0.85)\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 58 - new wire\n", + "Debug : Curve 153 (53 --> 99) ori 1\n", + "Debug : Curve 148 (100 --> 99) ori -1\n", + "Debug : Curve 149 (98 --> 100) ori -1\n", + "Debug : Curve 150 (98 --> 54) ori 1\n", + "Debug : Curve 69 (54 --> 52) ori 1\n", + "Debug : Curve 67 (53 --> 52) ori -1\n", + "Debug : OCC surface 58 with 6 parameter bounds (-2.4,-2)(-0.85,1.15)\n", + "Debug : OCCRTree found 1 matches at (2.2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 59 - new wire\n", + "Debug : Curve 151 (58 --> 20) ori 1\n", + "Debug : Curve 21 (20 --> 19) ori 1\n", + "Debug : Curve 154 (19 --> 57) ori 1\n", + "Debug : Curve 72 (58 --> 57) ori -1\n", + "Debug : OCC surface 59 with 4 parameter bounds (-1.31,-1.19)(-0.94,-0.85)\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 60 - new wire\n", + "Debug : Curve 17 (16 --> 15) ori 1\n", + "Debug : Curve 152 (15 --> 67) ori 1\n", + "Debug : Curve 86 (62 --> 67) ori -1\n", + "Debug : Curve 120 (85 --> 62) ori -1\n", + "Debug : Curve 155 (85 --> 16) ori 1\n", + "Debug : OCC surface 60 with 5 parameter bounds (0.19,0.31)(-0.94,-0.85)\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 61 - new wire\n", + "Debug : Curve 154 (19 --> 57) ori -1\n", + "Debug : Curve 20 (19 --> 18) ori 1\n", + "Debug : Curve 156 (55 --> 18) ori -1\n", + "Debug : Curve 71 (57 --> 55) ori -1\n", + "Debug : OCC surface 61 with 4 parameter bounds (-1.19,-0.31)(-0.94,-0.85)\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 62 - new wire\n", + "Debug : Curve 18 (17 --> 16) ori 1\n", + "Debug : Curve 155 (85 --> 16) ori -1\n", + "Debug : Curve 121 (86 --> 85) ori -1\n", + "Debug : Curve 157 (17 --> 86) ori -1\n", + "Debug : OCC surface 62 with 4 parameter bounds (-0.19,0.19)(-0.94,-0.85)\n", + "Debug : OCCRTree found 1 matches at (0,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 63 - new wire\n", + "Debug : Curve 156 (55 --> 18) ori 1\n", + "Debug : Curve 19 (18 --> 17) ori 1\n", + "Debug : Curve 157 (17 --> 86) ori 1\n", + "Debug : Curve 122 (56 --> 86) ori -1\n", + "Debug : Curve 70 (55 --> 56) ori -1\n", + "Debug : OCC surface 63 with 5 parameter bounds (-0.31,-0.19)(-0.94,-0.85)\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : GModel imported:\n", + "Debug : 81 points\n", + "Debug : 110 curves\n", + "Debug : 32 surfaces\n", + "Debug : 0 volumes\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:42\u001b[0m.\u001b[1;36m020\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin constructing surface dictionary.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:42\u001b[0m.\u001b[1;36m028\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd constructing surface dictionary.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:42\u001b[0m.\u001b[1;36m035\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin create volume zones.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:42\u001b[0m.\u001b[1;36m041\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd create volume zones.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:42\u001b[0m.\u001b[1;36m047\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin create surface zones.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:42\u001b[0m.\u001b[1;36m056\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mContinue create surface zones.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:42\u001b[0m.\u001b[1;36m062\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd create surface zones.\u001b[0m \n", + "Debug : Decoded option name 'Mesh' . 'MeshSizeExtendFromBoundary' (index 0)\n", + "Debug : Decoded option name 'Mesh' . 'MeshSizeFromPoints' (index 0)\n", + "Debug : Decoded option name 'Mesh' . 'MeshSizeFromCurvature' (index 0)\n", + "Debug : Destroying 28 entities in model\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:42\u001b[0m.\u001b[1;36m069\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin meshing.\u001b[0m \n", + "Debug : Decoded option name 'Mesh' . 'Algorithm' (index 0)\n", + "Debug : Decoded option name 'Mesh' . 'Algorithm3D' (index 0)\n", + "Debug : Decoded option name 'General' . 'NumThreads' (index 0)\n", + "Info : Meshing 1D...\n", + "Info : [ 0%] Meshing curve 8 (Line)\n", + "Debug : Meshing curve 8 (Line): 9 interior vertices\n", + "Info : [ 10%] Meshing curve 13 (Line)\n", + "Debug : Meshing curve 13 (Line): 26 interior vertices\n", + "Info : [ 10%] Meshing curve 14 (Line)\n", + "Debug : Meshing curve 14 (Line): 44 interior vertices\n", + "Info : [ 10%] Meshing curve 15 (Line)\n", + "Debug : Meshing curve 15 (Line): 28 interior vertices\n", + "Info : [ 10%] Meshing curve 16 (Line)\n", + "Debug : Meshing curve 16 (Line): 40 interior vertices\n", + "Info : [ 10%] Meshing curve 17 (Line)\n", + "Debug : Meshing curve 17 (Line): 28 interior vertices\n", + "Info : [ 10%] Meshing curve 18 (Line)\n", + "Debug : Meshing curve 18 (Line): 20 interior vertices\n", + "Info : [ 10%] Meshing curve 19 (Line)\n", + "Debug : Meshing curve 19 (Line): 28 interior vertices\n", + "Info : [ 10%] Meshing curve 20 (Line)\n", + "Debug : Meshing curve 20 (Line): 40 interior vertices\n", + "Info : [ 10%] Meshing curve 21 (Line)\n", + "Debug : Meshing curve 21 (Line): 28 interior vertices\n", + "Info : [ 20%] Meshing curve 22 (Line)\n", + "Debug : Meshing curve 22 (Line): 44 interior vertices\n", + "Info : [ 20%] Meshing curve 23 (Line)\n", + "Debug : Meshing curve 23 (Line): 26 interior vertices\n", + "Info : [ 20%] Meshing curve 25 (Line)\n", + "Debug : Meshing curve 25 (Line): 11 interior vertices\n", + "Info : [ 20%] Meshing curve 26 (Line)\n", + "Debug : Meshing curve 26 (Line): 26 interior vertices\n", + "Info : [ 20%] Meshing curve 27 (Line)\n", + "Debug : Meshing curve 27 (Line): 1 interior vertices\n", + "Info : [ 20%] Meshing curve 28 (Line)\n", + "Debug : Meshing curve 28 (Line): 1 interior vertices\n", + "Info : [ 20%] Meshing curve 29 (Line)\n", + "Debug : Meshing curve 29 (Line): 28 interior vertices\n", + "Info : [ 20%] Meshing curve 30 (Line)\n", + "Debug : Meshing curve 30 (Line): 1 interior vertices\n", + "Info : [ 20%] Meshing curve 31 (Line)\n", + "Debug : Meshing curve 31 (Line): 1 interior vertices\n", + "Info : [ 20%] Meshing curve 32 (Line)\n", + "Debug : Meshing curve 32 (Line): 28 interior vertices\n", + "Info : [ 30%] Meshing curve 33 (Line)\n", + "Debug : Meshing curve 33 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 34 (Line)\n", + "Debug : Meshing curve 34 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 35 (Line)\n", + "Debug : Meshing curve 35 (Line): 28 interior vertices\n", + "Info : [ 30%] Meshing curve 36 (Line)\n", + "Debug : Meshing curve 36 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 37 (Line)\n", + "Debug : Meshing curve 37 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 38 (Line)\n", + "Debug : Meshing curve 38 (Line): 28 interior vertices\n", + "Info : [ 30%] Meshing curve 39 (Line)\n", + "Debug : Meshing curve 39 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 40 (Line)\n", + "Debug : Meshing curve 40 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 41 (Line)\n", + "Debug : Meshing curve 41 (Line): 26 interior vertices\n", + "Info : [ 40%] Meshing curve 42 (Line)\n", + "Debug : Meshing curve 42 (Line): 11 interior vertices\n", + "Info : [ 40%] Meshing curve 43 (Line)\n", + "Debug : Meshing curve 43 (Line): 1 interior vertices\n", + "Info : [ 40%] Meshing curve 44 (Line)\n", + "Debug : Meshing curve 44 (Line): 1 interior vertices\n", + "Info : [ 40%] Meshing curve 67 (Line)\n", + "Debug : Meshing curve 67 (Line): 0 interior vertices\n", + "Info : [ 40%] Meshing curve 69 (Line)\n", + "Debug : Meshing curve 69 (Line): 9 interior vertices\n", + "Info : [ 40%] Meshing curve 70 (Line)\n", + "Debug : Meshing curve 70 (Line): 14 interior vertices\n", + "Info : [ 40%] Meshing curve 71 (Line)\n", + "Debug : Meshing curve 71 (Line): 40 interior vertices\n", + "Info : [ 40%] Meshing curve 72 (Line)\n", + "Debug : Meshing curve 72 (Line): 28 interior vertices\n", + "Info : [ 40%] Meshing curve 73 (Line)\n", + "Debug : Meshing curve 73 (Line): 30 interior vertices\n", + "Info : [ 40%] Meshing curve 76 (Line)\n", + "Debug : Meshing curve 76 (Line): 11 interior vertices\n", + "Info : [ 50%] Meshing curve 77 (Line)\n", + "Debug : Meshing curve 77 (Line): 1 interior vertices\n", + "Info : [ 50%] Meshing curve 79 (Line)\n", + "Debug : Meshing curve 79 (Line): 19 interior vertices\n", + "Info : [ 50%] Meshing curve 81 (Line)\n", + "Debug : Meshing curve 81 (Line): 11 interior vertices\n", + "Info : [ 50%] Meshing curve 82 (Line)\n", + "Debug : Meshing curve 82 (Line): 1 interior vertices\n", + "Info : [ 50%] Meshing curve 83 (Line)\n", + "Debug : Meshing curve 83 (Line): 30 interior vertices\n", + "Info : [ 50%] Meshing curve 84 (Line)\n", + "Debug : Meshing curve 84 (Line): 28 interior vertices\n", + "Info : [ 50%] Meshing curve 85 (Line)\n", + "Debug : Meshing curve 85 (Line): 40 interior vertices\n", + "Info : [ 50%] Meshing curve 86 (Line)\n", + "Debug : Meshing curve 86 (Line): 14 interior vertices\n", + "Info : [ 50%] Meshing curve 89 (Line)\n", + "Debug : Meshing curve 89 (Line): 9 interior vertices\n", + "Info : [ 60%] Meshing curve 92 (Line)\n", + "Debug : Meshing curve 92 (Line): 0 interior vertices\n", + "Info : [ 60%] Meshing curve 106 (Line)\n", + "Debug : Meshing curve 106 (Line): 1 interior vertices\n", + "Info : [ 60%] Meshing curve 107 (Line)\n", + "Debug : Meshing curve 107 (Line): 28 interior vertices\n", + "Info : [ 60%] Meshing curve 108 (Line)\n", + "Debug : Meshing curve 108 (Line): 1 interior vertices\n", + "Info : [ 60%] Meshing curve 109 (Line)\n", + "Debug : Meshing curve 109 (Line): 1 interior vertices\n", + "Info : [ 60%] Meshing curve 110 (Line)\n", + "Debug : Meshing curve 110 (Line): 14 interior vertices\n", + "Info : [ 60%] Meshing curve 111 (Line)\n", + "Debug : Meshing curve 111 (Line): 14 interior vertices\n", + "Info : [ 60%] Meshing curve 112 (Line)\n", + "Debug : Meshing curve 112 (Line): 1 interior vertices\n", + "Info : [ 60%] Meshing curve 113 (Line)\n", + "Debug : Meshing curve 113 (Line): 1 interior vertices\n", + "Info : [ 60%] Meshing curve 114 (Line)\n", + "Debug : Meshing curve 114 (Line): 28 interior vertices\n", + "Info : [ 70%] Meshing curve 115 (Line)\n", + "Debug : Meshing curve 115 (Line): 1 interior vertices\n", + "Info : [ 70%] Meshing curve 116 (Line)\n", + "Debug : Meshing curve 116 (Line): 2 interior vertices\n", + "Info : [ 70%] Meshing curve 117 (Line)\n", + "Debug : Meshing curve 117 (Line): 9 interior vertices\n", + "Info : [ 70%] Meshing curve 118 (Line)\n", + "Debug : Meshing curve 118 (Line): 2 interior vertices\n", + "Info : [ 70%] Meshing curve 120 (Line)\n", + "Debug : Meshing curve 120 (Line): 14 interior vertices\n", + "Info : [ 70%] Meshing curve 121 (Line)\n", + "Debug : Meshing curve 121 (Line): 20 interior vertices\n", + "Info : [ 70%] Meshing curve 122 (Line)\n", + "Debug : Meshing curve 122 (Line): 14 interior vertices\n", + "Info : [ 70%] Meshing curve 123 (Line)\n", + "Debug : Meshing curve 123 (Line): 1 interior vertices\n", + "Info : [ 70%] Meshing curve 124 (Line)\n", + "Debug : Meshing curve 124 (Line): 14 interior vertices\n", + "Info : [ 70%] Meshing curve 125 (Line)\n", + "Debug : Meshing curve 125 (Line): 14 interior vertices\n", + "Info : [ 80%] Meshing curve 126 (Line)\n", + "Debug : Meshing curve 126 (Line): 1 interior vertices\n", + "Info : [ 80%] Meshing curve 134 (Line)\n", + "Debug : Meshing curve 134 (Line): 21 interior vertices\n", + "Info : [ 80%] Meshing curve 135 (Line)\n", + "Debug : Meshing curve 135 (Line): 26 interior vertices\n", + "Info : [ 80%] Meshing curve 136 (Line)\n", + "Debug : Meshing curve 136 (Line): 21 interior vertices\n", + "Info : [ 80%] Meshing curve 140 (Line)\n", + "Debug : Meshing curve 140 (Line): 21 interior vertices\n", + "Info : [ 80%] Meshing curve 141 (Line)\n", + "Debug : Meshing curve 141 (Line): 14 interior vertices\n", + "Info : [ 80%] Meshing curve 142 (Line)\n", + "Debug : Meshing curve 142 (Line): 21 interior vertices\n", + "Info : [ 80%] Meshing curve 143 (Line)\n", + "Debug : Meshing curve 143 (Line): 26 interior vertices\n", + "Info : [ 80%] Meshing curve 144 (Line)\n", + "Debug : Meshing curve 144 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 146 (Line)\n", + "Debug : Meshing curve 146 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 150 (Line)\n", + "Debug : Meshing curve 150 (Line): 14 interior vertices\n", + "Info : [ 90%] Meshing curve 151 (Line)\n", + "Debug : Meshing curve 151 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 152 (Line)\n", + "Debug : Meshing curve 152 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 154 (Line)\n", + "Debug : Meshing curve 154 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 155 (Line)\n", + "Debug : Meshing curve 155 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 156 (Line)\n", + "Debug : Meshing curve 156 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 157 (Line)\n", + "Debug : Meshing curve 157 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 158 (Line)\n", + "Debug : Meshing curve 158 (Line): 2 interior vertices\n", + "Info : [ 90%] Meshing curve 159 (Line)\n", + "Debug : Meshing curve 159 (Line): 0 interior vertices\n", + "Info : [100%] Meshing curve 160 (Line)\n", + "Debug : Meshing curve 160 (Line): 0 interior vertices\n", + "Info : [100%] Meshing curve 161 (Line)\n", + "Debug : Meshing curve 161 (Line): 9 interior vertices\n", + "Info : [100%] Meshing curve 162 (Line)\n", + "Debug : Meshing curve 162 (Line): 2 interior vertices\n", + "Info : [100%] Meshing curve 163 (Line)\n", + "Debug : Meshing curve 163 (Line): 9 interior vertices\n", + "Info : [100%] Meshing curve 164 (Line)\n", + "Debug : Meshing curve 164 (Line): 0 interior vertices\n", + "Info : [100%] Meshing curve 165 (Line)\n", + "Debug : Meshing curve 165 (Line): 0 interior vertices\n", + "Info : [100%] Meshing curve 171 (Line)\n", + "Debug : Meshing curve 171 (Line): 0 interior vertices\n", + "Info : [100%] Meshing curve 178 (Line)\n", + "Debug : Meshing curve 178 (Line): 3 interior vertices\n", + "Info : [100%] Meshing curve 179 (Line)\n", + "Debug : Meshing curve 179 (Line): 3 interior vertices\n", + "Info : Done meshing 1D (Wall 0.0461122s, CPU 0.048314s)\n", + "Info : Meshing 2D...\n", + "Info : [ 0%] Meshing surface 7 (Plane, Delaunay)\n", + "Debug : Recovering 24 model edges\n", + "Debug : Recovering 417 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 7\n", + "Debug : Computing mesh size field at mesh nodes 417\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 417 points created -- Worst tri radius is 16.636\n", + "Debug : Point 0.849571 -0.962496 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.849571 -0.962496 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.92425 -0.994632 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.92425 -0.994632 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.974031 -0.994626 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.974031 -0.994626 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.0245666 -0.994823 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.0236 -0.995088 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.0236 -0.995088 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.0624619 -0.983954 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.99922 -0.961566 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.99922 -0.961566 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.04902 -0.961566 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.04902 -0.961566 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.700214 -0.961558 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.700214 -0.961558 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.188237 -0.952773 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.188237 -0.952773 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.18823 -0.952775 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.18823 -0.952775 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.307931 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.307931 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30793 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30793 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.28753 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.28753 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.31247 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.31247 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.312471 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.312471 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.18753 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.18753 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19207 -0.949745 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19207 -0.949745 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.192069 -0.949739 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.192069 -0.949739 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.187542 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.187542 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30793 -0.949572 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30793 -0.949572 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.307931 -0.949571 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.307931 -0.949571 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.299655 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.299655 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.29966 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.29966 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.20862 -0.950133 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.20862 -0.950133 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.208621 -0.950133 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.245862 -0.949827 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.864448 -1.00756 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.857824 -0.981105 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.817402 -0.981659 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.749674 -0.994294 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.864448 -1.00756 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.857824 -0.981105 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.817402 -0.981659 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.749674 -0.994294 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.200345 -0.949739 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.295517 -0.949413 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.295517 -0.949413 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.29552 -0.949413 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.29552 -0.949413 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.241724 -0.949404 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.13618 -0.985957 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.13618 -0.985957 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19621 -0.948615 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19621 -0.948615 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.20862 -0.94909 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.20862 -0.94909 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.196207 -0.948615 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.212759 -0.948615 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.21276 -0.948743 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.21276 -0.948743 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.241724 -0.948584 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.25 -0.948744 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.25 -0.948744 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.241724 -0.948831 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.24172 -0.948831 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.24172 -0.948831 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.313011 -0.979156 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.313011 -0.979156 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.313 -0.979134 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.313 -0.979134 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.2519 -0.998086 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.2519 -0.998086 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.251899 -0.998093 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.251899 -0.998093 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1685 triangles generated, 635 internal nodes\n", + "Info : [ 10%] Meshing surface 8 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 58 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 8\n", + "Debug : Computing mesh size field at mesh nodes 58\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 58 points created -- Worst tri radius is 0.792\n", + "Debug : Point -2.39796 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.29204 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.29204 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.39796 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 110 triangles generated, 27 internal nodes\n", + "Info : [ 10%] Meshing surface 9 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 9\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point -1.19207 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30793 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30793 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19207 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30718 -0.9425 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19282 -0.9425 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 20%] Meshing surface 10 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 10\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point -0.307931 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.192069 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.192069 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.307931 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.192824 -0.9425 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.307176 -0.9425 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 20%] Meshing surface 11 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 11\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point 0.307931 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.192069 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.307931 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.192069 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.192824 -0.9425 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.307176 -0.9425 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 20%] Meshing surface 12 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 12\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point 1.30793 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19207 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19207 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30793 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19282 -0.9425 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30718 -0.9425 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 30%] Meshing surface 13 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 58 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 13\n", + "Debug : Computing mesh size field at mesh nodes 58\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 58 points created -- Worst tri radius is 0.792\n", + "Debug : Point 2.39796 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.39796 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.29204 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.29204 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 110 triangles generated, 27 internal nodes\n", + "Info : [ 30%] Meshing surface 35 (Plane, Delaunay)\n", + "Debug : Recovering 24 model edges\n", + "Debug : Recovering 326 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 35\n", + "Debug : Computing mesh size field at mesh nodes 326\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 326 points created -- Worst tri radius is 47.641\n", + "Debug : Point -0.312471 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.312471 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.18753 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.18753 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.31243 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.31243 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.8484 -0.80827 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.8484 -0.80827 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1482 triangles generated, 579 internal nodes\n", + "Info : [ 40%] Meshing surface 36 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 36\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point 1.19207 -0.84625 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19207 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30793 -0.84625 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30793 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19282 -0.8475 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30718 -0.8475 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 40%] Meshing surface 37 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 34 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 37\n", + "Debug : Computing mesh size field at mesh nodes 34\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 34 points created -- Worst tri radius is 0.800\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 62 triangles generated, 15 internal nodes\n", + "Info : [ 40%] Meshing surface 38 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 34 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 38\n", + "Debug : Computing mesh size field at mesh nodes 34\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 34 points created -- Worst tri radius is 0.800\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 62 triangles generated, 15 internal nodes\n", + "Info : [ 50%] Meshing surface 39 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 39\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point -1.30793 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19207 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30793 -0.84625 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19207 -0.84625 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19282 -0.8475 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30718 -0.8475 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 50%] Meshing surface 42 (Plane, Delaunay)\n", + "Debug : Recovering 8 model edges\n", + "Debug : Recovering 99 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 42\n", + "Debug : Computing mesh size field at mesh nodes 99\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 99 points created -- Worst tri radius is 9.102\n", + "Debug : Point 0.187542 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.187542 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 613 triangles generated, 258 internal nodes\n", + "Info : [ 60%] Meshing surface 43 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 34 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 43\n", + "Debug : Computing mesh size field at mesh nodes 34\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 34 points created -- Worst tri radius is 0.800\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 62 triangles generated, 15 internal nodes\n", + "Info : [ 60%] Meshing surface 44 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 34 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 44\n", + "Debug : Computing mesh size field at mesh nodes 34\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 34 points created -- Worst tri radius is 0.800\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 62 triangles generated, 15 internal nodes\n", + "Info : [ 60%] Meshing surface 49 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 98 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 49\n", + "Debug : Computing mesh size field at mesh nodes 98\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 98 points created -- Worst tri radius is 11.057\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1506 triangles generated, 705 internal nodes\n", + "Info : [ 70%] Meshing surface 51 (Plane, Delaunay)\n", + "Debug : Recovering 5 model edges\n", + "Debug : Recovering 135 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 51\n", + "Debug : Computing mesh size field at mesh nodes 135\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 135 points created -- Worst tri radius is 5.960\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 539 triangles generated, 203 internal nodes\n", + "Info : [ 70%] Meshing surface 52 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 98 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 52\n", + "Debug : Computing mesh size field at mesh nodes 98\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 98 points created -- Worst tri radius is 11.057\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1522 triangles generated, 713 internal nodes\n", + "Info : [ 70%] Meshing surface 54 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 102 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 54\n", + "Debug : Computing mesh size field at mesh nodes 102\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 102 points created -- Worst tri radius is 10.917\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1608 triangles generated, 754 internal nodes\n", + "Info : [ 80%] Meshing surface 56 (Plane, Delaunay)\n", + "Debug : Recovering 5 model edges\n", + "Debug : Recovering 135 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 56\n", + "Debug : Computing mesh size field at mesh nodes 135\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 135 points created -- Worst tri radius is 5.960\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 539 triangles generated, 203 internal nodes\n", + "Info : [ 80%] Meshing surface 57 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 126 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 57\n", + "Debug : Computing mesh size field at mesh nodes 126\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 126 points created -- Worst tri radius is 5.990\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 486 triangles generated, 181 internal nodes\n", + "Info : [ 90%] Meshing surface 59 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 102 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 59\n", + "Debug : Computing mesh size field at mesh nodes 102\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 102 points created -- Worst tri radius is 10.917\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1612 triangles generated, 756 internal nodes\n", + "Info : [ 90%] Meshing surface 60 (Plane, Delaunay)\n", + "Debug : Recovering 5 model edges\n", + "Debug : Recovering 103 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 60\n", + "Debug : Computing mesh size field at mesh nodes 103\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 103 points created -- Worst tri radius is 11.128\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1619 triangles generated, 759 internal nodes\n", + "Info : [ 90%] Meshing surface 61 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 126 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 61\n", + "Debug : Computing mesh size field at mesh nodes 126\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 126 points created -- Worst tri radius is 5.990\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 494 triangles generated, 185 internal nodes\n", + "Info : [100%] Meshing surface 62 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 86 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 62\n", + "Debug : Computing mesh size field at mesh nodes 86\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 86 points created -- Worst tri radius is 6.043\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 326 triangles generated, 121 internal nodes\n", + "Info : [100%] Meshing surface 63 (Plane, Delaunay)\n", + "Debug : Recovering 5 model edges\n", + "Debug : Recovering 103 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 63\n", + "Debug : Computing mesh size field at mesh nodes 103\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 103 points created -- Worst tri radius is 11.128\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1623 triangles generated, 761 internal nodes\n", + "Info : Done meshing 2D (Wall 0.120153s, CPU 0.122595s)\n", + "Info : 8547 nodes 18360 elements\n", + "Debug : Minimum mesh quality (ICN) = 0.367733\n", + "Debug : Renumbering for potentially partial mesh save\n", + "Info : Removing duplicate mesh elements...\n", + "Info : Done removing duplicate mesh elements\n", + "Info : Removing duplicate mesh nodes...\n", + "Info : Found 0 duplicate nodes \n", + "Info : No duplicate nodes found\n", + "Debug : Renumbering for potentially partial mesh save\n", + "Debug : Decoded option name 'Mesh' . 'MshFileVersion' (index 0)\n", + "Info : Writing './output/gmsh.msh'...\n", + "Info : Done writing './output/gmsh.msh'\n", + "Info : Writing './output/gmsh.vtk'...\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:42\u001b[0m.\u001b[1;36m294\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd meshing.\u001b[0m \n", + "Info : Done writing './output/gmsh.vtk'\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:42\u001b[0m.\u001b[1;36m300\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd meshing heat-charge simulation.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:42\u001b[0m.\u001b[1;36m306\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mMesh heat-charge simulation time (s): 0.5662\u001b[0m \n", + "Resetting DEVSIM\n", + "\u001b[1;31m[\u001b[0m\u001b[1;36m25\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m08\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m27\u001b[0m\u001b[31m \u001b[0m\u001b[1;92m13:27:42\u001b[0m\u001b[31m.\u001b[0m\u001b[1;36m467\u001b[0m\u001b[1;31m]\u001b[0m\u001b[1;31m[\u001b[0m\u001b[31mUSER \u001b[0m\u001b[1;31m]\u001b[0m\u001b[31m: \u001b[0m\u001b[39mWARNING: BC not introduced: % ('zone_1/bc_3',)\u001b[0m\u001b[31m \u001b[0m\n", + "\u001b[1;31m[\u001b[0m\u001b[1;36m25\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m08\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m27\u001b[0m\u001b[31m \u001b[0m\u001b[1;92m13:27:42\u001b[0m\u001b[31m.\u001b[0m\u001b[1;36m467\u001b[0m\u001b[1;31m]\u001b[0m\u001b[1;31m[\u001b[0m\u001b[31mUSER \u001b[0m\u001b[1;31m]\u001b[0m\u001b[31m: \u001b[0m\u001b[39mnot all arguments converted during string formatting\u001b[0m\u001b[31m \u001b[0m\n", + "\u001b[1;31m[\u001b[0m\u001b[1;36m25\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m08\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m27\u001b[0m\u001b[31m \u001b[0m\u001b[1;92m13:27:42\u001b[0m\u001b[31m.\u001b[0m\u001b[1;36m479\u001b[0m\u001b[1;31m]\u001b[0m\u001b[1;31m[\u001b[0m\u001b[31mUSER \u001b[0m\u001b[1;31m]\u001b[0m\u001b[31m: \u001b[0m\u001b[39mWARNING: BC not introduced: % ('zone_3/bc_4',)\u001b[0m\u001b[31m \u001b[0m\n", + "\u001b[1;31m[\u001b[0m\u001b[1;36m25\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m08\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m27\u001b[0m\u001b[31m \u001b[0m\u001b[1;92m13:27:42\u001b[0m\u001b[31m.\u001b[0m\u001b[1;36m479\u001b[0m\u001b[1;31m]\u001b[0m\u001b[1;31m[\u001b[0m\u001b[31mUSER \u001b[0m\u001b[1;31m]\u001b[0m\u001b[31m: \u001b[0m\u001b[39mnot all arguments converted during string formatting\u001b[0m\u001b[31m \u001b[0m\n", + "\u001b[1;31m[\u001b[0m\u001b[1;36m25\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m08\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m27\u001b[0m\u001b[31m \u001b[0m\u001b[1;92m13:27:42\u001b[0m\u001b[31m.\u001b[0m\u001b[1;36m491\u001b[0m\u001b[1;31m]\u001b[0m\u001b[1;31m[\u001b[0m\u001b[31mUSER \u001b[0m\u001b[1;31m]\u001b[0m\u001b[31m: \u001b[0m\u001b[39mWARNING: BC not introduced: % ('zone_3/bc_5',)\u001b[0m\u001b[31m \u001b[0m\n", + "\u001b[1;31m[\u001b[0m\u001b[1;36m25\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m08\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m27\u001b[0m\u001b[31m \u001b[0m\u001b[1;92m13:27:42\u001b[0m\u001b[31m.\u001b[0m\u001b[1;36m491\u001b[0m\u001b[1;31m]\u001b[0m\u001b[1;31m[\u001b[0m\u001b[31mUSER \u001b[0m\u001b[1;31m]\u001b[0m\u001b[31m: \u001b[0m\u001b[39mnot all arguments converted during string formatting\u001b[0m\u001b[31m \u001b[0m\n", + "Physical group name bc_0 has 0 Tetrahedra.\n", + "Physical group name bc_0 has 0 Triangles.\n", + "Physical group name bc_0 has 10 Lines.\n", + "Physical group name bc_0 has 11 Points.\n", + "Physical group name bc_1 has 0 Tetrahedra.\n", + "Physical group name bc_1 has 0 Triangles.\n", + "Physical group name bc_1 has 44 Lines.\n", + "Physical group name bc_1 has 47 Points.\n", + "Physical group name bc_2 has 0 Tetrahedra.\n", + "Physical group name bc_2 has 0 Triangles.\n", + "Physical group name bc_2 has 643 Lines.\n", + "Physical group name bc_2 has 645 Points.\n", + "Physical group name bc_3 has 0 Tetrahedra.\n", + "Physical group name bc_3 has 0 Triangles.\n", + "Physical group name bc_3 has 22 Lines.\n", + "Physical group name bc_3 has 24 Points.\n", + "Physical group name bc_4 has 0 Tetrahedra.\n", + "Physical group name bc_4 has 0 Triangles.\n", + "Physical group name bc_4 has 42 Lines.\n", + "Physical group name bc_4 has 43 Points.\n", + "Physical group name bc_5 has 0 Tetrahedra.\n", + "Physical group name bc_5 has 0 Triangles.\n", + "Physical group name bc_5 has 42 Lines.\n", + "Physical group name bc_5 has 43 Points.\n", + "Physical group name bc_6 has 0 Tetrahedra.\n", + "Physical group name bc_6 has 0 Triangles.\n", + "Physical group name bc_6 has 44 Lines.\n", + "Physical group name bc_6 has 46 Points.\n", + "Physical group name zone_1 has 0 Tetrahedra.\n", + "Physical group name zone_1 has 4195 Triangles.\n", + "Physical group name zone_1 has 6652 Lines.\n", + "Physical group name zone_1 has 2459 Points.\n", + "Physical group name zone_3 has 0 Tetrahedra.\n", + "Physical group name zone_3 has 12611 Triangles.\n", + "Physical group name zone_3 has 19302 Lines.\n", + "Physical group name zone_3 has 6692 Points.\n", + "Device device has 8506 coordinates with max index 8506\n", + "Region zone_1 has 2459 nodes.\n", + "Region zone_3 has 6692 nodes.\n", + "Contact zone_1_bc_0 in region zone_1 with 11 nodes\n", + "Warning, contact \"zone_1_bc_0\" shares a node with contact \"zone_1_bc_1\" (repeated 1 times)\n", + "Contact zone_1_bc_1 in region zone_1 with 47 nodes\n", + "Warning, contact \"zone_1_bc_1\" shares a node with contact \"zone_1_bc_3\" (repeated 1 times)\n", + "Contact zone_1_bc_3 in region zone_1 with 24 nodes\n", + "Warning, contact \"zone_1_bc_3\" shares a node with contact \"zone_3_bc_4\"\n", + "Contact zone_3_bc_4 in region zone_3 with 43 nodes\n", + "Warning, contact \"zone_1_bc_3\" shares a node with contact \"zone_3_bc_5\"\n", + "Contact zone_3_bc_5 in region zone_3 with 43 nodes\n", + "Warning, contact \"zone_1_bc_1\" shares a node with contact \"zone_3_bc_6\" (repeated 1 times)\n", + "Warning, contact \"zone_3_bc_4\" shares a node with contact \"zone_3_bc_6\"\n", + "Warning, contact \"zone_3_bc_5\" shares a node with contact \"zone_3_bc_6\"\n", + "Contact zone_3_bc_6 in region zone_3 with 46 nodes\n", + "Warning, contact \"zone_1_bc_1\" shares a node with interface \"zone_1_bc_2\" (repeated 1 times)\n", + "Warning, contact \"zone_1_bc_3\" shares a node with interface \"zone_1_bc_2\"\n", + "Warning, contact \"zone_3_bc_4\" shares a node with interface \"zone_1_bc_2\"\n", + "Adding interface zone_1_bc_2 with 645, 645 nodes\n", + "Warning: Replacing equation with equation of the same name.\n", + "Region: zone_1, Equation: PotentialEquation, Variable: Potential\n", + "Replacing Node Model Holes in region zone_1 of material Si\n", + "Replacing Node Model Electrons in region zone_1 of material Si\n", + "Warning: Replacing equation with equation of the same name.\n", + "Region: zone_3, Equation: PotentialEquation, Variable: Potential\n", + "Warning: Replacing equation with equation of the same name.\n", + "Region: zone_3, Equation: TemperatureEquation, Variable: T\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:52\u001b[0m.\u001b[1;36m036\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mInitializing with constant thermal conductivity\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:27:52\u001b[0m.\u001b[1;36m048\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 1.0\u001b[0m \n", + "Replacing Node Model NetDoping in region zone_1 of material Si\n", + "Replacing Node Model n_i in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_1 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_1 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_1 of material Si\n", + "Replacing Node Model n_i:T in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_1 of material Si\n", + "Replacing Node Model NetDoping in region zone_3 of material Si\n", + "Replacing Node Model n_i in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_3 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_3 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_3 of material Si\n", + "Replacing Node Model n_i:T in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Electrons@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Holes@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:T@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Electrons@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Holes@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:T@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", @@ -54698,1073 +7989,4502 @@ "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", + "number of equations 31686\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.79782e+09\tAbsError: 2.04000e+20\n", + " Region: \"zone_1\"\tRelError: 1.00000e+00\tAbsError: 5.14165e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00000e+00\tAbsError: 5.14165e-01\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16806e-13\tAbsError: 6.50417e-11\n", + " Region: \"zone_3\"\tRelError: 1.79782e+09\tAbsError: 2.04000e+20\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.98918e+08\tAbsError: 1.01999e+20\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.98901e+08\tAbsError: 1.02001e+20\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00000e+00\tAbsError: 5.15972e-01\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.31632e-13\tAbsError: 6.94897e-11\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.08465e+04\tAbsError: 1.61909e+20\n", + " Region: \"zone_1\"\tRelError: 3.42852e-01\tAbsError: 5.08702e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.26459e-01\tAbsError: 8.70179e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63934e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 2.08462e+04\tAbsError: 1.61909e+20\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.00177e+04\tAbsError: 7.45360e+19\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.28101e+02\tAbsError: 8.73727e+19\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96804e-01\tAbsError: 8.18358e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63934e-02\tAbsError: 5.00000e+00\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.60092e+04\tAbsError: 1.73097e+18\n", + " Region: \"zone_1\"\tRelError: 5.90739e-01\tAbsError: 5.08704e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.74610e-01\tAbsError: 8.70391e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61290e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 9.60086e+04\tAbsError: 1.73097e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.29217e+04\tAbsError: 1.32170e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.08638e+03\tAbsError: 1.59880e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 4.58210e-01\tAbsError: 8.09212e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61290e-02\tAbsError: 5.00000e+00\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.90895e+04\tAbsError: 2.80406e+17\n", + " Region: \"zone_1\"\tRelError: 1.49487e+00\tAbsError: 5.08574e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47836e+00\tAbsError: 8.57413e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65026e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.90880e+04\tAbsError: 2.80406e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61977e+03\tAbsError: 1.51151e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.74673e+04\tAbsError: 2.65290e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 9.20948e-01\tAbsError: 8.43094e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65028e-02\tAbsError: 5.00000e+00\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.09274e+03\tAbsError: 5.60743e+16\n", + " Region: \"zone_1\"\tRelError: 4.00091e+01\tAbsError: 2.36081e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.00016e+01\tAbsError: 9.27908e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.49267e-03\tAbsError: 2.26802e+00\n", + " Region: \"zone_3\"\tRelError: 9.05274e+03\tAbsError: 5.60743e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.02853e+03\tAbsError: 1.59589e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.97306e+03\tAbsError: 4.01154e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.11401e+01\tAbsError: 9.31155e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.35373e-03\tAbsError: 2.56390e+00\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.75057e+04\tAbsError: 3.09457e+16\n", + " Region: \"zone_1\"\tRelError: 3.18733e+03\tAbsError: 7.68725e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.18733e+03\tAbsError: 9.69521e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20247e-03\tAbsError: 6.71773e-01\n", + " Region: \"zone_3\"\tRelError: 1.43183e+04\tAbsError: 3.09457e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16954e+04\tAbsError: 1.79814e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.50083e+03\tAbsError: 1.29643e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22095e+02\tAbsError: 9.73908e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.86171e-03\tAbsError: 8.75800e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.13903e+04\tAbsError: 3.09622e+16\n", + " Region: \"zone_1\"\tRelError: 2.36262e+02\tAbsError: 6.47813e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36260e+02\tAbsError: 9.15690e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82703e-03\tAbsError: 5.56244e-01\n", + " Region: \"zone_3\"\tRelError: 1.11541e+04\tAbsError: 3.09622e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.48299e+03\tAbsError: 1.47261e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.43484e+03\tAbsError: 1.62361e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36260e+02\tAbsError: 9.20776e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.26724e-03\tAbsError: 6.92298e-01\n", "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.15711e-02\tAbsError: 6.36169e+12\n", - " Region: \"zone_1\"\tRelError: 1.14125e-02\tAbsError: 2.54396e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14118e-02\tAbsError: 4.20700e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.30748e-07\tAbsError: 2.53975e-04\n", - " Region: \"zone_3\"\tRelError: 1.58593e-04\tAbsError: 6.36169e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12626e-05\tAbsError: 3.14963e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.04677e-05\tAbsError: 3.21206e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36131e-04\tAbsError: 4.24482e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.31084e-07\tAbsError: 2.54099e-04\n", + " Device: \"device\"\tRelError: 4.12572e+03\tAbsError: 1.70300e+16\n", + " Region: \"zone_1\"\tRelError: 6.71024e+01\tAbsError: 5.49338e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.71009e+01\tAbsError: 8.60217e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52412e-03\tAbsError: 4.63316e-01\n", + " Region: \"zone_3\"\tRelError: 4.05862e+03\tAbsError: 1.70300e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49389e+03\tAbsError: 8.10710e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.54138e+03\tAbsError: 8.92286e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.33430e+01\tAbsError: 8.64708e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76739e-03\tAbsError: 5.38719e-01\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.47314e+04\tAbsError: 1.21190e+16\n", + " Region: \"zone_1\"\tRelError: 1.91853e+02\tAbsError: 4.99785e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91852e+02\tAbsError: 8.15137e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37784e-03\tAbsError: 4.18272e-01\n", + " Region: \"zone_3\"\tRelError: 2.45395e+04\tAbsError: 1.21190e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.71088e+03\tAbsError: 8.41959e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.16987e+04\tAbsError: 3.69937e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29948e+02\tAbsError: 8.19752e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59868e-03\tAbsError: 4.86515e-01\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.37752e+04\tAbsError: 6.01966e+15\n", + " Region: \"zone_1\"\tRelError: 4.17738e+04\tAbsError: 5.59595e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.17738e+04\tAbsError: 7.81509e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58845e-03\tAbsError: 4.81444e-01\n", + " Region: \"zone_3\"\tRelError: 2.00145e+03\tAbsError: 6.01966e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00224e+02\tAbsError: 3.58814e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.88054e+01\tAbsError: 2.43152e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08242e+03\tAbsError: 7.86372e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.90982e-03\tAbsError: 5.80097e-01\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.45932e+03\tAbsError: 5.18171e+15\n", + " Region: \"zone_1\"\tRelError: 7.29526e+01\tAbsError: 6.69881e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.29506e+01\tAbsError: 7.38073e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98160e-03\tAbsError: 5.96074e-01\n", + " Region: \"zone_3\"\tRelError: 1.38636e+03\tAbsError: 5.18171e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.31965e+02\tAbsError: 3.27819e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.30411e+02\tAbsError: 1.90352e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.23985e+02\tAbsError: 7.43439e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.34973e-03\tAbsError: 7.07148e-01\n", "Iteration: 11\n", - " Device: \"device\"\tRelError: 2.75135e-05\tAbsError: 3.73693e+09\n", - " Region: \"zone_1\"\tRelError: 1.82469e-05\tAbsError: 8.76012e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82444e-05\tAbsError: 2.95833e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.51991e-09\tAbsError: 8.75716e-07\n", - " Region: \"zone_3\"\tRelError: 9.26653e-06\tAbsError: 3.73693e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.40675e-09\tAbsError: 1.84743e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.59836e-08\tAbsError: 1.88950e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.23962e-06\tAbsError: 2.97952e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.52095e-09\tAbsError: 8.76100e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:22\u001b[0m.\u001b[1;36m518\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:22\u001b[0m.\u001b[1;36m518\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.9399999999999998\u001b[0m \n", + " Device: \"device\"\tRelError: 5.89173e+01\tAbsError: 4.58419e+15\n", + " Region: \"zone_1\"\tRelError: 2.69658e+00\tAbsError: 6.27635e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.69473e+00\tAbsError: 6.90965e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84886e-03\tAbsError: 5.58539e-01\n", + " Region: \"zone_3\"\tRelError: 5.62207e+01\tAbsError: 4.58419e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.82520e+01\tAbsError: 2.65773e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10137e+00\tAbsError: 1.92646e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.86520e+00\tAbsError: 6.96883e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.22550e-03\tAbsError: 6.73266e-01\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.00206e+02\tAbsError: 3.45019e+15\n", + " Region: \"zone_1\"\tRelError: 3.81406e-01\tAbsError: 6.07947e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.79602e-01\tAbsError: 6.37421e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80466e-03\tAbsError: 5.44205e-01\n", + " Region: \"zone_3\"\tRelError: 9.98246e+01\tAbsError: 3.45019e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.02671e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.69282e+01\tAbsError: 1.42348e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38942e+01\tAbsError: 6.44090e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18192e-03\tAbsError: 6.58647e-01\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 2.72105e+01\tAbsError: 4.08439e+15\n", + " Region: \"zone_1\"\tRelError: 2.90172e-01\tAbsError: 5.51493e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88530e-01\tAbsError: 5.74046e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64116e-03\tAbsError: 4.94089e-01\n", + " Region: \"zone_3\"\tRelError: 2.69203e+01\tAbsError: 4.08439e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.31192e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.70062e+01\tAbsError: 1.77246e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.12140e-01\tAbsError: 5.81777e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98214e-03\tAbsError: 5.97155e-01\n", "Iteration: 14\n", - " Device: \"device\"\tRelError: 3.34213e-05\tAbsError: 6.34810e+09\n", - " Region: \"zone_1\"\tRelError: 2.99161e-05\tAbsError: 3.62915e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.99150e-05\tAbsError: 2.90104e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.03917e-09\tAbsError: 3.62625e-07\n", - " Region: \"zone_3\"\tRelError: 3.50522e-06\tAbsError: 6.34810e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.29546e-08\tAbsError: 3.16684e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.80776e-08\tAbsError: 3.18126e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.47315e-06\tAbsError: 2.92745e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.03959e-09\tAbsError: 3.62778e-07\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.36485e+03\tAbsError: 5.29564e+14\n", - " Region: \"zone_1\"\tRelError: 7.97414e-02\tAbsError: 1.00536e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 7.96098e-02\tAbsError: 5.49210e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.31553e-04\tAbsError: 4.56155e-02\n", - " Region: \"zone_3\"\tRelError: 1.36477e+03\tAbsError: 5.29564e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.77527e+01\tAbsError: 1.11987e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.34694e+03\tAbsError: 4.17577e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.97382e-02\tAbsError: 5.49213e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.31589e-04\tAbsError: 4.56279e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.20731e+02\tAbsError: 2.29552e+18\n", - " Region: \"zone_1\"\tRelError: 1.41155e+02\tAbsError: 4.09537e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41155e+02\tAbsError: 4.09536e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.05730e-10\tAbsError: 1.06495e-07\n", - " Region: \"zone_3\"\tRelError: 7.95757e+01\tAbsError: 2.29552e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.78600e-01\tAbsError: 1.14566e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.65499e-01\tAbsError: 1.14986e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 7.84316e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.05855e-10\tAbsError: 1.06540e-07\n", + " Device: \"device\"\tRelError: 1.09733e+01\tAbsError: 5.13983e+15\n", + " Region: \"zone_1\"\tRelError: 3.24758e-01\tAbsError: 5.07159e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.23236e-01\tAbsError: 4.96533e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52196e-03\tAbsError: 4.57506e-01\n", + " Region: \"zone_3\"\tRelError: 1.06485e+01\tAbsError: 5.13983e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.07429e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.69669e-01\tAbsError: 2.06554e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.77040e-01\tAbsError: 5.05913e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83248e-03\tAbsError: 5.51058e-01\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 1.90774e+01\tAbsError: 8.35258e+15\n", + " Region: \"zone_1\"\tRelError: 3.98452e-01\tAbsError: 3.31503e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.97479e-01\tAbsError: 3.93573e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.72808e-04\tAbsError: 2.92145e-01\n", + " Region: \"zone_3\"\tRelError: 1.86790e+01\tAbsError: 8.35258e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 5.00570e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.32698e+00\tAbsError: 3.34688e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.35080e+00\tAbsError: 4.05827e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18512e-03\tAbsError: 3.55964e-01\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 1.74295e+02\tAbsError: 1.44606e+16\n", + " Region: \"zone_1\"\tRelError: 5.10011e-01\tAbsError: 1.87504e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.09472e-01\tAbsError: 2.55658e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.39525e-04\tAbsError: 1.61938e-01\n", + " Region: \"zone_3\"\tRelError: 1.73785e+02\tAbsError: 1.44606e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.64816e+02\tAbsError: 8.87654e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.58296e+00\tAbsError: 5.58410e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38496e+00\tAbsError: 2.58945e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.58025e-04\tAbsError: 1.97515e-01\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 4.95555e+03\tAbsError: 1.59600e+16\n", + " Region: \"zone_1\"\tRelError: 4.75053e+00\tAbsError: 9.89140e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.75030e+00\tAbsError: 2.97297e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.30553e-04\tAbsError: 6.91843e-02\n", + " Region: \"zone_3\"\tRelError: 4.95080e+03\tAbsError: 1.59600e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.27439e+02\tAbsError: 1.17850e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.32289e+03\tAbsError: 4.17496e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.72033e-01\tAbsError: 2.99964e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.80897e-04\tAbsError: 8.42913e-02\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 1.28995e+03\tAbsError: 9.32236e+15\n", + " Region: \"zone_1\"\tRelError: 3.91406e+00\tAbsError: 5.26456e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.91403e+00\tAbsError: 4.31841e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.15308e-05\tAbsError: 9.46146e-03\n", + " Region: \"zone_3\"\tRelError: 1.28604e+03\tAbsError: 9.32236e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.57788e+02\tAbsError: 5.03602e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.28043e+02\tAbsError: 4.28633e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05476e-01\tAbsError: 4.42640e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.86655e-05\tAbsError: 1.16023e-02\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 3.60443e+03\tAbsError: 1.35917e+15\n", + " Region: \"zone_1\"\tRelError: 6.50891e-02\tAbsError: 4.26178e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.50597e-02\tAbsError: 3.37963e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.93910e-05\tAbsError: 8.82147e-03\n", + " Region: \"zone_3\"\tRelError: 3.60436e+03\tAbsError: 1.35917e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47633e+03\tAbsError: 3.95034e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.12798e+03\tAbsError: 9.64141e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.63436e-02\tAbsError: 3.51429e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.15141e-05\tAbsError: 9.45903e-03\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 2.32552e+03\tAbsError: 8.48188e+14\n", + " Region: \"zone_1\"\tRelError: 4.99069e-01\tAbsError: 2.62672e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.99067e-01\tAbsError: 2.58681e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32997e-06\tAbsError: 3.99074e-04\n", + " Region: \"zone_3\"\tRelError: 2.32502e+03\tAbsError: 8.48188e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.32397e+03\tAbsError: 4.30277e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.99227e-01\tAbsError: 4.17912e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.47344e-02\tAbsError: 2.70147e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46125e-06\tAbsError: 4.38469e-04\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 4.39195e+05\tAbsError: 2.64857e+14\n", + " Region: \"zone_1\"\tRelError: 1.29331e-01\tAbsError: 1.62362e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29329e-01\tAbsError: 1.55692e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.22252e-06\tAbsError: 6.67072e-04\n", + " Region: \"zone_3\"\tRelError: 4.39194e+05\tAbsError: 2.64857e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.38437e+05\tAbsError: 1.31485e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.57104e+02\tAbsError: 1.33371e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.75556e-02\tAbsError: 1.81315e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39678e-06\tAbsError: 7.19397e-04\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 2.51715e+06\tAbsError: 6.74500e+13\n", + " Region: \"zone_1\"\tRelError: 3.55702e-02\tAbsError: 8.36581e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.55695e-02\tAbsError: 6.44438e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.40176e-07\tAbsError: 1.92144e-04\n", + " Region: \"zone_3\"\tRelError: 2.51715e+06\tAbsError: 6.74500e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.51715e+06\tAbsError: 3.39015e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.95687e-01\tAbsError: 3.35485e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.65296e-03\tAbsError: 6.92010e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93900e-07\tAbsError: 2.08275e-04\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 4.43488e+04\tAbsError: 7.81160e+10\n", + " Region: \"zone_1\"\tRelError: 4.40020e-04\tAbsError: 5.09466e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.39851e-04\tAbsError: 2.31102e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68972e-07\tAbsError: 5.07155e-05\n", + " Region: \"zone_3\"\tRelError: 4.43488e+04\tAbsError: 7.81160e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43488e+04\tAbsError: 5.05574e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.45434e-03\tAbsError: 2.75587e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.98941e-04\tAbsError: 2.40250e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82815e-07\tAbsError: 5.48722e-05\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 1.81398e-01\tAbsError: 1.39685e+10\n", + " Region: \"zone_1\"\tRelError: 1.10219e-04\tAbsError: 4.83929e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10218e-04\tAbsError: 1.61609e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55849e-09\tAbsError: 4.67769e-07\n", + " Region: \"zone_3\"\tRelError: 1.81287e-01\tAbsError: 1.39685e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.81110e-01\tAbsError: 1.19973e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.07666e-06\tAbsError: 1.97123e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74783e-04\tAbsError: 1.72437e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69811e-09\tAbsError: 5.09690e-07\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 9.18609e-06\tAbsError: 3.43387e+08\n", + " Region: \"zone_1\"\tRelError: 3.50531e-06\tAbsError: 9.58838e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 3.50500e-06\tAbsError: 2.57536e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.18665e-10\tAbsError: 9.56262e-08\n", + " Region: \"zone_3\"\tRelError: 5.68078e-06\tAbsError: 3.43387e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.14239e-08\tAbsError: 2.70673e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.19147e-08\tAbsError: 7.27140e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 5.59710e-06\tAbsError: 2.67760e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.44946e-10\tAbsError: 1.03512e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:28:13\u001b[0m.\u001b[1;36m746\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mApplying specified thermal conductivity\u001b[0m \n", + "number of equations 31686\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.24575e+02\tAbsError: 2.18721e+15\n", + " Region: \"zone_1\"\tRelError: 1.40403e+01\tAbsError: 5.00162e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40239e+01\tAbsError: 1.62228e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63926e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.10534e+02\tAbsError: 2.18721e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.91016e-01\tAbsError: 1.61314e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.08287e-01\tAbsError: 5.74070e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09519e+02\tAbsError: 2.10033e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63926e-02\tAbsError: 5.00000e+00\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.02575e+01\tAbsError: 5.98847e+15\n", + " Region: \"zone_1\"\tRelError: 1.39504e+01\tAbsError: 5.00342e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39343e+01\tAbsError: 3.42000e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61101e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.63071e+01\tAbsError: 5.98847e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.83987e-01\tAbsError: 3.02264e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.84206e-01\tAbsError: 2.96583e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53228e+01\tAbsError: 3.52168e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61101e-02\tAbsError: 5.00000e+00\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 8.17332e+01\tAbsError: 2.93353e+15\n", + " Region: \"zone_1\"\tRelError: 2.06416e+01\tAbsError: 1.18871e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06377e+01\tAbsError: 2.83796e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.90915e-03\tAbsError: 1.18588e+00\n", + " Region: \"zone_3\"\tRelError: 6.10915e+01\tAbsError: 2.93353e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.26693e-01\tAbsError: 2.13796e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.16754e-01\tAbsError: 7.95569e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.06442e+01\tAbsError: 2.86312e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.91192e-03\tAbsError: 1.18671e+00\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.24080e+01\tAbsError: 1.02306e+15\n", + " Region: \"zone_1\"\tRelError: 1.05669e+01\tAbsError: 8.16428e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05642e+01\tAbsError: 6.37531e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.61788e-03\tAbsError: 8.15791e-01\n", + " Region: \"zone_3\"\tRelError: 1.84112e+00\tAbsError: 1.02306e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09892e-01\tAbsError: 3.64932e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04778e-01\tAbsError: 6.58132e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62384e+00\tAbsError: 6.53375e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.61826e-03\tAbsError: 8.15925e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.13937e+00\tAbsError: 4.06095e+14\n", + " Region: \"zone_1\"\tRelError: 1.20418e+00\tAbsError: 2.11029e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20348e+00\tAbsError: 2.83994e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.94351e-04\tAbsError: 2.10745e-01\n", + " Region: \"zone_3\"\tRelError: 7.93519e+00\tAbsError: 4.06095e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.54883e-02\tAbsError: 3.58792e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.52260e-02\tAbsError: 4.73027e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.84379e+00\tAbsError: 2.93117e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.94809e-04\tAbsError: 2.10883e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.24848e-01\tAbsError: 1.53388e+14\n", + " Region: \"zone_1\"\tRelError: 1.40202e-01\tAbsError: 1.74582e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39642e-01\tAbsError: 1.03045e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.59530e-04\tAbsError: 1.74479e-01\n", + " Region: \"zone_3\"\tRelError: 4.84646e-01\tAbsError: 1.53388e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.63439e-02\tAbsError: 4.45806e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.16727e-02\tAbsError: 1.08808e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.46070e-01\tAbsError: 1.05663e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.59600e-04\tAbsError: 1.74505e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.87450e+01\tAbsError: 1.24308e+14\n", + " Region: \"zone_1\"\tRelError: 2.66830e-01\tAbsError: 1.63706e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66778e-01\tAbsError: 7.62168e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.22564e-05\tAbsError: 1.62944e-02\n", + " Region: \"zone_3\"\tRelError: 3.84782e+01\tAbsError: 1.24308e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46870e-02\tAbsError: 8.75578e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.46033e-02\tAbsError: 3.67505e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.84489e+01\tAbsError: 7.91244e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.22614e-05\tAbsError: 1.62961e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.19757e+00\tAbsError: 1.84625e+13\n", + " Region: \"zone_1\"\tRelError: 8.90813e-02\tAbsError: 5.75451e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.88969e-02\tAbsError: 1.19218e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84476e-04\tAbsError: 5.75331e-02\n", + " Region: \"zone_3\"\tRelError: 1.10849e+00\tAbsError: 1.84625e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.58604e-03\tAbsError: 1.00266e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.24701e-03\tAbsError: 8.43598e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09647e+00\tAbsError: 1.20776e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84503e-04\tAbsError: 5.75428e-02\n", "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.83911e-03\tAbsError: 1.58905e+12\n", - " Region: \"zone_1\"\tRelError: 2.42692e-03\tAbsError: 4.33674e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.42679e-03\tAbsError: 6.60095e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.24553e-07\tAbsError: 4.33014e-05\n", - " Region: \"zone_3\"\tRelError: 4.12192e-04\tAbsError: 1.58905e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.62381e-06\tAbsError: 7.89358e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.44568e-06\tAbsError: 7.99689e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.06997e-04\tAbsError: 6.67114e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.24610e-07\tAbsError: 4.33209e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.69832e+03\tAbsError: 4.26164e+14\n", - " Region: \"zone_1\"\tRelError: 6.43653e-02\tAbsError: 1.10643e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 6.41827e-02\tAbsError: 4.73176e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.82596e-04\tAbsError: 6.33253e-02\n", - " Region: \"zone_3\"\tRelError: 1.69826e+03\tAbsError: 4.26164e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.64637e+03\tAbsError: 3.14969e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.18213e+01\tAbsError: 3.94667e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.42828e-02\tAbsError: 4.73180e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.82818e-04\tAbsError: 6.34031e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.30223e+01\tAbsError: 9.02224e+17\n", - " Region: \"zone_1\"\tRelError: 1.21751e+01\tAbsError: 4.19628e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21751e+01\tAbsError: 4.19627e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.54552e-10\tAbsError: 8.84641e-08\n", - " Region: \"zone_3\"\tRelError: 4.08472e+01\tAbsError: 9.02224e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.23540e-01\tAbsError: 4.39797e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.03855e-01\tAbsError: 4.62427e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 3.94198e+01\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.54670e-10\tAbsError: 8.85062e-08\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.75350e+01\tAbsError: 4.89721e+17\n", - " Region: \"zone_1\"\tRelError: 1.04844e+01\tAbsError: 2.18917e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04782e+01\tAbsError: 3.07622e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.15763e-03\tAbsError: 2.15840e+00\n", - " Region: \"zone_3\"\tRelError: 2.70506e+01\tAbsError: 4.89721e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.63139e-01\tAbsError: 2.45322e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.63561e-01\tAbsError: 2.44399e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 2.65177e+01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.15822e-03\tAbsError: 2.15862e+00\n", + " Device: \"device\"\tRelError: 3.27106e+00\tAbsError: 5.18489e+13\n", + " Region: \"zone_1\"\tRelError: 1.11237e-01\tAbsError: 2.32103e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11162e-01\tAbsError: 3.01269e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.43312e-05\tAbsError: 2.31801e-02\n", + " Region: \"zone_3\"\tRelError: 3.15982e+00\tAbsError: 5.18489e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.28729e-03\tAbsError: 3.06930e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.24920e-03\tAbsError: 2.11559e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.14721e+00\tAbsError: 3.14213e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.43417e-05\tAbsError: 2.31839e-02\n", "Iteration: 9\n", - " Device: \"device\"\tRelError: 3.37999e-04\tAbsError: 2.19561e+11\n", - " Region: \"zone_1\"\tRelError: 3.30295e-04\tAbsError: 1.28810e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.30258e-04\tAbsError: 1.32795e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.70226e-08\tAbsError: 1.28677e-05\n", - " Region: \"zone_3\"\tRelError: 7.70331e-06\tAbsError: 2.19561e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.91687e-07\tAbsError: 1.08742e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.84773e-07\tAbsError: 1.10819e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 6.88981e-06\tAbsError: 1.34007e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.70399e-08\tAbsError: 1.28739e-05\n", - "Iteration: 11\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:25\u001b[0m.\u001b[1;36m205\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - " Device: \"device\"\tRelError: 5.20273e+00\tAbsError: 4.35026e+14\n", - " Region: \"zone_1\"\tRelError: 4.96120e-02\tAbsError: 1.17626e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.93834e-02\tAbsError: 3.83021e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28674e-04\tAbsError: 7.93235e-02\n", - " Region: \"zone_3\"\tRelError: 5.15312e+00\tAbsError: 4.35026e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.11960e+00\tAbsError: 2.44354e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.83833e-01\tAbsError: 4.10591e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.94610e-02\tAbsError: 3.83026e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28965e-04\tAbsError: 7.94253e-02\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:25\u001b[0m.\u001b[1;36m240\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.3 bias\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:25\u001b[0m.\u001b[1;36m273\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.1\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 6.87971e+02\tAbsError: 4.98361e+17\n", - " Region: \"zone_1\"\tRelError: 5.59464e+01\tAbsError: 8.86546e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.59439e+01\tAbsError: 3.19520e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.46028e-03\tAbsError: 8.54594e-01\n", - " Region: \"zone_3\"\tRelError: 6.32024e+02\tAbsError: 4.98361e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.94559e-01\tAbsError: 2.49995e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.67050e-01\tAbsError: 2.48366e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 6.31060e+02\tAbsError: 3.19525e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.46050e-03\tAbsError: 8.54692e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 8.28645e+00\tAbsError: 2.11022e+16\n", - " Region: \"zone_1\"\tRelError: 5.89404e-01\tAbsError: 1.45838e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.85324e-01\tAbsError: 2.58807e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.07995e-03\tAbsError: 1.43250e+00\n", - " Region: \"zone_3\"\tRelError: 7.69704e+00\tAbsError: 2.11022e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.08442e-02\tAbsError: 1.06070e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.62030e-02\tAbsError: 1.04952e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 7.63591e+00\tAbsError: 2.58945e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.08866e-03\tAbsError: 1.43560e+00\n", + " Device: \"device\"\tRelError: 2.27803e+00\tAbsError: 2.12434e+13\n", + " Region: \"zone_1\"\tRelError: 7.15088e-02\tAbsError: 2.89309e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.14161e-02\tAbsError: 1.48608e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.27157e-05\tAbsError: 2.89160e-02\n", + " Region: \"zone_3\"\tRelError: 2.20652e+00\tAbsError: 2.12434e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.98482e-03\tAbsError: 1.22703e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.65875e-03\tAbsError: 8.97312e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19978e+00\tAbsError: 1.55030e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.27301e-05\tAbsError: 2.89213e-02\n", "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.45915e-04\tAbsError: 8.08391e+10\n", - " Region: \"zone_1\"\tRelError: 1.24746e-04\tAbsError: 1.31713e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.24742e-04\tAbsError: 3.37234e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.77890e-09\tAbsError: 1.31375e-06\n", - " Region: \"zone_3\"\tRelError: 2.11692e-05\tAbsError: 8.08391e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33248e-07\tAbsError: 4.01619e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.22615e-07\tAbsError: 4.06772e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.09096e-05\tAbsError: 3.40780e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.78064e-09\tAbsError: 1.31434e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.16272e+04\tAbsError: 1.65651e+19\n", - " Region: \"zone_1\"\tRelError: 5.47132e+03\tAbsError: 9.39932e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.47132e+03\tAbsError: 9.39932e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.14944e-10\tAbsError: 7.50065e-08\n", - " Region: \"zone_3\"\tRelError: 6.15585e+03\tAbsError: 1.65651e+19\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46920e+02\tAbsError: 6.83449e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.37613e+02\tAbsError: 9.73060e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 5.47132e+03\tAbsError: 9.39941e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.15031e-10\tAbsError: 7.50384e-08\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.29573e+02\tAbsError: 4.13765e+14\n", - " Region: \"zone_1\"\tRelError: 3.52781e-02\tAbsError: 1.30848e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.49807e-02\tAbsError: 2.76565e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.97391e-04\tAbsError: 1.03191e-01\n", - " Region: \"zone_3\"\tRelError: 1.29538e+02\tAbsError: 4.13765e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.29495e+02\tAbsError: 2.36393e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.96741e-03\tAbsError: 3.90126e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.44822e-02\tAbsError: 2.76571e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.97727e-04\tAbsError: 1.03308e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 6.68715e+03\tAbsError: 1.06709e+17\n", - " Region: \"zone_1\"\tRelError: 9.31135e+02\tAbsError: 3.18177e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 9.31134e+02\tAbsError: 2.58394e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.42262e-04\tAbsError: 2.92337e-01\n", - " Region: \"zone_3\"\tRelError: 5.75601e+03\tAbsError: 1.06709e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.85918e-01\tAbsError: 5.35954e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.04848e-01\tAbsError: 5.31133e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 5.75572e+03\tAbsError: 2.58980e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.45507e-04\tAbsError: 2.93463e-01\n", + " Device: \"device\"\tRelError: 1.93067e+00\tAbsError: 2.88019e+13\n", + " Region: \"zone_1\"\tRelError: 6.59893e-02\tAbsError: 1.93573e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.59273e-02\tAbsError: 1.68024e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.20168e-05\tAbsError: 1.93405e-02\n", + " Region: \"zone_3\"\tRelError: 1.86468e+00\tAbsError: 2.88019e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.56114e-03\tAbsError: 1.58041e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.53973e-03\tAbsError: 1.29978e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85752e+00\tAbsError: 1.75598e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.20265e-05\tAbsError: 1.93440e-02\n", "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.20617e-05\tAbsError: 6.32499e+09\n", - " Region: \"zone_1\"\tRelError: 1.19314e-05\tAbsError: 6.73382e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19294e-05\tAbsError: 3.90152e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93636e-09\tAbsError: 6.72992e-07\n", - " Region: \"zone_3\"\tRelError: 1.30317e-07\tAbsError: 6.32499e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16766e-08\tAbsError: 3.13129e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.61351e-08\tAbsError: 3.19370e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00568e-07\tAbsError: 3.93788e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93725e-09\tAbsError: 6.73321e-07\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.26646e+01\tAbsError: 1.05374e+16\n", - " Region: \"zone_1\"\tRelError: 1.63183e+01\tAbsError: 9.50748e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.63156e+01\tAbsError: 9.16413e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.68897e-03\tAbsError: 9.41583e-01\n", - " Region: \"zone_3\"\tRelError: 1.63463e+01\tAbsError: 1.05374e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31069e-02\tAbsError: 5.23674e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.49207e-02\tAbsError: 5.30063e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.63156e+01\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69706e-03\tAbsError: 9.44437e-01\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:27\u001b[0m.\u001b[1;36m531\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 0.9799999999999999\u001b[0m\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 3.54184e+00\tAbsError: 1.95711e+13\n", + " Region: \"zone_1\"\tRelError: 5.29463e-02\tAbsError: 1.83315e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.28876e-02\tAbsError: 1.20347e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87394e-05\tAbsError: 1.83195e-02\n", + " Region: \"zone_3\"\tRelError: 3.48889e+00\tAbsError: 1.95711e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47967e-03\tAbsError: 1.05744e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.46596e-03\tAbsError: 8.99674e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.48389e+00\tAbsError: 1.25793e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87488e-05\tAbsError: 1.83229e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.52894e+00\tAbsError: 1.87741e+13\n", + " Region: \"zone_1\"\tRelError: 4.47781e-02\tAbsError: 1.44495e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.47318e-02\tAbsError: 1.10837e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.62975e-05\tAbsError: 1.44385e-02\n", + " Region: \"zone_3\"\tRelError: 1.48416e+00\tAbsError: 1.87741e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.34129e-03\tAbsError: 1.00766e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.32739e-03\tAbsError: 8.69749e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47944e+00\tAbsError: 1.15632e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.63049e-05\tAbsError: 1.44412e-02\n", "Iteration: 13\n", - " Device: \"device\"\tRelError: 1.05780e+00\tAbsError: 3.05662e+14\n", - " Region: \"zone_1\"\tRelError: 2.67418e-02\tAbsError: 1.45754e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.63846e-02\tAbsError: 2.17874e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.57135e-04\tAbsError: 1.23966e-01\n", - " Region: \"zone_3\"\tRelError: 1.03105e+00\tAbsError: 3.05662e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.94911e-01\tAbsError: 1.68377e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.34032e-03\tAbsError: 2.88825e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.64454e-02\tAbsError: 2.17884e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.57674e-04\tAbsError: 1.24155e-01\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.41894e+03\tAbsError: 1.35937e+19\n", - " Region: \"zone_1\"\tRelError: 1.85742e+02\tAbsError: 6.38901e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.85724e+02\tAbsError: 9.13709e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83513e-02\tAbsError: 6.29764e+00\n", - " Region: \"zone_3\"\tRelError: 1.23320e+03\tAbsError: 1.35937e+19\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01893e+01\tAbsError: 5.66687e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.02727e+03\tAbsError: 7.92686e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 1.85724e+02\tAbsError: 9.13711e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83531e-02\tAbsError: 6.29836e+00\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.21987e+03\tAbsError: 8.24482e+15\n", - " Region: \"zone_1\"\tRelError: 3.00138e+01\tAbsError: 4.30823e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.00126e+01\tAbsError: 1.06608e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20499e-03\tAbsError: 4.20162e-01\n", - " Region: \"zone_3\"\tRelError: 1.18986e+03\tAbsError: 8.24482e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87149e-02\tAbsError: 4.14039e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.24213e-02\tAbsError: 4.10443e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18981e+03\tAbsError: 1.06615e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20811e-03\tAbsError: 4.21255e-01\n", + " Device: \"device\"\tRelError: 5.80907e+00\tAbsError: 1.48561e+13\n", + " Region: \"zone_1\"\tRelError: 3.80985e-02\tAbsError: 1.26213e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.80581e-02\tAbsError: 8.89578e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.04405e-05\tAbsError: 1.26124e-02\n", + " Region: \"zone_3\"\tRelError: 5.77098e+00\tAbsError: 1.48561e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.86835e-03\tAbsError: 7.94078e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.85754e-03\tAbsError: 6.91530e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.76721e+00\tAbsError: 9.30189e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.04471e-05\tAbsError: 1.26148e-02\n", "Iteration: 14\n", - " Device: \"device\"\tRelError: 6.32323e-01\tAbsError: 2.46877e+14\n", - " Region: \"zone_1\"\tRelError: 1.44271e-02\tAbsError: 2.19080e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37974e-02\tAbsError: 3.60850e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.29714e-04\tAbsError: 2.18720e-01\n", - " Region: \"zone_3\"\tRelError: 6.17896e-01\tAbsError: 2.46877e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.96130e-01\tAbsError: 2.65737e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.01118e-02\tAbsError: 2.20303e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02356e-03\tAbsError: 3.67196e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.30442e-04\tAbsError: 2.18971e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.58482e+00\tAbsError: 6.34667e+15\n", - " Region: \"zone_1\"\tRelError: 2.32125e+00\tAbsError: 4.26139e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.32004e+00\tAbsError: 1.24165e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.21533e-03\tAbsError: 4.26014e-01\n", - " Region: \"zone_3\"\tRelError: 7.26357e+00\tAbsError: 6.34667e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94984e-03\tAbsError: 3.16660e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.69319e-03\tAbsError: 3.18007e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.25171e+00\tAbsError: 1.24217e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.21533e-03\tAbsError: 4.26014e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 6.42571e+03\tAbsError: 3.63018e+18\n", - " Region: \"zone_1\"\tRelError: 1.34190e+02\tAbsError: 5.02469e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.34176e+02\tAbsError: 8.85378e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41527e-02\tAbsError: 4.93615e+00\n", - " Region: \"zone_3\"\tRelError: 6.29152e+03\tAbsError: 3.63018e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.08475e+01\tAbsError: 1.83022e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.01410e+03\tAbsError: 1.79996e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 2.26563e+02\tAbsError: 8.85383e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41605e-02\tAbsError: 4.93901e+00\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.93301e+02\tAbsError: 1.31505e+18\n", - " Region: \"zone_1\"\tRelError: 1.95954e+02\tAbsError: 4.29335e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.95954e+02\tAbsError: 4.29335e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.68896e-11\tAbsError: 3.02084e-08\n", - " Region: \"zone_3\"\tRelError: 1.97347e+02\tAbsError: 1.31505e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.08391e-01\tAbsError: 6.47452e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.84050e-01\tAbsError: 6.67602e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.95954e+02\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.69341e-11\tAbsError: 3.02237e-08\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.32324e+01\tAbsError: 3.47658e+15\n", - " Region: \"zone_1\"\tRelError: 1.40157e+00\tAbsError: 6.21297e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39978e+00\tAbsError: 1.87854e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.78446e-03\tAbsError: 6.21109e-01\n", - " Region: \"zone_3\"\tRelError: 1.18308e+01\tAbsError: 3.47658e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16646e-02\tAbsError: 1.57709e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.67921e-03\tAbsError: 1.89949e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18147e+01\tAbsError: 1.89642e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.78707e-03\tAbsError: 6.22021e-01\n", + " Device: \"device\"\tRelError: 1.28855e+00\tAbsError: 1.30097e+13\n", + " Region: \"zone_1\"\tRelError: 3.15974e-02\tAbsError: 1.04461e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.15639e-02\tAbsError: 7.74295e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34708e-05\tAbsError: 1.04384e-02\n", + " Region: \"zone_3\"\tRelError: 1.25695e+00\tAbsError: 1.30097e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.62740e-03\tAbsError: 6.94637e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.61780e-03\tAbsError: 6.06335e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25368e+00\tAbsError: 8.05192e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34763e-05\tAbsError: 1.04403e-02\n", "Iteration: 15\n", - " Device: \"device\"\tRelError: 1.29115e-01\tAbsError: 1.32053e+14\n", - " Region: \"zone_1\"\tRelError: 2.82697e-02\tAbsError: 1.98958e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.82644e-02\tAbsError: 1.53505e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.28053e-06\tAbsError: 1.83608e-03\n", - " Region: \"zone_3\"\tRelError: 1.00845e-01\tAbsError: 1.32053e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.75059e-02\tAbsError: 3.65219e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.55584e-02\tAbsError: 9.55313e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.77759e-02\tAbsError: 1.54907e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.28053e-06\tAbsError: 1.83608e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.10109e-01\tAbsError: 2.49944e+15\n", - " Region: \"zone_1\"\tRelError: 2.73036e-01\tAbsError: 9.44224e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.73009e-01\tAbsError: 7.54274e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.67762e-05\tAbsError: 9.36682e-03\n", - " Region: \"zone_3\"\tRelError: 5.37074e-01\tAbsError: 2.49944e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.44605e-03\tAbsError: 1.22669e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.58618e-04\tAbsError: 1.27274e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.30942e-01\tAbsError: 7.59068e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.67897e-05\tAbsError: 9.37175e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.56234e+02\tAbsError: 3.86174e+18\n", - " Region: \"zone_1\"\tRelError: 9.84721e+01\tAbsError: 1.34442e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 9.84684e+01\tAbsError: 8.54615e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.62295e-03\tAbsError: 1.25896e+00\n", - " Region: \"zone_3\"\tRelError: 1.57762e+02\tAbsError: 3.86174e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 1.90968e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.54700e+01\tAbsError: 1.95206e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33289e+02\tAbsError: 8.54619e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.62534e-03\tAbsError: 1.25982e+00\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.56288e+04\tAbsError: 5.38567e+17\n", - " Region: \"zone_1\"\tRelError: 1.76987e+04\tAbsError: 1.13670e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76987e+04\tAbsError: 3.30995e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.17394e-03\tAbsError: 1.10360e+00\n", - " Region: \"zone_3\"\tRelError: 7.93012e+03\tAbsError: 5.38567e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.56981e-01\tAbsError: 2.69605e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.34515e-01\tAbsError: 2.68963e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 7.92923e+03\tAbsError: 3.31000e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.17480e-03\tAbsError: 1.10385e+00\n", + " Device: \"device\"\tRelError: 2.14645e+01\tAbsError: 1.07761e+13\n", + " Region: \"zone_1\"\tRelError: 2.71688e-02\tAbsError: 8.90874e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.71403e-02\tAbsError: 6.43716e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.85446e-05\tAbsError: 8.90230e-03\n", + " Region: \"zone_3\"\tRelError: 2.14373e+01\tAbsError: 1.07761e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.35238e-03\tAbsError: 5.74812e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34446e-03\tAbsError: 5.02795e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.14346e+01\tAbsError: 6.70327e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.85492e-05\tAbsError: 8.90397e-03\n", "Iteration: 16\n", - " Device: \"device\"\tRelError: 8.88619e-03\tAbsError: 1.78189e+12\n", - " Region: \"zone_1\"\tRelError: 2.52826e-03\tAbsError: 8.16927e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.50475e-03\tAbsError: 1.59088e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.35150e-05\tAbsError: 8.16768e-03\n", - " Region: \"zone_3\"\tRelError: 6.35793e-03\tAbsError: 1.78189e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.21800e-04\tAbsError: 9.23827e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.70720e-04\tAbsError: 8.58065e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.24188e-03\tAbsError: 1.64521e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.35243e-05\tAbsError: 8.17101e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.69926e+01\tAbsError: 3.06470e+15\n", - " Region: \"zone_1\"\tRelError: 3.61874e+00\tAbsError: 3.80545e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.61863e+00\tAbsError: 1.78178e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08789e-04\tAbsError: 3.78763e-02\n", - " Region: \"zone_3\"\tRelError: 1.33739e+01\tAbsError: 3.06470e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.13423e-03\tAbsError: 1.52459e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.10898e-03\tAbsError: 1.54011e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33665e+01\tAbsError: 1.79720e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08834e-04\tAbsError: 3.78912e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.50361e-02\tAbsError: 6.78895e+13\n", - " Region: \"zone_1\"\tRelError: 2.37122e-02\tAbsError: 9.45855e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.36853e-02\tAbsError: 1.50946e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69242e-05\tAbsError: 9.45704e-03\n", - " Region: \"zone_3\"\tRelError: 5.13239e-02\tAbsError: 6.78895e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.92168e-04\tAbsError: 3.35710e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.54573e-05\tAbsError: 3.43185e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.10793e-02\tAbsError: 1.52419e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69352e-05\tAbsError: 9.46083e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 5.50347e+01\tAbsError: 5.37694e+17\n", - " Region: \"zone_1\"\tRelError: 3.46780e+01\tAbsError: 2.34127e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 3.46715e+01\tAbsError: 8.20994e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.49885e-03\tAbsError: 2.25917e+00\n", - " Region: \"zone_3\"\tRelError: 2.03567e+01\tAbsError: 5.37694e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.66469e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.48157e+00\tAbsError: 2.71225e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86864e+00\tAbsError: 8.20997e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.49885e-03\tAbsError: 2.25917e+00\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.05630e+03\tAbsError: 1.09979e+17\n", - " Region: \"zone_1\"\tRelError: 6.84710e+01\tAbsError: 1.43360e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 6.84670e+01\tAbsError: 2.58653e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.03563e-03\tAbsError: 1.40773e+00\n", - " Region: \"zone_3\"\tRelError: 9.87830e+02\tAbsError: 1.09979e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53181e-01\tAbsError: 5.51560e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.23559e-02\tAbsError: 5.48228e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 9.87580e+02\tAbsError: 2.58990e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.03726e-03\tAbsError: 1.40831e+00\n", + " Device: \"device\"\tRelError: 1.08295e+00\tAbsError: 9.19530e+12\n", + " Region: \"zone_1\"\tRelError: 2.25183e-02\tAbsError: 7.47854e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24944e-02\tAbsError: 5.48451e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39624e-05\tAbsError: 7.47306e-03\n", + " Region: \"zone_3\"\tRelError: 1.06043e+00\tAbsError: 9.19530e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.15147e-03\tAbsError: 4.90406e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.14470e-03\tAbsError: 4.29125e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05811e+00\tAbsError: 5.70130e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39663e-05\tAbsError: 7.47446e-03\n", "Iteration: 17\n", - " Device: \"device\"\tRelError: 1.06506e-02\tAbsError: 7.97564e+12\n", - " Region: \"zone_1\"\tRelError: 2.78167e-03\tAbsError: 6.19119e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.77991e-03\tAbsError: 6.29442e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.76249e-06\tAbsError: 6.12825e-04\n", - " Region: \"zone_3\"\tRelError: 7.86894e-03\tAbsError: 7.97564e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77812e-04\tAbsError: 3.49434e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.72807e-04\tAbsError: 4.48130e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 6.31656e-03\tAbsError: 6.35969e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.76291e-06\tAbsError: 6.12981e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.03191e-01\tAbsError: 2.72789e+14\n", - " Region: \"zone_1\"\tRelError: 2.06386e-01\tAbsError: 2.41437e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06317e-01\tAbsError: 1.26354e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.93158e-05\tAbsError: 2.41310e-02\n", - " Region: \"zone_3\"\tRelError: 4.96805e-01\tAbsError: 2.72789e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.84659e-04\tAbsError: 1.35879e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.50454e-04\tAbsError: 1.36910e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.95700e-01\tAbsError: 1.27340e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.93447e-05\tAbsError: 2.41410e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.59505e-02\tAbsError: 5.66225e+13\n", - " Region: \"zone_1\"\tRelError: 1.83279e-02\tAbsError: 3.54044e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.83269e-02\tAbsError: 2.54887e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00068e-06\tAbsError: 3.51495e-04\n", - " Region: \"zone_3\"\tRelError: 3.76225e-02\tAbsError: 5.66225e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.14084e-04\tAbsError: 2.81906e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.55711e-05\tAbsError: 2.84319e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.74519e-02\tAbsError: 2.56399e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00120e-06\tAbsError: 3.51676e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.54457e+01\tAbsError: 6.07481e+17\n", - " Region: \"zone_1\"\tRelError: 1.68554e+01\tAbsError: 9.24586e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.68529e+01\tAbsError: 7.90690e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.42851e-03\tAbsError: 8.45517e-01\n", - " Region: \"zone_3\"\tRelError: 1.85903e+01\tAbsError: 6.07481e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.48424e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.59058e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 5.87875e-01\tAbsError: 7.97171e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.42851e-03\tAbsError: 8.45517e-01\n", + " Device: \"device\"\tRelError: 8.19819e+00\tAbsError: 7.72018e+12\n", + " Region: \"zone_1\"\tRelError: 1.93317e-02\tAbsError: 6.33296e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93114e-02\tAbsError: 4.60946e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.02914e-05\tAbsError: 6.32835e-03\n", + " Region: \"zone_3\"\tRelError: 8.17886e+00\tAbsError: 7.72018e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.68193e-04\tAbsError: 4.11640e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.62511e-04\tAbsError: 3.60378e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.17690e+00\tAbsError: 4.79400e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.02947e-05\tAbsError: 6.32954e-03\n", "Iteration: 18\n", - " Device: \"device\"\tRelError: 1.29712e-03\tAbsError: 5.87386e+11\n", - " Region: \"zone_1\"\tRelError: 3.70662e-04\tAbsError: 5.19442e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.69169e-04\tAbsError: 4.49040e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.49266e-06\tAbsError: 5.18993e-04\n", - " Region: \"zone_3\"\tRelError: 9.26462e-04\tAbsError: 5.87386e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.02618e-05\tAbsError: 3.09222e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.99825e-05\tAbsError: 2.78164e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 8.04725e-04\tAbsError: 4.54374e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.49297e-06\tAbsError: 5.19109e-04\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.81032e+02\tAbsError: 1.06939e+16\n", - " Region: \"zone_1\"\tRelError: 3.59115e+01\tAbsError: 1.10074e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 3.59084e+01\tAbsError: 1.22645e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.13015e-03\tAbsError: 1.08847e+00\n", - " Region: \"zone_3\"\tRelError: 2.45121e+02\tAbsError: 1.06939e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.93839e-03\tAbsError: 5.35877e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.63056e-03\tAbsError: 5.33515e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.45104e+02\tAbsError: 1.22654e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.13222e-03\tAbsError: 1.08919e+00\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.03284e-01\tAbsError: 1.63576e+14\n", - " Region: \"zone_1\"\tRelError: 1.28869e-01\tAbsError: 2.63492e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28862e-01\tAbsError: 7.07903e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.56988e-06\tAbsError: 2.62784e-03\n", - " Region: \"zone_3\"\tRelError: 3.74414e-01\tAbsError: 1.63576e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.03440e-04\tAbsError: 8.14376e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.09112e-04\tAbsError: 8.21383e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.74094e-01\tAbsError: 7.13869e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.56988e-06\tAbsError: 2.62784e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 7.88395e-04\tAbsError: 2.50647e+12\n", - " Region: \"zone_1\"\tRelError: 2.67678e-04\tAbsError: 3.14356e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66781e-04\tAbsError: 1.15072e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.96866e-07\tAbsError: 3.14241e-04\n", - " Region: \"zone_3\"\tRelError: 5.20717e-04\tAbsError: 2.50647e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.42005e-06\tAbsError: 1.25767e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.70094e-06\tAbsError: 1.24880e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.06699e-04\tAbsError: 1.15714e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.97159e-07\tAbsError: 3.14358e-04\n", + " Device: \"device\"\tRelError: 8.91354e-01\tAbsError: 6.53846e+12\n", + " Region: \"zone_1\"\tRelError: 1.60803e-02\tAbsError: 5.33808e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60632e-02\tAbsError: 3.90208e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71040e-05\tAbsError: 5.33418e-03\n", + " Region: \"zone_3\"\tRelError: 8.75274e-01\tAbsError: 6.53846e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.19099e-04\tAbsError: 3.48622e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.14285e-04\tAbsError: 3.05223e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.73624e-01\tAbsError: 4.05639e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71068e-05\tAbsError: 5.33518e-03\n", "Iteration: 19\n", - " Device: \"device\"\tRelError: 8.17397e-04\tAbsError: 5.15616e+11\n", - " Region: \"zone_1\"\tRelError: 2.21585e-04\tAbsError: 7.19865e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.21379e-04\tAbsError: 3.60966e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.05989e-07\tAbsError: 7.16255e-05\n", - " Region: \"zone_3\"\tRelError: 5.95812e-04\tAbsError: 5.15616e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.95401e-05\tAbsError: 2.69910e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.91786e-05\tAbsError: 2.45706e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.96887e-04\tAbsError: 3.64971e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.06048e-07\tAbsError: 7.16460e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.84121e+02\tAbsError: 1.44265e+17\n", - " Region: \"zone_1\"\tRelError: 5.71048e+00\tAbsError: 1.11506e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.70750e+00\tAbsError: 7.53891e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.97769e-03\tAbsError: 1.03967e+00\n", - " Region: \"zone_3\"\tRelError: 1.78411e+02\tAbsError: 1.44265e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.76628e+02\tAbsError: 8.85546e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.29644e+00\tAbsError: 5.57103e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.83668e-01\tAbsError: 7.54990e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.98423e-03\tAbsError: 1.04201e+00\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.53710e+00\tAbsError: 2.54910e+15\n", - " Region: \"zone_1\"\tRelError: 5.24107e+00\tAbsError: 6.37323e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.23924e+00\tAbsError: 8.89899e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.82814e-03\tAbsError: 6.37234e-01\n", - " Region: \"zone_3\"\tRelError: 1.29603e+00\tAbsError: 2.54910e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.24987e-03\tAbsError: 1.26463e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.60265e-03\tAbsError: 1.28447e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28435e+00\tAbsError: 8.97922e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.82881e-03\tAbsError: 6.37461e-01\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 5.72516e-02\tAbsError: 2.19421e+13\n", - " Region: \"zone_1\"\tRelError: 1.48305e-02\tAbsError: 1.17957e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.48271e-02\tAbsError: 8.22812e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.39557e-06\tAbsError: 1.17875e-03\n", - " Region: \"zone_3\"\tRelError: 4.24210e-02\tAbsError: 2.19421e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.59385e-05\tAbsError: 1.09315e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.17160e-05\tAbsError: 1.10106e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.23500e-02\tAbsError: 8.29477e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.39575e-06\tAbsError: 1.17875e-03\n", + " Device: \"device\"\tRelError: 2.81819e+00\tAbsError: 5.51139e+12\n", + " Region: \"zone_1\"\tRelError: 1.37533e-02\tAbsError: 4.51096e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37388e-02\tAbsError: 3.29012e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44536e-05\tAbsError: 4.50767e-03\n", + " Region: \"zone_3\"\tRelError: 2.80443e+00\tAbsError: 5.51139e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91000e-04\tAbsError: 2.93844e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.86942e-04\tAbsError: 2.57294e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80304e+00\tAbsError: 3.42077e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44559e-05\tAbsError: 4.50851e-03\n", "Iteration: 20\n", - " Device: \"device\"\tRelError: 1.38505e-04\tAbsError: 6.81064e+10\n", - " Region: \"zone_1\"\tRelError: 3.90974e-05\tAbsError: 3.71466e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.89907e-05\tAbsError: 4.75526e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06694e-07\tAbsError: 3.70991e-05\n", - " Region: \"zone_3\"\tRelError: 9.94077e-05\tAbsError: 6.81064e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.78802e-06\tAbsError: 3.83732e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.75686e-06\tAbsError: 2.97332e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 8.57561e-05\tAbsError: 4.81148e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.06725e-07\tAbsError: 3.71098e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 3.01493e-03\tAbsError: 2.03887e+12\n", - " Region: \"zone_1\"\tRelError: 9.68351e-04\tAbsError: 1.94584e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 9.68295e-04\tAbsError: 8.45891e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.51588e-08\tAbsError: 1.93738e-05\n", - " Region: \"zone_3\"\tRelError: 2.04658e-03\tAbsError: 2.03887e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.90840e-06\tAbsError: 1.01569e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.17272e-06\tAbsError: 1.02318e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03944e-03\tAbsError: 8.50612e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.51787e-08\tAbsError: 1.93808e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 6.75152e+01\tAbsError: 2.34147e+16\n", - " Region: \"zone_1\"\tRelError: 6.77463e+00\tAbsError: 1.30865e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 6.77107e+00\tAbsError: 7.09390e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.55708e-03\tAbsError: 1.23771e+00\n", - " Region: \"zone_3\"\tRelError: 6.07405e+01\tAbsError: 2.34147e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50402e+01\tAbsError: 1.47845e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.51639e+01\tAbsError: 8.63024e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.32943e-01\tAbsError: 7.10042e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.55708e-03\tAbsError: 1.23771e+00\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.35415e+01\tAbsError: 3.06408e+15\n", - " Region: \"zone_1\"\tRelError: 6.18020e-01\tAbsError: 1.25350e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.17985e-01\tAbsError: 1.70751e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.54599e-05\tAbsError: 1.23642e-02\n", - " Region: \"zone_3\"\tRelError: 1.29235e+01\tAbsError: 3.06408e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.52438e-03\tAbsError: 1.48406e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.62072e-03\tAbsError: 1.58001e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29163e+01\tAbsError: 1.72074e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.54833e-05\tAbsError: 1.23722e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.35289e-02\tAbsError: 9.60642e+12\n", - " Region: \"zone_1\"\tRelError: 6.04878e-03\tAbsError: 2.06342e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.04819e-03\tAbsError: 3.36274e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.92268e-07\tAbsError: 2.06006e-04\n", - " Region: \"zone_3\"\tRelError: 1.74801e-02\tAbsError: 9.60642e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.46802e-06\tAbsError: 4.78532e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.53648e-06\tAbsError: 4.82110e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74605e-02\tAbsError: 3.39077e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.92490e-07\tAbsError: 2.06084e-04\n", + " Device: \"device\"\tRelError: 7.15710e-01\tAbsError: 4.65758e+12\n", + " Region: \"zone_1\"\tRelError: 1.14833e-02\tAbsError: 3.80682e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14711e-02\tAbsError: 2.78003e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21976e-05\tAbsError: 3.80404e-03\n", + " Region: \"zone_3\"\tRelError: 7.04226e-01\tAbsError: 4.65758e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.83578e-04\tAbsError: 2.48323e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.80149e-04\tAbsError: 2.17436e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.03050e-01\tAbsError: 2.89006e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21996e-05\tAbsError: 3.80475e-03\n", "Iteration: 21\n", - " Device: \"device\"\tRelError: 6.21763e-05\tAbsError: 3.59047e+10\n", - " Region: \"zone_1\"\tRelError: 1.71124e-05\tAbsError: 6.88377e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.70927e-05\tAbsError: 2.38408e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.97286e-08\tAbsError: 6.85993e-06\n", - " Region: \"zone_3\"\tRelError: 4.50639e-05\tAbsError: 3.59047e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.45923e-06\tAbsError: 2.03147e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.43392e-06\tAbsError: 1.55900e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.81510e-05\tAbsError: 2.41148e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.97322e-08\tAbsError: 6.86120e-06\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.13878e-04\tAbsError: 1.24488e+11\n", - " Region: \"zone_1\"\tRelError: 6.77267e-05\tAbsError: 1.32659e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.76887e-05\tAbsError: 6.49775e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.79174e-08\tAbsError: 1.32594e-05\n", - " Region: \"zone_3\"\tRelError: 1.46151e-04\tAbsError: 1.24488e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.41336e-07\tAbsError: 6.10291e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.66825e-07\tAbsError: 6.34588e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.45305e-04\tAbsError: 6.53401e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.79209e-08\tAbsError: 1.32605e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:37\u001b[0m.\u001b[1;36m142\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:37\u001b[0m.\u001b[1;36m142\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.20454545454545453\u001b[0m \n", + " Device: \"device\"\tRelError: 1.47059e+00\tAbsError: 3.93054e+12\n", + " Region: \"zone_1\"\tRelError: 9.78821e-03\tAbsError: 3.21499e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.77791e-03\tAbsError: 2.34628e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03012e-05\tAbsError: 3.21264e-03\n", + " Region: \"zone_3\"\tRelError: 1.46080e+00\tAbsError: 3.93054e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.92735e-04\tAbsError: 2.09557e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.89841e-04\tAbsError: 1.83497e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45981e+00\tAbsError: 2.43926e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03028e-05\tAbsError: 3.21324e-03\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 5.61144e-01\tAbsError: 3.31952e+12\n", + " Region: \"zone_1\"\tRelError: 8.19766e-03\tAbsError: 2.71408e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.18897e-03\tAbsError: 1.98145e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.69628e-06\tAbsError: 2.71209e-03\n", + " Region: \"zone_3\"\tRelError: 5.52947e-01\tAbsError: 3.31952e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.15963e-04\tAbsError: 1.76981e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.13519e-04\tAbsError: 1.54971e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.52109e-01\tAbsError: 2.05990e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.69769e-06\tAbsError: 2.71261e-03\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 8.80767e-01\tAbsError: 2.80231e+12\n", + " Region: \"zone_1\"\tRelError: 6.96911e-03\tAbsError: 2.29171e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.96177e-03\tAbsError: 1.67277e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.34292e-06\tAbsError: 2.29004e-03\n", + " Region: \"zone_3\"\tRelError: 8.73798e-01\tAbsError: 2.80231e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.51273e-04\tAbsError: 1.49405e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.49210e-04\tAbsError: 1.30826e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.73090e-01\tAbsError: 1.73902e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.34411e-06\tAbsError: 2.29047e-03\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 4.30806e-01\tAbsError: 2.36623e+12\n", + " Region: \"zone_1\"\tRelError: 5.84999e-03\tAbsError: 1.93485e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.84379e-03\tAbsError: 1.41244e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.19952e-06\tAbsError: 1.93344e-03\n", + " Region: \"zone_3\"\tRelError: 4.24956e-01\tAbsError: 2.36623e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96525e-04\tAbsError: 1.26156e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.94783e-04\tAbsError: 1.10468e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.24358e-01\tAbsError: 1.46837e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.20052e-06\tAbsError: 1.93380e-03\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 5.63792e-01\tAbsError: 1.99775e+12\n", + " Region: \"zone_1\"\tRelError: 4.96360e-03\tAbsError: 1.63366e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.95837e-03\tAbsError: 1.19250e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.23445e-06\tAbsError: 1.63247e-03\n", + " Region: \"zone_3\"\tRelError: 5.58828e-01\tAbsError: 1.99775e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.50410e-04\tAbsError: 1.06510e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.48938e-04\tAbsError: 9.32653e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.58324e-01\tAbsError: 1.23973e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.23530e-06\tAbsError: 1.63278e-03\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 3.24978e-01\tAbsError: 1.68678e+12\n", + " Region: \"zone_1\"\tRelError: 4.17345e-03\tAbsError: 1.37931e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.16903e-03\tAbsError: 1.00687e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.41949e-06\tAbsError: 1.37830e-03\n", + " Region: \"zone_3\"\tRelError: 3.20805e-01\tAbsError: 1.68678e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11388e-04\tAbsError: 8.99307e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.10146e-04\tAbsError: 7.87475e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.20379e-01\tAbsError: 1.04674e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.42021e-06\tAbsError: 1.37856e-03\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 3.74696e-01\tAbsError: 1.42415e+12\n", + " Region: \"zone_1\"\tRelError: 3.53612e-03\tAbsError: 1.16458e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53239e-03\tAbsError: 8.50107e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.73146e-06\tAbsError: 1.16373e-03\n", + " Region: \"zone_3\"\tRelError: 3.71160e-01\tAbsError: 1.42415e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.78506e-04\tAbsError: 7.59287e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.77457e-04\tAbsError: 6.64868e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.70800e-01\tAbsError: 8.83772e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.73207e-06\tAbsError: 1.16395e-03\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 2.41709e-01\tAbsError: 1.20245e+12\n", + " Region: \"zone_1\"\tRelError: 2.97675e-03\tAbsError: 9.83272e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97360e-03\tAbsError: 7.17765e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.15053e-06\tAbsError: 9.82554e-04\n", + " Region: \"zone_3\"\tRelError: 2.38732e-01\tAbsError: 1.20245e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50695e-04\tAbsError: 6.41085e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.49810e-04\tAbsError: 5.61364e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38428e-01\tAbsError: 7.46189e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.15104e-06\tAbsError: 9.82739e-04\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 2.54823e-01\tAbsError: 1.01524e+12\n", + " Region: \"zone_1\"\tRelError: 2.51963e-03\tAbsError: 8.30194e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51697e-03\tAbsError: 6.06017e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.66004e-06\tAbsError: 8.29588e-04\n", + " Region: \"zone_3\"\tRelError: 2.52304e-01\tAbsError: 1.01524e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27249e-04\tAbsError: 5.41275e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.26501e-04\tAbsError: 4.73966e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52047e-01\tAbsError: 6.30016e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.66047e-06\tAbsError: 8.29744e-04\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 1.77807e-01\tAbsError: 8.57188e+11\n", + " Region: \"zone_1\"\tRelError: 2.12286e-03\tAbsError: 7.00945e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12062e-03\tAbsError: 5.11672e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24592e-06\tAbsError: 7.00434e-04\n", + " Region: \"zone_3\"\tRelError: 1.75684e-01\tAbsError: 8.57188e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07428e-04\tAbsError: 4.57009e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06797e-04\tAbsError: 4.00179e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75467e-01\tAbsError: 5.31935e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24628e-06\tAbsError: 7.00566e-04\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 1.75893e-01\tAbsError: 7.23735e+11\n", + " Region: \"zone_1\"\tRelError: 1.79558e-03\tAbsError: 5.91820e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79368e-03\tAbsError: 4.32012e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89626e-06\tAbsError: 5.91388e-04\n", + " Region: \"zone_3\"\tRelError: 1.74098e-01\tAbsError: 7.23735e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.07106e-05\tAbsError: 3.85859e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.01777e-05\tAbsError: 3.37876e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73915e-01\tAbsError: 4.49120e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89657e-06\tAbsError: 5.91499e-04\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 1.29707e-01\tAbsError: 6.11063e+11\n", + " Region: \"zone_1\"\tRelError: 1.51375e-03\tAbsError: 4.99683e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51214e-03\tAbsError: 3.64756e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60105e-06\tAbsError: 4.99318e-04\n", + " Region: \"zone_3\"\tRelError: 1.28193e-01\tAbsError: 6.11063e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.65831e-05\tAbsError: 3.25788e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.61332e-05\tAbsError: 2.85275e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28038e-01\tAbsError: 3.79200e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60131e-06\tAbsError: 4.99412e-04\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 1.22618e-01\tAbsError: 5.15930e+11\n", + " Region: \"zone_1\"\tRelError: 1.27971e-03\tAbsError: 4.21891e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27836e-03\tAbsError: 3.07969e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35179e-06\tAbsError: 4.21583e-04\n", + " Region: \"zone_3\"\tRelError: 1.21338e-01\tAbsError: 5.15930e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.46642e-05\tAbsError: 2.75067e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.42843e-05\tAbsError: 2.40862e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21208e-01\tAbsError: 3.20164e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35201e-06\tAbsError: 4.21662e-04\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 9.40265e-02\tAbsError: 4.35608e+11\n", + " Region: \"zone_1\"\tRelError: 1.07932e-03\tAbsError: 3.56209e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07818e-03\tAbsError: 2.60023e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14134e-06\tAbsError: 3.55949e-04\n", + " Region: \"zone_3\"\tRelError: 9.29472e-02\tAbsError: 4.35608e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.45943e-05\tAbsError: 2.32244e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.42736e-05\tAbsError: 2.03364e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.28372e-02\tAbsError: 2.70320e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14152e-06\tAbsError: 3.56016e-04\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 8.60555e-02\tAbsError: 3.67791e+11\n", + " Region: \"zone_1\"\tRelError: 9.12114e-04\tAbsError: 3.00753e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.11151e-04\tAbsError: 2.19542e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.63651e-07\tAbsError: 3.00534e-04\n", + " Region: \"zone_3\"\tRelError: 8.51434e-02\tAbsError: 3.67791e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.60968e-05\tAbsError: 1.96087e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.58260e-05\tAbsError: 1.71703e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.50505e-02\tAbsError: 2.28236e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.63807e-07\tAbsError: 3.00590e-04\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 6.78464e-02\tAbsError: 3.10532e+11\n", + " Region: \"zone_1\"\tRelError: 7.69522e-04\tAbsError: 2.53931e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.68708e-04\tAbsError: 1.85363e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.13627e-07\tAbsError: 2.53745e-04\n", + " Region: \"zone_3\"\tRelError: 6.70769e-02\tAbsError: 3.10532e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.89189e-05\tAbsError: 1.65560e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.86903e-05\tAbsError: 1.44972e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.69984e-02\tAbsError: 1.92703e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.13758e-07\tAbsError: 2.53793e-04\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 6.06760e-02\tAbsError: 2.62187e+11\n", + " Region: \"zone_1\"\tRelError: 6.50141e-04\tAbsError: 2.14398e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.49454e-04\tAbsError: 1.56505e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.86958e-07\tAbsError: 2.14241e-04\n", + " Region: \"zone_3\"\tRelError: 6.00259e-02\tAbsError: 2.62187e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.28609e-05\tAbsError: 1.39785e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.26678e-05\tAbsError: 1.22402e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.99596e-02\tAbsError: 1.62702e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.87069e-07\tAbsError: 2.14282e-04\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 4.87901e-02\tAbsError: 2.21369e+11\n", + " Region: \"zone_1\"\tRelError: 5.48624e-04\tAbsError: 1.81020e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.48044e-04\tAbsError: 1.32139e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.80010e-07\tAbsError: 1.80888e-04\n", + " Region: \"zone_3\"\tRelError: 4.82414e-02\tAbsError: 2.21369e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.77442e-05\tAbsError: 1.18023e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.75813e-05\tAbsError: 1.03346e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.81855e-02\tAbsError: 1.37372e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.80104e-07\tAbsError: 1.80922e-04\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 4.29198e-02\tAbsError: 1.86905e+11\n", + " Region: \"zone_1\"\tRelError: 4.63427e-04\tAbsError: 1.52838e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62937e-04\tAbsError: 1.11567e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.89712e-07\tAbsError: 1.52726e-04\n", + " Region: \"zone_3\"\tRelError: 4.24564e-02\tAbsError: 1.86905e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.34254e-05\tAbsError: 9.96484e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.32878e-05\tAbsError: 8.72569e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.24092e-02\tAbsError: 1.15986e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.89791e-07\tAbsError: 1.52755e-04\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 3.49999e-02\tAbsError: 1.57807e+11\n", + " Region: \"zone_1\"\tRelError: 3.91126e-04\tAbsError: 1.29043e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.90713e-04\tAbsError: 9.41983e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.13472e-07\tAbsError: 1.28949e-04\n", + " Region: \"zone_3\"\tRelError: 3.46088e-02\tAbsError: 1.57807e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97781e-05\tAbsError: 8.41348e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96619e-05\tAbsError: 7.36724e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.45690e-02\tAbsError: 9.79286e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.13539e-07\tAbsError: 1.28974e-04\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 3.04286e-02\tAbsError: 1.33239e+11\n", + " Region: \"zone_1\"\tRelError: 3.30343e-04\tAbsError: 1.08954e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.29994e-04\tAbsError: 7.95331e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.49101e-07\tAbsError: 1.08874e-04\n", + " Region: \"zone_3\"\tRelError: 3.00983e-02\tAbsError: 1.33239e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.66992e-05\tAbsError: 7.10364e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.66011e-05\tAbsError: 6.22028e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.00646e-02\tAbsError: 8.26827e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.49157e-07\tAbsError: 1.08894e-04\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 2.50629e-02\tAbsError: 1.12496e+11\n", + " Region: \"zone_1\"\tRelError: 2.78836e-04\tAbsError: 9.19912e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78542e-04\tAbsError: 6.71511e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94752e-07\tAbsError: 9.19241e-05\n", + " Region: \"zone_3\"\tRelError: 2.47841e-02\tAbsError: 1.12496e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.40993e-05\tAbsError: 5.99772e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.40164e-05\tAbsError: 5.25189e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.47557e-02\tAbsError: 6.98103e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94799e-07\tAbsError: 9.19414e-05\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 2.16073e-02\tAbsError: 9.49822e+10\n", + " Region: \"zone_1\"\tRelError: 2.35481e-04\tAbsError: 7.76697e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.35232e-04\tAbsError: 5.66968e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.48863e-07\tAbsError: 7.76130e-05\n", + " Region: \"zone_3\"\tRelError: 2.13718e-02\tAbsError: 9.49822e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19044e-05\tAbsError: 5.06397e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.18344e-05\tAbsError: 4.43425e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13478e-02\tAbsError: 5.89420e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.48904e-07\tAbsError: 7.76276e-05\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 1.79242e-02\tAbsError: 8.01951e+10\n", + " Region: \"zone_1\"\tRelError: 1.98781e-04\tAbsError: 6.55778e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.98571e-04\tAbsError: 4.78700e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.10119e-07\tAbsError: 6.55299e-05\n", + " Region: \"zone_3\"\tRelError: 1.77254e-02\tAbsError: 8.01951e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00510e-05\tAbsError: 4.27559e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.99190e-06\tAbsError: 3.74391e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77052e-02\tAbsError: 4.97657e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.10154e-07\tAbsError: 6.55422e-05\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 1.53606e-02\tAbsError: 6.77100e+10\n", + " Region: \"zone_1\"\tRelError: 1.67862e-04\tAbsError: 5.53684e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67685e-04\tAbsError: 4.04174e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77407e-07\tAbsError: 5.53280e-05\n", + " Region: \"zone_3\"\tRelError: 1.51927e-02\tAbsError: 6.77100e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.48625e-06\tAbsError: 3.60995e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.43639e-06\tAbsError: 3.16105e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51756e-02\tAbsError: 4.20180e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77436e-07\tAbsError: 5.53384e-05\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 1.28071e-02\tAbsError: 5.71686e+10\n", + " Region: \"zone_1\"\tRelError: 1.41709e-04\tAbsError: 4.67484e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41559e-04\tAbsError: 3.41251e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49788e-07\tAbsError: 4.67143e-05\n", + " Region: \"zone_3\"\tRelError: 1.26654e-02\tAbsError: 5.71686e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16503e-06\tAbsError: 3.04794e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.12294e-06\tAbsError: 2.66892e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26509e-02\tAbsError: 3.54765e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49812e-07\tAbsError: 4.67231e-05\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 1.09286e-02\tAbsError: 4.82684e+10\n", + " Region: \"zone_1\"\tRelError: 1.19661e-04\tAbsError: 3.94705e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19535e-04\tAbsError: 2.88124e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26468e-07\tAbsError: 3.94417e-05\n", + " Region: \"zone_3\"\tRelError: 1.08089e-02\tAbsError: 4.82684e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.04958e-06\tAbsError: 2.57343e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.01404e-06\tAbsError: 2.25341e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07967e-02\tAbsError: 2.99534e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26489e-07\tAbsError: 3.94491e-05\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 9.14481e-03\tAbsError: 4.07538e+10\n", + " Region: \"zone_1\"\tRelError: 1.01022e-04\tAbsError: 3.33256e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00915e-04\tAbsError: 2.43268e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06779e-07\tAbsError: 3.33012e-05\n", + " Region: \"zone_3\"\tRelError: 9.04379e-03\tAbsError: 4.07538e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.10774e-06\tAbsError: 2.17279e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.07773e-06\tAbsError: 1.90259e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.03349e-03\tAbsError: 2.52901e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06797e-07\tAbsError: 3.33075e-05\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 7.77974e-03\tAbsError: 3.44091e+10\n", + " Region: \"zone_1\"\tRelError: 8.53017e-05\tAbsError: 2.81373e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.52115e-05\tAbsError: 2.05395e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.01555e-08\tAbsError: 2.81168e-05\n", + " Region: \"zone_3\"\tRelError: 7.69444e-03\tAbsError: 3.44091e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.31256e-06\tAbsError: 1.83452e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.28723e-06\tAbsError: 1.60639e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.68575e-03\tAbsError: 2.13529e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.01701e-08\tAbsError: 2.81221e-05\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 6.52672e-03\tAbsError: 2.90522e+10\n", + " Region: \"zone_1\"\tRelError: 7.20164e-05\tAbsError: 2.37568e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.19403e-05\tAbsError: 1.73418e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.61197e-08\tAbsError: 2.37394e-05\n", + " Region: \"zone_3\"\tRelError: 6.45470e-03\tAbsError: 2.90522e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.64116e-06\tAbsError: 1.54891e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.61976e-06\tAbsError: 1.35630e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.44736e-03\tAbsError: 1.80286e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.61321e-08\tAbsError: 2.37439e-05\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 5.54041e-03\tAbsError: 2.45292e+10\n", + " Region: \"zone_1\"\tRelError: 6.08083e-05\tAbsError: 2.00582e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.07441e-05\tAbsError: 1.46420e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.42691e-08\tAbsError: 2.00436e-05\n", + " Region: \"zone_3\"\tRelError: 5.47960e-03\tAbsError: 2.45292e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.07430e-06\tAbsError: 1.30777e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.05623e-06\tAbsError: 1.14515e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.47341e-03\tAbsError: 1.52218e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.42796e-08\tAbsError: 2.00474e-05\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 4.65660e-03\tAbsError: 2.07104e+10\n", + " Region: \"zone_1\"\tRelError: 5.13388e-05\tAbsError: 1.69355e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.12846e-05\tAbsError: 1.23625e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.42635e-08\tAbsError: 1.69231e-05\n", + " Region: \"zone_3\"\tRelError: 4.60526e-03\tAbsError: 2.07104e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.59567e-06\tAbsError: 1.10418e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.58042e-06\tAbsError: 9.66868e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.60003e-03\tAbsError: 1.28520e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.42723e-08\tAbsError: 1.69263e-05\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 3.94679e-03\tAbsError: 1.74862e+10\n", + " Region: \"zone_1\"\tRelError: 4.33481e-05\tAbsError: 1.42989e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.33023e-05\tAbsError: 1.04378e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.58155e-08\tAbsError: 1.42885e-05\n", + " Region: \"zone_3\"\tRelError: 3.90344e-03\tAbsError: 1.74862e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.19157e-06\tAbsError: 9.32274e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.17870e-06\tAbsError: 8.16343e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.89902e-03\tAbsError: 1.08512e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.58230e-08\tAbsError: 1.42912e-05\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 3.32153e-03\tAbsError: 1.47638e+10\n", + " Region: \"zone_1\"\tRelError: 3.65982e-05\tAbsError: 1.20728e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.65595e-05\tAbsError: 8.81282e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.86828e-08\tAbsError: 1.20640e-05\n", + " Region: \"zone_3\"\tRelError: 3.28494e-03\tAbsError: 1.47638e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.85038e-06\tAbsError: 7.87133e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.83951e-06\tAbsError: 6.89251e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.28121e-03\tAbsError: 9.16182e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.86891e-08\tAbsError: 1.20663e-05\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 2.81212e-03\tAbsError: 1.24653e+10\n", + " Region: \"zone_1\"\tRelError: 3.09014e-05\tAbsError: 1.01933e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.08687e-05\tAbsError: 7.44081e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.26605e-08\tAbsError: 1.01858e-05\n", + " Region: \"zone_3\"\tRelError: 2.78122e-03\tAbsError: 1.24653e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.56231e-06\tAbsError: 6.64589e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.55313e-06\tAbsError: 5.81945e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.77807e-03\tAbsError: 7.73547e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.26658e-08\tAbsError: 1.01877e-05\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 2.36883e-03\tAbsError: 1.05247e+10\n", + " Region: \"zone_1\"\tRelError: 2.60899e-05\tAbsError: 8.60634e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.60623e-05\tAbsError: 6.28240e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75758e-08\tAbsError: 8.60006e-06\n", + " Region: \"zone_3\"\tRelError: 2.34274e-03\tAbsError: 1.05247e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31908e-06\tAbsError: 5.61123e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.31133e-06\tAbsError: 4.91346e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34008e-03\tAbsError: 6.53119e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75803e-08\tAbsError: 8.60168e-06\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 2.00395e-03\tAbsError: 8.88617e+09\n", + " Region: \"zone_1\"\tRelError: 2.20286e-05\tAbsError: 7.26648e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20053e-05\tAbsError: 5.30433e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.32827e-08\tAbsError: 7.26117e-06\n", + " Region: \"zone_3\"\tRelError: 1.98193e-03\tAbsError: 8.88617e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.11372e-06\tAbsError: 4.73765e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10718e-06\tAbsError: 4.14852e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97968e-03\tAbsError: 5.51439e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.32865e-08\tAbsError: 7.26254e-06\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 1.68918e-03\tAbsError: 7.50275e+09\n", + " Region: \"zone_1\"\tRelError: 1.85987e-05\tAbsError: 6.13520e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85791e-05\tAbsError: 4.47853e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.96580e-08\tAbsError: 6.13073e-06\n", + " Region: \"zone_3\"\tRelError: 1.67058e-03\tAbsError: 7.50275e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.40332e-07\tAbsError: 4.00008e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.34807e-07\tAbsError: 3.50267e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66869e-03\tAbsError: 4.65589e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.96612e-08\tAbsError: 6.13188e-06\n", + "Iteration: 59\n", + " Device: \"device\"\tRelError: 1.42819e-03\tAbsError: 6.33470e+09\n", + " Region: \"zone_1\"\tRelError: 1.57035e-05\tAbsError: 5.18005e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56869e-05\tAbsError: 3.78130e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65975e-08\tAbsError: 5.17627e-06\n", + " Region: \"zone_3\"\tRelError: 1.41249e-03\tAbsError: 6.33470e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.93938e-07\tAbsError: 3.37734e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.89274e-07\tAbsError: 2.95736e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41089e-03\tAbsError: 3.93104e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66002e-08\tAbsError: 5.17725e-06\n", + "Iteration: 60\n", + " Device: \"device\"\tRelError: 1.20443e-03\tAbsError: 5.34849e+09\n", + " Region: \"zone_1\"\tRelError: 1.32585e-05\tAbsError: 4.37360e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32445e-05\tAbsError: 3.19261e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40136e-08\tAbsError: 4.37041e-06\n", + " Region: \"zone_3\"\tRelError: 1.19117e-03\tAbsError: 5.34849e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.70334e-07\tAbsError: 2.85154e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.66396e-07\tAbsError: 2.49695e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18982e-03\tAbsError: 3.31904e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40158e-08\tAbsError: 4.37123e-06\n", + "Iteration: 61\n", + " Device: \"device\"\tRelError: 1.01793e-03\tAbsError: 4.51582e+09\n", + " Region: \"zone_1\"\tRelError: 1.11945e-05\tAbsError: 3.69270e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11827e-05\tAbsError: 2.69557e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18319e-08\tAbsError: 3.69001e-06\n", + " Region: \"zone_3\"\tRelError: 1.00673e-03\tAbsError: 4.51582e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.65974e-07\tAbsError: 2.40761e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.62649e-07\tAbsError: 2.10822e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00559e-03\tAbsError: 2.80232e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18338e-08\tAbsError: 3.69070e-06\n", + "Iteration: 62\n", + " Device: \"device\"\tRelError: 8.58733e-04\tAbsError: 3.81279e+09\n", + " Region: \"zone_1\"\tRelError: 9.45161e-06\tAbsError: 3.11781e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 9.44162e-06\tAbsError: 2.27592e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.98986e-09\tAbsError: 3.11553e-06\n", + " Region: \"zone_3\"\tRelError: 8.49282e-04\tAbsError: 3.81279e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.77861e-07\tAbsError: 2.03278e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.75054e-07\tAbsError: 1.78001e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 8.48319e-04\tAbsError: 2.36604e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.99148e-09\tAbsError: 3.11612e-06\n", + "Iteration: 63\n", + " Device: \"device\"\tRelError: 7.25556e-04\tAbsError: 3.21918e+09\n", + " Region: \"zone_1\"\tRelError: 7.98021e-06\tAbsError: 2.63242e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.97178e-06\tAbsError: 1.92159e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.43460e-09\tAbsError: 2.63050e-06\n", + " Region: \"zone_3\"\tRelError: 7.17576e-04\tAbsError: 3.21918e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.03466e-07\tAbsError: 1.71631e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.01096e-07\tAbsError: 1.50288e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 7.16763e-04\tAbsError: 1.99769e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.43597e-09\tAbsError: 2.63099e-06\n", + "Iteration: 64\n", + " Device: \"device\"\tRelError: 6.12233e-04\tAbsError: 2.71800e+09\n", + " Region: \"zone_1\"\tRelError: 6.73778e-06\tAbsError: 2.22259e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.73066e-06\tAbsError: 1.62243e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.12147e-09\tAbsError: 2.22097e-06\n", + " Region: \"zone_3\"\tRelError: 6.05495e-04\tAbsError: 2.71800e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.40653e-07\tAbsError: 1.44911e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.38652e-07\tAbsError: 1.26890e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 6.04808e-04\tAbsError: 1.68668e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.12262e-09\tAbsError: 2.22139e-06\n", + "Iteration: 65\n", + " Device: \"device\"\tRelError: 5.17179e-04\tAbsError: 2.29486e+09\n", + " Region: \"zone_1\"\tRelError: 5.68885e-06\tAbsError: 1.87657e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.68284e-06\tAbsError: 1.36985e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.01277e-09\tAbsError: 1.87520e-06\n", + " Region: \"zone_3\"\tRelError: 5.11490e-04\tAbsError: 2.29486e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87619e-07\tAbsError: 1.22351e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.85929e-07\tAbsError: 1.07135e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.10910e-04\tAbsError: 1.42409e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.01375e-09\tAbsError: 1.87555e-06\n", + "Iteration: 66\n", + " Device: \"device\"\tRelError: 4.36477e-04\tAbsError: 1.93760e+09\n", + " Region: \"zone_1\"\tRelError: 4.80317e-06\tAbsError: 1.58442e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.79809e-06\tAbsError: 1.15658e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.07668e-09\tAbsError: 1.58326e-06\n", + " Region: \"zone_3\"\tRelError: 4.31673e-04\tAbsError: 1.93760e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.42841e-07\tAbsError: 1.03304e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.41415e-07\tAbsError: 9.04562e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 4.31184e-04\tAbsError: 1.20239e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.07750e-09\tAbsError: 1.58356e-06\n", + "Iteration: 67\n", + " Device: \"device\"\tRelError: 3.68657e-04\tAbsError: 1.63594e+09\n", + " Region: \"zone_1\"\tRelError: 4.05541e-06\tAbsError: 1.33775e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.05112e-06\tAbsError: 9.76522e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.28632e-09\tAbsError: 1.33678e-06\n", + " Region: \"zone_3\"\tRelError: 3.64601e-04\tAbsError: 1.63594e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05035e-07\tAbsError: 8.72207e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.03830e-07\tAbsError: 7.63737e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 3.64188e-04\tAbsError: 1.01519e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.28702e-09\tAbsError: 1.33703e-06\n", + "Iteration: 68\n", + " Device: \"device\"\tRelError: 3.11168e-04\tAbsError: 1.38126e+09\n", + " Region: \"zone_1\"\tRelError: 3.42403e-06\tAbsError: 1.12949e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.42042e-06\tAbsError: 8.24494e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.61901e-09\tAbsError: 1.12866e-06\n", + " Region: \"zone_3\"\tRelError: 3.07744e-04\tAbsError: 1.38126e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.73114e-07\tAbsError: 7.36423e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.72097e-07\tAbsError: 6.44841e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 3.07396e-04\tAbsError: 8.57144e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.61960e-09\tAbsError: 1.12887e-06\n", + "Iteration: 69\n", + " Device: \"device\"\tRelError: 2.62792e-04\tAbsError: 1.16622e+09\n", + " Region: \"zone_1\"\tRelError: 2.89098e-06\tAbsError: 9.53643e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88792e-06\tAbsError: 6.96134e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.05559e-09\tAbsError: 9.52947e-07\n", + " Region: \"zone_3\"\tRelError: 2.59901e-04\tAbsError: 1.16622e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46163e-07\tAbsError: 6.21769e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.45305e-07\tAbsError: 5.44447e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.59606e-04\tAbsError: 7.23701e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.05609e-09\tAbsError: 9.53126e-07\n", + "Iteration: 70\n", + " Device: \"device\"\tRelError: 2.21831e-04\tAbsError: 9.84647e+08\n", + " Region: \"zone_1\"\tRelError: 2.44089e-06\tAbsError: 8.05176e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.43831e-06\tAbsError: 5.87757e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.57989e-09\tAbsError: 8.04588e-07\n", + " Region: \"zone_3\"\tRelError: 2.19391e-04\tAbsError: 9.84647e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23408e-07\tAbsError: 5.24969e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.22683e-07\tAbsError: 4.59678e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19142e-04\tAbsError: 6.11032e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58030e-09\tAbsError: 8.04740e-07\n", + "Iteration: 71\n", + " Device: \"device\"\tRelError: 1.87330e-04\tAbsError: 8.31355e+08\n", + " Region: \"zone_1\"\tRelError: 2.06089e-06\tAbsError: 6.79823e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05871e-06\tAbsError: 4.96253e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17824e-09\tAbsError: 6.79327e-07\n", + " Region: \"zone_3\"\tRelError: 1.85269e-04\tAbsError: 8.31355e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04195e-07\tAbsError: 4.43244e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03583e-07\tAbsError: 3.88111e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85059e-04\tAbsError: 5.15905e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17859e-09\tAbsError: 6.79455e-07\n", + "Iteration: 72\n", + " Device: \"device\"\tRelError: 1.58142e-04\tAbsError: 7.01930e+08\n", + " Region: \"zone_1\"\tRelError: 1.74004e-06\tAbsError: 5.73986e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73820e-06\tAbsError: 4.18994e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83912e-09\tAbsError: 5.73567e-07\n", + " Region: \"zone_3\"\tRelError: 1.56402e-04\tAbsError: 7.01930e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.79738e-08\tAbsError: 3.74241e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.74570e-08\tAbsError: 3.27688e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56224e-04\tAbsError: 4.35587e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83942e-09\tAbsError: 5.73675e-07\n", + "Iteration: 73\n", + " Device: \"device\"\tRelError: 1.33539e-04\tAbsError: 5.92659e+08\n", + " Region: \"zone_1\"\tRelError: 1.46915e-06\tAbsError: 4.84626e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46759e-06\tAbsError: 3.53764e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55280e-09\tAbsError: 4.84272e-07\n", + " Region: \"zone_3\"\tRelError: 1.32070e-04\tAbsError: 5.92659e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.42777e-08\tAbsError: 3.15973e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.38414e-08\tAbsError: 2.76686e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31920e-04\tAbsError: 3.67773e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55305e-09\tAbsError: 4.84363e-07\n", + "Iteration: 74\n", + " Device: \"device\"\tRelError: 1.12737e-04\tAbsError: 5.00381e+08\n", + " Region: \"zone_1\"\tRelError: 1.24042e-06\tAbsError: 4.09177e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23911e-06\tAbsError: 2.98688e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31106e-09\tAbsError: 4.08879e-07\n", + " Region: \"zone_3\"\tRelError: 1.11496e-04\tAbsError: 5.00381e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.27139e-08\tAbsError: 2.66771e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.23455e-08\tAbsError: 2.33611e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11370e-04\tAbsError: 3.10517e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31127e-09\tAbsError: 4.08956e-07\n", + "Iteration: 75\n", + " Device: \"device\"\tRelError: 9.51942e-05\tAbsError: 4.22465e+08\n", + " Region: \"zone_1\"\tRelError: 1.04731e-06\tAbsError: 3.45475e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04620e-06\tAbsError: 2.52187e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10695e-09\tAbsError: 3.45223e-07\n", + " Region: \"zone_3\"\tRelError: 9.41469e-05\tAbsError: 4.22465e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.29504e-08\tAbsError: 2.25238e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.26393e-08\tAbsError: 1.97228e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 9.40402e-05\tAbsError: 2.62174e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10712e-09\tAbsError: 3.45288e-07\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:29:13\u001b[0m.\u001b[1;36m690\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:29:13\u001b[0m.\u001b[1;36m706\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mBuilt-in potential: % (-1.067935846775339,)\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:29:13\u001b[0m.\u001b[1;36m706\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mnot all arguments converted during string formatting\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:29:13\u001b[0m.\u001b[1;36m795\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.6 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:29:13\u001b[0m.\u001b[1;36m795\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.65 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:29:13\u001b[0m.\u001b[1;36m795\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.7 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:29:13\u001b[0m.\u001b[1;36m796\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.5 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:29:13\u001b[0m.\u001b[1;36m796\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.55 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:29:13\u001b[0m.\u001b[1;36m809\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.6\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:29:13\u001b[0m.\u001b[1;36m810\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: 0.5\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:29:13\u001b[0m.\u001b[1;36m810\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: 0.55\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:29:13\u001b[0m.\u001b[1;36m810\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.7\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:29:13\u001b[0m.\u001b[1;36m811\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: 0.65\u001b[0m \n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.21566e-01\tAbsError: 5.27559e+13\n", - " Region: \"zone_1\"\tRelError: 4.28919e-02\tAbsError: 2.15949e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.28300e-02\tAbsError: 5.21547e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.19265e-05\tAbsError: 2.15897e-02\n", - " Region: \"zone_3\"\tRelError: 3.78674e-01\tAbsError: 5.27559e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.23521e-04\tAbsError: 2.51687e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.13347e-04\tAbsError: 2.75872e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.77975e-01\tAbsError: 5.24851e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.19510e-05\tAbsError: 2.15981e-02\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.97994e+03\tAbsError: 8.66817e+15\n", - " Region: \"zone_1\"\tRelError: 2.91022e+01\tAbsError: 2.56799e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.91016e+01\tAbsError: 6.59200e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.48255e-04\tAbsError: 1.90879e-01\n", - " Region: \"zone_3\"\tRelError: 1.95083e+03\tAbsError: 8.66817e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.96768e+01\tAbsError: 6.38297e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.91041e+03\tAbsError: 2.28521e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.45092e-01\tAbsError: 6.60324e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.48255e-04\tAbsError: 1.90879e-01\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.77929e-03\tAbsError: 1.66332e+12\n", - " Region: \"zone_1\"\tRelError: 9.67169e-04\tAbsError: 7.67803e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 9.66948e-04\tAbsError: 5.54707e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.20584e-07\tAbsError: 7.67248e-05\n", - " Region: \"zone_3\"\tRelError: 2.81212e-03\tAbsError: 1.66332e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.03133e-06\tAbsError: 8.28853e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.51523e-06\tAbsError: 8.34464e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.80736e-03\tAbsError: 5.60597e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.20667e-07\tAbsError: 7.67544e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.56196e-04\tAbsError: 8.22099e+10\n", - " Region: \"zone_1\"\tRelError: 4.96683e-05\tAbsError: 1.29947e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.96646e-05\tAbsError: 3.20602e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.70688e-09\tAbsError: 1.29627e-06\n", - " Region: \"zone_3\"\tRelError: 1.06527e-04\tAbsError: 8.22099e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53254e-07\tAbsError: 4.09765e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.71613e-07\tAbsError: 4.12334e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06199e-04\tAbsError: 3.22381e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.70726e-09\tAbsError: 1.29639e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.63989e+00\tAbsError: 8.72797e+15\n", - " Region: \"zone_1\"\tRelError: 1.99354e+00\tAbsError: 4.18756e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.99354e+00\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.95179e-09\tAbsError: 2.76495e-06\n", - " Region: \"zone_3\"\tRelError: 1.64635e+00\tAbsError: 8.72797e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77333e-01\tAbsError: 4.88246e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.77262e-01\tAbsError: 3.84551e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.17559e-02\tAbsError: 4.18729e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.95320e-09\tAbsError: 2.76545e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.73598e-01\tAbsError: 1.28371e+14\n", - " Region: \"zone_1\"\tRelError: 4.88547e-02\tAbsError: 1.14618e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 4.88514e-02\tAbsError: 6.07608e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.27013e-06\tAbsError: 1.14010e-03\n", - " Region: \"zone_3\"\tRelError: 4.24743e-01\tAbsError: 1.28371e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05203e-04\tAbsError: 6.39050e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.33691e-05\tAbsError: 6.44661e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.24451e-01\tAbsError: 6.12305e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.27164e-06\tAbsError: 1.14062e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.40040e+02\tAbsError: 5.95948e+15\n", - " Region: \"zone_1\"\tRelError: 2.06907e+00\tAbsError: 2.31345e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.06858e+00\tAbsError: 6.01974e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.91826e-04\tAbsError: 1.71148e-01\n", - " Region: \"zone_3\"\tRelError: 4.37971e+02\tAbsError: 5.95948e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.55213e+01\tAbsError: 3.45726e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.72283e+02\tAbsError: 2.50222e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66656e-01\tAbsError: 6.02962e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.91826e-04\tAbsError: 1.71148e-01\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.29708e-03\tAbsError: 6.02455e+11\n", - " Region: \"zone_1\"\tRelError: 3.31625e-04\tAbsError: 1.60822e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.31578e-04\tAbsError: 1.96446e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.61796e-08\tAbsError: 1.60626e-05\n", - " Region: \"zone_3\"\tRelError: 9.65457e-04\tAbsError: 6.02455e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.18009e-07\tAbsError: 3.00196e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.30394e-07\tAbsError: 3.02259e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 9.64162e-04\tAbsError: 1.98596e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.61970e-08\tAbsError: 1.60691e-05\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.81376e-05\tAbsError: 8.11356e+09\n", - " Region: \"zone_1\"\tRelError: 5.70565e-06\tAbsError: 6.56313e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 5.70378e-06\tAbsError: 3.58334e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.87514e-09\tAbsError: 6.55955e-07\n", - " Region: \"zone_3\"\tRelError: 1.24320e-05\tAbsError: 8.11356e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21600e-08\tAbsError: 4.01059e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.61223e-08\tAbsError: 4.10296e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.23818e-05\tAbsError: 3.60254e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.87583e-09\tAbsError: 6.56203e-07\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.53407e+00\tAbsError: 3.18169e+14\n", - " Region: \"zone_1\"\tRelError: 6.99964e-02\tAbsError: 9.36813e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.98185e-02\tAbsError: 3.18465e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77869e-04\tAbsError: 6.18348e-02\n", - " Region: \"zone_3\"\tRelError: 1.46407e+00\tAbsError: 3.18169e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.51841e-01\tAbsError: 1.64071e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.46818e-01\tAbsError: 1.54098e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.52372e-02\tAbsError: 3.18470e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.77869e-04\tAbsError: 6.18348e-02\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.63959e+02\tAbsError: 1.06048e+15\n", - " Region: \"zone_1\"\tRelError: 9.17504e-02\tAbsError: 8.49421e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.16600e-02\tAbsError: 5.35062e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.03724e-05\tAbsError: 3.14360e-02\n", - " Region: \"zone_3\"\tRelError: 1.63867e+02\tAbsError: 1.06048e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.53923e+01\tAbsError: 1.86773e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.83587e+01\tAbsError: 8.73706e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16150e-01\tAbsError: 5.36223e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.03724e-05\tAbsError: 3.14360e-02\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 2.54373e-04\tAbsError: 1.22168e+11\n", - " Region: \"zone_1\"\tRelError: 6.48326e-05\tAbsError: 5.25902e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 6.48175e-05\tAbsError: 4.28577e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.51072e-08\tAbsError: 5.25473e-06\n", - " Region: \"zone_3\"\tRelError: 1.89541e-04\tAbsError: 1.22168e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24254e-07\tAbsError: 6.08856e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.87334e-07\tAbsError: 6.12822e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.89214e-04\tAbsError: 4.33147e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.51130e-08\tAbsError: 5.25689e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.70154e-02\tAbsError: 6.56308e+12\n", - " Region: \"zone_1\"\tRelError: 3.74108e-03\tAbsError: 9.10726e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.73847e-03\tAbsError: 3.93340e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.61130e-06\tAbsError: 9.10333e-04\n", - " Region: \"zone_3\"\tRelError: 3.32743e-02\tAbsError: 6.56308e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.73442e-05\tAbsError: 3.26782e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.61080e-05\tAbsError: 3.29526e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.32282e-02\tAbsError: 3.96200e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.61223e-06\tAbsError: 9.10648e-04\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.35968e+03\tAbsError: 8.04495e+14\n", - " Region: \"zone_1\"\tRelError: 1.05973e-01\tAbsError: 1.37456e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.05709e-01\tAbsError: 4.55960e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.64157e-04\tAbsError: 9.18597e-02\n", - " Region: \"zone_3\"\tRelError: 1.35957e+03\tAbsError: 8.04495e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12114e+03\tAbsError: 1.80902e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.38360e+02\tAbsError: 6.23593e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.02014e-02\tAbsError: 4.57362e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.64791e-04\tAbsError: 9.20824e-02\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 7.91529e-05\tAbsError: 3.93684e+10\n", - " Region: \"zone_1\"\tRelError: 2.01610e-05\tAbsError: 1.19278e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.01576e-05\tAbsError: 1.35948e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.42530e-09\tAbsError: 1.19142e-06\n", - " Region: \"zone_3\"\tRelError: 5.89918e-05\tAbsError: 3.93684e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.17561e-08\tAbsError: 1.96198e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.26426e-08\tAbsError: 1.97486e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.89040e-05\tAbsError: 1.37428e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.42670e-09\tAbsError: 1.19194e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:41\u001b[0m.\u001b[1;36m745\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 1.045\u001b[0m \n", - "Iteration: 2\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - " Device: \"device\"\tRelError: 9.90613e-01\tAbsError: 3.91910e+13\n", - " Region: \"zone_1\"\tRelError: 5.00658e-02\tAbsError: 3.12049e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.00505e-02\tAbsError: 2.58893e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52900e-05\tAbsError: 5.31555e-03\n", - " Region: \"zone_3\"\tRelError: 9.40548e-01\tAbsError: 3.91910e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.61768e-01\tAbsError: 2.86987e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.28623e-01\tAbsError: 1.04923e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.01413e-02\tAbsError: 2.58992e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.52900e-05\tAbsError: 5.31555e-03\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31686\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "number of equations 31686\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "number of equations 31686\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31686\n", + "number of equations 31686\n", + "Iteration: 0\n", + "Iteration: 0\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.04324e+02\tAbsError: 6.68981e+16\n", + " Region: \"zone_1\"\tRelError: 2.02211e+02\tAbsError: 8.44810e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02211e+02\tAbsError: 8.44807e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.34612e-10\tAbsError: 2.91477e-07\n", + " Region: \"zone_3\"\tRelError: 2.11318e+00\tAbsError: 6.68981e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.60640e-01\tAbsError: 3.67840e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.60529e-01\tAbsError: 3.01140e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92011e-01\tAbsError: 8.44807e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.34764e-10\tAbsError: 2.91532e-07\n", + " Device: \"device\"\tRelError: 4.66764e+01\tAbsError: 5.14601e+16\n", + " Region: \"zone_1\"\tRelError: 4.45899e+01\tAbsError: 7.79818e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.45899e+01\tAbsError: 7.79815e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.34612e-10\tAbsError: 2.91477e-07\n", + " Region: \"zone_3\"\tRelError: 2.08649e+00\tAbsError: 5.14601e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.49430e-01\tAbsError: 2.82954e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.49288e-01\tAbsError: 2.31647e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87771e-01\tAbsError: 7.79815e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.34764e-10\tAbsError: 2.91532e-07\n", + " Device: \"device\"\tRelError: 2.45053e+01\tAbsError: 5.66061e+16\n", + " Region: \"zone_1\"\tRelError: 2.23873e+01\tAbsError: 8.03341e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23873e+01\tAbsError: 8.03338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.34612e-10\tAbsError: 2.91477e-07\n", + " Region: \"zone_3\"\tRelError: 2.11800e+00\tAbsError: 5.66061e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.53815e-01\tAbsError: 3.11250e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.53685e-01\tAbsError: 2.54811e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.10500e-01\tAbsError: 8.03338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.34764e-10\tAbsError: 2.91532e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.07079e+04\tAbsError: 7.20441e+16\n", + " Region: \"zone_1\"\tRelError: 2.07058e+04\tAbsError: 8.63294e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07058e+04\tAbsError: 8.63291e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.34612e-10\tAbsError: 2.91477e-07\n", + " Region: \"zone_3\"\tRelError: 2.12813e+00\tAbsError: 7.20441e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.63349e-01\tAbsError: 3.96136e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.63245e-01\tAbsError: 3.24305e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01536e-01\tAbsError: 8.63291e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.34764e-10\tAbsError: 2.91532e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.57724e+01\tAbsError: 6.17521e+16\n", + " Region: \"zone_1\"\tRelError: 4.36300e+01\tAbsError: 8.24904e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.36300e+01\tAbsError: 8.24901e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.34612e-10\tAbsError: 2.91477e-07\n", + " Region: \"zone_3\"\tRelError: 2.14240e+00\tAbsError: 6.17521e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.57500e-01\tAbsError: 3.39545e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.57380e-01\tAbsError: 2.77976e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27523e-01\tAbsError: 8.24901e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.34764e-10\tAbsError: 2.91532e-07\n", + "Iteration: 1\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.06635e+01\tAbsError: 9.16514e+15\n", + " Region: \"zone_1\"\tRelError: 6.22433e+00\tAbsError: 1.01472e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 6.22128e+00\tAbsError: 7.88323e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.04382e-03\tAbsError: 9.35890e-01\n", + " Region: \"zone_3\"\tRelError: 4.43913e+00\tAbsError: 9.16514e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.50161e-01\tAbsError: 4.54099e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.89662e-01\tAbsError: 4.62415e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49626e+00\tAbsError: 7.88326e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.04382e-03\tAbsError: 9.35890e-01\n", + " Device: \"device\"\tRelError: 7.95306e+00\tAbsError: 6.72739e+15\n", + " Region: \"zone_1\"\tRelError: 2.68593e+00\tAbsError: 8.74792e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.68333e+00\tAbsError: 7.38271e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.60386e-03\tAbsError: 8.00965e-01\n", + " Region: \"zone_3\"\tRelError: 5.26713e+00\tAbsError: 6.72739e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.39622e-01\tAbsError: 3.29897e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.85310e-01\tAbsError: 3.42842e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.33959e+00\tAbsError: 7.38275e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.60386e-03\tAbsError: 8.00965e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.67391e+01\tAbsError: 8.03123e+15\n", + " Region: \"zone_1\"\tRelError: 1.20155e+01\tAbsError: 9.51459e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20126e+01\tAbsError: 7.64453e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.84527e-03\tAbsError: 8.75013e-01\n", + " Region: \"zone_3\"\tRelError: 4.72366e+00\tAbsError: 8.03123e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.45371e-01\tAbsError: 4.01792e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.87771e-01\tAbsError: 4.01330e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78767e+00\tAbsError: 7.64457e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.84527e-03\tAbsError: 8.75013e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.79911e+01\tAbsError: 1.10623e+16\n", + " Region: \"zone_1\"\tRelError: 2.39041e+01\tAbsError: 1.13895e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39006e+01\tAbsError: 8.30522e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.43547e-03\tAbsError: 1.05590e+00\n", + " Region: \"zone_3\"\tRelError: 4.08706e+00\tAbsError: 1.10623e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.57680e-01\tAbsError: 5.14916e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.92335e-01\tAbsError: 5.91319e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13361e+00\tAbsError: 8.30525e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.43547e-03\tAbsError: 1.05590e+00\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 8.03780e+00\tAbsError: 9.78562e+15\n", + " Region: \"zone_1\"\tRelError: 3.77504e+00\tAbsError: 1.06894e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.77182e+00\tAbsError: 8.10249e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.21358e-03\tAbsError: 9.87918e-01\n", + " Region: \"zone_3\"\tRelError: 4.26277e+00\tAbsError: 9.78562e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.54260e-01\tAbsError: 4.52831e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.91143e-01\tAbsError: 5.25731e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31415e+00\tAbsError: 8.10253e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.21358e-03\tAbsError: 9.87918e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.54096e+01\tAbsError: 4.43944e+15\n", + " Region: \"zone_1\"\tRelError: 3.90633e+00\tAbsError: 4.67822e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.90506e+00\tAbsError: 7.47719e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27120e-03\tAbsError: 3.93050e-01\n", + " Region: \"zone_3\"\tRelError: 1.15032e+01\tAbsError: 4.43944e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.38731e-01\tAbsError: 2.58270e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.86022e-01\tAbsError: 1.85673e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.57721e+00\tAbsError: 7.47720e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27121e-03\tAbsError: 3.93138e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 4.09526e+01\tAbsError: 3.17244e+15\n", + " Region: \"zone_1\"\tRelError: 9.37088e+00\tAbsError: 3.97453e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.36982e+00\tAbsError: 6.91614e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05879e-03\tAbsError: 3.28292e-01\n", + " Region: \"zone_3\"\tRelError: 3.15817e+01\tAbsError: 3.17244e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.24452e-01\tAbsError: 1.89495e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.77975e-01\tAbsError: 1.27749e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96782e+01\tAbsError: 6.91614e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05881e-03\tAbsError: 3.28364e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.39249e+01\tAbsError: 3.79502e+15\n", + " Region: \"zone_1\"\tRelError: 1.91132e+01\tAbsError: 4.39246e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91120e+01\tAbsError: 7.21051e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18721e-03\tAbsError: 3.67141e-01\n", + " Region: \"zone_3\"\tRelError: 1.48117e+01\tAbsError: 3.79502e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.32330e-01\tAbsError: 2.23540e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.82570e-01\tAbsError: 1.55962e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28956e+01\tAbsError: 7.21051e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18722e-03\tAbsError: 3.67223e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.96488e+01\tAbsError: 5.09735e+15\n", + " Region: \"zone_1\"\tRelError: 1.95639e+01\tAbsError: 4.88921e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95625e+01\tAbsError: 7.72079e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33059e-03\tAbsError: 4.11713e-01\n", + " Region: \"zone_3\"\tRelError: 1.00849e+01\tAbsError: 5.09735e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.44346e-01\tAbsError: 2.93405e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.88204e-01\tAbsError: 2.16331e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.15101e+00\tAbsError: 7.72079e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33061e-03\tAbsError: 4.11804e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.35802e+01\tAbsError: 5.76645e+15\n", + " Region: \"zone_1\"\tRelError: 4.98396e+00\tAbsError: 5.28936e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.98250e+00\tAbsError: 7.94487e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45586e-03\tAbsError: 4.49488e-01\n", + " Region: \"zone_3\"\tRelError: 8.59625e+00\tAbsError: 5.76645e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.48778e-01\tAbsError: 3.29946e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.90208e-01\tAbsError: 2.46699e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.65581e+00\tAbsError: 7.94487e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45588e-03\tAbsError: 4.49528e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 9.47761e+00\tAbsError: 9.96743e+14\n", + " Region: \"zone_1\"\tRelError: 3.71067e+00\tAbsError: 4.19844e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.70952e+00\tAbsError: 6.38688e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14384e-03\tAbsError: 3.55975e-01\n", + " Region: \"zone_3\"\tRelError: 5.76694e+00\tAbsError: 9.96743e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.09230e-01\tAbsError: 5.22578e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.56861e-01\tAbsError: 4.74164e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.89970e+00\tAbsError: 6.38689e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14402e-03\tAbsError: 3.56041e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.58481e+00\tAbsError: 1.69990e+15\n", + " Region: \"zone_1\"\tRelError: 1.68476e+00\tAbsError: 4.78667e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68345e+00\tAbsError: 7.02286e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31281e-03\tAbsError: 4.08439e-01\n", + " Region: \"zone_3\"\tRelError: 5.90004e+00\tAbsError: 1.69990e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.28939e-01\tAbsError: 1.07494e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.73921e-01\tAbsError: 6.24953e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.99587e+00\tAbsError: 7.02286e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31302e-03\tAbsError: 4.08513e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.53299e+00\tAbsError: 1.35750e+15\n", + " Region: \"zone_1\"\tRelError: 1.73227e+00\tAbsError: 4.54913e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73102e+00\tAbsError: 6.72172e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24597e-03\tAbsError: 3.87696e-01\n", + " Region: \"zone_3\"\tRelError: 5.80072e+00\tAbsError: 1.35750e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.20330e-01\tAbsError: 8.03903e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.66611e-01\tAbsError: 5.53592e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.91254e+00\tAbsError: 6.72172e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24616e-03\tAbsError: 3.87767e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.98641e+01\tAbsError: 2.82532e+15\n", + " Region: \"zone_1\"\tRelError: 3.38101e+01\tAbsError: 5.24855e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.38086e+01\tAbsError: 7.54605e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44482e-03\tAbsError: 4.49395e-01\n", + " Region: \"zone_3\"\tRelError: 6.05397e+00\tAbsError: 2.82532e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.42236e-01\tAbsError: 2.04401e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.83470e-01\tAbsError: 7.81312e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.12682e+00\tAbsError: 7.54605e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44504e-03\tAbsError: 4.49475e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.29200e+01\tAbsError: 2.18560e+15\n", + " Region: \"zone_1\"\tRelError: 6.90916e+00\tAbsError: 4.96901e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.90779e+00\tAbsError: 7.29614e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36280e-03\tAbsError: 4.23940e-01\n", + " Region: \"zone_3\"\tRelError: 6.01087e+00\tAbsError: 2.18560e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.36405e-01\tAbsError: 1.49501e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.79309e-01\tAbsError: 6.90584e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.09379e+00\tAbsError: 7.29614e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36301e-03\tAbsError: 4.24017e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.68163e+01\tAbsError: 1.07569e+15\n", + " Region: \"zone_1\"\tRelError: 2.89140e+00\tAbsError: 3.35655e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.89053e+00\tAbsError: 6.50831e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.68923e-04\tAbsError: 2.70572e-01\n", + " Region: \"zone_3\"\tRelError: 2.39249e+01\tAbsError: 1.07569e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.12072e-01\tAbsError: 6.96907e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.51030e-01\tAbsError: 3.78787e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20609e+01\tAbsError: 6.50831e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.69052e-04\tAbsError: 2.70619e-01\n", + "Iteration: 4\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.34599e+02\tAbsError: 6.48008e+14\n", + " Region: \"zone_1\"\tRelError: 7.53667e+00\tAbsError: 3.13815e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.53587e+00\tAbsError: 6.16405e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.09774e-04\tAbsError: 2.52174e-01\n", + " Region: \"zone_3\"\tRelError: 2.27062e+02\tAbsError: 6.48008e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.99886e-01\tAbsError: 3.96203e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.33396e-01\tAbsError: 2.51805e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25228e+02\tAbsError: 6.16405e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.09894e-04\tAbsError: 2.52218e-01\n", + " Device: \"device\"\tRelError: 2.56811e+01\tAbsError: 4.33813e+14\n", + " Region: \"zone_1\"\tRelError: 1.11232e+01\tAbsError: 2.83637e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11225e+01\tAbsError: 5.77812e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.25204e-04\tAbsError: 2.25856e-01\n", + " Region: \"zone_3\"\tRelError: 1.45579e+01\tAbsError: 4.33813e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.83774e-01\tAbsError: 2.50441e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.08258e-01\tAbsError: 1.83372e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27651e+01\tAbsError: 5.77812e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.25311e-04\tAbsError: 2.25895e-01\n", + "Iteration: 4\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.14068e+01\tAbsError: 2.61637e+15\n", + " Region: \"zone_1\"\tRelError: 1.85239e+00\tAbsError: 3.83343e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85139e+00\tAbsError: 7.10004e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00319e-03\tAbsError: 3.12343e-01\n", + " Region: \"zone_3\"\tRelError: 9.55441e+00\tAbsError: 2.61637e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.30033e-01\tAbsError: 1.81140e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.71657e-01\tAbsError: 8.04968e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.65172e+00\tAbsError: 7.10004e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00334e-03\tAbsError: 3.12398e-01\n", + " Device: \"device\"\tRelError: 1.57671e+01\tAbsError: 1.71082e+15\n", + " Region: \"zone_1\"\tRelError: 2.23245e+00\tAbsError: 3.55050e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23152e+00\tAbsError: 6.81839e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.21311e-04\tAbsError: 2.86866e-01\n", + " Region: \"zone_3\"\tRelError: 1.35347e+01\tAbsError: 1.71082e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.22065e-01\tAbsError: 1.15135e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.62846e-01\tAbsError: 5.59467e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16488e+01\tAbsError: 6.81839e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.21449e-04\tAbsError: 2.86916e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.08636e+02\tAbsError: 8.97861e+14\n", + " Region: \"zone_1\"\tRelError: 1.92112e+00\tAbsError: 2.83272e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92040e+00\tAbsError: 5.91870e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.20151e-04\tAbsError: 2.24085e-01\n", + " Region: \"zone_3\"\tRelError: 1.06715e+02\tAbsError: 8.97861e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.91997e-01\tAbsError: 5.30556e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.91252e-01\tAbsError: 3.67305e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04931e+02\tAbsError: 5.91871e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.20258e-04\tAbsError: 2.24124e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.78485e+01\tAbsError: 2.60817e+14\n", + " Region: \"zone_1\"\tRelError: 1.58907e+00\tAbsError: 2.48384e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58843e+00\tAbsError: 5.06862e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.35193e-04\tAbsError: 1.97697e-01\n", + " Region: \"zone_3\"\tRelError: 7.62594e+01\tAbsError: 2.60817e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.49955e-01\tAbsError: 1.62391e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.87627e-01\tAbsError: 9.84259e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.46212e+01\tAbsError: 5.06863e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.35288e-04\tAbsError: 1.97732e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.95369e+02\tAbsError: 4.25923e+14\n", + " Region: \"zone_1\"\tRelError: 1.66664e+00\tAbsError: 2.69675e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66595e+00\tAbsError: 5.51975e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.89198e-04\tAbsError: 2.14477e-01\n", + " Region: \"zone_3\"\tRelError: 1.93702e+02\tAbsError: 4.25923e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.73950e-01\tAbsError: 2.31263e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.49777e-01\tAbsError: 1.94660e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91978e+02\tAbsError: 5.51976e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.89301e-04\tAbsError: 2.14515e-01\n", + "Iteration: 5\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.20489e+02\tAbsError: 3.24867e+15\n", + " Region: \"zone_1\"\tRelError: 3.63046e+00\tAbsError: 3.09183e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.62968e+00\tAbsError: 6.59632e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.81785e-04\tAbsError: 2.43219e-01\n", + " Region: \"zone_3\"\tRelError: 1.16858e+02\tAbsError: 3.24867e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.16923e-01\tAbsError: 2.08511e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.39808e-01\tAbsError: 1.16356e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15001e+02\tAbsError: 6.59633e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.81898e-04\tAbsError: 2.43261e-01\n", + " Device: \"device\"\tRelError: 8.82964e+01\tAbsError: 1.73339e+15\n", + " Region: \"zone_1\"\tRelError: 1.73059e+01\tAbsError: 2.94256e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73051e+01\tAbsError: 6.27509e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.44066e-04\tAbsError: 2.31505e-01\n", + " Region: \"zone_3\"\tRelError: 7.09905e+01\tAbsError: 1.73339e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.05771e-01\tAbsError: 1.06591e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.19629e-01\tAbsError: 6.67478e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.91644e+01\tAbsError: 6.27509e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.44175e-04\tAbsError: 2.31545e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 9.97004e+00\tAbsError: 1.00821e+15\n", + " Region: \"zone_1\"\tRelError: 3.04086e+00\tAbsError: 2.13314e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.04034e+00\tAbsError: 5.23314e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.17089e-04\tAbsError: 1.60983e-01\n", + " Region: \"zone_3\"\tRelError: 6.92918e+00\tAbsError: 1.00821e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.59024e-01\tAbsError: 6.30085e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.24447e-01\tAbsError: 3.78129e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.34519e+00\tAbsError: 5.23315e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.17164e-04\tAbsError: 1.61010e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.22786e+01\tAbsError: 4.06329e+14\n", + " Region: \"zone_1\"\tRelError: 7.13413e+00\tAbsError: 1.95058e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.13366e+00\tAbsError: 4.76427e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73478e-04\tAbsError: 1.47415e-01\n", + " Region: \"zone_3\"\tRelError: 5.14448e+00\tAbsError: 4.06329e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.30844e-01\tAbsError: 2.10086e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.34047e-01\tAbsError: 1.96243e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.67912e+00\tAbsError: 4.76427e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73546e-04\tAbsError: 1.47440e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.41754e+01\tAbsError: 2.15722e+14\n", + " Region: \"zone_1\"\tRelError: 1.03512e+01\tAbsError: 1.73139e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03507e+01\tAbsError: 4.23027e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.20194e-04\tAbsError: 1.30836e-01\n", + " Region: \"zone_3\"\tRelError: 3.82426e+00\tAbsError: 2.15722e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.92723e-01\tAbsError: 9.83873e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.00857e-01\tAbsError: 1.17335e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.53026e+00\tAbsError: 4.23027e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.20253e-04\tAbsError: 1.30858e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.22399e+01\tAbsError: 2.37913e+15\n", + " Region: \"zone_1\"\tRelError: 2.04058e+00\tAbsError: 2.31218e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04002e+00\tAbsError: 5.64856e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.61280e-04\tAbsError: 1.74732e-01\n", + " Region: \"zone_3\"\tRelError: 1.01993e+01\tAbsError: 2.37913e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.79756e-01\tAbsError: 1.43897e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.75292e-01\tAbsError: 9.40164e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.54370e+00\tAbsError: 5.64856e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.61364e-04\tAbsError: 1.74763e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.99848e+01\tAbsError: 4.66640e+15\n", + " Region: \"zone_1\"\tRelError: 2.68413e+01\tAbsError: 2.52964e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.68407e+01\tAbsError: 6.01992e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.19225e-04\tAbsError: 1.92765e-01\n", + " Region: \"zone_3\"\tRelError: 2.31435e+01\tAbsError: 4.66640e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.96165e-01\tAbsError: 2.56895e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.01087e-01\tAbsError: 2.09746e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.14456e+01\tAbsError: 6.01993e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.19319e-04\tAbsError: 1.92799e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.87834e+00\tAbsError: 7.30518e+14\n", + " Region: \"zone_1\"\tRelError: 1.73662e+00\tAbsError: 1.78165e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73619e+00\tAbsError: 4.42566e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.30310e-04\tAbsError: 1.33909e-01\n", + " Region: \"zone_3\"\tRelError: 4.14172e+00\tAbsError: 7.30518e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09980e-01\tAbsError: 3.62892e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.61559e-01\tAbsError: 3.67626e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96976e+00\tAbsError: 4.42566e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.30375e-04\tAbsError: 1.33933e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.11846e+00\tAbsError: 2.91962e+14\n", + " Region: \"zone_1\"\tRelError: 1.22878e+00\tAbsError: 1.67069e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22837e+00\tAbsError: 3.86903e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.12505e-04\tAbsError: 1.28379e-01\n", + " Region: \"zone_3\"\tRelError: 3.88968e+00\tAbsError: 2.91962e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.64246e-01\tAbsError: 1.71496e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.50391e-01\tAbsError: 1.20466e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.87463e+00\tAbsError: 3.86903e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.12569e-04\tAbsError: 1.28402e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 6.96361e+00\tAbsError: 1.73655e+15\n", + " Region: \"zone_1\"\tRelError: 2.52771e+00\tAbsError: 1.90337e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52726e+00\tAbsError: 4.91631e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.53691e-04\tAbsError: 1.41174e-01\n", + " Region: \"zone_3\"\tRelError: 4.43589e+00\tAbsError: 1.73655e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.42556e-01\tAbsError: 8.96657e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.11217e-01\tAbsError: 8.39898e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.18167e+00\tAbsError: 4.91631e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.53760e-04\tAbsError: 1.41200e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.35991e+00\tAbsError: 1.28887e+14\n", + " Region: \"zone_1\"\tRelError: 8.85097e-01\tAbsError: 1.51362e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.84714e-01\tAbsError: 3.23559e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.82346e-04\tAbsError: 1.19006e-01\n", + " Region: \"zone_3\"\tRelError: 3.47481e+00\tAbsError: 1.28887e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.00128e-01\tAbsError: 8.88061e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11419e-01\tAbsError: 4.00807e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66288e+00\tAbsError: 3.23560e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.82406e-04\tAbsError: 1.19028e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 8.81113e+00\tAbsError: 3.40151e+15\n", + " Region: \"zone_1\"\tRelError: 3.70205e+00\tAbsError: 2.09904e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.70154e+00\tAbsError: 5.35171e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.02619e-04\tAbsError: 1.56387e-01\n", + " Region: \"zone_3\"\tRelError: 5.10908e+00\tAbsError: 3.40151e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.67206e-01\tAbsError: 1.89925e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.12136e-01\tAbsError: 1.50225e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.82924e+00\tAbsError: 5.35172e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.02697e-04\tAbsError: 1.56415e-01\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.84456e+00\tAbsError: 5.95167e+14\n", + " Region: \"zone_1\"\tRelError: 4.44452e+00\tAbsError: 1.15845e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44425e+00\tAbsError: 3.46660e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.60797e-04\tAbsError: 8.11790e-02\n", + " Region: \"zone_3\"\tRelError: 2.40004e+00\tAbsError: 5.95167e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.24823e-01\tAbsError: 3.25317e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.66838e-01\tAbsError: 2.69851e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50812e+00\tAbsError: 3.46661e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.60832e-04\tAbsError: 8.11917e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.99977e+01\tAbsError: 1.48336e+14\n", + " Region: \"zone_1\"\tRelError: 1.79537e+01\tAbsError: 1.06056e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79535e+01\tAbsError: 2.81078e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.50401e-04\tAbsError: 7.79486e-02\n", + " Region: \"zone_3\"\tRelError: 2.04398e+00\tAbsError: 1.48336e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.46310e-01\tAbsError: 7.12461e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.68153e-02\tAbsError: 7.70897e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32060e+00\tAbsError: 2.81079e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.50435e-04\tAbsError: 7.79610e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.91172e+00\tAbsError: 1.22545e+14\n", + " Region: \"zone_1\"\tRelError: 2.29525e+00\tAbsError: 9.57381e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29503e+00\tAbsError: 2.58499e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24489e-04\tAbsError: 6.98883e-02\n", + " Region: \"zone_3\"\tRelError: 1.61647e+00\tAbsError: 1.22545e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.35611e-01\tAbsError: 6.80350e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.39975e-02\tAbsError: 5.45101e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06664e+00\tAbsError: 2.52404e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24519e-04\tAbsError: 6.98993e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 5.00053e+00\tAbsError: 1.81567e+15\n", + " Region: \"zone_1\"\tRelError: 2.23053e+00\tAbsError: 1.23237e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23026e+00\tAbsError: 4.04944e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.65838e-04\tAbsError: 8.27425e-02\n", + " Region: \"zone_3\"\tRelError: 2.77000e+00\tAbsError: 1.81567e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.79217e-01\tAbsError: 1.00611e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.86741e-01\tAbsError: 8.09562e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70378e+00\tAbsError: 4.04944e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.65873e-04\tAbsError: 8.27552e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 6.27263e+00\tAbsError: 4.31749e+15\n", + " Region: \"zone_1\"\tRelError: 3.00195e+00\tAbsError: 1.30504e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.00168e+00\tAbsError: 4.56581e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.72617e-04\tAbsError: 8.48462e-02\n", + " Region: \"zone_3\"\tRelError: 3.27068e+00\tAbsError: 4.31749e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.18981e-01\tAbsError: 2.42923e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.04620e-01\tAbsError: 1.88827e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04680e+00\tAbsError: 4.56582e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.72651e-04\tAbsError: 8.48588e-02\n", "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.15775e-02\tAbsError: 6.52841e+12\n", - " Region: \"zone_1\"\tRelError: 3.74768e-03\tAbsError: 8.41878e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.74744e-03\tAbsError: 2.54753e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.41414e-07\tAbsError: 8.39331e-05\n", - " Region: \"zone_3\"\tRelError: 1.78298e-02\tAbsError: 6.52841e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.81966e-06\tAbsError: 3.25375e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.17497e-06\tAbsError: 3.27466e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.78136e-02\tAbsError: 2.56699e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.41425e-07\tAbsError: 8.39331e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:42\u001b[0m.\u001b[1;36m083\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 2.34511e+00\tAbsError: 5.09621e+14\n", - " Region: \"zone_1\"\tRelError: 5.20380e-02\tAbsError: 1.31206e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.17648e-02\tAbsError: 3.62022e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.73274e-04\tAbsError: 9.50040e-02\n", - " Region: \"zone_3\"\tRelError: 2.29307e+00\tAbsError: 5.09621e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98977e-01\tAbsError: 4.50759e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.24154e+00\tAbsError: 4.64545e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.22861e-02\tAbsError: 3.63670e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.74013e-04\tAbsError: 9.52636e-02\n", + " Device: \"device\"\tRelError: 3.21904e+00\tAbsError: 4.58355e+14\n", + " Region: \"zone_1\"\tRelError: 1.44534e+00\tAbsError: 1.11446e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44507e+00\tAbsError: 2.58771e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.74975e-04\tAbsError: 8.55687e-02\n", + " Region: \"zone_3\"\tRelError: 1.77369e+00\tAbsError: 4.58355e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.80701e-01\tAbsError: 2.53655e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.57762e-01\tAbsError: 2.04700e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03495e+00\tAbsError: 2.57933e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75021e-04\tAbsError: 8.55852e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.45507e+00\tAbsError: 8.79796e+13\n", + " Region: \"zone_1\"\tRelError: 9.29646e-01\tAbsError: 1.04114e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.29385e-01\tAbsError: 2.26662e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.61711e-04\tAbsError: 8.14482e-02\n", + " Region: \"zone_3\"\tRelError: 1.52543e+00\tAbsError: 8.79796e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.50446e-01\tAbsError: 5.10010e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.73444e-02\tAbsError: 3.69785e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02738e+00\tAbsError: 2.26664e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.61754e-04\tAbsError: 8.14637e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.92871e+00\tAbsError: 5.57079e+13\n", + " Region: \"zone_1\"\tRelError: 6.29227e-01\tAbsError: 8.95670e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.28975e-01\tAbsError: 1.12111e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.51752e-04\tAbsError: 7.83560e-02\n", + " Region: \"zone_3\"\tRelError: 1.29948e+00\tAbsError: 5.57079e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88311e-01\tAbsError: 3.36185e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.00381e-02\tAbsError: 2.20894e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00088e+00\tAbsError: 1.12112e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.51794e-04\tAbsError: 7.83715e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.17115e+01\tAbsError: 5.14884e+15\n", + " Region: \"zone_1\"\tRelError: 9.34892e+00\tAbsError: 1.44420e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.34857e+00\tAbsError: 3.63321e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47414e-04\tAbsError: 1.08087e-01\n", + " Region: \"zone_3\"\tRelError: 2.36260e+00\tAbsError: 5.14884e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.41461e-01\tAbsError: 2.96945e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.39532e-01\tAbsError: 2.17939e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18126e+00\tAbsError: 3.63321e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47474e-04\tAbsError: 1.08110e-01\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 4.69996e+00\tAbsError: 1.76407e+15\n", + " Region: \"zone_1\"\tRelError: 2.65983e+00\tAbsError: 1.22391e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.65953e+00\tAbsError: 3.02242e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.96204e-04\tAbsError: 9.21666e-02\n", + " Region: \"zone_3\"\tRelError: 2.04013e+00\tAbsError: 1.76407e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.74562e-01\tAbsError: 1.01300e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.05335e-01\tAbsError: 7.51073e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05994e+00\tAbsError: 3.02243e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.96254e-04\tAbsError: 9.21847e-02\n", "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.60801e-03\tAbsError: 6.28400e+11\n", - " Region: \"zone_1\"\tRelError: 4.80017e-04\tAbsError: 4.99622e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.79873e-04\tAbsError: 2.63411e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43739e-07\tAbsError: 4.99359e-05\n", - " Region: \"zone_3\"\tRelError: 2.12799e-03\tAbsError: 6.28400e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.51440e-06\tAbsError: 3.13250e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.43803e-06\tAbsError: 3.15151e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.12490e-03\tAbsError: 2.65357e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43764e-07\tAbsError: 4.99433e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.07403e-01\tAbsError: 3.15404e+12\n", - " Region: \"zone_1\"\tRelError: 1.75397e-02\tAbsError: 1.36790e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.75306e-02\tAbsError: 1.05213e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.08309e-06\tAbsError: 3.15769e-03\n", - " Region: \"zone_3\"\tRelError: 2.89863e-01\tAbsError: 3.15404e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16679e-01\tAbsError: 1.94159e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.54178e-02\tAbsError: 1.21245e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77577e-02\tAbsError: 1.05213e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.08653e-06\tAbsError: 3.15894e-03\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 8.34610e+03\tAbsError: 1.92933e+18\n", - " Region: \"zone_1\"\tRelError: 4.26264e+03\tAbsError: 4.19628e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.26264e+03\tAbsError: 4.19625e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.03425e-09\tAbsError: 3.59742e-07\n", - " Region: \"zone_3\"\tRelError: 4.08345e+03\tAbsError: 1.92933e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41966e-01\tAbsError: 9.61208e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.20078e-01\tAbsError: 9.68119e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 4.08219e+03\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.03467e-09\tAbsError: 3.59900e-07\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 3.52788e+03\tAbsError: 4.32630e+14\n", - " Region: \"zone_1\"\tRelError: 4.01861e-02\tAbsError: 1.26360e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.98969e-02\tAbsError: 2.58372e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.89232e-04\tAbsError: 1.00523e-01\n", - " Region: \"zone_3\"\tRelError: 3.52784e+03\tAbsError: 4.32630e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.52743e+03\tAbsError: 2.30095e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.69800e-01\tAbsError: 4.09620e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.98969e-02\tAbsError: 2.58297e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.89995e-04\tAbsError: 1.00791e-01\n", + " Device: \"device\"\tRelError: 8.86560e+00\tAbsError: 2.46069e+14\n", + " Region: \"zone_1\"\tRelError: 7.74231e+00\tAbsError: 4.89101e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.74220e+00\tAbsError: 1.47291e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09829e-04\tAbsError: 3.41811e-02\n", + " Region: \"zone_3\"\tRelError: 1.12329e+00\tAbsError: 2.46069e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.41015e-01\tAbsError: 1.51564e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.67750e-02\tAbsError: 9.45047e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.15390e-01\tAbsError: 1.47292e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09842e-04\tAbsError: 3.41857e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.79203e+00\tAbsError: 9.06699e+13\n", + " Region: \"zone_1\"\tRelError: 2.01216e+00\tAbsError: 2.05084e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01209e+00\tAbsError: 1.51610e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.54059e-05\tAbsError: 2.03568e-02\n", + " Region: \"zone_3\"\tRelError: 7.79871e-01\tAbsError: 9.06699e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.30029e-01\tAbsError: 5.48870e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.65757e-03\tAbsError: 3.57829e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.43119e-01\tAbsError: 1.57547e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.54127e-05\tAbsError: 2.03589e-02\n", + "Iteration: 10\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.70237e+00\tAbsError: 8.47519e+13\n", + " Region: \"zone_1\"\tRelError: 1.03653e+00\tAbsError: 3.09722e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03643e+00\tAbsError: 4.90882e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.93437e-05\tAbsError: 3.09231e-02\n", + " Region: \"zone_3\"\tRelError: 6.65844e-01\tAbsError: 8.47519e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.69885e-02\tAbsError: 4.46393e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.47815e-03\tAbsError: 4.01126e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.64278e-01\tAbsError: 5.09640e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.93553e-05\tAbsError: 3.09273e-02\n", + " Device: \"device\"\tRelError: 3.34374e+00\tAbsError: 1.19166e+15\n", + " Region: \"zone_1\"\tRelError: 1.82215e+00\tAbsError: 6.05123e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82204e+00\tAbsError: 2.58724e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11313e-04\tAbsError: 3.46400e-02\n", + " Region: \"zone_3\"\tRelError: 1.52159e+00\tAbsError: 1.19166e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.90775e-01\tAbsError: 6.87859e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.00650e-01\tAbsError: 5.03803e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.30053e-01\tAbsError: 2.58957e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11326e-04\tAbsError: 3.46446e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.18811e+00\tAbsError: 4.65240e+15\n", + " Region: \"zone_1\"\tRelError: 1.16582e+00\tAbsError: 5.67917e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16572e+00\tAbsError: 2.54064e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00868e-04\tAbsError: 3.13854e-02\n", + " Region: \"zone_3\"\tRelError: 2.02229e+00\tAbsError: 4.65240e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.06019e-01\tAbsError: 2.72656e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.54855e-01\tAbsError: 1.92584e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06131e+00\tAbsError: 2.57881e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00879e-04\tAbsError: 3.13893e-02\n", "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.13819e-03\tAbsError: 3.64637e+11\n", - " Region: \"zone_1\"\tRelError: 2.54157e-04\tAbsError: 7.12832e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.54137e-04\tAbsError: 1.24280e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.04405e-08\tAbsError: 7.11590e-06\n", - " Region: \"zone_3\"\tRelError: 8.84029e-04\tAbsError: 3.64637e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46080e-07\tAbsError: 1.81784e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.16766e-07\tAbsError: 1.82853e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 8.83046e-04\tAbsError: 1.25227e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.04481e-08\tAbsError: 7.11864e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.87045e-02\tAbsError: 2.59902e+12\n", - " Region: \"zone_1\"\tRelError: 9.55560e-04\tAbsError: 2.51710e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 9.48317e-04\tAbsError: 1.56340e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.24331e-06\tAbsError: 2.51554e-03\n", - " Region: \"zone_3\"\tRelError: 6.77490e-02\tAbsError: 2.59902e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.52595e-02\tAbsError: 1.62510e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.16575e-04\tAbsError: 9.73920e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.36568e-03\tAbsError: 1.63021e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.24331e-06\tAbsError: 2.51554e-03\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 1.05564e+00\tAbsError: 3.23529e+14\n", - " Region: \"zone_1\"\tRelError: 2.30958e-02\tAbsError: 1.15810e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.28120e-02\tAbsError: 1.72033e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.83799e-04\tAbsError: 9.86067e-02\n", - " Region: \"zone_3\"\tRelError: 1.03254e+00\tAbsError: 3.23529e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99080e-01\tAbsError: 2.28336e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.47263e-03\tAbsError: 3.00696e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.37034e-02\tAbsError: 1.75137e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.84528e-04\tAbsError: 9.88623e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.65476e+02\tAbsError: 5.59439e+17\n", - " Region: \"zone_1\"\tRelError: 2.09387e+02\tAbsError: 1.61986e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 2.09383e+02\tAbsError: 3.19517e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.55078e-03\tAbsError: 1.58791e+00\n", - " Region: \"zone_3\"\tRelError: 5.60883e+01\tAbsError: 5.59439e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.38234e-01\tAbsError: 2.80542e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.36773e-01\tAbsError: 2.78897e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 5.54088e+01\tAbsError: 3.19525e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.55115e-03\tAbsError: 1.58798e+00\n", + " Device: \"device\"\tRelError: 1.86690e+00\tAbsError: 6.50246e+13\n", + " Region: \"zone_1\"\tRelError: 1.20681e+00\tAbsError: 7.86357e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20656e+00\tAbsError: 1.69173e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58773e-04\tAbsError: 7.84665e-02\n", + " Region: \"zone_3\"\tRelError: 6.60082e-01\tAbsError: 6.50246e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33131e-01\tAbsError: 3.88382e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.17352e-02\tAbsError: 2.61864e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.14956e-01\tAbsError: 1.70837e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58882e-04\tAbsError: 7.84669e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 7.29569e-01\tAbsError: 1.77896e+13\n", + " Region: \"zone_1\"\tRelError: 4.80107e-01\tAbsError: 3.48410e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.79995e-01\tAbsError: 1.03751e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11924e-04\tAbsError: 3.48306e-02\n", + " Region: \"zone_3\"\tRelError: 2.49462e-01\tAbsError: 1.77896e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.40254e-03\tAbsError: 8.69658e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.45212e-03\tAbsError: 9.09298e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41496e-01\tAbsError: 1.04300e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11941e-04\tAbsError: 3.48369e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 7.33567e-01\tAbsError: 2.00225e+13\n", + " Region: \"zone_1\"\tRelError: 3.75063e-01\tAbsError: 3.94481e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74936e-01\tAbsError: 1.87194e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26687e-04\tAbsError: 3.94294e-02\n", + " Region: \"zone_3\"\tRelError: 3.58504e-01\tAbsError: 2.00225e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.14232e-03\tAbsError: 1.48018e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.03823e-03\tAbsError: 5.22071e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.49197e-01\tAbsError: 1.93045e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26707e-04\tAbsError: 3.94367e-02\n", + "Iteration: 11\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.42051e+00\tAbsError: 5.97183e+14\n", + " Region: \"zone_1\"\tRelError: 9.50816e-01\tAbsError: 5.66339e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.50659e-01\tAbsError: 8.53734e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57212e-04\tAbsError: 4.80966e-02\n", + " Region: \"zone_3\"\tRelError: 4.69694e-01\tAbsError: 5.97183e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.56052e-01\tAbsError: 2.82879e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.45250e-02\tAbsError: 3.14305e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48960e-01\tAbsError: 8.53742e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57212e-04\tAbsError: 4.80966e-02\n", + " Device: \"device\"\tRelError: 2.35776e+01\tAbsError: 2.82027e+15\n", + " Region: \"zone_1\"\tRelError: 2.22433e+01\tAbsError: 1.50337e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.22429e+01\tAbsError: 1.77246e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.33203e-04\tAbsError: 1.32613e-01\n", + " Region: \"zone_3\"\tRelError: 1.33429e+00\tAbsError: 2.82027e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.79026e-01\tAbsError: 1.59034e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.97149e-01\tAbsError: 1.22993e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.57683e-01\tAbsError: 1.77248e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.33327e-04\tAbsError: 1.32651e-01\n", "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.81704e-04\tAbsError: 5.07534e+10\n", - " Region: \"zone_1\"\tRelError: 4.22123e-05\tAbsError: 3.15701e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.22032e-05\tAbsError: 1.92390e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.06297e-09\tAbsError: 3.15509e-06\n", - " Region: \"zone_3\"\tRelError: 1.39492e-04\tAbsError: 5.07534e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.09178e-08\tAbsError: 2.53054e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.11487e-07\tAbsError: 2.54481e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39280e-04\tAbsError: 1.94322e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.06645e-09\tAbsError: 3.15634e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.67688e-04\tAbsError: 1.23705e+12\n", - " Region: \"zone_1\"\tRelError: 1.68013e-04\tAbsError: 1.19594e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.67674e-04\tAbsError: 1.77521e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.38451e-07\tAbsError: 1.17819e-04\n", - " Region: \"zone_3\"\tRelError: 7.99675e-04\tAbsError: 1.23705e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54849e-04\tAbsError: 3.36529e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.54324e-04\tAbsError: 9.00523e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.90164e-04\tAbsError: 1.77541e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.38603e-07\tAbsError: 1.17875e-04\n", - "Iteration: 15\n", - " Device: \"device\"\tRelError: 3.12813e-01\tAbsError: 1.66549e+14\n", - " Region: \"zone_1\"\tRelError: 4.25373e-03\tAbsError: 1.24404e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 3.89579e-03\tAbsError: 8.19650e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.57939e-04\tAbsError: 1.24322e-01\n", - " Region: \"zone_3\"\tRelError: 3.08559e-01\tAbsError: 1.66549e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.97543e-01\tAbsError: 2.07326e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.99228e-03\tAbsError: 1.45816e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.66473e-03\tAbsError: 8.31001e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.58829e-04\tAbsError: 1.24634e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.87295e+01\tAbsError: 5.78845e+16\n", - " Region: \"zone_1\"\tRelError: 1.56484e+00\tAbsError: 2.87198e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55673e+00\tAbsError: 2.57917e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.10568e-03\tAbsError: 2.84619e+00\n", - " Region: \"zone_3\"\tRelError: 1.71646e+01\tAbsError: 5.78845e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.63325e-02\tAbsError: 2.90346e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.16626e-02\tAbsError: 2.88498e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.70185e+01\tAbsError: 2.58445e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.13005e-03\tAbsError: 2.85483e+00\n", + " Device: \"device\"\tRelError: 4.05082e+00\tAbsError: 8.82651e+13\n", + " Region: \"zone_1\"\tRelError: 3.23356e+00\tAbsError: 4.00249e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.23344e+00\tAbsError: 5.33433e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28448e-04\tAbsError: 3.99716e-02\n", + " Region: \"zone_3\"\tRelError: 8.17259e-01\tAbsError: 8.82651e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.66759e-03\tAbsError: 4.19539e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.62710e-03\tAbsError: 4.63112e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.05836e-01\tAbsError: 5.49241e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28468e-04\tAbsError: 3.99789e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.28825e+00\tAbsError: 3.42899e+13\n", + " Region: \"zone_1\"\tRelError: 1.00987e+00\tAbsError: 1.61525e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00982e+00\tAbsError: 2.09256e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.18341e-05\tAbsError: 1.61316e-02\n", + " Region: \"zone_3\"\tRelError: 2.78379e-01\tAbsError: 3.42899e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.29595e-03\tAbsError: 1.88485e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.28504e-03\tAbsError: 1.54415e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73746e-01\tAbsError: 2.17472e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.18412e-05\tAbsError: 1.61342e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 8.89982e-01\tAbsError: 3.98483e+13\n", + " Region: \"zone_1\"\tRelError: 5.67013e-01\tAbsError: 2.36892e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.66937e-01\tAbsError: 2.64352e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.60229e-05\tAbsError: 2.36628e-02\n", + " Region: \"zone_3\"\tRelError: 3.22969e-01\tAbsError: 3.98483e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.92606e-03\tAbsError: 2.10732e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.01615e-03\tAbsError: 1.87751e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.16951e-01\tAbsError: 2.64818e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.60341e-05\tAbsError: 2.36669e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.93287e+00\tAbsError: 7.02749e+14\n", + " Region: \"zone_1\"\tRelError: 9.52805e-01\tAbsError: 8.84726e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.52518e-01\tAbsError: 5.46059e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.87679e-04\tAbsError: 8.79266e-02\n", + " Region: \"zone_3\"\tRelError: 9.80063e-01\tAbsError: 7.02749e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50571e-01\tAbsError: 3.88950e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.56024e-02\tAbsError: 3.13799e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.93602e-01\tAbsError: 5.66770e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.87724e-04\tAbsError: 8.79366e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.37213e+00\tAbsError: 2.25314e+14\n", + " Region: \"zone_1\"\tRelError: 1.68004e+00\tAbsError: 1.90364e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67942e+00\tAbsError: 2.55826e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.21782e-04\tAbsError: 1.90108e-01\n", + " Region: \"zone_3\"\tRelError: 6.92085e-01\tAbsError: 2.25314e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.18337e-02\tAbsError: 2.70108e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.50739e-02\tAbsError: 1.98303e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.94556e-01\tAbsError: 2.65118e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.21786e-04\tAbsError: 1.90108e-01\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 2.14956e+00\tAbsError: 4.12757e+13\n", + " Region: \"zone_1\"\tRelError: 1.76316e+00\tAbsError: 4.55445e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76301e+00\tAbsError: 2.78228e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46288e-04\tAbsError: 4.55167e-02\n", + " Region: \"zone_3\"\tRelError: 3.86402e-01\tAbsError: 4.12757e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.45332e-03\tAbsError: 2.19931e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.82090e-03\tAbsError: 1.92826e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74982e-01\tAbsError: 2.88441e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46313e-04\tAbsError: 4.55256e-02\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 5.37466e-01\tAbsError: 1.42777e+13\n", + " Region: \"zone_1\"\tRelError: 3.87488e-01\tAbsError: 1.85709e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87428e-01\tAbsError: 1.07990e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.96409e-05\tAbsError: 1.85601e-02\n", + " Region: \"zone_3\"\tRelError: 1.49978e-01\tAbsError: 1.42777e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98239e-03\tAbsError: 8.35810e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.36763e-03\tAbsError: 5.91960e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45568e-01\tAbsError: 1.11987e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.96503e-05\tAbsError: 1.85635e-02\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 5.13425e-01\tAbsError: 2.29243e+13\n", + " Region: \"zone_1\"\tRelError: 2.88238e-01\tAbsError: 2.35901e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88162e-01\tAbsError: 1.57514e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.57446e-05\tAbsError: 2.35744e-02\n", + " Region: \"zone_3\"\tRelError: 2.25187e-01\tAbsError: 2.29243e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.59655e-03\tAbsError: 1.23876e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.00672e-03\tAbsError: 1.05366e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19508e-01\tAbsError: 1.63475e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.57567e-05\tAbsError: 2.35788e-02\n", "Iteration: 13\n", - " Device: \"device\"\tRelError: 6.62313e-05\tAbsError: 2.17613e+10\n", - " Region: \"zone_1\"\tRelError: 1.67469e-05\tAbsError: 5.67281e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.67453e-05\tAbsError: 7.83574e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62726e-09\tAbsError: 5.66497e-07\n", - " Region: \"zone_3\"\tRelError: 4.94844e-05\tAbsError: 2.17613e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.55855e-08\tAbsError: 1.08504e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.54124e-08\tAbsError: 1.09109e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.94217e-05\tAbsError: 7.91795e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.62789e-09\tAbsError: 5.66732e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:46\u001b[0m.\u001b[1;36m247\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 1.0899999999999999\u001b[0m\n", + " Device: \"device\"\tRelError: 3.57372e-01\tAbsError: 7.34800e+13\n", + " Region: \"zone_1\"\tRelError: 1.05543e-01\tAbsError: 3.18338e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05441e-01\tAbsError: 4.07870e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02240e-04\tAbsError: 3.17930e-02\n", + " Region: \"zone_3\"\tRelError: 2.51829e-01\tAbsError: 7.34800e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.10535e-03\tAbsError: 2.65151e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.08845e-03\tAbsError: 4.69649e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.43533e-01\tAbsError: 4.22412e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02256e-04\tAbsError: 3.17991e-02\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 3.71569e+00\tAbsError: 1.76722e+14\n", + " Region: \"zone_1\"\tRelError: 1.43644e+00\tAbsError: 6.79977e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43622e+00\tAbsError: 1.10548e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24028e-04\tAbsError: 6.78871e-02\n", + " Region: \"zone_3\"\tRelError: 2.27925e+00\tAbsError: 1.76722e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.11194e-02\tAbsError: 7.56311e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09651e-02\tAbsError: 1.01091e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25694e+00\tAbsError: 1.13710e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24202e-04\tAbsError: 6.79391e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 2.98064e+00\tAbsError: 4.87680e+13\n", + " Region: \"zone_1\"\tRelError: 2.44747e+00\tAbsError: 3.29846e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.44736e+00\tAbsError: 2.94801e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05905e-04\tAbsError: 3.29551e-02\n", + " Region: \"zone_3\"\tRelError: 5.33170e-01\tAbsError: 4.87680e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.78103e-03\tAbsError: 2.55374e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.19821e-03\tAbsError: 2.32306e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.25085e-01\tAbsError: 3.06627e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05922e-04\tAbsError: 3.29613e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 7.46333e-01\tAbsError: 1.88878e+13\n", + " Region: \"zone_1\"\tRelError: 5.79580e-01\tAbsError: 1.26798e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.79539e-01\tAbsError: 1.18793e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.07055e-05\tAbsError: 1.26679e-02\n", + " Region: \"zone_3\"\tRelError: 1.66753e-01\tAbsError: 1.88878e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.37013e-03\tAbsError: 1.00693e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.61379e-03\tAbsError: 8.81851e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63728e-01\tAbsError: 1.23418e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.07118e-05\tAbsError: 1.26702e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 5.53950e-01\tAbsError: 2.42497e+13\n", + " Region: \"zone_1\"\tRelError: 3.49191e-01\tAbsError: 1.77152e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.49134e-01\tAbsError: 1.65808e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.68627e-05\tAbsError: 1.76986e-02\n", + " Region: \"zone_3\"\tRelError: 2.04759e-01\tAbsError: 2.42497e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.96301e-03\tAbsError: 1.25988e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.25332e-03\tAbsError: 1.16509e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.00486e-01\tAbsError: 1.66151e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.68717e-05\tAbsError: 1.77019e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 4.97080e-01\tAbsError: 3.12088e+13\n", + " Region: \"zone_1\"\tRelError: 1.80812e-01\tAbsError: 1.31026e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80768e-01\tAbsError: 1.32608e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.32197e-05\tAbsError: 1.30894e-02\n", + " Region: \"zone_3\"\tRelError: 3.16269e-01\tAbsError: 3.12088e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.80766e-03\tAbsError: 1.81872e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.37672e-03\tAbsError: 1.30216e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.13041e-01\tAbsError: 1.36296e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.32423e-05\tAbsError: 1.30961e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.46290e+01\tAbsError: 7.54142e+13\n", + " Region: \"zone_1\"\tRelError: 1.39304e+01\tAbsError: 8.26391e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39301e+01\tAbsError: 4.56525e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.65521e-04\tAbsError: 8.25935e-02\n", + " Region: \"zone_3\"\tRelError: 6.98609e-01\tAbsError: 7.54142e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06769e-02\tAbsError: 3.75499e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06073e-02\tAbsError: 3.78643e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.77059e-01\tAbsError: 4.75877e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.65567e-04\tAbsError: 8.26109e-02\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 2.37510e+00\tAbsError: 3.44205e+13\n", + " Region: \"zone_1\"\tRelError: 2.07585e+00\tAbsError: 3.03707e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07575e+00\tAbsError: 2.20173e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.75382e-05\tAbsError: 3.03487e-02\n", + " Region: \"zone_3\"\tRelError: 2.99251e-01\tAbsError: 3.44205e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.48121e-03\tAbsError: 1.82818e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.87348e-03\tAbsError: 1.61388e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.91799e-01\tAbsError: 2.28620e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.75541e-05\tAbsError: 3.03544e-02\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 3.72625e-01\tAbsError: 1.82154e+13\n", + " Region: \"zone_1\"\tRelError: 2.17729e-01\tAbsError: 1.57356e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17678e-01\tAbsError: 1.26662e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.05177e-05\tAbsError: 1.57230e-02\n", + " Region: \"zone_3\"\tRelError: 1.54896e-01\tAbsError: 1.82154e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.77131e-03\tAbsError: 9.42912e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.00392e-03\tAbsError: 8.78631e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51070e-01\tAbsError: 1.26961e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.05258e-05\tAbsError: 1.57259e-02\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 4.19937e-01\tAbsError: 1.28902e+13\n", + " Region: \"zone_1\"\tRelError: 3.06084e-01\tAbsError: 1.18124e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.06046e-01\tAbsError: 8.53157e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.79303e-05\tAbsError: 1.18038e-02\n", + " Region: \"zone_3\"\tRelError: 1.13854e-01\tAbsError: 1.28902e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31847e-03\tAbsError: 6.83509e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.50464e-03\tAbsError: 6.05511e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10993e-01\tAbsError: 8.86876e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.79364e-05\tAbsError: 1.18060e-02\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 9.83519e-02\tAbsError: 1.31243e+13\n", + " Region: \"zone_1\"\tRelError: 2.69463e-02\tAbsError: 7.44843e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.69223e-02\tAbsError: 5.59959e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39358e-05\tAbsError: 7.44283e-03\n", + " Region: \"zone_3\"\tRelError: 7.14056e-02\tAbsError: 1.31243e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.14606e-04\tAbsError: 5.83881e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.60576e-04\tAbsError: 7.28554e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.97065e-02\tAbsError: 5.79865e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39395e-05\tAbsError: 7.44419e-03\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 2.66272e+00\tAbsError: 9.17644e+13\n", + " Region: \"zone_1\"\tRelError: 1.07610e+00\tAbsError: 5.93430e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07591e+00\tAbsError: 5.08211e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.90575e-04\tAbsError: 5.92922e-02\n", + " Region: \"zone_3\"\tRelError: 1.58662e+00\tAbsError: 9.17644e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.09264e-03\tAbsError: 4.75069e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.55644e-03\tAbsError: 4.42574e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57178e+00\tAbsError: 5.27782e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.90607e-04\tAbsError: 5.93035e-02\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 2.57407e+00\tAbsError: 3.17686e+13\n", + " Region: \"zone_1\"\tRelError: 2.22538e+00\tAbsError: 2.43137e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.22531e+00\tAbsError: 1.97888e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.80726e-05\tAbsError: 2.42939e-02\n", + " Region: \"zone_3\"\tRelError: 3.48688e-01\tAbsError: 3.17686e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.76667e-03\tAbsError: 1.68837e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.09350e-03\tAbsError: 1.48849e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.42750e-01\tAbsError: 2.05654e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.80853e-05\tAbsError: 2.42985e-02\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 3.68152e-01\tAbsError: 1.63227e+13\n", + " Region: \"zone_1\"\tRelError: 2.30302e-01\tAbsError: 1.27770e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30261e-01\tAbsError: 1.12896e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.10142e-05\tAbsError: 1.27657e-02\n", + " Region: \"zone_3\"\tRelError: 1.37851e-01\tAbsError: 1.63227e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.44305e-03\tAbsError: 8.40992e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.62513e-03\tAbsError: 7.91280e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34741e-01\tAbsError: 1.13141e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.10209e-05\tAbsError: 1.27681e-02\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 4.76943e-01\tAbsError: 1.22315e+13\n", + " Region: \"zone_1\"\tRelError: 3.66555e-01\tAbsError: 9.30587e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.66525e-01\tAbsError: 7.77873e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.98775e-05\tAbsError: 9.29809e-03\n", + " Region: \"zone_3\"\tRelError: 1.10388e-01\tAbsError: 1.22315e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04678e-03\tAbsError: 6.41962e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.18419e-03\tAbsError: 5.81184e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08127e-01\tAbsError: 8.08706e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.98823e-05\tAbsError: 9.29982e-03\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 1.33834e-01\tAbsError: 7.10515e+12\n", + " Region: \"zone_1\"\tRelError: 4.22245e-02\tAbsError: 1.90171e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22183e-02\tAbsError: 3.11940e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.26908e-06\tAbsError: 1.89859e-03\n", + " Region: \"zone_3\"\tRelError: 9.16092e-02\tAbsError: 7.10515e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.19936e-04\tAbsError: 4.16197e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.18871e-04\tAbsError: 2.94318e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.09642e-02\tAbsError: 3.19358e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.27201e-06\tAbsError: 1.89946e-03\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 6.21730e+00\tAbsError: 6.28732e+13\n", + " Region: \"zone_1\"\tRelError: 5.65246e+00\tAbsError: 5.57349e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.65228e+00\tAbsError: 3.74982e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79053e-04\tAbsError: 5.56974e-02\n", + " Region: \"zone_3\"\tRelError: 5.64836e-01\tAbsError: 6.28732e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.50830e-03\tAbsError: 3.34288e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.12284e-03\tAbsError: 2.94444e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.51026e-01\tAbsError: 3.89361e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79082e-04\tAbsError: 5.57080e-02\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 2.42977e+00\tAbsError: 2.53302e+13\n", + " Region: \"zone_1\"\tRelError: 2.20489e+00\tAbsError: 2.09766e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20482e+00\tAbsError: 1.60237e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.73649e-05\tAbsError: 2.09606e-02\n", + " Region: \"zone_3\"\tRelError: 2.24889e-01\tAbsError: 2.53302e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38603e-03\tAbsError: 1.34850e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.67335e-03\tAbsError: 1.18453e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19762e-01\tAbsError: 1.66446e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.73759e-05\tAbsError: 2.09645e-02\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 2.67753e-01\tAbsError: 1.32666e+13\n", + " Region: \"zone_1\"\tRelError: 1.60014e-01\tAbsError: 1.09217e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59979e-01\tAbsError: 9.22546e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.50614e-05\tAbsError: 1.09125e-02\n", + " Region: \"zone_3\"\tRelError: 1.07739e-01\tAbsError: 1.32666e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23710e-03\tAbsError: 6.82333e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.39041e-03\tAbsError: 6.44331e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05076e-01\tAbsError: 9.24624e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.50671e-05\tAbsError: 1.09145e-02\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 3.13143e-01\tAbsError: 9.65526e+12\n", + " Region: \"zone_1\"\tRelError: 2.30103e-01\tAbsError: 8.07090e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30077e-01\tAbsError: 6.23114e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.59148e-05\tAbsError: 8.06467e-03\n", + " Region: \"zone_3\"\tRelError: 8.30400e-02\tAbsError: 9.65526e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.12436e-04\tAbsError: 5.05122e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02773e-03\tAbsError: 4.60403e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.10739e-02\tAbsError: 6.47951e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.59190e-05\tAbsError: 8.06618e-03\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 1.78851e+00\tAbsError: 5.85149e+13\n", + " Region: \"zone_1\"\tRelError: 8.33361e-01\tAbsError: 4.43662e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.33218e-01\tAbsError: 3.40463e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42496e-04\tAbsError: 4.43322e-02\n", + " Region: \"zone_3\"\tRelError: 9.55151e-01\tAbsError: 5.85149e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.09008e-03\tAbsError: 3.13791e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.64466e-03\tAbsError: 2.71358e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.44274e-01\tAbsError: 3.53185e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42520e-04\tAbsError: 4.43405e-02\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 4.54384e-03\tAbsError: 1.97356e+12\n", + " Region: \"zone_1\"\tRelError: 6.35280e-04\tAbsError: 2.03022e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.28753e-04\tAbsError: 7.43276e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.52677e-06\tAbsError: 2.02947e-03\n", + " Region: \"zone_3\"\tRelError: 3.90856e-03\tAbsError: 1.97356e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98085e-04\tAbsError: 9.22019e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.58972e-04\tAbsError: 1.05155e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.44498e-03\tAbsError: 7.73446e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.52778e-06\tAbsError: 2.02985e-03\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 2.37857e+00\tAbsError: 2.18538e+13\n", + " Region: \"zone_1\"\tRelError: 2.14476e+00\tAbsError: 1.73517e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.14470e+00\tAbsError: 1.37224e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.57192e-05\tAbsError: 1.73380e-02\n", + " Region: \"zone_3\"\tRelError: 2.33807e-01\tAbsError: 2.18538e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.96996e-03\tAbsError: 1.16417e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.20797e-03\tAbsError: 1.02121e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29573e-01\tAbsError: 1.42577e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.57282e-05\tAbsError: 1.73412e-02\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 2.51662e-01\tAbsError: 1.13577e+13\n", + " Region: \"zone_1\"\tRelError: 1.56646e-01\tAbsError: 9.08465e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56617e-01\tAbsError: 7.88221e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.91625e-05\tAbsError: 9.07677e-03\n", + " Region: \"zone_3\"\tRelError: 9.50167e-02\tAbsError: 1.13577e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02960e-03\tAbsError: 5.83801e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.15562e-03\tAbsError: 5.51967e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.28023e-02\tAbsError: 7.89954e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.91672e-05\tAbsError: 9.07847e-03\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 3.19445e-01\tAbsError: 8.40016e+12\n", + " Region: \"zone_1\"\tRelError: 2.43636e-01\tAbsError: 6.65122e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.43614e-01\tAbsError: 5.36473e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.13552e-05\tAbsError: 6.64586e-03\n", + " Region: \"zone_3\"\tRelError: 7.58096e-02\tAbsError: 8.40016e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.53439e-04\tAbsError: 4.38870e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.46427e-04\tAbsError: 4.01146e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.41884e-02\tAbsError: 5.57847e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.13586e-05\tAbsError: 6.64710e-03\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 2.60422e+00\tAbsError: 4.61826e+13\n", + " Region: \"zone_1\"\tRelError: 2.15878e+00\tAbsError: 3.83930e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.15866e+00\tAbsError: 2.74159e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23333e-04\tAbsError: 3.83656e-02\n", + " Region: \"zone_3\"\tRelError: 4.45436e-01\tAbsError: 4.61826e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.38689e-03\tAbsError: 2.48842e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.89918e-03\tAbsError: 2.12984e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.36026e-01\tAbsError: 2.84443e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23353e-04\tAbsError: 3.83728e-02\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 4.48404e-02\tAbsError: 1.98684e+12\n", + " Region: \"zone_1\"\tRelError: 1.35213e-02\tAbsError: 1.04469e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35210e-02\tAbsError: 9.29115e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32984e-07\tAbsError: 1.03540e-04\n", + " Region: \"zone_3\"\tRelError: 3.13191e-02\tAbsError: 1.98684e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.43520e-05\tAbsError: 1.13644e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.40386e-05\tAbsError: 8.50401e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.11303e-02\tAbsError: 9.46114e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.33016e-07\tAbsError: 1.03550e-04\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 2.43212e+00\tAbsError: 1.80647e+13\n", + " Region: \"zone_1\"\tRelError: 2.26786e+00\tAbsError: 1.46812e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.26781e+00\tAbsError: 1.13928e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.71468e-05\tAbsError: 1.46699e-02\n", + " Region: \"zone_3\"\tRelError: 1.64262e-01\tAbsError: 1.80647e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.66754e-03\tAbsError: 9.62484e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.87042e-03\tAbsError: 8.43989e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60677e-01\tAbsError: 1.18356e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.71545e-05\tAbsError: 1.46726e-02\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 1.91043e-01\tAbsError: 9.45004e+12\n", + " Region: \"zone_1\"\tRelError: 1.15848e-01\tAbsError: 7.67331e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15824e-01\tAbsError: 6.56869e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.46329e-05\tAbsError: 7.66674e-03\n", + " Region: \"zone_3\"\tRelError: 7.51949e-02\tAbsError: 9.45004e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.70400e-04\tAbsError: 4.85497e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.76714e-04\tAbsError: 4.59507e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.33231e-02\tAbsError: 6.58330e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.46369e-05\tAbsError: 7.66818e-03\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 2.28228e-01\tAbsError: 6.92667e+12\n", + " Region: \"zone_1\"\tRelError: 1.68660e-01\tAbsError: 5.64127e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68642e-01\tAbsError: 4.44328e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.81132e-05\tAbsError: 5.63682e-03\n", + " Region: \"zone_3\"\tRelError: 5.95679e-02\tAbsError: 6.92667e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39712e-04\tAbsError: 3.61541e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.18244e-04\tAbsError: 3.31125e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.81919e-02\tAbsError: 4.62060e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.81161e-05\tAbsError: 5.63788e-03\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 1.24364e+00\tAbsError: 3.98793e+13\n", + " Region: \"zone_1\"\tRelError: 6.47408e-01\tAbsError: 3.16405e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.47306e-01\tAbsError: 2.34999e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01628e-04\tAbsError: 3.16170e-02\n", + " Region: \"zone_3\"\tRelError: 5.96234e-01\tAbsError: 3.98793e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.59762e-03\tAbsError: 2.15339e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.02625e-03\tAbsError: 1.83453e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.88508e-01\tAbsError: 2.43747e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01645e-04\tAbsError: 3.16229e-02\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 1.32252e-02\tAbsError: 2.13509e+11\n", + " Region: \"zone_1\"\tRelError: 4.00689e-03\tAbsError: 7.68092e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.00442e-03\tAbsError: 1.39123e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.46974e-06\tAbsError: 7.67953e-04\n", + " Region: \"zone_3\"\tRelError: 9.21836e-03\tAbsError: 2.13509e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.14078e-05\tAbsError: 1.20860e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.79944e-05\tAbsError: 9.26487e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.03649e-03\tAbsError: 1.49672e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.47013e-06\tAbsError: 7.68096e-04\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 2.25804e+00\tAbsError: 1.52837e+13\n", + " Region: \"zone_1\"\tRelError: 2.09854e+00\tAbsError: 1.22672e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09850e+00\tAbsError: 9.61814e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.93927e-05\tAbsError: 1.22576e-02\n", + " Region: \"zone_3\"\tRelError: 1.59502e-01\tAbsError: 1.52837e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.39204e-03\tAbsError: 8.14484e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.56124e-03\tAbsError: 7.13884e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56509e-01\tAbsError: 9.99264e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.93991e-05\tAbsError: 1.22599e-02\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 1.74260e-01\tAbsError: 7.98426e+12\n", + " Region: \"zone_1\"\tRelError: 1.08105e-01\tAbsError: 6.42858e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08085e-01\tAbsError: 5.54624e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.06365e-05\tAbsError: 6.42303e-03\n", + " Region: \"zone_3\"\tRelError: 6.61551e-02\tAbsError: 7.98426e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.29092e-04\tAbsError: 4.10165e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.17826e-04\tAbsError: 3.88261e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.45876e-02\tAbsError: 5.55849e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.06398e-05\tAbsError: 6.42423e-03\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 2.18623e-01\tAbsError: 5.87844e+12\n", + " Region: \"zone_1\"\tRelError: 1.65851e-01\tAbsError: 4.71199e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65836e-01\tAbsError: 3.75988e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51290e-05\tAbsError: 4.70823e-03\n", + " Region: \"zone_3\"\tRelError: 5.27719e-02\tAbsError: 5.87844e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.34489e-04\tAbsError: 3.06777e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.99683e-04\tAbsError: 2.81068e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.16226e-02\tAbsError: 3.90988e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51315e-05\tAbsError: 4.70911e-03\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 1.50139e+00\tAbsError: 3.28117e+13\n", + " Region: \"zone_1\"\tRelError: 1.16631e+00\tAbsError: 2.67441e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16622e+00\tAbsError: 1.94424e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.59099e-05\tAbsError: 2.67246e-02\n", + " Region: \"zone_3\"\tRelError: 3.35085e-01\tAbsError: 3.28117e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.04175e-03\tAbsError: 1.77326e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.41055e-03\tAbsError: 1.50791e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.28547e-01\tAbsError: 2.01677e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.59238e-05\tAbsError: 2.67296e-02\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 2.11909e-02\tAbsError: 7.74597e+11\n", + " Region: \"zone_1\"\tRelError: 6.29549e-03\tAbsError: 3.14609e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.29448e-03\tAbsError: 3.93424e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01052e-06\tAbsError: 3.14215e-04\n", + " Region: \"zone_3\"\tRelError: 1.48954e-02\tAbsError: 7.74597e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.92582e-05\tAbsError: 4.31183e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.00936e-05\tAbsError: 3.43415e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48150e-02\tAbsError: 3.99151e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01067e-06\tAbsError: 3.14271e-04\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 2.43779e+00\tAbsError: 1.27691e+13\n", + " Region: \"zone_1\"\tRelError: 2.31937e+00\tAbsError: 1.03195e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31934e+00\tAbsError: 8.04577e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.31393e-05\tAbsError: 1.03114e-02\n", + " Region: \"zone_3\"\tRelError: 1.18419e-01\tAbsError: 1.27691e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.17170e-03\tAbsError: 6.80480e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.31448e-03\tAbsError: 5.96428e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15899e-01\tAbsError: 8.35871e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.31447e-05\tAbsError: 1.03134e-02\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 1.35909e-01\tAbsError: 6.68957e+12\n", + " Region: \"zone_1\"\tRelError: 8.31754e-02\tAbsError: 5.41023e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.31581e-02\tAbsError: 4.64898e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73678e-05\tAbsError: 5.40558e-03\n", + " Region: \"zone_3\"\tRelError: 5.27339e-02\tAbsError: 6.68957e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.13866e-04\tAbsError: 3.43609e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.88587e-04\tAbsError: 3.25348e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.14141e-02\tAbsError: 4.65929e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73706e-05\tAbsError: 5.40659e-03\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 1.64436e-01\tAbsError: 4.91077e+12\n", + " Region: \"zone_1\"\tRelError: 1.22007e-01\tAbsError: 3.96949e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21995e-01\tAbsError: 3.14515e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27453e-05\tAbsError: 3.96635e-03\n", + " Region: \"zone_3\"\tRelError: 4.24291e-02\tAbsError: 4.91077e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.50436e-04\tAbsError: 2.56213e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.05356e-04\tAbsError: 2.34864e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.14606e-02\tAbsError: 3.27068e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27474e-05\tAbsError: 3.96709e-03\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 8.82257e-01\tAbsError: 2.77198e+13\n", + " Region: \"zone_1\"\tRelError: 4.95183e-01\tAbsError: 2.22821e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.95111e-01\tAbsError: 1.63887e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.15709e-05\tAbsError: 2.22657e-02\n", + " Region: \"zone_3\"\tRelError: 3.87074e-01\tAbsError: 2.77198e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52899e-03\tAbsError: 1.49886e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.83620e-03\tAbsError: 1.27312e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.81638e-01\tAbsError: 1.69986e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.15825e-05\tAbsError: 2.22699e-02\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 1.26816e-02\tAbsError: 3.14452e+11\n", + " Region: \"zone_1\"\tRelError: 3.77720e-03\tAbsError: 4.03388e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.77590e-03\tAbsError: 1.97604e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29666e-06\tAbsError: 4.03190e-04\n", + " Region: \"zone_3\"\tRelError: 8.90437e-03\tAbsError: 3.14452e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.48326e-05\tAbsError: 1.73697e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.14481e-05\tAbsError: 1.40755e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.80679e-03\tAbsError: 2.00948e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29687e-06\tAbsError: 4.03265e-04\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 2.16401e+00\tAbsError: 1.07413e+13\n", + " Region: \"zone_1\"\tRelError: 2.05403e+00\tAbsError: 8.64889e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05401e+00\tAbsError: 6.76381e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.77736e-05\tAbsError: 8.64212e-03\n", + " Region: \"zone_3\"\tRelError: 1.09977e-01\tAbsError: 1.07413e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.81401e-04\tAbsError: 5.72453e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10088e-03\tAbsError: 5.01681e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07867e-01\tAbsError: 7.02704e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.77781e-05\tAbsError: 8.64374e-03\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 1.21488e-01\tAbsError: 5.63018e+12\n", + " Region: \"zone_1\"\tRelError: 7.51949e-02\tAbsError: 4.54218e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.51804e-02\tAbsError: 3.91198e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45810e-05\tAbsError: 4.53827e-03\n", + " Region: \"zone_3\"\tRelError: 4.62931e-02\tAbsError: 5.63018e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.15241e-04\tAbsError: 2.89193e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.77885e-04\tAbsError: 2.73825e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.51854e-02\tAbsError: 3.92064e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45833e-05\tAbsError: 4.53912e-03\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 1.51286e-01\tAbsError: 4.13746e+12\n", + " Region: \"zone_1\"\tRelError: 1.14344e-01\tAbsError: 3.32880e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14333e-01\tAbsError: 2.64767e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06880e-05\tAbsError: 3.32615e-03\n", + " Region: \"zone_3\"\tRelError: 3.69425e-02\tAbsError: 4.13746e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.77700e-04\tAbsError: 2.15864e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.23669e-04\tAbsError: 1.97882e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.61305e-02\tAbsError: 2.75333e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06897e-05\tAbsError: 3.32677e-03\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 9.51850e-01\tAbsError: 2.30880e+13\n", + " Region: \"zone_1\"\tRelError: 7.05530e-01\tAbsError: 1.87055e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.05470e-01\tAbsError: 1.36713e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.00868e-05\tAbsError: 1.86919e-02\n", + " Region: \"zone_3\"\tRelError: 2.46320e-01\tAbsError: 2.30880e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12512e-03\tAbsError: 1.24860e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.38461e-03\tAbsError: 1.06020e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41750e-01\tAbsError: 1.41806e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.00965e-05\tAbsError: 1.86954e-02\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 1.27097e-02\tAbsError: 4.12884e+11\n", + " Region: \"zone_1\"\tRelError: 3.75633e-03\tAbsError: 2.69420e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.75546e-03\tAbsError: 2.21872e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.65740e-07\tAbsError: 2.69198e-04\n", + " Region: \"zone_3\"\tRelError: 8.95333e-03\tAbsError: 4.12884e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.04279e-05\tAbsError: 2.26457e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.43493e-05\tAbsError: 1.86427e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.88769e-03\tAbsError: 2.25327e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.65878e-07\tAbsError: 2.69248e-04\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 2.46782e+00\tAbsError: 9.00233e+12\n", + " Region: \"zone_1\"\tRelError: 2.38308e+00\tAbsError: 7.26323e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38305e+00\tAbsError: 5.67081e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.33245e-05\tAbsError: 7.25756e-03\n", + " Region: \"zone_3\"\tRelError: 8.47381e-02\tAbsError: 9.00233e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.24573e-04\tAbsError: 4.79771e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.25065e-04\tAbsError: 4.20462e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.29652e-02\tAbsError: 5.89143e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.33283e-05\tAbsError: 7.25892e-03\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 9.69082e-02\tAbsError: 4.72694e+12\n", + " Region: \"zone_1\"\tRelError: 5.94102e-02\tAbsError: 3.81850e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.93980e-02\tAbsError: 3.28480e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22580e-05\tAbsError: 3.81522e-03\n", + " Region: \"zone_3\"\tRelError: 3.74979e-02\tAbsError: 4.72694e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33274e-04\tAbsError: 2.42790e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.85970e-04\tAbsError: 2.29904e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.65664e-02\tAbsError: 3.29208e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22600e-05\tAbsError: 3.81593e-03\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 1.17689e-01\tAbsError: 3.46976e+12\n", + " Region: \"zone_1\"\tRelError: 8.75724e-02\tAbsError: 2.79855e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.75634e-02\tAbsError: 2.22128e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.98559e-06\tAbsError: 2.79633e-03\n", + " Region: \"zone_3\"\tRelError: 3.01170e-02\tAbsError: 3.46976e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.17604e-04\tAbsError: 1.81016e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.56267e-04\tAbsError: 1.65959e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.94342e-02\tAbsError: 2.30994e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.98705e-06\tAbsError: 2.79685e-03\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 6.29576e-01\tAbsError: 1.93795e+13\n", + " Region: \"zone_1\"\tRelError: 3.71642e-01\tAbsError: 1.56367e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.71592e-01\tAbsError: 1.14678e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.02263e-05\tAbsError: 1.56252e-02\n", + " Region: \"zone_3\"\tRelError: 2.57933e-01\tAbsError: 1.93795e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.77430e-03\tAbsError: 1.04817e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.99080e-03\tAbsError: 8.89779e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54118e-01\tAbsError: 1.18946e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.02344e-05\tAbsError: 1.56282e-02\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 9.54711e-03\tAbsError: 2.75928e+11\n", + " Region: \"zone_1\"\tRelError: 2.83434e-03\tAbsError: 2.53523e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83352e-03\tAbsError: 1.58132e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.14822e-07\tAbsError: 2.53365e-04\n", + " Region: \"zone_3\"\tRelError: 6.71277e-03\tAbsError: 2.75928e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.86223e-05\tAbsError: 1.50613e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.23298e-05\tAbsError: 1.25315e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.65101e-03\tAbsError: 1.60716e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.14954e-07\tAbsError: 2.53412e-04\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 2.07546e+00\tAbsError: 7.55993e+12\n", + " Region: \"zone_1\"\tRelError: 1.99911e+00\tAbsError: 6.09292e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.99909e+00\tAbsError: 4.76133e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.95659e-05\tAbsError: 6.08816e-03\n", + " Region: \"zone_3\"\tRelError: 7.63450e-02\tAbsError: 7.55993e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91405e-04\tAbsError: 4.02905e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.75617e-04\tAbsError: 3.53088e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.48584e-02\tAbsError: 4.94660e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.95691e-05\tAbsError: 6.08930e-03\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 8.50440e-02\tAbsError: 3.97385e+12\n", + " Region: \"zone_1\"\tRelError: 5.25547e-02\tAbsError: 3.20783e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.25444e-02\tAbsError: 2.76132e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02976e-05\tAbsError: 3.20507e-03\n", + " Region: \"zone_3\"\tRelError: 3.24893e-02\tAbsError: 3.97385e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.63903e-04\tAbsError: 2.04110e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.08141e-04\tAbsError: 1.93276e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.17069e-02\tAbsError: 2.76743e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02992e-05\tAbsError: 3.20567e-03\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 1.05365e-01\tAbsError: 2.91713e+12\n", + " Region: \"zone_1\"\tRelError: 7.94308e-02\tAbsError: 2.34959e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.94232e-02\tAbsError: 1.86705e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.54401e-06\tAbsError: 2.34772e-03\n", + " Region: \"zone_3\"\tRelError: 2.59340e-02\tAbsError: 2.91713e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.66616e-04\tAbsError: 1.52186e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.99053e-04\tAbsError: 1.39527e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.53608e-02\tAbsError: 1.94156e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.54523e-06\tAbsError: 2.34817e-03\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 6.29716e-01\tAbsError: 1.61994e+13\n", + " Region: \"zone_1\"\tRelError: 4.51188e-01\tAbsError: 1.31007e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.51146e-01\tAbsError: 9.59006e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.20822e-05\tAbsError: 1.30911e-02\n", + " Region: \"zone_3\"\tRelError: 1.78527e-01\tAbsError: 1.61994e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.48783e-03\tAbsError: 8.76191e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.66972e-03\tAbsError: 7.43747e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75328e-01\tAbsError: 9.94714e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.20890e-05\tAbsError: 1.30935e-02\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 8.40897e-03\tAbsError: 2.60649e+11\n", + " Region: \"zone_1\"\tRelError: 2.48326e-03\tAbsError: 1.97491e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.48263e-03\tAbsError: 1.43466e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.34669e-07\tAbsError: 1.97347e-04\n", + " Region: \"zone_3\"\tRelError: 5.92571e-03\tAbsError: 2.60649e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.24057e-05\tAbsError: 1.42252e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.51813e-05\tAbsError: 1.18397e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.87749e-03\tAbsError: 1.45753e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.34770e-07\tAbsError: 1.97384e-04\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 2.53587e+00\tAbsError: 6.34185e+12\n", + " Region: \"zone_1\"\tRelError: 2.47552e+00\tAbsError: 5.11418e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.47550e+00\tAbsError: 3.99458e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64232e-05\tAbsError: 5.11019e-03\n", + " Region: \"zone_3\"\tRelError: 6.03468e-02\tAbsError: 6.34185e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.80553e-04\tAbsError: 3.37987e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.51303e-04\tAbsError: 2.96198e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.90985e-02\tAbsError: 4.15000e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64259e-05\tAbsError: 5.11115e-03\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 6.88962e-02\tAbsError: 3.33837e+12\n", + " Region: \"zone_1\"\tRelError: 4.22897e-02\tAbsError: 2.69587e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22811e-02\tAbsError: 2.31981e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.65419e-06\tAbsError: 2.69355e-03\n", + " Region: \"zone_3\"\tRelError: 2.66065e-02\tAbsError: 3.33837e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.05887e-04\tAbsError: 1.71468e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.43081e-04\tAbsError: 1.62369e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.59489e-02\tAbsError: 2.32495e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.65559e-06\tAbsError: 2.69406e-03\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 8.38711e-02\tAbsError: 2.44917e+12\n", + " Region: \"zone_1\"\tRelError: 6.25355e-02\tAbsError: 1.97412e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.25291e-02\tAbsError: 1.56773e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.33851e-06\tAbsError: 1.97256e-03\n", + " Region: \"zone_3\"\tRelError: 2.13357e-02\tAbsError: 2.44917e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.24043e-04\tAbsError: 1.27771e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.51306e-04\tAbsError: 1.17146e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08540e-02\tAbsError: 1.63030e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.33954e-06\tAbsError: 1.97293e-03\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 4.49008e-01\tAbsError: 1.35714e+13\n", + " Region: \"zone_1\"\tRelError: 2.74242e-01\tAbsError: 1.09624e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74207e-01\tAbsError: 8.03282e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52122e-05\tAbsError: 1.09543e-02\n", + " Region: \"zone_3\"\tRelError: 1.74765e-01\tAbsError: 1.35714e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24396e-03\tAbsError: 7.34071e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.39592e-03\tAbsError: 6.23072e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72090e-01\tAbsError: 8.33181e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52179e-05\tAbsError: 1.09564e-02\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 6.77886e-03\tAbsError: 2.03081e+11\n", + " Region: \"zone_1\"\tRelError: 2.01009e-03\tAbsError: 1.70438e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.00954e-03\tAbsError: 1.14000e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.47761e-07\tAbsError: 1.70324e-04\n", + " Region: \"zone_3\"\tRelError: 4.76877e-03\tAbsError: 2.03081e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.93231e-05\tAbsError: 1.10669e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.17335e-05\tAbsError: 9.24118e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.72717e-03\tAbsError: 1.15844e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.47849e-07\tAbsError: 1.70355e-04\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 1.98064e+00\tAbsError: 5.32307e+12\n", + " Region: \"zone_1\"\tRelError: 1.92741e+00\tAbsError: 4.29130e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92739e+00\tAbsError: 3.35270e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37805e-05\tAbsError: 4.28795e-03\n", + " Region: \"zone_3\"\tRelError: 5.32347e-02\tAbsError: 5.32307e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.86988e-04\tAbsError: 2.83692e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.46311e-04\tAbsError: 2.48614e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.21876e-02\tAbsError: 3.48315e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37827e-05\tAbsError: 4.28875e-03\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 5.96909e-02\tAbsError: 2.80557e+12\n", + " Region: \"zone_1\"\tRelError: 3.68466e-02\tAbsError: 2.26515e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.68393e-02\tAbsError: 1.94955e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.27144e-06\tAbsError: 2.26320e-03\n", + " Region: \"zone_3\"\tRelError: 2.28443e-02\tAbsError: 2.80557e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.56972e-04\tAbsError: 1.44102e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.88211e-04\tAbsError: 1.36455e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.22919e-02\tAbsError: 1.95386e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.27262e-06\tAbsError: 2.26362e-03\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 7.36826e-02\tAbsError: 2.05779e+12\n", + " Region: \"zone_1\"\tRelError: 5.54468e-02\tAbsError: 1.65799e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.54415e-02\tAbsError: 1.31711e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.32345e-06\tAbsError: 1.65668e-03\n", + " Region: \"zone_3\"\tRelError: 1.82358e-02\tAbsError: 2.05779e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88144e-04\tAbsError: 1.07353e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.11033e-04\tAbsError: 9.84259e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78313e-02\tAbsError: 1.36968e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.32431e-06\tAbsError: 1.65699e-03\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 4.26049e-01\tAbsError: 1.13564e+13\n", + " Region: \"zone_1\"\tRelError: 2.97905e-01\tAbsError: 9.17908e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97875e-01\tAbsError: 6.72249e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94850e-05\tAbsError: 9.17236e-03\n", + " Region: \"zone_3\"\tRelError: 1.28145e-01\tAbsError: 1.13564e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04228e-03\tAbsError: 6.14262e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.16973e-03\tAbsError: 5.21373e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25903e-01\tAbsError: 6.97277e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94898e-05\tAbsError: 9.17408e-03\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 5.74607e-03\tAbsError: 1.75407e+11\n", + " Region: \"zone_1\"\tRelError: 1.69738e-03\tAbsError: 1.39118e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69694e-03\tAbsError: 9.73390e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.47092e-07\tAbsError: 1.39021e-04\n", + " Region: \"zone_3\"\tRelError: 4.04868e-03\tAbsError: 1.75407e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.57936e-05\tAbsError: 9.56034e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.77390e-05\tAbsError: 7.98040e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.01470e-03\tAbsError: 9.89021e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.47164e-07\tAbsError: 1.39047e-04\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 2.66127e+00\tAbsError: 4.46661e+12\n", + " Region: \"zone_1\"\tRelError: 2.61844e+00\tAbsError: 3.60143e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.61843e+00\tAbsError: 2.81334e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15653e-05\tAbsError: 3.59862e-03\n", + " Region: \"zone_3\"\tRelError: 4.28351e-02\tAbsError: 4.46661e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.08807e-04\tAbsError: 2.38048e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.58624e-04\tAbsError: 2.08613e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.19561e-02\tAbsError: 2.92281e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15671e-05\tAbsError: 3.59929e-03\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 4.88825e-02\tAbsError: 2.35733e+12\n", + " Region: \"zone_1\"\tRelError: 3.00315e-02\tAbsError: 1.90346e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.00254e-02\tAbsError: 1.63808e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.11040e-06\tAbsError: 1.90182e-03\n", + " Region: \"zone_3\"\tRelError: 1.88510e-02\tAbsError: 2.35733e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.15970e-04\tAbsError: 1.21079e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.42229e-04\tAbsError: 1.14654e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83867e-02\tAbsError: 1.64171e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.11139e-06\tAbsError: 1.90217e-03\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 5.95954e-02\tAbsError: 1.72827e+12\n", + " Region: \"zone_1\"\tRelError: 4.44995e-02\tAbsError: 1.39279e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44950e-02\tAbsError: 1.10624e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.47196e-06\tAbsError: 1.39168e-03\n", + " Region: \"zone_3\"\tRelError: 1.50959e-02\tAbsError: 1.72827e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.58066e-04\tAbsError: 9.01620e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.77298e-04\tAbsError: 8.26650e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47561e-02\tAbsError: 1.15039e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.47269e-06\tAbsError: 1.39195e-03\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 3.19333e-01\tAbsError: 9.50876e+12\n", + " Region: \"zone_1\"\tRelError: 1.99630e-01\tAbsError: 7.68315e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.99606e-01\tAbsError: 5.62853e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.46792e-05\tAbsError: 7.67752e-03\n", + " Region: \"zone_3\"\tRelError: 1.19702e-01\tAbsError: 9.50876e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.71928e-04\tAbsError: 5.14329e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.78474e-04\tAbsError: 4.36547e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17827e-01\tAbsError: 5.83805e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.46832e-05\tAbsError: 7.67896e-03\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 4.73327e-03\tAbsError: 1.43176e+11\n", + " Region: \"zone_1\"\tRelError: 1.40257e-03\tAbsError: 1.17059e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40220e-03\tAbsError: 7.99244e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.76205e-07\tAbsError: 1.16979e-04\n", + " Region: \"zone_3\"\tRelError: 3.33070e-03\tAbsError: 1.43176e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32854e-05\tAbsError: 7.80043e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.49266e-05\tAbsError: 6.51719e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.30211e-03\tAbsError: 8.12133e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.76265e-07\tAbsError: 1.17001e-04\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 1.87161e+00\tAbsError: 3.74853e+12\n", + " Region: \"zone_1\"\tRelError: 1.83438e+00\tAbsError: 3.02219e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83437e+00\tAbsError: 2.36102e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.70507e-06\tAbsError: 3.01983e-03\n", + " Region: \"zone_3\"\tRelError: 3.72324e-02\tAbsError: 3.74853e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.42980e-04\tAbsError: 1.99778e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.84764e-04\tAbsError: 1.75075e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.64949e-02\tAbsError: 2.45289e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.70664e-06\tAbsError: 3.02040e-03\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 4.19715e-02\tAbsError: 1.98091e+12\n", + " Region: \"zone_1\"\tRelError: 2.58886e-02\tAbsError: 1.59942e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58834e-02\tAbsError: 1.37651e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.13437e-06\tAbsError: 1.59804e-03\n", + " Region: \"zone_3\"\tRelError: 1.60830e-02\tAbsError: 1.98091e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.81453e-04\tAbsError: 1.01745e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.03511e-04\tAbsError: 9.63462e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56929e-02\tAbsError: 1.37956e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.13520e-06\tAbsError: 1.59834e-03\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 5.16674e-02\tAbsError: 1.45182e+12\n", + " Region: \"zone_1\"\tRelError: 3.88312e-02\tAbsError: 1.16987e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.88274e-02\tAbsError: 9.29271e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.75620e-06\tAbsError: 1.16894e-03\n", + " Region: \"zone_3\"\tRelError: 1.28362e-02\tAbsError: 1.45182e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32756e-04\tAbsError: 7.57402e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.48907e-04\tAbsError: 6.94423e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25508e-02\tAbsError: 9.66361e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.75681e-06\tAbsError: 1.16916e-03\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 2.91978e-01\tAbsError: 7.95921e+12\n", + " Region: \"zone_1\"\tRelError: 2.00630e-01\tAbsError: 6.43222e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.00609e-01\tAbsError: 4.71142e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.06615e-05\tAbsError: 6.42751e-03\n", + " Region: \"zone_3\"\tRelError: 9.13480e-02\tAbsError: 7.95921e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.30306e-04\tAbsError: 4.30515e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.19599e-04\tAbsError: 3.65406e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.97775e-02\tAbsError: 4.88682e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.06648e-05\tAbsError: 6.42871e-03\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 3.96527e-03\tAbsError: 1.20497e+11\n", + " Region: \"zone_1\"\tRelError: 1.17184e-03\tAbsError: 9.68873e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17153e-03\tAbsError: 6.70390e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.11374e-07\tAbsError: 9.68202e-05\n", + " Region: \"zone_3\"\tRelError: 2.79343e-03\tAbsError: 1.20497e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10000e-05\tAbsError: 6.56536e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.23542e-05\tAbsError: 5.48436e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76976e-03\tAbsError: 6.81177e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.11424e-07\tAbsError: 9.68382e-05\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 2.88214e+00\tAbsError: 3.14565e+12\n", + " Region: \"zone_1\"\tRelError: 2.85180e+00\tAbsError: 2.53624e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.85179e+00\tAbsError: 1.98131e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.14460e-06\tAbsError: 2.53426e-03\n", + " Region: \"zone_3\"\tRelError: 3.03348e-02\tAbsError: 3.14565e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87884e-04\tAbsError: 1.67647e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.22964e-04\tAbsError: 1.46918e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97158e-02\tAbsError: 2.05840e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.14592e-06\tAbsError: 2.53473e-03\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 3.46335e-02\tAbsError: 1.66451e+12\n", + " Region: \"zone_1\"\tRelError: 2.12908e-02\tAbsError: 1.34399e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12865e-02\tAbsError: 1.15665e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31443e-06\tAbsError: 1.34284e-03\n", + " Region: \"zone_3\"\tRelError: 1.33427e-02\tAbsError: 1.66451e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52490e-04\tAbsError: 8.54938e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.71030e-04\tAbsError: 8.09574e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30148e-02\tAbsError: 1.15921e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31513e-06\tAbsError: 1.34309e-03\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 4.22590e-02\tAbsError: 1.21946e+12\n", + " Region: \"zone_1\"\tRelError: 3.15869e-02\tAbsError: 9.82693e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.15838e-02\tAbsError: 7.80549e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.15522e-06\tAbsError: 9.81913e-04\n", + " Region: \"zone_3\"\tRelError: 1.06721e-02\tAbsError: 1.21946e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.11523e-04\tAbsError: 6.36179e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.25092e-04\tAbsError: 5.83281e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04323e-02\tAbsError: 8.11704e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.15574e-06\tAbsError: 9.82097e-04\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 2.26387e-01\tAbsError: 6.66323e+12\n", + " Region: \"zone_1\"\tRelError: 1.43809e-01\tAbsError: 5.38443e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43791e-01\tAbsError: 3.94425e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72955e-05\tAbsError: 5.38048e-03\n", + " Region: \"zone_3\"\tRelError: 8.25788e-02\tAbsError: 6.66323e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.11099e-04\tAbsError: 3.60415e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.85783e-04\tAbsError: 3.05908e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.12646e-02\tAbsError: 4.09107e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72983e-05\tAbsError: 5.38149e-03\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 3.28839e-03\tAbsError: 9.97318e+10\n", + " Region: \"zone_1\"\tRelError: 9.73982e-04\tAbsError: 8.09163e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.73722e-04\tAbsError: 5.55841e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.60048e-07\tAbsError: 8.08607e-05\n", + " Region: \"zone_3\"\tRelError: 2.31441e-03\tAbsError: 9.97318e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.18583e-06\tAbsError: 5.43334e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03179e-05\tAbsError: 4.53984e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29465e-03\tAbsError: 5.64797e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.60090e-07\tAbsError: 8.08758e-05\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 1.74291e+00\tAbsError: 2.63983e+12\n", + " Region: \"zone_1\"\tRelError: 1.71682e+00\tAbsError: 2.12837e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.71681e+00\tAbsError: 1.66271e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.83477e-06\tAbsError: 2.12671e-03\n", + " Region: \"zone_3\"\tRelError: 2.60945e-02\tAbsError: 2.63983e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.41550e-04\tAbsError: 1.40690e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.70978e-04\tAbsError: 1.23293e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.55751e-02\tAbsError: 1.72741e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.83588e-06\tAbsError: 2.12711e-03\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 2.95489e-02\tAbsError: 1.39868e+12\n", + " Region: \"zone_1\"\tRelError: 1.82163e-02\tAbsError: 1.12934e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82126e-02\tAbsError: 9.71930e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.62534e-06\tAbsError: 1.12837e-03\n", + " Region: \"zone_3\"\tRelError: 1.13327e-02\tAbsError: 1.39868e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28124e-04\tAbsError: 7.18402e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.43700e-04\tAbsError: 6.80283e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10572e-02\tAbsError: 9.74082e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.62593e-06\tAbsError: 1.12858e-03\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 3.62976e-02\tAbsError: 1.02435e+12\n", + " Region: \"zone_1\"\tRelError: 2.72557e-02\tAbsError: 8.25436e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.72531e-02\tAbsError: 6.55658e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.65030e-06\tAbsError: 8.24780e-04\n", + " Region: \"zone_3\"\tRelError: 9.04188e-03\tAbsError: 1.02435e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.36706e-05\tAbsError: 5.34390e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.05067e-04\tAbsError: 4.89956e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.84049e-03\tAbsError: 6.81827e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.65072e-06\tAbsError: 8.24935e-04\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 2.01654e-01\tAbsError: 5.57787e+12\n", + " Region: \"zone_1\"\tRelError: 1.36858e-01\tAbsError: 4.50754e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36843e-01\tAbsError: 3.30178e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44790e-05\tAbsError: 4.50424e-03\n", + " Region: \"zone_3\"\tRelError: 6.47960e-02\tAbsError: 5.57787e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.11747e-04\tAbsError: 3.01708e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.74313e-04\tAbsError: 2.56079e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.36955e-02\tAbsError: 3.42470e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44814e-05\tAbsError: 4.50508e-03\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 2.74449e-03\tAbsError: 8.32961e+10\n", + " Region: \"zone_1\"\tRelError: 8.11350e-04\tAbsError: 6.72491e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.11134e-04\tAbsError: 4.63781e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16124e-07\tAbsError: 6.72027e-05\n", + " Region: \"zone_3\"\tRelError: 1.93314e-03\tAbsError: 8.32961e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.63504e-06\tAbsError: 4.53807e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.57506e-06\tAbsError: 3.79155e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91671e-03\tAbsError: 4.71249e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16159e-07\tAbsError: 6.72153e-05\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 3.28628e+00\tAbsError: 2.21531e+12\n", + " Region: \"zone_1\"\tRelError: 3.26483e+00\tAbsError: 1.78612e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.26483e+00\tAbsError: 1.39533e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.73573e-06\tAbsError: 1.78472e-03\n", + " Region: \"zone_3\"\tRelError: 2.14473e-02\tAbsError: 2.21531e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.02734e-04\tAbsError: 1.18065e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.27437e-04\tAbsError: 1.03466e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.10114e-02\tAbsError: 1.44962e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.73666e-06\tAbsError: 1.78505e-03\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 2.45135e-02\tAbsError: 1.17530e+12\n", + " Region: \"zone_1\"\tRelError: 1.50763e-02\tAbsError: 9.48975e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50732e-02\tAbsError: 8.16700e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.04636e-06\tAbsError: 9.48158e-04\n", + " Region: \"zone_3\"\tRelError: 9.43720e-03\tAbsError: 1.17530e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07669e-04\tAbsError: 6.03664e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.20760e-04\tAbsError: 5.71633e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.20572e-03\tAbsError: 8.18508e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.04685e-06\tAbsError: 9.48336e-04\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 2.99222e-02\tAbsError: 8.60424e+11\n", + " Region: \"zone_1\"\tRelError: 2.23819e-02\tAbsError: 6.93356e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23797e-02\tAbsError: 5.50737e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.22622e-06\tAbsError: 6.92805e-04\n", + " Region: \"zone_3\"\tRelError: 7.54027e-03\tAbsError: 8.60424e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86862e-05\tAbsError: 4.48874e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.82598e-05\tAbsError: 4.11550e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.37110e-03\tAbsError: 5.72719e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.22658e-06\tAbsError: 6.92935e-04\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 1.60040e-01\tAbsError: 4.66943e+12\n", + " Region: \"zone_1\"\tRelError: 1.02794e-01\tAbsError: 3.77337e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02782e-01\tAbsError: 2.76405e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21206e-05\tAbsError: 3.77061e-03\n", + " Region: \"zone_3\"\tRelError: 5.72459e-02\tAbsError: 4.66943e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.28277e-04\tAbsError: 2.52570e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.80621e-04\tAbsError: 2.14373e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.63248e-02\tAbsError: 2.86694e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21225e-05\tAbsError: 3.77131e-03\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 2.28105e-03\tAbsError: 6.92265e+10\n", + " Region: \"zone_1\"\tRelError: 6.75408e-04\tAbsError: 5.60394e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.75228e-04\tAbsError: 3.85646e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80099e-07\tAbsError: 5.60008e-05\n", + " Region: \"zone_3\"\tRelError: 1.60565e-03\tAbsError: 6.92265e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.36216e-06\tAbsError: 3.77142e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.14572e-06\tAbsError: 3.15123e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59196e-03\tAbsError: 3.91857e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80128e-07\tAbsError: 5.60112e-05\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 1.59195e+00\tAbsError: 1.85907e+12\n", + " Region: \"zone_1\"\tRelError: 1.57364e+00\tAbsError: 1.49889e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57363e+00\tAbsError: 1.17095e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.81334e-06\tAbsError: 1.49772e-03\n", + " Region: \"zone_3\"\tRelError: 1.83148e-02\tAbsError: 1.85907e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.70113e-04\tAbsError: 9.90790e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.90839e-04\tAbsError: 8.68280e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79491e-02\tAbsError: 1.21651e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.81412e-06\tAbsError: 1.49800e-03\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 2.08212e-02\tAbsError: 9.87592e+11\n", + " Region: \"zone_1\"\tRelError: 1.28309e-02\tAbsError: 7.97413e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28284e-02\tAbsError: 6.86267e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.55981e-06\tAbsError: 7.96727e-04\n", + " Region: \"zone_3\"\tRelError: 7.99028e-03\tAbsError: 9.87592e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.04681e-05\tAbsError: 5.07253e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.01466e-04\tAbsError: 4.80339e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.79578e-03\tAbsError: 6.87786e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.56023e-06\tAbsError: 7.96876e-04\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 2.55329e-02\tAbsError: 7.22745e+11\n", + " Region: \"zone_1\"\tRelError: 1.91606e-02\tAbsError: 5.82405e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91587e-02\tAbsError: 4.62611e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.86998e-06\tAbsError: 5.81942e-04\n", + " Region: \"zone_3\"\tRelError: 6.37227e-03\tAbsError: 7.22745e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.60920e-05\tAbsError: 3.77048e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.41329e-05\tAbsError: 3.45697e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.23018e-03\tAbsError: 4.81075e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87028e-06\tAbsError: 5.82052e-04\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 1.39952e-01\tAbsError: 3.90892e+12\n", + " Region: \"zone_1\"\tRelError: 9.41522e-02\tAbsError: 3.15881e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.41420e-02\tAbsError: 2.31386e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01466e-05\tAbsError: 3.15650e-03\n", + " Region: \"zone_3\"\tRelError: 4.57994e-02\tAbsError: 3.90892e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.58608e-04\tAbsError: 2.11435e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.02448e-04\tAbsError: 1.79458e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.50282e-02\tAbsError: 2.40000e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01483e-05\tAbsError: 3.15709e-03\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 1.90127e-03\tAbsError: 5.76879e+10\n", + " Region: \"zone_1\"\tRelError: 5.62217e-04\tAbsError: 4.66308e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.62067e-04\tAbsError: 3.21273e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49861e-07\tAbsError: 4.65986e-05\n", + " Region: \"zone_3\"\tRelError: 1.33906e-03\tAbsError: 5.76879e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.29413e-06\tAbsError: 3.14283e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.94598e-06\tAbsError: 2.62595e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32767e-03\tAbsError: 3.26447e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49885e-07\tAbsError: 4.66073e-05\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 4.12520e+00\tAbsError: 1.56012e+12\n", + " Region: \"zone_1\"\tRelError: 4.11005e+00\tAbsError: 1.25785e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.11005e+00\tAbsError: 9.82648e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.03933e-06\tAbsError: 1.25687e-03\n", + " Region: \"zone_3\"\tRelError: 1.51462e-02\tAbsError: 1.56012e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42771e-04\tAbsError: 8.31463e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.60167e-04\tAbsError: 7.28653e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48392e-02\tAbsError: 1.02088e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.03998e-06\tAbsError: 1.25711e-03\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 1.73383e-02\tAbsError: 8.29865e+11\n", + " Region: \"zone_1\"\tRelError: 1.06667e-02\tAbsError: 6.70059e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06646e-02\tAbsError: 5.76663e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.15099e-06\tAbsError: 6.69482e-04\n", + " Region: \"zone_3\"\tRelError: 6.67154e-03\tAbsError: 8.29865e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.60233e-05\tAbsError: 4.26241e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.52661e-05\tAbsError: 4.03624e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.50809e-03\tAbsError: 5.77940e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.15134e-06\tAbsError: 6.69608e-04\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 2.11650e-02\tAbsError: 6.07092e+11\n", + " Region: \"zone_1\"\tRelError: 1.58397e-02\tAbsError: 4.89211e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58381e-02\tAbsError: 3.88585e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57075e-06\tAbsError: 4.88822e-04\n", + " Region: \"zone_3\"\tRelError: 5.32536e-03\tAbsError: 6.07092e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.55182e-05\tAbsError: 3.16713e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.22730e-05\tAbsError: 2.90379e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.20599e-03\tAbsError: 4.04094e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57101e-06\tAbsError: 4.88914e-04\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 1.12877e-01\tAbsError: 3.27227e+12\n", + " Region: \"zone_1\"\tRelError: 7.30603e-02\tAbsError: 2.64433e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.30518e-02\tAbsError: 1.93700e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.49397e-06\tAbsError: 2.64240e-03\n", + " Region: \"zone_3\"\tRelError: 3.98163e-02\tAbsError: 3.27227e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.00143e-04\tAbsError: 1.76997e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.36828e-04\tAbsError: 1.50229e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.91709e-02\tAbsError: 2.00911e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.49535e-06\tAbsError: 2.64289e-03\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 1.58152e-03\tAbsError: 4.80024e+10\n", + " Region: \"zone_1\"\tRelError: 4.68176e-04\tAbsError: 3.88324e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.68051e-04\tAbsError: 2.67375e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24799e-07\tAbsError: 3.88056e-05\n", + " Region: \"zone_3\"\tRelError: 1.11334e-03\tAbsError: 4.80024e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40872e-06\tAbsError: 2.61515e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.95161e-06\tAbsError: 2.18509e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10385e-03\tAbsError: 2.71681e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24819e-07\tAbsError: 3.88129e-05\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 1.41989e+00\tAbsError: 1.30923e+12\n", + " Region: \"zone_1\"\tRelError: 1.40702e+00\tAbsError: 1.05558e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40701e+00\tAbsError: 8.24628e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.38975e-06\tAbsError: 1.05475e-03\n", + " Region: \"zone_3\"\tRelError: 1.28675e-02\tAbsError: 1.30923e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19802e-04\tAbsError: 6.97754e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34399e-04\tAbsError: 6.11477e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26099e-02\tAbsError: 8.56713e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.39030e-06\tAbsError: 1.05495e-03\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 1.46803e-02\tAbsError: 6.97326e+11\n", + " Region: \"zone_1\"\tRelError: 9.04419e-03\tAbsError: 5.63044e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.04238e-03\tAbsError: 4.84564e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80746e-06\tAbsError: 5.62560e-04\n", + " Region: \"zone_3\"\tRelError: 5.63609e-03\tAbsError: 6.97326e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38790e-05\tAbsError: 3.58165e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.16449e-05\tAbsError: 3.39161e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.49876e-03\tAbsError: 4.85637e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80775e-06\tAbsError: 5.62665e-04\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 1.79768e-02\tAbsError: 5.09947e+11\n", + " Region: \"zone_1\"\tRelError: 1.34844e-02\tAbsError: 4.10928e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34831e-02\tAbsError: 3.26405e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31940e-06\tAbsError: 4.10602e-04\n", + " Region: \"zone_3\"\tRelError: 4.49241e-03\tAbsError: 5.09947e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.66329e-05\tAbsError: 2.66034e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.23064e-05\tAbsError: 2.43913e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.39215e-03\tAbsError: 3.39432e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31962e-06\tAbsError: 4.10679e-04\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 9.74351e-02\tAbsError: 2.73932e+12\n", + " Region: \"zone_1\"\tRelError: 6.51446e-02\tAbsError: 2.21365e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.51375e-02\tAbsError: 1.62152e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.11061e-06\tAbsError: 2.21203e-03\n", + " Region: \"zone_3\"\tRelError: 3.22905e-02\tAbsError: 2.73932e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.51299e-04\tAbsError: 1.48171e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.82020e-04\tAbsError: 1.25762e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.17501e-02\tAbsError: 1.68189e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.11176e-06\tAbsError: 2.21244e-03\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 1.31752e-03\tAbsError: 3.99747e+10\n", + " Region: \"zone_1\"\tRelError: 3.89668e-04\tAbsError: 3.23243e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.89564e-04\tAbsError: 2.22641e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03883e-07\tAbsError: 3.23021e-05\n", + " Region: \"zone_3\"\tRelError: 9.27849e-04\tAbsError: 3.99747e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.66987e-06\tAbsError: 2.17781e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.12174e-06\tAbsError: 1.81966e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.19954e-04\tAbsError: 2.26227e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03900e-07\tAbsError: 3.23081e-05\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 6.50991e+00\tAbsError: 1.09870e+12\n", + " Region: \"zone_1\"\tRelError: 6.49923e+00\tAbsError: 8.85831e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.49922e+00\tAbsError: 6.92021e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.84466e-06\tAbsError: 8.85139e-04\n", + " Region: \"zone_3\"\tRelError: 1.06875e-02\tAbsError: 1.09870e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00544e-04\tAbsError: 5.85550e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.12794e-04\tAbsError: 5.13147e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04713e-02\tAbsError: 7.18946e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.84512e-06\tAbsError: 8.85305e-04\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 1.22572e-02\tAbsError: 5.85957e+11\n", + " Region: \"zone_1\"\tRelError: 7.54246e-03\tAbsError: 4.73121e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.54094e-03\tAbsError: 4.07175e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51879e-06\tAbsError: 4.72713e-04\n", + " Region: \"zone_3\"\tRelError: 4.71471e-03\tAbsError: 5.85957e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.36788e-05\tAbsError: 3.00963e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.02049e-05\tAbsError: 2.84994e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.59930e-03\tAbsError: 4.08076e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51904e-06\tAbsError: 4.72802e-04\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 1.49599e-02\tAbsError: 4.28347e+11\n", + " Region: \"zone_1\"\tRelError: 1.11999e-02\tAbsError: 3.45173e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11988e-02\tAbsError: 2.74174e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10828e-06\tAbsError: 3.44899e-04\n", + " Region: \"zone_3\"\tRelError: 3.75999e-03\tAbsError: 4.28347e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.91718e-05\tAbsError: 2.23464e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.39377e-05\tAbsError: 2.04883e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.67577e-03\tAbsError: 2.85117e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10846e-06\tAbsError: 3.44963e-04\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 7.94717e-02\tAbsError: 2.29316e+12\n", + " Region: \"zone_1\"\tRelError: 5.17147e-02\tAbsError: 1.85311e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.17088e-02\tAbsError: 1.35742e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.95247e-06\tAbsError: 1.85176e-03\n", + " Region: \"zone_3\"\tRelError: 2.77569e-02\tAbsError: 2.29316e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10342e-04\tAbsError: 1.24037e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.36052e-04\tAbsError: 1.05279e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73046e-02\tAbsError: 1.40796e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.95344e-06\tAbsError: 1.85210e-03\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 1.09632e-03\tAbsError: 3.32752e+10\n", + " Region: \"zone_1\"\tRelError: 3.24495e-04\tAbsError: 2.69133e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.24408e-04\tAbsError: 1.85337e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.64934e-08\tAbsError: 2.68947e-05\n", + " Region: \"zone_3\"\tRelError: 7.71828e-04\tAbsError: 3.32752e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.05553e-06\tAbsError: 1.81282e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.43177e-06\tAbsError: 1.51470e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.65254e-04\tAbsError: 1.88321e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.65074e-08\tAbsError: 2.68997e-05\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 1.23217e+00\tAbsError: 9.22014e+11\n", + " Region: \"zone_1\"\tRelError: 1.22312e+00\tAbsError: 7.43382e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22312e+00\tAbsError: 5.80736e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.38720e-06\tAbsError: 7.42801e-04\n", + " Region: \"zone_3\"\tRelError: 9.04674e-03\tAbsError: 9.22014e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.43706e-05\tAbsError: 4.91387e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.46502e-05\tAbsError: 4.30627e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.86533e-03\tAbsError: 6.03332e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.38759e-06\tAbsError: 7.42940e-04\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 1.03550e-02\tAbsError: 4.92374e+11\n", + " Region: \"zone_1\"\tRelError: 6.37826e-03\tAbsError: 3.97559e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.37698e-03\tAbsError: 3.42145e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27622e-06\tAbsError: 3.97217e-04\n", + " Region: \"zone_3\"\tRelError: 3.97671e-03\tAbsError: 4.92374e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.51044e-05\tAbsError: 2.52896e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.05880e-05\tAbsError: 2.39478e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87974e-03\tAbsError: 3.42903e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27643e-06\tAbsError: 3.97291e-04\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 1.26649e-02\tAbsError: 3.59804e+11\n", + " Region: \"zone_1\"\tRelError: 9.49701e-03\tAbsError: 2.89939e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.49608e-03\tAbsError: 2.30302e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.30933e-07\tAbsError: 2.89709e-04\n", + " Region: \"zone_3\"\tRelError: 3.16789e-03\tAbsError: 3.59804e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.29029e-05\tAbsError: 1.87706e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.69060e-05\tAbsError: 1.72098e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.09715e-03\tAbsError: 2.39494e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.31084e-07\tAbsError: 2.89763e-04\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 6.79761e-02\tAbsError: 1.91968e+12\n", + " Region: \"zone_1\"\tRelError: 4.52506e-02\tAbsError: 1.55130e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.52457e-02\tAbsError: 1.13634e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.98302e-06\tAbsError: 1.55016e-03\n", + " Region: \"zone_3\"\tRelError: 2.27255e-02\tAbsError: 1.91968e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.76103e-04\tAbsError: 1.03836e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.97631e-04\tAbsError: 8.81322e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23468e-02\tAbsError: 1.17864e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.98382e-06\tAbsError: 1.55045e-03\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 9.13090e-04\tAbsError: 2.77050e+10\n", + " Region: \"zone_1\"\tRelError: 2.70089e-04\tAbsError: 2.24052e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.70017e-04\tAbsError: 1.54308e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.20054e-08\tAbsError: 2.23897e-05\n", + " Region: \"zone_3\"\tRelError: 6.43001e-04\tAbsError: 2.77050e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.54372e-06\tAbsError: 1.50936e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.85693e-06\tAbsError: 1.26114e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.37528e-04\tAbsError: 1.56793e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.20170e-08\tAbsError: 2.23939e-05\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 3.72377e+01\tAbsError: 7.73747e+11\n", + " Region: \"zone_1\"\tRelError: 3.72302e+01\tAbsError: 6.23839e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.72302e+01\tAbsError: 4.87349e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00332e-06\tAbsError: 6.23351e-04\n", + " Region: \"zone_3\"\tRelError: 7.53702e-03\tAbsError: 7.73747e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.08063e-05\tAbsError: 4.12368e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94337e-05\tAbsError: 3.61379e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.38477e-03\tAbsError: 5.06311e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00365e-06\tAbsError: 6.23468e-04\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 8.66203e-03\tAbsError: 4.13738e+11\n", + " Region: \"zone_1\"\tRelError: 5.33103e-03\tAbsError: 3.34065e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.32996e-03\tAbsError: 2.87501e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07240e-06\tAbsError: 3.33777e-04\n", + " Region: \"zone_3\"\tRelError: 3.33100e-03\tAbsError: 4.13738e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.79018e-05\tAbsError: 2.12507e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.25098e-05\tAbsError: 2.01231e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.24952e-03\tAbsError: 2.88138e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07257e-06\tAbsError: 3.33840e-04\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 1.05684e-02\tAbsError: 3.02229e+11\n", + " Region: \"zone_1\"\tRelError: 7.91421e-03\tAbsError: 2.43544e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.91343e-03\tAbsError: 1.93449e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.81968e-07\tAbsError: 2.43350e-04\n", + " Region: \"zone_3\"\tRelError: 2.65422e-03\tAbsError: 3.02229e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.76384e-05\tAbsError: 1.57670e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.10011e-05\tAbsError: 1.44559e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.59480e-03\tAbsError: 2.01171e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.82095e-07\tAbsError: 2.43396e-04\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 5.58791e-02\tAbsError: 1.60702e+12\n", + " Region: \"zone_1\"\tRelError: 3.64983e-02\tAbsError: 1.29864e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.64941e-02\tAbsError: 9.51265e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.17142e-06\tAbsError: 1.29769e-03\n", + " Region: \"zone_3\"\tRelError: 1.93807e-02\tAbsError: 1.60702e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47407e-04\tAbsError: 8.69238e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.65425e-04\tAbsError: 7.37778e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90637e-02\tAbsError: 9.86677e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.17209e-06\tAbsError: 1.29793e-03\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 7.59931e-04\tAbsError: 2.30643e+10\n", + " Region: \"zone_1\"\tRelError: 2.24904e-04\tAbsError: 1.86535e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24844e-04\tAbsError: 1.28462e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.99483e-08\tAbsError: 1.86406e-05\n", + " Region: \"zone_3\"\tRelError: 5.35027e-04\tAbsError: 2.30643e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11778e-06\tAbsError: 1.25653e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.37855e-06\tAbsError: 1.04989e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.30471e-04\tAbsError: 1.30531e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.99579e-08\tAbsError: 1.86441e-05\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 1.03802e+00\tAbsError: 6.49320e+11\n", + " Region: \"zone_1\"\tRelError: 1.03166e+00\tAbsError: 5.23520e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03166e+00\tAbsError: 4.08978e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68117e-06\tAbsError: 5.23111e-04\n", + " Region: \"zone_3\"\tRelError: 6.36363e-03\tAbsError: 6.49320e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94177e-05\tAbsError: 3.46055e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.66571e-05\tAbsError: 3.03265e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.23587e-03\tAbsError: 4.24891e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68144e-06\tAbsError: 5.23209e-04\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 7.30624e-03\tAbsError: 3.47659e+11\n", + " Region: \"zone_1\"\tRelError: 4.49976e-03\tAbsError: 2.80711e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.49886e-03\tAbsError: 2.41585e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.01126e-07\tAbsError: 2.80470e-04\n", + " Region: \"zone_3\"\tRelError: 2.80648e-03\tAbsError: 3.47659e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.18478e-05\tAbsError: 1.78567e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.57197e-05\tAbsError: 1.69092e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73801e-03\tAbsError: 2.42119e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.01272e-07\tAbsError: 2.80522e-04\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 8.92653e-03\tAbsError: 2.53867e+11\n", + " Region: \"zone_1\"\tRelError: 6.69228e-03\tAbsError: 2.04573e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.69162e-03\tAbsError: 1.62494e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.56839e-07\tAbsError: 2.04410e-04\n", + " Region: \"zone_3\"\tRelError: 2.23426e-03\tAbsError: 2.53867e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.32154e-05\tAbsError: 1.32440e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.60399e-05\tAbsError: 1.21427e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18435e-03\tAbsError: 1.68980e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.56946e-07\tAbsError: 2.04448e-04\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 4.74902e-02\tAbsError: 1.34529e+12\n", + " Region: \"zone_1\"\tRelError: 3.15166e-02\tAbsError: 1.08713e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.15132e-02\tAbsError: 7.96334e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.49203e-06\tAbsError: 1.08633e-03\n", + " Region: \"zone_3\"\tRelError: 1.59736e-02\tAbsError: 1.34529e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23409e-04\tAbsError: 7.27668e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.38495e-04\tAbsError: 6.17618e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57082e-02\tAbsError: 8.25979e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.49259e-06\tAbsError: 1.08654e-03\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 6.32834e-04\tAbsError: 1.92022e+10\n", + " Region: \"zone_1\"\tRelError: 1.87207e-04\tAbsError: 1.55294e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87157e-04\tAbsError: 1.06951e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.99083e-08\tAbsError: 1.55187e-05\n", + " Region: \"zone_3\"\tRelError: 4.45627e-04\tAbsError: 1.92022e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.76310e-06\tAbsError: 1.04613e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.98019e-06\tAbsError: 8.74093e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.41834e-04\tAbsError: 1.08673e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.99163e-08\tAbsError: 1.55216e-05\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 6.45457e+00\tAbsError: 5.44904e+11\n", + " Region: \"zone_1\"\tRelError: 6.44926e+00\tAbsError: 4.39333e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.44926e+00\tAbsError: 3.43211e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41082e-06\tAbsError: 4.38989e-04\n", + " Region: \"zone_3\"\tRelError: 5.31306e-03\tAbsError: 5.44904e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.98644e-05\tAbsError: 2.90406e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.59400e-05\tAbsError: 2.54498e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.20584e-03\tAbsError: 3.56565e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41105e-06\tAbsError: 4.39072e-04\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 6.11985e-03\tAbsError: 2.92135e+11\n", + " Region: \"zone_1\"\tRelError: 3.76687e-03\tAbsError: 2.35879e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.76611e-03\tAbsError: 2.03001e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.57208e-07\tAbsError: 2.35676e-04\n", + " Region: \"zone_3\"\tRelError: 2.35298e-03\tAbsError: 2.92135e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.67619e-05\tAbsError: 1.50048e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.00155e-05\tAbsError: 1.42087e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29545e-03\tAbsError: 2.03451e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.57331e-07\tAbsError: 2.35720e-04\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 7.46336e-03\tAbsError: 2.13244e+11\n", + " Region: \"zone_1\"\tRelError: 5.58998e-03\tAbsError: 1.71837e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.58943e-03\tAbsError: 1.36492e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.51734e-07\tAbsError: 1.71701e-04\n", + " Region: \"zone_3\"\tRelError: 1.87338e-03\tAbsError: 2.13244e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95008e-05\tAbsError: 1.11247e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.18734e-05\tAbsError: 1.01997e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83145e-03\tAbsError: 1.41940e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.51823e-07\tAbsError: 1.71733e-04\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 3.92526e-02\tAbsError: 1.12618e+12\n", + " Region: \"zone_1\"\tRelError: 2.57054e-02\tAbsError: 9.10068e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57025e-02\tAbsError: 6.66634e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.92328e-06\tAbsError: 9.09402e-04\n", + " Region: \"zone_3\"\tRelError: 1.35471e-02\tAbsError: 1.12618e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03302e-04\tAbsError: 6.09151e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.15930e-04\tAbsError: 5.17025e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33250e-02\tAbsError: 6.91450e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.92375e-06\tAbsError: 9.09572e-04\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 5.26741e-04\tAbsError: 1.59863e+10\n", + " Region: \"zone_1\"\tRelError: 1.55879e-04\tAbsError: 1.29288e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55838e-04\tAbsError: 8.90391e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.15505e-08\tAbsError: 1.29199e-05\n", + " Region: \"zone_3\"\tRelError: 3.70862e-04\tAbsError: 1.59863e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46785e-06\tAbsError: 8.70926e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.64859e-06\tAbsError: 7.27701e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.67704e-04\tAbsError: 9.04731e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.15572e-08\tAbsError: 1.29224e-05\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 8.48525e-01\tAbsError: 4.57278e+11\n", + " Region: \"zone_1\"\tRelError: 8.44047e-01\tAbsError: 3.68684e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.44046e-01\tAbsError: 2.88019e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18395e-06\tAbsError: 3.68396e-04\n", + " Region: \"zone_3\"\tRelError: 4.47783e-03\tAbsError: 4.57278e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.18446e-05\tAbsError: 2.43706e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.69429e-05\tAbsError: 2.13572e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.38786e-03\tAbsError: 2.99226e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18414e-06\tAbsError: 3.68465e-04\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 5.15623e-03\tAbsError: 2.45478e+11\n", + " Region: \"zone_1\"\tRelError: 3.17531e-03\tAbsError: 1.98207e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.17467e-03\tAbsError: 1.70580e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.36274e-07\tAbsError: 1.98036e-04\n", + " Region: \"zone_3\"\tRelError: 1.98091e-03\tAbsError: 2.45478e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.24874e-05\tAbsError: 1.26084e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.52213e-05\tAbsError: 1.19394e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93257e-03\tAbsError: 1.70958e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.36377e-07\tAbsError: 1.98074e-04\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 6.29361e-03\tAbsError: 1.79121e+11\n", + " Region: \"zone_1\"\tRelError: 4.71763e-03\tAbsError: 1.44341e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.71717e-03\tAbsError: 1.14651e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.63447e-07\tAbsError: 1.44226e-04\n", + " Region: \"zone_3\"\tRelError: 1.57598e-03\tAbsError: 1.79121e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.63802e-05\tAbsError: 9.34456e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.83730e-05\tAbsError: 8.56756e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54076e-03\tAbsError: 1.19227e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.63522e-07\tAbsError: 1.44253e-04\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 3.32097e-02\tAbsError: 9.42759e+11\n", + " Region: \"zone_1\"\tRelError: 2.19920e-02\tAbsError: 7.61845e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19895e-02\tAbsError: 5.58060e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.44717e-06\tAbsError: 7.61287e-04\n", + " Region: \"zone_3\"\tRelError: 1.12177e-02\tAbsError: 9.42759e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.64823e-05\tAbsError: 5.09940e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.70541e-05\tAbsError: 4.32818e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10317e-02\tAbsError: 5.78835e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.44756e-06\tAbsError: 7.61429e-04\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 2.43211e+00\tAbsError: 3.83744e+11\n", + " Region: \"zone_1\"\tRelError: 2.42837e+00\tAbsError: 3.09396e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42837e+00\tAbsError: 2.41703e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.93557e-07\tAbsError: 3.09154e-04\n", + " Region: \"zone_3\"\tRelError: 3.74425e-03\tAbsError: 3.83744e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.51164e-05\tAbsError: 2.04516e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.93951e-05\tAbsError: 1.79228e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.66875e-03\tAbsError: 2.51108e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.93718e-07\tAbsError: 3.09212e-04\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 4.38608e-04\tAbsError: 1.33092e+10\n", + " Region: \"zone_1\"\tRelError: 1.29758e-04\tAbsError: 1.07636e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29724e-04\tAbsError: 7.41283e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.45921e-08\tAbsError: 1.07562e-05\n", + " Region: \"zone_3\"\tRelError: 3.08849e-04\tAbsError: 1.33092e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.22202e-06\tAbsError: 7.25079e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.37250e-06\tAbsError: 6.05838e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.06220e-04\tAbsError: 7.53222e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.45976e-08\tAbsError: 1.07582e-05\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 4.32300e-03\tAbsError: 2.06273e+11\n", + " Region: \"zone_1\"\tRelError: 2.66109e-03\tAbsError: 1.66551e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66055e-03\tAbsError: 1.43337e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.34655e-07\tAbsError: 1.66408e-04\n", + " Region: \"zone_3\"\tRelError: 1.66191e-03\tAbsError: 2.06273e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88962e-05\tAbsError: 1.05947e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.11935e-05\tAbsError: 1.00326e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62129e-03\tAbsError: 1.43654e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.34742e-07\tAbsError: 1.66439e-04\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 5.26921e-03\tAbsError: 1.50459e+11\n", + " Region: \"zone_1\"\tRelError: 3.94709e-03\tAbsError: 1.21244e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.94670e-03\tAbsError: 9.63049e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.89287e-07\tAbsError: 1.21147e-04\n", + " Region: \"zone_3\"\tRelError: 1.32212e-03\tAbsError: 1.50459e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.37592e-05\tAbsError: 7.84927e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.54332e-05\tAbsError: 7.19660e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29254e-03\tAbsError: 1.00149e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.89350e-07\tAbsError: 1.21170e-04\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 2.75541e-02\tAbsError: 7.89210e+11\n", + " Region: \"zone_1\"\tRelError: 1.80774e-02\tAbsError: 6.37764e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80753e-02\tAbsError: 4.67168e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.04859e-06\tAbsError: 6.37297e-04\n", + " Region: \"zone_3\"\tRelError: 9.47673e-03\tAbsError: 7.89210e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.23936e-05\tAbsError: 4.26885e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.12427e-05\tAbsError: 3.62325e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.32104e-03\tAbsError: 4.84559e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.04892e-06\tAbsError: 6.37416e-04\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 6.73974e-01\tAbsError: 3.22034e+11\n", + " Region: \"zone_1\"\tRelError: 6.70822e-01\tAbsError: 2.59642e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.70821e-01\tAbsError: 2.02835e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.33783e-07\tAbsError: 2.59439e-04\n", + " Region: \"zone_3\"\tRelError: 3.15164e-03\tAbsError: 3.22034e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.94688e-05\tAbsError: 1.71628e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.30592e-05\tAbsError: 1.50406e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.08828e-03\tAbsError: 2.10727e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.33918e-07\tAbsError: 2.59488e-04\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 3.65101e-04\tAbsError: 1.10803e+10\n", + " Region: \"zone_1\"\tRelError: 1.08039e-04\tAbsError: 8.96111e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08011e-04\tAbsError: 6.17141e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.87991e-08\tAbsError: 8.95493e-06\n", + " Region: \"zone_3\"\tRelError: 2.57062e-04\tAbsError: 1.10803e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01738e-06\tAbsError: 6.03649e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.14265e-06\tAbsError: 5.04379e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54873e-04\tAbsError: 6.27080e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.88037e-08\tAbsError: 8.95660e-06\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 3.63944e-03\tAbsError: 1.73329e+11\n", + " Region: \"zone_1\"\tRelError: 2.24109e-03\tAbsError: 1.39952e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24065e-03\tAbsError: 1.20444e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.49266e-07\tAbsError: 1.39831e-04\n", + " Region: \"zone_3\"\tRelError: 1.39835e-03\tAbsError: 1.73329e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.58781e-05\tAbsError: 8.90265e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.78085e-05\tAbsError: 8.43027e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36421e-03\tAbsError: 1.20711e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.49339e-07\tAbsError: 1.39857e-04\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 4.43825e-03\tAbsError: 1.26383e+11\n", + " Region: \"zone_1\"\tRelError: 3.32652e-03\tAbsError: 1.01842e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.32619e-03\tAbsError: 8.08945e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.26994e-07\tAbsError: 1.01762e-04\n", + " Region: \"zone_3\"\tRelError: 1.11174e-03\tAbsError: 1.26383e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.15574e-05\tAbsError: 6.59325e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29635e-05\tAbsError: 6.04502e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08689e-03\tAbsError: 8.41232e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.27047e-07\tAbsError: 1.01781e-04\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 2.32385e-02\tAbsError: 6.60672e+11\n", + " Region: \"zone_1\"\tRelError: 1.53656e-02\tAbsError: 5.33891e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53639e-02\tAbsError: 3.91081e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71494e-06\tAbsError: 5.33500e-04\n", + " Region: \"zone_3\"\tRelError: 7.87285e-03\tAbsError: 6.60672e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.06052e-05\tAbsError: 3.57359e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.80137e-05\tAbsError: 3.03313e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.74252e-03\tAbsError: 4.05640e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71522e-06\tAbsError: 5.33600e-04\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 1.29069e+00\tAbsError: 2.70248e+11\n", + " Region: \"zone_1\"\tRelError: 1.28805e+00\tAbsError: 2.17889e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28805e+00\tAbsError: 1.70217e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.99704e-07\tAbsError: 2.17719e-04\n", + " Region: \"zone_3\"\tRelError: 2.63813e-03\tAbsError: 2.70248e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47303e-05\tAbsError: 1.44028e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.77435e-05\tAbsError: 1.26219e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58496e-03\tAbsError: 1.76840e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.99817e-07\tAbsError: 2.17760e-04\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 3.03996e-04\tAbsError: 9.22471e+09\n", + " Region: \"zone_1\"\tRelError: 8.99383e-05\tAbsError: 7.46040e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.99144e-05\tAbsError: 5.13791e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39761e-08\tAbsError: 7.45527e-06\n", + " Region: \"zone_3\"\tRelError: 2.14058e-04\tAbsError: 9.22471e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.46999e-07\tAbsError: 5.02559e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.51293e-07\tAbsError: 4.19913e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12235e-04\tAbsError: 5.22065e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39800e-08\tAbsError: 7.45666e-06\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 3.05334e-03\tAbsError: 1.45647e+11\n", + " Region: \"zone_1\"\tRelError: 1.87963e-03\tAbsError: 1.17600e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87925e-03\tAbsError: 1.01208e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77514e-07\tAbsError: 1.17499e-04\n", + " Region: \"zone_3\"\tRelError: 1.17371e-03\tAbsError: 1.45647e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33424e-05\tAbsError: 7.48081e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.49645e-05\tAbsError: 7.08388e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14502e-03\tAbsError: 1.01432e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77575e-07\tAbsError: 1.17521e-04\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 3.71944e-03\tAbsError: 1.06159e+11\n", + " Region: \"zone_1\"\tRelError: 2.78643e-03\tAbsError: 8.55459e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78616e-03\tAbsError: 6.79500e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.74670e-07\tAbsError: 8.54779e-05\n", + " Region: \"zone_3\"\tRelError: 9.33008e-04\tAbsError: 1.06159e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.70806e-06\tAbsError: 5.53822e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.08892e-05\tAbsError: 5.07771e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.12136e-04\tAbsError: 7.06621e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.74714e-07\tAbsError: 8.54940e-05\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 1.93326e-02\tAbsError: 5.53068e+11\n", + " Region: \"zone_1\"\tRelError: 1.26997e-02\tAbsError: 4.46936e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26982e-02\tAbsError: 3.27385e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43563e-06\tAbsError: 4.46609e-04\n", + " Region: \"zone_3\"\tRelError: 6.63287e-03\tAbsError: 5.53068e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.07328e-05\tAbsError: 2.99155e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.69342e-05\tAbsError: 2.53912e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.52377e-03\tAbsError: 3.39573e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43586e-06\tAbsError: 4.46692e-04\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 5.21663e-01\tAbsError: 2.26789e+11\n", + " Region: \"zone_1\"\tRelError: 5.19444e-01\tAbsError: 1.82851e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.19443e-01\tAbsError: 1.42845e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87184e-07\tAbsError: 1.82708e-04\n", + " Region: \"zone_3\"\tRelError: 2.21861e-03\tAbsError: 2.26789e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07532e-05\tAbsError: 1.20867e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.32817e-05\tAbsError: 1.05922e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17399e-03\tAbsError: 1.48403e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87279e-07\tAbsError: 1.82742e-04\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 2.53061e-04\tAbsError: 7.67988e+09\n", + " Region: \"zone_1\"\tRelError: 7.48822e-05\tAbsError: 6.21103e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.48622e-05\tAbsError: 4.27747e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99609e-08\tAbsError: 6.20676e-06\n", + " Region: \"zone_3\"\tRelError: 1.78179e-04\tAbsError: 7.67988e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.05155e-07\tAbsError: 4.18397e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.91983e-07\tAbsError: 3.49590e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76662e-04\tAbsError: 4.34636e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99641e-08\tAbsError: 6.20791e-06\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 2.56911e-03\tAbsError: 1.22386e+11\n", + " Region: \"zone_1\"\tRelError: 1.58193e-03\tAbsError: 9.88181e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58162e-03\tAbsError: 8.50444e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.17221e-07\tAbsError: 9.87331e-05\n", + " Region: \"zone_3\"\tRelError: 9.87179e-04\tAbsError: 1.22386e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12114e-05\tAbsError: 6.28605e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.25744e-05\tAbsError: 5.95251e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.63076e-04\tAbsError: 8.52327e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.17273e-07\tAbsError: 9.87516e-05\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 3.13034e-03\tAbsError: 8.91719e+10\n", + " Region: \"zone_1\"\tRelError: 2.34604e-03\tAbsError: 7.18571e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34581e-03\tAbsError: 5.70768e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.30718e-07\tAbsError: 7.18000e-05\n", + " Region: \"zone_3\"\tRelError: 7.84298e-04\tAbsError: 8.91719e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.15456e-06\tAbsError: 4.65200e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.14668e-06\tAbsError: 4.26519e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.66766e-04\tAbsError: 5.93549e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.30755e-07\tAbsError: 7.18135e-05\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 1.62684e-02\tAbsError: 4.62990e+11\n", + " Region: \"zone_1\"\tRelError: 1.07455e-02\tAbsError: 3.74144e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07443e-02\tAbsError: 2.74064e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20181e-06\tAbsError: 3.73870e-04\n", + " Region: \"zone_3\"\tRelError: 5.52292e-03\tAbsError: 4.62990e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.24711e-05\tAbsError: 2.50432e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.76628e-05\tAbsError: 2.12558e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.43159e-03\tAbsError: 2.84267e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20200e-06\tAbsError: 3.73940e-04\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 7.74633e-01\tAbsError: 1.90320e+11\n", + " Region: \"zone_1\"\tRelError: 7.72774e-01\tAbsError: 1.53446e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.72774e-01\tAbsError: 1.19874e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.92760e-07\tAbsError: 1.53327e-04\n", + " Region: \"zone_3\"\tRelError: 1.85852e-03\tAbsError: 1.90320e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74160e-05\tAbsError: 1.01431e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.95381e-05\tAbsError: 8.88889e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82107e-03\tAbsError: 1.24538e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.92839e-07\tAbsError: 1.53355e-04\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 2.10699e-04\tAbsError: 6.39376e+09\n", + " Region: \"zone_1\"\tRelError: 6.23380e-05\tAbsError: 5.17089e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.23214e-05\tAbsError: 3.56114e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66181e-08\tAbsError: 5.16733e-06\n", + " Region: \"zone_3\"\tRelError: 1.48361e-04\tAbsError: 6.39376e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.87064e-07\tAbsError: 3.48330e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.59352e-07\tAbsError: 2.91046e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47098e-04\tAbsError: 3.61849e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66208e-08\tAbsError: 5.16829e-06\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 2.15638e-03\tAbsError: 1.02840e+11\n", + " Region: \"zone_1\"\tRelError: 1.32752e-03\tAbsError: 8.30359e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32725e-03\tAbsError: 7.14620e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.66558e-07\tAbsError: 8.29645e-05\n", + " Region: \"zone_3\"\tRelError: 8.28863e-04\tAbsError: 1.02840e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.42087e-06\tAbsError: 5.28211e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.05662e-05\tAbsError: 5.00184e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.08610e-04\tAbsError: 7.16202e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.66601e-07\tAbsError: 8.29800e-05\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 2.62514e-03\tAbsError: 7.49029e+10\n", + " Region: \"zone_1\"\tRelError: 1.96676e-03\tAbsError: 6.03587e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96657e-03\tAbsError: 4.79435e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93799e-07\tAbsError: 6.03108e-05\n", + " Region: \"zone_3\"\tRelError: 6.58382e-04\tAbsError: 7.49029e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.84972e-06\tAbsError: 3.90760e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.68309e-06\tAbsError: 3.58268e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.43655e-04\tAbsError: 4.98571e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93830e-07\tAbsError: 6.03221e-05\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 1.35594e-02\tAbsError: 3.87583e+11\n", + " Region: \"zone_1\"\tRelError: 8.91520e-03\tAbsError: 3.13207e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.91420e-03\tAbsError: 2.29427e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00607e-06\tAbsError: 3.12978e-04\n", + " Region: \"zone_3\"\tRelError: 4.64417e-03\tAbsError: 3.87583e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.55530e-05\tAbsError: 2.09644e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.98989e-05\tAbsError: 1.77938e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.56771e-03\tAbsError: 2.37968e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00623e-06\tAbsError: 3.13036e-04\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 3.94952e-01\tAbsError: 1.59714e+11\n", + " Region: \"zone_1\"\tRelError: 3.93390e-01\tAbsError: 1.28771e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.93389e-01\tAbsError: 1.00597e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.13519e-07\tAbsError: 1.28670e-04\n", + " Region: \"zone_3\"\tRelError: 1.56199e-03\tAbsError: 1.59714e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46152e-05\tAbsError: 8.51196e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.63960e-05\tAbsError: 7.45946e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53056e-03\tAbsError: 1.04511e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.13586e-07\tAbsError: 1.28694e-04\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 1.75402e-04\tAbsError: 5.32300e+09\n", + " Region: \"zone_1\"\tRelError: 5.19011e-05\tAbsError: 4.30493e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.18873e-05\tAbsError: 2.96476e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38351e-08\tAbsError: 4.30197e-06\n", + " Region: \"zone_3\"\tRelError: 1.23501e-04\tAbsError: 5.32300e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.88750e-07\tAbsError: 2.89996e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.48932e-07\tAbsError: 2.42305e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22449e-04\tAbsError: 3.01251e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38374e-08\tAbsError: 4.30277e-06\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 1.81370e-03\tAbsError: 8.64151e+10\n", + " Region: \"zone_1\"\tRelError: 1.11675e-03\tAbsError: 6.97743e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11652e-03\tAbsError: 6.00488e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23986e-07\tAbsError: 6.97142e-05\n", + " Region: \"zone_3\"\tRelError: 6.96948e-04\tAbsError: 8.64151e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.91623e-06\tAbsError: 4.43851e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.87864e-06\tAbsError: 4.20300e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.79929e-04\tAbsError: 6.01818e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24022e-07\tAbsError: 6.97273e-05\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 2.20810e-03\tAbsError: 6.29171e+10\n", + " Region: \"zone_1\"\tRelError: 1.65478e-03\tAbsError: 5.07003e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65462e-03\tAbsError: 4.02717e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62788e-07\tAbsError: 5.06600e-05\n", + " Region: \"zone_3\"\tRelError: 5.53322e-04\tAbsError: 6.29171e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.75363e-06\tAbsError: 3.28232e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.45364e-06\tAbsError: 3.00939e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.40952e-04\tAbsError: 4.18791e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62814e-07\tAbsError: 5.06695e-05\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 1.13925e-02\tAbsError: 3.24457e+11\n", + " Region: \"zone_1\"\tRelError: 7.51929e-03\tAbsError: 2.62195e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.51845e-03\tAbsError: 1.92061e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.42211e-07\tAbsError: 2.62003e-04\n", + " Region: \"zone_3\"\tRelError: 3.87321e-03\tAbsError: 3.24457e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.97631e-05\tAbsError: 1.75500e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.34013e-05\tAbsError: 1.48958e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.80920e-03\tAbsError: 1.99210e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.42347e-07\tAbsError: 2.62052e-04\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 4.94134e-01\tAbsError: 1.34031e+11\n", + " Region: \"zone_1\"\tRelError: 4.92825e-01\tAbsError: 1.08063e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.92824e-01\tAbsError: 8.44201e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47021e-07\tAbsError: 1.07979e-04\n", + " Region: \"zone_3\"\tRelError: 1.30916e-03\tAbsError: 1.34031e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.22651e-05\tAbsError: 7.14316e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.37595e-05\tAbsError: 6.25991e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28279e-03\tAbsError: 8.77047e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47078e-07\tAbsError: 1.07999e-04\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 1.46036e-04\tAbsError: 4.43157e+09\n", + " Region: \"zone_1\"\tRelError: 4.32075e-05\tAbsError: 3.58400e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.31960e-05\tAbsError: 2.46826e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15182e-08\tAbsError: 3.58153e-06\n", + " Region: \"zone_3\"\tRelError: 1.02829e-04\tAbsError: 4.43157e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.06901e-07\tAbsError: 2.41430e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.57004e-07\tAbsError: 2.01727e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01953e-04\tAbsError: 2.50801e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15201e-08\tAbsError: 3.58220e-06\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 1.52283e-03\tAbsError: 7.26137e+10\n", + " Region: \"zone_1\"\tRelError: 9.37513e-04\tAbsError: 5.86307e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.37325e-04\tAbsError: 5.04585e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88213e-07\tAbsError: 5.85802e-05\n", + " Region: \"zone_3\"\tRelError: 5.85312e-04\tAbsError: 7.26137e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.65196e-06\tAbsError: 3.72963e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.46068e-06\tAbsError: 3.53174e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.71011e-04\tAbsError: 5.05702e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88244e-07\tAbsError: 5.85912e-05\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 1.85263e-03\tAbsError: 5.28493e+10\n", + " Region: \"zone_1\"\tRelError: 1.38806e-03\tAbsError: 4.25873e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38792e-03\tAbsError: 3.38275e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36739e-07\tAbsError: 4.25535e-05\n", + " Region: \"zone_3\"\tRelError: 4.64574e-04\tAbsError: 5.28493e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.83296e-06\tAbsError: 2.75709e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.42096e-06\tAbsError: 2.52784e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54184e-04\tAbsError: 3.51777e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36761e-07\tAbsError: 4.25615e-05\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 9.50784e-03\tAbsError: 2.71613e+11\n", + " Region: \"zone_1\"\tRelError: 6.25526e-03\tAbsError: 2.19491e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.25455e-03\tAbsError: 1.60780e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.05040e-07\tAbsError: 2.19331e-04\n", + " Region: \"zone_3\"\tRelError: 3.25258e-03\tAbsError: 2.71613e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.49152e-05\tAbsError: 1.46916e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.79607e-05\tAbsError: 1.24697e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.19900e-03\tAbsError: 1.66765e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.05154e-07\tAbsError: 2.19372e-04\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 2.93673e-01\tAbsError: 1.12477e+11\n", + " Region: \"zone_1\"\tRelError: 2.92573e-01\tAbsError: 9.06857e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.92573e-01\tAbsError: 7.08445e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.91217e-07\tAbsError: 9.06148e-05\n", + " Region: \"zone_3\"\tRelError: 1.09979e-03\tAbsError: 1.12477e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02927e-05\tAbsError: 5.99447e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.15467e-05\tAbsError: 5.25326e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07766e-03\tAbsError: 7.36010e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.91264e-07\tAbsError: 9.06318e-05\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 1.21574e-04\tAbsError: 3.68942e+09\n", + " Region: \"zone_1\"\tRelError: 3.59729e-05\tAbsError: 2.98379e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59633e-05\tAbsError: 2.05491e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.58928e-09\tAbsError: 2.98174e-06\n", + " Region: \"zone_3\"\tRelError: 8.56010e-05\tAbsError: 3.68942e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.38758e-07\tAbsError: 2.00998e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.80471e-07\tAbsError: 1.67944e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 8.48722e-05\tAbsError: 2.08800e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.59082e-09\tAbsError: 2.98230e-06\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 1.28047e-03\tAbsError: 6.10166e+10\n", + " Region: \"zone_1\"\tRelError: 7.88404e-04\tAbsError: 4.92668e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.88246e-04\tAbsError: 4.23998e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58154e-07\tAbsError: 4.92244e-05\n", + " Region: \"zone_3\"\tRelError: 4.92063e-04\tAbsError: 6.10166e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.58956e-06\tAbsError: 3.13398e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.26911e-06\tAbsError: 2.96769e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.80046e-04\tAbsError: 4.24936e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58179e-07\tAbsError: 4.92336e-05\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 1.55768e-03\tAbsError: 4.43925e+10\n", + " Region: \"zone_1\"\tRelError: 1.16730e-03\tAbsError: 3.57726e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16719e-03\tAbsError: 2.84146e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14858e-07\tAbsError: 3.57442e-05\n", + " Region: \"zone_3\"\tRelError: 3.90380e-04\tAbsError: 4.43925e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.05959e-06\tAbsError: 2.31591e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.55350e-06\tAbsError: 2.12334e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.81652e-04\tAbsError: 2.95487e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14877e-07\tAbsError: 3.57509e-05\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 7.97971e-03\tAbsError: 2.27375e+11\n", + " Region: \"zone_1\"\tRelError: 5.26403e-03\tAbsError: 1.83743e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.26343e-03\tAbsError: 1.34594e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.90210e-07\tAbsError: 1.83608e-04\n", + " Region: \"zone_3\"\tRelError: 2.71568e-03\tAbsError: 2.27375e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.08575e-05\tAbsError: 1.22988e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.34071e-05\tAbsError: 1.04388e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67083e-03\tAbsError: 1.39604e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.90305e-07\tAbsError: 1.83642e-04\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 3.26346e-01\tAbsError: 9.43899e+10\n", + " Region: \"zone_1\"\tRelError: 3.25424e-01\tAbsError: 7.61025e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.25424e-01\tAbsError: 5.94521e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.44387e-07\tAbsError: 7.60431e-05\n", + " Region: \"zone_3\"\tRelError: 9.22119e-04\tAbsError: 9.43899e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.63755e-06\tAbsError: 5.03051e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.68997e-06\tAbsError: 4.40849e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.03547e-04\tAbsError: 6.17653e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.44426e-07\tAbsError: 7.60573e-05\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 1.01218e-04\tAbsError: 3.07157e+09\n", + " Region: \"zone_1\"\tRelError: 2.99478e-05\tAbsError: 2.48411e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.99398e-05\tAbsError: 1.71078e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.98339e-09\tAbsError: 2.48240e-06\n", + " Region: \"zone_3\"\tRelError: 7.12706e-05\tAbsError: 3.07157e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.82027e-07\tAbsError: 1.67339e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.16754e-07\tAbsError: 1.39818e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 7.06638e-05\tAbsError: 1.73833e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.98467e-09\tAbsError: 2.48286e-06\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 1.07536e-03\tAbsError: 5.12717e+10\n", + " Region: \"zone_1\"\tRelError: 6.62050e-04\tAbsError: 4.13984e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.61917e-04\tAbsError: 3.56281e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32895e-07\tAbsError: 4.13628e-05\n", + " Region: \"zone_3\"\tRelError: 4.13313e-04\tAbsError: 5.12717e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.69687e-06\tAbsError: 2.63345e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.26789e-06\tAbsError: 2.49372e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.03215e-04\tAbsError: 3.57070e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32917e-07\tAbsError: 4.13705e-05\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 1.30736e-03\tAbsError: 3.72889e+10\n", + " Region: \"zone_1\"\tRelError: 9.79555e-04\tAbsError: 3.00484e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.79458e-04\tAbsError: 2.38677e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.64790e-08\tAbsError: 3.00245e-05\n", + " Region: \"zone_3\"\tRelError: 3.27810e-04\tAbsError: 3.72889e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.41000e-06\tAbsError: 1.94532e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.82487e-06\tAbsError: 1.78357e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.20478e-04\tAbsError: 2.48204e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.64946e-08\tAbsError: 3.00301e-05\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 6.66573e-03\tAbsError: 1.90343e+11\n", + " Region: \"zone_1\"\tRelError: 4.38734e-03\tAbsError: 1.53817e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.38685e-03\tAbsError: 1.12672e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.94082e-07\tAbsError: 1.53704e-04\n", + " Region: \"zone_3\"\tRelError: 2.27839e-03\tAbsError: 1.90343e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74603e-05\tAbsError: 1.02957e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.95946e-05\tAbsError: 8.73859e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24084e-03\tAbsError: 1.16867e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.94162e-07\tAbsError: 1.53733e-04\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 2.15286e-01\tAbsError: 7.92111e+10\n", + " Region: \"zone_1\"\tRelError: 2.14511e-01\tAbsError: 6.38645e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.14511e-01\tAbsError: 4.98916e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.05087e-07\tAbsError: 6.38146e-05\n", + " Region: \"zone_3\"\tRelError: 7.74408e-04\tAbsError: 7.92111e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.24852e-06\tAbsError: 4.22155e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.13169e-06\tAbsError: 3.69956e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.58823e-04\tAbsError: 5.18328e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.05120e-07\tAbsError: 6.38266e-05\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 8.42647e-05\tAbsError: 2.55719e+09\n", + " Region: \"zone_1\"\tRelError: 2.49331e-05\tAbsError: 2.06810e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49265e-05\tAbsError: 1.42428e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.64643e-09\tAbsError: 2.06668e-06\n", + " Region: \"zone_3\"\tRelError: 5.93316e-05\tAbsError: 2.55719e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.34797e-07\tAbsError: 1.39315e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.63708e-07\tAbsError: 1.16404e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.88265e-05\tAbsError: 1.44722e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.64750e-09\tAbsError: 2.06706e-06\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 9.04042e-04\tAbsError: 4.30831e+10\n", + " Region: \"zone_1\"\tRelError: 5.56624e-04\tAbsError: 3.47867e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.56512e-04\tAbsError: 2.99380e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11671e-07\tAbsError: 3.47568e-05\n", + " Region: \"zone_3\"\tRelError: 3.47418e-04\tAbsError: 4.30831e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.94672e-06\tAbsError: 2.21286e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.42655e-06\tAbsError: 2.09545e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.38933e-04\tAbsError: 3.00042e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11689e-07\tAbsError: 3.47633e-05\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 1.09891e-03\tAbsError: 3.13220e+10\n", + " Region: \"zone_1\"\tRelError: 8.23487e-04\tAbsError: 2.52401e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.23405e-04\tAbsError: 2.00485e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.10407e-08\tAbsError: 2.52201e-05\n", + " Region: \"zone_3\"\tRelError: 2.75427e-04\tAbsError: 3.13220e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.86433e-06\tAbsError: 1.63404e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.21282e-06\tAbsError: 1.49817e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.69269e-04\tAbsError: 2.08487e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.10538e-08\tAbsError: 2.52248e-05\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 5.59011e-03\tAbsError: 1.59342e+11\n", + " Region: \"zone_1\"\tRelError: 3.68631e-03\tAbsError: 1.28764e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.68590e-03\tAbsError: 9.43213e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.13611e-07\tAbsError: 1.28670e-04\n", + " Region: \"zone_3\"\tRelError: 1.90380e-03\tAbsError: 1.59342e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46166e-05\tAbsError: 8.61882e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.64034e-05\tAbsError: 7.31534e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87236e-03\tAbsError: 9.78326e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.13678e-07\tAbsError: 1.28694e-04\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 2.20185e-01\tAbsError: 6.64732e+10\n", + " Region: \"zone_1\"\tRelError: 2.19536e-01\tAbsError: 5.35945e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19536e-01\tAbsError: 4.18686e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72107e-07\tAbsError: 5.35526e-05\n", + " Region: \"zone_3\"\tRelError: 6.49471e-04\tAbsError: 6.64732e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.08291e-06\tAbsError: 3.54269e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.82407e-06\tAbsError: 3.10463e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.36392e-04\tAbsError: 4.34976e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72135e-07\tAbsError: 5.35627e-05\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 7.59358e-04\tAbsError: 3.62023e+10\n", + " Region: \"zone_1\"\tRelError: 4.67507e-04\tAbsError: 2.92309e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.67413e-04\tAbsError: 2.51566e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.38357e-08\tAbsError: 2.92058e-05\n", + " Region: \"zone_3\"\tRelError: 2.91851e-04\tAbsError: 3.62023e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.31640e-06\tAbsError: 1.85945e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.71959e-06\tAbsError: 1.76079e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.84721e-04\tAbsError: 2.52123e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.38509e-08\tAbsError: 2.92112e-05\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 9.22539e-04\tAbsError: 2.63100e+10\n", + " Region: \"zone_1\"\tRelError: 6.91236e-04\tAbsError: 2.12013e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.91168e-04\tAbsError: 1.68404e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.80728e-08\tAbsError: 2.11844e-05\n", + " Region: \"zone_3\"\tRelError: 2.31303e-04\tAbsError: 2.63100e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.40599e-06\tAbsError: 1.37256e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.69872e-06\tAbsError: 1.25843e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.26130e-04\tAbsError: 1.75125e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.80838e-08\tAbsError: 2.11884e-05\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 1.56117e-01\tAbsError: 5.57837e+10\n", + " Region: \"zone_1\"\tRelError: 1.55571e-01\tAbsError: 4.49760e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55571e-01\tAbsError: 3.51357e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44431e-07\tAbsError: 4.49409e-05\n", + " Region: \"zone_3\"\tRelError: 5.45315e-04\tAbsError: 5.57837e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.10471e-06\tAbsError: 2.97299e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.72667e-06\tAbsError: 2.60538e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.34339e-04\tAbsError: 3.65028e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44454e-07\tAbsError: 4.49493e-05\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 4.67262e-03\tAbsError: 1.33390e+11\n", + " Region: \"zone_1\"\tRelError: 3.07643e-03\tAbsError: 1.07793e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.07609e-03\tAbsError: 7.89592e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.46246e-07\tAbsError: 1.07714e-04\n", + " Region: \"zone_3\"\tRelError: 1.59618e-03\tAbsError: 1.33390e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.22359e-05\tAbsError: 7.21507e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.37316e-05\tAbsError: 6.12389e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56987e-03\tAbsError: 8.18986e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.46302e-07\tAbsError: 1.07734e-04\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:30:08\u001b[0m.\u001b[1;36m976\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:30:08\u001b[0m.\u001b[1;36m999\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.75 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:30:09\u001b[0m.\u001b[1;36m013\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: 0.75\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31686\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 6.38293e-04\tAbsError: 3.04205e+10\n", + " Region: \"zone_1\"\tRelError: 3.92996e-04\tAbsError: 2.45625e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.92917e-04\tAbsError: 2.11388e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.88492e-08\tAbsError: 2.45413e-05\n", + " Region: \"zone_3\"\tRelError: 2.45297e-04\tAbsError: 3.04205e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.78673e-06\tAbsError: 1.56248e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.12553e-06\tAbsError: 1.47957e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39305e-04\tAbsError: 2.11856e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.88620e-08\tAbsError: 2.45459e-05\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 7.75290e-04\tAbsError: 2.20999e+10\n", + " Region: \"zone_1\"\tRelError: 5.80964e-04\tAbsError: 1.78087e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.80907e-04\tAbsError: 1.41456e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.71799e-08\tAbsError: 1.77946e-05\n", + " Region: \"zone_3\"\tRelError: 1.94326e-04\tAbsError: 2.20999e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.02099e-06\tAbsError: 1.15293e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.26687e-06\tAbsError: 1.05706e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89981e-04\tAbsError: 1.47102e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.71892e-08\tAbsError: 1.77979e-05\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 1.50615e-01\tAbsError: 4.68131e+10\n", + " Region: \"zone_1\"\tRelError: 1.50158e-01\tAbsError: 3.77434e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50157e-01\tAbsError: 2.94855e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21205e-07\tAbsError: 3.77140e-05\n", + " Region: \"zone_3\"\tRelError: 4.57422e-04\tAbsError: 4.68131e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.28383e-06\tAbsError: 2.49490e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.80578e-06\tAbsError: 2.18641e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.48212e-04\tAbsError: 3.06328e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21224e-07\tAbsError: 3.77210e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 6.15227e+00\tAbsError: 1.83867e+16\n", + " Region: \"zone_1\"\tRelError: 4.61964e+00\tAbsError: 2.78487e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.61964e+00\tAbsError: 2.78470e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.53337e-09\tAbsError: 1.72057e-06\n", + " Region: \"zone_3\"\tRelError: 1.53263e+00\tAbsError: 1.83867e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53017e-01\tAbsError: 9.23810e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.52269e-01\tAbsError: 9.14863e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27343e-01\tAbsError: 2.78470e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.53426e-09\tAbsError: 1.72090e-06\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 3.91651e-03\tAbsError: 1.11664e+11\n", + " Region: \"zone_1\"\tRelError: 2.58202e-03\tAbsError: 9.02364e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58173e-03\tAbsError: 6.60991e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89853e-07\tAbsError: 9.01703e-05\n", + " Region: \"zone_3\"\tRelError: 1.33449e-03\tAbsError: 1.11664e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02431e-05\tAbsError: 6.03996e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.14952e-05\tAbsError: 5.12649e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31246e-03\tAbsError: 6.85598e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89900e-07\tAbsError: 9.01872e-05\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 5.36202e-04\tAbsError: 2.55620e+10\n", + " Region: \"zone_1\"\tRelError: 3.30122e-04\tAbsError: 2.06396e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.30056e-04\tAbsError: 1.77628e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.62563e-08\tAbsError: 2.06218e-05\n", + " Region: \"zone_3\"\tRelError: 2.06080e-04\tAbsError: 2.55620e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.34167e-06\tAbsError: 1.31293e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.62636e-06\tAbsError: 1.24327e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01046e-04\tAbsError: 1.78021e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.62670e-08\tAbsError: 2.06257e-05\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 6.50967e-04\tAbsError: 1.85636e+10\n", + " Region: \"zone_1\"\tRelError: 4.87762e-04\tAbsError: 1.49590e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.87714e-04\tAbsError: 1.18821e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.80302e-08\tAbsError: 1.49471e-05\n", + " Region: \"zone_3\"\tRelError: 1.63205e-04\tAbsError: 1.85636e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.69760e-06\tAbsError: 9.68441e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.90414e-06\tAbsError: 8.87915e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59556e-04\tAbsError: 1.23563e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.80379e-08\tAbsError: 1.49499e-05\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 1.12293e-01\tAbsError: 3.92852e+10\n", + " Region: \"zone_1\"\tRelError: 1.11909e-01\tAbsError: 3.16739e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11909e-01\tAbsError: 2.47440e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01714e-07\tAbsError: 3.16492e-05\n", + " Region: \"zone_3\"\tRelError: 3.84006e-04\tAbsError: 3.92852e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.59494e-06\tAbsError: 2.09370e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.03296e-06\tAbsError: 1.83482e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.76276e-04\tAbsError: 2.57067e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01730e-07\tAbsError: 3.16551e-05\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 3.27518e-03\tAbsError: 9.34777e+10\n", + " Region: \"zone_1\"\tRelError: 2.15683e-03\tAbsError: 7.55396e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.15658e-03\tAbsError: 5.53336e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.42645e-07\tAbsError: 7.54843e-05\n", + " Region: \"zone_3\"\tRelError: 1.11835e-03\tAbsError: 9.34777e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.57479e-06\tAbsError: 5.05623e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.62296e-06\tAbsError: 4.29154e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09991e-03\tAbsError: 5.73934e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.42684e-07\tAbsError: 7.54984e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.58755e+00\tAbsError: 1.08144e+16\n", + " Region: \"zone_1\"\tRelError: 1.32553e-01\tAbsError: 7.50380e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32380e-01\tAbsError: 2.21512e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72608e-04\tAbsError: 5.28868e-02\n", + " Region: \"zone_3\"\tRelError: 1.45500e+00\tAbsError: 1.08144e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.44967e-01\tAbsError: 5.29268e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.90565e-01\tAbsError: 5.52175e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.19291e-01\tAbsError: 2.21629e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72691e-04\tAbsError: 5.29158e-02\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 4.50671e-04\tAbsError: 2.14795e+10\n", + " Region: \"zone_1\"\tRelError: 2.77475e-04\tAbsError: 1.73433e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.77420e-04\tAbsError: 1.49259e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.56745e-08\tAbsError: 1.73283e-05\n", + " Region: \"zone_3\"\tRelError: 1.73196e-04\tAbsError: 2.14795e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.96768e-06\tAbsError: 1.10325e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.20690e-06\tAbsError: 1.04471e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68965e-04\tAbsError: 1.49589e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.56835e-08\tAbsError: 1.73316e-05\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 5.46987e-04\tAbsError: 1.55931e+10\n", + " Region: \"zone_1\"\tRelError: 4.09879e-04\tAbsError: 1.25653e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.09839e-04\tAbsError: 9.98074e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.03445e-08\tAbsError: 1.25553e-05\n", + " Region: \"zone_3\"\tRelError: 1.37108e-04\tAbsError: 1.55931e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42595e-06\tAbsError: 8.13474e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.59944e-06\tAbsError: 7.45834e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34042e-04\tAbsError: 1.03791e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.03510e-08\tAbsError: 1.25577e-05\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 1.03969e-01\tAbsError: 3.29677e+10\n", + " Region: \"zone_1\"\tRelError: 1.03647e-01\tAbsError: 2.65805e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03647e-01\tAbsError: 2.07649e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.53573e-08\tAbsError: 2.65597e-05\n", + " Region: \"zone_3\"\tRelError: 3.22155e-04\tAbsError: 3.29677e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.01685e-06\tAbsError: 1.75701e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.38443e-06\tAbsError: 1.53976e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.15668e-04\tAbsError: 2.15729e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.53712e-08\tAbsError: 2.65647e-05\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 2.74417e-03\tAbsError: 7.82530e+10\n", + " Region: \"zone_1\"\tRelError: 1.80881e-03\tAbsError: 6.32365e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80861e-03\tAbsError: 4.63214e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03125e-07\tAbsError: 6.31902e-05\n", + " Region: \"zone_3\"\tRelError: 9.35357e-04\tAbsError: 7.82530e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.17825e-06\tAbsError: 4.23272e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.05571e-06\tAbsError: 3.59258e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.19920e-04\tAbsError: 4.80458e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03158e-07\tAbsError: 6.32020e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.54540e+01\tAbsError: 3.85860e+15\n", + " Region: \"zone_1\"\tRelError: 2.27614e+01\tAbsError: 4.03512e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27601e+01\tAbsError: 2.14211e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31114e-03\tAbsError: 4.01370e-01\n", + " Region: \"zone_3\"\tRelError: 2.69263e+00\tAbsError: 3.85860e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04610e-01\tAbsError: 1.85516e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.26079e-01\tAbsError: 2.00344e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36062e+00\tAbsError: 2.20161e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31114e-03\tAbsError: 4.01370e-01\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 3.78620e-04\tAbsError: 1.80490e+10\n", + " Region: \"zone_1\"\tRelError: 2.33105e-04\tAbsError: 1.45734e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.33059e-04\tAbsError: 1.25421e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.67828e-08\tAbsError: 1.45608e-05\n", + " Region: \"zone_3\"\tRelError: 1.45514e-04\tAbsError: 1.80490e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.65342e-06\tAbsError: 9.27047e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.85444e-06\tAbsError: 8.77856e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41960e-04\tAbsError: 1.25698e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.67903e-08\tAbsError: 1.45636e-05\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 4.59328e-04\tAbsError: 1.30979e+10\n", + " Region: \"zone_1\"\tRelError: 3.44173e-04\tAbsError: 1.05546e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.44139e-04\tAbsError: 8.38365e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.38887e-08\tAbsError: 1.05462e-05\n", + " Region: \"zone_3\"\tRelError: 1.15155e-04\tAbsError: 1.30979e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19778e-06\tAbsError: 6.83305e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34350e-06\tAbsError: 6.26487e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12580e-04\tAbsError: 8.71827e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.38942e-08\tAbsError: 1.05482e-05\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 8.02898e-02\tAbsError: 2.76662e+10\n", + " Region: \"zone_1\"\tRelError: 8.00194e-02\tAbsError: 2.23061e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.00193e-02\tAbsError: 1.74257e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.16311e-08\tAbsError: 2.22887e-05\n", + " Region: \"zone_3\"\tRelError: 2.70419e-04\tAbsError: 2.76662e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.53171e-06\tAbsError: 1.47447e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.84017e-06\tAbsError: 1.29215e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64976e-04\tAbsError: 1.81037e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.16427e-08\tAbsError: 2.22928e-05\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 2.29553e-03\tAbsError: 6.55079e+10\n", + " Region: \"zone_1\"\tRelError: 1.51192e-03\tAbsError: 5.29372e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51175e-03\tAbsError: 3.87770e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70042e-07\tAbsError: 5.28984e-05\n", + " Region: \"zone_3\"\tRelError: 7.83609e-04\tAbsError: 6.55079e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.00910e-06\tAbsError: 3.54334e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.74365e-06\tAbsError: 3.00746e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.70686e-04\tAbsError: 4.02206e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70070e-07\tAbsError: 5.29083e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.14044e+01\tAbsError: 5.34143e+14\n", + " Region: \"zone_1\"\tRelError: 5.87080e+01\tAbsError: 1.24136e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.87076e+01\tAbsError: 1.64866e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.98910e-04\tAbsError: 1.23971e-01\n", + " Region: \"zone_3\"\tRelError: 2.69641e+00\tAbsError: 5.34143e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.93073e-02\tAbsError: 2.70239e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.82172e-02\tAbsError: 2.63904e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.65849e+00\tAbsError: 1.73634e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.98974e-04\tAbsError: 1.23994e-01\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 3.18203e-04\tAbsError: 1.51664e+10\n", + " Region: \"zone_1\"\tRelError: 1.95915e-04\tAbsError: 1.22459e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95875e-04\tAbsError: 1.05390e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.93111e-08\tAbsError: 1.22353e-05\n", + " Region: \"zone_3\"\tRelError: 1.22289e-04\tAbsError: 1.51664e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38936e-06\tAbsError: 7.78988e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.55827e-06\tAbsError: 7.37655e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19302e-04\tAbsError: 1.05623e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.93175e-08\tAbsError: 1.22376e-05\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 3.85920e-04\tAbsError: 1.10020e+10\n", + " Region: \"zone_1\"\tRelError: 2.89183e-04\tAbsError: 8.86571e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.89154e-04\tAbsError: 7.04212e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.84659e-08\tAbsError: 8.85867e-06\n", + " Region: \"zone_3\"\tRelError: 9.67374e-05\tAbsError: 1.10020e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00611e-06\tAbsError: 5.73965e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.12852e-06\tAbsError: 5.26237e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.45743e-05\tAbsError: 7.32319e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.84705e-08\tAbsError: 8.86033e-06\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 7.22123e-02\tAbsError: 2.32172e+10\n", + " Region: \"zone_1\"\tRelError: 7.19854e-02\tAbsError: 1.87190e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.19854e-02\tAbsError: 1.46235e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.01121e-08\tAbsError: 1.87044e-05\n", + " Region: \"zone_3\"\tRelError: 2.26884e-04\tAbsError: 2.32172e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12459e-06\tAbsError: 1.23736e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.38345e-06\tAbsError: 1.08436e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.22316e-04\tAbsError: 1.51925e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.01218e-08\tAbsError: 1.87079e-05\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 1.92284e-03\tAbsError: 5.48387e+10\n", + " Region: \"zone_1\"\tRelError: 1.26728e-03\tAbsError: 4.43153e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26714e-03\tAbsError: 3.24614e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42348e-07\tAbsError: 4.42828e-05\n", + " Region: \"zone_3\"\tRelError: 6.55567e-04\tAbsError: 5.48387e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.03042e-06\tAbsError: 2.96623e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.64533e-06\tAbsError: 2.51763e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.44748e-04\tAbsError: 3.36698e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42371e-07\tAbsError: 4.42911e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.80424e+00\tAbsError: 1.78669e+14\n", + " Region: \"zone_1\"\tRelError: 1.77487e+00\tAbsError: 1.77363e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77430e+00\tAbsError: 7.27473e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.70805e-04\tAbsError: 1.77290e-01\n", + " Region: \"zone_3\"\tRelError: 3.02936e+00\tAbsError: 1.78669e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14908e-02\tAbsError: 8.93992e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.30541e-02\tAbsError: 8.92696e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.98425e+00\tAbsError: 7.65636e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.70902e-04\tAbsError: 1.77326e-01\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 2.67346e-04\tAbsError: 1.27442e+10\n", + " Region: \"zone_1\"\tRelError: 1.64598e-04\tAbsError: 1.02901e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64565e-04\tAbsError: 8.85581e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.30327e-08\tAbsError: 1.02812e-05\n", + " Region: \"zone_3\"\tRelError: 1.02748e-04\tAbsError: 1.27442e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16746e-06\tAbsError: 6.54576e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.30940e-06\tAbsError: 6.19845e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00238e-04\tAbsError: 8.87541e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.30381e-08\tAbsError: 1.02832e-05\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 3.24101e-04\tAbsError: 9.24151e+09\n", + " Region: \"zone_1\"\tRelError: 2.42850e-04\tAbsError: 7.44704e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42826e-04\tAbsError: 5.91526e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39109e-08\tAbsError: 7.44113e-06\n", + " Region: \"zone_3\"\tRelError: 8.12515e-05\tAbsError: 9.24151e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.45115e-07\tAbsError: 4.82120e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.47936e-07\tAbsError: 4.42031e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 7.94345e-05\tAbsError: 6.15136e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39147e-08\tAbsError: 7.44252e-06\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 5.71585e-02\tAbsError: 1.94837e+10\n", + " Region: \"zone_1\"\tRelError: 5.69681e-02\tAbsError: 1.57088e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.69680e-02\tAbsError: 1.22719e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.04455e-08\tAbsError: 1.56966e-05\n", + " Region: \"zone_3\"\tRelError: 1.90434e-04\tAbsError: 1.94837e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.78293e-06\tAbsError: 1.03838e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.00017e-06\tAbsError: 9.09986e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86600e-04\tAbsError: 1.27494e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.04537e-08\tAbsError: 1.56995e-05\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 1.60884e-03\tAbsError: 4.59071e+10\n", + " Region: \"zone_1\"\tRelError: 1.05975e-03\tAbsError: 3.70977e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05963e-03\tAbsError: 2.71744e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19163e-07\tAbsError: 3.70705e-05\n", + " Region: \"zone_3\"\tRelError: 5.49086e-04\tAbsError: 4.59071e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.21110e-06\tAbsError: 2.48312e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.72586e-06\tAbsError: 2.10758e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.40030e-04\tAbsError: 2.81860e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19183e-07\tAbsError: 3.70774e-05\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 2.24674e-04\tAbsError: 1.07088e+10\n", + " Region: \"zone_1\"\tRelError: 1.38329e-04\tAbsError: 8.64666e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38302e-04\tAbsError: 7.44145e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.77571e-08\tAbsError: 8.63922e-06\n", + " Region: \"zone_3\"\tRelError: 8.63452e-05\tAbsError: 1.07088e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.81007e-07\tAbsError: 5.50034e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10027e-06\tAbsError: 5.20849e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 8.42361e-05\tAbsError: 7.45792e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.77616e-08\tAbsError: 8.64084e-06\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 2.72285e-04\tAbsError: 7.76269e+09\n", + " Region: \"zone_1\"\tRelError: 2.04031e-04\tAbsError: 6.25539e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04011e-04\tAbsError: 4.96871e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00847e-08\tAbsError: 6.25042e-06\n", + " Region: \"zone_3\"\tRelError: 6.82543e-05\tAbsError: 7.76269e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.09882e-07\tAbsError: 4.04972e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.96250e-07\tAbsError: 3.71298e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 6.67281e-05\tAbsError: 5.16703e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00880e-08\tAbsError: 6.25159e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.52540e+01\tAbsError: 2.24204e+14\n", + " Region: \"zone_1\"\tRelError: 1.37562e+01\tAbsError: 1.14908e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37558e+01\tAbsError: 8.80912e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.69539e-04\tAbsError: 1.14820e-01\n", + " Region: \"zone_3\"\tRelError: 1.49787e+00\tAbsError: 2.24204e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34566e-02\tAbsError: 1.12379e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.47154e-02\tAbsError: 1.11824e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46933e+00\tAbsError: 9.20328e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.69599e-04\tAbsError: 1.14842e-01\n", + "Iteration: 59\n", + " Device: \"device\"\tRelError: 5.03671e-02\tAbsError: 1.63505e+10\n", + " Region: \"zone_1\"\tRelError: 5.02073e-02\tAbsError: 1.31827e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.02073e-02\tAbsError: 1.02985e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.23334e-08\tAbsError: 1.31724e-05\n", + " Region: \"zone_3\"\tRelError: 1.59786e-04\tAbsError: 1.63505e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49622e-06\tAbsError: 8.71400e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.67852e-06\tAbsError: 7.63651e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56568e-04\tAbsError: 1.06992e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.23403e-08\tAbsError: 1.31749e-05\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 1.34739e-03\tAbsError: 3.84302e+10\n", + " Region: \"zone_1\"\tRelError: 8.87938e-04\tAbsError: 3.10556e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.87838e-04\tAbsError: 2.27485e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.97553e-08\tAbsError: 3.10328e-05\n", + " Region: \"zone_3\"\tRelError: 4.59452e-04\tAbsError: 3.84302e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.52525e-06\tAbsError: 2.07870e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.95617e-06\tAbsError: 1.76432e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.51871e-04\tAbsError: 2.35954e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.97714e-08\tAbsError: 3.10386e-05\n", + "Iteration: 59\n", + " Device: \"device\"\tRelError: 1.88773e-04\tAbsError: 8.99853e+09\n", + " Region: \"zone_1\"\tRelError: 1.16223e-04\tAbsError: 7.26571e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16200e-04\tAbsError: 6.25298e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.33240e-08\tAbsError: 7.25945e-06\n", + " Region: \"zone_3\"\tRelError: 7.25500e-05\tAbsError: 8.99853e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.24331e-07\tAbsError: 4.62189e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.24550e-07\tAbsError: 4.37665e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 7.07778e-05\tAbsError: 6.26682e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.33278e-08\tAbsError: 7.26081e-06\n", + "Iteration: 59\n", + " Device: \"device\"\tRelError: 2.28682e-04\tAbsError: 6.52053e+09\n", + " Region: \"zone_1\"\tRelError: 1.71353e-04\tAbsError: 5.25442e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.71336e-04\tAbsError: 4.17363e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68708e-08\tAbsError: 5.25024e-06\n", + " Region: \"zone_3\"\tRelError: 5.73293e-05\tAbsError: 6.52053e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.96289e-07\tAbsError: 3.40169e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.68836e-07\tAbsError: 3.11884e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.60473e-05\tAbsError: 4.34022e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68735e-08\tAbsError: 5.25123e-06\n", + "Iteration: 60\n", + " Device: \"device\"\tRelError: 4.05642e-02\tAbsError: 1.37212e+10\n", + " Region: \"zone_1\"\tRelError: 4.04301e-02\tAbsError: 1.10628e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.04300e-02\tAbsError: 8.64238e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.55258e-08\tAbsError: 1.10542e-05\n", + " Region: \"zone_3\"\tRelError: 1.34108e-04\tAbsError: 1.37212e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.25561e-06\tAbsError: 7.31270e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.40860e-06\tAbsError: 6.40848e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31408e-04\tAbsError: 8.97864e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.55315e-08\tAbsError: 1.10562e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.43060e+01\tAbsError: 1.49521e+14\n", + " Region: \"zone_1\"\tRelError: 1.10969e+00\tAbsError: 1.10287e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10933e+00\tAbsError: 6.08592e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.54880e-04\tAbsError: 1.10226e-01\n", + " Region: \"zone_3\"\tRelError: 1.31963e+01\tAbsError: 1.49521e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27274e-02\tAbsError: 7.48910e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.41845e-02\tAbsError: 7.46304e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31690e+01\tAbsError: 6.36823e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.54937e-04\tAbsError: 1.10247e-01\n", + "Iteration: 59\n", + " Device: \"device\"\tRelError: 1.12753e-03\tAbsError: 3.21711e+10\n", + " Region: \"zone_1\"\tRelError: 7.42767e-04\tAbsError: 2.59976e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.42684e-04\tAbsError: 1.90435e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.35081e-08\tAbsError: 2.59785e-05\n", + " Region: \"zone_3\"\tRelError: 3.84764e-04\tAbsError: 3.21711e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.95108e-06\tAbsError: 1.74014e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.31182e-06\tAbsError: 1.47697e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.78418e-04\tAbsError: 1.97524e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.35216e-08\tAbsError: 2.59834e-05\n", + "Iteration: 60\n", + " Device: \"device\"\tRelError: 1.58637e-04\tAbsError: 7.56138e+09\n", + " Region: \"zone_1\"\tRelError: 9.76709e-05\tAbsError: 6.10530e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 9.76513e-05\tAbsError: 5.25432e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.95990e-08\tAbsError: 6.10005e-06\n", + " Region: \"zone_3\"\tRelError: 6.09666e-05\tAbsError: 7.56138e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.92677e-07\tAbsError: 3.88373e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.76890e-07\tAbsError: 3.67765e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.94774e-05\tAbsError: 5.26595e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.96021e-08\tAbsError: 6.10119e-06\n", + "Iteration: 60\n", + " Device: \"device\"\tRelError: 1.92112e-04\tAbsError: 5.47714e+09\n", + " Region: \"zone_1\"\tRelError: 1.43954e-04\tAbsError: 4.41362e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43940e-04\tAbsError: 3.50578e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41712e-08\tAbsError: 4.41011e-06\n", + " Region: \"zone_3\"\tRelError: 4.81578e-05\tAbsError: 5.47714e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.00872e-07\tAbsError: 2.85737e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.61811e-07\tAbsError: 2.61978e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.70810e-05\tAbsError: 3.64571e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41735e-08\tAbsError: 4.41094e-06\n", + "Iteration: 61\n", + " Device: \"device\"\tRelError: 3.52326e-02\tAbsError: 1.15147e+10\n", + " Region: \"zone_1\"\tRelError: 3.51201e-02\tAbsError: 9.28381e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.51201e-02\tAbsError: 7.25260e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.98129e-08\tAbsError: 9.27655e-06\n", + " Region: \"zone_3\"\tRelError: 1.12530e-04\tAbsError: 1.15147e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05370e-06\tAbsError: 6.13674e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.18208e-06\tAbsError: 5.37794e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10264e-04\tAbsError: 7.53479e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.98177e-08\tAbsError: 9.27829e-06\n", + "Iteration: 60\n", + " Device: \"device\"\tRelError: 9.44177e-04\tAbsError: 2.69314e+10\n", + " Region: \"zone_1\"\tRelError: 6.22180e-04\tAbsError: 2.17633e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.22110e-04\tAbsError: 1.59419e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.99072e-08\tAbsError: 2.17474e-05\n", + " Region: \"zone_3\"\tRelError: 3.21997e-04\tAbsError: 2.69314e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47045e-06\tAbsError: 1.45672e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.77243e-06\tAbsError: 1.23641e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.16685e-04\tAbsError: 1.65353e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.99185e-08\tAbsError: 2.17515e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.55713e+01\tAbsError: 1.38247e+14\n", + " Region: \"zone_1\"\tRelError: 4.44565e+01\tAbsError: 8.43030e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44562e+01\tAbsError: 5.56949e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.71165e-04\tAbsError: 8.42473e-02\n", + " Region: \"zone_3\"\tRelError: 1.11481e+00\tAbsError: 1.38247e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.62513e-03\tAbsError: 6.92683e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.07529e-02\tAbsError: 6.89789e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09416e+00\tAbsError: 5.81906e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.71209e-04\tAbsError: 8.42629e-02\n", + "Iteration: 61\n", + " Device: \"device\"\tRelError: 1.33292e-04\tAbsError: 6.35375e+09\n", + " Region: \"zone_1\"\tRelError: 8.20652e-05\tAbsError: 5.13023e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.20487e-05\tAbsError: 4.41515e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64688e-08\tAbsError: 5.12581e-06\n", + " Region: \"zone_3\"\tRelError: 5.12272e-05\tAbsError: 6.35375e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.82050e-07\tAbsError: 3.26346e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.52814e-07\tAbsError: 3.09030e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.99758e-05\tAbsError: 4.42493e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64715e-08\tAbsError: 5.12677e-06\n", + "Iteration: 61\n", + " Device: \"device\"\tRelError: 1.61355e-04\tAbsError: 4.60069e+09\n", + " Region: \"zone_1\"\tRelError: 1.20905e-04\tAbsError: 3.70736e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20893e-04\tAbsError: 2.94479e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19036e-08\tAbsError: 3.70442e-06\n", + " Region: \"zone_3\"\tRelError: 4.04502e-05\tAbsError: 4.60069e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.20724e-07\tAbsError: 2.40014e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.71911e-07\tAbsError: 2.20056e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.95456e-05\tAbsError: 3.06233e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19055e-08\tAbsError: 3.70511e-06\n", + "Iteration: 62\n", + " Device: \"device\"\tRelError: 2.87231e-02\tAbsError: 9.66301e+09\n", + " Region: \"zone_1\"\tRelError: 2.86287e-02\tAbsError: 7.79088e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.86287e-02\tAbsError: 6.08631e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.50187e-08\tAbsError: 7.78480e-06\n", + " Region: \"zone_3\"\tRelError: 9.44425e-05\tAbsError: 9.66301e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.84254e-07\tAbsError: 5.14989e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.91993e-07\tAbsError: 4.51312e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.25413e-05\tAbsError: 6.32312e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.50228e-08\tAbsError: 7.78625e-06\n", + "Iteration: 61\n", + " Device: \"device\"\tRelError: 7.90198e-04\tAbsError: 2.25451e+10\n", + " Region: \"zone_1\"\tRelError: 5.20574e-04\tAbsError: 1.82187e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.20516e-04\tAbsError: 1.33454e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.85214e-08\tAbsError: 1.82054e-05\n", + " Region: \"zone_3\"\tRelError: 2.69624e-04\tAbsError: 2.25451e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.06808e-06\tAbsError: 1.21947e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.32088e-06\tAbsError: 1.03504e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.65176e-04\tAbsError: 1.38422e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.85308e-08\tAbsError: 1.82088e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 7.79851e+00\tAbsError: 1.07093e+14\n", + " Region: \"zone_1\"\tRelError: 9.72793e-01\tAbsError: 7.26127e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.72559e-01\tAbsError: 4.35371e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.33632e-04\tAbsError: 7.25692e-02\n", + " Region: \"zone_3\"\tRelError: 6.82571e+00\tAbsError: 1.07093e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.28665e-03\tAbsError: 5.36462e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.30675e-03\tAbsError: 5.34471e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.80789e+00\tAbsError: 4.55133e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.33669e-04\tAbsError: 7.25826e-02\n", + "Iteration: 62\n", + " Device: \"device\"\tRelError: 1.12011e-04\tAbsError: 5.33899e+09\n", + " Region: \"zone_1\"\tRelError: 6.89633e-05\tAbsError: 4.31088e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.89495e-05\tAbsError: 3.71001e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38386e-08\tAbsError: 4.30717e-06\n", + " Region: \"zone_3\"\tRelError: 4.30475e-05\tAbsError: 5.33899e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89091e-07\tAbsError: 2.74224e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.48553e-07\tAbsError: 2.59675e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.19960e-05\tAbsError: 3.71822e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38408e-08\tAbsError: 4.30798e-06\n", + "Iteration: 62\n", + " Device: \"device\"\tRelError: 1.35547e-04\tAbsError: 3.86451e+09\n", + " Region: \"zone_1\"\tRelError: 1.01568e-04\tAbsError: 3.11412e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01558e-04\tAbsError: 2.47358e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.99878e-09\tAbsError: 3.11165e-06\n", + " Region: \"zone_3\"\tRelError: 3.39785e-05\tAbsError: 3.86451e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.53401e-07\tAbsError: 2.01608e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.96397e-07\tAbsError: 1.84843e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.32187e-05\tAbsError: 2.57230e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00004e-08\tAbsError: 3.11223e-06\n", + "Iteration: 63\n", + " Device: \"device\"\tRelError: 2.46956e-02\tAbsError: 8.10912e+09\n", + " Region: \"zone_1\"\tRelError: 2.46163e-02\tAbsError: 6.53803e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.46163e-02\tAbsError: 5.10758e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.09955e-08\tAbsError: 6.53293e-06\n", + " Region: \"zone_3\"\tRelError: 7.92492e-05\tAbsError: 8.10912e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.42058e-07\tAbsError: 4.32174e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.32471e-07\tAbsError: 3.78737e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 7.76537e-05\tAbsError: 5.30631e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.09989e-08\tAbsError: 6.53415e-06\n", + "Iteration: 62\n", + " Device: \"device\"\tRelError: 6.61639e-04\tAbsError: 1.88732e+10\n", + " Region: \"zone_1\"\tRelError: 4.35978e-04\tAbsError: 1.52515e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.35929e-04\tAbsError: 1.11718e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.89900e-08\tAbsError: 1.52403e-05\n", + " Region: \"zone_3\"\tRelError: 2.25661e-04\tAbsError: 1.88732e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.73126e-06\tAbsError: 1.02085e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.94288e-06\tAbsError: 8.66462e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21938e-04\tAbsError: 1.15877e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.89979e-08\tAbsError: 1.52431e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 5.34097e+00\tAbsError: 9.12325e+13\n", + " Region: \"zone_1\"\tRelError: 4.47543e+00\tAbsError: 5.84956e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.47524e+00\tAbsError: 3.69883e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88168e-04\tAbsError: 5.84586e-02\n", + " Region: \"zone_3\"\tRelError: 8.65545e-01\tAbsError: 9.12325e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.64439e-03\tAbsError: 4.57061e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.46046e-03\tAbsError: 4.55263e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.51252e-01\tAbsError: 3.86499e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88198e-04\tAbsError: 5.84694e-02\n", + "Iteration: 63\n", + " Device: \"device\"\tRelError: 9.41170e-05\tAbsError: 4.48631e+09\n", + " Region: \"zone_1\"\tRelError: 5.79459e-05\tAbsError: 3.62239e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.79342e-05\tAbsError: 3.11749e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16284e-08\tAbsError: 3.61928e-06\n", + " Region: \"zone_3\"\tRelError: 3.61711e-05\tAbsError: 4.48631e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.10979e-07\tAbsError: 2.30428e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.60944e-07\tAbsError: 2.18202e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52876e-05\tAbsError: 3.12439e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16303e-08\tAbsError: 3.61995e-06\n", + "Iteration: 63\n", + " Device: \"device\"\tRelError: 1.13849e-04\tAbsError: 3.24612e+09\n", + " Region: \"zone_1\"\tRelError: 8.53082e-05\tAbsError: 2.61581e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.52998e-05\tAbsError: 2.07776e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.39880e-09\tAbsError: 2.61373e-06\n", + " Region: \"zone_3\"\tRelError: 2.85406e-05\tAbsError: 3.24612e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96851e-07\tAbsError: 1.69347e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.32967e-07\tAbsError: 1.55265e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.79024e-05\tAbsError: 2.16069e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.40016e-09\tAbsError: 2.61422e-06\n", + "Iteration: 64\n", + " Device: \"device\"\tRelError: 2.03062e-02\tAbsError: 6.80509e+09\n", + " Region: \"zone_1\"\tRelError: 2.02397e-02\tAbsError: 5.48666e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02397e-02\tAbsError: 4.28623e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76192e-08\tAbsError: 5.48237e-06\n", + " Region: \"zone_3\"\tRelError: 6.65095e-05\tAbsError: 6.80509e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.22728e-07\tAbsError: 3.62677e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.98602e-07\tAbsError: 3.17833e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 6.51705e-05\tAbsError: 4.45300e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76220e-08\tAbsError: 5.48340e-06\n", + "Iteration: 63\n", + " Device: \"device\"\tRelError: 5.53780e-04\tAbsError: 1.57993e+10\n", + " Region: \"zone_1\"\tRelError: 3.64837e-04\tAbsError: 1.27674e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.64796e-04\tAbsError: 9.35229e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.10110e-08\tAbsError: 1.27581e-05\n", + " Region: \"zone_3\"\tRelError: 1.88942e-04\tAbsError: 1.57993e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.44928e-06\tAbsError: 8.54586e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.62644e-06\tAbsError: 7.25341e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85825e-04\tAbsError: 9.70044e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.10176e-08\tAbsError: 1.27605e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.07118e+00\tAbsError: 7.38505e+13\n", + " Region: \"zone_1\"\tRelError: 7.85194e-01\tAbsError: 4.88338e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.85037e-01\tAbsError: 3.00054e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57116e-04\tAbsError: 4.88038e-02\n", + " Region: \"zone_3\"\tRelError: 2.28598e+00\tAbsError: 7.38505e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.55788e-03\tAbsError: 3.69954e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.25080e-03\tAbsError: 3.68551e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27402e+00\tAbsError: 3.13597e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57141e-04\tAbsError: 4.88128e-02\n", + "Iteration: 64\n", + " Device: \"device\"\tRelError: 9.56367e-05\tAbsError: 2.72669e+09\n", + " Region: \"zone_1\"\tRelError: 7.16625e-05\tAbsError: 2.19723e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.16555e-05\tAbsError: 1.74528e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.05485e-09\tAbsError: 2.19549e-06\n", + " Region: \"zone_3\"\tRelError: 2.39742e-05\tAbsError: 2.72669e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.49349e-07\tAbsError: 1.42249e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.79686e-07\tAbsError: 1.30420e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34381e-05\tAbsError: 1.81494e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.05599e-09\tAbsError: 2.19590e-06\n", + "Iteration: 65\n", + " Device: \"device\"\tRelError: 1.73342e-02\tAbsError: 5.71077e+09\n", + " Region: \"zone_1\"\tRelError: 1.72784e-02\tAbsError: 4.60435e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72784e-02\tAbsError: 3.59696e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47859e-08\tAbsError: 4.60075e-06\n", + " Region: \"zone_3\"\tRelError: 5.58111e-05\tAbsError: 5.71077e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.22587e-07\tAbsError: 3.04355e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.86260e-07\tAbsError: 2.66722e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.46875e-05\tAbsError: 3.73692e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47883e-08\tAbsError: 4.60162e-06\n", + "Iteration: 64\n", + " Device: \"device\"\tRelError: 4.63655e-04\tAbsError: 1.32261e+10\n", + " Region: \"zone_1\"\tRelError: 3.05510e-04\tAbsError: 1.06880e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.05475e-04\tAbsError: 7.82908e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.43315e-08\tAbsError: 1.06802e-05\n", + " Region: \"zone_3\"\tRelError: 1.58145e-04\tAbsError: 1.32261e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.21324e-06\tAbsError: 7.15400e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.36155e-06\tAbsError: 6.07206e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55536e-04\tAbsError: 8.12053e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.43371e-08\tAbsError: 1.06822e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.52582e+00\tAbsError: 6.14399e+13\n", + " Region: \"zone_1\"\tRelError: 1.86269e+00\tAbsError: 3.99722e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86256e+00\tAbsError: 2.49493e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28587e-04\tAbsError: 3.99472e-02\n", + " Region: \"zone_3\"\tRelError: 6.63133e-01\tAbsError: 6.14399e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.53667e-03\tAbsError: 3.07794e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.10025e-03\tAbsError: 3.06605e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.53367e-01\tAbsError: 2.60716e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28607e-04\tAbsError: 3.99546e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:30:22\u001b[0m.\u001b[1;36m649\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:30:22\u001b[0m.\u001b[1;36m669\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.8 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:30:22\u001b[0m.\u001b[1;36m683\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.8\u001b[0m \n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", @@ -55803,69 +12523,50 @@ "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 16\n", - " Device: \"device\"\tRelError: 7.10114e-02\tAbsError: 5.29987e+13\n", - " Region: \"zone_1\"\tRelError: 1.65212e-02\tAbsError: 3.86093e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65102e-02\tAbsError: 6.43187e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.09308e-05\tAbsError: 3.79661e-03\n", - " Region: \"zone_3\"\tRelError: 5.44903e-02\tAbsError: 5.29987e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.03260e-03\tAbsError: 2.14256e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.99838e-03\tAbsError: 3.15731e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.84483e-02\tAbsError: 6.48297e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.09464e-05\tAbsError: 3.80212e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.40125e-04\tAbsError: 9.72535e+10\n", - " Region: \"zone_1\"\tRelError: 3.49219e-05\tAbsError: 7.34639e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.47105e-05\tAbsError: 5.62705e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.11358e-07\tAbsError: 7.34076e-05\n", - " Region: \"zone_3\"\tRelError: 1.05203e-04\tAbsError: 9.72535e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.48707e-06\tAbsError: 7.09164e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.41428e-06\tAbsError: 2.63371e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 9.00902e-05\tAbsError: 5.91937e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.11437e-07\tAbsError: 7.34332e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.00400e+01\tAbsError: 1.94504e+16\n", - " Region: \"zone_1\"\tRelError: 5.83181e+00\tAbsError: 1.79058e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.82672e+00\tAbsError: 1.06604e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.09493e-03\tAbsError: 1.77992e+00\n", - " Region: \"zone_3\"\tRelError: 4.20814e+00\tAbsError: 1.94504e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31217e-02\tAbsError: 9.68151e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.63990e-02\tAbsError: 9.76891e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 4.16350e+00\tAbsError: 1.06615e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.12059e-03\tAbsError: 1.78891e+00\n", - "Iteration: 17\n", - " Device: \"device\"\tRelError: 5.34056e-03\tAbsError: 2.07454e+12\n", - " Region: \"zone_1\"\tRelError: 1.49812e-03\tAbsError: 3.37903e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.48841e-03\tAbsError: 2.66958e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.71068e-06\tAbsError: 3.37636e-03\n", - " Region: \"zone_3\"\tRelError: 3.84243e-03\tAbsError: 2.07454e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.06191e-04\tAbsError: 8.27083e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.14714e-04\tAbsError: 1.24746e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.21181e-03\tAbsError: 2.69702e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.71398e-06\tAbsError: 3.37760e-03\n", + "number of equations 31686\n", + "Iteration: 66\n", + " Device: \"device\"\tRelError: 1.43395e-02\tAbsError: 4.79244e+09\n", + " Region: \"zone_1\"\tRelError: 1.42927e-02\tAbsError: 3.86393e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42926e-02\tAbsError: 3.01854e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24082e-08\tAbsError: 3.86091e-06\n", + " Region: \"zone_3\"\tRelError: 4.68383e-05\tAbsError: 4.79244e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.38550e-07\tAbsError: 2.55413e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.91984e-07\tAbsError: 2.23831e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.58953e-05\tAbsError: 3.13598e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24102e-08\tAbsError: 3.86163e-06\n", + "Iteration: 65\n", + " Device: \"device\"\tRelError: 3.88091e-04\tAbsError: 1.10719e+10\n", + " Region: \"zone_1\"\tRelError: 2.55686e-04\tAbsError: 8.94726e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.55657e-04\tAbsError: 6.55396e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.87400e-08\tAbsError: 8.94070e-06\n", + " Region: \"zone_3\"\tRelError: 1.32405e-04\tAbsError: 1.10719e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01564e-06\tAbsError: 5.98883e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13979e-06\tAbsError: 5.08310e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30221e-04\tAbsError: 6.79794e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.87446e-08\tAbsError: 8.94238e-06\n", "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.15381e+03\tAbsError: 2.37220e+18\n", - " Region: \"zone_1\"\tRelError: 6.51804e+02\tAbsError: 4.29334e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.51804e+02\tAbsError: 4.29332e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.86751e-10\tAbsError: 2.04266e-07\n", - " Region: \"zone_3\"\tRelError: 5.02007e+02\tAbsError: 2.37220e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.18418e-01\tAbsError: 1.18342e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.02784e-01\tAbsError: 1.18878e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 5.00786e+02\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.86983e-10\tAbsError: 2.04352e-07\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 7.56709e-05\tAbsError: 6.77210e+10\n", - " Region: \"zone_1\"\tRelError: 1.76311e-05\tAbsError: 3.41657e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76214e-05\tAbsError: 5.90161e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.64471e-09\tAbsError: 3.35756e-06\n", - " Region: \"zone_3\"\tRelError: 5.80398e-05\tAbsError: 6.77210e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.05802e-06\tAbsError: 2.73831e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.00749e-06\tAbsError: 4.03378e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.59647e-05\tAbsError: 5.91576e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.64956e-09\tAbsError: 3.35932e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:48\u001b[0m.\u001b[1;36m289\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:48\u001b[0m.\u001b[1;36m289\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.3090909090909091\u001b[0m \n", + " Device: \"device\"\tRelError: 1.27451e+02\tAbsError: 3.07343e+16\n", + " Region: \"zone_1\"\tRelError: 1.25317e+02\tAbsError: 6.55908e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25317e+02\tAbsError: 6.55878e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.77126e-09\tAbsError: 3.04124e-06\n", + " Region: \"zone_3\"\tRelError: 2.13379e+00\tAbsError: 3.07343e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.18962e-01\tAbsError: 2.10958e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.18943e-01\tAbsError: 9.63853e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.95887e-01\tAbsError: 6.55878e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.77284e-09\tAbsError: 3.04181e-06\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.77227e+00\tAbsError: 5.03791e+13\n", + " Region: \"zone_1\"\tRelError: 6.04932e-01\tAbsError: 3.30661e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.04826e-01\tAbsError: 2.04650e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06383e-04\tAbsError: 3.30457e-02\n", + " Region: \"zone_3\"\tRelError: 1.16734e+00\tAbsError: 5.03791e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.76006e-03\tAbsError: 2.52377e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.22973e-03\tAbsError: 2.51413e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15924e+00\tAbsError: 2.13872e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06400e-04\tAbsError: 3.30518e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:30:23\u001b[0m.\u001b[1;36m809\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:30:23\u001b[0m.\u001b[1;36m835\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.85 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:30:23\u001b[0m.\u001b[1;36m849\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: 0.85\u001b[0m \n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", @@ -55899,133 +12600,445 @@ "Contact: zone_3_bc_4, Equation: PotentialEquation\n", "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Iteration: 67\n", + " Device: \"device\"\tRelError: 1.21792e-02\tAbsError: 4.02177e+09\n", + " Region: \"zone_1\"\tRelError: 1.21399e-02\tAbsError: 3.24257e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21399e-02\tAbsError: 2.53313e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04128e-08\tAbsError: 3.24004e-06\n", + " Region: \"zone_3\"\tRelError: 3.93047e-05\tAbsError: 4.02177e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.68027e-07\tAbsError: 2.14340e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.12868e-07\tAbsError: 1.87837e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85134e-05\tAbsError: 2.63169e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04145e-08\tAbsError: 3.24064e-06\n", "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 5.29647e+00\tAbsError: 1.75873e+16\n", - " Region: \"zone_1\"\tRelError: 2.79182e+00\tAbsError: 1.48863e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78757e+00\tAbsError: 1.73604e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.25501e-03\tAbsError: 1.48846e+00\n", - " Region: \"zone_3\"\tRelError: 2.50465e+00\tAbsError: 1.75873e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.28043e-02\tAbsError: 8.38773e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.83546e-03\tAbsError: 9.19953e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.47175e+00\tAbsError: 1.74563e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.25799e-03\tAbsError: 1.48951e+00\n", + "number of equations 31686\n", + "Iteration: 66\n", + " Device: \"device\"\tRelError: 3.24916e-04\tAbsError: 9.26864e+09\n", + " Region: \"zone_1\"\tRelError: 2.14088e-04\tAbsError: 7.49002e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.14064e-04\tAbsError: 5.48652e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.40591e-08\tAbsError: 7.48453e-06\n", + " Region: \"zone_3\"\tRelError: 1.10828e-04\tAbsError: 9.26864e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.50223e-07\tAbsError: 5.01344e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.54153e-07\tAbsError: 4.25520e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09000e-04\tAbsError: 5.69076e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.40630e-08\tAbsError: 7.48593e-06\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.49279e+00\tAbsError: 4.16250e+13\n", + " Region: \"zone_1\"\tRelError: 9.97146e-01\tAbsError: 2.71952e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.97059e-01\tAbsError: 1.69095e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.74865e-05\tAbsError: 2.71783e-02\n", + " Region: \"zone_3\"\tRelError: 4.95642e-01\tAbsError: 4.16250e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.08674e-03\tAbsError: 2.08525e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.47136e-03\tAbsError: 2.07725e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.88997e-01\tAbsError: 1.76705e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.75005e-05\tAbsError: 2.71834e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.60436e+01\tAbsError: 3.07430e+16\n", + " Region: \"zone_1\"\tRelError: 1.38569e+01\tAbsError: 6.55896e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38569e+01\tAbsError: 6.55878e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.92595e-09\tAbsError: 1.84417e-06\n", + " Region: \"zone_3\"\tRelError: 2.18671e+00\tAbsError: 3.07430e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.18975e-01\tAbsError: 1.99852e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.18940e-01\tAbsError: 1.07578e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.48793e-01\tAbsError: 6.55878e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.92691e-09\tAbsError: 1.84452e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.54455e+01\tAbsError: 1.02706e+16\n", + " Region: \"zone_1\"\tRelError: 9.49154e+00\tAbsError: 3.63738e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.49055e+00\tAbsError: 5.97696e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.89119e-04\tAbsError: 3.03969e-01\n", + " Region: \"zone_3\"\tRelError: 5.95392e+00\tAbsError: 1.02706e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.97288e-01\tAbsError: 6.00217e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.57586e-01\tAbsError: 4.26842e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.09805e+00\tAbsError: 5.97696e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.89119e-04\tAbsError: 3.03969e-01\n", + "Iteration: 68\n", + " Device: \"device\"\tRelError: 1.01179e-02\tAbsError: 3.37502e+09\n", + " Region: \"zone_1\"\tRelError: 1.00849e-02\tAbsError: 2.72114e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00849e-02\tAbsError: 2.12578e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.73833e-09\tAbsError: 2.71901e-06\n", + " Region: \"zone_3\"\tRelError: 3.29852e-05\tAbsError: 3.37502e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.08845e-07\tAbsError: 1.79872e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.46475e-07\tAbsError: 1.57630e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.23212e-05\tAbsError: 2.20849e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.73974e-09\tAbsError: 2.71952e-06\n", + "Iteration: 67\n", + " Device: \"device\"\tRelError: 2.71973e-04\tAbsError: 7.75906e+09\n", + " Region: \"zone_1\"\tRelError: 1.79188e-04\tAbsError: 6.27012e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79167e-04\tAbsError: 4.59293e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.01406e-08\tAbsError: 6.26553e-06\n", + " Region: \"zone_3\"\tRelError: 9.27860e-05\tAbsError: 7.75906e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.11747e-07\tAbsError: 4.19689e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.98749e-07\tAbsError: 3.56217e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.12553e-05\tAbsError: 4.76391e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.01438e-08\tAbsError: 6.26670e-06\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.13047e+00\tAbsError: 3.42586e+13\n", + " Region: \"zone_1\"\tRelError: 4.50925e-01\tAbsError: 2.24364e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.50852e-01\tAbsError: 1.39160e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.21826e-05\tAbsError: 2.24224e-02\n", + " Region: \"zone_3\"\tRelError: 6.79547e-01\tAbsError: 3.42586e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.55028e-03\tAbsError: 1.71621e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.86886e-03\tAbsError: 1.70964e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.74056e-01\tAbsError: 1.45428e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.21941e-05\tAbsError: 2.24266e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 9.86584e+00\tAbsError: 2.24591e+16\n", + " Region: \"zone_1\"\tRelError: 6.08903e+00\tAbsError: 3.25737e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.08816e+00\tAbsError: 5.97693e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.65500e-04\tAbsError: 2.65967e-01\n", + " Region: \"zone_3\"\tRelError: 3.77681e+00\tAbsError: 2.24591e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.96775e-01\tAbsError: 1.21329e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.50577e-01\tAbsError: 1.03262e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92859e+00\tAbsError: 5.97693e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.65500e-04\tAbsError: 2.65967e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.81732e+01\tAbsError: 1.81298e+16\n", + " Region: \"zone_1\"\tRelError: 2.75896e+00\tAbsError: 2.30471e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.75839e+00\tAbsError: 5.30126e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.77118e-04\tAbsError: 1.77458e-01\n", + " Region: \"zone_3\"\tRelError: 1.54142e+01\tAbsError: 1.81298e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.64864e-01\tAbsError: 8.52848e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.80479e-01\tAbsError: 9.60136e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36683e+01\tAbsError: 5.30126e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.77118e-04\tAbsError: 1.77458e-01\n", + "Iteration: 69\n", + " Device: \"device\"\tRelError: 8.56309e-03\tAbsError: 2.83229e+09\n", + " Region: \"zone_1\"\tRelError: 8.53541e-03\tAbsError: 2.28355e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.53540e-03\tAbsError: 1.78393e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.33312e-09\tAbsError: 2.28177e-06\n", + " Region: \"zone_3\"\tRelError: 2.76801e-05\tAbsError: 2.83229e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.59180e-07\tAbsError: 1.50948e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.90759e-07\tAbsError: 1.32281e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.71229e-05\tAbsError: 1.85334e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.33431e-09\tAbsError: 2.28219e-06\n", + "Iteration: 68\n", + " Device: \"device\"\tRelError: 2.27694e-04\tAbsError: 6.49535e+09\n", + " Region: \"zone_1\"\tRelError: 1.50026e-04\tAbsError: 5.24891e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50009e-04\tAbsError: 3.84488e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68603e-08\tAbsError: 5.24506e-06\n", + " Region: \"zone_3\"\tRelError: 7.76681e-05\tAbsError: 6.49535e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.95825e-07\tAbsError: 3.51334e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.68657e-07\tAbsError: 2.98201e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 7.63867e-05\tAbsError: 3.98801e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68630e-08\tAbsError: 5.24604e-06\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 9.53450e-01\tAbsError: 2.82499e+13\n", + " Region: \"zone_1\"\tRelError: 5.91709e-01\tAbsError: 1.84789e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.91650e-01\tAbsError: 1.14769e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.94472e-05\tAbsError: 1.84675e-02\n", + " Region: \"zone_3\"\tRelError: 3.61741e-01\tAbsError: 2.82499e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.09781e-03\tAbsError: 1.41521e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.35945e-03\tAbsError: 1.40978e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.57224e-01\tAbsError: 1.19936e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.94567e-05\tAbsError: 1.84709e-02\n", + "Iteration: 70\n", + " Device: \"device\"\tRelError: 7.13512e-03\tAbsError: 2.37684e+09\n", + " Region: \"zone_1\"\tRelError: 7.11189e-03\tAbsError: 1.91633e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.11188e-03\tAbsError: 1.49706e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.15389e-09\tAbsError: 1.91484e-06\n", + " Region: \"zone_3\"\tRelError: 2.32294e-05\tAbsError: 2.37684e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17501e-07\tAbsError: 1.26674e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.44002e-07\tAbsError: 1.11010e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27618e-05\tAbsError: 1.55531e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.15488e-09\tAbsError: 1.91520e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 7.37035e+01\tAbsError: 4.90238e+16\n", + " Region: \"zone_1\"\tRelError: 9.01167e-01\tAbsError: 1.46059e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.00862e-01\tAbsError: 5.30128e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.04298e-04\tAbsError: 9.30460e-02\n", + " Region: \"zone_3\"\tRelError: 7.28023e+01\tAbsError: 4.90238e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.64282e-01\tAbsError: 2.29972e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.69012e-01\tAbsError: 2.60266e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.10687e+01\tAbsError: 5.30128e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.04362e-04\tAbsError: 9.30616e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.16023e+01\tAbsError: 2.96681e+16\n", + " Region: \"zone_1\"\tRelError: 1.33967e+01\tAbsError: 3.07705e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33959e+01\tAbsError: 4.50640e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.54765e-04\tAbsError: 2.62641e-01\n", + " Region: \"zone_3\"\tRelError: 8.20557e+00\tAbsError: 2.96681e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.14890e-01\tAbsError: 1.57514e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.83970e-01\tAbsError: 1.39167e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.60585e+00\tAbsError: 4.50641e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.54765e-04\tAbsError: 2.62641e-01\n", + "Iteration: 69\n", + " Device: \"device\"\tRelError: 1.90598e-04\tAbsError: 5.43745e+09\n", + " Region: \"zone_1\"\tRelError: 1.25575e-04\tAbsError: 4.39402e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25561e-04\tAbsError: 3.21866e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41143e-08\tAbsError: 4.39080e-06\n", + " Region: \"zone_3\"\tRelError: 6.50224e-05\tAbsError: 5.43745e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.98783e-07\tAbsError: 2.94113e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.59753e-07\tAbsError: 2.49632e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 6.39497e-05\tAbsError: 3.33848e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41165e-08\tAbsError: 4.39162e-06\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 7.48573e-01\tAbsError: 2.32747e+13\n", + " Region: \"zone_1\"\tRelError: 3.27767e-01\tAbsError: 1.52333e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.27718e-01\tAbsError: 9.45439e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.90084e-05\tAbsError: 1.52239e-02\n", + " Region: \"zone_3\"\tRelError: 4.20806e-01\tAbsError: 2.32747e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.73112e-03\tAbsError: 1.16597e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.94733e-03\tAbsError: 1.16150e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.17078e-01\tAbsError: 9.88017e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.90162e-05\tAbsError: 1.52267e-02\n", + "Iteration: 71\n", + " Device: \"device\"\tRelError: 6.02356e-03\tAbsError: 1.99461e+09\n", + " Region: \"zone_1\"\tRelError: 6.00407e-03\tAbsError: 1.60817e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.00406e-03\tAbsError: 1.25632e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.16428e-09\tAbsError: 1.60691e-06\n", + " Region: \"zone_3\"\tRelError: 1.94936e-05\tAbsError: 1.99461e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.82525e-07\tAbsError: 1.06303e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.04764e-07\tAbsError: 9.31583e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91011e-05\tAbsError: 1.30520e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.16512e-09\tAbsError: 1.60721e-06\n", + "Iteration: 70\n", + " Device: \"device\"\tRelError: 1.59563e-04\tAbsError: 4.55185e+09\n", + " Region: \"zone_1\"\tRelError: 1.05134e-04\tAbsError: 3.67836e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05122e-04\tAbsError: 2.69444e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18155e-08\tAbsError: 3.67567e-06\n", + " Region: \"zone_3\"\tRelError: 5.44293e-05\tAbsError: 4.55185e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.17546e-07\tAbsError: 2.46211e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.68586e-07\tAbsError: 2.08974e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.35314e-05\tAbsError: 2.79474e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18174e-08\tAbsError: 3.67636e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.17598e+02\tAbsError: 7.39139e+16\n", + " Region: \"zone_1\"\tRelError: 9.83082e+00\tAbsError: 4.83955e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.82939e+00\tAbsError: 4.50657e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42969e-03\tAbsError: 4.38889e-01\n", + " Region: \"zone_3\"\tRelError: 1.07767e+02\tAbsError: 7.39139e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.13460e-01\tAbsError: 4.04744e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.01636e-01\tAbsError: 3.34395e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06150e+02\tAbsError: 4.50658e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43019e-03\tAbsError: 4.39008e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 5.91891e+00\tAbsError: 3.75954e+16\n", + " Region: \"zone_1\"\tRelError: 1.25846e+00\tAbsError: 2.74374e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25768e+00\tAbsError: 3.56217e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78317e-04\tAbsError: 2.38752e-01\n", + " Region: \"zone_3\"\tRelError: 4.66045e+00\tAbsError: 3.75954e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.31689e-01\tAbsError: 2.06308e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.60372e-01\tAbsError: 1.69646e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.26761e+00\tAbsError: 3.56233e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78445e-04\tAbsError: 2.38791e-01\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 6.28987e-01\tAbsError: 1.91822e+13\n", + " Region: \"zone_1\"\tRelError: 3.70101e-01\tAbsError: 1.25517e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.70061e-01\tAbsError: 7.79306e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.03793e-05\tAbsError: 1.25439e-02\n", + " Region: \"zone_3\"\tRelError: 2.58886e-01\tAbsError: 1.91822e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42515e-03\tAbsError: 9.60952e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.60296e-03\tAbsError: 9.57270e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.55817e-01\tAbsError: 8.14391e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.03858e-05\tAbsError: 1.25462e-02\n", + "Iteration: 72\n", + " Device: \"device\"\tRelError: 5.02965e-03\tAbsError: 1.67385e+09\n", + " Region: \"zone_1\"\tRelError: 5.01329e-03\tAbsError: 1.34956e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.01329e-03\tAbsError: 1.05429e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.33382e-09\tAbsError: 1.34851e-06\n", + " Region: \"zone_3\"\tRelError: 1.63591e-05\tAbsError: 1.67385e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53173e-07\tAbsError: 8.92079e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.71836e-07\tAbsError: 7.81771e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60297e-05\tAbsError: 1.09531e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.33452e-09\tAbsError: 1.34876e-06\n", + "Iteration: 71\n", + " Device: \"device\"\tRelError: 1.33569e-04\tAbsError: 3.81049e+09\n", + " Region: \"zone_1\"\tRelError: 8.80030e-05\tAbsError: 3.07927e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.79931e-05\tAbsError: 2.25560e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.89108e-09\tAbsError: 3.07701e-06\n", + " Region: \"zone_3\"\tRelError: 4.55664e-05\tAbsError: 3.81049e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.49540e-07\tAbsError: 2.06110e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.92268e-07\tAbsError: 1.74939e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.48147e-05\tAbsError: 2.33956e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.89268e-09\tAbsError: 3.07759e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.81913e+00\tAbsError: 8.65891e+16\n", + " Region: \"zone_1\"\tRelError: 3.71495e+00\tAbsError: 9.94358e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.71474e+00\tAbsError: 3.56265e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.07903e-04\tAbsError: 6.38092e-02\n", + " Region: \"zone_3\"\tRelError: 3.10417e+00\tAbsError: 8.65891e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.26813e-01\tAbsError: 4.76565e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.45418e-01\tAbsError: 3.89325e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73173e+00\tAbsError: 3.56266e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.07903e-04\tAbsError: 6.38092e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.07538e+01\tAbsError: 3.23880e+16\n", + " Region: \"zone_1\"\tRelError: 5.74827e+00\tAbsError: 6.95991e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.74609e+00\tAbsError: 2.54930e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18578e-03\tAbsError: 6.70498e-01\n", + " Region: \"zone_3\"\tRelError: 5.00552e+00\tAbsError: 3.23880e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.92519e-01\tAbsError: 1.70814e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.63157e-01\tAbsError: 1.53066e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.94766e+00\tAbsError: 2.45743e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18578e-03\tAbsError: 6.70498e-01\n", "Iteration: 18\n", - " Device: \"device\"\tRelError: 5.03612e-03\tAbsError: 2.83265e+12\n", - " Region: \"zone_1\"\tRelError: 1.36798e-03\tAbsError: 3.45924e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36699e-03\tAbsError: 1.97871e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.89159e-07\tAbsError: 3.43945e-04\n", - " Region: \"zone_3\"\tRelError: 3.66814e-03\tAbsError: 2.83265e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.03983e-04\tAbsError: 1.71027e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.01328e-04\tAbsError: 1.12238e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.06184e-03\tAbsError: 2.00125e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.89570e-07\tAbsError: 3.44089e-04\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.27235e+02\tAbsError: 6.01131e+17\n", - " Region: \"zone_1\"\tRelError: 6.37236e+01\tAbsError: 2.15555e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 6.37175e+01\tAbsError: 3.30990e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.06216e-03\tAbsError: 2.12245e+00\n", - " Region: \"zone_3\"\tRelError: 6.35112e+01\tAbsError: 6.01131e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.07135e-01\tAbsError: 3.01236e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.10530e-01\tAbsError: 2.99895e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 6.28874e+01\tAbsError: 3.31000e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.06277e-03\tAbsError: 2.12266e+00\n", + " Device: \"device\"\tRelError: 5.03371e-01\tAbsError: 1.58082e+13\n", + " Region: \"zone_1\"\tRelError: 2.33721e-01\tAbsError: 1.03447e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.33688e-01\tAbsError: 6.42154e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32806e-05\tAbsError: 1.03383e-02\n", + " Region: \"zone_3\"\tRelError: 2.69650e-01\tAbsError: 1.58082e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.17540e-03\tAbsError: 7.91924e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.32217e-03\tAbsError: 7.88891e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67119e-01\tAbsError: 6.71072e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32859e-05\tAbsError: 1.03402e-02\n", + "Iteration: 73\n", + " Device: \"device\"\tRelError: 4.23861e-03\tAbsError: 1.40468e+09\n", + " Region: \"zone_1\"\tRelError: 4.22488e-03\tAbsError: 1.13254e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22488e-03\tAbsError: 8.84750e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.63690e-09\tAbsError: 1.13165e-06\n", + " Region: \"zone_3\"\tRelError: 1.37282e-05\tAbsError: 1.40468e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28542e-07\tAbsError: 7.48625e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.44203e-07\tAbsError: 6.56050e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34518e-05\tAbsError: 9.19175e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.63749e-09\tAbsError: 1.13187e-06\n", + "Iteration: 72\n", + " Device: \"device\"\tRelError: 1.11819e-04\tAbsError: 3.18986e+09\n", + " Region: \"zone_1\"\tRelError: 7.36754e-05\tAbsError: 2.57775e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.36671e-05\tAbsError: 1.88823e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.28012e-09\tAbsError: 2.57586e-06\n", + " Region: \"zone_3\"\tRelError: 3.81436e-05\tAbsError: 3.18986e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.92611e-07\tAbsError: 1.72541e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.28379e-07\tAbsError: 1.46446e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.75143e-05\tAbsError: 1.95852e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.28146e-09\tAbsError: 2.57634e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.12610e+01\tAbsError: 7.56399e+16\n", + " Region: \"zone_1\"\tRelError: 1.13745e+01\tAbsError: 6.04574e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13726e+01\tAbsError: 2.56494e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89006e-03\tAbsError: 5.78924e-01\n", + " Region: \"zone_3\"\tRelError: 9.88650e+00\tAbsError: 7.56399e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.71540e-01\tAbsError: 3.80754e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.21899e-01\tAbsError: 3.75646e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 8.89117e+00\tAbsError: 2.45776e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89006e-03\tAbsError: 5.78924e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.03357e+01\tAbsError: 1.34040e+16\n", + " Region: \"zone_1\"\tRelError: 7.36527e+00\tAbsError: 1.04507e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.36499e+00\tAbsError: 1.64172e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.83583e-04\tAbsError: 8.80897e-02\n", + " Region: \"zone_3\"\tRelError: 2.97047e+00\tAbsError: 1.34040e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.43152e-01\tAbsError: 7.08805e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.05967e-01\tAbsError: 6.31599e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42106e+00\tAbsError: 1.64174e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.83612e-04\tAbsError: 8.80989e-02\n", "Iteration: 19\n", - " Device: \"device\"\tRelError: 6.84071e-04\tAbsError: 3.16352e+11\n", - " Region: \"zone_1\"\tRelError: 1.94288e-04\tAbsError: 2.17034e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.93664e-04\tAbsError: 2.29632e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.23513e-07\tAbsError: 2.16805e-04\n", - " Region: \"zone_3\"\tRelError: 4.89784e-04\tAbsError: 3.16352e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.26466e-05\tAbsError: 1.76971e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.25924e-05\tAbsError: 1.39381e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.23921e-04\tAbsError: 2.32333e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.23623e-07\tAbsError: 2.16843e-04\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.83500e+02\tAbsError: 8.65566e+15\n", - " Region: \"zone_1\"\tRelError: 2.81843e+02\tAbsError: 4.18767e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.81843e+02\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10669e-08\tAbsError: 3.84725e-06\n", - " Region: \"zone_3\"\tRelError: 1.65782e+00\tAbsError: 8.65566e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77422e-01\tAbsError: 4.99578e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.77402e-01\tAbsError: 3.65988e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02995e-01\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10677e-08\tAbsError: 3.84759e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.16935e+01\tAbsError: 9.40991e+15\n", - " Region: \"zone_1\"\tRelError: 5.40803e-01\tAbsError: 5.56761e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.40645e-01\tAbsError: 3.86146e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.58024e-04\tAbsError: 5.52900e-02\n", - " Region: \"zone_3\"\tRelError: 1.11527e+01\tAbsError: 9.40991e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54329e-02\tAbsError: 4.59548e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.04663e-03\tAbsError: 4.81443e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11341e+01\tAbsError: 3.88837e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.58109e-04\tAbsError: 5.53189e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 4.46534e+01\tAbsError: 4.26935e+16\n", - " Region: \"zone_1\"\tRelError: 4.31929e+01\tAbsError: 3.34889e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 4.31834e+01\tAbsError: 2.58895e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.42928e-03\tAbsError: 3.32300e+00\n", - " Region: \"zone_3\"\tRelError: 1.46059e+00\tAbsError: 4.26935e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.12272e-02\tAbsError: 2.14191e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.32369e-02\tAbsError: 2.12744e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33669e+00\tAbsError: 2.58962e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.43739e-03\tAbsError: 3.32593e+00\n", + " Device: \"device\"\tRelError: 4.21056e-01\tAbsError: 1.30269e+13\n", + " Region: \"zone_1\"\tRelError: 2.38551e-01\tAbsError: 8.52468e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38523e-01\tAbsError: 5.29230e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.74245e-05\tAbsError: 8.51939e-03\n", + " Region: \"zone_3\"\tRelError: 1.82505e-01\tAbsError: 1.30269e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.68033e-04\tAbsError: 6.52595e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.08883e-03\tAbsError: 6.50095e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80421e-01\tAbsError: 5.53058e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.74289e-05\tAbsError: 8.52096e-03\n", + "Iteration: 74\n", + " Device: \"device\"\tRelError: 3.54448e-03\tAbsError: 1.17879e+09\n", + " Region: \"zone_1\"\tRelError: 3.53296e-03\tAbsError: 9.50416e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53295e-03\tAbsError: 7.42474e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.05205e-09\tAbsError: 9.49673e-07\n", + " Region: \"zone_3\"\tRelError: 1.15207e-05\tAbsError: 1.17879e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07871e-07\tAbsError: 6.28233e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.21014e-07\tAbsError: 5.50556e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12888e-05\tAbsError: 7.71363e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.05254e-09\tAbsError: 9.49851e-07\n", + "Iteration: 73\n", + " Device: \"device\"\tRelError: 9.36042e-05\tAbsError: 2.67034e+09\n", + " Region: \"zone_1\"\tRelError: 6.16721e-05\tAbsError: 2.15791e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.16651e-05\tAbsError: 1.58069e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93154e-09\tAbsError: 2.15633e-06\n", + " Region: \"zone_3\"\tRelError: 3.19321e-05\tAbsError: 2.67034e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.44953e-07\tAbsError: 1.44440e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.74896e-07\tAbsError: 1.22594e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.14054e-05\tAbsError: 1.63954e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93266e-09\tAbsError: 2.15673e-06\n", "Iteration: 20\n", - " Device: \"device\"\tRelError: 3.63414e-04\tAbsError: 2.02249e+11\n", - " Region: \"zone_1\"\tRelError: 1.00386e-04\tAbsError: 3.49527e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00286e-04\tAbsError: 1.28886e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00150e-07\tAbsError: 3.48238e-05\n", - " Region: \"zone_3\"\tRelError: 2.63028e-04\tAbsError: 2.02249e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97081e-05\tAbsError: 1.21339e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.95483e-05\tAbsError: 8.09100e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.23671e-04\tAbsError: 1.30395e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00167e-07\tAbsError: 3.48297e-05\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.48557e+00\tAbsError: 3.20270e+14\n", - " Region: \"zone_1\"\tRelError: 3.05154e-02\tAbsError: 4.95864e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.03737e-02\tAbsError: 1.84386e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41696e-04\tAbsError: 4.95679e-02\n", - " Region: \"zone_3\"\tRelError: 1.45505e+00\tAbsError: 3.20270e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47383e-03\tAbsError: 1.55510e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.13814e-04\tAbsError: 1.64760e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.45293e+00\tAbsError: 1.85478e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41753e-04\tAbsError: 4.95877e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.21069e+00\tAbsError: 3.14375e+14\n", - " Region: \"zone_1\"\tRelError: 7.32124e-01\tAbsError: 8.88279e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.31960e-01\tAbsError: 3.18465e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.63935e-04\tAbsError: 5.69815e-02\n", - " Region: \"zone_3\"\tRelError: 1.47857e+00\tAbsError: 3.14375e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.52488e-01\tAbsError: 1.95459e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.46660e-01\tAbsError: 1.18916e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.92560e-02\tAbsError: 3.18469e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.63935e-04\tAbsError: 5.69815e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 6.06957e+01\tAbsError: 2.39287e+16\n", - " Region: \"zone_1\"\tRelError: 2.18674e+01\tAbsError: 2.38118e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18606e+01\tAbsError: 1.22639e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.76748e-03\tAbsError: 2.36892e+00\n", - " Region: \"zone_3\"\tRelError: 3.88283e+01\tAbsError: 2.39287e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.22362e-02\tAbsError: 1.20542e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.10394e-02\tAbsError: 1.18745e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.87582e+01\tAbsError: 1.22654e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.77515e-03\tAbsError: 2.37164e+00\n", + " Device: \"device\"\tRelError: 3.40668e-01\tAbsError: 1.07361e+13\n", + " Region: \"zone_1\"\tRelError: 1.64298e-01\tAbsError: 7.02533e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64275e-01\tAbsError: 4.36126e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.26015e-05\tAbsError: 7.02097e-03\n", + " Region: \"zone_3\"\tRelError: 1.76370e-01\tAbsError: 1.07361e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.98155e-04\tAbsError: 5.37834e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.97811e-04\tAbsError: 5.35774e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74652e-01\tAbsError: 4.55764e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.26051e-05\tAbsError: 7.02227e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.31973e+01\tAbsError: 3.79188e+16\n", + " Region: \"zone_1\"\tRelError: 2.16684e+01\tAbsError: 1.63222e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16679e+01\tAbsError: 1.64288e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.81494e-04\tAbsError: 1.46794e-01\n", + " Region: \"zone_3\"\tRelError: 1.52892e+00\tAbsError: 3.79188e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.03035e-01\tAbsError: 1.95802e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.61230e-01\tAbsError: 1.83387e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06418e+00\tAbsError: 1.64290e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.81494e-04\tAbsError: 1.46794e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.28388e+02\tAbsError: 3.85517e+15\n", + " Region: \"zone_1\"\tRelError: 1.19785e+02\tAbsError: 6.12036e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19783e+02\tAbsError: 5.16930e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00729e-03\tAbsError: 6.11519e-01\n", + " Region: \"zone_3\"\tRelError: 8.60346e+00\tAbsError: 3.85517e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16968e-01\tAbsError: 2.04184e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.20180e-02\tAbsError: 1.81333e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.41246e+00\tAbsError: 5.20965e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00729e-03\tAbsError: 6.11519e-01\n", + "Iteration: 75\n", + " Device: \"device\"\tRelError: 2.98331e-03\tAbsError: 9.89243e+08\n", + " Region: \"zone_1\"\tRelError: 2.97364e-03\tAbsError: 7.97580e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97364e-03\tAbsError: 6.23077e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.56125e-09\tAbsError: 7.96957e-07\n", + " Region: \"zone_3\"\tRelError: 9.66797e-06\tAbsError: 9.89243e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.05242e-08\tAbsError: 5.27208e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.01554e-07\tAbsError: 4.62036e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 9.47333e-06\tAbsError: 6.47320e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.56167e-09\tAbsError: 7.97106e-07\n", "Iteration: 21\n", - " Device: \"device\"\tRelError: 6.67627e-05\tAbsError: 3.26147e+10\n", - " Region: \"zone_1\"\tRelError: 1.88501e-05\tAbsError: 1.56670e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88051e-05\tAbsError: 2.18141e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.49944e-08\tAbsError: 1.56452e-05\n", - " Region: \"zone_3\"\tRelError: 4.79126e-05\tAbsError: 3.26147e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.23517e-06\tAbsError: 1.91761e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.22128e-06\tAbsError: 1.34386e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.14111e-05\tAbsError: 2.20748e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.49994e-08\tAbsError: 1.56470e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:52\u001b[0m.\u001b[1;36m013\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.2\u001b[0m \n", + " Device: \"device\"\tRelError: 2.83831e-01\tAbsError: 8.84706e+12\n", + " Region: \"zone_1\"\tRelError: 1.56594e-01\tAbsError: 5.78950e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56576e-01\tAbsError: 3.59416e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.86253e-05\tAbsError: 5.78591e-03\n", + " Region: \"zone_3\"\tRelError: 1.27236e-01\tAbsError: 8.84706e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57490e-04\tAbsError: 4.43202e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.39546e-04\tAbsError: 4.41504e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25821e-01\tAbsError: 3.75598e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.86283e-05\tAbsError: 5.78698e-03\n", + "Iteration: 76\n", + " Device: \"device\"\tRelError: 2.49735e-03\tAbsError: 8.30165e+08\n", + " Region: \"zone_1\"\tRelError: 2.48924e-03\tAbsError: 6.69321e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.48924e-03\tAbsError: 5.22880e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.14938e-09\tAbsError: 6.68798e-07\n", + " Region: \"zone_3\"\tRelError: 8.11333e-06\tAbsError: 8.30165e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.59670e-08\tAbsError: 4.42429e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.52230e-08\tAbsError: 3.87736e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 7.94999e-06\tAbsError: 5.43225e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.14973e-09\tAbsError: 6.68924e-07\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.72490e+00\tAbsError: 1.61110e+15\n", + " Region: \"zone_1\"\tRelError: 2.48249e+00\tAbsError: 2.41636e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.48171e+00\tAbsError: 2.16262e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.77913e-04\tAbsError: 2.41420e-01\n", + " Region: \"zone_3\"\tRelError: 1.24241e+00\tAbsError: 1.61110e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.11415e-02\tAbsError: 8.16721e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.22267e-02\tAbsError: 7.94377e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17826e+00\tAbsError: 2.39527e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78039e-04\tAbsError: 2.41465e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.72674e+00\tAbsError: 9.17385e+15\n", + " Region: \"zone_1\"\tRelError: 2.30982e+00\tAbsError: 7.86084e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30723e+00\tAbsError: 4.53328e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58383e-03\tAbsError: 7.85631e-01\n", + " Region: \"zone_3\"\tRelError: 2.41692e+00\tAbsError: 9.17385e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.78491e-02\tAbsError: 4.56548e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.15482e-02\tAbsError: 4.60837e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23493e+00\tAbsError: 5.61644e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58658e-03\tAbsError: 7.86411e-01\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:30:33\u001b[0m.\u001b[1;36m293\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:30:33\u001b[0m.\u001b[1;36m314\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.9 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:30:33\u001b[0m.\u001b[1;36m328\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.9\u001b[0m \n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", @@ -56064,229 +13077,990 @@ "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.02209e+00\tAbsError: 4.33246e+13\n", - " Region: \"zone_1\"\tRelError: 6.28792e-02\tAbsError: 3.21867e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.28610e-02\tAbsError: 2.58707e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.81707e-05\tAbsError: 6.31601e-03\n", - " Region: \"zone_3\"\tRelError: 9.59212e-01\tAbsError: 4.33246e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.62006e-01\tAbsError: 3.08852e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.33712e-01\tAbsError: 1.24394e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 6.34763e-02\tAbsError: 2.58963e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.81707e-05\tAbsError: 6.31601e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 7.70029e-01\tAbsError: 2.97081e+14\n", - " Region: \"zone_1\"\tRelError: 4.96016e-02\tAbsError: 3.55497e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 4.95915e-02\tAbsError: 1.36673e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.01232e-05\tAbsError: 3.54131e-03\n", - " Region: \"zone_3\"\tRelError: 7.20428e-01\tAbsError: 2.97081e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.85363e-04\tAbsError: 1.47966e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.28655e-04\tAbsError: 1.49115e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.19504e-01\tAbsError: 1.37577e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.01271e-05\tAbsError: 3.54267e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.78067e+01\tAbsError: 2.47144e+16\n", - " Region: \"zone_1\"\tRelError: 1.44384e+01\tAbsError: 1.28516e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.44348e+01\tAbsError: 2.79036e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.66119e-03\tAbsError: 1.28488e+00\n", - " Region: \"zone_3\"\tRelError: 3.36829e+00\tAbsError: 2.47144e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53457e-02\tAbsError: 1.23209e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.28668e-02\tAbsError: 1.23934e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.33641e+00\tAbsError: 2.81211e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.66490e-03\tAbsError: 1.28619e+00\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.71665e+00\tAbsError: 8.34849e+15\n", - " Region: \"zone_1\"\tRelError: 2.08783e+00\tAbsError: 4.09574e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.08783e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.12481e-09\tAbsError: 3.17283e-06\n", - " Region: \"zone_3\"\tRelError: 1.62882e+00\tAbsError: 8.34849e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69544e-01\tAbsError: 4.67018e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69471e-01\tAbsError: 3.67831e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.98080e-02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.12585e-09\tAbsError: 3.17320e-06\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.18153e-01\tAbsError: 7.69318e+12\n", - " Region: \"zone_1\"\tRelError: 2.19507e-02\tAbsError: 1.30281e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.19435e-02\tAbsError: 1.05212e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.21201e-06\tAbsError: 2.50690e-03\n", - " Region: \"zone_3\"\tRelError: 2.96202e-01\tAbsError: 7.69318e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16081e-01\tAbsError: 3.71910e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.79572e-02\tAbsError: 3.97407e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.21572e-02\tAbsError: 1.05213e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.21469e-06\tAbsError: 2.50784e-03\n", + "number of equations 31686\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 2.31155e-01\tAbsError: 7.29126e+12\n", + " Region: \"zone_1\"\tRelError: 1.14303e-01\tAbsError: 4.77114e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14288e-01\tAbsError: 2.96192e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53494e-05\tAbsError: 4.76818e-03\n", + " Region: \"zone_3\"\tRelError: 1.16852e-01\tAbsError: 7.29126e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.42016e-04\tAbsError: 3.65263e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.09685e-04\tAbsError: 3.63863e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15685e-01\tAbsError: 3.09529e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53518e-05\tAbsError: 4.76906e-03\n", + "Iteration: 77\n", + " Device: \"device\"\tRelError: 2.10013e-03\tAbsError: 6.96674e+08\n", + " Region: \"zone_1\"\tRelError: 2.09332e-03\tAbsError: 5.61688e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09332e-03\tAbsError: 4.38796e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80374e-09\tAbsError: 5.61249e-07\n", + " Region: \"zone_3\"\tRelError: 6.80859e-06\tAbsError: 6.96674e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37508e-08\tAbsError: 3.71290e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.15183e-08\tAbsError: 3.25383e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 6.67151e-06\tAbsError: 4.55869e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80403e-09\tAbsError: 5.61354e-07\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.57105e+01\tAbsError: 3.80547e+16\n", + " Region: \"zone_1\"\tRelError: 1.34480e+01\tAbsError: 6.12759e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34480e+01\tAbsError: 6.12741e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.80260e-09\tAbsError: 1.80513e-06\n", + " Region: \"zone_3\"\tRelError: 2.26243e+00\tAbsError: 3.80547e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.04228e-01\tAbsError: 1.93525e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.04103e-01\tAbsError: 1.87021e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54103e-01\tAbsError: 6.12741e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.80354e-09\tAbsError: 1.80547e-06\n", + "Iteration: 9\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.44152e+00\tAbsError: 7.09598e+14\n", + " Region: \"zone_1\"\tRelError: 1.80386e+00\tAbsError: 3.00704e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80289e+00\tAbsError: 1.19131e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.69496e-04\tAbsError: 3.00585e-01\n", + " Region: \"zone_3\"\tRelError: 2.63767e+00\tAbsError: 7.09598e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.67006e-02\tAbsError: 3.59857e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.95840e-02\tAbsError: 3.49741e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.56042e+00\tAbsError: 1.25688e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.69656e-04\tAbsError: 3.00643e-01\n", + " Device: \"device\"\tRelError: 5.11633e+00\tAbsError: 3.79992e+15\n", + " Region: \"zone_1\"\tRelError: 8.28482e-01\tAbsError: 2.44674e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.27692e-01\tAbsError: 2.44099e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.90198e-04\tAbsError: 2.44430e-01\n", + " Region: \"zone_3\"\tRelError: 4.28785e+00\tAbsError: 3.79992e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.52927e-02\tAbsError: 1.83409e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.32706e-02\tAbsError: 1.96583e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.21850e+00\tAbsError: 2.45849e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.90831e-04\tAbsError: 2.44479e-01\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 1.91988e-01\tAbsError: 6.00842e+12\n", + " Region: \"zone_1\"\tRelError: 1.03989e-01\tAbsError: 3.93188e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03977e-01\tAbsError: 2.44092e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26492e-05\tAbsError: 3.92944e-03\n", + " Region: \"zone_3\"\tRelError: 8.79987e-02\tAbsError: 6.00842e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46553e-04\tAbsError: 3.00997e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.02288e-04\tAbsError: 2.99844e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.70372e-02\tAbsError: 2.55082e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26512e-05\tAbsError: 3.93017e-03\n", + "Iteration: 78\n", + " Device: \"device\"\tRelError: 1.75933e-03\tAbsError: 5.84639e+08\n", + " Region: \"zone_1\"\tRelError: 1.75361e-03\tAbsError: 4.71363e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75361e-03\tAbsError: 3.68234e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51368e-09\tAbsError: 4.70995e-07\n", + " Region: \"zone_3\"\tRelError: 5.71373e-06\tAbsError: 5.84639e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.34991e-08\tAbsError: 3.11584e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.00175e-08\tAbsError: 2.73055e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 5.59870e-06\tAbsError: 3.82561e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51393e-09\tAbsError: 4.71083e-07\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.12285e+00\tAbsError: 7.88353e+14\n", + " Region: \"zone_1\"\tRelError: 1.35647e+00\tAbsError: 2.01823e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35582e+00\tAbsError: 1.25389e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.50124e-04\tAbsError: 2.01698e-01\n", + " Region: \"zone_3\"\tRelError: 7.66388e-01\tAbsError: 7.88353e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.35400e-02\tAbsError: 3.99879e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.59379e-02\tAbsError: 3.88473e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.16260e-01\tAbsError: 1.35696e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.50228e-04\tAbsError: 2.01735e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 6.11341e+01\tAbsError: 9.89778e+16\n", + " Region: \"zone_1\"\tRelError: 5.38481e+01\tAbsError: 4.56876e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.38468e+01\tAbsError: 5.47718e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.30970e-03\tAbsError: 4.02105e-01\n", + " Region: \"zone_3\"\tRelError: 7.28602e+00\tAbsError: 9.89778e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.73097e-01\tAbsError: 4.81377e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.23659e-01\tAbsError: 5.08401e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.48796e+00\tAbsError: 5.47719e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.30970e-03\tAbsError: 4.02105e-01\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.53087e+00\tAbsError: 1.53407e+15\n", + " Region: \"zone_1\"\tRelError: 1.40541e+00\tAbsError: 3.36376e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40433e+00\tAbsError: 1.22732e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08646e-03\tAbsError: 3.36253e-01\n", + " Region: \"zone_3\"\tRelError: 1.12545e+00\tAbsError: 1.53407e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.28814e-02\tAbsError: 7.38573e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.46910e-02\tAbsError: 7.95497e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03679e+00\tAbsError: 1.23302e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08665e-03\tAbsError: 3.36319e-01\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 1.56998e-01\tAbsError: 4.95174e+12\n", + " Region: \"zone_1\"\tRelError: 7.89351e-02\tAbsError: 3.24026e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.89246e-02\tAbsError: 2.01156e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04243e-05\tAbsError: 3.23824e-03\n", + " Region: \"zone_3\"\tRelError: 7.80627e-02\tAbsError: 4.95174e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.68086e-04\tAbsError: 2.48062e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.14038e-04\tAbsError: 2.47112e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.72701e-02\tAbsError: 2.10214e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04260e-05\tAbsError: 3.23884e-03\n", + "Iteration: 79\n", + " Device: \"device\"\tRelError: 1.47858e-03\tAbsError: 4.90609e+08\n", + " Region: \"zone_1\"\tRelError: 1.47378e-03\tAbsError: 3.95564e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47378e-03\tAbsError: 3.09018e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27027e-09\tAbsError: 3.95255e-07\n", + " Region: \"zone_3\"\tRelError: 4.79489e-06\tAbsError: 4.90609e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.48959e-08\tAbsError: 2.61465e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.03661e-08\tAbsError: 2.29144e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 4.69836e-06\tAbsError: 3.21042e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27047e-09\tAbsError: 3.95329e-07\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.11089e+00\tAbsError: 5.43142e+14\n", + " Region: \"zone_1\"\tRelError: 9.22276e-01\tAbsError: 1.85260e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.21679e-01\tAbsError: 9.02496e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.97208e-04\tAbsError: 1.85170e-01\n", + " Region: \"zone_3\"\tRelError: 1.18861e+00\tAbsError: 5.43142e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14644e-02\tAbsError: 2.75351e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.39907e-02\tAbsError: 2.67791e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14256e+00\tAbsError: 9.66477e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.97303e-04\tAbsError: 1.85204e-01\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.28566e+00\tAbsError: 1.76712e+15\n", + " Region: \"zone_1\"\tRelError: 5.63143e-01\tAbsError: 2.17372e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.62442e-01\tAbsError: 1.33588e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.01424e-04\tAbsError: 2.17239e-01\n", + " Region: \"zone_3\"\tRelError: 2.72252e+00\tAbsError: 1.76712e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.59879e-02\tAbsError: 8.51028e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.81078e-02\tAbsError: 9.16091e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66772e+00\tAbsError: 1.34247e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.01537e-04\tAbsError: 2.17278e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 4.34963e+00\tAbsError: 1.69825e+17\n", + " Region: \"zone_1\"\tRelError: 8.17517e-01\tAbsError: 3.28628e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.16600e-01\tAbsError: 4.71426e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.17548e-04\tAbsError: 2.81485e-01\n", + " Region: \"zone_3\"\tRelError: 3.53211e+00\tAbsError: 1.69825e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.25300e-01\tAbsError: 8.81780e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.43317e-01\tAbsError: 8.16470e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86258e+00\tAbsError: 4.71428e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.17927e-04\tAbsError: 2.81578e-01\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 1.30093e-01\tAbsError: 4.08057e+12\n", + " Region: \"zone_1\"\tRelError: 6.95746e-02\tAbsError: 2.67029e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.95660e-02\tAbsError: 1.65772e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.59059e-06\tAbsError: 2.66864e-03\n", + " Region: \"zone_3\"\tRelError: 6.05187e-02\tAbsError: 4.08057e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.03283e-04\tAbsError: 2.04420e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.41138e-04\tAbsError: 2.03637e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.98657e-02\tAbsError: 1.73236e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.59196e-06\tAbsError: 2.66913e-03\n", + "Iteration: 80\n", + " Device: \"device\"\tRelError: 1.23928e-03\tAbsError: 4.11715e+08\n", + " Region: \"zone_1\"\tRelError: 1.23526e-03\tAbsError: 3.31953e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23526e-03\tAbsError: 2.59325e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06599e-09\tAbsError: 3.31694e-07\n", + " Region: \"zone_3\"\tRelError: 4.02384e-06\tAbsError: 4.11715e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.76762e-08\tAbsError: 2.19418e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.22668e-08\tAbsError: 1.92297e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 3.94283e-06\tAbsError: 2.69415e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06617e-09\tAbsError: 3.31756e-07\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.29016e+00\tAbsError: 4.83154e+14\n", + " Region: \"zone_1\"\tRelError: 7.59816e-01\tAbsError: 1.41871e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.59359e-01\tAbsError: 7.91064e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.57096e-04\tAbsError: 1.41792e-01\n", + " Region: \"zone_3\"\tRelError: 5.30340e-01\tAbsError: 4.83154e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61920e-02\tAbsError: 2.44986e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.81373e-02\tAbsError: 2.38168e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.95554e-01\tAbsError: 8.52274e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.57168e-04\tAbsError: 1.41818e-01\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.49541e+00\tAbsError: 1.17690e+15\n", + " Region: \"zone_1\"\tRelError: 7.83931e-01\tAbsError: 2.03526e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.83274e-01\tAbsError: 9.44450e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.57277e-04\tAbsError: 2.03432e-01\n", + " Region: \"zone_3\"\tRelError: 7.11482e-01\tAbsError: 1.17690e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.39052e-02\tAbsError: 5.66479e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.64929e-02\tAbsError: 6.10420e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.60427e-01\tAbsError: 9.48860e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.57381e-04\tAbsError: 2.03469e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 6.48371e+00\tAbsError: 2.03494e+17\n", + " Region: \"zone_1\"\tRelError: 3.24900e+00\tAbsError: 6.44962e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.24702e+00\tAbsError: 3.81001e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98209e-03\tAbsError: 6.06861e-01\n", + " Region: \"zone_3\"\tRelError: 3.23471e+00\tAbsError: 2.03494e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.40757e-01\tAbsError: 1.03116e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.70701e-01\tAbsError: 1.00378e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82126e+00\tAbsError: 3.81006e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98253e-03\tAbsError: 6.06987e-01\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 1.06662e-01\tAbsError: 3.36289e+12\n", + " Region: \"zone_1\"\tRelError: 5.42281e-02\tAbsError: 2.20058e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.42210e-02\tAbsError: 1.36613e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.07953e-06\tAbsError: 2.19921e-03\n", + " Region: \"zone_3\"\tRelError: 5.24340e-02\tAbsError: 3.36289e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.49973e-04\tAbsError: 1.68467e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.81178e-04\tAbsError: 1.67822e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.18958e-02\tAbsError: 1.42764e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.08066e-06\tAbsError: 2.19962e-03\n", + "Iteration: 81\n", + " Device: \"device\"\tRelError: 1.04107e-03\tAbsError: 3.45511e+08\n", + " Region: \"zone_1\"\tRelError: 1.03769e-03\tAbsError: 2.78572e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03769e-03\tAbsError: 2.17623e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.94573e-10\tAbsError: 2.78354e-07\n", + " Region: \"zone_3\"\tRelError: 3.37676e-06\tAbsError: 3.45511e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.16175e-08\tAbsError: 1.84138e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.54699e-08\tAbsError: 1.61373e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 3.30877e-06\tAbsError: 2.26091e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.94718e-10\tAbsError: 2.78407e-07\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.21665e+00\tAbsError: 3.74493e+14\n", + " Region: \"zone_1\"\tRelError: 5.40990e-01\tAbsError: 1.19552e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.40604e-01\tAbsError: 6.20070e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.85350e-04\tAbsError: 1.19490e-01\n", + " Region: \"zone_3\"\tRelError: 6.75657e-01\tAbsError: 3.74493e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36839e-02\tAbsError: 1.89856e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.54002e-02\tAbsError: 1.84637e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.46187e-01\tAbsError: 6.65856e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.85411e-04\tAbsError: 1.19512e-01\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.76440e+00\tAbsError: 1.05510e+15\n", + " Region: \"zone_1\"\tRelError: 3.96598e-01\tAbsError: 1.53009e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.96105e-01\tAbsError: 8.30844e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.93851e-04\tAbsError: 1.52926e-01\n", + " Region: \"zone_3\"\tRelError: 1.36781e+00\tAbsError: 1.05510e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.76116e-02\tAbsError: 5.07952e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96384e-02\tAbsError: 5.47147e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33006e+00\tAbsError: 8.34817e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.93929e-04\tAbsError: 1.52954e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 5.62229e+01\tAbsError: 2.10771e+17\n", + " Region: \"zone_1\"\tRelError: 5.68323e+00\tAbsError: 2.24913e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.68258e+00\tAbsError: 2.74178e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.49598e-04\tAbsError: 1.97495e-01\n", + " Region: \"zone_3\"\tRelError: 5.05396e+01\tAbsError: 2.10771e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.71692e-01\tAbsError: 1.08307e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.03191e-01\tAbsError: 1.02464e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.95641e+01\tAbsError: 2.74179e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.49617e-04\tAbsError: 1.97502e-01\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 8.82357e-02\tAbsError: 2.77128e+12\n", + " Region: \"zone_1\"\tRelError: 4.67791e-02\tAbsError: 1.81350e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.67733e-02\tAbsError: 1.12582e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.83420e-06\tAbsError: 1.81237e-03\n", + " Region: \"zone_3\"\tRelError: 4.14565e-02\tAbsError: 2.77128e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05977e-04\tAbsError: 1.38830e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.31687e-04\tAbsError: 1.38298e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.10130e-02\tAbsError: 1.17651e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.83514e-06\tAbsError: 1.81271e-03\n", + "Iteration: 82\n", + " Device: \"device\"\tRelError: 8.72898e-04\tAbsError: 2.89962e+08\n", + " Region: \"zone_1\"\tRelError: 8.70064e-04\tAbsError: 2.33775e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 8.70063e-04\tAbsError: 1.82627e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.50717e-10\tAbsError: 2.33592e-07\n", + " Region: \"zone_3\"\tRelError: 2.83375e-06\tAbsError: 2.89962e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.65331e-08\tAbsError: 1.54531e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.97660e-08\tAbsError: 1.35431e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.77670e-06\tAbsError: 1.89733e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.50839e-10\tAbsError: 2.33636e-07\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 8.24643e-01\tAbsError: 3.12528e+14\n", + " Region: \"zone_1\"\tRelError: 4.53085e-01\tAbsError: 9.54727e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.52777e-01\tAbsError: 5.15521e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.07634e-04\tAbsError: 9.54212e-02\n", + " Region: \"zone_3\"\tRelError: 3.71558e-01\tAbsError: 3.12528e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.08510e-02\tAbsError: 1.58452e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.22063e-02\tAbsError: 1.54076e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.48193e-01\tAbsError: 5.54597e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.07683e-04\tAbsError: 9.54387e-02\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.00485e+00\tAbsError: 8.04776e+14\n", + " Region: \"zone_1\"\tRelError: 4.62882e-01\tAbsError: 1.29050e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62466e-01\tAbsError: 6.43928e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.16714e-04\tAbsError: 1.28986e-01\n", + " Region: \"zone_3\"\tRelError: 5.41968e-01\tAbsError: 8.04776e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.48636e-02\tAbsError: 3.87384e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.66898e-02\tAbsError: 4.17392e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.09998e-01\tAbsError: 6.46959e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.16779e-04\tAbsError: 1.29009e-01\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 7.24668e-02\tAbsError: 2.28386e+12\n", + " Region: \"zone_1\"\tRelError: 3.71201e-02\tAbsError: 1.49450e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.71153e-02\tAbsError: 9.27789e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.80798e-06\tAbsError: 1.49357e-03\n", + " Region: \"zone_3\"\tRelError: 3.53468e-02\tAbsError: 2.28386e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.69762e-04\tAbsError: 1.14412e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.90954e-04\tAbsError: 1.13974e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.49812e-02\tAbsError: 9.69565e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.80874e-06\tAbsError: 1.49385e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.75826e+00\tAbsError: 9.42923e+16\n", + " Region: \"zone_1\"\tRelError: 1.03909e+00\tAbsError: 4.04411e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03783e+00\tAbsError: 2.13550e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.25686e-03\tAbsError: 3.83056e-01\n", + " Region: \"zone_3\"\tRelError: 1.71918e+00\tAbsError: 9.42923e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.90933e-01\tAbsError: 4.73680e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.38569e-01\tAbsError: 4.69243e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28842e+00\tAbsError: 2.13574e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.25686e-03\tAbsError: 3.83056e-01\n", + "Iteration: 83\n", + " Device: \"device\"\tRelError: 7.33061e-04\tAbsError: 2.43342e+08\n", + " Region: \"zone_1\"\tRelError: 7.30683e-04\tAbsError: 1.96182e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 7.30683e-04\tAbsError: 1.53259e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.29995e-10\tAbsError: 1.96028e-07\n", + " Region: \"zone_3\"\tRelError: 2.37805e-06\tAbsError: 2.43342e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.22664e-08\tAbsError: 1.29682e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.49793e-08\tAbsError: 1.13660e+08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.33018e-06\tAbsError: 1.59222e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.30097e-10\tAbsError: 1.96065e-07\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 7.42718e-01\tAbsError: 2.50732e+14\n", + " Region: \"zone_1\"\tRelError: 3.32598e-01\tAbsError: 7.84633e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.32345e-01\tAbsError: 4.14710e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.52893e-04\tAbsError: 7.84218e-02\n", + " Region: \"zone_3\"\tRelError: 4.10120e-01\tAbsError: 2.50732e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.95163e-03\tAbsError: 1.27115e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.00866e-02\tAbsError: 1.23617e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.90828e-01\tAbsError: 4.45669e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.52933e-04\tAbsError: 7.84362e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.02396e+00\tAbsError: 6.69958e+14\n", + " Region: \"zone_1\"\tRelError: 2.74346e-01\tAbsError: 1.01911e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74017e-01\tAbsError: 5.33253e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.28961e-04\tAbsError: 1.01857e-01\n", + " Region: \"zone_3\"\tRelError: 7.49617e-01\tAbsError: 6.69958e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16407e-02\tAbsError: 3.22505e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.30760e-02\tAbsError: 3.47453e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.24571e-01\tAbsError: 5.35780e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.29013e-04\tAbsError: 1.01876e-01\n", + "Iteration: 84\n", + " Device: \"device\"\tRelError: 6.14802e-04\tAbsError: 2.04205e+08\n", + " Region: \"zone_1\"\tRelError: 6.12806e-04\tAbsError: 1.64634e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 6.12806e-04\tAbsError: 1.28614e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.28686e-10\tAbsError: 1.64505e-07\n", + " Region: \"zone_3\"\tRelError: 1.99564e-06\tAbsError: 2.04205e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.86857e-08\tAbsError: 1.08823e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.09624e-08\tAbsError: 9.53816e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95547e-06\tAbsError: 1.33618e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.28771e-10\tAbsError: 1.64536e-07\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 5.98769e-02\tAbsError: 1.88209e+12\n", + " Region: \"zone_1\"\tRelError: 3.15556e-02\tAbsError: 1.23161e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.15516e-02\tAbsError: 7.64588e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.96223e-06\tAbsError: 1.23085e-03\n", + " Region: \"zone_3\"\tRelError: 2.83213e-02\tAbsError: 1.88209e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.39889e-04\tAbsError: 9.42852e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.57350e-04\tAbsError: 9.39240e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80201e-02\tAbsError: 7.99015e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.96287e-06\tAbsError: 1.23108e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.19063e+00\tAbsError: 1.20201e+16\n", + " Region: \"zone_1\"\tRelError: 4.00804e-01\tAbsError: 6.68958e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.98605e-01\tAbsError: 5.64943e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19831e-03\tAbsError: 6.68393e-01\n", + " Region: \"zone_3\"\tRelError: 7.89828e-01\tAbsError: 1.20201e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.32509e-02\tAbsError: 6.04365e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.24629e-02\tAbsError: 5.97646e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.71914e-01\tAbsError: 5.64943e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19949e-03\tAbsError: 6.68798e-01\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 5.38495e-01\tAbsError: 2.05397e+14\n", + " Region: \"zone_1\"\tRelError: 2.80887e-01\tAbsError: 6.34677e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80683e-01\tAbsError: 3.39472e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.04518e-04\tAbsError: 6.34338e-02\n", + " Region: \"zone_3\"\tRelError: 2.57608e-01\tAbsError: 2.05397e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.21046e-03\tAbsError: 1.04134e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.12028e-03\tAbsError: 1.01264e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42073e-01\tAbsError: 3.65027e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.04550e-04\tAbsError: 6.34454e-02\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 6.70544e-01\tAbsError: 5.32069e+14\n", + " Region: \"zone_1\"\tRelError: 2.83075e-01\tAbsError: 8.33526e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.82806e-01\tAbsError: 4.25231e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69133e-04\tAbsError: 8.33100e-02\n", + " Region: \"zone_3\"\tRelError: 3.87469e-01\tAbsError: 5.32069e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.55255e-03\tAbsError: 2.56119e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.07543e-02\tAbsError: 2.75950e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.66893e-01\tAbsError: 4.27238e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69175e-04\tAbsError: 8.33252e-02\n", + "Iteration: 85\n", + " Device: \"device\"\tRelError: 5.16200e-04\tAbsError: 1.71365e+08\n", + " Region: \"zone_1\"\tRelError: 5.14526e-04\tAbsError: 1.38159e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 5.14525e-04\tAbsError: 1.07931e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.43668e-10\tAbsError: 1.38051e-07\n", + " Region: \"zone_3\"\tRelError: 1.67472e-06\tAbsError: 1.71365e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.56809e-08\tAbsError: 9.13252e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.75915e-08\tAbsError: 8.00396e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64100e-06\tAbsError: 1.12131e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.43740e-10\tAbsError: 1.38077e-07\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 4.92314e-02\tAbsError: 1.55105e+12\n", + " Region: \"zone_1\"\tRelError: 2.53460e-02\tAbsError: 1.01497e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.53427e-02\tAbsError: 6.30096e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.26528e-06\tAbsError: 1.01434e-03\n", + " Region: \"zone_3\"\tRelError: 2.38855e-02\tAbsError: 1.55105e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.15290e-04\tAbsError: 7.77014e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29682e-04\tAbsError: 7.74037e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36372e-02\tAbsError: 6.58468e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.26580e-06\tAbsError: 1.01453e-03\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 4.67090e-01\tAbsError: 1.66441e+14\n", + " Region: \"zone_1\"\tRelError: 2.09902e-01\tAbsError: 5.17766e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09736e-01\tAbsError: 2.75217e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66873e-04\tAbsError: 5.17491e-02\n", + " Region: \"zone_3\"\tRelError: 2.57188e-01\tAbsError: 1.66441e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.89994e-03\tAbsError: 8.43819e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.64910e-03\tAbsError: 8.20590e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.44472e-01\tAbsError: 2.95827e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66899e-04\tAbsError: 5.17585e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.23630e+00\tAbsError: 4.20580e+15\n", + " Region: \"zone_1\"\tRelError: 1.36755e+00\tAbsError: 1.05964e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36720e+00\tAbsError: 1.76909e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.49335e-04\tAbsError: 1.05787e-01\n", + " Region: \"zone_3\"\tRelError: 3.86875e+00\tAbsError: 4.20580e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.64581e-02\tAbsError: 2.07145e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.26570e-03\tAbsError: 2.13435e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.84267e+00\tAbsError: 1.78502e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.49659e-04\tAbsError: 1.05789e-01\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 6.27484e-01\tAbsError: 4.33338e+14\n", + " Region: \"zone_1\"\tRelError: 1.86586e-01\tAbsError: 6.68427e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86370e-01\tAbsError: 3.45901e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.15777e-04\tAbsError: 6.68081e-02\n", + " Region: \"zone_3\"\tRelError: 4.40898e-01\tAbsError: 4.33338e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.62610e-03\tAbsError: 2.08595e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.58238e-03\tAbsError: 2.24743e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.24474e-01\tAbsError: 3.47537e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.15811e-04\tAbsError: 6.68203e-02\n", + "Iteration: 86\n", + " Device: \"device\"\tRelError: 4.33004e-04\tAbsError: 1.43799e+08\n", + " Region: \"zone_1\"\tRelError: 4.31599e-04\tAbsError: 1.15942e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 4.31598e-04\tAbsError: 9.05750e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.72322e-10\tAbsError: 1.15851e-07\n", + " Region: \"zone_3\"\tRelError: 1.40541e-06\tAbsError: 1.43799e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31592e-08\tAbsError: 7.66395e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.47626e-08\tAbsError: 6.71593e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37712e-06\tAbsError: 9.40992e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.72382e-10\tAbsError: 1.15873e-07\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 4.06447e-02\tAbsError: 1.27820e+12\n", + " Region: \"zone_1\"\tRelError: 2.13330e-02\tAbsError: 8.36436e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13303e-02\tAbsError: 5.19261e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69090e-06\tAbsError: 8.35917e-04\n", + " Region: \"zone_3\"\tRelError: 1.93117e-02\tAbsError: 1.27820e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.50052e-05\tAbsError: 6.40328e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06864e-04\tAbsError: 6.37875e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91072e-02\tAbsError: 5.42641e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69133e-06\tAbsError: 8.36071e-04\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 3.54648e-01\tAbsError: 1.35618e+14\n", + " Region: \"zone_1\"\tRelError: 1.78307e-01\tAbsError: 4.20427e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78172e-01\tAbsError: 2.24256e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35483e-04\tAbsError: 4.20203e-02\n", + " Region: \"zone_3\"\tRelError: 1.76340e-01\tAbsError: 1.35618e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.77777e-03\tAbsError: 6.87556e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.38244e-03\tAbsError: 6.68620e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66045e-01\tAbsError: 2.41099e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35504e-04\tAbsError: 4.20280e-02\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 4.45139e-01\tAbsError: 3.48276e+14\n", + " Region: \"zone_1\"\tRelError: 1.77078e-01\tAbsError: 5.41724e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76903e-01\tAbsError: 2.78241e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74907e-04\tAbsError: 5.41446e-02\n", + " Region: \"zone_3\"\tRelError: 2.68062e-01\tAbsError: 3.48276e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.19844e-03\tAbsError: 1.67648e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.98156e-03\tAbsError: 1.80628e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54707e-01\tAbsError: 2.79555e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74934e-04\tAbsError: 5.41544e-02\n", "Iteration: 8\n", - " Device: \"device\"\tRelError: 9.06918e-02\tAbsError: 2.13818e+13\n", - " Region: \"zone_1\"\tRelError: 5.41321e-03\tAbsError: 2.02187e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.40742e-03\tAbsError: 1.13615e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.79189e-06\tAbsError: 2.02073e-03\n", - " Region: \"zone_3\"\tRelError: 8.52786e-02\tAbsError: 2.13818e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.50647e-05\tAbsError: 1.06492e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.41669e-05\tAbsError: 1.07325e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.51436e-02\tAbsError: 1.14349e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.79312e-06\tAbsError: 2.02124e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.32287e+00\tAbsError: 9.07118e+15\n", - " Region: \"zone_1\"\tRelError: 1.41239e+00\tAbsError: 4.08445e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41227e+00\tAbsError: 3.17019e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.15460e-04\tAbsError: 4.05275e-02\n", - " Region: \"zone_3\"\tRelError: 4.91049e+00\tAbsError: 9.07118e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.35706e-02\tAbsError: 4.44589e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.94902e-03\tAbsError: 4.62529e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 4.89385e+00\tAbsError: 3.18982e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.15534e-04\tAbsError: 4.05531e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.50135e+00\tAbsError: 2.91713e+14\n", - " Region: \"zone_1\"\tRelError: 6.56152e-02\tAbsError: 8.99319e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.54450e-02\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70197e-04\tAbsError: 5.91682e-02\n", - " Region: \"zone_3\"\tRelError: 1.43573e+00\tAbsError: 2.91713e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37692e-01\tAbsError: 1.49991e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32867e-01\tAbsError: 1.41722e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.50013e-02\tAbsError: 3.07641e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70197e-04\tAbsError: 5.91682e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.93773e-02\tAbsError: 2.16739e+12\n", - " Region: \"zone_1\"\tRelError: 1.94704e-03\tAbsError: 2.16033e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.94083e-03\tAbsError: 5.39856e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.20559e-06\tAbsError: 2.15493e-03\n", - " Region: \"zone_3\"\tRelError: 6.74303e-02\tAbsError: 2.16739e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.50959e-02\tAbsError: 1.50592e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.92088e-04\tAbsError: 6.61468e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03608e-03\tAbsError: 5.64194e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.20559e-06\tAbsError: 2.15493e-03\n", + " Device: \"device\"\tRelError: 2.71154e+00\tAbsError: 1.05600e+15\n", + " Region: \"zone_1\"\tRelError: 3.96522e-01\tAbsError: 1.94417e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.95878e-01\tAbsError: 4.70129e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.44332e-04\tAbsError: 1.94370e-01\n", + " Region: \"zone_3\"\tRelError: 2.31502e+00\tAbsError: 1.05600e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.69831e-02\tAbsError: 5.22066e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.49120e-02\tAbsError: 5.33935e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.26248e+00\tAbsError: 4.86670e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.44761e-04\tAbsError: 1.94497e-01\n", + "Iteration: 87\n", + " Device: \"device\"\tRelError: 3.63504e-04\tAbsError: 1.20666e+08\n", + " Region: \"zone_1\"\tRelError: 3.62325e-04\tAbsError: 9.72974e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 3.62325e-04\tAbsError: 7.60097e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.12449e-10\tAbsError: 9.72214e-08\n", + " Region: \"zone_3\"\tRelError: 1.17941e-06\tAbsError: 1.20666e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10431e-08\tAbsError: 6.43041e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.23886e-08\tAbsError: 5.63621e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15567e-06\tAbsError: 7.89672e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.12500e-10\tAbsError: 9.72396e-08\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 3.34436e-02\tAbsError: 1.05338e+12\n", + " Region: \"zone_1\"\tRelError: 1.72769e-02\tAbsError: 6.89305e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72747e-02\tAbsError: 4.27922e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.21757e-06\tAbsError: 6.88877e-04\n", + " Region: \"zone_3\"\tRelError: 1.61667e-02\tAbsError: 1.05338e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.82973e-05\tAbsError: 5.27699e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.80711e-05\tAbsError: 5.25677e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59981e-02\tAbsError: 4.47191e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.21793e-06\tAbsError: 6.89005e-04\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 2.99090e-01\tAbsError: 1.10207e+14\n", + " Region: \"zone_1\"\tRelError: 1.34667e-01\tAbsError: 3.42237e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34556e-01\tAbsError: 1.82226e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10298e-04\tAbsError: 3.42055e-02\n", + " Region: \"zone_3\"\tRelError: 1.64423e-01\tAbsError: 1.10207e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.89745e-03\tAbsError: 5.58729e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.39228e-03\tAbsError: 5.43345e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56023e-01\tAbsError: 1.95885e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10316e-04\tAbsError: 3.42118e-02\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 3.95384e-01\tAbsError: 2.81827e+14\n", + " Region: \"zone_1\"\tRelError: 1.25218e-01\tAbsError: 4.36474e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25077e-01\tAbsError: 2.25129e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40904e-04\tAbsError: 4.36249e-02\n", + " Region: \"zone_3\"\tRelError: 2.70166e-01\tAbsError: 2.81827e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.98035e-03\tAbsError: 1.35662e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.60770e-03\tAbsError: 1.46165e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.59437e-01\tAbsError: 2.26193e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40927e-04\tAbsError: 4.36328e-02\n", "Iteration: 9\n", - " Device: \"device\"\tRelError: 5.23204e-02\tAbsError: 1.36111e+13\n", - " Region: \"zone_1\"\tRelError: 3.25743e-03\tAbsError: 2.33620e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.25676e-03\tAbsError: 5.48360e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.68920e-07\tAbsError: 2.33072e-04\n", - " Region: \"zone_3\"\tRelError: 4.90630e-02\tAbsError: 1.36111e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46005e-05\tAbsError: 6.78353e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.23853e-05\tAbsError: 6.82756e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.90154e-02\tAbsError: 5.51914e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.68941e-07\tAbsError: 2.33078e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.37835e-02\tAbsError: 3.06207e+14\n", - " Region: \"zone_1\"\tRelError: 1.75914e-02\tAbsError: 3.79806e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74832e-02\tAbsError: 1.26171e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08186e-04\tAbsError: 3.79680e-02\n", - " Region: \"zone_3\"\tRelError: 4.61921e-02\tAbsError: 3.06207e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09564e-03\tAbsError: 1.49901e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.92419e-04\tAbsError: 1.56306e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.47958e-02\tAbsError: 1.26817e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08228e-04\tAbsError: 3.79829e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.34092e-01\tAbsError: 3.63180e+13\n", - " Region: \"zone_1\"\tRelError: 4.74089e-02\tAbsError: 3.08418e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.73947e-02\tAbsError: 2.58899e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42440e-05\tAbsError: 4.95193e-03\n", - " Region: \"zone_3\"\tRelError: 8.86683e-01\tAbsError: 3.63180e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40041e-01\tAbsError: 2.66182e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.98904e-01\tAbsError: 9.69984e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 4.77236e-02\tAbsError: 2.58388e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42440e-05\tAbsError: 4.95193e-03\n", + " Device: \"device\"\tRelError: 2.58020e+00\tAbsError: 1.70028e+15\n", + " Region: \"zone_1\"\tRelError: 1.03513e+00\tAbsError: 1.02171e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03480e+00\tAbsError: 6.94135e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.29826e-04\tAbsError: 1.02101e-01\n", + " Region: \"zone_3\"\tRelError: 1.54508e+00\tAbsError: 1.70028e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32868e-02\tAbsError: 8.40045e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.32663e-02\tAbsError: 8.60235e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51819e+00\tAbsError: 6.99693e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.29881e-04\tAbsError: 1.02121e-01\n", + "Iteration: 88\n", + " Device: \"device\"\tRelError: 3.04957e-04\tAbsError: 1.01258e+08\n", + " Region: \"zone_1\"\tRelError: 3.03968e-04\tAbsError: 8.16510e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 3.03967e-04\tAbsError: 6.37866e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.62204e-10\tAbsError: 8.15872e-08\n", + " Region: \"zone_3\"\tRelError: 9.89750e-07\tAbsError: 1.01258e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.26727e-09\tAbsError: 5.39593e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03964e-08\tAbsError: 4.72988e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 9.69824e-07\tAbsError: 6.62684e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.62247e-10\tAbsError: 8.16026e-08\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 2.75948e-02\tAbsError: 8.68078e+11\n", + " Region: \"zone_1\"\tRelError: 1.44434e-02\tAbsError: 5.68055e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44416e-02\tAbsError: 3.52650e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82750e-06\tAbsError: 5.67703e-04\n", + " Region: \"zone_3\"\tRelError: 1.31514e-02\tAbsError: 8.68078e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.45221e-05\tAbsError: 4.34872e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.25761e-05\tAbsError: 4.33206e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30124e-02\tAbsError: 3.68529e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82779e-06\tAbsError: 5.67808e-04\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 2.34323e-01\tAbsError: 8.96636e+13\n", + " Region: \"zone_1\"\tRelError: 1.14864e-01\tAbsError: 2.78216e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14775e-01\tAbsError: 1.48284e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.96569e-05\tAbsError: 2.78067e-02\n", + " Region: \"zone_3\"\tRelError: 1.19459e-01\tAbsError: 8.96636e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.16269e-03\tAbsError: 4.54577e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.56337e-03\tAbsError: 4.42059e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12643e-01\tAbsError: 1.59411e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.96711e-05\tAbsError: 2.78118e-02\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 2.94163e-01\tAbsError: 2.27284e+14\n", + " Region: \"zone_1\"\tRelError: 1.12402e-01\tAbsError: 3.52775e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12288e-01\tAbsError: 1.81566e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13897e-04\tAbsError: 3.52593e-02\n", + " Region: \"zone_3\"\tRelError: 1.81761e-01\tAbsError: 2.27284e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.03364e-03\tAbsError: 1.09407e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.54351e-03\tAbsError: 1.17877e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73070e-01\tAbsError: 1.82423e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13915e-04\tAbsError: 3.52657e-02\n", "Iteration: 10\n", - " Device: \"device\"\tRelError: 7.80215e-03\tAbsError: 1.53595e+12\n", - " Region: \"zone_1\"\tRelError: 4.80636e-04\tAbsError: 1.08236e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.80325e-04\tAbsError: 6.67270e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.10441e-07\tAbsError: 1.08169e-04\n", - " Region: \"zone_3\"\tRelError: 7.32151e-03\tAbsError: 1.53595e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.01724e-06\tAbsError: 7.65591e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.19179e-06\tAbsError: 7.70356e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 7.31299e-03\tAbsError: 6.71457e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.10496e-07\tAbsError: 1.08189e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.14583e-03\tAbsError: 1.06368e+12\n", - " Region: \"zone_1\"\tRelError: 4.77108e-04\tAbsError: 9.99144e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.76825e-04\tAbsError: 1.58343e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.82488e-07\tAbsError: 9.83309e-05\n", - " Region: \"zone_3\"\tRelError: 6.68723e-04\tAbsError: 1.06368e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24784e-04\tAbsError: 2.85656e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.19154e-04\tAbsError: 7.78029e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.24501e-04\tAbsError: 1.59076e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.82620e-07\tAbsError: 9.83784e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 6.91540e-01\tAbsError: 2.30901e+14\n", - " Region: \"zone_1\"\tRelError: 9.68543e-02\tAbsError: 2.30691e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 9.68477e-02\tAbsError: 1.04073e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.54344e-06\tAbsError: 2.29650e-03\n", - " Region: \"zone_3\"\tRelError: 5.94685e-01\tAbsError: 2.30901e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73544e-04\tAbsError: 1.14971e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.60432e-04\tAbsError: 1.15930e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 5.93945e-01\tAbsError: 1.04696e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.54610e-06\tAbsError: 2.29743e-03\n", + " Device: \"device\"\tRelError: 4.11486e+01\tAbsError: 9.66278e+14\n", + " Region: \"zone_1\"\tRelError: 4.13214e-01\tAbsError: 1.11011e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.12856e-01\tAbsError: 4.44801e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.58592e-04\tAbsError: 1.10966e-01\n", + " Region: \"zone_3\"\tRelError: 4.07354e+01\tAbsError: 9.66278e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34544e-02\tAbsError: 4.77706e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.44109e-02\tAbsError: 4.88572e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.07072e+01\tAbsError: 4.47832e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.58650e-04\tAbsError: 1.10987e-01\n", + "Iteration: 89\n", + " Device: \"device\"\tRelError: 2.55982e-04\tAbsError: 8.49804e+07\n", + " Region: \"zone_1\"\tRelError: 2.55151e-04\tAbsError: 6.85208e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.55151e-04\tAbsError: 5.35291e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20039e-10\tAbsError: 6.84673e-08\n", + " Region: \"zone_3\"\tRelError: 8.30589e-07\tAbsError: 8.49804e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77701e-09\tAbsError: 4.52860e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.72457e-09\tAbsError: 3.96944e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 8.13867e-07\tAbsError: 5.56119e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20075e-10\tAbsError: 6.84801e-08\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 2.27171e-02\tAbsError: 7.15386e+11\n", + " Region: \"zone_1\"\tRelError: 1.17628e-02\tAbsError: 4.68133e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17613e-02\tAbsError: 2.90618e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50604e-06\tAbsError: 4.67843e-04\n", + " Region: \"zone_3\"\tRelError: 1.09543e-02\tAbsError: 7.15386e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.31743e-05\tAbsError: 3.58380e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.98120e-05\tAbsError: 3.57007e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08398e-02\tAbsError: 3.03704e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50628e-06\tAbsError: 4.67929e-04\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 2.52743e-01\tAbsError: 1.83582e+14\n", + " Region: \"zone_1\"\tRelError: 8.32322e-02\tAbsError: 2.84640e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.31403e-02\tAbsError: 1.46675e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.18908e-05\tAbsError: 2.84493e-02\n", + " Region: \"zone_3\"\tRelError: 1.69511e-01\tAbsError: 1.83582e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.24880e-03\tAbsError: 8.83699e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.65862e-03\tAbsError: 9.52122e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62512e-01\tAbsError: 1.47368e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.19052e-05\tAbsError: 2.84545e-02\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 1.93710e-01\tAbsError: 7.29184e+13\n", + " Region: \"zone_1\"\tRelError: 8.73189e-02\tAbsError: 2.26330e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.72460e-02\tAbsError: 1.20572e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.29416e-05\tAbsError: 2.26209e-02\n", + " Region: \"zone_3\"\tRelError: 1.06391e-01\tAbsError: 7.29184e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.57655e-03\tAbsError: 3.69682e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.90358e-03\tAbsError: 3.59502e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00838e-01\tAbsError: 1.29612e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.29532e-05\tAbsError: 2.26251e-02\n", "Iteration: 11\n", - " Device: \"device\"\tRelError: 3.24839e-03\tAbsError: 6.94914e+11\n", - " Region: \"zone_1\"\tRelError: 2.00839e-04\tAbsError: 1.73175e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.00789e-04\tAbsError: 2.61827e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.95620e-08\tAbsError: 1.72913e-05\n", - " Region: \"zone_3\"\tRelError: 3.04755e-03\tAbsError: 6.94914e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19854e-06\tAbsError: 3.46484e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.41935e-06\tAbsError: 3.48429e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.04488e-03\tAbsError: 2.64294e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.95807e-08\tAbsError: 1.72981e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.84661e-01\tAbsError: 3.60691e+12\n", - " Region: \"zone_1\"\tRelError: 1.51217e-02\tAbsError: 1.24488e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51123e-02\tAbsError: 9.16566e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.44392e-06\tAbsError: 3.28315e-03\n", - " Region: \"zone_3\"\tRelError: 2.69539e-01\tAbsError: 3.60691e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12296e-01\tAbsError: 2.19870e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.19182e-02\tAbsError: 1.40820e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.53153e-02\tAbsError: 9.16570e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.44392e-06\tAbsError: 3.28315e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.01321e-04\tAbsError: 7.94947e+10\n", - " Region: \"zone_1\"\tRelError: 1.53281e-05\tAbsError: 6.36624e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.51449e-05\tAbsError: 4.80125e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83179e-07\tAbsError: 6.36144e-05\n", - " Region: \"zone_3\"\tRelError: 8.59926e-05\tAbsError: 7.94947e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.36957e-06\tAbsError: 5.94263e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.23031e-06\tAbsError: 2.00684e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.52095e-05\tAbsError: 5.01215e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83260e-07\tAbsError: 6.36408e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 4.26812e-02\tAbsError: 1.20947e+13\n", - " Region: \"zone_1\"\tRelError: 6.40537e-03\tAbsError: 1.38235e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.40142e-03\tAbsError: 7.35377e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.94662e-06\tAbsError: 1.38161e-03\n", - " Region: \"zone_3\"\tRelError: 3.62758e-02\tAbsError: 1.20947e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.08131e-05\tAbsError: 6.01724e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.02534e-05\tAbsError: 6.07742e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.61908e-02\tAbsError: 7.39578e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.94693e-06\tAbsError: 1.38178e-03\n", + " Device: \"device\"\tRelError: 1.65775e+00\tAbsError: 9.54726e+14\n", + " Region: \"zone_1\"\tRelError: 6.10696e-01\tAbsError: 7.86955e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.10442e-01\tAbsError: 4.23053e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54106e-04\tAbsError: 7.86532e-02\n", + " Region: \"zone_3\"\tRelError: 1.04706e+00\tAbsError: 9.54726e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.25814e-03\tAbsError: 4.71862e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.01283e-02\tAbsError: 4.82864e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02742e+00\tAbsError: 4.26243e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54147e-04\tAbsError: 7.86676e-02\n", + "Iteration: 90\n", + " Device: \"device\"\tRelError: 2.14772e-04\tAbsError: 7.13222e+07\n", + " Region: \"zone_1\"\tRelError: 2.14075e-04\tAbsError: 5.75020e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.14075e-04\tAbsError: 4.49212e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84655e-10\tAbsError: 5.74571e-08\n", + " Region: \"zone_3\"\tRelError: 6.97022e-07\tAbsError: 7.13222e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.52639e-09\tAbsError: 3.80091e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32158e-09\tAbsError: 3.33131e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 6.82990e-07\tAbsError: 4.66690e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84685e-10\tAbsError: 5.74679e-08\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 1.87369e-02\tAbsError: 5.89545e+11\n", + " Region: \"zone_1\"\tRelError: 9.78859e-03\tAbsError: 3.85788e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.78735e-03\tAbsError: 2.39498e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24112e-06\tAbsError: 3.85549e-04\n", + " Region: \"zone_3\"\tRelError: 8.94829e-03\tAbsError: 5.89545e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.38197e-05\tAbsError: 2.95338e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.92895e-05\tAbsError: 2.94207e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.85394e-03\tAbsError: 2.50282e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24132e-06\tAbsError: 3.85620e-04\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 1.93647e-01\tAbsError: 1.48191e+14\n", + " Region: \"zone_1\"\tRelError: 7.20212e-02\tAbsError: 2.29871e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.19470e-02\tAbsError: 1.18384e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.42151e-05\tAbsError: 2.29752e-02\n", + " Region: \"zone_3\"\tRelError: 1.21625e-01\tAbsError: 1.48191e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.62735e-03\tAbsError: 7.13341e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.95940e-03\tAbsError: 7.68570e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15964e-01\tAbsError: 1.18943e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.42268e-05\tAbsError: 2.29794e-02\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 1.54997e-01\tAbsError: 5.93031e+13\n", + " Region: \"zone_1\"\tRelError: 7.46848e-02\tAbsError: 1.84052e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.46255e-02\tAbsError: 9.80752e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.93129e-05\tAbsError: 1.83954e-02\n", + " Region: \"zone_3\"\tRelError: 8.03124e-02\tAbsError: 5.93031e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.09278e-03\tAbsError: 3.00655e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.35804e-03\tAbsError: 2.92376e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.58023e-02\tAbsError: 1.05433e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.93223e-05\tAbsError: 1.83988e-02\n", "Iteration: 12\n", - " Device: \"device\"\tRelError: 5.79766e-04\tAbsError: 1.04851e+11\n", - " Region: \"zone_1\"\tRelError: 3.57298e-05\tAbsError: 6.44419e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.57113e-05\tAbsError: 4.57262e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84578e-08\tAbsError: 6.43961e-06\n", - " Region: \"zone_3\"\tRelError: 5.44036e-04\tAbsError: 1.04851e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.31216e-07\tAbsError: 5.22891e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.92773e-07\tAbsError: 5.25616e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.43493e-04\tAbsError: 4.61453e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84647e-08\tAbsError: 6.44213e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.15194e-02\tAbsError: 3.32539e+12\n", - " Region: \"zone_1\"\tRelError: 1.39866e-03\tAbsError: 2.06500e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39275e-03\tAbsError: 1.45908e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.90398e-06\tAbsError: 2.05041e-03\n", - " Region: \"zone_3\"\tRelError: 6.01208e-02\tAbsError: 3.32539e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.70408e-02\tAbsError: 2.05877e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.81898e-04\tAbsError: 1.26662e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49218e-03\tAbsError: 1.52369e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.90398e-06\tAbsError: 2.05041e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.79799e-05\tAbsError: 5.88284e+10\n", - " Region: \"zone_1\"\tRelError: 8.12709e-06\tAbsError: 2.69739e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 8.11950e-06\tAbsError: 5.30618e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.59657e-09\tAbsError: 2.64433e-06\n", - " Region: \"zone_3\"\tRelError: 4.98528e-05\tAbsError: 5.88284e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.66980e-06\tAbsError: 2.37822e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.62891e-06\tAbsError: 3.50462e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.05465e-05\tAbsError: 5.31420e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.60077e-09\tAbsError: 2.64586e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:58\u001b[0m.\u001b[1;36m982\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:40:58\u001b[0m.\u001b[1;36m982\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.4136363636363636\u001b[0m \n", + " Device: \"device\"\tRelError: 3.96184e+00\tAbsError: 6.91857e+14\n", + " Region: \"zone_1\"\tRelError: 3.18350e-01\tAbsError: 6.93227e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.18127e-01\tAbsError: 3.17447e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23910e-04\tAbsError: 6.92910e-02\n", + " Region: \"zone_3\"\tRelError: 3.64349e+00\tAbsError: 6.91857e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.05842e-03\tAbsError: 3.42009e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.95373e-03\tAbsError: 3.49848e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.62625e+00\tAbsError: 3.19718e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23945e-04\tAbsError: 6.93037e-02\n", + "Iteration: 91\n", + " Device: \"device\"\tRelError: 1.80267e-04\tAbsError: 5.98485e+07\n", + " Region: \"zone_1\"\tRelError: 1.79682e-04\tAbsError: 4.82551e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79682e-04\tAbsError: 3.76974e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54961e-10\tAbsError: 4.82174e-08\n", + " Region: \"zone_3\"\tRelError: 5.84933e-07\tAbsError: 5.98485e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.47689e-09\tAbsError: 3.19001e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.14419e-09\tAbsError: 2.79484e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 5.73157e-07\tAbsError: 3.91641e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54986e-10\tAbsError: 4.82265e-08\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 1.54301e-02\tAbsError: 4.85845e+11\n", + " Region: \"zone_1\"\tRelError: 8.00223e-03\tAbsError: 3.17927e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.00121e-03\tAbsError: 1.97370e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02281e-06\tAbsError: 3.17730e-04\n", + " Region: \"zone_3\"\tRelError: 7.42791e-03\tAbsError: 4.85845e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61125e-05\tAbsError: 2.43389e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.06204e-05\tAbsError: 2.42457e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.35016e-03\tAbsError: 2.06257e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02297e-06\tAbsError: 3.17789e-04\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 1.62831e-01\tAbsError: 1.19639e+14\n", + " Region: \"zone_1\"\tRelError: 5.49604e-02\tAbsError: 1.85552e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.49005e-02\tAbsError: 9.55897e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.99030e-05\tAbsError: 1.85457e-02\n", + " Region: \"zone_3\"\tRelError: 1.07870e-01\tAbsError: 1.19639e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11835e-03\tAbsError: 5.75901e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.38572e-03\tAbsError: 6.20492e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03306e-01\tAbsError: 9.60411e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.99124e-05\tAbsError: 1.85490e-02\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 1.26642e-01\tAbsError: 4.82359e+13\n", + " Region: \"zone_1\"\tRelError: 5.72704e-02\tAbsError: 1.49700e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.72221e-02\tAbsError: 7.97615e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.82448e-05\tAbsError: 1.49620e-02\n", + " Region: \"zone_3\"\tRelError: 6.93719e-02\tAbsError: 4.82359e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.70380e-03\tAbsError: 2.44546e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.92001e-03\tAbsError: 2.37812e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.56999e-02\tAbsError: 8.57424e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.82524e-05\tAbsError: 1.49648e-02\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.13074e+00\tAbsError: 5.94260e+14\n", + " Region: \"zone_1\"\tRelError: 3.64584e-01\tAbsError: 5.37405e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.64410e-01\tAbsError: 2.69312e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73542e-04\tAbsError: 5.37136e-02\n", + " Region: \"zone_3\"\tRelError: 7.66160e-01\tAbsError: 5.94260e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.19337e-03\tAbsError: 2.93737e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.90969e-03\tAbsError: 3.00523e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.52883e-01\tAbsError: 2.71304e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73570e-04\tAbsError: 5.37234e-02\n", + "Iteration: 92\n", + " Device: \"device\"\tRelError: 1.51255e-04\tAbsError: 5.02282e+07\n", + " Region: \"zone_1\"\tRelError: 1.50764e-04\tAbsError: 4.04952e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50764e-04\tAbsError: 3.16352e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.30042e-10\tAbsError: 4.04636e-08\n", + " Region: \"zone_3\"\tRelError: 4.90869e-07\tAbsError: 5.02282e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.59616e-09\tAbsError: 2.67678e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.15615e-09\tAbsError: 2.34604e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 4.80987e-07\tAbsError: 3.28661e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.30063e-10\tAbsError: 4.04712e-08\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 1.27232e-02\tAbsError: 4.00383e+11\n", + " Region: \"zone_1\"\tRelError: 6.63838e-03\tAbsError: 2.62003e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.63754e-03\tAbsError: 1.62652e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.42893e-07\tAbsError: 2.61841e-04\n", + " Region: \"zone_3\"\tRelError: 6.08486e-03\tAbsError: 4.00383e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.97597e-05\tAbsError: 2.00576e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.34745e-05\tAbsError: 1.99807e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.02078e-03\tAbsError: 1.69976e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.43028e-07\tAbsError: 2.61889e-04\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 1.27095e-01\tAbsError: 9.65961e+13\n", + " Region: \"zone_1\"\tRelError: 4.64268e-02\tAbsError: 1.49814e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.63784e-02\tAbsError: 7.71684e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.83677e-05\tAbsError: 1.49737e-02\n", + " Region: \"zone_3\"\tRelError: 8.06681e-02\tAbsError: 9.65961e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.71192e-03\tAbsError: 4.64980e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.92824e-03\tAbsError: 5.00981e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.69796e-02\tAbsError: 7.75329e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.83753e-05\tAbsError: 1.49764e-02\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 1.02558e-01\tAbsError: 3.92266e+13\n", + " Region: \"zone_1\"\tRelError: 4.88502e-02\tAbsError: 1.21748e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.88109e-02\tAbsError: 6.48720e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.92351e-05\tAbsError: 1.21683e-02\n", + " Region: \"zone_3\"\tRelError: 5.37081e-02\tAbsError: 3.92266e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38459e-03\tAbsError: 1.98871e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.56013e-03\tAbsError: 1.93395e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.07242e-02\tAbsError: 6.97379e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.92413e-05\tAbsError: 1.21706e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.72073e+00\tAbsError: 4.64563e+14\n", + " Region: \"zone_1\"\tRelError: 2.24590e-01\tAbsError: 4.45842e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24446e-01\tAbsError: 2.12659e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43998e-04\tAbsError: 4.45629e-02\n", + " Region: \"zone_3\"\tRelError: 1.49614e+00\tAbsError: 4.64563e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.13264e-03\tAbsError: 2.29643e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.74902e-03\tAbsError: 2.34919e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48511e+00\tAbsError: 2.14203e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44021e-04\tAbsError: 4.45711e-02\n", + "Iteration: 93\n", + " Device: \"device\"\tRelError: 1.26948e-04\tAbsError: 4.21544e+07\n", + " Region: \"zone_1\"\tRelError: 1.26536e-04\tAbsError: 3.39832e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26536e-04\tAbsError: 2.65480e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09130e-10\tAbsError: 3.39567e-08\n", + " Region: \"zone_3\"\tRelError: 4.11934e-07\tAbsError: 4.21544e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.85705e-09\tAbsError: 2.24672e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.32700e-09\tAbsError: 1.96872e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 4.03641e-07\tAbsError: 2.75810e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09147e-10\tAbsError: 3.39631e-08\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 1.04802e-02\tAbsError: 3.29956e+11\n", + " Region: \"zone_1\"\tRelError: 5.44093e-03\tAbsError: 2.15916e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.44023e-03\tAbsError: 1.34041e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.94627e-07\tAbsError: 2.15782e-04\n", + " Region: \"zone_3\"\tRelError: 5.03926e-03\tAbsError: 3.29956e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.45253e-05\tAbsError: 1.65295e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.75867e-05\tAbsError: 1.64661e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.98646e-03\tAbsError: 1.40077e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.94738e-07\tAbsError: 2.15822e-04\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 1.05374e-01\tAbsError: 7.79776e+13\n", + " Region: \"zone_1\"\tRelError: 3.61310e-02\tAbsError: 1.20945e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.60920e-02\tAbsError: 6.23021e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.90458e-05\tAbsError: 1.20883e-02\n", + " Region: \"zone_3\"\tRelError: 6.92431e-02\tAbsError: 7.79776e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38100e-03\tAbsError: 3.75357e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.55535e-03\tAbsError: 4.04420e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.62677e-02\tAbsError: 6.25963e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.90519e-05\tAbsError: 1.20905e-02\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 8.36734e-02\tAbsError: 3.19064e+13\n", + " Region: \"zone_1\"\tRelError: 3.82149e-02\tAbsError: 9.90196e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.81830e-02\tAbsError: 5.27608e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.19115e-05\tAbsError: 9.89668e-03\n", + " Region: \"zone_3\"\tRelError: 4.54585e-02\tAbsError: 3.19064e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12682e-03\tAbsError: 1.61759e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.26979e-03\tAbsError: 1.57305e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.30299e-02\tAbsError: 5.67173e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.19165e-05\tAbsError: 9.89849e-03\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 7.82135e-01\tAbsError: 3.82568e+14\n", + " Region: \"zone_1\"\tRelError: 2.24900e-01\tAbsError: 3.55727e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24785e-01\tAbsError: 1.74445e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14878e-04\tAbsError: 3.55553e-02\n", + " Region: \"zone_3\"\tRelError: 5.57234e-01\tAbsError: 3.82568e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.08197e-03\tAbsError: 1.89106e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.57474e-03\tAbsError: 1.93462e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.48463e-01\tAbsError: 1.75725e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14896e-04\tAbsError: 3.55617e-02\n", + "Iteration: 94\n", + " Device: \"device\"\tRelError: 1.06523e-04\tAbsError: 3.53725e+07\n", + " Region: \"zone_1\"\tRelError: 1.06177e-04\tAbsError: 2.85184e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06177e-04\tAbsError: 2.22789e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.15806e-11\tAbsError: 2.84961e-08\n", + " Region: \"zone_3\"\tRelError: 3.45693e-07\tAbsError: 3.53725e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.23680e-09\tAbsError: 1.88621e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.63118e-09\tAbsError: 1.65104e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 3.38733e-07\tAbsError: 2.31457e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.15956e-11\tAbsError: 2.85015e-08\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 8.64007e-03\tAbsError: 2.71915e+11\n", + " Region: \"zone_1\"\tRelError: 4.50405e-03\tAbsError: 1.77936e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.50347e-03\tAbsError: 1.10463e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.72441e-07\tAbsError: 1.77826e-04\n", + " Region: \"zone_3\"\tRelError: 4.13603e-03\tAbsError: 2.71915e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.02110e-05\tAbsError: 1.36219e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.27339e-05\tAbsError: 1.35697e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.09251e-03\tAbsError: 1.15437e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.72532e-07\tAbsError: 1.77859e-04\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 8.32316e-02\tAbsError: 6.29601e+13\n", + " Region: \"zone_1\"\tRelError: 3.00444e-02\tAbsError: 9.76438e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.00129e-02\tAbsError: 5.02985e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.15243e-05\tAbsError: 9.75935e-03\n", + " Region: \"zone_3\"\tRelError: 5.31871e-02\tAbsError: 6.29601e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.11561e-03\tAbsError: 3.03068e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.25655e-03\tAbsError: 3.26533e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.07834e-02\tAbsError: 5.05361e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.15292e-05\tAbsError: 9.76113e-03\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 6.78626e-02\tAbsError: 2.59474e+13\n", + " Region: \"zone_1\"\tRelError: 3.20757e-02\tAbsError: 8.05329e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.20497e-02\tAbsError: 4.29105e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.59530e-05\tAbsError: 8.04900e-03\n", + " Region: \"zone_3\"\tRelError: 3.57869e-02\tAbsError: 2.59474e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.15970e-04\tAbsError: 1.31548e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03212e-03\tAbsError: 1.27926e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.38128e-02\tAbsError: 4.61289e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.59571e-05\tAbsError: 8.05047e-03\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 9.48844e-01\tAbsError: 3.06155e+14\n", + " Region: \"zone_1\"\tRelError: 1.53153e-01\tAbsError: 2.89857e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53060e-01\tAbsError: 1.40002e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.36156e-05\tAbsError: 2.89717e-02\n", + " Region: \"zone_3\"\tRelError: 7.95691e-01\tAbsError: 3.06155e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.32902e-03\tAbsError: 1.51338e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.73508e-03\tAbsError: 1.54818e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.88533e-01\tAbsError: 1.41023e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.36303e-05\tAbsError: 2.89769e-02\n", + "Iteration: 95\n", + " Device: \"device\"\tRelError: 8.94012e-05\tAbsError: 2.96826e+07\n", + " Region: \"zone_1\"\tRelError: 8.91111e-05\tAbsError: 2.39324e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 8.91110e-05\tAbsError: 1.86962e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.68535e-11\tAbsError: 2.39137e-08\n", + " Region: \"zone_3\"\tRelError: 2.90100e-07\tAbsError: 2.96826e+07\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.71629e-09\tAbsError: 1.58308e+07\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.04725e-09\tAbsError: 1.38518e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 2.84260e-07\tAbsError: 1.94236e-11\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.68660e-11\tAbsError: 2.39182e-08\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 7.11796e-03\tAbsError: 2.24085e+11\n", + " Region: \"zone_1\"\tRelError: 3.69806e-03\tAbsError: 1.46637e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.69758e-03\tAbsError: 9.10326e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.71748e-07\tAbsError: 1.46546e-04\n", + " Region: \"zone_3\"\tRelError: 3.41991e-03\tAbsError: 2.24085e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.66560e-05\tAbsError: 1.12258e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.87352e-05\tAbsError: 1.11828e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.38405e-03\tAbsError: 9.51315e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.71823e-07\tAbsError: 1.46573e-04\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 6.83737e-02\tAbsError: 5.08250e+13\n", + " Region: \"zone_1\"\tRelError: 2.36826e-02\tAbsError: 7.88305e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36572e-02\tAbsError: 4.06073e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54498e-05\tAbsError: 7.87899e-03\n", + " Region: \"zone_3\"\tRelError: 4.46911e-02\tAbsError: 5.08250e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00222e-04\tAbsError: 2.44653e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.01389e-03\tAbsError: 2.63596e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.27515e-02\tAbsError: 4.07991e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54538e-05\tAbsError: 7.88042e-03\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 5.53098e-02\tAbsError: 2.11048e+13\n", + " Region: \"zone_1\"\tRelError: 2.54253e-02\tAbsError: 6.54977e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54042e-02\tAbsError: 3.48996e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.11081e-05\tAbsError: 6.54628e-03\n", + " Region: \"zone_3\"\tRelError: 2.98844e-02\tAbsError: 2.11048e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.45276e-04\tAbsError: 1.06997e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.39823e-04\tAbsError: 1.04051e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.82782e-02\tAbsError: 3.75168e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.11115e-05\tAbsError: 6.54748e-03\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 5.37748e-01\tAbsError: 2.48898e+14\n", + " Region: \"zone_1\"\tRelError: 1.41848e-01\tAbsError: 2.33383e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41773e-01\tAbsError: 1.13686e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.53700e-05\tAbsError: 2.33269e-02\n", + " Region: \"zone_3\"\tRelError: 3.95900e-01\tAbsError: 2.48898e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.67601e-03\tAbsError: 1.23033e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.00229e-03\tAbsError: 1.25865e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.90146e-01\tAbsError: 1.14518e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.53819e-05\tAbsError: 2.33311e-02\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 5.86746e-03\tAbsError: 1.84668e+11\n", + " Region: \"zone_1\"\tRelError: 3.05687e-03\tAbsError: 1.20843e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.05648e-03\tAbsError: 7.50198e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.88766e-07\tAbsError: 1.20768e-04\n", + " Region: \"zone_3\"\tRelError: 2.81058e-03\tAbsError: 1.84668e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.37261e-05\tAbsError: 9.25113e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.54395e-05\tAbsError: 9.21569e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78103e-03\tAbsError: 7.83977e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.88828e-07\tAbsError: 1.20791e-04\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 5.44217e-02\tAbsError: 4.10359e+13\n", + " Region: \"zone_1\"\tRelError: 1.94917e-02\tAbsError: 6.36421e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.94712e-02\tAbsError: 3.27839e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.05467e-05\tAbsError: 6.36093e-03\n", + " Region: \"zone_3\"\tRelError: 3.49300e-02\tAbsError: 4.10359e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.27062e-04\tAbsError: 1.97532e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.18907e-04\tAbsError: 2.12826e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.33635e-02\tAbsError: 3.29387e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.05500e-05\tAbsError: 6.36209e-03\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 4.49018e-02\tAbsError: 1.71635e+13\n", + " Region: \"zone_1\"\tRelError: 2.11144e-02\tAbsError: 5.32698e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.10973e-02\tAbsError: 2.83838e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71671e-05\tAbsError: 5.32414e-03\n", + " Region: \"zone_3\"\tRelError: 2.37874e-02\tAbsError: 1.71635e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.05930e-04\tAbsError: 8.70155e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.82769e-04\tAbsError: 8.46195e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24815e-02\tAbsError: 3.05126e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71698e-05\tAbsError: 5.32511e-03\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 5.66975e-01\tAbsError: 2.00616e+14\n", + " Region: \"zone_1\"\tRelError: 1.02735e-01\tAbsError: 1.89132e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02674e-01\tAbsError: 9.17042e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.10833e-05\tAbsError: 1.89040e-02\n", + " Region: \"zone_3\"\tRelError: 4.64240e-01\tAbsError: 2.00616e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17069e-03\tAbsError: 9.91674e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.43627e-03\tAbsError: 1.01448e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.59572e-01\tAbsError: 9.23742e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.10929e-05\tAbsError: 1.89075e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:30:54\u001b[0m.\u001b[1;36m351\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:30:54\u001b[0m.\u001b[1;36m373\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.95 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:30:54\u001b[0m.\u001b[1;36m387\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.95\u001b[0m \n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", @@ -56320,63 +14094,1155 @@ "Contact: zone_3_bc_4, Equation: PotentialEquation\n", "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 3.80030e-02\tAbsError: 9.01767e+12\n", - " Region: \"zone_1\"\tRelError: 5.48386e-03\tAbsError: 1.27682e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.48349e-03\tAbsError: 3.71300e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.63667e-07\tAbsError: 1.27311e-04\n", - " Region: \"zone_3\"\tRelError: 3.25191e-02\tAbsError: 9.01767e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.75047e-05\tAbsError: 4.49288e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.54817e-05\tAbsError: 4.52478e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.24858e-02\tAbsError: 3.73422e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.63688e-07\tAbsError: 1.27324e-04\n", "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 1.98524e-04\tAbsError: 3.83891e+10\n", - " Region: \"zone_1\"\tRelError: 1.22506e-05\tAbsError: 1.22488e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.22471e-05\tAbsError: 1.59287e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.50629e-09\tAbsError: 1.22328e-06\n", - " Region: \"zone_3\"\tRelError: 1.86273e-04\tAbsError: 3.83891e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.51745e-08\tAbsError: 1.91479e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.84174e-08\tAbsError: 1.92412e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86116e-04\tAbsError: 1.60789e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.50766e-09\tAbsError: 1.22379e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.41584e-04\tAbsError: 9.91747e+11\n", - " Region: \"zone_1\"\tRelError: 9.96217e-05\tAbsError: 1.41225e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.92201e-05\tAbsError: 1.43599e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.01567e-07\tAbsError: 1.39789e-04\n", - " Region: \"zone_3\"\tRelError: 5.41962e-04\tAbsError: 9.91747e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33850e-04\tAbsError: 2.52742e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.19510e-04\tAbsError: 7.39006e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88200e-04\tAbsError: 1.43643e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.01722e-07\tAbsError: 1.39845e-04\n", + "number of equations 31686\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 4.83430e-03\tAbsError: 1.52185e+11\n", + " Region: \"zone_1\"\tRelError: 2.51284e-03\tAbsError: 9.95868e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51252e-03\tAbsError: 6.18237e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.20382e-07\tAbsError: 9.95250e-05\n", + " Region: \"zone_3\"\tRelError: 2.32146e-03\tAbsError: 1.52185e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13117e-05\tAbsError: 7.62385e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.27237e-05\tAbsError: 7.59464e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29711e-03\tAbsError: 6.46074e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.20433e-07\tAbsError: 9.95433e-05\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 4.44379e-02\tAbsError: 3.31272e+13\n", + " Region: \"zone_1\"\tRelError: 1.54929e-02\tAbsError: 5.13804e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54763e-02\tAbsError: 2.64672e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65878e-05\tAbsError: 5.13539e-03\n", + " Region: \"zone_3\"\tRelError: 2.89449e-02\tAbsError: 3.31272e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.86794e-04\tAbsError: 1.59463e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.60893e-04\tAbsError: 1.71810e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76807e-02\tAbsError: 2.65921e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65904e-05\tAbsError: 5.13633e-03\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 3.65706e-02\tAbsError: 1.39599e+13\n", + " Region: \"zone_1\"\tRelError: 1.68831e-02\tAbsError: 4.33244e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68691e-02\tAbsError: 2.30849e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39622e-05\tAbsError: 4.33013e-03\n", + " Region: \"zone_3\"\tRelError: 1.96875e-02\tAbsError: 1.39599e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.92942e-04\tAbsError: 7.07740e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.55473e-04\tAbsError: 6.88252e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86251e-02\tAbsError: 2.48161e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39644e-05\tAbsError: 4.33092e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.91484e+01\tAbsError: 3.65135e+16\n", + " Region: \"zone_1\"\tRelError: 3.68399e+01\tAbsError: 6.92846e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.68399e+01\tAbsError: 6.92846e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.44948e-11\tAbsError: 2.00682e-08\n", + " Region: \"zone_3\"\tRelError: 2.30850e+00\tAbsError: 3.65135e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.29731e-01\tAbsError: 2.15299e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.29681e-01\tAbsError: 1.49836e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.49088e-01\tAbsError: 6.92846e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.45053e-11\tAbsError: 2.00719e-08\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 3.65544e-01\tAbsError: 1.62458e+14\n", + " Region: \"zone_1\"\tRelError: 9.06744e-02\tAbsError: 1.52715e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.06251e-02\tAbsError: 7.42382e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.93194e-05\tAbsError: 1.52641e-02\n", + " Region: \"zone_3\"\tRelError: 2.74870e-01\tAbsError: 1.62458e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.75100e-03\tAbsError: 8.03050e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96503e-03\tAbsError: 8.21530e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.71105e-01\tAbsError: 7.47811e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.93272e-05\tAbsError: 1.52669e-02\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 3.98466e-03\tAbsError: 1.25415e+11\n", + " Region: \"zone_1\"\tRelError: 2.07512e-03\tAbsError: 8.20693e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07486e-03\tAbsError: 5.09488e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.64026e-07\tAbsError: 8.20183e-05\n", + " Region: \"zone_3\"\tRelError: 1.90954e-03\tAbsError: 1.25415e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.32192e-06\tAbsError: 6.28279e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04855e-05\tAbsError: 6.25872e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88946e-03\tAbsError: 5.32429e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.64068e-07\tAbsError: 8.20335e-05\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 3.55462e-02\tAbsError: 2.67462e+13\n", + " Region: \"zone_1\"\tRelError: 1.26661e-02\tAbsError: 4.14807e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26527e-02\tAbsError: 2.13680e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33919e-05\tAbsError: 4.14594e-03\n", + " Region: \"zone_3\"\tRelError: 2.28801e-02\tAbsError: 2.67462e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73856e-04\tAbsError: 1.28747e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.33711e-04\tAbsError: 1.38715e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18592e-02\tAbsError: 2.14689e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33940e-05\tAbsError: 4.14669e-03\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 2.97075e-02\tAbsError: 1.13532e+13\n", + " Region: \"zone_1\"\tRelError: 1.39219e-02\tAbsError: 3.52361e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39106e-02\tAbsError: 1.87749e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13555e-05\tAbsError: 3.52173e-03\n", + " Region: \"zone_3\"\tRelError: 1.57856e-02\tAbsError: 1.13532e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.00822e-04\tAbsError: 5.75582e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.51654e-04\tAbsError: 5.59734e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49217e-02\tAbsError: 2.01830e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13573e-05\tAbsError: 3.52237e-03\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 3.51837e-01\tAbsError: 1.31228e+14\n", + " Region: \"zone_1\"\tRelError: 6.82730e-02\tAbsError: 1.23554e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.82331e-02\tAbsError: 5.99785e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.99034e-05\tAbsError: 1.23494e-02\n", + " Region: \"zone_3\"\tRelError: 2.83564e-01\tAbsError: 1.31228e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.41766e-03\tAbsError: 6.48679e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.59119e-03\tAbsError: 6.63602e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80516e-01\tAbsError: 6.04169e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.99097e-05\tAbsError: 1.23517e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 9.01348e+00\tAbsError: 7.15084e+16\n", + " Region: \"zone_1\"\tRelError: 3.53441e+00\tAbsError: 4.01969e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53331e+00\tAbsError: 6.40094e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10023e-03\tAbsError: 3.37959e-01\n", + " Region: \"zone_3\"\tRelError: 5.47908e+00\tAbsError: 7.15084e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.11631e-01\tAbsError: 3.49892e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.55224e-01\tAbsError: 3.65191e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.61112e+00\tAbsError: 6.40094e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10023e-03\tAbsError: 3.37959e-01\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 3.28326e-03\tAbsError: 1.03355e+11\n", + " Region: \"zone_1\"\tRelError: 1.70718e-03\tAbsError: 6.76332e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70697e-03\tAbsError: 4.19868e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17583e-07\tAbsError: 6.75912e-05\n", + " Region: \"zone_3\"\tRelError: 1.57607e-03\tAbsError: 1.03355e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68221e-06\tAbsError: 5.17764e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.64116e-06\tAbsError: 5.15781e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55953e-03\tAbsError: 4.38774e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17618e-07\tAbsError: 6.76037e-05\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 2.89109e-02\tAbsError: 2.15920e+13\n", + " Region: \"zone_1\"\tRelError: 1.01224e-02\tAbsError: 3.34888e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01116e-02\tAbsError: 1.72509e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08116e-05\tAbsError: 3.34715e-03\n", + " Region: \"zone_3\"\tRelError: 1.87885e-02\tAbsError: 2.15920e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.82480e-04\tAbsError: 1.03936e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.30782e-04\tAbsError: 1.11983e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79645e-02\tAbsError: 1.73323e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08133e-05\tAbsError: 3.34776e-03\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 2.41840e-02\tAbsError: 9.23393e+12\n", + " Region: \"zone_1\"\tRelError: 1.11962e-02\tAbsError: 2.86576e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11870e-02\tAbsError: 1.52699e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.23551e-06\tAbsError: 2.86423e-03\n", + " Region: \"zone_3\"\tRelError: 1.29878e-02\tAbsError: 9.23393e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.26050e-04\tAbsError: 4.68142e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.67408e-04\tAbsError: 4.55251e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22851e-02\tAbsError: 1.64150e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.23697e-06\tAbsError: 2.86475e-03\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 2.45808e-01\tAbsError: 1.06142e+14\n", + " Region: \"zone_1\"\tRelError: 5.84362e-02\tAbsError: 9.98517e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.84040e-02\tAbsError: 4.85098e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.22474e-05\tAbsError: 9.98032e-03\n", + " Region: \"zone_3\"\tRelError: 1.87372e-01\tAbsError: 1.06142e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.14498e-03\tAbsError: 5.24675e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.28503e-03\tAbsError: 5.36748e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84910e-01\tAbsError: 4.88645e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.22525e-05\tAbsError: 9.98214e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.42505e+01\tAbsError: 1.75907e+17\n", + " Region: \"zone_1\"\tRelError: 1.86952e+01\tAbsError: 2.31776e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86947e+01\tAbsError: 5.79454e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.66225e-04\tAbsError: 1.73830e-01\n", + " Region: \"zone_3\"\tRelError: 5.55521e+00\tAbsError: 1.75907e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.86283e-01\tAbsError: 8.97707e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.02990e-01\tAbsError: 8.61365e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.76537e+00\tAbsError: 5.79455e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.66969e-04\tAbsError: 1.74067e-01\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 2.70606e-03\tAbsError: 8.51742e+10\n", + " Region: \"zone_1\"\tRelError: 1.40887e-03\tAbsError: 5.57364e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40869e-03\tAbsError: 3.46013e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79310e-07\tAbsError: 5.57018e-05\n", + " Region: \"zone_3\"\tRelError: 1.29719e-03\tAbsError: 8.51742e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.33087e-06\tAbsError: 4.26688e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.12114e-06\tAbsError: 4.25054e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28356e-03\tAbsError: 3.61592e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79339e-07\tAbsError: 5.57121e-05\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 2.32007e-02\tAbsError: 1.74325e+13\n", + " Region: \"zone_1\"\tRelError: 8.23932e-03\tAbsError: 2.70364e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.23059e-03\tAbsError: 1.39272e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.72860e-06\tAbsError: 2.70225e-03\n", + " Region: \"zone_3\"\tRelError: 1.49614e-02\tAbsError: 1.74325e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.08838e-04\tAbsError: 8.39140e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.47848e-04\tAbsError: 9.04111e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42960e-02\tAbsError: 1.39930e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.72998e-06\tAbsError: 2.70274e-03\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 1.96535e-02\tAbsError: 7.50977e+12\n", + " Region: \"zone_1\"\tRelError: 9.18949e-03\tAbsError: 2.33074e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.18198e-03\tAbsError: 1.24190e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.51125e-06\tAbsError: 2.32950e-03\n", + " Region: \"zone_3\"\tRelError: 1.04640e-02\tAbsError: 7.50977e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.65139e-04\tAbsError: 3.80730e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.98765e-04\tAbsError: 3.70247e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.89263e-03\tAbsError: 1.33504e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.51244e-06\tAbsError: 2.32993e-03\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 2.22840e-01\tAbsError: 8.57934e+13\n", + " Region: \"zone_1\"\tRelError: 4.51085e-02\tAbsError: 8.07443e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.50824e-02\tAbsError: 3.92110e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.60773e-05\tAbsError: 8.07050e-03\n", + " Region: \"zone_3\"\tRelError: 1.77732e-01\tAbsError: 8.57934e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.26333e-04\tAbsError: 4.24089e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03972e-03\tAbsError: 4.33845e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75740e-01\tAbsError: 3.94976e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.60814e-05\tAbsError: 8.07197e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.11821e+02\tAbsError: 3.13110e+17\n", + " Region: \"zone_1\"\tRelError: 8.75717e+01\tAbsError: 6.75674e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.75697e+01\tAbsError: 5.08807e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03905e-03\tAbsError: 6.24793e-01\n", + " Region: \"zone_3\"\tRelError: 2.42492e+01\tAbsError: 3.13110e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.46296e-01\tAbsError: 1.65492e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.20564e-01\tAbsError: 1.47618e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25803e+01\tAbsError: 5.08809e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03905e-03\tAbsError: 6.24793e-01\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 2.22983e-03\tAbsError: 7.01920e+10\n", + " Region: \"zone_1\"\tRelError: 1.15970e-03\tAbsError: 4.59322e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15955e-03\tAbsError: 2.85148e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47769e-07\tAbsError: 4.59037e-05\n", + " Region: \"zone_3\"\tRelError: 1.07013e-03\tAbsError: 7.01920e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.21728e-06\tAbsError: 3.51633e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.86854e-06\tAbsError: 3.50286e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05890e-03\tAbsError: 2.97988e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47793e-07\tAbsError: 4.59122e-05\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 1.88214e-02\tAbsError: 1.40733e+13\n", + " Region: \"zone_1\"\tRelError: 6.60797e-03\tAbsError: 2.18274e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.60092e-03\tAbsError: 1.12438e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.04684e-06\tAbsError: 2.18161e-03\n", + " Region: \"zone_3\"\tRelError: 1.22134e-02\tAbsError: 1.40733e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.49301e-04\tAbsError: 6.77442e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.80786e-04\tAbsError: 7.29893e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16763e-02\tAbsError: 1.12969e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.04795e-06\tAbsError: 2.18201e-03\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 1.59943e-02\tAbsError: 6.10789e+12\n", + " Region: \"zone_1\"\tRelError: 7.41852e-03\tAbsError: 1.89560e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.41241e-03\tAbsError: 1.01005e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.10896e-06\tAbsError: 1.89459e-03\n", + " Region: \"zone_3\"\tRelError: 8.57582e-03\tAbsError: 6.10789e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.15664e-04\tAbsError: 3.09658e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.43020e-04\tAbsError: 3.01131e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.11103e-03\tAbsError: 1.08580e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.10992e-06\tAbsError: 1.89494e-03\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 1.63875e-01\tAbsError: 6.93689e+13\n", + " Region: \"zone_1\"\tRelError: 3.78509e-02\tAbsError: 6.52720e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.78298e-02\tAbsError: 3.17044e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.10799e-05\tAbsError: 6.52403e-03\n", + " Region: \"zone_3\"\tRelError: 1.26024e-01\tAbsError: 6.93689e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.48522e-04\tAbsError: 3.42899e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.40102e-04\tAbsError: 3.50789e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24414e-01\tAbsError: 3.19362e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.10832e-05\tAbsError: 6.52522e-03\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 1.83775e-03\tAbsError: 5.78451e+10\n", + " Region: \"zone_1\"\tRelError: 9.56621e-04\tAbsError: 3.78527e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.56499e-04\tAbsError: 2.34990e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21776e-07\tAbsError: 3.78292e-05\n", + " Region: \"zone_3\"\tRelError: 8.81133e-04\tAbsError: 5.78451e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.29954e-06\tAbsError: 2.89780e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.83624e-06\tAbsError: 2.88670e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.71876e-04\tAbsError: 2.45571e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21796e-07\tAbsError: 3.78362e-05\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 1.51357e-02\tAbsError: 1.13621e+13\n", + " Region: \"zone_1\"\tRelError: 5.36338e-03\tAbsError: 1.76218e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.35769e-03\tAbsError: 9.07752e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.68914e-06\tAbsError: 1.76128e-03\n", + " Region: \"zone_3\"\tRelError: 9.77233e-03\tAbsError: 1.13621e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01290e-04\tAbsError: 5.46933e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.26714e-04\tAbsError: 5.89280e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.33864e-03\tAbsError: 9.12038e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.69004e-06\tAbsError: 1.76160e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 8.45407e+01\tAbsError: 4.78525e+17\n", + " Region: \"zone_1\"\tRelError: 7.56200e+01\tAbsError: 2.17328e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.56194e+01\tAbsError: 4.25328e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.74609e-04\tAbsError: 1.74795e-01\n", + " Region: \"zone_3\"\tRelError: 8.92070e+00\tAbsError: 4.78525e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.62901e-01\tAbsError: 2.42057e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.56403e-01\tAbsError: 2.36467e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 7.50082e+00\tAbsError: 4.25329e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.74650e-04\tAbsError: 1.74808e-01\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 1.30015e-02\tAbsError: 4.96747e+12\n", + " Region: \"zone_1\"\tRelError: 6.07007e-03\tAbsError: 1.54170e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.06511e-03\tAbsError: 8.21473e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.96843e-06\tAbsError: 1.54088e-03\n", + " Region: \"zone_3\"\tRelError: 6.93146e-03\tAbsError: 4.96747e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.75384e-04\tAbsError: 2.51841e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.97627e-04\tAbsError: 2.44906e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.55348e-03\tAbsError: 8.83081e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.96922e-06\tAbsError: 1.54116e-03\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 1.42824e-01\tAbsError: 5.60803e+13\n", + " Region: \"zone_1\"\tRelError: 2.96926e-02\tAbsError: 5.27736e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96755e-02\tAbsError: 2.56307e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70438e-05\tAbsError: 5.27480e-03\n", + " Region: \"zone_3\"\tRelError: 1.13131e-01\tAbsError: 5.60803e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.05392e-04\tAbsError: 2.77212e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.79492e-04\tAbsError: 2.83590e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11829e-01\tAbsError: 2.58181e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70465e-05\tAbsError: 5.27576e-03\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 1.22581e-02\tAbsError: 9.17280e+12\n", + " Region: \"zone_1\"\tRelError: 4.31138e-03\tAbsError: 1.42267e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.30679e-03\tAbsError: 7.32852e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.59300e-06\tAbsError: 1.42193e-03\n", + " Region: \"zone_3\"\tRelError: 7.94671e-03\tAbsError: 9.17280e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.62493e-04\tAbsError: 4.41546e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.83015e-04\tAbsError: 4.75733e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.59661e-03\tAbsError: 7.36313e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.59373e-06\tAbsError: 1.42219e-03\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 1.51439e-03\tAbsError: 4.76700e+10\n", + " Region: \"zone_1\"\tRelError: 7.87729e-04\tAbsError: 3.11943e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.87629e-04\tAbsError: 1.93655e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00356e-07\tAbsError: 3.11750e-05\n", + " Region: \"zone_3\"\tRelError: 7.26657e-04\tAbsError: 4.76700e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.54325e-06\tAbsError: 2.38808e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.98554e-06\tAbsError: 2.37893e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.19028e-04\tAbsError: 2.02375e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00372e-07\tAbsError: 3.11807e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.20715e+02\tAbsError: 4.64642e+17\n", + " Region: \"zone_1\"\tRelError: 3.81184e+01\tAbsError: 5.35257e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.81167e+01\tAbsError: 3.26162e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64785e-03\tAbsError: 5.02641e-01\n", + " Region: \"zone_3\"\tRelError: 8.25965e+01\tAbsError: 4.64642e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.91935e-01\tAbsError: 2.32486e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.02974e-01\tAbsError: 2.32156e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 8.16000e+01\tAbsError: 3.26386e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64785e-03\tAbsError: 5.02641e-01\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 1.05786e-02\tAbsError: 4.04014e+12\n", + " Region: \"zone_1\"\tRelError: 4.91261e-03\tAbsError: 1.25387e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.90857e-03\tAbsError: 6.68110e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.04086e-06\tAbsError: 1.25320e-03\n", + " Region: \"zone_3\"\tRelError: 5.66600e-03\tAbsError: 4.04014e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42652e-04\tAbsError: 2.04827e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.60746e-04\tAbsError: 1.99187e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.35856e-03\tAbsError: 7.18215e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.04150e-06\tAbsError: 1.25343e-03\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 1.08564e-01\tAbsError: 4.53397e+13\n", + " Region: \"zone_1\"\tRelError: 2.45958e-02\tAbsError: 4.26646e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.45821e-02\tAbsError: 2.07222e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37788e-05\tAbsError: 4.26439e-03\n", + " Region: \"zone_3\"\tRelError: 8.39679e-02\tAbsError: 4.53397e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89295e-04\tAbsError: 2.24120e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.49166e-04\tAbsError: 2.29277e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.29157e-02\tAbsError: 2.08737e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37810e-05\tAbsError: 4.26517e-03\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 9.87112e-03\tAbsError: 7.40560e+12\n", + " Region: \"zone_1\"\tRelError: 3.49284e-03\tAbsError: 1.14856e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.48913e-03\tAbsError: 5.91656e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.70808e-06\tAbsError: 1.14797e-03\n", + " Region: \"zone_3\"\tRelError: 6.37827e-03\tAbsError: 7.40560e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31195e-04\tAbsError: 3.56480e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.47765e-04\tAbsError: 3.84080e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.09561e-03\tAbsError: 5.94449e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.70866e-06\tAbsError: 1.14818e-03\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 1.24807e-03\tAbsError: 3.92848e+10\n", + " Region: \"zone_1\"\tRelError: 6.49588e-04\tAbsError: 2.57072e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.49505e-04\tAbsError: 1.59591e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.27029e-08\tAbsError: 2.56912e-05\n", + " Region: \"zone_3\"\tRelError: 5.98486e-04\tAbsError: 3.92848e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91998e-06\tAbsError: 1.96801e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.28447e-06\tAbsError: 1.96047e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.92199e-04\tAbsError: 1.66777e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.27161e-08\tAbsError: 2.56960e-05\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 8.60069e-03\tAbsError: 3.28582e+12\n", + " Region: \"zone_1\"\tRelError: 4.01145e-03\tAbsError: 1.01978e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.00816e-03\tAbsError: 5.43376e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.28644e-06\tAbsError: 1.01924e-03\n", + " Region: \"zone_3\"\tRelError: 4.58924e-03\tAbsError: 3.28582e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16012e-04\tAbsError: 1.66584e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.30726e-04\tAbsError: 1.61997e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.33922e-03\tAbsError: 5.84127e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.28696e-06\tAbsError: 1.01942e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.31289e+03\tAbsError: 1.47092e+17\n", + " Region: \"zone_1\"\tRelError: 3.29773e+03\tAbsError: 1.09726e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.29773e+03\tAbsError: 2.58918e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75124e-04\tAbsError: 8.38340e-02\n", + " Region: \"zone_3\"\tRelError: 1.51671e+01\tAbsError: 1.47092e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.01969e-01\tAbsError: 7.36511e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29317e-01\tAbsError: 7.34407e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47356e+01\tAbsError: 2.58918e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75245e-04\tAbsError: 8.38708e-02\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 9.21994e-02\tAbsError: 3.66560e+13\n", + " Region: \"zone_1\"\tRelError: 1.94976e-02\tAbsError: 3.44936e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.94864e-02\tAbsError: 1.67531e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11400e-05\tAbsError: 3.44768e-03\n", + " Region: \"zone_3\"\tRelError: 7.27018e-02\tAbsError: 3.66560e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.95672e-04\tAbsError: 1.81196e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.44099e-04\tAbsError: 1.85364e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.18509e-02\tAbsError: 1.68756e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11418e-05\tAbsError: 3.44831e-03\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 7.98564e-03\tAbsError: 5.97868e+12\n", + " Region: \"zone_1\"\tRelError: 2.81196e-03\tAbsError: 9.27268e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80897e-03\tAbsError: 4.77660e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.99364e-06\tAbsError: 9.26791e-04\n", + " Region: \"zone_3\"\tRelError: 5.17368e-03\tAbsError: 5.97868e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05912e-04\tAbsError: 2.87793e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.19288e-04\tAbsError: 3.10075e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.94549e-03\tAbsError: 4.79915e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.99411e-06\tAbsError: 9.26959e-04\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 1.02849e-03\tAbsError: 3.23745e+10\n", + " Region: \"zone_1\"\tRelError: 5.35038e-04\tAbsError: 2.11853e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.34970e-04\tAbsError: 1.31519e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.81553e-08\tAbsError: 2.11721e-05\n", + " Region: \"zone_3\"\tRelError: 4.93450e-04\tAbsError: 3.23745e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.40636e-06\tAbsError: 1.62183e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.70673e-06\tAbsError: 1.61562e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.88268e-04\tAbsError: 1.37440e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.81662e-08\tAbsError: 2.11760e-05\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 6.99691e-03\tAbsError: 2.67240e+12\n", + " Region: \"zone_1\"\tRelError: 3.25194e-03\tAbsError: 8.29392e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.24927e-03\tAbsError: 4.41931e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.67289e-06\tAbsError: 8.28951e-04\n", + " Region: \"zone_3\"\tRelError: 3.74497e-03\tAbsError: 2.67240e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.43580e-05\tAbsError: 1.35485e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06326e-04\tAbsError: 1.31755e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.54161e-03\tAbsError: 4.75074e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.67331e-06\tAbsError: 8.29102e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.28536e+00\tAbsError: 1.69440e+16\n", + " Region: \"zone_1\"\tRelError: 1.81068e+00\tAbsError: 6.70138e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80852e+00\tAbsError: 1.16411e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.15815e-03\tAbsError: 6.58497e-01\n", + " Region: \"zone_3\"\tRelError: 1.47468e+00\tAbsError: 1.69440e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94718e-02\tAbsError: 8.50443e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.59814e-02\tAbsError: 8.43956e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36707e+00\tAbsError: 1.16435e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.15820e-03\tAbsError: 6.58497e-01\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 7.16035e-02\tAbsError: 2.96349e+13\n", + " Region: \"zone_1\"\tRelError: 1.60154e-02\tAbsError: 2.78868e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60064e-02\tAbsError: 1.35444e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.00623e-06\tAbsError: 2.78733e-03\n", + " Region: \"zone_3\"\tRelError: 5.55881e-02\tAbsError: 2.96349e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.19831e-04\tAbsError: 1.46489e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.58968e-04\tAbsError: 1.49860e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.49003e-02\tAbsError: 1.36435e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.00765e-06\tAbsError: 2.78784e-03\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 6.43635e-03\tAbsError: 4.82682e+12\n", + " Region: \"zone_1\"\tRelError: 2.27534e-03\tAbsError: 7.48610e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27292e-03\tAbsError: 3.85630e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.41686e-06\tAbsError: 7.48225e-04\n", + " Region: \"zone_3\"\tRelError: 4.16101e-03\tAbsError: 4.82682e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.55095e-05\tAbsError: 2.32346e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.63096e-05\tAbsError: 2.50336e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.97677e-03\tAbsError: 3.87451e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.41724e-06\tAbsError: 7.48361e-04\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 8.47607e-04\tAbsError: 2.66798e+10\n", + " Region: \"zone_1\"\tRelError: 4.41118e-04\tAbsError: 1.74587e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.41062e-04\tAbsError: 1.08384e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.61667e-08\tAbsError: 1.74479e-05\n", + " Region: \"zone_3\"\tRelError: 4.06489e-04\tAbsError: 2.66798e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98307e-06\tAbsError: 1.33655e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.23061e-06\tAbsError: 1.33143e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.02219e-04\tAbsError: 1.13264e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.61756e-08\tAbsError: 1.74511e-05\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 5.68934e-03\tAbsError: 2.17346e+12\n", + " Region: \"zone_1\"\tRelError: 2.65182e-03\tAbsError: 6.74549e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64965e-03\tAbsError: 3.59424e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17387e-06\tAbsError: 6.74190e-04\n", + " Region: \"zone_3\"\tRelError: 3.03752e-03\tAbsError: 2.17346e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.67386e-05\tAbsError: 1.10190e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.64715e-05\tAbsError: 1.07156e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.87213e-03\tAbsError: 3.86380e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17421e-06\tAbsError: 6.74313e-04\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 5.97857e-02\tAbsError: 2.39593e+13\n", + " Region: \"zone_1\"\tRelError: 1.27827e-02\tAbsError: 2.25457e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27754e-02\tAbsError: 1.09503e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.28134e-06\tAbsError: 2.25348e-03\n", + " Region: \"zone_3\"\tRelError: 4.70030e-02\tAbsError: 2.39593e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.58611e-04\tAbsError: 1.18434e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.90262e-04\tAbsError: 1.21159e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.64468e-02\tAbsError: 1.10303e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.28249e-06\tAbsError: 2.25389e-03\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.14838e+01\tAbsError: 4.54404e+15\n", + " Region: \"zone_1\"\tRelError: 6.36047e+00\tAbsError: 1.13949e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.36010e+00\tAbsError: 1.21614e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.73868e-04\tAbsError: 1.13827e-01\n", + " Region: \"zone_3\"\tRelError: 5.12331e+00\tAbsError: 4.54404e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.88233e-03\tAbsError: 2.29882e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.22355e-03\tAbsError: 2.24522e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.10883e+00\tAbsError: 1.23043e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.73868e-04\tAbsError: 1.13827e-01\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 5.20322e-03\tAbsError: 3.89680e+12\n", + " Region: \"zone_1\"\tRelError: 1.83359e-03\tAbsError: 6.04376e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83163e-03\tAbsError: 3.11330e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.95120e-06\tAbsError: 6.04065e-04\n", + " Region: \"zone_3\"\tRelError: 3.36964e-03\tAbsError: 3.89680e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90319e-05\tAbsError: 1.87578e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.77504e-05\tAbsError: 2.02102e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.22090e-03\tAbsError: 3.12800e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.95150e-06\tAbsError: 6.04175e-04\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 6.98489e-04\tAbsError: 2.19868e+10\n", + " Region: \"zone_1\"\tRelError: 3.63393e-04\tAbsError: 1.43877e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.63346e-04\tAbsError: 8.93192e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.62869e-08\tAbsError: 1.43788e-05\n", + " Region: \"zone_3\"\tRelError: 3.35097e-04\tAbsError: 2.19868e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.63425e-06\tAbsError: 1.10145e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.83824e-06\tAbsError: 1.09723e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.31578e-04\tAbsError: 9.33410e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.62942e-08\tAbsError: 1.43814e-05\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 4.62801e-03\tAbsError: 1.76770e+12\n", + " Region: \"zone_1\"\tRelError: 2.15211e-03\tAbsError: 5.48614e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.15034e-03\tAbsError: 2.92322e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76802e-06\tAbsError: 5.48322e-04\n", + " Region: \"zone_3\"\tRelError: 2.47591e-03\tAbsError: 1.76770e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.24140e-05\tAbsError: 8.96187e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.03304e-05\tAbsError: 8.71510e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34139e-03\tAbsError: 3.14245e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76830e-06\tAbsError: 5.48422e-04\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 4.70835e-02\tAbsError: 1.93701e+13\n", + " Region: \"zone_1\"\tRelError: 1.04422e-02\tAbsError: 1.82275e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04363e-02\tAbsError: 8.85296e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.88671e-06\tAbsError: 1.82187e-03\n", + " Region: \"zone_3\"\tRelError: 3.66414e-02\tAbsError: 1.93701e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.09055e-04\tAbsError: 9.57491e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.34638e-04\tAbsError: 9.79521e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.61918e-02\tAbsError: 8.91767e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.88764e-06\tAbsError: 1.82220e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 8.96658e+00\tAbsError: 2.20824e+14\n", + " Region: \"zone_1\"\tRelError: 5.43231e+00\tAbsError: 1.49192e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.43183e+00\tAbsError: 2.40256e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.80953e-04\tAbsError: 1.49168e-01\n", + " Region: \"zone_3\"\tRelError: 3.53427e+00\tAbsError: 2.20824e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74122e-02\tAbsError: 1.01891e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.94824e-02\tAbsError: 1.18933e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.49690e+00\tAbsError: 3.13541e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.81035e-04\tAbsError: 1.49198e-01\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 4.19617e-03\tAbsError: 3.14603e+12\n", + " Region: \"zone_1\"\tRelError: 1.48250e-03\tAbsError: 4.87931e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48092e-03\tAbsError: 2.51347e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57526e-06\tAbsError: 4.87679e-04\n", + " Region: \"zone_3\"\tRelError: 2.71367e-03\tAbsError: 3.14603e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.57332e-05\tAbsError: 1.51439e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.27723e-05\tAbsError: 1.63164e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.59359e-03\tAbsError: 2.52533e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57551e-06\tAbsError: 4.87768e-04\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 5.75639e-04\tAbsError: 1.81193e+10\n", + " Region: \"zone_1\"\tRelError: 2.99561e-04\tAbsError: 1.18569e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.99523e-04\tAbsError: 7.36078e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.81449e-08\tAbsError: 1.18495e-05\n", + " Region: \"zone_3\"\tRelError: 2.76078e-04\tAbsError: 1.81193e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34678e-06\tAbsError: 9.07701e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.51489e-06\tAbsError: 9.04224e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73178e-04\tAbsError: 7.69221e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.81510e-08\tAbsError: 1.18517e-05\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 3.76342e-03\tAbsError: 1.43767e+12\n", + " Region: \"zone_1\"\tRelError: 1.75338e-03\tAbsError: 4.46191e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75194e-03\tAbsError: 2.37746e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43794e-06\tAbsError: 4.45953e-04\n", + " Region: \"zone_3\"\tRelError: 2.01004e-03\tAbsError: 1.43767e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.07602e-05\tAbsError: 7.28869e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.71983e-05\tAbsError: 7.08799e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90064e-03\tAbsError: 2.55577e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43816e-06\tAbsError: 4.46035e-04\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 3.88771e-02\tAbsError: 1.56603e+13\n", + " Region: \"zone_1\"\tRelError: 8.37162e-03\tAbsError: 1.47364e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.36686e-03\tAbsError: 7.15737e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.75925e-06\tAbsError: 1.47293e-03\n", + " Region: \"zone_3\"\tRelError: 3.05055e-02\tAbsError: 1.56603e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.69030e-04\tAbsError: 7.74112e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.89717e-04\tAbsError: 7.91922e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.01420e-02\tAbsError: 7.20969e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.76000e-06\tAbsError: 1.47319e-03\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 3.39066e-03\tAbsError: 2.53987e+12\n", + " Region: \"zone_1\"\tRelError: 1.19544e-03\tAbsError: 3.93921e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19417e-03\tAbsError: 2.02919e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27176e-06\tAbsError: 3.93718e-04\n", + " Region: \"zone_3\"\tRelError: 2.19522e-03\tAbsError: 2.53987e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.49940e-05\tAbsError: 1.22260e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.06766e-05\tAbsError: 1.31726e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09827e-03\tAbsError: 2.03878e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27196e-06\tAbsError: 3.93790e-04\n", "Iteration: 10\n", - " Device: \"device\"\tRelError: 4.19075e-03\tAbsError: 7.89543e+11\n", - " Region: \"zone_1\"\tRelError: 6.21903e-04\tAbsError: 6.47135e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.21718e-04\tAbsError: 3.87952e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.85083e-07\tAbsError: 6.46747e-05\n", - " Region: \"zone_3\"\tRelError: 3.56885e-03\tAbsError: 7.89543e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.42620e-06\tAbsError: 3.93310e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.36465e-06\tAbsError: 3.96233e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.56387e-03\tAbsError: 3.90104e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.85135e-07\tAbsError: 6.46926e-05\n", + " Device: \"device\"\tRelError: 2.65574e+00\tAbsError: 1.37218e+15\n", + " Region: \"zone_1\"\tRelError: 1.42359e+00\tAbsError: 4.89421e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42344e+00\tAbsError: 4.58521e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57628e-04\tAbsError: 4.88963e-02\n", + " Region: \"zone_3\"\tRelError: 1.23214e+00\tAbsError: 1.37218e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.11421e-03\tAbsError: 6.83893e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.40373e-03\tAbsError: 6.88282e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22147e+00\tAbsError: 4.62480e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57649e-04\tAbsError: 4.89038e-02\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 4.74373e-04\tAbsError: 1.49320e+10\n", + " Region: \"zone_1\"\tRelError: 2.46807e-04\tAbsError: 9.77124e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.46775e-04\tAbsError: 6.06601e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.14352e-08\tAbsError: 9.76518e-06\n", + " Region: \"zone_3\"\tRelError: 2.27566e-04\tAbsError: 1.49320e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10988e-06\tAbsError: 7.48035e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24842e-06\tAbsError: 7.45170e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25176e-04\tAbsError: 6.33914e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.14402e-08\tAbsError: 9.76698e-06\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 3.06118e-03\tAbsError: 1.16927e+12\n", + " Region: \"zone_1\"\tRelError: 1.42401e-03\tAbsError: 3.62889e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42284e-03\tAbsError: 1.93360e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16948e-06\tAbsError: 3.62696e-04\n", + " Region: \"zone_3\"\tRelError: 1.63717e-03\tAbsError: 1.16927e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.12845e-05\tAbsError: 5.92795e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.65208e-05\tAbsError: 5.76472e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54820e-03\tAbsError: 2.07862e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16967e-06\tAbsError: 3.62762e-04\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 3.08973e-02\tAbsError: 1.26608e+13\n", + " Region: \"zone_1\"\tRelError: 6.81426e-03\tAbsError: 1.19140e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.81041e-03\tAbsError: 5.78650e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.84770e-06\tAbsError: 1.19082e-03\n", + " Region: \"zone_3\"\tRelError: 2.40830e-02\tAbsError: 1.26608e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36646e-04\tAbsError: 6.25840e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.53368e-04\tAbsError: 6.40239e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.37891e-02\tAbsError: 5.82880e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.84830e-06\tAbsError: 1.19103e-03\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 2.73545e-03\tAbsError: 2.05052e+12\n", + " Region: \"zone_1\"\tRelError: 9.66044e-04\tAbsError: 3.18024e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.65017e-04\tAbsError: 1.63823e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02673e-06\tAbsError: 3.17860e-04\n", + " Region: \"zone_3\"\tRelError: 1.76940e-03\tAbsError: 2.05052e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.63257e-05\tAbsError: 9.87049e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.09136e-05\tAbsError: 1.06347e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69114e-03\tAbsError: 1.64597e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02689e-06\tAbsError: 3.17918e-04\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 4.74807e+00\tAbsError: 5.03766e+14\n", + " Region: \"zone_1\"\tRelError: 2.98479e+00\tAbsError: 7.11428e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.98456e+00\tAbsError: 2.17330e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29327e-04\tAbsError: 7.11210e-02\n", + " Region: \"zone_3\"\tRelError: 1.76328e+00\tAbsError: 5.03766e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.98840e-03\tAbsError: 2.50734e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.18325e-03\tAbsError: 2.53032e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74588e+00\tAbsError: 2.18637e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29363e-04\tAbsError: 7.11341e-02\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 3.90937e-04\tAbsError: 1.23055e+10\n", + " Region: \"zone_1\"\tRelError: 2.03434e-04\tAbsError: 8.05246e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03408e-04\tAbsError: 4.99899e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.59057e-08\tAbsError: 8.04746e-06\n", + " Region: \"zone_3\"\tRelError: 1.87502e-04\tAbsError: 1.23055e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.14649e-07\tAbsError: 6.16455e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02882e-06\tAbsError: 6.14093e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85533e-04\tAbsError: 5.22408e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.59098e-08\tAbsError: 8.04895e-06\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 2.48943e-03\tAbsError: 9.50967e+11\n", + " Region: \"zone_1\"\tRelError: 1.15949e-03\tAbsError: 2.95139e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15854e-03\tAbsError: 1.57261e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.51145e-07\tAbsError: 2.94982e-04\n", + " Region: \"zone_3\"\tRelError: 1.32994e-03\tAbsError: 9.50967e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.35762e-05\tAbsError: 4.82121e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.78348e-05\tAbsError: 4.68846e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25757e-03\tAbsError: 1.69055e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.51295e-07\tAbsError: 2.95036e-04\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 2.53266e-02\tAbsError: 1.02360e+13\n", + " Region: \"zone_1\"\tRelError: 5.47898e-03\tAbsError: 9.63207e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.47587e-03\tAbsError: 4.67823e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.11075e-06\tAbsError: 9.62739e-04\n", + " Region: \"zone_3\"\tRelError: 1.98476e-02\tAbsError: 1.02360e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10481e-04\tAbsError: 5.05977e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24002e-04\tAbsError: 5.17619e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96100e-02\tAbsError: 4.71242e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.11124e-06\tAbsError: 9.62915e-04\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 2.20967e-03\tAbsError: 1.65544e+12\n", + " Region: \"zone_1\"\tRelError: 7.79309e-04\tAbsError: 2.56751e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.78480e-04\tAbsError: 1.32259e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.28907e-07\tAbsError: 2.56618e-04\n", + " Region: \"zone_3\"\tRelError: 1.43036e-03\tAbsError: 1.65544e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.93264e-05\tAbsError: 7.96871e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.30302e-05\tAbsError: 8.58570e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36717e-03\tAbsError: 1.32884e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.29037e-07\tAbsError: 2.56665e-04\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.40960e+00\tAbsError: 6.81300e+14\n", + " Region: \"zone_1\"\tRelError: 7.54888e-01\tAbsError: 4.16664e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.54754e-01\tAbsError: 2.40601e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34256e-04\tAbsError: 4.16424e-02\n", + " Region: \"zone_3\"\tRelError: 6.54709e-01\tAbsError: 6.81300e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.59364e-03\tAbsError: 3.39447e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.35204e-03\tAbsError: 3.41852e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.44629e-01\tAbsError: 2.42480e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34277e-04\tAbsError: 4.16497e-02\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 3.22166e-04\tAbsError: 1.01409e+10\n", + " Region: \"zone_1\"\tRelError: 1.67622e-04\tAbsError: 6.63602e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67600e-04\tAbsError: 4.11966e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.13488e-08\tAbsError: 6.63190e-06\n", + " Region: \"zone_3\"\tRelError: 1.54544e-04\tAbsError: 1.01409e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.53761e-07\tAbsError: 5.08019e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.47850e-07\tAbsError: 5.06073e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52921e-04\tAbsError: 4.30515e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.13522e-08\tAbsError: 6.63313e-06\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 2.02483e-03\tAbsError: 7.73429e+11\n", + " Region: \"zone_1\"\tRelError: 9.42134e-04\tAbsError: 2.40038e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.41360e-04\tAbsError: 1.27901e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.73571e-07\tAbsError: 2.39910e-04\n", + " Region: \"zone_3\"\tRelError: 1.08269e-03\tAbsError: 7.73429e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.73081e-05\tAbsError: 3.92113e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.07718e-05\tAbsError: 3.81316e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02384e-03\tAbsError: 1.37493e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.73693e-07\tAbsError: 2.39954e-04\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 2.02480e-02\tAbsError: 8.27540e+12\n", + " Region: \"zone_1\"\tRelError: 4.44927e-03\tAbsError: 7.78725e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44676e-03\tAbsError: 3.78220e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.51495e-06\tAbsError: 7.78347e-04\n", + " Region: \"zone_3\"\tRelError: 1.57987e-02\tAbsError: 8.27540e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.93160e-05\tAbsError: 4.09064e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.00246e-04\tAbsError: 4.18476e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56066e-02\tAbsError: 3.80985e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.51534e-06\tAbsError: 7.78488e-04\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 1.78311e-03\tAbsError: 1.33649e+12\n", + " Region: \"zone_1\"\tRelError: 6.29555e-04\tAbsError: 2.07282e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.28886e-04\tAbsError: 1.06777e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.69202e-07\tAbsError: 2.07176e-04\n", + " Region: \"zone_3\"\tRelError: 1.15355e-03\tAbsError: 1.33649e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.36763e-05\tAbsError: 6.43340e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.66667e-05\tAbsError: 6.93151e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10254e-03\tAbsError: 1.07281e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.69307e-07\tAbsError: 2.07213e-04\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.93782e+00\tAbsError: 4.28522e+14\n", + " Region: \"zone_1\"\tRelError: 1.11411e+00\tAbsError: 4.05784e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11398e+00\tAbsError: 1.62021e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.30791e-04\tAbsError: 4.05622e-02\n", + " Region: \"zone_3\"\tRelError: 8.23713e-01\tAbsError: 4.28522e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.60577e-03\tAbsError: 2.13433e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.21490e-03\tAbsError: 2.15089e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.13762e-01\tAbsError: 1.63151e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.30811e-04\tAbsError: 4.05696e-02\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 2.65499e-04\tAbsError: 8.35711e+09\n", + " Region: \"zone_1\"\tRelError: 1.38156e-04\tAbsError: 5.46873e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38138e-04\tAbsError: 3.39500e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75935e-08\tAbsError: 5.46534e-06\n", + " Region: \"zone_3\"\tRelError: 1.27343e-04\tAbsError: 8.35711e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.21173e-07\tAbsError: 4.18658e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.98712e-07\tAbsError: 4.17054e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26006e-04\tAbsError: 3.54787e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75963e-08\tAbsError: 5.46635e-06\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 1.64669e-03\tAbsError: 6.29032e+11\n", + " Region: \"zone_1\"\tRelError: 7.66829e-04\tAbsError: 1.95224e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.66200e-04\tAbsError: 1.04023e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.29149e-07\tAbsError: 1.95120e-04\n", + " Region: \"zone_3\"\tRelError: 8.79864e-04\tAbsError: 6.29032e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.22096e-05\tAbsError: 3.18906e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.50265e-05\tAbsError: 3.10125e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.31999e-04\tAbsError: 1.11824e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.29248e-07\tAbsError: 1.95156e-04\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 1.65183e-02\tAbsError: 6.69046e+12\n", + " Region: \"zone_1\"\tRelError: 3.58423e-03\tAbsError: 6.29575e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.58220e-03\tAbsError: 3.05780e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03326e-06\tAbsError: 6.29269e-04\n", + " Region: \"zone_3\"\tRelError: 1.29341e-02\tAbsError: 6.69046e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.22121e-05\tAbsError: 3.30718e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.10496e-05\tAbsError: 3.38327e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27788e-02\tAbsError: 3.08015e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03358e-06\tAbsError: 6.29384e-04\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 1.44009e-03\tAbsError: 1.07899e+12\n", + " Region: \"zone_1\"\tRelError: 5.08001e-04\tAbsError: 1.67345e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.07461e-04\tAbsError: 8.62041e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.40266e-07\tAbsError: 1.67259e-04\n", + " Region: \"zone_3\"\tRelError: 9.32091e-04\tAbsError: 1.07899e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.91144e-05\tAbsError: 5.19386e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.15286e-05\tAbsError: 5.59600e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.90908e-04\tAbsError: 8.66112e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.40351e-07\tAbsError: 1.67290e-04\n", "Iteration: 14\n", - " Device: \"device\"\tRelError: 3.99229e-05\tAbsError: 6.97672e+09\n", - " Region: \"zone_1\"\tRelError: 2.45928e-06\tAbsError: 3.92297e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.45815e-06\tAbsError: 3.16056e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12353e-09\tAbsError: 3.91981e-07\n", - " Region: \"zone_3\"\tRelError: 3.74636e-05\tAbsError: 6.97672e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.39643e-08\tAbsError: 3.48049e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.94984e-08\tAbsError: 3.49623e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 3.74291e-05\tAbsError: 3.18973e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12398e-09\tAbsError: 3.92148e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:00\u001b[0m.\u001b[1;36m481\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 1.15\u001b[0m \n", + " Device: \"device\"\tRelError: 9.17766e-01\tAbsError: 4.01976e+14\n", + " Region: \"zone_1\"\tRelError: 4.93927e-01\tAbsError: 2.95081e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.93832e-01\tAbsError: 1.45011e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.50917e-05\tAbsError: 2.94936e-02\n", + " Region: \"zone_3\"\tRelError: 4.23840e-01\tAbsError: 4.01976e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.35397e-03\tAbsError: 2.00256e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.78150e-03\tAbsError: 2.01720e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.16609e-01\tAbsError: 1.46096e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.51065e-05\tAbsError: 2.94989e-02\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 2.18795e-04\tAbsError: 6.88708e+09\n", + " Region: \"zone_1\"\tRelError: 1.13841e-04\tAbsError: 4.50677e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13827e-04\tAbsError: 2.79781e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44988e-08\tAbsError: 4.50398e-06\n", + " Region: \"zone_3\"\tRelError: 1.04954e-04\tAbsError: 6.88708e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.11908e-07\tAbsError: 3.45015e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.75807e-07\tAbsError: 3.43693e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03852e-04\tAbsError: 2.92379e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45011e-08\tAbsError: 4.50481e-06\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 1.33933e-03\tAbsError: 5.11596e+11\n", + " Region: \"zone_1\"\tRelError: 6.23278e-04\tAbsError: 1.58777e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.22766e-04\tAbsError: 8.46021e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.11690e-07\tAbsError: 1.58692e-04\n", + " Region: \"zone_3\"\tRelError: 7.16057e-04\tAbsError: 5.11596e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.80633e-05\tAbsError: 2.59369e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.03544e-05\tAbsError: 2.52227e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.77127e-04\tAbsError: 9.09469e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.11771e-07\tAbsError: 1.58721e-04\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 1.32573e-02\tAbsError: 5.40901e+12\n", + " Region: \"zone_1\"\tRelError: 2.90615e-03\tAbsError: 5.08993e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.90451e-03\tAbsError: 2.47213e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64383e-06\tAbsError: 5.08746e-04\n", + " Region: \"zone_3\"\tRelError: 1.03511e-02\tAbsError: 5.40901e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.83795e-05\tAbsError: 2.67374e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.55238e-05\tAbsError: 2.73526e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02256e-02\tAbsError: 2.49021e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64409e-06\tAbsError: 5.08838e-04\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 1.16228e-03\tAbsError: 8.71100e+11\n", + " Region: \"zone_1\"\tRelError: 4.10292e-04\tAbsError: 1.35103e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.09856e-04\tAbsError: 6.95952e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.36173e-07\tAbsError: 1.35033e-04\n", + " Region: \"zone_3\"\tRelError: 7.51989e-04\tAbsError: 8.71100e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54318e-05\tAbsError: 4.19317e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.73808e-05\tAbsError: 4.51783e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.18740e-04\tAbsError: 6.99238e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.36242e-07\tAbsError: 1.35058e-04\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 1.09477e+00\tAbsError: 3.00170e+14\n", + " Region: \"zone_1\"\tRelError: 6.15570e-01\tAbsError: 2.53069e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.15489e-01\tAbsError: 1.10565e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.15641e-05\tAbsError: 2.52959e-02\n", + " Region: \"zone_3\"\tRelError: 4.79201e-01\tAbsError: 3.00170e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88978e-03\tAbsError: 1.49524e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.24768e-03\tAbsError: 1.50646e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.72982e-01\tAbsError: 1.11361e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.15770e-05\tAbsError: 2.53005e-02\n", + "Iteration: 59\n", + " Device: \"device\"\tRelError: 1.80310e-04\tAbsError: 5.67563e+09\n", + " Region: \"zone_1\"\tRelError: 9.38251e-05\tAbsError: 3.71402e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 9.38131e-05\tAbsError: 2.30567e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19484e-08\tAbsError: 3.71172e-06\n", + " Region: \"zone_3\"\tRelError: 8.64853e-05\tAbsError: 5.67563e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.21862e-07\tAbsError: 2.84326e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.74522e-07\tAbsError: 2.83237e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 8.55770e-05\tAbsError: 2.40949e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19503e-08\tAbsError: 3.71240e-06\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 1.08924e-03\tAbsError: 4.16083e+11\n", + " Region: \"zone_1\"\tRelError: 5.07171e-04\tAbsError: 1.29134e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.06755e-04\tAbsError: 6.88073e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.16160e-07\tAbsError: 1.29065e-04\n", + " Region: \"zone_3\"\tRelError: 5.82069e-04\tAbsError: 4.16083e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46909e-05\tAbsError: 2.10946e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.65542e-05\tAbsError: 2.05137e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.50408e-04\tAbsError: 7.39676e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.16226e-07\tAbsError: 1.29089e-04\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 1.07815e-02\tAbsError: 4.37304e+12\n", + " Region: \"zone_1\"\tRelError: 2.34404e-03\tAbsError: 4.11505e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34271e-03\tAbsError: 1.99865e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32899e-06\tAbsError: 4.11305e-04\n", + " Region: \"zone_3\"\tRelError: 8.43751e-03\tAbsError: 4.37304e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.71993e-05\tAbsError: 2.16165e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.29756e-05\tAbsError: 2.21139e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.33600e-03\tAbsError: 2.01326e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32920e-06\tAbsError: 4.11380e-04\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 9.38571e-04\tAbsError: 7.03264e+11\n", + " Region: \"zone_1\"\tRelError: 3.31132e-04\tAbsError: 1.09073e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.30780e-04\tAbsError: 5.61862e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52136e-07\tAbsError: 1.09016e-04\n", + " Region: \"zone_3\"\tRelError: 6.07440e-04\tAbsError: 7.03264e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24585e-05\tAbsError: 3.38527e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.40319e-05\tAbsError: 3.64737e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.80597e-04\tAbsError: 5.64516e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52191e-07\tAbsError: 1.09036e-04\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 6.24819e-01\tAbsError: 2.54031e+14\n", + " Region: \"zone_1\"\tRelError: 3.38055e-01\tAbsError: 1.97885e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.37992e-01\tAbsError: 9.23338e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.37723e-05\tAbsError: 1.97793e-02\n", + " Region: \"zone_3\"\tRelError: 2.86764e-01\tAbsError: 2.54031e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.26060e-03\tAbsError: 1.26549e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.53546e-03\tAbsError: 1.27483e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.81904e-01\tAbsError: 9.30137e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.37823e-05\tAbsError: 1.97829e-02\n", + "Iteration: 60\n", + " Device: \"device\"\tRelError: 1.48592e-04\tAbsError: 4.67728e+09\n", + " Region: \"zone_1\"\tRelError: 7.73151e-05\tAbsError: 3.06072e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.73052e-05\tAbsError: 1.90010e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.84668e-09\tAbsError: 3.05882e-06\n", + " Region: \"zone_3\"\tRelError: 7.12774e-05\tAbsError: 4.67728e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.47656e-07\tAbsError: 2.34313e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.91053e-07\tAbsError: 2.33415e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 7.05288e-05\tAbsError: 1.98566e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.84825e-09\tAbsError: 3.05939e-06\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 8.85915e-04\tAbsError: 3.38402e+11\n", + " Region: \"zone_1\"\tRelError: 4.12315e-04\tAbsError: 1.05025e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.11977e-04\tAbsError: 5.59613e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.38465e-07\tAbsError: 1.04969e-04\n", + " Region: \"zone_3\"\tRelError: 4.73600e-04\tAbsError: 3.38402e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19482e-05\tAbsError: 1.71563e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34637e-05\tAbsError: 1.66839e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.47850e-04\tAbsError: 6.01582e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.38518e-07\tAbsError: 1.04989e-04\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 8.67502e-03\tAbsError: 3.53546e+12\n", + " Region: \"zone_1\"\tRelError: 1.89868e-03\tAbsError: 3.32690e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89760e-03\tAbsError: 1.61585e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07445e-06\tAbsError: 3.32528e-04\n", + " Region: \"zone_3\"\tRelError: 6.77635e-03\tAbsError: 3.53546e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.81584e-05\tAbsError: 1.74762e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.28282e-05\tAbsError: 1.78783e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.69429e-03\tAbsError: 1.62766e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07462e-06\tAbsError: 3.32589e-04\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 7.57589e-04\tAbsError: 5.67767e+11\n", + " Region: \"zone_1\"\tRelError: 2.67404e-04\tAbsError: 8.80576e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67120e-04\tAbsError: 4.53609e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.84290e-07\tAbsError: 8.80122e-05\n", + " Region: \"zone_3\"\tRelError: 4.90185e-04\tAbsError: 5.67767e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00581e-05\tAbsError: 2.73303e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13285e-05\tAbsError: 2.94464e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.68514e-04\tAbsError: 4.55751e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.84334e-07\tAbsError: 8.80283e-05\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 6.62302e-01\tAbsError: 2.00372e+14\n", + " Region: \"zone_1\"\tRelError: 3.68676e-01\tAbsError: 1.63016e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.68623e-01\tAbsError: 7.33044e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.25389e-05\tAbsError: 1.62943e-02\n", + " Region: \"zone_3\"\tRelError: 2.93627e-01\tAbsError: 2.00372e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.86472e-03\tAbsError: 9.98145e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.09096e-03\tAbsError: 1.00558e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.89618e-01\tAbsError: 7.38378e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.25472e-05\tAbsError: 1.62973e-02\n", + "Iteration: 61\n", + " Device: \"device\"\tRelError: 1.22455e-04\tAbsError: 3.85454e+09\n", + " Region: \"zone_1\"\tRelError: 6.37193e-05\tAbsError: 2.52234e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.37112e-05\tAbsError: 1.56587e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.11463e-09\tAbsError: 2.52077e-06\n", + " Region: \"zone_3\"\tRelError: 5.87362e-05\tAbsError: 3.85454e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.86503e-07\tAbsError: 1.93097e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.22266e-07\tAbsError: 1.92357e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.81193e-05\tAbsError: 1.63638e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.11592e-09\tAbsError: 2.52124e-06\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 7.20499e-04\tAbsError: 2.75224e+11\n", + " Region: \"zone_1\"\tRelError: 3.35450e-04\tAbsError: 8.54176e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35175e-04\tAbsError: 4.55136e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75275e-07\tAbsError: 8.53721e-05\n", + " Region: \"zone_3\"\tRelError: 3.85049e-04\tAbsError: 2.75224e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.71750e-06\tAbsError: 1.39533e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09500e-05\tAbsError: 1.35691e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.64106e-04\tAbsError: 4.89269e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75319e-07\tAbsError: 8.53877e-05\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 7.04060e-03\tAbsError: 2.85832e+12\n", + " Region: \"zone_1\"\tRelError: 1.53267e-03\tAbsError: 2.68970e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53181e-03\tAbsError: 1.30636e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.68658e-07\tAbsError: 2.68839e-04\n", + " Region: \"zone_3\"\tRelError: 5.50793e-03\tAbsError: 2.85832e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.08504e-05\tAbsError: 1.41291e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.46259e-05\tAbsError: 1.44541e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.44159e-03\tAbsError: 1.31591e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.68795e-07\tAbsError: 2.68888e-04\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 6.11721e-04\tAbsError: 4.58375e+11\n", + " Region: \"zone_1\"\tRelError: 2.15837e-04\tAbsError: 7.10915e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.15607e-04\tAbsError: 3.66212e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29516e-07\tAbsError: 7.10549e-05\n", + " Region: \"zone_3\"\tRelError: 3.95884e-04\tAbsError: 4.58375e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.12020e-06\tAbsError: 2.20646e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.14577e-06\tAbsError: 2.37729e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.78388e-04\tAbsError: 3.67941e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29552e-07\tAbsError: 7.10679e-05\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 4.25352e-01\tAbsError: 1.64340e+14\n", + " Region: \"zone_1\"\tRelError: 2.31113e-01\tAbsError: 1.30455e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31071e-01\tAbsError: 5.98848e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.20426e-05\tAbsError: 1.30395e-02\n", + " Region: \"zone_3\"\tRelError: 1.94239e-01\tAbsError: 1.64340e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49183e-03\tAbsError: 8.18666e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.67170e-03\tAbsError: 8.24729e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91033e-01\tAbsError: 6.03235e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.20492e-05\tAbsError: 1.30419e-02\n", + "Iteration: 62\n", + " Device: \"device\"\tRelError: 1.00915e-04\tAbsError: 3.17652e+09\n", + " Region: \"zone_1\"\tRelError: 5.25082e-05\tAbsError: 2.07865e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.25015e-05\tAbsError: 1.29043e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.68725e-09\tAbsError: 2.07736e-06\n", + " Region: \"zone_3\"\tRelError: 4.84067e-05\tAbsError: 3.17652e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.36106e-07\tAbsError: 1.59131e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.65579e-07\tAbsError: 1.58521e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.78983e-05\tAbsError: 1.34854e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.68832e-09\tAbsError: 2.07775e-06\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 5.85999e-04\tAbsError: 2.23841e+11\n", + " Region: \"zone_1\"\tRelError: 2.72749e-04\tAbsError: 6.94705e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.72525e-04\tAbsError: 3.70164e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23883e-07\tAbsError: 6.94335e-05\n", + " Region: \"zone_3\"\tRelError: 3.13250e-04\tAbsError: 2.23841e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.90333e-06\tAbsError: 1.13483e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.90575e-06\tAbsError: 1.10358e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96217e-04\tAbsError: 3.97925e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23918e-07\tAbsError: 6.94462e-05\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 5.67438e-03\tAbsError: 2.31086e+12\n", + " Region: \"zone_1\"\tRelError: 1.24066e-03\tAbsError: 2.17454e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23995e-03\tAbsError: 1.05616e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.02284e-07\tAbsError: 2.17348e-04\n", + " Region: \"zone_3\"\tRelError: 4.43372e-03\tAbsError: 2.31086e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.49413e-05\tAbsError: 1.14229e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.79936e-05\tAbsError: 1.16857e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.38009e-03\tAbsError: 1.06388e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.02395e-07\tAbsError: 2.17388e-04\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 4.93797e-04\tAbsError: 3.70060e+11\n", + " Region: \"zone_1\"\tRelError: 1.74282e-04\tAbsError: 5.73943e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74096e-04\tAbsError: 2.95654e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85295e-07\tAbsError: 5.73648e-05\n", + " Region: \"zone_3\"\tRelError: 3.19516e-04\tAbsError: 3.70060e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.55570e-06\tAbsError: 1.78134e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.38369e-06\tAbsError: 1.91926e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.05391e-04\tAbsError: 2.97050e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85324e-07\tAbsError: 5.73752e-05\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 4.12892e-01\tAbsError: 1.31878e+14\n", + " Region: \"zone_1\"\tRelError: 2.28565e-01\tAbsError: 1.06115e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.28531e-01\tAbsError: 4.81528e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.41997e-05\tAbsError: 1.06067e-02\n", + " Region: \"zone_3\"\tRelError: 1.84327e-01\tAbsError: 1.31878e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.21429e-03\tAbsError: 6.56949e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.36080e-03\tAbsError: 6.61828e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81717e-01\tAbsError: 4.85042e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.42051e-05\tAbsError: 1.06086e-02\n", + "Iteration: 63\n", + " Device: \"device\"\tRelError: 8.31641e-05\tAbsError: 2.61776e+09\n", + " Region: \"zone_1\"\tRelError: 4.32738e-05\tAbsError: 1.71301e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.32683e-05\tAbsError: 1.06344e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.51095e-09\tAbsError: 1.71195e-06\n", + " Region: \"zone_3\"\tRelError: 3.98903e-05\tAbsError: 2.61776e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94575e-07\tAbsError: 1.31139e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.18863e-07\tAbsError: 1.30637e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.94714e-05\tAbsError: 1.11133e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.51183e-09\tAbsError: 1.71227e-06\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 4.76587e-04\tAbsError: 1.82051e+11\n", + " Region: \"zone_1\"\tRelError: 2.21877e-04\tAbsError: 5.65007e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21695e-04\tAbsError: 3.01056e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82085e-07\tAbsError: 5.64706e-05\n", + " Region: \"zone_3\"\tRelError: 2.54709e-04\tAbsError: 1.82051e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.42779e-06\tAbsError: 9.22962e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.24306e-06\tAbsError: 8.97548e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.40857e-04\tAbsError: 3.23635e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82114e-07\tAbsError: 5.64810e-05\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 4.59915e-03\tAbsError: 1.86826e+12\n", + " Region: \"zone_1\"\tRelError: 1.00203e-03\tAbsError: 1.75805e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00146e-03\tAbsError: 8.53871e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.67776e-07\tAbsError: 1.75720e-04\n", + " Region: \"zone_3\"\tRelError: 3.59712e-03\tAbsError: 1.86826e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01645e-05\tAbsError: 9.23508e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.26323e-05\tAbsError: 9.44757e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.55375e-03\tAbsError: 8.60113e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.67865e-07\tAbsError: 1.75752e-04\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 3.98698e-04\tAbsError: 2.98760e+11\n", + " Region: \"zone_1\"\tRelError: 1.40683e-04\tAbsError: 4.63362e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40534e-04\tAbsError: 2.38690e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49594e-07\tAbsError: 4.63123e-05\n", + " Region: \"zone_3\"\tRelError: 2.58015e-04\tAbsError: 2.98760e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.29260e-06\tAbsError: 1.43813e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.96105e-06\tAbsError: 1.54948e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.46612e-04\tAbsError: 2.39817e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49618e-07\tAbsError: 4.63207e-05\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 2.86867e-01\tAbsError: 1.07118e+14\n", + " Region: \"zone_1\"\tRelError: 1.56348e-01\tAbsError: 8.55382e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56320e-01\tAbsError: 3.90658e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75671e-05\tAbsError: 8.54991e-03\n", + " Region: \"zone_3\"\tRelError: 1.30519e-01\tAbsError: 1.07118e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.78445e-04\tAbsError: 5.33612e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09625e-03\tAbsError: 5.37569e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28416e-01\tAbsError: 3.93515e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75714e-05\tAbsError: 8.55147e-03\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 3.87616e-04\tAbsError: 1.48063e+11\n", + " Region: \"zone_1\"\tRelError: 1.80421e-04\tAbsError: 4.59523e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80273e-04\tAbsError: 2.44851e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48090e-07\tAbsError: 4.59278e-05\n", + " Region: \"zone_3\"\tRelError: 2.07195e-04\tAbsError: 1.48063e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.22777e-06\tAbsError: 7.50650e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.89083e-06\tAbsError: 7.29981e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95928e-04\tAbsError: 2.63214e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48114e-07\tAbsError: 4.59362e-05\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 3.71070e-03\tAbsError: 1.51043e+12\n", + " Region: \"zone_1\"\tRelError: 8.10767e-04\tAbsError: 1.42133e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.10308e-04\tAbsError: 6.90329e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.59030e-07\tAbsError: 1.42064e-04\n", + " Region: \"zone_3\"\tRelError: 2.89993e-03\tAbsError: 1.51043e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.63023e-05\tAbsError: 7.46628e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.82973e-05\tAbsError: 7.63806e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.86487e-03\tAbsError: 6.95375e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.59102e-07\tAbsError: 1.42090e-04\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 3.21855e-04\tAbsError: 2.41198e+11\n", + " Region: \"zone_1\"\tRelError: 1.13591e-04\tAbsError: 3.74086e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13470e-04\tAbsError: 1.92702e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20772e-07\tAbsError: 3.73893e-05\n", + " Region: \"zone_3\"\tRelError: 2.08264e-04\tAbsError: 2.41198e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.27289e-06\tAbsError: 1.16104e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.81255e-06\tAbsError: 1.25094e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.99058e-04\tAbsError: 1.93612e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20791e-07\tAbsError: 3.73961e-05\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 2.61912e-01\tAbsError: 8.64227e+13\n", + " Region: \"zone_1\"\tRelError: 1.44505e-01\tAbsError: 6.93026e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44482e-01\tAbsError: 3.15376e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23353e-05\tAbsError: 6.92711e-03\n", + " Region: \"zone_3\"\tRelError: 1.17408e-01\tAbsError: 8.64227e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.93061e-04\tAbsError: 4.30516e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.88609e-04\tAbsError: 4.33711e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15704e-01\tAbsError: 3.17680e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23388e-05\tAbsError: 6.92837e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:31:18\u001b[0m.\u001b[1;36m505\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:31:18\u001b[0m.\u001b[1;36m525\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.0 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:31:18\u001b[0m.\u001b[1;36m541\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 1.0\u001b[0m \n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", @@ -56411,82 +15277,344 @@ "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.61224e+00\tAbsError: 8.62836e+15\n", - " Region: \"zone_1\"\tRelError: 5.94427e+00\tAbsError: 4.18762e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.94427e+00\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.66010e-09\tAbsError: 3.35766e-06\n", - " Region: \"zone_3\"\tRelError: 1.66797e+00\tAbsError: 8.62836e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77445e-01\tAbsError: 5.08925e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.77421e-01\tAbsError: 3.53911e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13100e-01\tAbsError: 4.18729e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.66084e-09\tAbsError: 3.35797e-06\n", "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 2.04888e-03\tAbsError: 3.95899e+11\n", - " Region: \"zone_1\"\tRelError: 3.00068e-04\tAbsError: 8.61802e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.00043e-04\tAbsError: 1.55122e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.46182e-08\tAbsError: 8.60250e-06\n", - " Region: \"zone_3\"\tRelError: 1.74881e-03\tAbsError: 3.95899e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.45561e-07\tAbsError: 1.97350e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.77697e-07\tAbsError: 1.98549e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74716e-03\tAbsError: 1.56449e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.46222e-08\tAbsError: 8.60394e-06\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.93103e-04\tAbsError: 1.20962e+11\n", - " Region: \"zone_1\"\tRelError: 5.19828e-05\tAbsError: 5.49714e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.18247e-05\tAbsError: 7.13700e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.58070e-07\tAbsError: 5.49001e-05\n", - " Region: \"zone_3\"\tRelError: 1.41120e-04\tAbsError: 1.20962e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.98328e-06\tAbsError: 8.30775e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.89243e-06\tAbsError: 3.78845e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21087e-04\tAbsError: 7.51147e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.58070e-07\tAbsError: 5.49001e-05\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.60249e+00\tAbsError: 3.96429e+14\n", - " Region: \"zone_1\"\tRelError: 1.07248e-01\tAbsError: 8.09693e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07107e-01\tAbsError: 3.18464e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41344e-04\tAbsError: 4.91228e-02\n", - " Region: \"zone_3\"\tRelError: 1.49524e+00\tAbsError: 3.96429e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53329e-01\tAbsError: 2.70708e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.45859e-01\tAbsError: 1.25720e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.59117e-02\tAbsError: 3.18468e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41344e-04\tAbsError: 4.91228e-02\n", + "number of equations 31686\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 3.15246e-04\tAbsError: 1.20420e+11\n", + " Region: \"zone_1\"\tRelError: 1.46759e-04\tAbsError: 3.73732e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46639e-04\tAbsError: 1.99138e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20443e-07\tAbsError: 3.73533e-05\n", + " Region: \"zone_3\"\tRelError: 1.68487e-04\tAbsError: 1.20420e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.25176e-06\tAbsError: 6.10507e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.79103e-06\tAbsError: 5.93697e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59324e-04\tAbsError: 2.14073e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20462e-07\tAbsError: 3.73602e-05\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 3.00494e-03\tAbsError: 1.22114e+12\n", + " Region: \"zone_1\"\tRelError: 6.55052e-04\tAbsError: 1.14910e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.54681e-04\tAbsError: 5.58110e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.71112e-07\tAbsError: 1.14855e-04\n", + " Region: \"zone_3\"\tRelError: 2.34989e-03\tAbsError: 1.22114e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31800e-05\tAbsError: 6.03627e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.47930e-05\tAbsError: 6.17515e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32154e-03\tAbsError: 5.62190e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.71170e-07\tAbsError: 1.14875e-04\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 2.59860e-04\tAbsError: 1.94727e+11\n", + " Region: \"zone_1\"\tRelError: 9.16967e-05\tAbsError: 3.02011e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.15992e-05\tAbsError: 1.55574e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.75027e-08\tAbsError: 3.01855e-05\n", + " Region: \"zone_3\"\tRelError: 1.68164e-04\tAbsError: 1.94727e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.44962e-06\tAbsError: 9.37345e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.88531e-06\tAbsError: 1.00992e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60731e-04\tAbsError: 1.56308e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.75180e-08\tAbsError: 3.01910e-05\n", "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.83148e+01\tAbsError: 2.68702e+18\n", - " Region: \"zone_1\"\tRelError: 2.03151e+01\tAbsError: 4.19622e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03151e+01\tAbsError: 4.19622e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.35537e-10\tAbsError: 8.21757e-08\n", - " Region: \"zone_3\"\tRelError: 3.79998e+01\tAbsError: 2.68702e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.54751e-01\tAbsError: 1.34192e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.46027e-01\tAbsError: 1.34511e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 3.68990e+01\tAbsError: 4.19629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.35633e-10\tAbsError: 8.22106e-08\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 3.03214e-04\tAbsError: 4.92871e+10\n", - " Region: \"zone_1\"\tRelError: 4.51218e-05\tAbsError: 3.43658e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.51120e-05\tAbsError: 2.30653e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.82274e-09\tAbsError: 3.43427e-06\n", - " Region: \"zone_3\"\tRelError: 2.58092e-04\tAbsError: 4.92871e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.25663e-07\tAbsError: 2.45763e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.58064e-07\tAbsError: 2.47109e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.57799e-04\tAbsError: 2.32525e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.82653e-09\tAbsError: 3.43564e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.80784e-05\tAbsError: 4.88675e+10\n", - " Region: \"zone_1\"\tRelError: 1.14726e-05\tAbsError: 6.01777e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14554e-05\tAbsError: 4.42616e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71596e-08\tAbsError: 5.97350e-06\n", - " Region: \"zone_3\"\tRelError: 3.66059e-05\tAbsError: 4.88675e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37889e-06\tAbsError: 1.78089e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.34156e-06\tAbsError: 3.10586e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.78682e-05\tAbsError: 4.43738e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71672e-08\tAbsError: 5.97630e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:02\u001b[0m.\u001b[1;36m635\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.3\u001b[0m \n", + " Device: \"device\"\tRelError: 1.29738e+01\tAbsError: 2.25613e+17\n", + " Region: \"zone_1\"\tRelError: 1.03899e+01\tAbsError: 6.12755e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03899e+01\tAbsError: 6.12741e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.54157e-09\tAbsError: 1.41082e-06\n", + " Region: \"zone_3\"\tRelError: 2.58386e+00\tAbsError: 2.25613e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.03024e-01\tAbsError: 1.13045e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.02287e-01\tAbsError: 1.12568e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 7.78547e-01\tAbsError: 6.12741e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.54229e-09\tAbsError: 1.41108e-06\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 1.91719e-01\tAbsError: 6.99862e+13\n", + " Region: \"zone_1\"\tRelError: 1.04714e-01\tAbsError: 5.59905e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04696e-01\tAbsError: 2.55306e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80446e-05\tAbsError: 5.59650e-03\n", + " Region: \"zone_3\"\tRelError: 8.70052e-02\tAbsError: 6.99862e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.40527e-04\tAbsError: 3.48638e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.17633e-04\tAbsError: 3.51224e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.56290e-02\tAbsError: 2.57172e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80475e-05\tAbsError: 5.59752e-03\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 2.56394e-04\tAbsError: 9.79385e+10\n", + " Region: \"zone_1\"\tRelError: 1.19346e-04\tAbsError: 3.03958e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19248e-04\tAbsError: 1.61960e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.79566e-08\tAbsError: 3.03796e-05\n", + " Region: \"zone_3\"\tRelError: 1.37048e-04\tAbsError: 9.79385e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.45798e-06\tAbsError: 4.96529e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.89658e-06\tAbsError: 4.82856e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29596e-04\tAbsError: 1.74107e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.79721e-08\tAbsError: 3.03852e-05\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 2.42616e-03\tAbsError: 9.87256e+11\n", + " Region: \"zone_1\"\tRelError: 5.29870e-04\tAbsError: 9.29016e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.29570e-04\tAbsError: 4.51215e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.00033e-07\tAbsError: 9.28565e-05\n", + " Region: \"zone_3\"\tRelError: 1.89629e-03\tAbsError: 9.87256e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06556e-05\tAbsError: 4.88014e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.19596e-05\tAbsError: 4.99242e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87338e-03\tAbsError: 4.54514e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.00080e-07\tAbsError: 9.28734e-05\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 2.09782e-04\tAbsError: 1.57209e+11\n", + " Region: \"zone_1\"\tRelError: 7.40350e-05\tAbsError: 2.43822e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.39563e-05\tAbsError: 1.25599e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.87168e-08\tAbsError: 2.43697e-05\n", + " Region: \"zone_3\"\tRelError: 1.35747e-04\tAbsError: 1.57209e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.78499e-06\tAbsError: 7.56747e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.13673e-06\tAbsError: 8.15339e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29746e-04\tAbsError: 1.26193e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.87292e-08\tAbsError: 2.43741e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 7.86242e+01\tAbsError: 5.38008e+17\n", + " Region: \"zone_1\"\tRelError: 6.18878e+01\tAbsError: 9.56208e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.18848e+01\tAbsError: 5.47732e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94584e-03\tAbsError: 9.01435e-01\n", + " Region: \"zone_3\"\tRelError: 1.67364e+01\tAbsError: 5.38008e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.65798e-01\tAbsError: 2.69740e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.07183e-01\tAbsError: 2.68268e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49605e+01\tAbsError: 5.47735e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94584e-03\tAbsError: 9.01435e-01\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 1.67956e-01\tAbsError: 5.65590e+13\n", + " Region: \"zone_1\"\tRelError: 9.24742e-02\tAbsError: 4.53069e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.24595e-02\tAbsError: 2.06362e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46017e-05\tAbsError: 4.52863e-03\n", + " Region: \"zone_3\"\tRelError: 7.54822e-02\tAbsError: 5.65590e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.18450e-04\tAbsError: 2.81750e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.80886e-04\tAbsError: 2.83840e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.43683e-02\tAbsError: 2.07869e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46040e-05\tAbsError: 4.52945e-03\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 2.08525e-04\tAbsError: 7.96538e+10\n", + " Region: \"zone_1\"\tRelError: 9.70738e-05\tAbsError: 2.47211e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.69941e-05\tAbsError: 1.31723e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.96686e-08\tAbsError: 2.47079e-05\n", + " Region: \"zone_3\"\tRelError: 1.11451e-04\tAbsError: 7.96538e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.81239e-06\tAbsError: 4.03829e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.16910e-06\tAbsError: 3.92709e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05390e-04\tAbsError: 1.41602e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.96812e-08\tAbsError: 2.47124e-05\n", + "Iteration: 44\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 1.96360e-03\tAbsError: 7.98167e+11\n", + " Region: \"zone_1\"\tRelError: 4.28201e-04\tAbsError: 7.51081e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.27958e-04\tAbsError: 3.64794e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.42567e-07\tAbsError: 7.50717e-05\n", + " Region: \"zone_3\"\tRelError: 1.53540e-03\tAbsError: 7.98167e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.61475e-06\tAbsError: 3.94545e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.66902e-06\tAbsError: 4.03623e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51687e-03\tAbsError: 3.67461e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.42606e-07\tAbsError: 7.50853e-05\n", + " Device: \"device\"\tRelError: 1.69370e-04\tAbsError: 1.26919e+11\n", + " Region: \"zone_1\"\tRelError: 5.97671e-05\tAbsError: 1.96845e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.97035e-05\tAbsError: 1.01400e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.35505e-08\tAbsError: 1.96744e-05\n", + " Region: \"zone_3\"\tRelError: 1.09603e-04\tAbsError: 1.26919e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.24840e-06\tAbsError: 6.10944e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.53237e-06\tAbsError: 6.58247e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04759e-04\tAbsError: 1.01879e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.35605e-08\tAbsError: 1.96779e-05\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 1.27246e-01\tAbsError: 4.57596e+13\n", + " Region: \"zone_1\"\tRelError: 6.96003e-02\tAbsError: 3.66298e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.95885e-02\tAbsError: 1.66942e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18051e-05\tAbsError: 3.66131e-03\n", + " Region: \"zone_3\"\tRelError: 5.76456e-02\tAbsError: 4.57596e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.19066e-04\tAbsError: 2.27952e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.69514e-04\tAbsError: 2.29644e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.67452e-02\tAbsError: 1.68162e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18069e-05\tAbsError: 3.66198e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.27956e+02\tAbsError: 9.17621e+17\n", + " Region: \"zone_1\"\tRelError: 3.00001e+02\tAbsError: 1.05955e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.99998e+02\tAbsError: 4.71338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.31113e-03\tAbsError: 1.01241e+00\n", + " Region: \"zone_3\"\tRelError: 2.79554e+01\tAbsError: 9.17621e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.84510e-01\tAbsError: 4.63313e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.46241e-01\tAbsError: 4.54309e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64214e+01\tAbsError: 4.71618e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.31210e-03\tAbsError: 1.01269e+00\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 1.69595e-04\tAbsError: 6.47829e+10\n", + " Region: \"zone_1\"\tRelError: 7.89443e-05\tAbsError: 2.01058e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.88795e-05\tAbsError: 1.07131e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.47949e-08\tAbsError: 2.00951e-05\n", + " Region: \"zone_3\"\tRelError: 9.06509e-05\tAbsError: 6.47829e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.28733e-06\tAbsError: 3.28436e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.57745e-06\tAbsError: 3.19393e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.57213e-05\tAbsError: 1.15165e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.48051e-08\tAbsError: 2.00987e-05\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 1.36733e-04\tAbsError: 1.02466e+11\n", + " Region: \"zone_1\"\tRelError: 4.82541e-05\tAbsError: 1.58919e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.82028e-05\tAbsError: 8.18634e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.13062e-08\tAbsError: 1.58837e-05\n", + " Region: \"zone_3\"\tRelError: 8.84789e-05\tAbsError: 1.02466e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.81520e-06\tAbsError: 4.93234e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.04446e-06\tAbsError: 5.31423e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.45679e-05\tAbsError: 8.22500e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.13143e-08\tAbsError: 1.58866e-05\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 1.58613e-03\tAbsError: 6.45294e+11\n", + " Region: \"zone_1\"\tRelError: 3.46307e-04\tAbsError: 6.07227e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.46111e-04\tAbsError: 2.94925e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.96108e-07\tAbsError: 6.06932e-05\n", + " Region: \"zone_3\"\tRelError: 1.23982e-03\tAbsError: 6.45294e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.96474e-06\tAbsError: 3.18978e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.81708e-06\tAbsError: 3.26317e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22484e-03\tAbsError: 2.97081e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.96139e-07\tAbsError: 6.07042e-05\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 1.08457e-01\tAbsError: 3.69995e+13\n", + " Region: \"zone_1\"\tRelError: 5.96361e-02\tAbsError: 2.96290e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.96265e-02\tAbsError: 1.34990e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.54894e-06\tAbsError: 2.96155e-03\n", + " Region: \"zone_3\"\tRelError: 4.88209e-02\tAbsError: 3.69995e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.39034e-04\tAbsError: 1.84314e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.79858e-04\tAbsError: 1.85681e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.80925e-02\tAbsError: 1.35976e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.55044e-06\tAbsError: 2.96209e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.71098e+04\tAbsError: 7.69452e+17\n", + " Region: \"zone_1\"\tRelError: 3.63454e+04\tAbsError: 1.11183e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.63454e+04\tAbsError: 3.81162e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.50946e-03\tAbsError: 1.07371e+00\n", + " Region: \"zone_3\"\tRelError: 4.07644e+04\tAbsError: 7.69452e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17116e-01\tAbsError: 3.86299e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.53225e-01\tAbsError: 3.83154e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.07633e+04\tAbsError: 3.81715e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.50946e-03\tAbsError: 1.07371e+00\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 1.37932e-04\tAbsError: 5.26882e+10\n", + " Region: \"zone_1\"\tRelError: 6.42099e-05\tAbsError: 1.63521e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.41572e-05\tAbsError: 8.71301e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.26980e-08\tAbsError: 1.63434e-05\n", + " Region: \"zone_3\"\tRelError: 7.37220e-05\tAbsError: 5.26882e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.86030e-06\tAbsError: 2.67119e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.09625e-06\tAbsError: 2.59763e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.97127e-05\tAbsError: 9.36645e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.27063e-08\tAbsError: 1.63464e-05\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 1.10392e-04\tAbsError: 8.27236e+10\n", + " Region: \"zone_1\"\tRelError: 3.89555e-05\tAbsError: 1.28300e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.89140e-05\tAbsError: 6.60908e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14210e-08\tAbsError: 1.28234e-05\n", + " Region: \"zone_3\"\tRelError: 7.14363e-05\tAbsError: 8.27236e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46547e-06\tAbsError: 3.98202e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.65055e-06\tAbsError: 4.29034e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.82789e-05\tAbsError: 6.64029e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.14275e-08\tAbsError: 1.28257e-05\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 1.28324e-03\tAbsError: 5.21701e+11\n", + " Region: \"zone_1\"\tRelError: 2.79901e-04\tAbsError: 4.90925e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.79742e-04\tAbsError: 2.38438e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58548e-07\tAbsError: 4.90686e-05\n", + " Region: \"zone_3\"\tRelError: 1.00334e-03\tAbsError: 5.21701e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.63080e-06\tAbsError: 2.57884e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.31990e-06\tAbsError: 2.63817e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.91229e-04\tAbsError: 2.40181e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58573e-07\tAbsError: 4.90776e-05\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 8.40441e-02\tAbsError: 2.99262e+13\n", + " Region: \"zone_1\"\tRelError: 4.60146e-02\tAbsError: 2.39597e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.60068e-02\tAbsError: 1.09181e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.72177e-06\tAbsError: 2.39488e-03\n", + " Region: \"zone_3\"\tRelError: 3.80296e-02\tAbsError: 2.99262e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.74122e-04\tAbsError: 1.49078e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.07123e-04\tAbsError: 1.50184e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74406e-02\tAbsError: 1.09979e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.72298e-06\tAbsError: 2.39531e-03\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 1.12181e-04\tAbsError: 4.28516e+10\n", + " Region: \"zone_1\"\tRelError: 5.22195e-05\tAbsError: 1.32993e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.21767e-05\tAbsError: 7.08633e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.28595e-08\tAbsError: 1.32922e-05\n", + " Region: \"zone_3\"\tRelError: 5.99617e-05\tAbsError: 4.28516e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.51299e-06\tAbsError: 2.17249e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.70489e-06\tAbsError: 2.11267e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.67009e-05\tAbsError: 7.61778e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.28663e-08\tAbsError: 1.32946e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 5.50774e+03\tAbsError: 2.15748e+17\n", + " Region: \"zone_1\"\tRelError: 4.30571e+03\tAbsError: 9.90259e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.30571e+03\tAbsError: 2.75175e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.13963e-03\tAbsError: 9.62741e-01\n", + " Region: \"zone_3\"\tRelError: 1.20203e+03\tAbsError: 2.15748e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.24772e-01\tAbsError: 1.08324e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.60102e-01\tAbsError: 1.07424e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20155e+03\tAbsError: 2.75761e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.13984e-03\tAbsError: 9.62805e-01\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 8.91205e-05\tAbsError: 6.67853e+10\n", + " Region: \"zone_1\"\tRelError: 3.14509e-05\tAbsError: 1.03580e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.14175e-05\tAbsError: 5.33571e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34404e-08\tAbsError: 1.03527e-05\n", + " Region: \"zone_3\"\tRelError: 5.76696e-05\tAbsError: 6.67853e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18312e-06\tAbsError: 3.21481e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.33254e-06\tAbsError: 3.46372e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.51205e-05\tAbsError: 5.36090e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34457e-08\tAbsError: 1.03546e-05\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 1.03687e-03\tAbsError: 4.21780e+11\n", + " Region: \"zone_1\"\tRelError: 2.26343e-04\tAbsError: 3.96898e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.26214e-04\tAbsError: 1.92770e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28181e-07\tAbsError: 3.96705e-05\n", + " Region: \"zone_3\"\tRelError: 8.10527e-04\tAbsError: 4.21780e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.55232e-06\tAbsError: 2.08491e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.10943e-06\tAbsError: 2.13288e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.00737e-04\tAbsError: 1.94179e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28201e-07\tAbsError: 3.96777e-05\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 7.03501e-02\tAbsError: 2.42010e+13\n", + " Region: \"zone_1\"\tRelError: 3.86500e-02\tAbsError: 1.93781e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.86437e-02\tAbsError: 8.82941e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.24524e-06\tAbsError: 1.93692e-03\n", + " Region: \"zone_3\"\tRelError: 3.17002e-02\tAbsError: 2.42010e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21731e-04\tAbsError: 1.20558e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.48429e-04\tAbsError: 1.21452e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.12238e-02\tAbsError: 8.89394e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.24622e-06\tAbsError: 1.93728e-03\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 9.12372e-05\tAbsError: 3.48514e+10\n", + " Region: \"zone_1\"\tRelError: 4.24722e-05\tAbsError: 1.08164e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.24373e-05\tAbsError: 5.76335e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.48579e-08\tAbsError: 1.08106e-05\n", + " Region: \"zone_3\"\tRelError: 4.87650e-05\tAbsError: 3.48514e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23052e-06\tAbsError: 1.76690e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.38659e-06\tAbsError: 1.71824e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.61130e-05\tAbsError: 6.19558e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.48634e-08\tAbsError: 1.08126e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.02714e+03\tAbsError: 3.29458e+16\n", + " Region: \"zone_1\"\tRelError: 2.52546e+02\tAbsError: 6.41767e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52544e+02\tAbsError: 2.17465e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.01995e-03\tAbsError: 6.20020e-01\n", + " Region: \"zone_3\"\tRelError: 7.74591e+02\tAbsError: 3.29458e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.12526e-02\tAbsError: 1.65002e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.41632e-02\tAbsError: 1.64457e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.74504e+02\tAbsError: 2.17591e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.01995e-03\tAbsError: 6.20020e-01\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 8.38664e-04\tAbsError: 3.40996e+11\n", + " Region: \"zone_1\"\tRelError: 1.82958e-04\tAbsError: 3.20880e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82854e-04\tAbsError: 1.55849e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03631e-07\tAbsError: 3.20724e-05\n", + " Region: \"zone_3\"\tRelError: 6.55706e-04\tAbsError: 3.40996e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.68042e-06\tAbsError: 1.68559e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.13083e-06\tAbsError: 1.72437e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.47791e-04\tAbsError: 1.56988e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03647e-07\tAbsError: 3.20783e-05\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 5.53267e-02\tAbsError: 1.95728e+13\n", + " Region: \"zone_1\"\tRelError: 3.03111e-02\tAbsError: 1.56713e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.03060e-02\tAbsError: 7.14085e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.05058e-06\tAbsError: 1.56642e-03\n", + " Region: \"zone_3\"\tRelError: 2.50156e-02\tAbsError: 1.95728e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.79299e-04\tAbsError: 9.75021e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.00885e-04\tAbsError: 9.82255e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.46303e-02\tAbsError: 7.19303e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.05137e-06\tAbsError: 1.56670e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:31:26\u001b[0m.\u001b[1;36m360\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:31:26\u001b[0m.\u001b[1;36m384\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.05 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:31:26\u001b[0m.\u001b[1;36m401\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: 1.05\u001b[0m \n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", @@ -56525,58 +15653,40 @@ "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 1.11857e-04\tAbsError: 1.91944e+10\n", - " Region: \"zone_1\"\tRelError: 1.64982e-05\tAbsError: 5.77398e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.64966e-05\tAbsError: 8.51680e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.64906e-09\tAbsError: 5.76547e-07\n", - " Region: \"zone_3\"\tRelError: 9.53587e-05\tAbsError: 1.91944e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.58573e-08\tAbsError: 9.57503e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.95353e-08\tAbsError: 9.61942e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.52717e-05\tAbsError: 8.59043e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.64968e-09\tAbsError: 5.76776e-07\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.07043e+00\tAbsError: 1.31538e+14\n", - " Region: \"zone_1\"\tRelError: 8.24569e-02\tAbsError: 3.32321e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.24358e-02\tAbsError: 2.58877e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.11320e-05\tAbsError: 7.34439e-03\n", - " Region: \"zone_3\"\tRelError: 9.87970e-01\tAbsError: 1.31538e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.63108e-01\tAbsError: 7.89650e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.41314e-01\tAbsError: 5.25731e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 8.35277e-02\tAbsError: 2.58940e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.11320e-05\tAbsError: 7.34439e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.02099e+00\tAbsError: 4.94342e+17\n", - " Region: \"zone_1\"\tRelError: 7.12206e-01\tAbsError: 2.83587e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 7.04244e-01\tAbsError: 3.19512e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.96131e-03\tAbsError: 2.80392e+00\n", - " Region: \"zone_3\"\tRelError: 1.30878e+00\tAbsError: 4.94342e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47535e-01\tAbsError: 2.47513e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.43748e-01\tAbsError: 2.46828e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 8.09539e-01\tAbsError: 3.19525e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.96220e-03\tAbsError: 2.80430e+00\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 1.97623e-05\tAbsError: 3.02692e+09\n", - " Region: \"zone_1\"\tRelError: 2.94371e-06\tAbsError: 1.91382e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.94316e-06\tAbsError: 1.50936e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.46965e-10\tAbsError: 1.91231e-07\n", - " Region: \"zone_3\"\tRelError: 1.68186e-05\tAbsError: 3.02692e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91444e-09\tAbsError: 1.51040e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.89961e-09\tAbsError: 1.51652e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.68012e-05\tAbsError: 1.52167e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.47183e-10\tAbsError: 1.91311e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.29649e+01\tAbsError: 8.28032e+15\n", - " Region: \"zone_1\"\tRelError: 1.13261e+01\tAbsError: 4.09567e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13261e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.18781e-09\tAbsError: 2.49634e-06\n", - " Region: \"zone_3\"\tRelError: 1.63880e+00\tAbsError: 8.28032e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69633e-01\tAbsError: 4.77284e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.50748e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.95556e-02\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.18873e-09\tAbsError: 2.49669e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:04\u001b[0m.\u001b[1;36m321\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 1.2\u001b[0m \n", + "number of equations 31686\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 6.77782e-04\tAbsError: 2.75685e+11\n", + " Region: \"zone_1\"\tRelError: 1.47938e-04\tAbsError: 2.59422e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47854e-04\tAbsError: 1.25999e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.37823e-08\tAbsError: 2.59296e-05\n", + " Region: \"zone_3\"\tRelError: 5.29845e-04\tAbsError: 2.75685e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.97551e-06\tAbsError: 1.36275e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.33965e-06\tAbsError: 1.39410e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.23446e-04\tAbsError: 1.26920e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.37955e-08\tAbsError: 2.59343e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.75648e+01\tAbsError: 4.25522e+15\n", + " Region: \"zone_1\"\tRelError: 3.86885e+00\tAbsError: 1.56963e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.86835e+00\tAbsError: 1.01801e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.03109e-04\tAbsError: 1.56861e-01\n", + " Region: \"zone_3\"\tRelError: 1.36959e+01\tAbsError: 4.25522e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36319e-02\tAbsError: 2.11851e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.00945e-02\tAbsError: 2.13672e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36617e+01\tAbsError: 1.03275e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.03168e-04\tAbsError: 1.56882e-01\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 4.57648e-02\tAbsError: 1.58290e+13\n", + " Region: \"zone_1\"\tRelError: 2.51292e-02\tAbsError: 1.26741e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51251e-02\tAbsError: 5.77498e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.08466e-06\tAbsError: 1.26684e-03\n", + " Region: \"zone_3\"\tRelError: 2.06356e-02\tAbsError: 1.58290e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.45019e-04\tAbsError: 7.88524e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.62480e-04\tAbsError: 7.94374e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03241e-02\tAbsError: 5.81718e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.08530e-06\tAbsError: 1.26707e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:31:27\u001b[0m.\u001b[1;36m112\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:31:27\u001b[0m.\u001b[1;36m140\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.1 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:31:27\u001b[0m.\u001b[1;36m159\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 1.1\u001b[0m \n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", @@ -56590,7 +15700,17 @@ "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Iteration: 0\n", "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 6.02176e+02\tAbsError: 9.90590e+17\n", + " Region: \"zone_1\"\tRelError: 5.38048e+02\tAbsError: 5.61038e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.38048e+02\tAbsError: 5.60954e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69975e-08\tAbsError: 8.35805e-06\n", + " Region: \"zone_3\"\tRelError: 6.41282e+01\tAbsError: 9.90590e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.67047e-01\tAbsError: 4.73507e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.60738e-01\tAbsError: 5.17083e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 6.24004e+01\tAbsError: 5.60955e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.70017e-08\tAbsError: 8.35957e-06\n", "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", @@ -56615,132 +15735,533 @@ "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.49932e-01\tAbsError: 4.88492e+13\n", - " Region: \"zone_1\"\tRelError: 2.83428e-02\tAbsError: 1.27049e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.83365e-02\tAbsError: 1.05212e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.28298e-06\tAbsError: 2.18369e-03\n", - " Region: \"zone_3\"\tRelError: 3.21589e-01\tAbsError: 4.88492e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14470e-01\tAbsError: 2.20257e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.84871e-02\tAbsError: 2.68235e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.86258e-02\tAbsError: 1.05212e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.28763e-06\tAbsError: 2.18531e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 4.51056e-01\tAbsError: 2.05364e+16\n", - " Region: \"zone_1\"\tRelError: 2.00144e-01\tAbsError: 2.42988e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.93339e-01\tAbsError: 2.58995e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.80518e-03\tAbsError: 2.40398e+00\n", - " Region: \"zone_3\"\tRelError: 2.50912e-01\tAbsError: 2.05364e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.66526e-02\tAbsError: 1.02176e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.39299e-02\tAbsError: 1.03188e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.93523e-01\tAbsError: 2.58382e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.80635e-03\tAbsError: 2.40440e+00\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.56865e+00\tAbsError: 2.86625e+14\n", - " Region: \"zone_1\"\tRelError: 1.21045e-01\tAbsError: 8.55195e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20888e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", - " Region: \"zone_3\"\tRelError: 1.44761e+00\tAbsError: 2.86625e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38556e-01\tAbsError: 1.75436e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.32332e-01\tAbsError: 1.11189e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 7.65613e-02\tAbsError: 3.07640e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.57530e-04\tAbsError: 5.47559e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 7.18685e-02\tAbsError: 7.74299e+12\n", - " Region: \"zone_1\"\tRelError: 3.51475e-03\tAbsError: 2.24246e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 3.50846e-03\tAbsError: 5.73988e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.29286e-06\tAbsError: 2.18506e-03\n", - " Region: \"zone_3\"\tRelError: 6.83538e-02\tAbsError: 7.74299e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38946e-02\tAbsError: 4.23379e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.68308e-03\tAbsError: 3.50920e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76980e-03\tAbsError: 6.12737e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.29286e-06\tAbsError: 2.18506e-03\n", + "number of equations 31686\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 5.48132e-04\tAbsError: 2.22883e+11\n", + " Region: \"zone_1\"\tRelError: 1.19589e-04\tAbsError: 2.09735e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19521e-04\tAbsError: 1.01866e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.77355e-08\tAbsError: 2.09633e-05\n", + " Region: \"zone_3\"\tRelError: 4.28543e-04\tAbsError: 2.22883e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.40561e-06\tAbsError: 1.10174e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.70001e-06\tAbsError: 1.12709e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.23369e-04\tAbsError: 1.02611e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.77461e-08\tAbsError: 2.09671e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.52795e+00\tAbsError: 1.09307e+15\n", + " Region: \"zone_1\"\tRelError: 1.35599e+00\tAbsError: 1.68368e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35545e+00\tAbsError: 5.60459e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.40128e-04\tAbsError: 1.68312e-01\n", + " Region: \"zone_3\"\tRelError: 3.17196e+00\tAbsError: 1.09307e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01320e-02\tAbsError: 5.45123e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.16390e-02\tAbsError: 5.47950e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.12965e+00\tAbsError: 5.63806e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.40217e-04\tAbsError: 1.68344e-01\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 3.63414e-02\tAbsError: 1.28015e+13\n", + " Region: \"zone_1\"\tRelError: 1.99183e-02\tAbsError: 1.02499e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.99150e-02\tAbsError: 4.67047e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.30337e-06\tAbsError: 1.02453e-03\n", + " Region: \"zone_3\"\tRelError: 1.64230e-02\tAbsError: 1.28015e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.17274e-04\tAbsError: 6.37711e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.31393e-04\tAbsError: 6.42442e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61711e-02\tAbsError: 4.70460e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.30389e-06\tAbsError: 1.02471e-03\n", "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.21968e+01\tAbsError: 3.03714e+18\n", - " Region: \"zone_1\"\tRelError: 9.28674e+00\tAbsError: 4.29329e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.28674e+00\tAbsError: 4.29329e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.04601e-10\tAbsError: 3.65708e-08\n", - " Region: \"zone_3\"\tRelError: 2.91002e+00\tAbsError: 3.03714e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.35154e-01\tAbsError: 1.51734e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.27699e-01\tAbsError: 1.51980e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 1.84717e+00\tAbsError: 4.29338e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.04643e-10\tAbsError: 3.65865e-08\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.67468e-01\tAbsError: 2.46843e+16\n", - " Region: \"zone_1\"\tRelError: 2.30517e-01\tAbsError: 1.62585e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25924e-01\tAbsError: 1.06599e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.59329e-03\tAbsError: 1.61519e+00\n", - " Region: \"zone_3\"\tRelError: 3.36951e-01\tAbsError: 2.46843e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21049e-02\tAbsError: 1.22878e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.07419e-02\tAbsError: 1.23965e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.79509e-01\tAbsError: 1.06615e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.59568e-03\tAbsError: 1.61602e+00\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 9.63437e-01\tAbsError: 3.66677e+13\n", - " Region: \"zone_1\"\tRelError: 5.93231e-02\tAbsError: 3.16919e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.93064e-02\tAbsError: 2.58707e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", - " Region: \"zone_3\"\tRelError: 9.04114e-01\tAbsError: 3.66677e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40101e-01\tAbsError: 2.63702e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.04471e-01\tAbsError: 1.02975e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.95256e-02\tAbsError: 2.58992e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67471e-05\tAbsError: 5.82123e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 7.99896e-04\tAbsError: 1.04663e+12\n", - " Region: \"zone_1\"\tRelError: 9.91619e-05\tAbsError: 9.43866e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 9.88950e-05\tAbsError: 1.48652e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.66917e-07\tAbsError: 9.29001e-05\n", - " Region: \"zone_3\"\tRelError: 7.00734e-04\tAbsError: 1.04663e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52150e-04\tAbsError: 2.81168e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.02994e-04\tAbsError: 7.65464e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.45323e-04\tAbsError: 1.48982e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.67024e-07\tAbsError: 9.29392e-05\n", + " Device: \"device\"\tRelError: 1.48387e+02\tAbsError: 6.24035e+17\n", + " Region: \"zone_1\"\tRelError: 4.28653e+01\tAbsError: 6.55966e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.28653e+01\tAbsError: 6.55878e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.83501e-08\tAbsError: 8.79231e-06\n", + " Region: \"zone_3\"\tRelError: 1.05522e+02\tAbsError: 6.24035e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.15244e-01\tAbsError: 3.16854e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.13536e-01\tAbsError: 3.07181e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03693e+02\tAbsError: 6.55878e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.83545e-08\tAbsError: 8.79392e-06\n", "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.02943e+00\tAbsError: 4.87297e+17\n", - " Region: \"zone_1\"\tRelError: 2.94499e-01\tAbsError: 3.54798e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 2.84574e-01\tAbsError: 3.30986e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.92456e-03\tAbsError: 3.51488e+00\n", - " Region: \"zone_3\"\tRelError: 7.34931e-01\tAbsError: 4.87297e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.40933e-01\tAbsError: 2.43918e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.31212e-01\tAbsError: 2.43379e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 2.52860e-01\tAbsError: 3.31000e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.92599e-03\tAbsError: 3.51524e+00\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.37043e-01\tAbsError: 1.75835e+16\n", - " Region: \"zone_1\"\tRelError: 9.99402e-02\tAbsError: 6.83854e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 9.80013e-02\tAbsError: 2.45416e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93890e-03\tAbsError: 6.83608e-01\n", - " Region: \"zone_3\"\tRelError: 1.37102e-01\tAbsError: 1.75835e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.69191e-03\tAbsError: 8.79303e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.90089e-03\tAbsError: 8.79044e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18571e-01\tAbsError: 2.45694e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93890e-03\tAbsError: 6.83676e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.93334e-01\tAbsError: 6.56738e+12\n", - " Region: \"zone_1\"\tRelError: 1.86981e-02\tAbsError: 1.19586e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86900e-02\tAbsError: 9.16562e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03535e-06\tAbsError: 2.79297e-03\n", - " Region: \"zone_3\"\tRelError: 2.74636e-01\tAbsError: 6.56738e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11907e-01\tAbsError: 3.29549e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.38500e-02\tAbsError: 3.27189e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88710e-02\tAbsError: 9.16566e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03753e-06\tAbsError: 2.79381e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 9.49822e-05\tAbsError: 7.54263e+10\n", - " Region: \"zone_1\"\tRelError: 1.58303e-05\tAbsError: 6.41477e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.56457e-05\tAbsError: 5.00952e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84592e-07\tAbsError: 6.40976e-05\n", - " Region: \"zone_3\"\tRelError: 7.91520e-05\tAbsError: 7.54263e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.86789e-06\tAbsError: 5.64456e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.57072e-06\tAbsError: 1.89807e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 6.95287e-05\tAbsError: 5.22726e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84689e-07\tAbsError: 6.41318e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:08\u001b[0m.\u001b[1;36m373\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:08\u001b[0m.\u001b[1;36m373\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.5181818181818182\u001b[0m \n", + " Device: \"device\"\tRelError: 4.57914e+03\tAbsError: 1.61705e+18\n", + " Region: \"zone_1\"\tRelError: 3.51307e+03\tAbsError: 2.68349e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.51307e+03\tAbsError: 4.86907e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.59139e-03\tAbsError: 2.63480e+00\n", + " Region: \"zone_3\"\tRelError: 1.06607e+03\tAbsError: 1.61705e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69514e-01\tAbsError: 8.05397e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69248e-01\tAbsError: 8.11654e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06452e+03\tAbsError: 4.87882e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.59171e-03\tAbsError: 2.63485e+00\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 4.43040e-04\tAbsError: 1.80194e+11\n", + " Region: \"zone_1\"\tRelError: 9.66934e-05\tAbsError: 1.69564e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.66386e-05\tAbsError: 8.23560e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.47621e-08\tAbsError: 1.69482e-05\n", + " Region: \"zone_3\"\tRelError: 3.46347e-04\tAbsError: 1.80194e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94486e-06\tAbsError: 8.90725e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.18287e-06\tAbsError: 9.11219e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.42164e-04\tAbsError: 8.29581e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.47707e-08\tAbsError: 1.69513e-05\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 2.98275e-02\tAbsError: 1.03530e+13\n", + " Region: \"zone_1\"\tRelError: 1.63723e-02\tAbsError: 8.28953e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63696e-02\tAbsError: 3.77716e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.67157e-06\tAbsError: 8.28575e-04\n", + " Region: \"zone_3\"\tRelError: 1.34552e-02\tAbsError: 1.03530e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.48488e-05\tAbsError: 5.15739e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06269e-04\tAbsError: 5.19566e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32514e-02\tAbsError: 3.80476e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.67199e-06\tAbsError: 8.28726e-04\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.56634e+01\tAbsError: 1.48130e+15\n", + " Region: \"zone_1\"\tRelError: 1.68738e+00\tAbsError: 1.04420e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68705e+00\tAbsError: 5.48538e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34806e-04\tAbsError: 1.04366e-01\n", + " Region: \"zone_3\"\tRelError: 1.39760e+01\tAbsError: 1.48130e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.08446e-02\tAbsError: 7.38604e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.33001e-02\tAbsError: 7.42698e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39515e+01\tAbsError: 5.52539e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34854e-04\tAbsError: 1.04383e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.15924e+04\tAbsError: 1.84095e+18\n", + " Region: \"zone_1\"\tRelError: 1.78776e+03\tAbsError: 1.04597e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78776e+03\tAbsError: 5.97642e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.22679e-03\tAbsError: 9.86207e-01\n", + " Region: \"zone_3\"\tRelError: 2.98046e+04\tAbsError: 1.84095e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.71464e-01\tAbsError: 9.24066e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.93944e-01\tAbsError: 9.16882e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.98029e+04\tAbsError: 5.97884e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.22720e-03\tAbsError: 9.86312e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 5.63980e+03\tAbsError: 7.40948e+17\n", + " Region: \"zone_1\"\tRelError: 1.60059e+02\tAbsError: 3.12610e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60049e+02\tAbsError: 4.00813e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.99407e-03\tAbsError: 3.08602e+00\n", + " Region: \"zone_3\"\tRelError: 5.47974e+03\tAbsError: 7.40948e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.74107e-01\tAbsError: 3.71890e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.84567e-01\tAbsError: 3.69058e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 5.47867e+03\tAbsError: 4.02306e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.99416e-03\tAbsError: 3.08603e+00\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 3.58255e-04\tAbsError: 1.45682e+11\n", + " Region: \"zone_1\"\tRelError: 7.81676e-05\tAbsError: 1.37088e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.81233e-05\tAbsError: 6.65824e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.42735e-08\tAbsError: 1.37021e-05\n", + " Region: \"zone_3\"\tRelError: 2.80088e-04\tAbsError: 1.45682e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.57236e-06\tAbsError: 7.20125e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.76479e-06\tAbsError: 7.36693e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76706e-04\tAbsError: 6.70691e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.42805e-08\tAbsError: 1.37046e-05\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 2.38359e-02\tAbsError: 8.37287e+12\n", + " Region: \"zone_1\"\tRelError: 1.30679e-02\tAbsError: 6.70402e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30657e-02\tAbsError: 3.05473e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16059e-06\tAbsError: 6.70097e-04\n", + " Region: \"zone_3\"\tRelError: 1.07681e-02\tAbsError: 8.37287e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.67043e-05\tAbsError: 4.17096e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.59390e-05\tAbsError: 4.20191e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06033e-02\tAbsError: 3.07705e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16093e-06\tAbsError: 6.70219e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.03902e+01\tAbsError: 9.13251e+14\n", + " Region: \"zone_1\"\tRelError: 6.37592e-01\tAbsError: 9.77376e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.37279e-01\tAbsError: 3.77232e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.13520e-04\tAbsError: 9.76999e-02\n", + " Region: \"zone_3\"\tRelError: 9.75260e+00\tAbsError: 9.13251e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10308e-02\tAbsError: 4.56471e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24758e-02\tAbsError: 4.56780e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.72878e+00\tAbsError: 3.79666e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.13569e-04\tAbsError: 9.77177e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 7.66136e+02\tAbsError: 2.22290e+18\n", + " Region: \"zone_1\"\tRelError: 3.90404e+02\tAbsError: 3.71893e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.90392e+02\tAbsError: 5.30274e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18580e-02\tAbsError: 3.66590e+00\n", + " Region: \"zone_3\"\tRelError: 3.75732e+02\tAbsError: 2.22290e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.73468e-01\tAbsError: 1.11496e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.03387e-01\tAbsError: 1.10793e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74243e+02\tAbsError: 5.31420e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18580e-02\tAbsError: 3.66590e+00\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 2.89593e-04\tAbsError: 1.17779e+11\n", + " Region: \"zone_1\"\tRelError: 6.32001e-05\tAbsError: 1.10831e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.31644e-05\tAbsError: 5.38298e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57938e-08\tAbsError: 1.10777e-05\n", + " Region: \"zone_3\"\tRelError: 2.26392e-04\tAbsError: 1.17779e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27121e-06\tAbsError: 5.82199e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.42678e-06\tAbsError: 5.95594e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23659e-04\tAbsError: 5.42234e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57994e-08\tAbsError: 1.10798e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.44228e+03\tAbsError: 2.18354e+17\n", + " Region: \"zone_1\"\tRelError: 1.57602e+03\tAbsError: 3.97467e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57601e+03\tAbsError: 2.99672e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.25514e-02\tAbsError: 3.94470e+00\n", + " Region: \"zone_3\"\tRelError: 3.86626e+03\tAbsError: 2.18354e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.33495e-01\tAbsError: 1.09380e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.83018e-01\tAbsError: 1.08973e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 3.86563e+03\tAbsError: 3.02001e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.25590e-02\tAbsError: 3.94718e+00\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 1.94640e-02\tAbsError: 6.77145e+12\n", + " Region: \"zone_1\"\tRelError: 1.06813e-02\tAbsError: 5.42179e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06796e-02\tAbsError: 2.47047e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74735e-06\tAbsError: 5.41932e-04\n", + " Region: \"zone_3\"\tRelError: 8.78269e-03\tAbsError: 6.77145e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.20356e-05\tAbsError: 3.37321e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.95047e-05\tAbsError: 3.39824e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.64940e-03\tAbsError: 2.48852e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74762e-06\tAbsError: 5.42030e-04\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 5.44484e+00\tAbsError: 8.59452e+14\n", + " Region: \"zone_1\"\tRelError: 8.85663e-01\tAbsError: 7.12776e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.85434e-01\tAbsError: 3.30562e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28573e-04\tAbsError: 7.12446e-02\n", + " Region: \"zone_3\"\tRelError: 4.55917e+00\tAbsError: 8.59452e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.92351e-03\tAbsError: 4.28746e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.04228e-03\tAbsError: 4.30706e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54198e+00\tAbsError: 3.32861e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28608e-04\tAbsError: 7.12574e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 9.69908e+03\tAbsError: 1.04069e+18\n", + " Region: \"zone_1\"\tRelError: 2.97986e+03\tAbsError: 3.30393e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97985e+03\tAbsError: 4.52660e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04679e-02\tAbsError: 3.25867e+00\n", + " Region: \"zone_3\"\tRelError: 6.71923e+03\tAbsError: 1.04069e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.50611e-01\tAbsError: 5.21630e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.12549e-01\tAbsError: 5.19058e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 6.71825e+03\tAbsError: 4.53952e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04685e-02\tAbsError: 3.25885e+00\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 2.34157e-04\tAbsError: 9.52211e+10\n", + " Region: \"zone_1\"\tRelError: 5.10928e-05\tAbsError: 8.96038e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.10639e-05\tAbsError: 4.35198e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89382e-08\tAbsError: 8.95602e-06\n", + " Region: \"zone_3\"\tRelError: 1.83064e-04\tAbsError: 9.52211e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02773e-06\tAbsError: 4.70691e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.15351e-06\tAbsError: 4.81520e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80854e-04\tAbsError: 4.38380e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89428e-08\tAbsError: 8.95766e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.37525e+01\tAbsError: 3.55344e+16\n", + " Region: \"zone_1\"\tRelError: 2.83561e+01\tAbsError: 4.78627e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83407e+01\tAbsError: 2.58961e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53796e-02\tAbsError: 4.76037e+00\n", + " Region: \"zone_3\"\tRelError: 4.53964e+01\tAbsError: 3.55344e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.32241e-01\tAbsError: 1.77870e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.65223e-01\tAbsError: 1.77474e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.40835e+01\tAbsError: 2.58982e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53924e-02\tAbsError: 4.76437e+00\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 1.56187e-02\tAbsError: 5.47630e+12\n", + " Region: \"zone_1\"\tRelError: 8.56439e-03\tAbsError: 4.38479e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.56298e-03\tAbsError: 1.99796e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41314e-06\tAbsError: 4.38279e-04\n", + " Region: \"zone_3\"\tRelError: 7.05428e-03\tAbsError: 5.47630e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.01690e-05\tAbsError: 2.72803e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.62092e-05\tAbsError: 2.74827e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.94649e-03\tAbsError: 2.01256e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41336e-06\tAbsError: 4.38359e-04\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 7.31947e+00\tAbsError: 6.35705e+14\n", + " Region: \"zone_1\"\tRelError: 4.03885e-01\tAbsError: 6.04939e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.03691e-01\tAbsError: 2.52020e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94038e-04\tAbsError: 6.04687e-02\n", + " Region: \"zone_3\"\tRelError: 6.91559e+00\tAbsError: 6.35705e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.81987e-03\tAbsError: 3.17788e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.69869e-03\tAbsError: 3.17916e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.90087e+00\tAbsError: 2.53698e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94068e-04\tAbsError: 6.04797e-02\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 1.89289e-04\tAbsError: 7.69834e+10\n", + " Region: \"zone_1\"\tRelError: 4.13087e-05\tAbsError: 7.24420e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.12853e-05\tAbsError: 3.51845e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.33957e-08\tAbsError: 7.24068e-06\n", + " Region: \"zone_3\"\tRelError: 1.47980e-04\tAbsError: 7.69834e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.30893e-07\tAbsError: 3.80539e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.32577e-07\tAbsError: 3.89295e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46194e-04\tAbsError: 3.54417e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.33994e-08\tAbsError: 7.24200e-06\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.18535e+02\tAbsError: 2.03261e+17\n", + " Region: \"zone_1\"\tRelError: 1.50169e+01\tAbsError: 3.30437e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50065e+01\tAbsError: 3.60148e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03908e-02\tAbsError: 3.26836e+00\n", + " Region: \"zone_3\"\tRelError: 2.03519e+02\tAbsError: 2.03261e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.08894e-01\tAbsError: 1.01839e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.57332e-01\tAbsError: 1.01422e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02942e+02\tAbsError: 3.61732e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03913e-02\tAbsError: 3.26850e+00\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 1.27114e-02\tAbsError: 4.42889e+12\n", + " Region: \"zone_1\"\tRelError: 6.97463e-03\tAbsError: 3.54614e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.97348e-03\tAbsError: 1.61582e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14286e-06\tAbsError: 3.54452e-04\n", + " Region: \"zone_3\"\tRelError: 5.73679e-03\tAbsError: 4.42889e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.05744e-05\tAbsError: 2.20626e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.54595e-05\tAbsError: 2.22263e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.64961e-03\tAbsError: 1.62763e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14304e-06\tAbsError: 3.54517e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.34681e+01\tAbsError: 2.95018e+16\n", + " Region: \"zone_1\"\tRelError: 4.25854e+00\tAbsError: 4.60278e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.24377e+00\tAbsError: 8.73537e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47643e-02\tAbsError: 4.59404e+00\n", + " Region: \"zone_3\"\tRelError: 1.92096e+01\tAbsError: 2.95018e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.50374e-01\tAbsError: 1.46720e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.67411e-01\tAbsError: 1.48298e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83770e+01\tAbsError: 9.91117e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47946e-02\tAbsError: 4.60363e+00\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.33580e+00\tAbsError: 5.36538e+14\n", + " Region: \"zone_1\"\tRelError: 5.00879e-01\tAbsError: 4.71066e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.00728e-01\tAbsError: 2.08666e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51071e-04\tAbsError: 4.70857e-02\n", + " Region: \"zone_3\"\tRelError: 1.83492e+00\tAbsError: 5.36538e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.29737e-03\tAbsError: 2.67868e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.97358e-03\tAbsError: 2.68670e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82350e+00\tAbsError: 2.10090e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51094e-04\tAbsError: 4.70942e-02\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 1.53048e-04\tAbsError: 6.22388e+10\n", + " Region: \"zone_1\"\tRelError: 3.33957e-05\tAbsError: 5.85671e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.33768e-05\tAbsError: 2.84456e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89147e-08\tAbsError: 5.85387e-06\n", + " Region: \"zone_3\"\tRelError: 1.19652e-04\tAbsError: 6.22388e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.71752e-07\tAbsError: 3.07655e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.53961e-07\tAbsError: 3.14733e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18207e-04\tAbsError: 2.86535e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89177e-08\tAbsError: 5.85494e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.37338e+02\tAbsError: 2.91127e+16\n", + " Region: \"zone_1\"\tRelError: 5.33980e+00\tAbsError: 2.62848e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.33905e+00\tAbsError: 2.57236e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.52918e-04\tAbsError: 2.37125e-01\n", + " Region: \"zone_3\"\tRelError: 2.31999e+02\tAbsError: 2.91127e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.79474e-02\tAbsError: 1.45252e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.62025e-02\tAbsError: 1.45875e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31884e+02\tAbsError: 2.58551e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.60047e-04\tAbsError: 2.39374e-01\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 1.02278e-02\tAbsError: 3.58180e+12\n", + " Region: \"zone_1\"\tRelError: 5.60900e-03\tAbsError: 2.86789e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.60808e-03\tAbsError: 1.30677e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.24271e-07\tAbsError: 2.86658e-04\n", + " Region: \"zone_3\"\tRelError: 4.61876e-03\tAbsError: 3.58180e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.28134e-05\tAbsError: 1.78428e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.67640e-05\tAbsError: 1.79752e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54826e-03\tAbsError: 1.31632e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.24416e-07\tAbsError: 2.86710e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 5.20158e+01\tAbsError: 4.15410e+16\n", + " Region: \"zone_1\"\tRelError: 6.03896e+00\tAbsError: 4.70065e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 6.02362e+00\tAbsError: 1.36728e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53341e-02\tAbsError: 4.69928e+00\n", + " Region: \"zone_3\"\tRelError: 4.59768e+01\tAbsError: 4.15410e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.21505e+00\tAbsError: 2.06934e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.87179e-01\tAbsError: 2.08476e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.41592e+01\tAbsError: 3.24023e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53674e-02\tAbsError: 4.70950e+00\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 2.36017e+00\tAbsError: 4.20324e+14\n", + " Region: \"zone_1\"\tRelError: 2.83876e-01\tAbsError: 3.85605e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83752e-01\tAbsError: 1.64970e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23681e-04\tAbsError: 3.85440e-02\n", + " Region: \"zone_3\"\tRelError: 2.07629e+00\tAbsError: 4.20324e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.35230e-03\tAbsError: 2.09981e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.90177e-03\tAbsError: 2.10344e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06691e+00\tAbsError: 1.66080e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23700e-04\tAbsError: 3.85510e-02\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 1.23726e-04\tAbsError: 5.03182e+10\n", + " Region: \"zone_1\"\tRelError: 2.70002e-05\tAbsError: 4.73498e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.69849e-05\tAbsError: 2.29974e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52920e-08\tAbsError: 4.73268e-06\n", + " Region: \"zone_3\"\tRelError: 9.67257e-05\tAbsError: 5.03182e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.43091e-07\tAbsError: 2.48729e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.09554e-07\tAbsError: 2.54452e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.55578e-05\tAbsError: 2.31655e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52944e-08\tAbsError: 4.73354e-06\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 8.30581e-03\tAbsError: 2.89673e+12\n", + " Region: \"zone_1\"\tRelError: 4.55686e-03\tAbsError: 2.31936e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.55612e-03\tAbsError: 1.05683e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.47491e-07\tAbsError: 2.31831e-04\n", + " Region: \"zone_3\"\tRelError: 3.74894e-03\tAbsError: 2.89673e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.65377e-05\tAbsError: 1.44301e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.97328e-05\tAbsError: 1.45372e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.69192e-03\tAbsError: 1.06455e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.47609e-07\tAbsError: 2.31873e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.98742e+01\tAbsError: 2.11088e+16\n", + " Region: \"zone_1\"\tRelError: 9.91376e+00\tAbsError: 3.51006e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.91271e+00\tAbsError: 1.74433e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04906e-03\tAbsError: 3.33563e-01\n", + " Region: \"zone_3\"\tRelError: 9.96040e+00\tAbsError: 2.11088e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.31263e-03\tAbsError: 1.04003e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.93294e-02\tAbsError: 1.07085e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 9.91271e+00\tAbsError: 1.74773e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04917e-03\tAbsError: 3.33598e-01\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.22983e+00\tAbsError: 3.43170e+14\n", + " Region: \"zone_1\"\tRelError: 2.99255e-01\tAbsError: 3.06979e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.99156e-01\tAbsError: 1.33937e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.84512e-05\tAbsError: 3.06845e-02\n", + " Region: \"zone_3\"\tRelError: 9.30573e-01\tAbsError: 3.43170e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.45997e-03\tAbsError: 1.71368e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.89380e-03\tAbsError: 1.71802e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.23120e-01\tAbsError: 1.34845e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.84664e-05\tAbsError: 3.06900e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.03590e+02\tAbsError: 4.14607e+16\n", + " Region: \"zone_1\"\tRelError: 2.89706e+01\tAbsError: 2.33329e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.89632e+01\tAbsError: 2.04321e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.39141e-03\tAbsError: 2.33125e+00\n", + " Region: \"zone_3\"\tRelError: 3.74619e+02\tAbsError: 4.14607e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33824e-01\tAbsError: 2.06498e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.07614e-01\tAbsError: 2.08109e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.73870e+02\tAbsError: 3.56988e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.39240e-03\tAbsError: 2.33163e+00\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 1.00034e-04\tAbsError: 4.06807e+10\n", + " Region: \"zone_1\"\tRelError: 2.18284e-05\tAbsError: 3.82809e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18160e-05\tAbsError: 1.85927e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23631e-08\tAbsError: 3.82623e-06\n", + " Region: \"zone_3\"\tRelError: 7.82058e-05\tAbsError: 4.06807e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39073e-07\tAbsError: 2.01090e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.92807e-07\tAbsError: 2.05717e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.72616e-05\tAbsError: 1.87286e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23651e-08\tAbsError: 3.82693e-06\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 6.69478e-03\tAbsError: 2.34269e+12\n", + " Region: \"zone_1\"\tRelError: 3.67177e-03\tAbsError: 1.87575e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.67117e-03\tAbsError: 8.54697e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.04523e-07\tAbsError: 1.87490e-04\n", + " Region: \"zone_3\"\tRelError: 3.02301e-03\tAbsError: 2.34269e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14618e-05\tAbsError: 1.16701e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.40457e-05\tAbsError: 1.17567e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97690e-03\tAbsError: 8.60943e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.04618e-07\tAbsError: 1.87524e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.27211e+00\tAbsError: 2.29064e+15\n", + " Region: \"zone_1\"\tRelError: 1.31845e+00\tAbsError: 3.10664e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31746e+00\tAbsError: 1.05635e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.87885e-04\tAbsError: 3.10559e-01\n", + " Region: \"zone_3\"\tRelError: 1.95367e+00\tAbsError: 2.29064e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49590e-02\tAbsError: 1.14133e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.89344e-02\tAbsError: 1.14931e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90879e+00\tAbsError: 1.06765e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.89286e-04\tAbsError: 3.11006e-01\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 1.20481e+00\tAbsError: 2.73769e+14\n", + " Region: \"zone_1\"\tRelError: 1.93220e-01\tAbsError: 2.48300e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93141e-01\tAbsError: 1.07149e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.96389e-05\tAbsError: 2.48193e-02\n", + " Region: \"zone_3\"\tRelError: 1.01159e+00\tAbsError: 2.73769e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.80324e-03\tAbsError: 1.36738e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.15470e-03\tAbsError: 1.37030e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00555e+00\tAbsError: 1.07872e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.96513e-05\tAbsError: 2.48238e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.30472e+01\tAbsError: 2.94194e+16\n", + " Region: \"zone_1\"\tRelError: 1.62667e+00\tAbsError: 1.94806e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62046e+00\tAbsError: 1.39569e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.21037e-03\tAbsError: 1.94667e+00\n", + " Region: \"zone_3\"\tRelError: 2.14206e+01\tAbsError: 2.94194e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.55803e-01\tAbsError: 1.46581e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.74116e-01\tAbsError: 1.47613e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08844e+01\tAbsError: 2.62597e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.21122e-03\tAbsError: 1.94698e+00\n", + "Iteration: 59\n", + " Device: \"device\"\tRelError: 8.08711e-05\tAbsError: 3.28892e+10\n", + " Region: \"zone_1\"\tRelError: 1.76479e-05\tAbsError: 3.09489e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76379e-05\tAbsError: 1.50317e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.99520e-09\tAbsError: 3.09339e-06\n", + " Region: \"zone_3\"\tRelError: 6.32232e-05\tAbsError: 3.28892e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.54977e-07\tAbsError: 1.62576e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.98419e-07\tAbsError: 1.66316e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.24598e-05\tAbsError: 1.51415e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.99677e-09\tAbsError: 3.09395e-06\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 5.42896e-03\tAbsError: 1.89462e+12\n", + " Region: \"zone_1\"\tRelError: 2.97833e-03\tAbsError: 1.51699e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97785e-03\tAbsError: 6.91224e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.88899e-07\tAbsError: 1.51630e-04\n", + " Region: \"zone_3\"\tRelError: 2.45063e-03\tAbsError: 1.89462e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.73571e-05\tAbsError: 9.43807e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.94468e-05\tAbsError: 9.50809e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41334e-03\tAbsError: 6.96276e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.88976e-07\tAbsError: 1.51657e-04\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 7.11122e-01\tAbsError: 2.21220e+14\n", + " Region: \"zone_1\"\tRelError: 1.84604e-01\tAbsError: 1.99073e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84540e-01\tAbsError: 8.64389e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.38459e-05\tAbsError: 1.98987e-02\n", + " Region: \"zone_3\"\tRelError: 5.26518e-01\tAbsError: 2.21220e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.24513e-03\tAbsError: 1.10479e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.52579e-03\tAbsError: 1.10741e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.21683e-01\tAbsError: 8.70236e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.38558e-05\tAbsError: 1.99023e-02\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.09538e+01\tAbsError: 2.04946e+15\n", + " Region: \"zone_1\"\tRelError: 1.04616e+01\tAbsError: 1.54010e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04611e+01\tAbsError: 7.88495e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.84246e-04\tAbsError: 1.53931e-01\n", + " Region: \"zone_3\"\tRelError: 1.04922e+01\tAbsError: 2.04946e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16949e-02\tAbsError: 1.01769e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.88506e-02\tAbsError: 1.03177e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04611e+01\tAbsError: 7.93713e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.84309e-04\tAbsError: 1.53955e-01\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.14613e+02\tAbsError: 1.07955e+16\n", + " Region: \"zone_1\"\tRelError: 5.49357e+01\tAbsError: 1.38791e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.49313e+01\tAbsError: 5.26918e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.40658e-03\tAbsError: 1.38738e+00\n", + " Region: \"zone_3\"\tRelError: 5.96769e+01\tAbsError: 1.07955e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.58698e-01\tAbsError: 5.38046e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.76243e-01\tAbsError: 5.41507e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.93375e+01\tAbsError: 5.31263e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.40716e-03\tAbsError: 1.38759e+00\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 4.38101e-03\tAbsError: 1.53224e+12\n", + " Region: \"zone_1\"\tRelError: 2.40290e-03\tAbsError: 1.22684e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.40250e-03\tAbsError: 5.59018e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.95390e-07\tAbsError: 1.22628e-04\n", + " Region: \"zone_3\"\tRelError: 1.97811e-03\tAbsError: 1.53224e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.40372e-05\tAbsError: 7.63290e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.57272e-05\tAbsError: 7.68953e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.94795e-03\tAbsError: 5.63103e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.95452e-07\tAbsError: 1.22651e-04\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 6.94645e-01\tAbsError: 1.77489e+14\n", + " Region: \"zone_1\"\tRelError: 1.29118e-01\tAbsError: 1.60404e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29066e-01\tAbsError: 6.94096e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.14469e-05\tAbsError: 1.60335e-02\n", + " Region: \"zone_3\"\tRelError: 5.65528e-01\tAbsError: 1.77489e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.81080e-03\tAbsError: 8.86448e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.03737e-03\tAbsError: 8.88440e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.61628e-01\tAbsError: 6.98784e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.14548e-05\tAbsError: 1.60364e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 3.58812e+00\tAbsError: 7.96964e+14\n", + " Region: \"zone_1\"\tRelError: 1.77377e+00\tAbsError: 1.31437e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77336e+00\tAbsError: 5.08464e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.13494e-04\tAbsError: 1.31386e-01\n", + " Region: \"zone_3\"\tRelError: 1.81435e+00\tAbsError: 7.96964e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.26864e-02\tAbsError: 3.97559e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.61320e-02\tAbsError: 3.99405e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78512e+00\tAbsError: 5.13469e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.13554e-04\tAbsError: 1.31409e-01\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:31:38\u001b[0m.\u001b[1;36m839\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:31:38\u001b[0m.\u001b[1;36m858\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.15 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:31:38\u001b[0m.\u001b[1;36m875\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 1.15\u001b[0m \n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Iteration: 10\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 5.14834e+00\tAbsError: 7.97224e+15\n", + " Region: \"zone_1\"\tRelError: 1.35014e+00\tAbsError: 1.15403e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34646e+00\tAbsError: 4.10880e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.67758e-03\tAbsError: 1.15362e+00\n", + " Region: \"zone_3\"\tRelError: 3.79821e+00\tAbsError: 7.97224e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34625e-01\tAbsError: 3.96935e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.52720e-01\tAbsError: 4.00290e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.50719e+00\tAbsError: 4.14044e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.67812e-03\tAbsError: 1.15381e+00\n", "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", @@ -56766,16 +16287,6 @@ "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 3.06598e-01\tAbsError: 2.94721e+16\n", - " Region: \"zone_1\"\tRelError: 1.45043e-01\tAbsError: 1.82604e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39960e-01\tAbsError: 2.58619e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.08227e-03\tAbsError: 1.80018e+00\n", - " Region: \"zone_3\"\tRelError: 1.61555e-01\tAbsError: 2.94721e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.33714e-02\tAbsError: 1.46903e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.75328e-03\tAbsError: 1.47818e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.24339e-01\tAbsError: 2.58957e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.09128e-03\tAbsError: 1.80342e+00\n", "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_4, Equation: PotentialEquation\n", @@ -56786,148 +16297,930 @@ "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.89351e-02\tAbsError: 5.69657e+15\n", - " Region: \"zone_1\"\tRelError: 1.78144e-02\tAbsError: 2.12673e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77545e-02\tAbsError: 1.45761e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.98502e-05\tAbsError: 2.11215e-02\n", - " Region: \"zone_3\"\tRelError: 3.11207e-02\tAbsError: 5.69657e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.04402e-03\tAbsError: 2.80640e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.66054e-03\tAbsError: 2.89016e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.13562e-02\tAbsError: 1.46554e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.98901e-05\tAbsError: 2.11355e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.00158e-02\tAbsError: 2.47729e+12\n", - " Region: \"zone_1\"\tRelError: 6.29744e-04\tAbsError: 1.66755e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.24968e-04\tAbsError: 8.94858e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", - " Region: \"zone_3\"\tRelError: 5.93860e-02\tAbsError: 2.47729e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.68115e-02\tAbsError: 1.70064e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.91678e-04\tAbsError: 7.76647e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.27809e-03\tAbsError: 9.43816e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.77624e-06\tAbsError: 1.65860e-03\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.63007e-01\tAbsError: 3.52970e+16\n", - " Region: \"zone_1\"\tRelError: 6.71069e-02\tAbsError: 1.93853e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 6.17159e-02\tAbsError: 1.22632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.39099e-03\tAbsError: 1.92627e+00\n", - " Region: \"zone_3\"\tRelError: 9.59006e-02\tAbsError: 3.52970e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68566e-02\tAbsError: 1.57552e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.19087e-02\tAbsError: 1.95418e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.17335e-02\tAbsError: 1.22654e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.40172e-03\tAbsError: 1.93013e+00\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.81665e-03\tAbsError: 2.73535e+14\n", - " Region: \"zone_1\"\tRelError: 5.85407e-04\tAbsError: 1.66466e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.38239e-04\tAbsError: 5.18612e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.71682e-05\tAbsError: 1.66414e-02\n", - " Region: \"zone_3\"\tRelError: 1.23124e-03\tAbsError: 2.73535e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.87007e-04\tAbsError: 1.35327e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.35619e-05\tAbsError: 1.38209e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.53493e-04\tAbsError: 5.21633e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.71777e-05\tAbsError: 1.66444e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.75723e+01\tAbsError: 8.60719e+15\n", - " Region: \"zone_1\"\tRelError: 2.58712e+01\tAbsError: 4.18752e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.58712e+01\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.78795e-09\tAbsError: 2.36269e-06\n", - " Region: \"zone_3\"\tRelError: 1.70103e+00\tAbsError: 8.60719e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77451e-01\tAbsError: 4.97125e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.77390e-01\tAbsError: 3.63594e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.46185e-01\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.79151e-09\tAbsError: 2.36399e-06\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 4.31240e-04\tAbsError: 7.97937e+11\n", - " Region: \"zone_1\"\tRelError: 7.54533e-05\tAbsError: 1.27890e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.50894e-05\tAbsError: 1.20855e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.63943e-07\tAbsError: 1.26681e-04\n", - " Region: \"zone_3\"\tRelError: 3.55787e-04\tAbsError: 7.97937e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.38045e-05\tAbsError: 1.92064e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.48742e-05\tAbsError: 6.05872e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.76744e-04\tAbsError: 1.21338e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.64089e-07\tAbsError: 1.26735e-04\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.47662e-01\tAbsError: 3.16243e+16\n", - " Region: \"zone_1\"\tRelError: 3.98076e-02\tAbsError: 2.53120e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 3.26748e-02\tAbsError: 5.98930e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.13283e-03\tAbsError: 2.53060e+00\n", - " Region: \"zone_3\"\tRelError: 1.07855e-01\tAbsError: 3.16243e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.60729e-02\tAbsError: 1.56428e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.59129e-02\tAbsError: 1.59815e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.87247e-02\tAbsError: 6.01846e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.14424e-03\tAbsError: 2.53465e+00\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.81145e-03\tAbsError: 1.18428e+14\n", - " Region: \"zone_1\"\tRelError: 1.12103e-03\tAbsError: 1.02830e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.11813e-03\tAbsError: 4.60822e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.90087e-06\tAbsError: 1.02370e-03\n", - " Region: \"zone_3\"\tRelError: 1.69042e-03\tAbsError: 1.18428e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.20860e-04\tAbsError: 5.74187e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.20476e-04\tAbsError: 6.10095e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.34619e-03\tAbsError: 4.63235e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.90208e-06\tAbsError: 1.02411e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.41217e+00\tAbsError: 1.46955e+15\n", - " Region: \"zone_1\"\tRelError: 1.90056e+00\tAbsError: 7.00012e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.90045e+00\tAbsError: 3.18463e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.09797e-04\tAbsError: 3.81549e-02\n", - " Region: \"zone_3\"\tRelError: 1.51161e+00\tAbsError: 1.46955e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.54837e-01\tAbsError: 8.24639e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.36560e-01\tAbsError: 6.44909e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20103e-01\tAbsError: 3.18464e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.09797e-04\tAbsError: 3.81549e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.53826e-04\tAbsError: 1.09912e+11\n", - " Region: \"zone_1\"\tRelError: 2.29821e-05\tAbsError: 4.27473e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.28592e-05\tAbsError: 6.65170e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", - " Region: \"zone_3\"\tRelError: 1.30844e-04\tAbsError: 1.09912e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.01681e-06\tAbsError: 7.52234e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.94349e-06\tAbsError: 3.46881e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14760e-04\tAbsError: 6.98367e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.22899e-07\tAbsError: 4.26808e-05\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.29504e-02\tAbsError: 2.02898e+16\n", - " Region: \"zone_1\"\tRelError: 2.42374e-02\tAbsError: 1.35837e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.38563e-02\tAbsError: 5.99628e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.81112e-04\tAbsError: 1.35237e-01\n", - " Region: \"zone_3\"\tRelError: 6.87131e-02\tAbsError: 2.02898e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.13966e-02\tAbsError: 9.99359e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.26787e-02\tAbsError: 1.02962e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.42566e-02\tAbsError: 6.02384e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.81172e-04\tAbsError: 1.35256e-01\n", + "number of equations 31686\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 3.54935e-03\tAbsError: 1.23918e+12\n", + " Region: \"zone_1\"\tRelError: 1.94709e-03\tAbsError: 9.92191e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.94677e-03\tAbsError: 4.52098e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.19766e-07\tAbsError: 9.91739e-05\n", + " Region: \"zone_3\"\tRelError: 1.60225e-03\tAbsError: 1.23918e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13524e-05\tAbsError: 6.17300e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.27192e-05\tAbsError: 6.21880e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57786e-03\tAbsError: 4.55402e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.19816e-07\tAbsError: 9.91920e-05\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 4.30976e-01\tAbsError: 1.42961e+14\n", + " Region: \"zone_1\"\tRelError: 1.15994e-01\tAbsError: 1.28890e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15953e-01\tAbsError: 5.58802e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.13374e-05\tAbsError: 1.28834e-02\n", + " Region: \"zone_3\"\tRelError: 3.14982e-01\tAbsError: 1.42961e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.45397e-03\tAbsError: 7.13975e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.63565e-03\tAbsError: 7.15635e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.11851e-01\tAbsError: 5.62579e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.13438e-05\tAbsError: 1.28857e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.77962e+04\tAbsError: 2.60620e+18\n", + " Region: \"zone_1\"\tRelError: 3.88972e+04\tAbsError: 6.12764e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.88972e+04\tAbsError: 6.12739e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.08082e-09\tAbsError: 2.50091e-06\n", + " Region: \"zone_3\"\tRelError: 3.88990e+04\tAbsError: 2.60620e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.71752e-01\tAbsError: 1.27433e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.60394e-01\tAbsError: 1.33187e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 3.88972e+04\tAbsError: 6.12741e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.08209e-09\tAbsError: 2.50137e-06\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 6.16543e+00\tAbsError: 7.94429e+14\n", + " Region: \"zone_1\"\tRelError: 3.07245e+00\tAbsError: 9.27825e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.07216e+00\tAbsError: 4.17954e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.91786e-04\tAbsError: 9.27407e-02\n", + " Region: \"zone_3\"\tRelError: 3.09298e+00\tAbsError: 7.94429e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.19751e-03\tAbsError: 3.96211e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13250e-02\tAbsError: 3.98217e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.07216e+00\tAbsError: 4.22399e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.91827e-04\tAbsError: 9.27566e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 5.12300e+01\tAbsError: 7.59098e+15\n", + " Region: \"zone_1\"\tRelError: 6.13020e+00\tAbsError: 8.77113e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.12741e+00\tAbsError: 3.57873e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.78718e-03\tAbsError: 8.76755e-01\n", + " Region: \"zone_3\"\tRelError: 4.50998e+01\tAbsError: 7.59098e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.57054e-02\tAbsError: 3.78237e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.08770e-01\tAbsError: 3.80860e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.48925e+01\tAbsError: 3.60376e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.78759e-03\tAbsError: 8.76904e-01\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 2.86638e-03\tAbsError: 1.00217e+12\n", + " Region: \"zone_1\"\tRelError: 1.57221e-03\tAbsError: 8.02421e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57195e-03\tAbsError: 3.65628e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58606e-07\tAbsError: 8.02055e-05\n", + " Region: \"zone_3\"\tRelError: 1.29417e-03\tAbsError: 1.00217e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.18107e-06\tAbsError: 4.99233e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02864e-05\tAbsError: 5.02936e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27445e-03\tAbsError: 3.68299e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58647e-07\tAbsError: 8.02201e-05\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 4.21717e-01\tAbsError: 1.14903e+14\n", + " Region: \"zone_1\"\tRelError: 8.53036e-02\tAbsError: 1.03728e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.52704e-02\tAbsError: 4.49236e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32686e-05\tAbsError: 1.03683e-02\n", + " Region: \"zone_3\"\tRelError: 3.36414e-01\tAbsError: 1.14903e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.17085e-03\tAbsError: 5.73861e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.31726e-03\tAbsError: 5.75169e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.33892e-01\tAbsError: 4.52271e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32737e-05\tAbsError: 1.03702e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 3.61618e+00\tAbsError: 5.46268e+14\n", + " Region: \"zone_1\"\tRelError: 1.79546e+00\tAbsError: 7.50835e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79522e+00\tAbsError: 3.03391e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36192e-04\tAbsError: 7.50532e-02\n", + " Region: \"zone_3\"\tRelError: 1.82072e+00\tAbsError: 5.46268e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.71996e-03\tAbsError: 2.72431e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.18797e-03\tAbsError: 2.73837e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80358e+00\tAbsError: 3.06443e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36226e-04\tAbsError: 7.50663e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.08994e+05\tAbsError: 2.70578e+18\n", + " Region: \"zone_1\"\tRelError: 4.38032e+03\tAbsError: 5.05475e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.38030e+03\tAbsError: 5.47475e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63085e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.04614e+05\tAbsError: 2.70578e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.62158e-01\tAbsError: 1.35510e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.57046e-01\tAbsError: 1.35068e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04612e+05\tAbsError: 5.49350e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63034e-02\tAbsError: 5.00000e+00\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 9.72279e+00\tAbsError: 5.92086e+15\n", + " Region: \"zone_1\"\tRelError: 1.38538e+00\tAbsError: 7.08339e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38312e+00\tAbsError: 2.82263e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.25597e-03\tAbsError: 7.08057e-01\n", + " Region: \"zone_3\"\tRelError: 8.33742e+00\tAbsError: 5.92086e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.96171e-02\tAbsError: 2.95070e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.09880e-02\tAbsError: 2.97016e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.16455e+00\tAbsError: 2.84151e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.25631e-03\tAbsError: 7.08182e-01\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 2.32083e-03\tAbsError: 8.10490e+11\n", + " Region: \"zone_1\"\tRelError: 1.27312e-03\tAbsError: 6.48946e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27291e-03\tAbsError: 2.95696e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.09144e-07\tAbsError: 6.48651e-05\n", + " Region: \"zone_3\"\tRelError: 1.04771e-03\tAbsError: 8.10490e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.42509e-06\tAbsError: 4.03747e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.31905e-06\tAbsError: 4.06743e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03175e-03\tAbsError: 2.97857e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.09177e-07\tAbsError: 6.48769e-05\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 2.87456e-01\tAbsError: 9.24585e+13\n", + " Region: \"zone_1\"\tRelError: 7.36850e-02\tAbsError: 8.34065e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.36583e-02\tAbsError: 3.61439e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.67502e-05\tAbsError: 8.33703e-03\n", + " Region: \"zone_3\"\tRelError: 2.13771e-01\tAbsError: 9.24585e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.41008e-04\tAbsError: 4.61760e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.05860e-03\tAbsError: 4.62825e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.11745e-01\tAbsError: 3.63881e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.67544e-05\tAbsError: 8.33855e-03\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 6.70316e+00\tAbsError: 4.52384e+14\n", + " Region: \"zone_1\"\tRelError: 3.34523e+00\tAbsError: 5.63535e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.34505e+00\tAbsError: 2.41803e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77237e-04\tAbsError: 5.63293e-02\n", + " Region: \"zone_3\"\tRelError: 3.35793e+00\tAbsError: 4.52384e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.82735e-03\tAbsError: 2.25608e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.87399e-03\tAbsError: 2.26775e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.34505e+00\tAbsError: 2.44312e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77262e-04\tAbsError: 5.63392e-02\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 2.67191e+02\tAbsError: 4.91640e+15\n", + " Region: \"zone_1\"\tRelError: 7.61550e+00\tAbsError: 5.53576e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.61374e+00\tAbsError: 2.30040e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75994e-03\tAbsError: 5.53346e-01\n", + " Region: \"zone_3\"\tRelError: 2.59575e+02\tAbsError: 4.91640e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.01575e-02\tAbsError: 2.45049e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.84813e-02\tAbsError: 2.46591e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.59445e+02\tAbsError: 2.31546e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76020e-03\tAbsError: 5.53443e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.35202e+01\tAbsError: 1.24129e+18\n", + " Region: \"zone_1\"\tRelError: 4.99498e+00\tAbsError: 5.04747e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.97893e+00\tAbsError: 4.74701e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60476e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 8.52522e+00\tAbsError: 1.24129e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.58641e-01\tAbsError: 6.20755e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.81490e-01\tAbsError: 6.20537e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 7.46905e+00\tAbsError: 4.77533e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60419e-02\tAbsError: 5.00000e+00\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 1.87518e-03\tAbsError: 6.55472e+11\n", + " Region: \"zone_1\"\tRelError: 1.02856e-03\tAbsError: 5.24826e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02839e-03\tAbsError: 2.39140e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69142e-07\tAbsError: 5.24587e-05\n", + " Region: \"zone_3\"\tRelError: 8.46623e-04\tAbsError: 6.55472e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.00491e-06\tAbsError: 3.26525e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.72789e-06\tAbsError: 3.28947e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.33721e-04\tAbsError: 2.40888e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69169e-07\tAbsError: 5.24682e-05\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 2.62823e-01\tAbsError: 7.43525e+13\n", + " Region: \"zone_1\"\tRelError: 5.59460e-02\tAbsError: 6.70982e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.59245e-02\tAbsError: 2.90675e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.15203e-05\tAbsError: 6.70691e-03\n", + " Region: \"zone_3\"\tRelError: 2.06877e-01\tAbsError: 7.43525e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.57319e-04\tAbsError: 3.71337e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.52000e-04\tAbsError: 3.72187e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05246e-01\tAbsError: 2.92639e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.15236e-05\tAbsError: 6.70813e-03\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 3.30852e+00\tAbsError: 3.39533e+14\n", + " Region: \"zone_1\"\tRelError: 1.64470e+00\tAbsError: 4.43539e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64456e+00\tAbsError: 1.83296e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39519e-04\tAbsError: 4.43355e-02\n", + " Region: \"zone_3\"\tRelError: 1.66382e+00\tAbsError: 3.39533e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.62183e-03\tAbsError: 1.69324e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.42117e-03\tAbsError: 1.70209e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65364e+00\tAbsError: 1.85161e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39539e-04\tAbsError: 4.43433e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 5.73056e+01\tAbsError: 3.89513e+15\n", + " Region: \"zone_1\"\tRelError: 1.19764e+00\tAbsError: 4.41620e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19624e+00\tAbsError: 1.82478e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40598e-03\tAbsError: 4.41438e-01\n", + " Region: \"zone_3\"\tRelError: 5.61079e+01\tAbsError: 3.89513e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.90346e-02\tAbsError: 1.94161e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.59988e-02\tAbsError: 1.95352e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.60015e+01\tAbsError: 1.83653e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40619e-03\tAbsError: 4.41516e-01\n", + "Iteration: 45\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.51767e-03\tAbsError: 5.30104e+11\n", + " Region: \"zone_1\"\tRelError: 8.32525e-04\tAbsError: 4.24446e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.32388e-04\tAbsError: 1.93401e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36791e-07\tAbsError: 4.24252e-05\n", + " Region: \"zone_3\"\tRelError: 6.85149e-04\tAbsError: 5.30104e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.85640e-06\tAbsError: 2.64072e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.44110e-06\tAbsError: 2.66032e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.74715e-04\tAbsError: 1.94814e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36813e-07\tAbsError: 4.24329e-05\n", + " Device: \"device\"\tRelError: 5.34472e+00\tAbsError: 1.32112e+17\n", + " Region: \"zone_1\"\tRelError: 5.68164e-01\tAbsError: 5.03861e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.52379e-01\tAbsError: 3.86104e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57846e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 4.77656e+00\tAbsError: 1.32112e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.18850e-01\tAbsError: 6.62426e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.47971e-01\tAbsError: 6.58695e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.99395e+00\tAbsError: 3.88591e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57857e-02\tAbsError: 5.00000e+00\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 1.90137e-01\tAbsError: 5.98109e+13\n", + " Region: \"zone_1\"\tRelError: 4.71223e-02\tAbsError: 5.39647e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.71049e-02\tAbsError: 2.33820e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73077e-05\tAbsError: 5.39413e-03\n", + " Region: \"zone_3\"\tRelError: 1.43014e-01\tAbsError: 5.98109e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.08889e-04\tAbsError: 2.98711e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.84982e-04\tAbsError: 2.99398e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41703e-01\tAbsError: 2.35400e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73104e-05\tAbsError: 5.39511e-03\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 9.01557e+00\tAbsError: 2.68514e+14\n", + " Region: \"zone_1\"\tRelError: 4.50394e+00\tAbsError: 3.40367e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.50383e+00\tAbsError: 1.43520e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07053e-04\tAbsError: 3.40223e-02\n", + " Region: \"zone_3\"\tRelError: 4.51164e+00\tAbsError: 2.68514e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.54993e-03\tAbsError: 1.33907e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.15260e-03\tAbsError: 1.34606e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.50383e+00\tAbsError: 1.44995e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07068e-04\tAbsError: 3.40283e-02\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 4.56061e+01\tAbsError: 3.13241e+15\n", + " Region: \"zone_1\"\tRelError: 2.62544e+01\tAbsError: 3.48679e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.62533e+01\tAbsError: 1.45989e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10885e-03\tAbsError: 3.48533e-01\n", + " Region: \"zone_3\"\tRelError: 1.93517e+01\tAbsError: 3.13241e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.79596e-02\tAbsError: 1.56185e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.32259e-02\tAbsError: 1.57056e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92694e+01\tAbsError: 1.46924e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10902e-03\tAbsError: 3.48595e-01\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 1.22665e-03\tAbsError: 4.28714e+11\n", + " Region: \"zone_1\"\tRelError: 6.72839e-04\tAbsError: 3.43264e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.72729e-04\tAbsError: 1.56410e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10628e-07\tAbsError: 3.43108e-05\n", + " Region: \"zone_3\"\tRelError: 5.53807e-04\tAbsError: 4.28714e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.92754e-06\tAbsError: 2.13565e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.40040e-06\tAbsError: 2.15149e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.45368e-04\tAbsError: 1.57553e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10646e-07\tAbsError: 3.43170e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.15441e+01\tAbsError: 4.87209e+16\n", + " Region: \"zone_1\"\tRelError: 3.30697e-01\tAbsError: 2.19677e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.23926e-01\tAbsError: 2.83795e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.77091e-03\tAbsError: 2.16839e+00\n", + " Region: \"zone_3\"\tRelError: 1.12134e+01\tAbsError: 4.87209e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.39759e-01\tAbsError: 2.42466e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.07799e-01\tAbsError: 2.44743e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09590e+01\tAbsError: 2.84079e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.77211e-03\tAbsError: 2.16878e+00\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 1.66208e-01\tAbsError: 4.81059e+13\n", + " Region: \"zone_1\"\tRelError: 3.65176e-02\tAbsError: 4.34080e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.65037e-02\tAbsError: 1.88063e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39221e-05\tAbsError: 4.33892e-03\n", + " Region: \"zone_3\"\tRelError: 1.29690e-01\tAbsError: 4.81059e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89904e-04\tAbsError: 2.40254e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.51146e-04\tAbsError: 2.40805e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28635e-01\tAbsError: 1.89333e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39243e-05\tAbsError: 4.33970e-03\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 2.82478e+00\tAbsError: 2.06119e+14\n", + " Region: \"zone_1\"\tRelError: 1.40417e+00\tAbsError: 2.65217e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40409e+00\tAbsError: 1.10496e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.34237e-05\tAbsError: 2.65106e-02\n", + " Region: \"zone_3\"\tRelError: 1.42061e+00\tAbsError: 2.06119e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.77234e-03\tAbsError: 1.02790e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.23997e-03\tAbsError: 1.03329e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41451e+00\tAbsError: 1.11625e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.34357e-05\tAbsError: 2.65153e-02\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 1.07531e+01\tAbsError: 2.48956e+15\n", + " Region: \"zone_1\"\tRelError: 9.55276e-01\tAbsError: 2.77054e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.54394e-01\tAbsError: 1.15934e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.81848e-04\tAbsError: 2.76938e-01\n", + " Region: \"zone_3\"\tRelError: 9.79778e+00\tAbsError: 2.48956e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.05956e-02\tAbsError: 1.24153e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.49101e-02\tAbsError: 1.24803e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.73139e+00\tAbsError: 1.16671e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.81980e-04\tAbsError: 2.76987e-01\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 9.92524e-04\tAbsError: 3.46716e+11\n", + " Region: \"zone_1\"\tRelError: 5.44445e-04\tAbsError: 2.77610e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.44356e-04\tAbsError: 1.26495e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.94689e-08\tAbsError: 2.77484e-05\n", + " Region: \"zone_3\"\tRelError: 4.48078e-04\tAbsError: 3.46716e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.17635e-06\tAbsError: 1.72717e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.55877e-06\tAbsError: 1.73999e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.41254e-04\tAbsError: 1.27419e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.94830e-08\tAbsError: 2.77534e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.63568e+00\tAbsError: 3.37216e+16\n", + " Region: \"zone_1\"\tRelError: 1.64937e-01\tAbsError: 4.55597e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63595e-01\tAbsError: 2.30942e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34179e-03\tAbsError: 4.32503e-01\n", + " Region: \"zone_3\"\tRelError: 1.47074e+00\tAbsError: 3.37216e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46370e-02\tAbsError: 1.66780e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.00262e-02\tAbsError: 1.70436e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39474e+00\tAbsError: 2.31518e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34190e-03\tAbsError: 4.32550e-01\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 1.24876e-01\tAbsError: 3.86942e+13\n", + " Region: \"zone_1\"\tRelError: 3.02614e-02\tAbsError: 3.49138e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.02502e-02\tAbsError: 1.51269e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11977e-05\tAbsError: 3.48987e-03\n", + " Region: \"zone_3\"\tRelError: 9.46142e-02\tAbsError: 3.86942e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.93956e-04\tAbsError: 1.93249e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.43191e-04\tAbsError: 1.93693e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.37658e-02\tAbsError: 1.52291e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11994e-05\tAbsError: 3.49050e-03\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 2.38626e+01\tAbsError: 1.60784e+14\n", + " Region: \"zone_1\"\tRelError: 1.19290e+01\tAbsError: 2.04979e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19289e+01\tAbsError: 8.59528e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.44716e-05\tAbsError: 2.04893e-02\n", + " Region: \"zone_3\"\tRelError: 1.19336e+01\tAbsError: 1.60784e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14212e-03\tAbsError: 8.01819e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.50143e-03\tAbsError: 8.06016e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19289e+01\tAbsError: 8.68337e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.44809e-05\tAbsError: 2.04929e-02\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 8.96122e+00\tAbsError: 1.98282e+15\n", + " Region: \"zone_1\"\tRelError: 3.18374e+00\tAbsError: 2.19507e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.18304e+00\tAbsError: 9.22228e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.98191e-04\tAbsError: 2.19415e-01\n", + " Region: \"zone_3\"\tRelError: 5.77748e+00\tAbsError: 1.98282e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.39492e-02\tAbsError: 9.88916e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.72774e-02\tAbsError: 9.93907e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.72556e+00\tAbsError: 9.28083e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.98296e-04\tAbsError: 2.19454e-01\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 8.02368e-04\tAbsError: 2.80402e+11\n", + " Region: \"zone_1\"\tRelError: 4.40119e-04\tAbsError: 2.24513e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.40046e-04\tAbsError: 1.02301e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.23567e-08\tAbsError: 2.24411e-05\n", + " Region: \"zone_3\"\tRelError: 3.62250e-04\tAbsError: 2.80402e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.56882e-06\tAbsError: 1.39683e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.87810e-06\tAbsError: 1.40719e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.56730e-04\tAbsError: 1.03048e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.23681e-08\tAbsError: 2.24452e-05\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 1.06016e-01\tAbsError: 3.11231e+13\n", + " Region: \"zone_1\"\tRelError: 2.37622e-02\tAbsError: 2.80829e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.37532e-02\tAbsError: 1.21670e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.00692e-06\tAbsError: 2.80707e-03\n", + " Region: \"zone_3\"\tRelError: 8.22536e-02\tAbsError: 3.11231e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.16931e-04\tAbsError: 1.55437e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.56548e-04\tAbsError: 1.55794e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.15711e-02\tAbsError: 1.22493e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.00831e-06\tAbsError: 2.80758e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.60339e+00\tAbsError: 4.57191e+15\n", + " Region: \"zone_1\"\tRelError: 1.67368e-01\tAbsError: 6.38416e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65358e-01\tAbsError: 9.63555e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00966e-03\tAbsError: 6.38320e-01\n", + " Region: \"zone_3\"\tRelError: 1.43603e+00\tAbsError: 4.57191e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.29973e-02\tAbsError: 2.30830e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.06745e-02\tAbsError: 2.26361e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34035e+00\tAbsError: 1.58258e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.01003e-03\tAbsError: 6.38443e-01\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 2.25745e+00\tAbsError: 1.24278e+14\n", + " Region: \"zone_1\"\tRelError: 1.12145e+00\tAbsError: 1.59186e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12140e+00\tAbsError: 6.65011e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.00711e-05\tAbsError: 1.59120e-02\n", + " Region: \"zone_3\"\tRelError: 1.13601e+00\tAbsError: 1.24278e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.66507e-03\tAbsError: 6.19764e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.94416e-03\tAbsError: 6.23011e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13235e+00\tAbsError: 6.71812e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.00783e-05\tAbsError: 1.59148e-02\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 1.27597e+01\tAbsError: 1.57582e+15\n", + " Region: \"zone_1\"\tRelError: 7.17382e-01\tAbsError: 1.74215e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.16827e-01\tAbsError: 7.32304e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.54437e-04\tAbsError: 1.74142e-01\n", + " Region: \"zone_3\"\tRelError: 1.20423e+01\tAbsError: 1.57582e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.91832e-02\tAbsError: 7.85985e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.18767e-02\tAbsError: 7.89839e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20007e+01\tAbsError: 7.36944e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.54521e-04\tAbsError: 1.74173e-01\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 6.49114e-04\tAbsError: 2.26771e+11\n", + " Region: \"zone_1\"\tRelError: 3.56066e-04\tAbsError: 1.81572e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.56008e-04\tAbsError: 8.27343e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.85175e-08\tAbsError: 1.81489e-05\n", + " Region: \"zone_3\"\tRelError: 2.93047e-04\tAbsError: 2.26771e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07750e-06\tAbsError: 1.12966e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.32762e-06\tAbsError: 1.13805e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88584e-04\tAbsError: 8.33389e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.85267e-08\tAbsError: 1.81522e-05\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 8.16051e-02\tAbsError: 2.50334e+13\n", + " Region: \"zone_1\"\tRelError: 1.94851e-02\tAbsError: 2.25880e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.94778e-02\tAbsError: 9.78645e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.24451e-06\tAbsError: 2.25782e-03\n", + " Region: \"zone_3\"\tRelError: 6.21200e-02\tAbsError: 2.50334e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.54884e-04\tAbsError: 1.25024e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.86740e-04\tAbsError: 1.25311e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.15711e-02\tAbsError: 9.85258e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.24564e-06\tAbsError: 2.25823e-03\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 1.39477e+01\tAbsError: 9.65367e+13\n", + " Region: \"zone_1\"\tRelError: 6.70332e+00\tAbsError: 1.23305e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.70328e+00\tAbsError: 5.16156e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.87832e-05\tAbsError: 1.23253e-02\n", + " Region: \"zone_3\"\tRelError: 7.24437e+00\tAbsError: 9.65367e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28927e-03\tAbsError: 4.81422e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.50498e-03\tAbsError: 4.83944e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.24154e+00\tAbsError: 5.21441e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.87888e-05\tAbsError: 1.23275e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.78042e+00\tAbsError: 2.07576e+15\n", + " Region: \"zone_1\"\tRelError: 8.55809e-02\tAbsError: 4.14138e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.54510e-02\tAbsError: 1.72298e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29860e-04\tAbsError: 4.12415e-02\n", + " Region: \"zone_3\"\tRelError: 1.69484e+00\tAbsError: 2.07576e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18586e-02\tAbsError: 1.01724e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.96503e-03\tAbsError: 1.05852e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67889e+00\tAbsError: 1.75114e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.30036e-04\tAbsError: 4.12981e-02\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 3.22221e+00\tAbsError: 1.25144e+15\n", + " Region: \"zone_1\"\tRelError: 1.32421e+00\tAbsError: 1.38183e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32377e+00\tAbsError: 5.81477e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.39573e-04\tAbsError: 1.38125e-01\n", + " Region: \"zone_3\"\tRelError: 1.89800e+00\tAbsError: 1.25144e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.51014e-02\tAbsError: 6.24190e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.72028e-02\tAbsError: 6.27246e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86525e+00\tAbsError: 5.85159e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.39639e-04\tAbsError: 1.38150e-01\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 5.24824e-04\tAbsError: 1.83398e+11\n", + " Region: \"zone_1\"\tRelError: 2.87881e-04\tAbsError: 1.46844e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.87833e-04\tAbsError: 6.69101e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73252e-08\tAbsError: 1.46777e-05\n", + " Region: \"zone_3\"\tRelError: 2.36943e-04\tAbsError: 1.83398e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68015e-06\tAbsError: 9.13600e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.88243e-06\tAbsError: 9.20378e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.33334e-04\tAbsError: 6.73991e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73326e-08\tAbsError: 1.46803e-05\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 6.79770e-02\tAbsError: 2.01355e+13\n", + " Region: \"zone_1\"\tRelError: 1.54309e-02\tAbsError: 1.81684e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54251e-02\tAbsError: 7.87161e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.82709e-06\tAbsError: 1.81606e-03\n", + " Region: \"zone_3\"\tRelError: 5.25460e-02\tAbsError: 2.01355e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05036e-04\tAbsError: 1.00562e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.30665e-04\tAbsError: 1.00793e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.21045e-02\tAbsError: 7.92480e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.82799e-06\tAbsError: 1.81638e-03\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 1.68957e+00\tAbsError: 7.47798e+13\n", + " Region: \"zone_1\"\tRelError: 8.38611e-01\tAbsError: 9.56536e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.38580e-01\tAbsError: 3.99950e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.00870e-05\tAbsError: 9.56136e-03\n", + " Region: \"zone_3\"\tRelError: 8.50964e-01\tAbsError: 7.47798e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00061e-03\tAbsError: 3.72922e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.16806e-03\tAbsError: 3.74876e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.48766e-01\tAbsError: 4.04043e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.00914e-05\tAbsError: 9.56304e-03\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 8.39076e+00\tAbsError: 9.94105e+14\n", + " Region: \"zone_1\"\tRelError: 5.12915e-01\tAbsError: 1.09641e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.12566e-01\tAbsError: 4.61615e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.48898e-04\tAbsError: 1.09594e-01\n", + " Region: \"zone_3\"\tRelError: 7.87785e+00\tAbsError: 9.94105e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.20523e-02\tAbsError: 4.95841e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.37405e-02\tAbsError: 4.98264e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.85170e+00\tAbsError: 4.64536e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.48950e-04\tAbsError: 1.09614e-01\n", "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.53154e-04\tAbsError: 8.06031e+12\n", - " Region: \"zone_1\"\tRelError: 5.59360e-05\tAbsError: 5.13628e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.44781e-05\tAbsError: 3.07943e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.45792e-06\tAbsError: 5.13320e-04\n", - " Region: \"zone_3\"\tRelError: 9.72179e-05\tAbsError: 8.06031e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01846e-05\tAbsError: 4.02722e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.01144e-05\tAbsError: 4.03309e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 6.54610e-05\tAbsError: 3.09481e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.45792e-06\tAbsError: 5.13320e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.91173e+00\tAbsError: 9.44487e+14\n", - " Region: \"zone_1\"\tRelError: 9.30696e-01\tAbsError: 3.44982e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.30671e-01\tAbsError: 2.57987e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.50635e-05\tAbsError: 8.69950e-03\n", - " Region: \"zone_3\"\tRelError: 9.81030e-01\tAbsError: 9.44487e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.64864e-01\tAbsError: 4.17722e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.10409e-01\tAbsError: 5.26765e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.05732e-01\tAbsError: 2.57987e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.50635e-05\tAbsError: 8.69950e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.84860e-05\tAbsError: 3.70987e+10\n", - " Region: \"zone_1\"\tRelError: 3.74711e-06\tAbsError: 5.87951e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.73032e-06\tAbsError: 3.58594e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67880e-08\tAbsError: 5.84365e-06\n", - " Region: \"zone_3\"\tRelError: 2.47389e-05\tAbsError: 3.70987e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96764e-06\tAbsError: 1.24118e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.94133e-06\tAbsError: 2.46869e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88131e-05\tAbsError: 3.59119e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67950e-08\tAbsError: 5.84625e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:13\u001b[0m.\u001b[1;36m144\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.4\u001b[0m \n", + " Device: \"device\"\tRelError: 2.55615e-01\tAbsError: 5.79273e+14\n", + " Region: \"zone_1\"\tRelError: 1.42008e-02\tAbsError: 1.09474e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38563e-02\tAbsError: 1.42424e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.44544e-04\tAbsError: 1.09460e-01\n", + " Region: \"zone_3\"\tRelError: 2.41415e-01\tAbsError: 5.79273e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32476e-02\tAbsError: 2.90039e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.13030e-03\tAbsError: 2.89234e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18692e-01\tAbsError: 2.72592e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.44741e-04\tAbsError: 1.09524e-01\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 4.24534e-04\tAbsError: 1.48320e+11\n", + " Region: \"zone_1\"\tRelError: 2.32874e-04\tAbsError: 1.18758e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32835e-04\tAbsError: 5.41126e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.82736e-08\tAbsError: 1.18704e-05\n", + " Region: \"zone_3\"\tRelError: 1.91660e-04\tAbsError: 1.48320e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.35880e-06\tAbsError: 7.38861e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.52239e-06\tAbsError: 7.44343e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88741e-04\tAbsError: 5.45081e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.82796e-08\tAbsError: 1.18725e-05\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 5.31464e-02\tAbsError: 1.61956e+13\n", + " Region: \"zone_1\"\tRelError: 1.25675e-02\tAbsError: 1.46136e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25628e-02\tAbsError: 6.33144e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.68692e-06\tAbsError: 1.46072e-03\n", + " Region: \"zone_3\"\tRelError: 4.05789e-02\tAbsError: 1.61956e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.64903e-04\tAbsError: 8.08853e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.85514e-04\tAbsError: 8.10710e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.02238e-02\tAbsError: 6.37422e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.68765e-06\tAbsError: 1.46099e-03\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 3.78798e+00\tAbsError: 5.80128e+13\n", + " Region: \"zone_1\"\tRelError: 1.86011e+00\tAbsError: 7.41437e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86009e+00\tAbsError: 3.10204e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.33207e-05\tAbsError: 7.41127e-03\n", + " Region: \"zone_3\"\tRelError: 1.92786e+00\tAbsError: 5.80128e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.75383e-04\tAbsError: 2.89306e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.05050e-04\tAbsError: 2.90822e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92616e+00\tAbsError: 3.13379e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.33241e-05\tAbsError: 7.41257e-03\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 1.60715e+00\tAbsError: 7.88796e+14\n", + " Region: \"zone_1\"\tRelError: 6.86314e-01\tAbsError: 8.69935e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.86038e-01\tAbsError: 3.66334e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.76753e-04\tAbsError: 8.69568e-02\n", + " Region: \"zone_3\"\tRelError: 9.20836e-01\tAbsError: 7.88796e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.51777e-03\tAbsError: 3.93437e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.08435e-02\tAbsError: 3.95359e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.00198e-01\tAbsError: 3.68651e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.76795e-04\tAbsError: 8.69724e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 6.54613e+00\tAbsError: 6.04297e+14\n", + " Region: \"zone_1\"\tRelError: 5.78119e-02\tAbsError: 3.20795e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.77110e-02\tAbsError: 3.03510e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00891e-04\tAbsError: 3.20492e-02\n", + " Region: \"zone_3\"\tRelError: 6.48832e+00\tAbsError: 6.04297e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.85592e-03\tAbsError: 2.97542e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.99395e-03\tAbsError: 3.06756e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.48137e+00\tAbsError: 3.07841e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00967e-04\tAbsError: 3.20741e-02\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 3.43277e-04\tAbsError: 1.19952e+11\n", + " Region: \"zone_1\"\tRelError: 1.88298e-04\tAbsError: 9.60436e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88267e-04\tAbsError: 4.37628e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.09532e-08\tAbsError: 9.59998e-06\n", + " Region: \"zone_3\"\tRelError: 1.54979e-04\tAbsError: 1.19952e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09891e-06\tAbsError: 5.97543e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.23121e-06\tAbsError: 6.01976e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52618e-04\tAbsError: 4.40826e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.09581e-08\tAbsError: 9.60173e-06\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 4.37285e-02\tAbsError: 1.30269e+13\n", + " Region: \"zone_1\"\tRelError: 1.00075e-02\tAbsError: 1.17542e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00037e-02\tAbsError: 5.09262e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.76989e-06\tAbsError: 1.17491e-03\n", + " Region: \"zone_3\"\tRelError: 3.37210e-02\tAbsError: 1.30269e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32648e-04\tAbsError: 6.50596e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.49228e-04\tAbsError: 6.52089e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.34354e-02\tAbsError: 5.12704e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77047e-06\tAbsError: 1.17513e-03\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 1.19077e+00\tAbsError: 4.49685e+13\n", + " Region: \"zone_1\"\tRelError: 5.90526e-01\tAbsError: 5.74970e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.90507e-01\tAbsError: 2.40476e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80851e-05\tAbsError: 5.74730e-03\n", + " Region: \"zone_3\"\tRelError: 6.00242e-01\tAbsError: 4.49685e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.01449e-04\tAbsError: 2.24255e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.02054e-04\tAbsError: 2.25430e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.98921e-01\tAbsError: 2.42937e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80877e-05\tAbsError: 5.74831e-03\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 2.53368e+00\tAbsError: 6.26335e+14\n", + " Region: \"zone_1\"\tRelError: 3.52830e-01\tAbsError: 6.90216e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52610e-01\tAbsError: 2.90766e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19628e-04\tAbsError: 6.89925e-02\n", + " Region: \"zone_3\"\tRelError: 2.18085e+00\tAbsError: 6.26335e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.57951e-03\tAbsError: 3.12405e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.63969e-03\tAbsError: 3.13930e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16441e+00\tAbsError: 2.92604e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19661e-04\tAbsError: 6.90049e-02\n", + "Iteration: 10\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 8.16898e-01\tAbsError: 2.80148e+14\n", + " Region: \"zone_1\"\tRelError: 3.02891e-02\tAbsError: 3.78428e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.01718e-02\tAbsError: 1.14906e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17263e-04\tAbsError: 3.78313e-02\n", + " Region: \"zone_3\"\tRelError: 7.86609e-01\tAbsError: 2.80148e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.35817e-03\tAbsError: 1.38020e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.46930e-03\tAbsError: 1.42128e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.77664e-01\tAbsError: 1.15465e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17280e-04\tAbsError: 3.78384e-02\n", + " Device: \"device\"\tRelError: 2.77659e-04\tAbsError: 9.70095e+10\n", + " Region: \"zone_1\"\tRelError: 1.52306e-04\tAbsError: 7.76739e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52281e-04\tAbsError: 3.53926e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.50330e-08\tAbsError: 7.76385e-06\n", + " Region: \"zone_3\"\tRelError: 1.25352e-04\tAbsError: 9.70095e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.88725e-07\tAbsError: 4.83255e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.95725e-07\tAbsError: 4.86840e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23443e-04\tAbsError: 3.56512e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.50369e-08\tAbsError: 7.76526e-06\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 3.45334e-02\tAbsError: 1.04779e+13\n", + " Region: \"zone_1\"\tRelError: 8.11466e-03\tAbsError: 9.45439e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.11162e-03\tAbsError: 4.09619e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.03226e-06\tAbsError: 9.45029e-04\n", + " Region: \"zone_3\"\tRelError: 2.64187e-02\tAbsError: 1.04779e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06687e-04\tAbsError: 5.23296e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.20022e-04\tAbsError: 5.24497e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.61890e-02\tAbsError: 4.12386e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.03273e-06\tAbsError: 9.45201e-04\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 1.71278e+00\tAbsError: 3.48721e+13\n", + " Region: \"zone_1\"\tRelError: 8.44652e-01\tAbsError: 4.45770e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.44638e-01\tAbsError: 1.86472e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40210e-05\tAbsError: 4.45583e-03\n", + " Region: \"zone_3\"\tRelError: 8.68128e-01\tAbsError: 3.48721e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.66213e-04\tAbsError: 1.73905e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.44173e-04\tAbsError: 1.74816e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.67103e-01\tAbsError: 1.88381e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40231e-05\tAbsError: 4.45662e-03\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 1.03372e+00\tAbsError: 4.96888e+14\n", + " Region: \"zone_1\"\tRelError: 3.88707e-01\tAbsError: 5.47693e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.88533e-01\tAbsError: 2.30713e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74246e-04\tAbsError: 5.47462e-02\n", + " Region: \"zone_3\"\tRelError: 6.45009e-01\tAbsError: 4.96888e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.99659e-03\tAbsError: 2.47840e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.83247e-03\tAbsError: 2.49049e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.32005e-01\tAbsError: 2.32172e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74272e-04\tAbsError: 5.47561e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 4.03770e+00\tAbsError: 2.60984e+14\n", + " Region: \"zone_1\"\tRelError: 3.20911e-02\tAbsError: 2.19849e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.20230e-02\tAbsError: 1.16456e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.81133e-05\tAbsError: 2.19733e-02\n", + " Region: \"zone_3\"\tRelError: 4.00561e+00\tAbsError: 2.60984e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.36730e-03\tAbsError: 1.26526e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.60141e-03\tAbsError: 1.34458e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.00058e+00\tAbsError: 1.17788e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.81230e-05\tAbsError: 2.19771e-02\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 2.24527e-04\tAbsError: 7.84550e+10\n", + " Region: \"zone_1\"\tRelError: 1.23160e-04\tAbsError: 6.28177e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23140e-04\tAbsError: 2.86232e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.02450e-08\tAbsError: 6.27890e-06\n", + " Region: \"zone_3\"\tRelError: 1.01367e-04\tAbsError: 7.84550e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.18743e-07\tAbsError: 3.90825e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.05278e-07\tAbsError: 3.93725e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.98228e-05\tAbsError: 2.88324e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.02482e-08\tAbsError: 6.28005e-06\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 2.81876e-02\tAbsError: 8.42785e+12\n", + " Region: \"zone_1\"\tRelError: 6.48464e-03\tAbsError: 7.60452e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.48220e-03\tAbsError: 3.29472e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.43896e-06\tAbsError: 7.60122e-04\n", + " Region: \"zone_3\"\tRelError: 2.17029e-02\tAbsError: 8.42785e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.58167e-05\tAbsError: 4.20910e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.65432e-05\tAbsError: 4.21875e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.15181e-02\tAbsError: 3.31699e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.43934e-06\tAbsError: 7.60260e-04\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 7.98550e-01\tAbsError: 2.70365e+13\n", + " Region: \"zone_1\"\tRelError: 3.95736e-01\tAbsError: 3.45648e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.95725e-01\tAbsError: 1.44576e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08720e-05\tAbsError: 3.45504e-03\n", + " Region: \"zone_3\"\tRelError: 4.02814e-01\tAbsError: 2.70365e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61555e-04\tAbsError: 1.34829e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.22024e-04\tAbsError: 1.35536e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.02019e-01\tAbsError: 1.46056e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08735e-05\tAbsError: 3.45565e-03\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 1.25253e+00\tAbsError: 3.94441e+14\n", + " Region: \"zone_1\"\tRelError: 2.35837e-01\tAbsError: 4.34554e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.35698e-01\tAbsError: 1.83099e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38271e-04\tAbsError: 4.34371e-02\n", + " Region: \"zone_3\"\tRelError: 1.01669e+00\tAbsError: 3.94441e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.76898e-03\tAbsError: 1.96741e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.43550e-03\tAbsError: 1.97700e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00635e+00\tAbsError: 1.84256e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38291e-04\tAbsError: 4.34449e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 7.54452e-01\tAbsError: 1.69482e+14\n", + " Region: \"zone_1\"\tRelError: 2.11218e-02\tAbsError: 1.98502e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.10603e-02\tAbsError: 7.51096e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.15052e-05\tAbsError: 1.98427e-02\n", + " Region: \"zone_3\"\tRelError: 7.33330e-01\tAbsError: 1.69482e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.02182e-03\tAbsError: 8.33275e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.34951e-03\tAbsError: 8.61548e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.28897e-01\tAbsError: 7.55101e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.15138e-05\tAbsError: 1.98462e-02\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 1.81600e-04\tAbsError: 6.34494e+10\n", + " Region: \"zone_1\"\tRelError: 9.96142e-05\tAbsError: 5.08029e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 9.95978e-05\tAbsError: 2.31486e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63729e-08\tAbsError: 5.07797e-06\n", + " Region: \"zone_3\"\tRelError: 8.19857e-05\tAbsError: 6.34494e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.81273e-07\tAbsError: 3.16074e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.51257e-07\tAbsError: 3.18419e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.07368e-05\tAbsError: 2.33178e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63755e-08\tAbsError: 5.07890e-06\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 2.24052e-02\tAbsError: 6.77881e+12\n", + " Region: \"zone_1\"\tRelError: 5.24317e-03\tAbsError: 6.11661e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.24121e-03\tAbsError: 2.65007e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.96175e-06\tAbsError: 6.11396e-04\n", + " Region: \"zone_3\"\tRelError: 1.71620e-02\tAbsError: 6.77881e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.90232e-05\tAbsError: 3.38552e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.76503e-05\tAbsError: 3.39329e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70134e-02\tAbsError: 2.66798e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.96205e-06\tAbsError: 6.11507e-04\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 8.96170e-01\tAbsError: 2.09638e+13\n", + " Region: \"zone_1\"\tRelError: 4.42667e-01\tAbsError: 2.67996e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.42658e-01\tAbsError: 1.12101e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.42943e-06\tAbsError: 2.67883e-03\n", + " Region: \"zone_3\"\tRelError: 4.53503e-01\tAbsError: 2.09638e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.80297e-04\tAbsError: 1.04545e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.27168e-04\tAbsError: 1.05093e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.52887e-01\tAbsError: 1.13249e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.43065e-06\tAbsError: 2.67931e-03\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 6.82320e-01\tAbsError: 3.12923e+14\n", + " Region: \"zone_1\"\tRelError: 2.30152e-01\tAbsError: 3.44826e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30043e-01\tAbsError: 1.45279e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09708e-04\tAbsError: 3.44681e-02\n", + " Region: \"zone_3\"\tRelError: 4.52168e-01\tAbsError: 3.12923e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.77722e-03\tAbsError: 1.56081e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.30399e-03\tAbsError: 1.56842e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.43977e-01\tAbsError: 1.46197e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09725e-04\tAbsError: 3.44743e-02\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.51403e+00\tAbsError: 1.35924e+14\n", + " Region: \"zone_1\"\tRelError: 1.76520e-02\tAbsError: 1.36935e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76096e-02\tAbsError: 6.29160e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.24272e-05\tAbsError: 1.36872e-02\n", + " Region: \"zone_3\"\tRelError: 1.49637e+00\tAbsError: 1.35924e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.37100e-03\tAbsError: 6.64540e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.62202e-03\tAbsError: 6.94698e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49334e+00\tAbsError: 6.35957e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.24331e-05\tAbsError: 1.36896e-02\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 1.46856e-04\tAbsError: 5.13138e+10\n", + " Region: \"zone_1\"\tRelError: 8.05550e-05\tAbsError: 4.10861e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.05418e-05\tAbsError: 1.87211e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32413e-08\tAbsError: 4.10674e-06\n", + " Region: \"zone_3\"\tRelError: 6.63005e-05\tAbsError: 5.13138e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.70097e-07\tAbsError: 2.55621e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.26695e-07\tAbsError: 2.57517e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.52904e-05\tAbsError: 1.88579e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32434e-08\tAbsError: 4.10749e-06\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 1.81935e-02\tAbsError: 5.45248e+12\n", + " Region: \"zone_1\"\tRelError: 4.19959e-03\tAbsError: 4.91982e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.19801e-03\tAbsError: 2.13155e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57791e-06\tAbsError: 4.91769e-04\n", + " Region: \"zone_3\"\tRelError: 1.39939e-02\tAbsError: 5.45248e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.55196e-05\tAbsError: 2.72311e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.24591e-05\tAbsError: 2.72936e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38744e-02\tAbsError: 2.14596e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57816e-06\tAbsError: 4.91858e-04\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 5.15892e-01\tAbsError: 1.62543e+13\n", + " Region: \"zone_1\"\tRelError: 2.55525e-01\tAbsError: 2.07796e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.55519e-01\tAbsError: 8.69182e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.53598e-06\tAbsError: 2.07709e-03\n", + " Region: \"zone_3\"\tRelError: 2.60367e-01\tAbsError: 1.62543e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17353e-04\tAbsError: 8.10591e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.53704e-04\tAbsError: 8.14838e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.59889e-01\tAbsError: 8.78078e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.53692e-06\tAbsError: 2.07746e-03\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 7.04966e-01\tAbsError: 2.48364e+14\n", + " Region: \"zone_1\"\tRelError: 1.54467e-01\tAbsError: 2.73601e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54379e-01\tAbsError: 1.15288e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.70549e-05\tAbsError: 2.73485e-02\n", + " Region: \"zone_3\"\tRelError: 5.50500e-01\tAbsError: 2.48364e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.00143e-03\tAbsError: 1.23880e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.42071e-03\tAbsError: 1.24484e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.43990e-01\tAbsError: 1.16017e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.70680e-05\tAbsError: 2.73534e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 5.34145e-01\tAbsError: 9.75578e+13\n", + " Region: \"zone_1\"\tRelError: 1.26033e-02\tAbsError: 1.08675e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25696e-02\tAbsError: 4.46107e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.36717e-05\tAbsError: 1.08630e-02\n", + " Region: \"zone_3\"\tRelError: 5.21542e-01\tAbsError: 9.75578e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07261e-03\tAbsError: 4.79195e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.28701e-03\tAbsError: 4.96383e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.19148e-01\tAbsError: 4.50667e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.36763e-05\tAbsError: 1.08649e-02\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 1.18774e-04\tAbsError: 4.14993e+10\n", + " Region: \"zone_1\"\tRelError: 6.51520e-05\tAbsError: 3.32278e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.51413e-05\tAbsError: 1.51404e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07087e-08\tAbsError: 3.32127e-06\n", + " Region: \"zone_3\"\tRelError: 5.36224e-05\tAbsError: 4.14993e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.80184e-07\tAbsError: 2.06730e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.25957e-07\tAbsError: 2.08263e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.28055e-05\tAbsError: 1.52511e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07104e-08\tAbsError: 3.32187e-06\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 1.45220e-02\tAbsError: 4.38562e+12\n", + " Region: \"zone_1\"\tRelError: 3.38933e-03\tAbsError: 3.95720e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.38806e-03\tAbsError: 1.71449e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26917e-06\tAbsError: 3.95549e-04\n", + " Region: \"zone_3\"\tRelError: 1.11327e-02\tAbsError: 4.38562e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46555e-05\tAbsError: 2.19030e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.02369e-05\tAbsError: 2.19532e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10365e-02\tAbsError: 1.72607e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26937e-06\tAbsError: 3.95621e-04\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 4.99806e-01\tAbsError: 1.26030e+13\n", + " Region: \"zone_1\"\tRelError: 2.47074e-01\tAbsError: 1.61116e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.47069e-01\tAbsError: 6.73932e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.06769e-06\tAbsError: 1.61049e-03\n", + " Region: \"zone_3\"\tRelError: 2.52731e-01\tAbsError: 1.26030e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68515e-04\tAbsError: 6.28503e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96695e-04\tAbsError: 6.31796e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52361e-01\tAbsError: 6.80829e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.06842e-06\tAbsError: 1.61077e-03\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 4.46316e-01\tAbsError: 1.97044e+14\n", + " Region: \"zone_1\"\tRelError: 1.39662e-01\tAbsError: 2.17105e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39592e-01\tAbsError: 9.14754e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.90744e-05\tAbsError: 2.17014e-02\n", + " Region: \"zone_3\"\tRelError: 3.06654e-01\tAbsError: 1.97044e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.37888e-03\tAbsError: 9.82825e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.71075e-03\tAbsError: 9.87618e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.01495e-01\tAbsError: 9.20536e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.90848e-05\tAbsError: 2.17053e-02\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 6.79424e-01\tAbsError: 7.47607e+13\n", + " Region: \"zone_1\"\tRelError: 9.81481e-03\tAbsError: 7.93414e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.79023e-03\tAbsError: 3.48157e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45830e-05\tAbsError: 7.93066e-03\n", + " Region: \"zone_3\"\tRelError: 6.69609e-01\tAbsError: 7.47607e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80312e-04\tAbsError: 3.66530e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.39920e-04\tAbsError: 3.81078e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.67864e-01\tAbsError: 3.51839e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45863e-05\tAbsError: 7.93201e-03\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 9.60525e-05\tAbsError: 3.35619e+10\n", + " Region: \"zone_1\"\tRelError: 5.26880e-05\tAbsError: 2.68725e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.26793e-05\tAbsError: 1.22446e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.66055e-09\tAbsError: 2.68603e-06\n", + " Region: \"zone_3\"\tRelError: 4.33645e-05\tAbsError: 3.35619e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.07468e-07\tAbsError: 1.67190e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.44487e-07\tAbsError: 1.68430e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.27039e-05\tAbsError: 1.23341e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.66191e-09\tAbsError: 2.68652e-06\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 1.17527e-02\tAbsError: 3.52753e+12\n", + " Region: \"zone_1\"\tRelError: 2.71876e-03\tAbsError: 3.18293e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.71774e-03\tAbsError: 1.37903e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02085e-06\tAbsError: 3.18155e-04\n", + " Region: \"zone_3\"\tRelError: 9.03396e-03\tAbsError: 3.52753e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.59188e-05\tAbsError: 1.76175e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.04083e-05\tAbsError: 1.76579e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.95661e-03\tAbsError: 1.38835e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02100e-06\tAbsError: 3.18213e-04\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 3.24710e-01\tAbsError: 9.77189e+12\n", + " Region: \"zone_1\"\tRelError: 1.60774e-01\tAbsError: 1.24923e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60770e-01\tAbsError: 5.22541e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.92931e-06\tAbsError: 1.24871e-03\n", + " Region: \"zone_3\"\tRelError: 1.63937e-01\tAbsError: 9.77189e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.30667e-04\tAbsError: 4.87318e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.52519e-04\tAbsError: 4.89871e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63650e-01\tAbsError: 5.27889e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.92988e-06\tAbsError: 1.24893e-03\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 4.18367e-01\tAbsError: 1.56376e+14\n", + " Region: \"zone_1\"\tRelError: 9.97817e-02\tAbsError: 1.72264e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.97269e-02\tAbsError: 7.25889e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.48107e-05\tAbsError: 1.72192e-02\n", + " Region: \"zone_3\"\tRelError: 3.18585e-01\tAbsError: 1.56376e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88930e-03\tAbsError: 7.79980e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.15314e-03\tAbsError: 7.83783e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.14488e-01\tAbsError: 7.30477e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.48189e-05\tAbsError: 1.72223e-02\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 3.39653e-01\tAbsError: 5.53329e+13\n", + " Region: \"zone_1\"\tRelError: 7.22234e-03\tAbsError: 6.05760e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.20357e-03\tAbsError: 2.56435e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87687e-05\tAbsError: 6.05504e-03\n", + " Region: \"zone_3\"\tRelError: 3.32431e-01\tAbsError: 5.53329e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.93449e-04\tAbsError: 2.71674e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.17488e-04\tAbsError: 2.81655e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.31101e-01\tAbsError: 2.59098e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87713e-05\tAbsError: 6.05608e-03\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 9.40642e-03\tAbsError: 2.83732e+12\n", + " Region: \"zone_1\"\tRelError: 2.19159e-03\tAbsError: 2.56015e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19077e-03\tAbsError: 1.10921e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.21105e-07\tAbsError: 2.55904e-04\n", + " Region: \"zone_3\"\tRelError: 7.21483e-03\tAbsError: 2.83732e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88904e-05\tAbsError: 1.41704e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.25014e-05\tAbsError: 1.42029e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.15261e-03\tAbsError: 1.11670e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.21232e-07\tAbsError: 2.55951e-04\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 2.88922e-01\tAbsError: 1.24070e+14\n", + " Region: \"zone_1\"\tRelError: 8.59722e-02\tAbsError: 1.36692e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.59287e-02\tAbsError: 5.75963e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.34906e-05\tAbsError: 1.36635e-02\n", + " Region: \"zone_3\"\tRelError: 2.02950e-01\tAbsError: 1.24070e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49806e-03\tAbsError: 6.18840e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.70709e-03\tAbsError: 6.21858e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.99701e-01\tAbsError: 5.79603e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.34972e-05\tAbsError: 1.36659e-02\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 2.87959e-01\tAbsError: 7.57672e+12\n", + " Region: \"zone_1\"\tRelError: 1.42409e-01\tAbsError: 9.68606e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42406e-01\tAbsError: 4.05157e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.04662e-06\tAbsError: 9.68201e-04\n", + " Region: \"zone_3\"\tRelError: 1.45550e-01\tAbsError: 7.57672e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01310e-04\tAbsError: 3.77846e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.18252e-04\tAbsError: 3.79826e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45328e-01\tAbsError: 4.09304e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.04706e-06\tAbsError: 9.68372e-04\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:31:58\u001b[0m.\u001b[1;36m937\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:31:58\u001b[0m.\u001b[1;36m959\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.2 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:31:58\u001b[0m.\u001b[1;36m976\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 1.2\u001b[0m \n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", @@ -56954,202 +17247,1112 @@ "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 9.94238e-03\tAbsError: 1.75530e+15\n", - " Region: \"zone_1\"\tRelError: 2.72108e-03\tAbsError: 6.51934e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.53712e-03\tAbsError: 4.37532e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.83960e-04\tAbsError: 6.51496e-02\n", - " Region: \"zone_3\"\tRelError: 7.22130e-03\tAbsError: 1.75530e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.68752e-03\tAbsError: 8.73995e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.71657e-03\tAbsError: 8.81305e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.63317e-03\tAbsError: 4.39323e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.84040e-04\tAbsError: 6.51817e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.22471e-04\tAbsError: 4.45531e+12\n", - " Region: \"zone_1\"\tRelError: 4.99766e-05\tAbsError: 4.36982e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.98529e-05\tAbsError: 1.36252e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.23724e-07\tAbsError: 4.35619e-05\n", - " Region: \"zone_3\"\tRelError: 7.24948e-05\tAbsError: 4.45531e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.55059e-06\tAbsError: 2.20957e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.76525e-06\tAbsError: 2.24574e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 6.00552e-05\tAbsError: 1.36901e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.23756e-07\tAbsError: 4.35755e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.03756e-01\tAbsError: 3.40533e+14\n", - " Region: \"zone_1\"\tRelError: 1.45274e-01\tAbsError: 2.12309e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.45243e-01\tAbsError: 1.05213e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.08557e-05\tAbsError: 1.07096e-02\n", - " Region: \"zone_3\"\tRelError: 3.58482e-01\tAbsError: 3.40533e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11349e-01\tAbsError: 1.63183e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.11582e-01\tAbsError: 1.77350e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.55205e-02\tAbsError: 1.05214e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.08557e-05\tAbsError: 1.07096e-02\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.87618e+01\tAbsError: 8.25603e+15\n", - " Region: \"zone_1\"\tRelError: 2.71120e+01\tAbsError: 4.09561e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.71120e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.29384e-09\tAbsError: 1.83846e-06\n", - " Region: \"zone_3\"\tRelError: 1.64979e+00\tAbsError: 8.25603e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69658e-01\tAbsError: 4.86497e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69634e-01\tAbsError: 3.39106e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10500e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.29480e-09\tAbsError: 1.83875e-06\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.92011e-03\tAbsError: 8.10197e+14\n", - " Region: \"zone_1\"\tRelError: 1.17391e-03\tAbsError: 5.91365e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.15725e-03\tAbsError: 1.80237e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.66570e-05\tAbsError: 5.89563e-03\n", - " Region: \"zone_3\"\tRelError: 2.74620e-03\tAbsError: 8.10197e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.58915e-04\tAbsError: 4.03140e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.69237e-04\tAbsError: 4.07057e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.20139e-03\tAbsError: 1.80976e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.66578e-05\tAbsError: 5.89585e-03\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.18840e-05\tAbsError: 4.54852e+11\n", - " Region: \"zone_1\"\tRelError: 4.72208e-06\tAbsError: 1.92624e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.66726e-06\tAbsError: 1.32255e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.48147e-08\tAbsError: 1.92492e-05\n", - " Region: \"zone_3\"\tRelError: 7.16189e-06\tAbsError: 4.54852e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.67326e-07\tAbsError: 2.25761e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.20704e-07\tAbsError: 2.29091e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.61904e-06\tAbsError: 1.32868e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.48217e-08\tAbsError: 1.92513e-05\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.48050e-01\tAbsError: 5.89756e+13\n", - " Region: \"zone_1\"\tRelError: 7.54406e-02\tAbsError: 5.31011e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.54258e-02\tAbsError: 1.65561e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.48169e-05\tAbsError: 5.14455e-03\n", - " Region: \"zone_3\"\tRelError: 7.26095e-02\tAbsError: 5.89756e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.02125e-02\tAbsError: 3.40063e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.08011e-03\tAbsError: 2.49693e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.30209e-03\tAbsError: 1.66795e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.48169e-05\tAbsError: 5.14455e-03\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.69855e+00\tAbsError: 3.40458e+14\n", - " Region: \"zone_1\"\tRelError: 2.34470e-01\tAbsError: 7.85796e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.34332e-01\tAbsError: 3.07636e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", - " Region: \"zone_3\"\tRelError: 1.46408e+00\tAbsError: 3.40458e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39247e-01\tAbsError: 2.37038e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.31799e-01\tAbsError: 1.03420e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.29010e-02\tAbsError: 3.07639e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.37582e-04\tAbsError: 4.78161e-02\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 3.40807e-01\tAbsError: 4.17989e+13\n", + " Region: \"zone_1\"\tRelError: 5.49507e-03\tAbsError: 4.50530e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.48111e-03\tAbsError: 1.94767e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39591e-05\tAbsError: 4.50335e-03\n", + " Region: \"zone_3\"\tRelError: 3.35312e-01\tAbsError: 4.17989e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.41105e-04\tAbsError: 2.05098e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.33714e-04\tAbsError: 2.12890e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.34323e-01\tAbsError: 1.96812e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39611e-05\tAbsError: 4.50412e-03\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31686\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 7.59614e-03\tAbsError: 2.28217e+12\n", + " Region: \"zone_1\"\tRelError: 1.75968e-03\tAbsError: 2.05923e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75902e-03\tAbsError: 8.92178e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.60446e-07\tAbsError: 2.05834e-04\n", + " Region: \"zone_3\"\tRelError: 5.83645e-03\tAbsError: 2.28217e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.32379e-05\tAbsError: 1.13978e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.61425e-05\tAbsError: 1.14239e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.78641e-03\tAbsError: 8.98206e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.60549e-07\tAbsError: 2.05871e-04\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 2.54754e-01\tAbsError: 9.84572e+13\n", + " Region: \"zone_1\"\tRelError: 6.38684e-02\tAbsError: 1.08461e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.38339e-02\tAbsError: 4.57035e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.45097e-05\tAbsError: 1.08415e-02\n", + " Region: \"zone_3\"\tRelError: 1.90886e-01\tAbsError: 9.84572e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18936e-03\tAbsError: 4.91089e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.35542e-03\tAbsError: 4.93483e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88306e-01\tAbsError: 4.59924e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.45148e-05\tAbsError: 1.08435e-02\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 2.00882e-01\tAbsError: 5.87472e+12\n", + " Region: \"zone_1\"\tRelError: 9.94392e-02\tAbsError: 7.51020e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.94368e-02\tAbsError: 3.14144e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36224e-06\tAbsError: 7.50706e-04\n", + " Region: \"zone_3\"\tRelError: 1.01443e-01\tAbsError: 5.87472e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.85544e-05\tAbsError: 2.92968e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.16913e-05\tAbsError: 2.94503e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01270e-01\tAbsError: 3.17359e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36258e-06\tAbsError: 7.50838e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.25854e+04\tAbsError: 4.09783e+18\n", + " Region: \"zone_1\"\tRelError: 1.24319e+03\tAbsError: 6.12760e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24319e+03\tAbsError: 6.12738e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.00409e-09\tAbsError: 2.17229e-06\n", + " Region: \"zone_3\"\tRelError: 1.13422e+04\tAbsError: 4.09783e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.45518e-01\tAbsError: 2.03457e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.30879e-01\tAbsError: 2.06326e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13405e+04\tAbsError: 6.12741e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.00519e-09\tAbsError: 2.17268e-06\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 2.04738e-01\tAbsError: 3.12299e+13\n", + " Region: \"zone_1\"\tRelError: 4.08993e-03\tAbsError: 3.39885e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.07940e-03\tAbsError: 1.45264e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05309e-05\tAbsError: 3.39740e-03\n", + " Region: \"zone_3\"\tRelError: 2.00648e-01\tAbsError: 3.12299e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.32412e-04\tAbsError: 1.53306e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.02595e-04\tAbsError: 1.58993e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.99902e-01\tAbsError: 1.46781e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05323e-05\tAbsError: 3.39798e-03\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 6.09030e-03\tAbsError: 1.83564e+12\n", + " Region: \"zone_1\"\tRelError: 1.41738e-03\tAbsError: 1.65632e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41685e-03\tAbsError: 7.17612e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.31222e-07\tAbsError: 1.65560e-04\n", + " Region: \"zone_3\"\tRelError: 4.67292e-03\tAbsError: 1.83564e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.86910e-05\tAbsError: 9.16766e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.10272e-05\tAbsError: 9.18870e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.63267e-03\tAbsError: 7.22461e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.31304e-07\tAbsError: 1.65590e-04\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 1.85417e-01\tAbsError: 7.81191e+13\n", + " Region: \"zone_1\"\tRelError: 5.33797e-02\tAbsError: 8.60638e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.33523e-02\tAbsError: 3.62642e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.73826e-05\tAbsError: 8.60275e-03\n", + " Region: \"zone_3\"\tRelError: 1.32038e-01\tAbsError: 7.81191e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.43316e-04\tAbsError: 3.89646e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.07496e-03\tAbsError: 3.91545e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29992e-01\tAbsError: 3.64934e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.73867e-05\tAbsError: 8.60429e-03\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 1.68888e-01\tAbsError: 4.55501e+12\n", + " Region: \"zone_1\"\tRelError: 8.35420e-02\tAbsError: 5.82312e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.35402e-02\tAbsError: 2.43574e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83159e-06\tAbsError: 5.82068e-04\n", + " Region: \"zone_3\"\tRelError: 8.53457e-02\tAbsError: 4.55501e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.09065e-05\tAbsError: 2.27155e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.10918e-05\tAbsError: 2.28346e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.52119e-02\tAbsError: 2.46067e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83185e-06\tAbsError: 5.82171e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.86558e+01\tAbsError: 2.79406e+18\n", + " Region: \"zone_1\"\tRelError: 1.32464e+00\tAbsError: 5.05473e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30834e+00\tAbsError: 5.47328e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63028e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.73312e+01\tAbsError: 2.79406e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.10675e-01\tAbsError: 1.39971e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.17008e-01\tAbsError: 1.39434e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58873e+01\tAbsError: 5.50524e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62570e-02\tAbsError: 5.00000e+00\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 1.80653e-01\tAbsError: 2.34834e+13\n", + " Region: \"zone_1\"\tRelError: 3.08632e-03\tAbsError: 2.54306e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.07844e-03\tAbsError: 1.09411e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.87938e-06\tAbsError: 2.54197e-03\n", + " Region: \"zone_3\"\tRelError: 1.77567e-01\tAbsError: 2.34834e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.48702e-04\tAbsError: 1.15256e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.01253e-04\tAbsError: 1.19578e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77009e-01\tAbsError: 1.10556e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.88046e-06\tAbsError: 2.54240e-03\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 4.91131e-03\tAbsError: 1.47647e+12\n", + " Region: \"zone_1\"\tRelError: 1.13876e-03\tAbsError: 1.33224e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13833e-03\tAbsError: 5.77203e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.27282e-07\tAbsError: 1.33166e-04\n", + " Region: \"zone_3\"\tRelError: 3.77255e-03\tAbsError: 1.47647e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50340e-05\tAbsError: 7.37391e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.69131e-05\tAbsError: 7.39083e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74017e-03\tAbsError: 5.81103e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.27349e-07\tAbsError: 1.33190e-04\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 1.57274e-01\tAbsError: 6.19901e+13\n", + " Region: \"zone_1\"\tRelError: 4.06377e-02\tAbsError: 6.82895e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.06160e-02\tAbsError: 2.87758e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17279e-05\tAbsError: 6.82607e-03\n", + " Region: \"zone_3\"\tRelError: 1.16637e-01\tAbsError: 6.19901e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.48773e-04\tAbsError: 3.09197e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.53310e-04\tAbsError: 3.10704e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15013e-01\tAbsError: 2.89577e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17312e-05\tAbsError: 6.82729e-03\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 1.22914e-01\tAbsError: 3.53179e+12\n", + " Region: \"zone_1\"\tRelError: 6.08349e-02\tAbsError: 4.51502e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.08335e-02\tAbsError: 1.88859e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42014e-06\tAbsError: 4.51313e-04\n", + " Region: \"zone_3\"\tRelError: 6.20791e-02\tAbsError: 3.53179e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.72254e-05\tAbsError: 1.76128e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.51231e-05\tAbsError: 1.77051e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.19754e-02\tAbsError: 1.90791e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42035e-06\tAbsError: 4.51392e-04\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 1.19836e-01\tAbsError: 1.75969e+13\n", + " Region: \"zone_1\"\tRelError: 2.30744e-03\tAbsError: 1.91138e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30152e-03\tAbsError: 8.19353e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.92217e-06\tAbsError: 1.91056e-03\n", + " Region: \"zone_3\"\tRelError: 1.17528e-01\tAbsError: 1.75969e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.86865e-04\tAbsError: 8.63770e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.26409e-04\tAbsError: 8.95921e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17109e-01\tAbsError: 8.27918e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.92298e-06\tAbsError: 1.91089e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.98108e+02\tAbsError: 6.99872e+17\n", + " Region: \"zone_1\"\tRelError: 1.87460e+02\tAbsError: 5.04676e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87444e+02\tAbsError: 4.67560e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60413e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.06482e+01\tAbsError: 6.99872e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.78613e-01\tAbsError: 3.50425e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.17750e-01\tAbsError: 3.49447e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 9.53588e+00\tAbsError: 4.73096e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59969e-02\tAbsError: 5.00000e+00\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 3.94217e-03\tAbsError: 1.18758e+12\n", + " Region: \"zone_1\"\tRelError: 9.16786e-04\tAbsError: 1.07157e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.16442e-04\tAbsError: 4.64266e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.43680e-07\tAbsError: 1.07111e-04\n", + " Region: \"zone_3\"\tRelError: 3.02538e-03\tAbsError: 1.18758e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.20923e-05\tAbsError: 5.93111e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.36038e-05\tAbsError: 5.94472e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.99934e-03\tAbsError: 4.67404e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.43733e-07\tAbsError: 1.07130e-04\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 1.18234e-01\tAbsError: 4.91861e+13\n", + " Region: \"zone_1\"\tRelError: 3.33181e-02\tAbsError: 5.41873e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.33009e-02\tAbsError: 2.28328e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72406e-05\tAbsError: 5.41644e-03\n", + " Region: \"zone_3\"\tRelError: 8.49158e-02\tAbsError: 4.91861e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.93973e-04\tAbsError: 2.45332e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.76871e-04\tAbsError: 2.46529e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.36278e-02\tAbsError: 2.29771e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72432e-05\tAbsError: 5.41742e-03\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 1.00063e-01\tAbsError: 2.73841e+12\n", + " Region: \"zone_1\"\tRelError: 4.95039e-02\tAbsError: 3.50077e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.95028e-02\tAbsError: 1.46433e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10112e-06\tAbsError: 3.49931e-04\n", + " Region: \"zone_3\"\tRelError: 5.05594e-02\tAbsError: 2.73841e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.66162e-05\tAbsError: 1.36563e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.27395e-05\tAbsError: 1.37278e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.04789e-02\tAbsError: 1.47932e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10128e-06\tAbsError: 3.49992e-04\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 9.84725e-02\tAbsError: 1.32126e+13\n", + " Region: \"zone_1\"\tRelError: 1.73576e-03\tAbsError: 1.43287e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73132e-03\tAbsError: 6.15516e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.43958e-06\tAbsError: 1.43226e-03\n", + " Region: \"zone_3\"\tRelError: 9.67367e-02\tAbsError: 1.32126e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.40088e-04\tAbsError: 6.48520e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.69737e-04\tAbsError: 6.72744e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.64225e-02\tAbsError: 6.21958e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.44019e-06\tAbsError: 1.43250e-03\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 3.17613e-03\tAbsError: 9.55219e+11\n", + " Region: \"zone_1\"\tRelError: 7.36863e-04\tAbsError: 8.61905e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.36587e-04\tAbsError: 3.73427e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.76435e-07\tAbsError: 8.61531e-05\n", + " Region: \"zone_3\"\tRelError: 2.43926e-03\tAbsError: 9.55219e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.72638e-06\tAbsError: 4.77062e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09421e-05\tAbsError: 4.78157e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41832e-03\tAbsError: 3.75951e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.76477e-07\tAbsError: 8.61688e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.53243e+00\tAbsError: 1.08154e+17\n", + " Region: \"zone_1\"\tRelError: 9.72978e-01\tAbsError: 5.03759e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 9.57204e-01\tAbsError: 3.75939e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57735e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 4.55945e+00\tAbsError: 1.08154e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.89318e-01\tAbsError: 5.39028e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.63539e-01\tAbsError: 5.42513e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.79085e+00\tAbsError: 3.80444e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57450e-02\tAbsError: 5.00000e+00\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 9.78547e-02\tAbsError: 3.90299e+13\n", + " Region: \"zone_1\"\tRelError: 2.57576e-02\tAbsError: 4.29965e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57440e-02\tAbsError: 1.81178e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36803e-05\tAbsError: 4.29783e-03\n", + " Region: \"zone_3\"\tRelError: 7.20971e-02\tAbsError: 3.90299e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.71415e-04\tAbsError: 1.94675e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.37225e-04\tAbsError: 1.95624e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.10748e-02\tAbsError: 1.82323e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36823e-05\tAbsError: 4.29861e-03\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 7.46923e-02\tAbsError: 2.12326e+12\n", + " Region: \"zone_1\"\tRelError: 3.69647e-02\tAbsError: 2.71436e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.69638e-02\tAbsError: 1.13539e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.53768e-07\tAbsError: 2.71323e-04\n", + " Region: \"zone_3\"\tRelError: 3.77276e-02\tAbsError: 2.12326e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.83911e-05\tAbsError: 1.05886e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.31390e-05\tAbsError: 1.06440e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.76652e-02\tAbsError: 1.14701e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.53892e-07\tAbsError: 2.71370e-04\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 6.89771e-02\tAbsError: 9.90969e+12\n", + " Region: \"zone_1\"\tRelError: 1.30016e-03\tAbsError: 1.07570e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29683e-03\tAbsError: 4.61553e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.33292e-06\tAbsError: 1.07524e-03\n", + " Region: \"zone_3\"\tRelError: 6.76769e-02\tAbsError: 9.90969e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05157e-04\tAbsError: 4.86421e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.27422e-04\tAbsError: 5.04548e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.74410e-02\tAbsError: 4.66380e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.33338e-06\tAbsError: 1.07542e-03\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 2.55125e-03\tAbsError: 7.68319e+11\n", + " Region: \"zone_1\"\tRelError: 5.93038e-04\tAbsError: 6.93263e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.92816e-04\tAbsError: 3.00362e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.22347e-07\tAbsError: 6.92963e-05\n", + " Region: \"zone_3\"\tRelError: 1.95822e-03\tAbsError: 7.68319e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.82327e-06\tAbsError: 3.83719e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.80111e-06\tAbsError: 3.84600e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.94137e-03\tAbsError: 3.02392e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.22381e-07\tAbsError: 6.93088e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.12610e+01\tAbsError: 1.97297e+17\n", + " Region: \"zone_1\"\tRelError: 1.23879e+01\tAbsError: 5.02838e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23724e+01\tAbsError: 2.83764e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55025e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.88731e+01\tAbsError: 1.97297e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.28279e-01\tAbsError: 9.83589e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.45917e-01\tAbsError: 9.89382e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84834e+01\tAbsError: 2.84516e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55010e-02\tAbsError: 5.00000e+00\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 7.50606e-02\tAbsError: 3.09688e+13\n", + " Region: \"zone_1\"\tRelError: 2.08641e-02\tAbsError: 3.41173e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08532e-02\tAbsError: 1.43760e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08551e-05\tAbsError: 3.41029e-03\n", + " Region: \"zone_3\"\tRelError: 5.41966e-02\tAbsError: 3.09688e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.73994e-04\tAbsError: 1.54468e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.26193e-04\tAbsError: 1.55221e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.33855e-02\tAbsError: 1.44669e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08567e-05\tAbsError: 3.41090e-03\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 5.96377e-02\tAbsError: 1.64629e+12\n", + " Region: \"zone_1\"\tRelError: 2.95066e-02\tAbsError: 2.10461e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.95060e-02\tAbsError: 8.80336e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.61979e-07\tAbsError: 2.10373e-04\n", + " Region: \"zone_3\"\tRelError: 3.01310e-02\tAbsError: 1.64629e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.20132e-05\tAbsError: 8.20994e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.56945e-05\tAbsError: 8.25296e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.00827e-02\tAbsError: 8.89345e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.62074e-07\tAbsError: 2.10410e-04\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 5.44684e-02\tAbsError: 7.43719e+12\n", + " Region: \"zone_1\"\tRelError: 9.76749e-04\tAbsError: 8.06899e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.74249e-04\tAbsError: 3.46447e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.50008e-06\tAbsError: 8.06552e-04\n", + " Region: \"zone_3\"\tRelError: 5.34917e-02\tAbsError: 7.43719e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.88819e-05\tAbsError: 3.65049e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.55835e-05\tAbsError: 3.78669e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.33147e-02\tAbsError: 3.50071e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.50042e-06\tAbsError: 8.06690e-04\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 2.05429e-03\tAbsError: 6.17989e+11\n", + " Region: \"zone_1\"\tRelError: 4.76776e-04\tAbsError: 5.57618e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.76597e-04\tAbsError: 2.41593e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78842e-07\tAbsError: 5.57376e-05\n", + " Region: \"zone_3\"\tRelError: 1.57751e-03\tAbsError: 6.17989e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.29258e-06\tAbsError: 3.08640e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.07909e-06\tAbsError: 3.09348e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56396e-03\tAbsError: 2.43225e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78870e-07\tAbsError: 5.57478e-05\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 6.11647e-02\tAbsError: 2.45739e+13\n", + " Region: \"zone_1\"\tRelError: 1.62862e-02\tAbsError: 2.70715e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62776e-02\tAbsError: 1.14073e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.61336e-06\tAbsError: 2.70600e-03\n", + " Region: \"zone_3\"\tRelError: 4.48785e-02\tAbsError: 2.45739e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96801e-04\tAbsError: 1.22571e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.38233e-04\tAbsError: 1.23168e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.42349e-02\tAbsError: 1.14794e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.61466e-06\tAbsError: 2.70649e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.32472e+01\tAbsError: 9.05523e+16\n", + " Region: \"zone_1\"\tRelError: 2.08196e+00\tAbsError: 2.99203e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07289e+00\tAbsError: 2.58735e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.07069e-03\tAbsError: 2.96616e+00\n", + " Region: \"zone_3\"\tRelError: 1.11652e+01\tAbsError: 9.05523e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.26639e-01\tAbsError: 4.47129e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.77521e-02\tAbsError: 4.58394e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09818e+01\tAbsError: 2.58989e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.07267e-03\tAbsError: 2.96684e+00\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 4.51974e-02\tAbsError: 1.27647e+12\n", + " Region: \"zone_1\"\tRelError: 2.23666e-02\tAbsError: 1.63183e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23661e-02\tAbsError: 6.82579e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.13273e-07\tAbsError: 1.63115e-04\n", + " Region: \"zone_3\"\tRelError: 2.28308e-02\tAbsError: 1.27647e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.70683e-05\tAbsError: 6.36568e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.99226e-05\tAbsError: 6.39903e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27933e-02\tAbsError: 6.89565e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.13347e-07\tAbsError: 1.63144e-04\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 3.93249e-02\tAbsError: 5.57960e+12\n", + " Region: \"zone_1\"\tRelError: 7.32251e-04\tAbsError: 6.05542e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.30375e-04\tAbsError: 2.59897e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87620e-06\tAbsError: 6.05282e-04\n", + " Region: \"zone_3\"\tRelError: 3.85927e-02\tAbsError: 5.57960e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.91951e-05\tAbsError: 2.73875e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.17297e-05\tAbsError: 2.84086e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.84599e-02\tAbsError: 2.62616e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87645e-06\tAbsError: 6.05386e-04\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 1.65091e-03\tAbsError: 4.97072e+11\n", + " Region: \"zone_1\"\tRelError: 3.83636e-04\tAbsError: 4.48514e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.83493e-04\tAbsError: 1.94322e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43850e-07\tAbsError: 4.48319e-05\n", + " Region: \"zone_3\"\tRelError: 1.26727e-03\tAbsError: 4.97072e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.06135e-06\tAbsError: 2.48251e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.69397e-06\tAbsError: 2.48821e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25637e-03\tAbsError: 1.95635e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43872e-07\tAbsError: 4.48401e-05\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 4.75117e-02\tAbsError: 1.94987e+13\n", + " Region: \"zone_1\"\tRelError: 1.30917e-02\tAbsError: 2.14809e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30849e-02\tAbsError: 9.05146e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.83456e-06\tAbsError: 2.14719e-03\n", + " Region: \"zone_3\"\tRelError: 3.44200e-02\tAbsError: 1.94987e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.35481e-04\tAbsError: 9.72564e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.68349e-04\tAbsError: 9.77306e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.39093e-02\tAbsError: 9.10867e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.83559e-06\tAbsError: 2.14757e-03\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 3.56683e-02\tAbsError: 9.89725e+11\n", + " Region: \"zone_1\"\tRelError: 1.76482e-02\tAbsError: 1.26526e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76479e-02\tAbsError: 5.29245e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.97972e-07\tAbsError: 1.26473e-04\n", + " Region: \"zone_3\"\tRelError: 1.80201e-02\tAbsError: 9.89725e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32340e-05\tAbsError: 4.93569e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.54472e-05\tAbsError: 4.96155e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79910e-02\tAbsError: 5.34661e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.98029e-07\tAbsError: 1.26495e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.45492e+00\tAbsError: 5.94160e+16\n", + " Region: \"zone_1\"\tRelError: 3.92041e-01\tAbsError: 2.35206e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.84835e-01\tAbsError: 8.02492e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.20612e-03\tAbsError: 2.34403e+00\n", + " Region: \"zone_3\"\tRelError: 2.06288e+00\tAbsError: 5.94160e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17454e-01\tAbsError: 2.94562e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.39117e-01\tAbsError: 2.99598e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69910e+00\tAbsError: 8.07834e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.20670e-03\tAbsError: 2.34425e+00\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 3.03670e-02\tAbsError: 4.18684e+12\n", + " Region: \"zone_1\"\tRelError: 5.49775e-04\tAbsError: 4.54314e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.48367e-04\tAbsError: 1.95032e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40764e-06\tAbsError: 4.54119e-04\n", + " Region: \"zone_3\"\tRelError: 2.98172e-02\tAbsError: 4.18684e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.44125e-05\tAbsError: 2.05510e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.38169e-05\tAbsError: 2.13174e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97176e-02\tAbsError: 1.97072e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40783e-06\tAbsError: 4.54197e-04\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 1.32882e-03\tAbsError: 3.99814e+11\n", + " Region: \"zone_1\"\tRelError: 3.08478e-04\tAbsError: 3.60757e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.08363e-04\tAbsError: 1.56301e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15704e-07\tAbsError: 3.60600e-05\n", + " Region: \"zone_3\"\tRelError: 1.02034e-03\tAbsError: 3.99814e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.07104e-06\tAbsError: 1.99678e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.57989e-06\tAbsError: 2.00136e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01157e-03\tAbsError: 1.57357e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15722e-07\tAbsError: 3.60666e-05\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 3.83374e-02\tAbsError: 1.54722e+13\n", + " Region: \"zone_1\"\tRelError: 1.02815e-02\tAbsError: 1.70447e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02761e-02\tAbsError: 7.18225e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.42314e-06\tAbsError: 1.70376e-03\n", + " Region: \"zone_3\"\tRelError: 2.80559e-02\tAbsError: 1.54722e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.86867e-04\tAbsError: 7.71727e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.12952e-04\tAbsError: 7.75489e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76507e-02\tAbsError: 7.22764e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.42396e-06\tAbsError: 1.70406e-03\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 2.72792e-02\tAbsError: 7.67395e+11\n", + " Region: \"zone_1\"\tRelError: 1.34991e-02\tAbsError: 9.81034e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34988e-02\tAbsError: 4.10356e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.08572e-07\tAbsError: 9.80624e-05\n", + " Region: \"zone_3\"\tRelError: 1.37802e-02\tAbsError: 7.67395e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02612e-05\tAbsError: 3.82695e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.19772e-05\tAbsError: 3.84700e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37576e-02\tAbsError: 4.14556e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.08616e-07\tAbsError: 9.80796e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 8.64464e+00\tAbsError: 2.00070e+16\n", + " Region: \"zone_1\"\tRelError: 5.61589e+00\tAbsError: 9.68341e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.61290e+00\tAbsError: 5.79225e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.98401e-03\tAbsError: 9.67761e-01\n", + " Region: \"zone_3\"\tRelError: 3.02875e+00\tAbsError: 2.00070e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.24121e-02\tAbsError: 9.89868e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.71699e-02\tAbsError: 1.01084e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.87618e+00\tAbsError: 5.86658e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.98411e-03\tAbsError: 9.67799e-01\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 2.22978e-02\tAbsError: 3.14138e+12\n", + " Region: \"zone_1\"\tRelError: 4.12325e-04\tAbsError: 3.40904e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.11269e-04\tAbsError: 1.46329e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05625e-06\tAbsError: 3.40757e-04\n", + " Region: \"zone_3\"\tRelError: 2.18855e-02\tAbsError: 3.14138e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.33252e-05\tAbsError: 1.54194e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.03821e-05\tAbsError: 1.59944e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18107e-02\tAbsError: 1.47859e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05639e-06\tAbsError: 3.40816e-04\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 1.06822e-03\tAbsError: 3.21586e+11\n", + " Region: \"zone_1\"\tRelError: 2.48182e-04\tAbsError: 2.90170e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.48089e-04\tAbsError: 1.25719e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.30649e-08\tAbsError: 2.90045e-05\n", + " Region: \"zone_3\"\tRelError: 8.20035e-04\tAbsError: 3.21586e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.27449e-06\tAbsError: 1.60609e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.68377e-06\tAbsError: 1.60977e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.12984e-04\tAbsError: 1.26568e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.30794e-08\tAbsError: 2.90097e-05\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 3.00160e-02\tAbsError: 1.22768e+13\n", + " Region: \"zone_1\"\tRelError: 8.22521e-03\tAbsError: 1.35248e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.22091e-03\tAbsError: 5.69899e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.30318e-06\tAbsError: 1.35191e-03\n", + " Region: \"zone_3\"\tRelError: 2.17908e-02\tAbsError: 1.22768e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.48266e-04\tAbsError: 6.12347e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.68961e-04\tAbsError: 6.15333e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.14693e-02\tAbsError: 5.73500e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.30383e-06\tAbsError: 1.35215e-03\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 2.13770e-02\tAbsError: 5.95008e+11\n", + " Region: \"zone_1\"\tRelError: 1.05774e-02\tAbsError: 7.60656e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05771e-02\tAbsError: 3.18174e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39255e-07\tAbsError: 7.60338e-05\n", + " Region: \"zone_3\"\tRelError: 1.07996e-02\tAbsError: 5.95008e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.95610e-06\tAbsError: 2.96727e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.28661e-06\tAbsError: 2.98281e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07821e-02\tAbsError: 3.21430e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39289e-07\tAbsError: 7.60472e-05\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 1.70035e-02\tAbsError: 2.35712e+12\n", + " Region: \"zone_1\"\tRelError: 3.09483e-04\tAbsError: 2.55783e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.08691e-04\tAbsError: 1.09799e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.92511e-07\tAbsError: 2.55673e-04\n", + " Region: \"zone_3\"\tRelError: 1.66940e-02\tAbsError: 2.35712e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.50044e-05\tAbsError: 1.15699e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.02992e-05\tAbsError: 1.20014e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66379e-02\tAbsError: 1.10948e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.92619e-07\tAbsError: 2.55717e-04\n", "Iteration: 8\n", - " Device: \"device\"\tRelError: 4.70389e-04\tAbsError: 9.42013e+13\n", - " Region: \"zone_1\"\tRelError: 1.42301e-04\tAbsError: 1.88289e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.36972e-04\tAbsError: 1.70810e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.32876e-06\tAbsError: 1.88118e-03\n", - " Region: \"zone_3\"\tRelError: 3.28088e-04\tAbsError: 9.42013e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.75156e-05\tAbsError: 4.70617e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.29791e-05\tAbsError: 4.71396e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.42264e-04\tAbsError: 1.71441e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.32907e-06\tAbsError: 1.88126e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.65005e-03\tAbsError: 2.41163e+12\n", - " Region: \"zone_1\"\tRelError: 8.79965e-04\tAbsError: 3.88210e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 8.78855e-04\tAbsError: 2.64921e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10949e-06\tAbsError: 3.85561e-04\n", - " Region: \"zone_3\"\tRelError: 1.77009e-03\tAbsError: 2.41163e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.84226e-04\tAbsError: 8.06651e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.06220e-04\tAbsError: 1.60498e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.27853e-03\tAbsError: 2.69927e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.10977e-06\tAbsError: 3.85658e-04\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.10009e+00\tAbsError: 9.49766e+13\n", - " Region: \"zone_1\"\tRelError: 1.69910e-01\tAbsError: 3.26443e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.69891e-01\tAbsError: 2.58991e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", - " Region: \"zone_3\"\tRelError: 9.30185e-01\tAbsError: 9.49766e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40985e-01\tAbsError: 5.67002e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.12174e-01\tAbsError: 3.82763e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 7.70066e-02\tAbsError: 2.58994e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94075e-05\tAbsError: 6.74514e-03\n", + " Device: \"device\"\tRelError: 3.67670e+00\tAbsError: 1.06086e+16\n", + " Region: \"zone_1\"\tRelError: 7.59123e-01\tAbsError: 6.83778e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.57044e-01\tAbsError: 2.38567e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.07886e-03\tAbsError: 6.83539e-01\n", + " Region: \"zone_3\"\tRelError: 2.91758e+00\tAbsError: 1.06086e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.89881e-02\tAbsError: 5.27797e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.44470e-02\tAbsError: 5.33061e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76206e+00\tAbsError: 2.41867e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.07915e-03\tAbsError: 6.83663e-01\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 8.59596e-04\tAbsError: 2.58664e+11\n", + " Region: \"zone_1\"\tRelError: 1.99583e-04\tAbsError: 2.33395e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.99508e-04\tAbsError: 1.01120e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.48557e-08\tAbsError: 2.33294e-05\n", + " Region: \"zone_3\"\tRelError: 6.60013e-04\tAbsError: 2.58664e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.63380e-06\tAbsError: 1.29184e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.96300e-06\tAbsError: 1.29480e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.54342e-04\tAbsError: 1.01804e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.48673e-08\tAbsError: 2.33336e-05\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 2.40704e-02\tAbsError: 9.74156e+12\n", + " Region: \"zone_1\"\tRelError: 6.48434e-03\tAbsError: 1.07317e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.48092e-03\tAbsError: 4.52208e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.41452e-06\tAbsError: 1.07272e-03\n", + " Region: \"zone_3\"\tRelError: 1.75860e-02\tAbsError: 9.74156e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.17654e-04\tAbsError: 4.85893e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34077e-04\tAbsError: 4.88262e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73309e-02\tAbsError: 4.55066e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.41503e-06\tAbsError: 1.07291e-03\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 1.64389e-02\tAbsError: 4.61346e+11\n", + " Region: \"zone_1\"\tRelError: 8.13456e-03\tAbsError: 5.89783e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.13437e-03\tAbsError: 2.46700e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85509e-07\tAbsError: 5.89536e-05\n", + " Region: \"zone_3\"\tRelError: 8.30429e-03\tAbsError: 4.61346e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.16887e-06\tAbsError: 2.30070e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.20050e-06\tAbsError: 2.31276e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.29074e-03\tAbsError: 2.49225e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85536e-07\tAbsError: 5.89640e-05\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 1.26041e-02\tAbsError: 1.76860e+12\n", + " Region: \"zone_1\"\tRelError: 2.32157e-04\tAbsError: 1.91925e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31563e-04\tAbsError: 8.23836e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.94654e-07\tAbsError: 1.91842e-04\n", + " Region: \"zone_3\"\tRelError: 1.23719e-02\tAbsError: 1.76860e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.87617e-05\tAbsError: 8.68112e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.27346e-05\tAbsError: 9.00484e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23298e-02\tAbsError: 8.32455e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.94736e-07\tAbsError: 1.91875e-04\n", "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.34845e-04\tAbsError: 2.94286e+13\n", - " Region: \"zone_1\"\tRelError: 4.32006e-05\tAbsError: 2.52107e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.24876e-05\tAbsError: 4.63339e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.12954e-07\tAbsError: 2.51644e-04\n", - " Region: \"zone_3\"\tRelError: 9.16446e-05\tAbsError: 2.94286e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05158e-05\tAbsError: 1.46773e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.62690e-05\tAbsError: 1.47513e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.41466e-05\tAbsError: 4.64656e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.13167e-07\tAbsError: 2.51723e-04\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:17\u001b[0m.\u001b[1;36m277\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.13540e-04\tAbsError: 3.16813e+11\n", - " Region: \"zone_1\"\tRelError: 9.41932e-05\tAbsError: 1.43816e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.37795e-05\tAbsError: 1.91137e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.13656e-07\tAbsError: 1.43625e-04\n", - " Region: \"zone_3\"\tRelError: 3.19347e-04\tAbsError: 3.16813e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.80678e-05\tAbsError: 2.03480e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.78522e-05\tAbsError: 1.13333e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.83013e-04\tAbsError: 1.98913e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.13699e-07\tAbsError: 1.43642e-04\n", + " Device: \"device\"\tRelError: 4.56073e+00\tAbsError: 8.57662e+15\n", + " Region: \"zone_1\"\tRelError: 2.91123e+00\tAbsError: 4.10081e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.90998e+00\tAbsError: 2.08303e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24811e-03\tAbsError: 4.09873e-01\n", + " Region: \"zone_3\"\tRelError: 1.64950e+00\tAbsError: 8.57662e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.28693e-02\tAbsError: 4.26080e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.61714e-02\tAbsError: 4.31583e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55921e+00\tAbsError: 2.10716e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24827e-03\tAbsError: 4.09943e-01\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 6.91155e-04\tAbsError: 2.08053e+11\n", + " Region: \"zone_1\"\tRelError: 1.60558e-04\tAbsError: 1.87729e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60498e-04\tAbsError: 8.13350e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.02093e-08\tAbsError: 1.87647e-05\n", + " Region: \"zone_3\"\tRelError: 5.30597e-04\tAbsError: 2.08053e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11847e-06\tAbsError: 1.03907e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.38325e-06\tAbsError: 1.04146e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.26035e-04\tAbsError: 8.18846e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.02186e-08\tAbsError: 1.87681e-05\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 1.89395e-02\tAbsError: 7.72973e+12\n", + " Region: \"zone_1\"\tRelError: 5.17180e-03\tAbsError: 8.51547e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.16909e-03\tAbsError: 3.58820e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.70937e-06\tAbsError: 8.51188e-04\n", + " Region: \"zone_3\"\tRelError: 1.37677e-02\tAbsError: 7.72973e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.33524e-05\tAbsError: 3.85547e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06383e-04\tAbsError: 3.87427e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35652e-02\tAbsError: 3.61088e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.70977e-06\tAbsError: 8.51341e-04\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 1.28277e-02\tAbsError: 3.57710e+11\n", + " Region: \"zone_1\"\tRelError: 6.34725e-03\tAbsError: 4.57295e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.34711e-03\tAbsError: 1.91282e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43836e-07\tAbsError: 4.57104e-05\n", + " Region: \"zone_3\"\tRelError: 6.48042e-03\tAbsError: 3.57710e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.78309e-06\tAbsError: 1.78388e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.58297e-06\tAbsError: 1.79322e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.46991e-03\tAbsError: 1.93239e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43857e-07\tAbsError: 4.57184e-05\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 9.54371e-03\tAbsError: 1.32704e+12\n", + " Region: \"zone_1\"\tRelError: 1.74226e-04\tAbsError: 1.44005e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73780e-04\tAbsError: 6.18157e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.46183e-07\tAbsError: 1.43944e-04\n", + " Region: \"zone_3\"\tRelError: 9.36949e-03\tAbsError: 1.32704e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.40774e-05\tAbsError: 6.51375e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.70584e-05\tAbsError: 6.75665e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.33791e-03\tAbsError: 6.24623e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.46244e-07\tAbsError: 1.43968e-04\n", "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.94716e-05\tAbsError: 4.16395e+12\n", - " Region: \"zone_1\"\tRelError: 6.26797e-06\tAbsError: 6.64104e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.07999e-06\tAbsError: 6.50466e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.87972e-07\tAbsError: 6.63453e-05\n", - " Region: \"zone_3\"\tRelError: 1.32037e-05\tAbsError: 4.16395e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.51497e-06\tAbsError: 2.07998e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.18689e-06\tAbsError: 2.08397e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 6.31380e-06\tAbsError: 6.54431e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.87998e-07\tAbsError: 6.63553e-05\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.56252e-01\tAbsError: 3.42527e+13\n", - " Region: \"zone_1\"\tRelError: 6.41646e-02\tAbsError: 1.11813e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.41588e-02\tAbsError: 9.16555e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.79958e-06\tAbsError: 2.01571e-03\n", - " Region: \"zone_3\"\tRelError: 2.92088e-01\tAbsError: 3.42527e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.07223e-01\tAbsError: 1.60452e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.07953e-02\tAbsError: 1.82076e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.40630e-02\tAbsError: 9.16559e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.80279e-06\tAbsError: 2.01683e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.41492e-04\tAbsError: 1.35155e+11\n", - " Region: \"zone_1\"\tRelError: 2.52187e-05\tAbsError: 1.37752e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.51794e-05\tAbsError: 8.81239e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.93274e-08\tAbsError: 1.36871e-05\n", - " Region: \"zone_3\"\tRelError: 1.16273e-04\tAbsError: 1.35155e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.95011e-06\tAbsError: 6.23423e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.88512e-06\tAbsError: 7.28125e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00399e-04\tAbsError: 9.07384e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.93425e-08\tAbsError: 1.36926e-05\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.59960e-02\tAbsError: 3.73217e+12\n", - " Region: \"zone_1\"\tRelError: 7.31305e-03\tAbsError: 2.21475e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.30674e-03\tAbsError: 2.57182e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", - " Region: \"zone_3\"\tRelError: 5.86829e-02\tAbsError: 3.73217e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.62142e-02\tAbsError: 2.07187e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.09163e-04\tAbsError: 1.66031e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65329e-03\tAbsError: 2.69578e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.30425e-06\tAbsError: 2.18904e-03\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.51133e-05\tAbsError: 1.21830e+10\n", - " Region: \"zone_1\"\tRelError: 3.62597e-06\tAbsError: 7.39674e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.60471e-06\tAbsError: 7.04171e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.12658e-08\tAbsError: 7.38970e-06\n", - " Region: \"zone_3\"\tRelError: 1.14873e-05\tAbsError: 1.21830e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.26936e-07\tAbsError: 8.38779e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.15498e-07\tAbsError: 3.79516e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.02236e-05\tAbsError: 7.31166e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.12697e-08\tAbsError: 7.39118e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:19\u001b[0m.\u001b[1;36m974\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:19\u001b[0m.\u001b[1;36m974\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.6227272727272727\u001b[0m \n", + " Device: \"device\"\tRelError: 2.41904e+01\tAbsError: 5.49051e+15\n", + " Region: \"zone_1\"\tRelError: 6.61375e-01\tAbsError: 3.42068e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.60334e-01\tAbsError: 1.34630e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04014e-03\tAbsError: 3.41934e-01\n", + " Region: \"zone_3\"\tRelError: 2.35290e+01\tAbsError: 5.49051e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.26656e-02\tAbsError: 2.73104e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.86622e-02\tAbsError: 2.75947e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34566e+01\tAbsError: 1.35303e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04028e-03\tAbsError: 3.41991e-01\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 5.56085e-04\tAbsError: 1.67345e+11\n", + " Region: \"zone_1\"\tRelError: 1.29126e-04\tAbsError: 1.50997e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29078e-04\tAbsError: 6.54208e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.84286e-08\tAbsError: 1.50932e-05\n", + " Region: \"zone_3\"\tRelError: 4.26959e-04\tAbsError: 1.67345e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.70396e-06\tAbsError: 8.35767e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.91694e-06\tAbsError: 8.37684e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.23289e-04\tAbsError: 6.58629e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.84361e-08\tAbsError: 1.50959e-05\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 1.51286e-02\tAbsError: 6.13347e+12\n", + " Region: \"zone_1\"\tRelError: 4.08700e-03\tAbsError: 6.75690e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.08485e-03\tAbsError: 2.84719e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.14985e-06\tAbsError: 6.75405e-04\n", + " Region: \"zone_3\"\tRelError: 1.10416e-02\tAbsError: 6.13347e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.40764e-05\tAbsError: 3.05928e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.44165e-05\tAbsError: 3.07419e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08810e-02\tAbsError: 2.86518e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.15017e-06\tAbsError: 6.75526e-04\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 9.89694e-03\tAbsError: 2.77355e+11\n", + " Region: \"zone_1\"\tRelError: 4.89731e-03\tAbsError: 3.54569e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.89720e-03\tAbsError: 1.48312e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11525e-07\tAbsError: 3.54420e-05\n", + " Region: \"zone_3\"\tRelError: 4.99962e-03\tAbsError: 2.77355e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.70863e-06\tAbsError: 1.38315e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.32883e-06\tAbsError: 1.39040e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.99147e-03\tAbsError: 1.49830e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11541e-07\tAbsError: 3.54483e-05\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 7.11213e-03\tAbsError: 9.95713e+11\n", + " Region: \"zone_1\"\tRelError: 1.30710e-04\tAbsError: 1.08052e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30375e-04\tAbsError: 4.63818e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34786e-07\tAbsError: 1.08006e-04\n", + " Region: \"zone_3\"\tRelError: 6.98142e-03\tAbsError: 9.95713e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05627e-05\tAbsError: 4.88744e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.27994e-05\tAbsError: 5.06969e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.95772e-03\tAbsError: 4.68670e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34832e-07\tAbsError: 1.08024e-04\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.18672e+00\tAbsError: 4.11811e+15\n", + " Region: \"zone_1\"\tRelError: 1.08103e+00\tAbsError: 2.32172e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08032e+00\tAbsError: 1.07406e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.06426e-04\tAbsError: 2.32065e-01\n", + " Region: \"zone_3\"\tRelError: 1.10569e+00\tAbsError: 4.11811e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16099e-02\tAbsError: 2.04770e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.64807e-02\tAbsError: 2.07041e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05690e+00\tAbsError: 1.08592e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.06518e-04\tAbsError: 2.32103e-01\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 4.47175e-04\tAbsError: 1.34602e+11\n", + " Region: \"zone_1\"\tRelError: 1.03872e-04\tAbsError: 1.21453e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03833e-04\tAbsError: 5.26205e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.89530e-08\tAbsError: 1.21400e-05\n", + " Region: \"zone_3\"\tRelError: 3.43303e-04\tAbsError: 1.34602e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.37056e-06\tAbsError: 6.72239e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.54187e-06\tAbsError: 6.73781e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40352e-04\tAbsError: 5.29760e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.89590e-08\tAbsError: 1.21422e-05\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 1.19409e-02\tAbsError: 4.86680e+12\n", + " Region: \"zone_1\"\tRelError: 3.25351e-03\tAbsError: 5.36151e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.25181e-03\tAbsError: 2.25920e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70587e-06\tAbsError: 5.35925e-04\n", + " Region: \"zone_3\"\tRelError: 8.68743e-03\tAbsError: 4.86680e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.87770e-05\tAbsError: 2.42748e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.69812e-05\tAbsError: 2.43932e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.55997e-03\tAbsError: 2.27348e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70613e-06\tAbsError: 5.36021e-04\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 7.70321e-03\tAbsError: 2.15050e+11\n", + " Region: \"zone_1\"\tRelError: 3.81166e-03\tAbsError: 2.74919e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.81157e-03\tAbsError: 1.14996e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.64723e-08\tAbsError: 2.74804e-05\n", + " Region: \"zone_3\"\tRelError: 3.89155e-03\tAbsError: 2.15050e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87553e-06\tAbsError: 1.07244e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.35640e-06\tAbsError: 1.07806e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.88523e-03\tAbsError: 1.16173e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.64847e-08\tAbsError: 2.74852e-05\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 5.36387e-03\tAbsError: 7.47115e+11\n", + " Region: \"zone_1\"\tRelError: 9.80851e-05\tAbsError: 8.10744e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.78339e-05\tAbsError: 3.48018e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.51199e-07\tAbsError: 8.10396e-05\n", + " Region: \"zone_3\"\tRelError: 5.26578e-03\tAbsError: 7.47115e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.92551e-06\tAbsError: 3.66720e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.60380e-06\tAbsError: 3.80395e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.24800e-03\tAbsError: 3.51659e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.51233e-07\tAbsError: 8.10534e-05\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 3.40448e+00\tAbsError: 2.85519e+15\n", + " Region: \"zone_1\"\tRelError: 4.32445e-01\tAbsError: 1.74574e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.31914e-01\tAbsError: 7.44667e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.30910e-04\tAbsError: 1.74499e-01\n", + " Region: \"zone_3\"\tRelError: 2.97204e+00\tAbsError: 2.85519e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.58468e-02\tAbsError: 1.42064e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.98837e-02\tAbsError: 1.43456e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.93577e+00\tAbsError: 7.52552e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.30979e-04\tAbsError: 1.74528e-01\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 3.59748e-04\tAbsError: 1.08266e+11\n", + " Region: \"zone_1\"\tRelError: 8.35412e-05\tAbsError: 9.76892e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.35099e-05\tAbsError: 4.23247e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.13314e-08\tAbsError: 9.76469e-06\n", + " Region: \"zone_3\"\tRelError: 2.76207e-04\tAbsError: 1.08266e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10240e-06\tAbsError: 5.40708e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24019e-06\tAbsError: 5.41948e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73833e-04\tAbsError: 4.26107e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.13363e-08\tAbsError: 9.76646e-06\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 9.51479e-03\tAbsError: 3.86175e+12\n", + " Region: \"zone_1\"\tRelError: 2.57498e-03\tAbsError: 4.25428e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57363e-03\tAbsError: 1.79265e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35359e-06\tAbsError: 4.25248e-04\n", + " Region: \"zone_3\"\tRelError: 6.93981e-03\tAbsError: 3.86175e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.66397e-05\tAbsError: 1.92618e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.31500e-05\tAbsError: 1.93557e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.83867e-03\tAbsError: 1.80398e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35379e-06\tAbsError: 4.25325e-04\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 5.95502e-03\tAbsError: 1.66741e+11\n", + " Region: \"zone_1\"\tRelError: 2.94671e-03\tAbsError: 2.13161e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.94664e-03\tAbsError: 8.91631e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.70472e-08\tAbsError: 2.13072e-05\n", + " Region: \"zone_3\"\tRelError: 3.00831e-03\tAbsError: 1.66741e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.22957e-06\tAbsError: 8.31529e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.60243e-06\tAbsError: 8.35885e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.00341e-03\tAbsError: 9.00757e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.70569e-08\tAbsError: 2.13110e-05\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 4.00921e-03\tAbsError: 5.60581e+11\n", + " Region: \"zone_1\"\tRelError: 7.35906e-05\tAbsError: 6.08326e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.34021e-05\tAbsError: 2.61127e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88482e-07\tAbsError: 6.08065e-05\n", + " Region: \"zone_3\"\tRelError: 3.93562e-03\tAbsError: 5.60581e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94674e-06\tAbsError: 2.75160e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.20602e-06\tAbsError: 2.85421e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.92228e-03\tAbsError: 2.63859e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88508e-07\tAbsError: 6.08169e-05\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.17915e+00\tAbsError: 2.08304e+15\n", + " Region: \"zone_1\"\tRelError: 4.68835e-01\tAbsError: 1.23242e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.68460e-01\tAbsError: 5.54529e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.74932e-04\tAbsError: 1.23187e-01\n", + " Region: \"zone_3\"\tRelError: 7.10315e-01\tAbsError: 2.08304e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.11211e-02\tAbsError: 1.03628e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.40751e-02\tAbsError: 1.04676e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.84743e-01\tAbsError: 5.60539e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.74981e-04\tAbsError: 1.23207e-01\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 2.89315e-04\tAbsError: 8.70821e+10\n", + " Region: \"zone_1\"\tRelError: 6.71999e-05\tAbsError: 7.85752e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.71747e-05\tAbsError: 3.40433e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.52010e-08\tAbsError: 7.85411e-06\n", + " Region: \"zone_3\"\tRelError: 2.22115e-04\tAbsError: 8.70821e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.86699e-07\tAbsError: 4.34912e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.97529e-07\tAbsError: 4.35910e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20206e-04\tAbsError: 3.42734e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.52049e-08\tAbsError: 7.85554e-06\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 7.52474e-03\tAbsError: 3.06423e+12\n", + " Region: \"zone_1\"\tRelError: 2.04739e-03\tAbsError: 3.37571e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04631e-03\tAbsError: 1.42244e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07405e-06\tAbsError: 3.37429e-04\n", + " Region: \"zone_3\"\tRelError: 5.47735e-03\tAbsError: 3.06423e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.70073e-05\tAbsError: 1.52839e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.21729e-05\tAbsError: 1.53584e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.39710e-03\tAbsError: 1.43143e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07421e-06\tAbsError: 3.37489e-04\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 4.62796e-03\tAbsError: 1.29285e+11\n", + " Region: \"zone_1\"\tRelError: 2.28999e-03\tAbsError: 1.65277e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.28994e-03\tAbsError: 6.91336e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.19858e-08\tAbsError: 1.65208e-05\n", + " Region: \"zone_3\"\tRelError: 2.33796e-03\tAbsError: 1.29285e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.72872e-06\tAbsError: 6.44735e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.01782e-06\tAbsError: 6.48113e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.33416e-03\tAbsError: 6.98412e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.19933e-08\tAbsError: 1.65237e-05\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 3.01692e-03\tAbsError: 4.20621e+11\n", + " Region: \"zone_1\"\tRelError: 5.52203e-05\tAbsError: 4.56445e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.50789e-05\tAbsError: 1.95932e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41424e-07\tAbsError: 4.56249e-05\n", + " Region: \"zone_3\"\tRelError: 2.96170e-03\tAbsError: 4.20621e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46202e-06\tAbsError: 2.06461e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.40689e-06\tAbsError: 2.14160e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.95169e-03\tAbsError: 1.97982e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41443e-07\tAbsError: 4.56327e-05\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.22813e+00\tAbsError: 1.48117e+15\n", + " Region: \"zone_1\"\tRelError: 2.50943e-01\tAbsError: 8.98798e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.50669e-01\tAbsError: 3.94087e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.73365e-04\tAbsError: 8.98404e-02\n", + " Region: \"zone_3\"\tRelError: 9.77184e-01\tAbsError: 1.48117e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.05157e-03\tAbsError: 7.37030e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02530e-02\tAbsError: 7.44141e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.58606e-01\tAbsError: 3.98301e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.73400e-04\tAbsError: 8.98552e-02\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 2.32736e-04\tAbsError: 7.00435e+10\n", + " Region: \"zone_1\"\tRelError: 5.40485e-05\tAbsError: 6.32010e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.40283e-05\tAbsError: 2.73824e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.02702e-08\tAbsError: 6.31736e-06\n", + " Region: \"zone_3\"\tRelError: 1.78687e-04\tAbsError: 7.00435e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.13207e-07\tAbsError: 3.49816e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.02351e-07\tAbsError: 3.50619e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77151e-04\tAbsError: 2.75674e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.02733e-08\tAbsError: 6.31851e-06\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 5.98656e-03\tAbsError: 2.43143e+12\n", + " Region: \"zone_1\"\tRelError: 1.62194e-03\tAbsError: 2.67858e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62109e-03\tAbsError: 1.12869e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.52244e-07\tAbsError: 2.67745e-04\n", + " Region: \"zone_3\"\tRelError: 4.36462e-03\tAbsError: 2.43143e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.93652e-05\tAbsError: 1.21276e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.34641e-05\tAbsError: 1.21867e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.30094e-03\tAbsError: 1.13582e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.52372e-07\tAbsError: 2.67793e-04\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 3.58192e-03\tAbsError: 1.00242e+11\n", + " Region: \"zone_1\"\tRelError: 1.77242e-03\tAbsError: 1.28149e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77238e-03\tAbsError: 5.36035e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.03078e-08\tAbsError: 1.28096e-05\n", + " Region: \"zone_3\"\tRelError: 1.80950e-03\tAbsError: 1.00242e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34039e-06\tAbsError: 4.99903e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.56454e-06\tAbsError: 5.02522e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80655e-03\tAbsError: 5.41522e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.03136e-08\tAbsError: 1.28118e-05\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 2.25879e-03\tAbsError: 3.15604e+11\n", + " Region: \"zone_1\"\tRelError: 4.14317e-05\tAbsError: 3.42484e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.13256e-05\tAbsError: 1.47013e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06114e-07\tAbsError: 3.42337e-05\n", + " Region: \"zone_3\"\tRelError: 2.21736e-03\tAbsError: 3.15604e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.34798e-06\tAbsError: 1.54914e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.05695e-06\tAbsError: 1.60691e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20985e-03\tAbsError: 1.48551e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06129e-07\tAbsError: 3.42396e-05\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 6.45883e-01\tAbsError: 1.07077e+15\n", + " Region: \"zone_1\"\tRelError: 2.22386e-01\tAbsError: 6.42662e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.22191e-01\tAbsError: 2.86553e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.95499e-04\tAbsError: 6.42375e-02\n", + " Region: \"zone_3\"\tRelError: 4.23497e-01\tAbsError: 1.07077e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.75113e-03\tAbsError: 5.32784e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.33905e-03\tAbsError: 5.37983e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.10211e-01\tAbsError: 2.89640e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.95524e-04\tAbsError: 6.42481e-02\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 1.87180e-04\tAbsError: 5.63387e+10\n", + " Region: \"zone_1\"\tRelError: 4.34752e-05\tAbsError: 5.08350e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.34589e-05\tAbsError: 2.20247e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63041e-08\tAbsError: 5.08130e-06\n", + " Region: \"zone_3\"\tRelError: 1.43705e-04\tAbsError: 5.63387e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.73659e-07\tAbsError: 2.81371e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.45361e-07\tAbsError: 2.82016e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42469e-04\tAbsError: 2.21735e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63066e-08\tAbsError: 5.08222e-06\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 4.74030e-03\tAbsError: 1.92930e+12\n", + " Region: \"zone_1\"\tRelError: 1.28864e-03\tAbsError: 2.12541e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28797e-03\tAbsError: 8.95595e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.76243e-07\tAbsError: 2.12452e-04\n", + " Region: \"zone_3\"\tRelError: 3.45166e-03\tAbsError: 1.92930e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.33006e-05\tAbsError: 9.62306e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.65530e-05\tAbsError: 9.66998e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40113e-03\tAbsError: 9.01255e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.76345e-07\tAbsError: 2.12490e-04\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 2.78114e-03\tAbsError: 7.77241e+10\n", + " Region: \"zone_1\"\tRelError: 1.37616e-03\tAbsError: 9.93621e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37613e-03\tAbsError: 4.15621e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.12531e-08\tAbsError: 9.93206e-06\n", + " Region: \"zone_3\"\tRelError: 1.40498e-03\tAbsError: 7.77241e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03928e-06\tAbsError: 3.87605e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.21308e-06\tAbsError: 3.89636e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40269e-03\tAbsError: 4.19875e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.12576e-08\tAbsError: 9.93381e-06\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 1.69759e-03\tAbsError: 2.36807e+11\n", + " Region: \"zone_1\"\tRelError: 3.10884e-05\tAbsError: 2.56976e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.10088e-05\tAbsError: 1.10309e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.96208e-08\tAbsError: 2.56866e-05\n", + " Region: \"zone_3\"\tRelError: 1.66650e-03\tAbsError: 2.36807e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.51209e-06\tAbsError: 1.16236e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.04405e-06\tAbsError: 1.20571e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66087e-03\tAbsError: 1.11463e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.96317e-08\tAbsError: 2.56910e-05\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 5.64548e-01\tAbsError: 7.67490e+14\n", + " Region: \"zone_1\"\tRelError: 1.37655e-01\tAbsError: 4.64348e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37513e-01\tAbsError: 2.05305e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41236e-04\tAbsError: 4.64143e-02\n", + " Region: \"zone_3\"\tRelError: 4.26893e-01\tAbsError: 7.67490e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.14609e-03\tAbsError: 3.81907e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.29921e-03\tAbsError: 3.85583e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.17307e-01\tAbsError: 2.07507e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41255e-04\tAbsError: 4.64219e-02\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 1.50568e-04\tAbsError: 4.53154e+10\n", + " Region: \"zone_1\"\tRelError: 3.49675e-05\tAbsError: 4.08885e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.49544e-05\tAbsError: 1.77153e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31140e-08\tAbsError: 4.08708e-06\n", + " Region: \"zone_3\"\tRelError: 1.15600e-04\tAbsError: 4.53154e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.61416e-07\tAbsError: 2.26317e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.19089e-07\tAbsError: 2.26836e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14607e-04\tAbsError: 1.78350e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31160e-08\tAbsError: 4.08782e-06\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 3.76762e-03\tAbsError: 1.53088e+12\n", + " Region: \"zone_1\"\tRelError: 1.02148e-03\tAbsError: 1.68649e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02094e-03\tAbsError: 7.10642e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.36590e-07\tAbsError: 1.68577e-04\n", + " Region: \"zone_3\"\tRelError: 2.74615e-03\tAbsError: 1.53088e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84889e-05\tAbsError: 7.63577e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.10696e-05\tAbsError: 7.67300e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.70605e-03\tAbsError: 7.15134e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.36670e-07\tAbsError: 1.68608e-04\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 2.15407e-03\tAbsError: 6.02643e+10\n", + " Region: \"zone_1\"\tRelError: 1.06588e-03\tAbsError: 7.70416e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06586e-03\tAbsError: 3.22257e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.42324e-08\tAbsError: 7.70093e-06\n", + " Region: \"zone_3\"\tRelError: 1.08818e-03\tAbsError: 6.02643e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.05820e-07\tAbsError: 3.00534e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.40578e-07\tAbsError: 3.02109e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08641e-03\tAbsError: 3.25555e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.42359e-08\tAbsError: 7.70229e-06\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 1.27220e-03\tAbsError: 1.77684e+11\n", + " Region: \"zone_1\"\tRelError: 2.33260e-05\tAbsError: 1.92817e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32663e-05\tAbsError: 8.27678e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.97419e-08\tAbsError: 1.92734e-05\n", + " Region: \"zone_3\"\tRelError: 1.24888e-03\tAbsError: 1.77684e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88490e-06\tAbsError: 8.72156e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.28404e-06\tAbsError: 9.04680e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24465e-03\tAbsError: 8.36336e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.97500e-08\tAbsError: 1.92767e-05\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 3.48470e-01\tAbsError: 5.53114e+14\n", + " Region: \"zone_1\"\tRelError: 1.10208e-01\tAbsError: 3.33405e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10106e-01\tAbsError: 1.48207e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01418e-04\tAbsError: 3.33256e-02\n", + " Region: \"zone_3\"\tRelError: 2.38262e-01\tAbsError: 5.53114e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.97686e-03\tAbsError: 2.75227e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.80680e-03\tAbsError: 2.77886e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31377e-01\tAbsError: 1.49801e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01432e-04\tAbsError: 3.33311e-02\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 1.21100e-04\tAbsError: 3.64489e+10\n", + " Region: \"zone_1\"\tRelError: 2.81265e-05\tAbsError: 3.28882e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.81160e-05\tAbsError: 1.42491e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05481e-08\tAbsError: 3.28740e-06\n", + " Region: \"zone_3\"\tRelError: 9.29733e-05\tAbsError: 3.64489e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.71135e-07\tAbsError: 1.82036e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.17523e-07\tAbsError: 1.82453e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.21741e-05\tAbsError: 1.43454e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05497e-08\tAbsError: 3.28799e-06\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 2.98561e-03\tAbsError: 1.21473e+12\n", + " Region: \"zone_1\"\tRelError: 8.11184e-04\tAbsError: 1.33820e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.10758e-04\tAbsError: 5.63884e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.25776e-07\tAbsError: 1.33764e-04\n", + " Region: \"zone_3\"\tRelError: 2.17443e-03\tAbsError: 1.21473e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46705e-05\tAbsError: 6.05887e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.67183e-05\tAbsError: 6.08841e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.14261e-03\tAbsError: 5.67448e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.25840e-07\tAbsError: 1.33788e-04\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 1.67157e-03\tAbsError: 4.67266e+10\n", + " Region: \"zone_1\"\tRelError: 8.27129e-04\tAbsError: 5.97350e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.27110e-04\tAbsError: 2.49865e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87889e-08\tAbsError: 5.97101e-06\n", + " Region: \"zone_3\"\tRelError: 8.44446e-04\tAbsError: 4.67266e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.24801e-07\tAbsError: 2.33022e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.29287e-07\tAbsError: 2.34243e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.43073e-04\tAbsError: 2.52422e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87916e-08\tAbsError: 5.97206e-06\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 9.55444e-04\tAbsError: 1.33321e+11\n", + " Region: \"zone_1\"\tRelError: 1.75025e-05\tAbsError: 1.44676e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74577e-05\tAbsError: 6.21031e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.48261e-08\tAbsError: 1.44614e-05\n", + " Region: \"zone_3\"\tRelError: 9.37941e-04\tAbsError: 1.33321e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.41429e-06\tAbsError: 6.54405e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.71378e-06\tAbsError: 6.78808e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.34768e-04\tAbsError: 6.27528e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.48322e-08\tAbsError: 1.44639e-05\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 2.77880e-01\tAbsError: 3.97458e+14\n", + " Region: \"zone_1\"\tRelError: 7.34129e-02\tAbsError: 2.40203e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.33398e-02\tAbsError: 1.06477e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.30622e-05\tAbsError: 2.40097e-02\n", + " Region: \"zone_3\"\tRelError: 2.04467e-01\tAbsError: 3.97458e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14309e-03\tAbsError: 1.97777e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.74165e-03\tAbsError: 1.99681e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.99509e-01\tAbsError: 1.07620e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.30716e-05\tAbsError: 2.40136e-02\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 9.74102e-05\tAbsError: 2.93172e+10\n", + " Region: \"zone_1\"\tRelError: 2.26227e-05\tAbsError: 2.64533e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.26142e-05\tAbsError: 1.14611e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.48423e-09\tAbsError: 2.64418e-06\n", + " Region: \"zone_3\"\tRelError: 7.47875e-05\tAbsError: 2.93172e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.98518e-07\tAbsError: 1.46418e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.35830e-07\tAbsError: 1.46754e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.41446e-05\tAbsError: 1.15385e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.48554e-09\tAbsError: 2.64466e-06\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 2.37152e-03\tAbsError: 9.63870e+11\n", + " Region: \"zone_1\"\tRelError: 6.43250e-04\tAbsError: 1.06184e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.42912e-04\tAbsError: 4.47434e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.37847e-07\tAbsError: 1.06140e-04\n", + " Region: \"zone_3\"\tRelError: 1.72827e-03\tAbsError: 9.63870e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16409e-05\tAbsError: 4.80763e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.32658e-05\tAbsError: 4.83107e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70303e-03\tAbsError: 4.50262e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.37898e-07\tAbsError: 1.06159e-04\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 1.29524e-03\tAbsError: 3.62300e+10\n", + " Region: \"zone_1\"\tRelError: 6.40913e-04\tAbsError: 4.63162e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.40898e-04\tAbsError: 1.93736e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45682e-08\tAbsError: 4.62969e-06\n", + " Region: \"zone_3\"\tRelError: 6.54324e-04\tAbsError: 3.62300e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.84447e-07\tAbsError: 1.80677e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.65461e-07\tAbsError: 1.81623e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.53259e-04\tAbsError: 1.95719e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45703e-08\tAbsError: 4.63050e-06\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 7.16406e-04\tAbsError: 1.00035e+11\n", + " Region: \"zone_1\"\tRelError: 1.31325e-05\tAbsError: 1.08555e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30988e-05\tAbsError: 4.65978e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.36343e-08\tAbsError: 1.08508e-05\n", + " Region: \"zone_3\"\tRelError: 7.03273e-04\tAbsError: 1.00035e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06119e-06\tAbsError: 4.91019e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.28590e-06\tAbsError: 5.09330e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.00893e-04\tAbsError: 4.70853e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.36389e-08\tAbsError: 1.08527e-05\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 1.84988e-01\tAbsError: 2.86134e+14\n", + " Region: \"zone_1\"\tRelError: 5.58060e-02\tAbsError: 1.72703e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.57535e-02\tAbsError: 7.66915e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.25334e-05\tAbsError: 1.72626e-02\n", + " Region: \"zone_3\"\tRelError: 1.29182e-01\tAbsError: 2.86134e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54103e-03\tAbsError: 1.42381e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.97172e-03\tAbsError: 1.43753e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25616e-01\tAbsError: 7.75155e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.25402e-05\tAbsError: 1.72654e-02\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 1.88020e-03\tAbsError: 7.64817e+11\n", + " Region: \"zone_1\"\tRelError: 5.10670e-04\tAbsError: 8.42559e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.10402e-04\tAbsError: 3.55033e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.68077e-07\tAbsError: 8.42204e-05\n", + " Region: \"zone_3\"\tRelError: 1.36954e-03\tAbsError: 7.64817e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.23687e-06\tAbsError: 3.81478e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.05262e-05\tAbsError: 3.83338e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34950e-03\tAbsError: 3.57277e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.68117e-07\tAbsError: 8.42355e-05\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 1.00478e-03\tAbsError: 2.80913e+10\n", + " Region: \"zone_1\"\tRelError: 4.97186e-04\tAbsError: 3.59118e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.97175e-04\tAbsError: 1.50215e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12956e-08\tAbsError: 3.58968e-06\n", + " Region: \"zone_3\"\tRelError: 5.07594e-04\tAbsError: 2.80913e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.75621e-07\tAbsError: 1.40090e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.38437e-07\tAbsError: 1.40824e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.06768e-04\tAbsError: 1.51753e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12972e-08\tAbsError: 3.59031e-06\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 5.37817e-04\tAbsError: 7.50592e+10\n", + " Region: \"zone_1\"\tRelError: 9.85378e-06\tAbsError: 8.14519e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 9.82854e-06\tAbsError: 3.49637e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.52368e-08\tAbsError: 8.14169e-06\n", + " Region: \"zone_3\"\tRelError: 5.27964e-04\tAbsError: 7.50592e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.96240e-07\tAbsError: 3.68426e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.64850e-07\tAbsError: 3.82165e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.26177e-04\tAbsError: 3.53295e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.52403e-08\tAbsError: 8.14308e-06\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 1.40480e-01\tAbsError: 2.05779e+14\n", + " Region: \"zone_1\"\tRelError: 3.85914e-02\tAbsError: 1.24311e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85536e-02\tAbsError: 5.51494e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.78121e-05\tAbsError: 1.24256e-02\n", + " Region: \"zone_3\"\tRelError: 1.01889e-01\tAbsError: 2.05779e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10893e-03\tAbsError: 1.02397e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.41898e-03\tAbsError: 1.03382e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.93228e-02\tAbsError: 5.57417e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.78170e-05\tAbsError: 1.24276e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:22\u001b[0m.\u001b[1;36m311\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:22\u001b[0m.\u001b[1;36m332\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.25 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:22\u001b[0m.\u001b[1;36m346\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: 1.25\u001b[0m \n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", @@ -57157,7 +18360,17 @@ "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Iteration: 52\n", "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + " Device: \"device\"\tRelError: 1.49290e-03\tAbsError: 6.06872e+11\n", + " Region: \"zone_1\"\tRelError: 4.05045e-04\tAbsError: 6.68558e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.04833e-04\tAbsError: 2.81714e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.12715e-07\tAbsError: 6.68276e-05\n", + " Region: \"zone_3\"\tRelError: 1.08785e-03\tAbsError: 6.06872e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.32935e-06\tAbsError: 3.02698e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.35242e-06\tAbsError: 3.04174e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07196e-03\tAbsError: 2.83494e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.12747e-07\tAbsError: 6.68396e-05\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", @@ -57188,39 +18401,3655 @@ "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:20\u001b[0m.\u001b[1;36m349\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.14034e-04\tAbsError: 1.03618e+12\n", - " Region: \"zone_1\"\tRelError: 1.43803e-04\tAbsError: 7.79056e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43584e-04\tAbsError: 1.54074e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19396e-07\tAbsError: 7.63649e-05\n", - " Region: \"zone_3\"\tRelError: 6.70231e-04\tAbsError: 1.03618e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.21829e-04\tAbsError: 2.70793e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.05108e-04\tAbsError: 7.65387e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.43074e-04\tAbsError: 1.54210e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19498e-07\tAbsError: 7.64015e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 9.74930e+00\tAbsError: 9.12751e+15\n", - " Region: \"zone_1\"\tRelError: 8.00632e+00\tAbsError: 4.18732e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.00632e+00\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12025e-09\tAbsError: 3.89888e-07\n", - " Region: \"zone_3\"\tRelError: 1.74298e+00\tAbsError: 9.12751e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77319e-01\tAbsError: 4.82174e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.77156e-01\tAbsError: 4.30577e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88507e-01\tAbsError: 4.18729e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12077e-09\tAbsError: 3.90077e-07\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.61312e-05\tAbsError: 5.74046e+10\n", - " Region: \"zone_1\"\tRelError: 1.61849e-05\tAbsError: 6.45313e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.59991e-05\tAbsError: 3.79845e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.85726e-07\tAbsError: 6.44934e-05\n", - " Region: \"zone_3\"\tRelError: 5.99464e-05\tAbsError: 5.74046e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.77906e-06\tAbsError: 4.68633e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.20461e-06\tAbsError: 1.05413e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.27769e-05\tAbsError: 3.95532e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.85828e-07\tAbsError: 6.45281e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:21\u001b[0m.\u001b[1;36m713\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.5\u001b[0m \n", + "number of equations 31686\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 7.78764e-04\tAbsError: 2.17809e+10\n", + " Region: \"zone_1\"\tRelError: 3.85350e-04\tAbsError: 2.78446e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85341e-04\tAbsError: 1.16471e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.75817e-09\tAbsError: 2.78330e-06\n", + " Region: \"zone_3\"\tRelError: 3.93414e-04\tAbsError: 2.17809e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91242e-07\tAbsError: 1.08620e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.39947e-07\tAbsError: 1.09189e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.92774e-04\tAbsError: 1.17663e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.75944e-09\tAbsError: 2.78379e-06\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 4.03384e-04\tAbsError: 5.63191e+10\n", + " Region: \"zone_1\"\tRelError: 7.39353e-06\tAbsError: 6.11157e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.37459e-06\tAbsError: 2.62343e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89360e-08\tAbsError: 6.10895e-06\n", + " Region: \"zone_3\"\tRelError: 3.95991e-04\tAbsError: 5.63191e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.97442e-07\tAbsError: 2.76441e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.23956e-07\tAbsError: 2.86750e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.94651e-04\tAbsError: 2.65088e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89385e-08\tAbsError: 6.10999e-06\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 9.71230e-02\tAbsError: 1.48087e+14\n", + " Region: \"zone_1\"\tRelError: 2.85651e-02\tAbsError: 8.94183e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.85379e-02\tAbsError: 3.96936e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.71993e-05\tAbsError: 8.93786e-03\n", + " Region: \"zone_3\"\tRelError: 6.85579e-02\tAbsError: 1.48087e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.97733e-04\tAbsError: 7.36887e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02082e-03\tAbsError: 7.43982e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.67121e-02\tAbsError: 4.01200e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.72029e-05\tAbsError: 8.93932e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.34606e+01\tAbsError: 5.38714e+18\n", + " Region: \"zone_1\"\tRelError: 7.73401e+00\tAbsError: 6.12757e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.73401e+00\tAbsError: 6.12736e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.82419e-09\tAbsError: 2.12681e-06\n", + " Region: \"zone_3\"\tRelError: 5.72659e+00\tAbsError: 5.38714e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.14108e-01\tAbsError: 2.68678e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.02049e-01\tAbsError: 2.70036e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 4.11044e+00\tAbsError: 6.12741e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.82525e-09\tAbsError: 2.12720e-06\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 1.18398e-03\tAbsError: 4.81544e+11\n", + " Region: \"zone_1\"\tRelError: 3.21501e-04\tAbsError: 5.30492e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.21332e-04\tAbsError: 2.23536e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68787e-07\tAbsError: 5.30268e-05\n", + " Region: \"zone_3\"\tRelError: 8.62474e-04\tAbsError: 4.81544e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.81572e-06\tAbsError: 2.40186e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.62751e-06\tAbsError: 2.41357e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.49862e-04\tAbsError: 2.24948e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68812e-07\tAbsError: 5.30363e-05\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 6.04006e-04\tAbsError: 1.68881e+10\n", + " Region: \"zone_1\"\tRelError: 2.98875e-04\tAbsError: 2.15896e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.98868e-04\tAbsError: 9.03072e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.79075e-09\tAbsError: 2.15806e-06\n", + " Region: \"zone_3\"\tRelError: 3.05131e-04\tAbsError: 1.68881e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.25818e-07\tAbsError: 8.42198e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.63582e-07\tAbsError: 8.46610e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.04635e-04\tAbsError: 9.12314e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.79173e-09\tAbsError: 2.15844e-06\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 3.02759e-04\tAbsError: 4.22579e+10\n", + " Region: \"zone_1\"\tRelError: 5.54761e-06\tAbsError: 4.58570e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.53341e-06\tAbsError: 1.96844e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42082e-08\tAbsError: 4.58373e-06\n", + " Region: \"zone_3\"\tRelError: 2.97211e-04\tAbsError: 4.22579e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.48279e-07\tAbsError: 2.07422e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.43205e-07\tAbsError: 2.15157e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96206e-04\tAbsError: 1.98903e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42101e-08\tAbsError: 4.58451e-06\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 7.18758e-02\tAbsError: 1.06529e+14\n", + " Region: \"zone_1\"\tRelError: 2.01364e-02\tAbsError: 6.43443e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01168e-02\tAbsError: 2.85533e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.95719e-05\tAbsError: 6.43158e-03\n", + " Region: \"zone_3\"\tRelError: 5.17394e-02\tAbsError: 1.06529e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.73975e-04\tAbsError: 5.30093e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.34501e-04\tAbsError: 5.35196e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.04114e-02\tAbsError: 2.88600e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.95745e-05\tAbsError: 6.43263e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.89358e+01\tAbsError: 2.92299e+18\n", + " Region: \"zone_1\"\tRelError: 6.42046e+00\tAbsError: 5.05471e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 6.40416e+00\tAbsError: 5.47072e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62991e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 3.25153e+01\tAbsError: 2.92299e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.91243e-01\tAbsError: 1.46124e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.99498e-01\tAbsError: 1.46175e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 3.11084e+01\tAbsError: 5.52574e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61577e-02\tAbsError: 5.00000e+00\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 9.39858e-04\tAbsError: 3.82098e+11\n", + " Region: \"zone_1\"\tRelError: 2.55041e-04\tAbsError: 4.20937e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54907e-04\tAbsError: 1.77372e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33930e-07\tAbsError: 4.20760e-05\n", + " Region: \"zone_3\"\tRelError: 6.84816e-04\tAbsError: 3.82098e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.61470e-06\tAbsError: 1.90585e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.25884e-06\tAbsError: 1.91514e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.74809e-04\tAbsError: 1.78493e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33950e-07\tAbsError: 4.20836e-05\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 4.68213e-04\tAbsError: 1.30944e+10\n", + " Region: \"zone_1\"\tRelError: 2.31682e-04\tAbsError: 1.67398e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31677e-04\tAbsError: 7.00207e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.26528e-09\tAbsError: 1.67328e-06\n", + " Region: \"zone_3\"\tRelError: 2.36531e-04\tAbsError: 1.30944e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.75090e-07\tAbsError: 6.53007e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.04371e-07\tAbsError: 6.56429e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36146e-04\tAbsError: 7.07373e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.26604e-09\tAbsError: 1.67357e-06\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 5.06611e-02\tAbsError: 7.66521e+13\n", + " Region: \"zone_1\"\tRelError: 1.47017e-02\tAbsError: 4.62906e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46876e-02\tAbsError: 2.05462e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40806e-05\tAbsError: 4.62700e-03\n", + " Region: \"zone_3\"\tRelError: 3.59593e-02\tAbsError: 7.66521e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.12951e-04\tAbsError: 3.81425e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.28451e-04\tAbsError: 3.85096e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.50039e-02\tAbsError: 2.07669e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40825e-05\tAbsError: 4.62776e-03\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 2.27120e-04\tAbsError: 3.17073e+10\n", + " Region: \"zone_1\"\tRelError: 4.16252e-06\tAbsError: 3.44078e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.15186e-06\tAbsError: 1.47698e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06608e-08\tAbsError: 3.43931e-06\n", + " Region: \"zone_3\"\tRelError: 2.22957e-04\tAbsError: 3.17073e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.36357e-07\tAbsError: 1.55635e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.07583e-07\tAbsError: 1.61439e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.22203e-04\tAbsError: 1.49243e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06623e-08\tAbsError: 3.43989e-06\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 7.45518e-04\tAbsError: 3.03190e+11\n", + " Region: \"zone_1\"\tRelError: 2.02413e-04\tAbsError: 3.34008e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02306e-04\tAbsError: 1.40742e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06271e-07\tAbsError: 3.33867e-05\n", + " Region: \"zone_3\"\tRelError: 5.43105e-04\tAbsError: 3.03190e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.66169e-06\tAbsError: 1.51226e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.17281e-06\tAbsError: 1.51963e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.35165e-04\tAbsError: 1.41632e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06287e-07\tAbsError: 3.33927e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.04076e+02\tAbsError: 7.58958e+17\n", + " Region: \"zone_1\"\tRelError: 3.24969e+01\tAbsError: 5.04520e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.24809e+01\tAbsError: 4.51980e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60179e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.71579e+02\tAbsError: 7.58958e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.65900e-01\tAbsError: 3.81811e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.06794e-01\tAbsError: 3.77147e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70491e+02\tAbsError: 4.60040e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59008e-02\tAbsError: 5.00000e+00\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 3.63100e-04\tAbsError: 1.01529e+10\n", + " Region: \"zone_1\"\tRelError: 1.79670e-04\tAbsError: 1.29794e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79666e-04\tAbsError: 5.42913e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.08250e-09\tAbsError: 1.29739e-06\n", + " Region: \"zone_3\"\tRelError: 1.83430e-04\tAbsError: 1.01529e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.35758e-07\tAbsError: 5.06317e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.58461e-07\tAbsError: 5.08969e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83132e-04\tAbsError: 5.48470e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.08309e-09\tAbsError: 1.29762e-06\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 3.69879e-02\tAbsError: 5.51463e+13\n", + " Region: \"zone_1\"\tRelError: 1.04666e-02\tAbsError: 3.33069e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04564e-02\tAbsError: 1.47815e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01312e-05\tAbsError: 3.32921e-03\n", + " Region: \"zone_3\"\tRelError: 2.65213e-02\tAbsError: 5.51463e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.97111e-04\tAbsError: 2.74411e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.80211e-04\tAbsError: 2.77052e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58339e-02\tAbsError: 1.49403e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01325e-05\tAbsError: 3.32976e-03\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 1.70442e-04\tAbsError: 2.37910e+10\n", + " Region: \"zone_1\"\tRelError: 3.12327e-06\tAbsError: 2.58172e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.11527e-06\tAbsError: 1.10822e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.99914e-09\tAbsError: 2.58061e-06\n", + " Region: \"zone_3\"\tRelError: 1.67319e-04\tAbsError: 2.37910e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52379e-07\tAbsError: 1.16777e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.05822e-07\tAbsError: 1.21132e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66753e-04\tAbsError: 1.11981e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.00024e-09\tAbsError: 2.58105e-06\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 5.91713e-04\tAbsError: 2.40577e+11\n", + " Region: \"zone_1\"\tRelError: 1.60586e-04\tAbsError: 2.65031e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60501e-04\tAbsError: 1.11677e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.43248e-08\tAbsError: 2.64919e-05\n", + " Region: \"zone_3\"\tRelError: 4.31127e-04\tAbsError: 2.40577e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.90551e-06\tAbsError: 1.19996e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.31107e-06\tAbsError: 1.20581e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.24826e-04\tAbsError: 1.12383e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.43375e-08\tAbsError: 2.64966e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.81873e+02\tAbsError: 2.42311e+17\n", + " Region: \"zone_1\"\tRelError: 2.96990e+00\tAbsError: 5.03680e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.95417e+00\tAbsError: 3.68048e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57306e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.78903e+02\tAbsError: 2.42311e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.12389e-01\tAbsError: 1.21265e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.89879e-01\tAbsError: 1.21046e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78285e+02\tAbsError: 3.73445e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56519e-02\tAbsError: 5.00000e+00\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 2.81494e-04\tAbsError: 7.87213e+09\n", + " Region: \"zone_1\"\tRelError: 1.39290e-04\tAbsError: 1.00637e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39286e-04\tAbsError: 4.20954e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.16541e-09\tAbsError: 1.00595e-06\n", + " Region: \"zone_3\"\tRelError: 1.42205e-04\tAbsError: 7.87213e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05262e-07\tAbsError: 3.92578e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.22865e-07\tAbsError: 3.94635e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41973e-04\tAbsError: 4.25262e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.16587e-09\tAbsError: 1.00613e-06\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 2.63309e-02\tAbsError: 3.96781e+13\n", + " Region: \"zone_1\"\tRelError: 7.58779e-03\tAbsError: 2.39629e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.58050e-03\tAbsError: 1.06355e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.28900e-06\tAbsError: 2.39523e-03\n", + " Region: \"zone_3\"\tRelError: 1.87431e-02\tAbsError: 3.96781e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13765e-04\tAbsError: 1.97440e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.73555e-04\tAbsError: 1.99341e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82485e-02\tAbsError: 1.07498e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.28995e-06\tAbsError: 2.39562e-03\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 1.27872e-04\tAbsError: 1.78511e+10\n", + " Region: \"zone_1\"\tRelError: 2.34348e-06\tAbsError: 1.93714e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.33748e-06\tAbsError: 8.31530e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.00199e-09\tAbsError: 1.93631e-06\n", + " Region: \"zone_3\"\tRelError: 1.25529e-04\tAbsError: 1.78511e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.89367e-07\tAbsError: 8.76216e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.29467e-07\tAbsError: 9.08891e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25104e-04\tAbsError: 8.40229e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.00281e-09\tAbsError: 1.93664e-06\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 4.69418e-04\tAbsError: 1.90894e+11\n", + " Region: \"zone_1\"\tRelError: 1.27439e-04\tAbsError: 2.10298e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27372e-04\tAbsError: 8.86142e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.69106e-08\tAbsError: 2.10209e-05\n", + " Region: \"zone_3\"\tRelError: 3.41979e-04\tAbsError: 1.90894e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.30548e-06\tAbsError: 9.52149e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.62728e-06\tAbsError: 9.56792e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.36980e-04\tAbsError: 8.91743e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.69206e-08\tAbsError: 2.10247e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.03531e+02\tAbsError: 3.12264e+17\n", + " Region: \"zone_1\"\tRelError: 7.45206e+01\tAbsError: 5.02796e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 7.45052e+01\tAbsError: 2.79619e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54479e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 2.90100e+01\tAbsError: 3.12264e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.18386e-01\tAbsError: 1.55913e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.64053e-01\tAbsError: 1.56351e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.84122e+01\tAbsError: 2.82608e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54107e-02\tAbsError: 5.00000e+00\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 2.18283e-04\tAbsError: 6.10375e+09\n", + " Region: \"zone_1\"\tRelError: 1.08011e-04\tAbsError: 7.80300e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08009e-04\tAbsError: 3.26391e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45434e-09\tAbsError: 7.79974e-07\n", + " Region: \"zone_3\"\tRelError: 1.10272e-04\tAbsError: 6.10375e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.16159e-08\tAbsError: 3.04390e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.52646e-08\tAbsError: 3.05985e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10093e-04\tAbsError: 3.29732e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45469e-09\tAbsError: 7.80111e-07\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 1.90892e-02\tAbsError: 2.85469e+13\n", + " Region: \"zone_1\"\tRelError: 5.42956e-03\tAbsError: 1.72412e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.42431e-03\tAbsError: 7.65182e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.24437e-06\tAbsError: 1.72335e-03\n", + " Region: \"zone_3\"\tRelError: 1.36597e-02\tAbsError: 2.85469e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53799e-04\tAbsError: 1.42051e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96816e-04\tAbsError: 1.43418e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33038e-02\tAbsError: 7.73401e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.24505e-06\tAbsError: 1.72363e-03\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 9.59552e-05\tAbsError: 1.33942e+10\n", + " Region: \"zone_1\"\tRelError: 1.75838e-06\tAbsError: 1.45350e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75388e-06\tAbsError: 6.23922e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.50347e-09\tAbsError: 1.45287e-06\n", + " Region: \"zone_3\"\tRelError: 9.41968e-05\tAbsError: 1.33942e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42088e-07\tAbsError: 6.57451e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.72176e-07\tAbsError: 6.81968e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.38781e-05\tAbsError: 6.30449e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.50409e-09\tAbsError: 1.45312e-06\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 3.72538e-04\tAbsError: 1.51472e+11\n", + " Region: \"zone_1\"\tRelError: 1.01111e-04\tAbsError: 1.66868e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01058e-04\tAbsError: 7.03142e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.30926e-08\tAbsError: 1.66798e-05\n", + " Region: \"zone_3\"\tRelError: 2.71427e-04\tAbsError: 1.51472e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.82936e-06\tAbsError: 7.55517e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.08472e-06\tAbsError: 7.59201e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67460e-04\tAbsError: 7.07585e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.31006e-08\tAbsError: 1.66828e-05\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 1.69234e-04\tAbsError: 4.73261e+09\n", + " Region: \"zone_1\"\tRelError: 8.37408e-05\tAbsError: 6.05015e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 8.37389e-05\tAbsError: 2.53071e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.90300e-09\tAbsError: 6.04762e-07\n", + " Region: \"zone_3\"\tRelError: 8.54934e-05\tAbsError: 4.73261e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.32818e-08\tAbsError: 2.36012e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.38644e-08\tAbsError: 2.37249e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 8.53544e-05\tAbsError: 2.55661e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.90327e-09\tAbsError: 6.04868e-07\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.89654e+01\tAbsError: 1.84399e+17\n", + " Region: \"zone_1\"\tRelError: 9.51671e+00\tAbsError: 5.02583e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 9.50152e+00\tAbsError: 2.58278e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51841e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 7.94487e+01\tAbsError: 1.84399e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.60674e-01\tAbsError: 9.17434e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.64990e-01\tAbsError: 9.26557e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.90078e+01\tAbsError: 2.58977e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51768e-02\tAbsError: 5.00000e+00\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 1.36591e-02\tAbsError: 2.05392e+13\n", + " Region: \"zone_1\"\tRelError: 3.92181e-03\tAbsError: 1.24045e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.91804e-03\tAbsError: 5.50545e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77319e-06\tAbsError: 1.23990e-03\n", + " Region: \"zone_3\"\tRelError: 9.73724e-03\tAbsError: 2.05392e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10655e-04\tAbsError: 1.02204e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.41606e-04\tAbsError: 1.03188e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.48121e-03\tAbsError: 5.56458e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77367e-06\tAbsError: 1.24011e-03\n", + "Iteration: 59\n", + " Device: \"device\"\tRelError: 2.95565e-04\tAbsError: 1.20191e+11\n", + " Region: \"zone_1\"\tRelError: 8.02363e-05\tAbsError: 1.32408e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.01942e-05\tAbsError: 5.57933e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.21282e-08\tAbsError: 1.32352e-05\n", + " Region: \"zone_3\"\tRelError: 2.15329e-04\tAbsError: 1.20191e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.45157e-06\tAbsError: 5.99492e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.65419e-06\tAbsError: 6.02415e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12181e-04\tAbsError: 5.61459e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.21345e-08\tAbsError: 1.32376e-05\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 1.31226e-04\tAbsError: 3.66948e+09\n", + " Region: \"zone_1\"\tRelError: 6.49336e-05\tAbsError: 4.69105e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 6.49322e-05\tAbsError: 1.96222e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47551e-09\tAbsError: 4.68909e-07\n", + " Region: \"zone_3\"\tRelError: 6.62927e-05\tAbsError: 3.66948e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.90663e-08\tAbsError: 1.82995e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.72716e-08\tAbsError: 1.83954e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 6.61849e-05\tAbsError: 1.98230e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47572e-09\tAbsError: 4.68991e-07\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 9.86625e-03\tAbsError: 1.47774e+13\n", + " Region: \"zone_1\"\tRelError: 2.81371e-03\tAbsError: 8.92488e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.81100e-03\tAbsError: 3.96101e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.71475e-06\tAbsError: 8.92092e-04\n", + " Region: \"zone_3\"\tRelError: 7.05254e-03\tAbsError: 1.47774e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.96141e-05\tAbsError: 7.35331e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.01882e-04\tAbsError: 7.42409e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.86833e-03\tAbsError: 4.00355e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.71510e-06\tAbsError: 8.92238e-04\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:30\u001b[0m.\u001b[1;36m423\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:30\u001b[0m.\u001b[1;36m446\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.3 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:30\u001b[0m.\u001b[1;36m461\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 1.3\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.64758e+01\tAbsError: 8.54526e+16\n", + " Region: \"zone_1\"\tRelError: 1.42239e+01\tAbsError: 5.01155e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42090e+01\tAbsError: 1.15490e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49087e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 2.25190e+00\tAbsError: 8.54526e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.30781e-01\tAbsError: 4.24137e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.60169e-01\tAbsError: 4.30389e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74604e+00\tAbsError: 1.16262e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49089e-02\tAbsError: 5.00000e+00\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31686\n", + "Iteration: 60\n", + " Device: \"device\"\tRelError: 2.34551e-04\tAbsError: 9.53696e+10\n", + " Region: \"zone_1\"\tRelError: 6.36623e-05\tAbsError: 1.05064e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.36289e-05\tAbsError: 4.42712e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34281e-08\tAbsError: 1.05019e-05\n", + " Region: \"zone_3\"\tRelError: 1.70889e-04\tAbsError: 9.53696e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.15180e-06\tAbsError: 4.75688e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.31258e-06\tAbsError: 4.78008e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68391e-04\tAbsError: 4.45510e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34332e-08\tAbsError: 1.05038e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.44505e+00\tAbsError: 4.49739e+18\n", + " Region: \"zone_1\"\tRelError: 2.43806e+00\tAbsError: 4.96161e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.43806e+00\tAbsError: 4.96150e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.37909e-09\tAbsError: 1.09013e-06\n", + " Region: \"zone_3\"\tRelError: 2.00700e+00\tAbsError: 4.49739e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.08000e-01\tAbsError: 2.24739e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.99626e-01\tAbsError: 2.25000e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 7.99370e-01\tAbsError: 4.96159e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.37955e-09\tAbsError: 1.09032e-06\n", + "Iteration: 59\n", + " Device: \"device\"\tRelError: 1.01743e-04\tAbsError: 2.84517e+09\n", + " Region: \"zone_1\"\tRelError: 5.03445e-05\tAbsError: 3.63726e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 5.03434e-05\tAbsError: 1.52143e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14405e-09\tAbsError: 3.63574e-07\n", + " Region: \"zone_3\"\tRelError: 5.13982e-05\tAbsError: 2.84517e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.80441e-08\tAbsError: 1.41887e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.44062e-08\tAbsError: 1.42630e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.13146e-05\tAbsError: 1.53700e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14422e-09\tAbsError: 3.63638e-07\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 7.07841e-03\tAbsError: 1.06321e+13\n", + " Region: \"zone_1\"\tRelError: 2.02852e-03\tAbsError: 6.42124e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02657e-03\tAbsError: 2.84989e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.95320e-06\tAbsError: 6.41839e-04\n", + " Region: \"zone_3\"\tRelError: 5.04989e-03\tAbsError: 1.06321e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.72809e-05\tAbsError: 5.29060e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.33027e-05\tAbsError: 5.34152e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.91735e-03\tAbsError: 2.88050e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.95345e-06\tAbsError: 6.41944e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.24253e+00\tAbsError: 4.67916e+16\n", + " Region: \"zone_1\"\tRelError: 2.57948e+00\tAbsError: 1.09816e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57618e+00\tAbsError: 8.96177e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.30118e-03\tAbsError: 1.09726e+00\n", + " Region: \"zone_3\"\tRelError: 6.63047e-01\tAbsError: 4.67916e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.60206e-01\tAbsError: 2.30842e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.86454e-02\tAbsError: 2.37074e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.50874e-01\tAbsError: 9.10320e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32121e-03\tAbsError: 1.10398e+00\n", + "Iteration: 61\n", + " Device: \"device\"\tRelError: 1.86098e-04\tAbsError: 7.56744e+10\n", + " Region: \"zone_1\"\tRelError: 5.05177e-05\tAbsError: 8.33665e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.04912e-05\tAbsError: 3.51286e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.65248e-08\tAbsError: 8.33314e-06\n", + " Region: \"zone_3\"\tRelError: 1.35580e-04\tAbsError: 7.56744e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.13939e-07\tAbsError: 3.77452e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04151e-06\tAbsError: 3.79292e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33598e-04\tAbsError: 3.53506e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.65287e-08\tAbsError: 8.33464e-06\n", + "Iteration: 60\n", + " Device: \"device\"\tRelError: 7.88904e-05\tAbsError: 2.20604e+09\n", + " Region: \"zone_1\"\tRelError: 3.90367e-05\tAbsError: 2.82019e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 3.90358e-05\tAbsError: 1.17966e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.87055e-10\tAbsError: 2.81901e-07\n", + " Region: \"zone_3\"\tRelError: 3.98537e-05\tAbsError: 2.20604e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.94979e-08\tAbsError: 1.10014e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.44308e-08\tAbsError: 1.10590e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.97889e-05\tAbsError: 1.19173e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.87183e-10\tAbsError: 2.81950e-07\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 5.10319e-03\tAbsError: 7.64956e+12\n", + " Region: \"zone_1\"\tRelError: 1.45735e-03\tAbsError: 4.61997e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45595e-03\tAbsError: 2.05043e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40529e-06\tAbsError: 4.61792e-04\n", + " Region: \"zone_3\"\tRelError: 3.64584e-03\tAbsError: 7.64956e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.12124e-05\tAbsError: 3.80646e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.27396e-05\tAbsError: 3.84310e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.55048e-03\tAbsError: 2.07245e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40547e-06\tAbsError: 4.61867e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.16067e+02\tAbsError: 9.45156e+17\n", + " Region: \"zone_1\"\tRelError: 1.45877e+01\tAbsError: 5.04089e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45716e+01\tAbsError: 4.08879e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61360e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.01480e+02\tAbsError: 9.45156e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.37696e-01\tAbsError: 4.72774e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.14783e-01\tAbsError: 4.72382e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00012e+02\tAbsError: 4.21747e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54949e-02\tAbsError: 5.00000e+00\n", + "Iteration: 62\n", + " Device: \"device\"\tRelError: 1.47675e-04\tAbsError: 6.00466e+10\n", + " Region: \"zone_1\"\tRelError: 4.00835e-05\tAbsError: 6.61502e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.00624e-05\tAbsError: 2.78740e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.10470e-08\tAbsError: 6.61223e-06\n", + " Region: \"zone_3\"\tRelError: 1.07592e-04\tAbsError: 6.00466e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.25198e-07\tAbsError: 2.99503e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.26425e-07\tAbsError: 3.00963e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06019e-04\tAbsError: 2.80502e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.10502e-08\tAbsError: 6.61342e-06\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 9.35400e+00\tAbsError: 3.52223e+16\n", + " Region: \"zone_1\"\tRelError: 8.97495e+00\tAbsError: 7.80264e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.97261e+00\tAbsError: 2.54148e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.34119e-03\tAbsError: 7.80010e-01\n", + " Region: \"zone_3\"\tRelError: 3.79050e-01\tAbsError: 3.52223e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.73701e-02\tAbsError: 1.75638e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.10973e-02\tAbsError: 1.76585e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.28240e-01\tAbsError: 2.96174e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.34260e-03\tAbsError: 7.80516e-01\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 3.66624e-03\tAbsError: 5.50372e+12\n", + " Region: \"zone_1\"\tRelError: 1.04964e-03\tAbsError: 3.32397e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04863e-03\tAbsError: 1.47525e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01108e-06\tAbsError: 3.32249e-04\n", + " Region: \"zone_3\"\tRelError: 2.61661e-03\tAbsError: 5.50372e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96515e-05\tAbsError: 2.73868e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.79452e-05\tAbsError: 2.76504e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54800e-03\tAbsError: 1.49109e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01121e-06\tAbsError: 3.32303e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.66342e+02\tAbsError: 8.09857e+17\n", + " Region: \"zone_1\"\tRelError: 6.20104e+01\tAbsError: 5.02655e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 6.19947e+01\tAbsError: 2.65497e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57486e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 2.04332e+02\tAbsError: 8.09857e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.13390e-01\tAbsError: 4.04530e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.68843e-01\tAbsError: 4.05327e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03534e+02\tAbsError: 2.78245e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52585e-02\tAbsError: 5.00000e+00\n", + "Iteration: 63\n", + " Device: \"device\"\tRelError: 1.17172e-04\tAbsError: 4.76461e+10\n", + " Region: \"zone_1\"\tRelError: 3.18067e-05\tAbsError: 5.24892e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.17900e-05\tAbsError: 2.21176e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67005e-08\tAbsError: 5.24671e-06\n", + " Region: \"zone_3\"\tRelError: 8.53656e-05\tAbsError: 4.76461e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.75434e-07\tAbsError: 2.37651e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.55756e-07\tAbsError: 2.38810e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.41177e-05\tAbsError: 2.22574e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67030e-08\tAbsError: 5.24765e-06\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.24824e+00\tAbsError: 1.08124e+16\n", + " Region: \"zone_1\"\tRelError: 9.35554e-01\tAbsError: 1.80423e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.35013e-01\tAbsError: 2.07199e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.41209e-04\tAbsError: 1.80216e-01\n", + " Region: \"zone_3\"\tRelError: 3.12689e-01\tAbsError: 1.08124e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.34232e-02\tAbsError: 5.38093e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.95263e-02\tAbsError: 5.43147e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.69198e-01\tAbsError: 2.10495e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.41575e-04\tAbsError: 1.80346e-01\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:34\u001b[0m.\u001b[1;36m443\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 2.64058e-03\tAbsError: 3.95981e+12\n", + " Region: \"zone_1\"\tRelError: 7.54622e-04\tAbsError: 2.39153e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.53894e-04\tAbsError: 1.06141e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.27450e-07\tAbsError: 2.39047e-04\n", + " Region: \"zone_3\"\tRelError: 1.88596e-03\tAbsError: 3.95981e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.13336e-05\tAbsError: 1.97042e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.73007e-05\tAbsError: 1.98939e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83660e-03\tAbsError: 1.07281e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.27544e-07\tAbsError: 2.39086e-04\n", + "Iteration: 64\n", + " Device: \"device\"\tRelError: 9.29784e-05\tAbsError: 3.78065e+10\n", + " Region: \"zone_1\"\tRelError: 2.52375e-05\tAbsError: 4.16495e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52243e-05\tAbsError: 1.75500e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32516e-08\tAbsError: 4.16319e-06\n", + " Region: \"zone_3\"\tRelError: 6.77409e-05\tAbsError: 3.78065e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.56599e-07\tAbsError: 1.88573e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.20333e-07\tAbsError: 1.89492e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.67507e-05\tAbsError: 1.76609e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32536e-08\tAbsError: 4.16394e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.74049e+02\tAbsError: 4.34742e+17\n", + " Region: \"zone_1\"\tRelError: 4.65042e+01\tAbsError: 5.02587e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.64889e+01\tAbsError: 2.58705e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52424e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.27544e+02\tAbsError: 4.34742e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52496e-01\tAbsError: 2.16854e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.95846e-01\tAbsError: 2.17888e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27181e+02\tAbsError: 2.57940e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50292e-02\tAbsError: 5.00000e+00\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 8.67979e-01\tAbsError: 3.87430e+15\n", + " Region: \"zone_1\"\tRelError: 6.88817e-01\tAbsError: 2.22864e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.88154e-01\tAbsError: 6.31475e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.63535e-04\tAbsError: 2.22801e-01\n", + " Region: \"zone_3\"\tRelError: 1.79162e-01\tAbsError: 3.87430e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12811e-02\tAbsError: 1.93593e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.39553e-02\tAbsError: 1.93836e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33262e-01\tAbsError: 6.34152e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.63619e-04\tAbsError: 2.22837e-01\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 1.89840e-03\tAbsError: 2.84901e+12\n", + " Region: \"zone_1\"\tRelError: 5.43230e-04\tAbsError: 1.72066e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.42707e-04\tAbsError: 7.63663e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.23385e-07\tAbsError: 1.71989e-04\n", + " Region: \"zone_3\"\tRelError: 1.35517e-03\tAbsError: 2.84901e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53491e-05\tAbsError: 1.41768e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96424e-05\tAbsError: 1.43133e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31965e-03\tAbsError: 7.71865e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.23453e-07\tAbsError: 1.72017e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.17845e+01\tAbsError: 1.82219e+17\n", + " Region: \"zone_1\"\tRelError: 9.21206e+00\tAbsError: 5.01343e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 9.19710e+00\tAbsError: 1.34275e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49582e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 3.25724e+01\tAbsError: 1.82219e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.88557e-01\tAbsError: 9.06881e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.80154e-01\tAbsError: 9.15309e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.18889e+01\tAbsError: 1.35677e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48067e-02\tAbsError: 5.00000e+00\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 5.41636e-01\tAbsError: 3.75006e+15\n", + " Region: \"zone_1\"\tRelError: 4.03410e-01\tAbsError: 1.11776e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.03077e-01\tAbsError: 6.69323e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32797e-04\tAbsError: 1.11709e-01\n", + " Region: \"zone_3\"\tRelError: 1.38226e-01\tAbsError: 3.75006e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.92493e-03\tAbsError: 1.87027e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.20893e-02\tAbsError: 1.87979e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15879e-01\tAbsError: 6.77796e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32838e-04\tAbsError: 1.11727e-01\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 1.36661e-03\tAbsError: 2.04980e+12\n", + " Region: \"zone_1\"\tRelError: 3.90691e-04\tAbsError: 1.23798e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.90314e-04\tAbsError: 5.49439e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.76565e-07\tAbsError: 1.23743e-04\n", + " Region: \"zone_3\"\tRelError: 9.75918e-04\tAbsError: 2.04980e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10434e-05\tAbsError: 1.01999e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.41323e-05\tAbsError: 1.02981e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.50366e-04\tAbsError: 5.55341e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.76614e-07\tAbsError: 1.23763e-04\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:36\u001b[0m.\u001b[1;36m865\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 4.03508e-01\tAbsError: 2.14179e+15\n", + " Region: \"zone_1\"\tRelError: 3.11613e-01\tAbsError: 9.47545e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.11331e-01\tAbsError: 3.68469e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.82098e-04\tAbsError: 9.47177e-02\n", + " Region: \"zone_3\"\tRelError: 9.18958e-02\tAbsError: 2.14179e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.90280e-03\tAbsError: 1.06973e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03302e-02\tAbsError: 1.07205e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.33807e-02\tAbsError: 3.72209e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.82133e-04\tAbsError: 9.47329e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.19942e+01\tAbsError: 9.03307e+16\n", + " Region: \"zone_1\"\tRelError: 6.87778e+00\tAbsError: 5.00378e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 6.86325e+00\tAbsError: 3.77662e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45321e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 5.11637e+00\tAbsError: 9.03307e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33980e-01\tAbsError: 4.48961e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.23709e-01\tAbsError: 4.54346e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.84415e+00\tAbsError: 3.79672e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45328e-02\tAbsError: 5.00000e+00\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 9.82860e-04\tAbsError: 1.47479e+12\n", + " Region: \"zone_1\"\tRelError: 2.81173e-04\tAbsError: 8.90700e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80902e-04\tAbsError: 3.95311e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.70931e-07\tAbsError: 8.90305e-05\n", + " Region: \"zone_3\"\tRelError: 7.01687e-04\tAbsError: 1.47479e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94550e-06\tAbsError: 7.33864e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.01679e-05\tAbsError: 7.40928e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.83302e-04\tAbsError: 3.99557e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.70966e-07\tAbsError: 8.90450e-05\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 2.57111e-01\tAbsError: 1.61201e+15\n", + " Region: \"zone_1\"\tRelError: 1.92550e-01\tAbsError: 5.86796e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92375e-01\tAbsError: 2.94260e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74709e-04\tAbsError: 5.86501e-02\n", + " Region: \"zone_3\"\tRelError: 6.45613e-02\tAbsError: 1.61201e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.81403e-03\tAbsError: 8.05071e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.40585e-03\tAbsError: 8.06938e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.31667e-02\tAbsError: 2.97639e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74730e-04\tAbsError: 5.86595e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.20869e+00\tAbsError: 6.48863e+16\n", + " Region: \"zone_1\"\tRelError: 7.29869e-01\tAbsError: 1.69245e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 7.25002e-01\tAbsError: 1.96941e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.86705e-03\tAbsError: 1.69048e+00\n", + " Region: \"zone_3\"\tRelError: 4.78820e-01\tAbsError: 6.48863e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.08499e-01\tAbsError: 3.21545e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.15004e-02\tAbsError: 3.27318e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73952e-01\tAbsError: 1.98934e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.86864e-03\tAbsError: 1.69102e+00\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 7.07348e-04\tAbsError: 1.06108e+12\n", + " Region: \"zone_1\"\tRelError: 2.02257e-04\tAbsError: 6.40841e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02062e-04\tAbsError: 2.84418e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94929e-07\tAbsError: 6.40557e-05\n", + " Region: \"zone_3\"\tRelError: 5.05091e-04\tAbsError: 1.06108e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.71662e-06\tAbsError: 5.28000e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.31559e-06\tAbsError: 5.33082e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.91864e-04\tAbsError: 2.87473e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94955e-07\tAbsError: 6.40661e-05\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.87761e-01\tAbsError: 1.04512e+15\n", + " Region: \"zone_1\"\tRelError: 1.43571e-01\tAbsError: 4.28573e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43444e-01\tAbsError: 1.87770e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27592e-04\tAbsError: 4.28385e-02\n", + " Region: \"zone_3\"\tRelError: 4.41897e-02\tAbsError: 1.04512e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.43676e-03\tAbsError: 5.21993e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.68479e-03\tAbsError: 5.23129e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59406e-02\tAbsError: 1.89797e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27608e-04\tAbsError: 4.28454e-02\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 5.08819e-04\tAbsError: 7.63427e+11\n", + " Region: \"zone_1\"\tRelError: 1.45541e-04\tAbsError: 4.61072e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45401e-04\tAbsError: 2.04633e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40248e-07\tAbsError: 4.60867e-05\n", + " Region: \"zone_3\"\tRelError: 3.63278e-04\tAbsError: 7.63427e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.11300e-06\tAbsError: 3.79885e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.26342e-06\tAbsError: 3.83542e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53761e-04\tAbsError: 2.06831e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40266e-07\tAbsError: 4.60943e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 9.45967e-01\tAbsError: 2.98637e+16\n", + " Region: \"zone_1\"\tRelError: 5.20824e-01\tAbsError: 4.87863e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.19400e-01\tAbsError: 2.35773e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42390e-03\tAbsError: 4.87627e-01\n", + " Region: \"zone_3\"\tRelError: 4.25142e-01\tAbsError: 2.98637e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.93032e-02\tAbsError: 1.48620e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.86505e-02\tAbsError: 1.50017e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.55764e-01\tAbsError: 2.40810e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42438e-03\tAbsError: 4.87820e-01\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 1.22583e-01\tAbsError: 7.35296e+14\n", + " Region: \"zone_1\"\tRelError: 9.23016e-02\tAbsError: 2.84137e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.22170e-02\tAbsError: 1.34717e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.45957e-05\tAbsError: 2.84002e-02\n", + " Region: \"zone_3\"\tRelError: 3.02812e-02\tAbsError: 7.35296e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.27096e-03\tAbsError: 3.67236e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.10594e-03\tAbsError: 3.68060e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.48196e-02\tAbsError: 1.36225e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.46060e-05\tAbsError: 2.84047e-02\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 3.66139e-04\tAbsError: 5.49270e+11\n", + " Region: \"zone_1\"\tRelError: 1.04703e-04\tAbsError: 3.31732e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04602e-04\tAbsError: 1.47229e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00905e-07\tAbsError: 3.31585e-05\n", + " Region: \"zone_3\"\tRelError: 2.61436e-04\tAbsError: 5.49270e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.95922e-06\tAbsError: 2.73320e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.78692e-06\tAbsError: 2.75951e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54589e-04\tAbsError: 1.48811e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00919e-07\tAbsError: 3.31639e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 4.19982e-02\tAbsError: 5.26400e+15\n", + " Region: \"zone_1\"\tRelError: 4.81021e-03\tAbsError: 2.02729e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22098e-03\tAbsError: 1.27793e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.89231e-04\tAbsError: 2.02601e-01\n", + " Region: \"zone_3\"\tRelError: 3.71880e-02\tAbsError: 5.26400e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16400e-02\tAbsError: 2.59167e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.08077e-02\tAbsError: 2.67232e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.15099e-03\tAbsError: 1.30345e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.89299e-04\tAbsError: 2.02632e-01\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 8.71312e-02\tAbsError: 4.94861e+14\n", + " Region: \"zone_1\"\tRelError: 6.63166e-02\tAbsError: 1.98361e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.62576e-02\tAbsError: 9.01599e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.90555e-05\tAbsError: 1.98271e-02\n", + " Region: \"zone_3\"\tRelError: 2.08146e-02\tAbsError: 4.94861e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.57371e-03\tAbsError: 2.47162e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.16906e-03\tAbsError: 2.47699e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70128e-02\tAbsError: 9.11504e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.90626e-05\tAbsError: 1.98303e-02\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 2.63402e-04\tAbsError: 3.95189e+11\n", + " Region: \"zone_1\"\tRelError: 7.53374e-05\tAbsError: 2.38675e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.52648e-05\tAbsError: 1.05929e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.25994e-08\tAbsError: 2.38569e-05\n", + " Region: \"zone_3\"\tRelError: 1.88064e-04\tAbsError: 3.95189e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12910e-06\tAbsError: 1.96648e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.72462e-06\tAbsError: 1.98541e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83138e-04\tAbsError: 1.07066e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.26089e-08\tAbsError: 2.38608e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.41720e-01\tAbsError: 3.06640e+15\n", + " Region: \"zone_1\"\tRelError: 1.41866e-01\tAbsError: 2.45971e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41794e-01\tAbsError: 5.27088e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.16447e-05\tAbsError: 2.45443e-02\n", + " Region: \"zone_3\"\tRelError: 9.98542e-02\tAbsError: 3.06640e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.62888e-03\tAbsError: 1.52992e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.44214e-03\tAbsError: 1.53648e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.27115e-02\tAbsError: 5.36908e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.16544e-05\tAbsError: 2.45482e-02\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 5.80547e-02\tAbsError: 3.41498e+14\n", + " Region: \"zone_1\"\tRelError: 4.38521e-02\tAbsError: 1.34388e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.38121e-02\tAbsError: 6.25998e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.00107e-05\tAbsError: 1.34325e-02\n", + " Region: \"zone_3\"\tRelError: 1.42026e-02\tAbsError: 3.41498e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06549e-03\tAbsError: 1.70562e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.46936e-03\tAbsError: 1.70936e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16278e-02\tAbsError: 6.32952e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.00155e-05\tAbsError: 1.34347e-02\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 1.89527e-04\tAbsError: 2.84331e+11\n", + " Region: \"zone_1\"\tRelError: 5.42008e-05\tAbsError: 1.71722e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.41486e-05\tAbsError: 7.62135e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.22338e-08\tAbsError: 1.71645e-05\n", + " Region: \"zone_3\"\tRelError: 1.35326e-04\tAbsError: 2.84331e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53184e-06\tAbsError: 1.41484e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96031e-06\tAbsError: 1.42846e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31781e-04\tAbsError: 7.70321e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.22406e-08\tAbsError: 1.71673e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 5.12329e-02\tAbsError: 4.52889e+14\n", + " Region: \"zone_1\"\tRelError: 2.63934e-02\tAbsError: 4.66504e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.62578e-02\tAbsError: 6.55366e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35640e-04\tAbsError: 4.66439e-02\n", + " Region: \"zone_3\"\tRelError: 2.48394e-02\tAbsError: 4.52889e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.34538e-03\tAbsError: 2.25951e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.83951e-03\tAbsError: 2.26938e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75189e-02\tAbsError: 8.61448e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35655e-04\tAbsError: 4.66506e-02\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 4.05304e-02\tAbsError: 2.32472e+14\n", + " Region: \"zone_1\"\tRelError: 3.07778e-02\tAbsError: 9.25248e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.07503e-02\tAbsError: 4.25348e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75464e-05\tAbsError: 9.24823e-03\n", + " Region: \"zone_3\"\tRelError: 9.75259e-03\tAbsError: 2.32472e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.31917e-04\tAbsError: 1.16110e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.01176e-03\tAbsError: 1.16362e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.98136e-03\tAbsError: 4.30046e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75497e-05\tAbsError: 9.24970e-03\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 1.36353e-04\tAbsError: 2.04570e+11\n", + " Region: \"zone_1\"\tRelError: 3.89979e-05\tAbsError: 1.23550e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.89603e-05\tAbsError: 5.48341e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.75812e-08\tAbsError: 1.23495e-05\n", + " Region: \"zone_3\"\tRelError: 9.73552e-05\tAbsError: 2.04570e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10213e-06\tAbsError: 1.01795e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.41040e-06\tAbsError: 1.02775e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.48051e-05\tAbsError: 5.54230e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.75861e-08\tAbsError: 1.23516e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 6.63137e-02\tAbsError: 7.99738e+14\n", + " Region: \"zone_1\"\tRelError: 3.87598e-02\tAbsError: 1.33259e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87211e-02\tAbsError: 1.31457e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.87149e-05\tAbsError: 1.33127e-02\n", + " Region: \"zone_3\"\tRelError: 2.75539e-02\tAbsError: 7.99738e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.82169e-04\tAbsError: 3.99696e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.37861e-03\tAbsError: 4.00042e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52544e-02\tAbsError: 1.33481e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.87191e-05\tAbsError: 1.33147e-02\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 2.73490e-02\tAbsError: 1.59487e+14\n", + " Region: \"zone_1\"\tRelError: 2.06919e-02\tAbsError: 6.31124e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06731e-02\tAbsError: 2.92358e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87900e-05\tAbsError: 6.30831e-03\n", + " Region: \"zone_3\"\tRelError: 6.65720e-03\tAbsError: 1.59487e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.99190e-04\tAbsError: 7.96570e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.90092e-04\tAbsError: 7.98302e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.44912e-03\tAbsError: 2.95598e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87923e-05\tAbsError: 6.30932e-03\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 9.81072e-05\tAbsError: 1.47184e+11\n", + " Region: \"zone_1\"\tRelError: 2.80574e-05\tAbsError: 8.88919e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80304e-05\tAbsError: 3.94520e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.70389e-08\tAbsError: 8.88524e-06\n", + " Region: \"zone_3\"\tRelError: 7.00497e-05\tAbsError: 1.47184e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.92960e-07\tAbsError: 7.32395e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.01476e-06\tAbsError: 7.39445e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.82150e-05\tAbsError: 3.98758e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.70424e-08\tAbsError: 8.88670e-06\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.86042e-02\tAbsError: 3.33312e+14\n", + " Region: \"zone_1\"\tRelError: 1.58626e-02\tAbsError: 1.41709e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58214e-02\tAbsError: 4.64007e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.11954e-05\tAbsError: 1.41662e-02\n", + " Region: \"zone_3\"\tRelError: 1.27417e-02\tAbsError: 3.33312e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.18488e-04\tAbsError: 1.66554e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.47552e-03\tAbsError: 1.66759e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04064e-02\tAbsError: 4.68276e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.12000e-05\tAbsError: 1.41684e-02\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 1.89034e-02\tAbsError: 1.08952e+14\n", + " Region: \"zone_1\"\tRelError: 1.43387e-02\tAbsError: 4.32664e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43258e-02\tAbsError: 1.99601e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28813e-05\tAbsError: 4.32465e-03\n", + " Region: \"zone_3\"\tRelError: 4.56472e-03\tAbsError: 1.08952e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.41986e-04\tAbsError: 5.44172e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.73114e-04\tAbsError: 5.45352e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.73673e-03\tAbsError: 2.01809e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28828e-05\tAbsError: 4.32533e-03\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 2.29353e-02\tAbsError: 2.81113e+14\n", + " Region: \"zone_1\"\tRelError: 1.31635e-02\tAbsError: 6.96354e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31432e-02\tAbsError: 4.24335e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.02380e-05\tAbsError: 6.95930e-03\n", + " Region: \"zone_3\"\tRelError: 9.77184e-03\tAbsError: 2.81113e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39524e-04\tAbsError: 1.40500e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.25023e-04\tAbsError: 1.40613e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.58705e-03\tAbsError: 4.29883e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.02403e-05\tAbsError: 6.96035e-03\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 1.28444e-02\tAbsError: 7.46106e+13\n", + " Region: \"zone_1\"\tRelError: 9.72562e-03\tAbsError: 2.95754e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.71682e-03\tAbsError: 1.36765e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.80528e-06\tAbsError: 2.95618e-03\n", + " Region: \"zone_3\"\tRelError: 3.11881e-03\tAbsError: 7.46106e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.33765e-04\tAbsError: 3.72649e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.23394e-04\tAbsError: 3.73458e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.55284e-03\tAbsError: 1.38279e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.80634e-06\tAbsError: 2.95665e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:45\u001b[0m.\u001b[1;36m631\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.29477e-02\tAbsError: 1.59795e+14\n", + " Region: \"zone_1\"\tRelError: 7.28901e-03\tAbsError: 5.21773e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.27384e-03\tAbsError: 2.23874e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51667e-05\tAbsError: 5.21549e-03\n", + " Region: \"zone_3\"\tRelError: 5.65865e-03\tAbsError: 1.59795e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.31207e-04\tAbsError: 7.98694e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.43679e-04\tAbsError: 7.99251e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.76860e-03\tAbsError: 2.26300e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51684e-05\tAbsError: 5.21628e-03\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 8.83220e-03\tAbsError: 5.10253e+13\n", + " Region: \"zone_1\"\tRelError: 6.69580e-03\tAbsError: 2.02485e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.68977e-03\tAbsError: 9.35137e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.02839e-06\tAbsError: 2.02391e-03\n", + " Region: \"zone_3\"\tRelError: 2.13640e-03\tAbsError: 5.10253e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.60012e-04\tAbsError: 2.54850e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.21413e-04\tAbsError: 2.55403e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74895e-03\tAbsError: 9.45486e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.02912e-06\tAbsError: 2.02423e-03\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 8.95172e-03\tAbsError: 1.11452e+14\n", + " Region: \"zone_1\"\tRelError: 5.09222e-03\tAbsError: 3.08914e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.08324e-03\tAbsError: 1.60747e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.97866e-06\tAbsError: 3.08753e-03\n", + " Region: \"zone_3\"\tRelError: 3.85950e-03\tAbsError: 1.11452e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04115e-04\tAbsError: 5.57034e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.21853e-04\tAbsError: 5.57489e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.32455e-03\tAbsError: 1.62681e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.97965e-06\tAbsError: 3.08800e-03\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 6.02269e-03\tAbsError: 3.49222e+13\n", + " Region: \"zone_1\"\tRelError: 4.56204e-03\tAbsError: 1.38504e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.55792e-03\tAbsError: 6.40130e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.12356e-06\tAbsError: 1.38440e-03\n", + " Region: \"zone_3\"\tRelError: 1.46065e-03\tAbsError: 3.49222e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09451e-04\tAbsError: 1.74422e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.51448e-04\tAbsError: 1.74800e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19563e-03\tAbsError: 6.47216e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.12406e-06\tAbsError: 1.38462e-03\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 5.53882e-03\tAbsError: 6.93162e+13\n", + " Region: \"zone_1\"\tRelError: 3.13099e-03\tAbsError: 2.08814e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.12492e-03\tAbsError: 9.73871e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.06952e-06\tAbsError: 2.08717e-03\n", + " Region: \"zone_3\"\tRelError: 2.40784e-03\tAbsError: 6.93162e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.37628e-04\tAbsError: 3.46443e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.17598e-04\tAbsError: 3.46719e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04654e-03\tAbsError: 9.84837e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.07019e-06\tAbsError: 2.08748e-03\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 4.13075e-03\tAbsError: 2.38910e+13\n", + " Region: \"zone_1\"\tRelError: 3.13075e-03\tAbsError: 9.47858e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.12793e-03\tAbsError: 4.37899e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.82198e-06\tAbsError: 9.47420e-04\n", + " Region: \"zone_3\"\tRelError: 9.99996e-04\tAbsError: 2.38910e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.48993e-05\tAbsError: 1.19326e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03646e-04\tAbsError: 1.19584e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.18628e-04\tAbsError: 4.42745e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.82232e-06\tAbsError: 9.47571e-04\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 3.65572e-03\tAbsError: 4.58243e+13\n", + " Region: \"zone_1\"\tRelError: 2.07324e-03\tAbsError: 1.31316e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06942e-03\tAbsError: 6.49908e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.81682e-06\tAbsError: 1.31251e-03\n", + " Region: \"zone_3\"\tRelError: 1.58248e-03\tAbsError: 4.58243e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.77710e-05\tAbsError: 2.29027e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.36832e-04\tAbsError: 2.29216e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35406e-03\tAbsError: 6.57488e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.81724e-06\tAbsError: 1.31271e-03\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 2.82175e-03\tAbsError: 1.63483e+13\n", + " Region: \"zone_1\"\tRelError: 2.13779e-03\tAbsError: 6.48490e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13586e-03\tAbsError: 2.99664e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93070e-06\tAbsError: 6.48190e-04\n", + " Region: \"zone_3\"\tRelError: 6.83955e-04\tAbsError: 1.63483e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.12433e-05\tAbsError: 8.16530e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.09101e-05\tAbsError: 8.18301e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.59871e-04\tAbsError: 3.02981e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93093e-06\tAbsError: 6.48293e-04\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 2.33013e-03\tAbsError: 2.92720e+13\n", + " Region: \"zone_1\"\tRelError: 1.31880e-03\tAbsError: 8.60300e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31630e-03\tAbsError: 4.11656e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.50058e-06\tAbsError: 8.59888e-04\n", + " Region: \"zone_3\"\tRelError: 1.01133e-03\tAbsError: 2.92720e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.74346e-05\tAbsError: 1.46300e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.96488e-05\tAbsError: 1.46420e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.61745e-04\tAbsError: 4.16352e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.50085e-06\tAbsError: 8.60020e-04\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 1.93292e-03\tAbsError: 1.11854e+13\n", + " Region: \"zone_1\"\tRelError: 1.46481e-03\tAbsError: 4.43741e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46349e-03\tAbsError: 2.05025e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32111e-06\tAbsError: 4.43536e-04\n", + " Region: \"zone_3\"\tRelError: 4.68115e-04\tAbsError: 1.11854e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.50636e-05\tAbsError: 5.58665e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.85218e-05\tAbsError: 5.59877e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.83208e-04\tAbsError: 2.07294e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32127e-06\tAbsError: 4.43607e-04\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 1.51578e-03\tAbsError: 1.90467e+13\n", + " Region: \"zone_1\"\tRelError: 8.58785e-04\tAbsError: 5.51306e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.57182e-04\tAbsError: 2.68641e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60243e-06\tAbsError: 5.51037e-04\n", + " Region: \"zone_3\"\tRelError: 6.56999e-04\tAbsError: 1.90467e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.69735e-05\tAbsError: 9.51945e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.74481e-05\tAbsError: 9.52726e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.60974e-04\tAbsError: 2.71743e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60261e-06\tAbsError: 5.51121e-04\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 1.32153e-03\tAbsError: 7.65360e+12\n", + " Region: \"zone_1\"\tRelError: 1.00129e-03\tAbsError: 3.03611e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00039e-03\tAbsError: 1.40290e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.03917e-07\tAbsError: 3.03471e-04\n", + " Region: \"zone_3\"\tRelError: 3.20235e-04\tAbsError: 7.65360e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.39908e-05\tAbsError: 3.82265e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.31989e-05\tAbsError: 3.83094e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.62141e-04\tAbsError: 1.41843e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.04026e-07\tAbsError: 3.03519e-04\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 9.75274e-04\tAbsError: 1.22652e+13\n", + " Region: \"zone_1\"\tRelError: 5.52195e-04\tAbsError: 3.57752e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.51155e-04\tAbsError: 1.72534e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03985e-06\tAbsError: 3.57580e-04\n", + " Region: \"zone_3\"\tRelError: 4.23079e-04\tAbsError: 1.22652e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.39836e-05\tAbsError: 6.13008e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.72799e-05\tAbsError: 6.13510e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.60776e-04\tAbsError: 1.74513e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03997e-06\tAbsError: 3.57634e-04\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 9.04716e-04\tAbsError: 5.23672e+12\n", + " Region: \"zone_1\"\tRelError: 6.85572e-04\tAbsError: 2.07743e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.84953e-04\tAbsError: 9.59882e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.18497e-07\tAbsError: 2.07647e-04\n", + " Region: \"zone_3\"\tRelError: 2.19144e-04\tAbsError: 5.23672e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.64154e-05\tAbsError: 2.61553e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.27161e-05\tAbsError: 2.62120e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79394e-04\tAbsError: 9.70506e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.18572e-07\tAbsError: 2.07680e-04\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 6.31558e-04\tAbsError: 7.94256e+12\n", + " Region: \"zone_1\"\tRelError: 3.57704e-04\tAbsError: 2.30593e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.57033e-04\tAbsError: 1.11828e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.70245e-07\tAbsError: 2.30481e-04\n", + " Region: \"zone_3\"\tRelError: 2.73855e-04\tAbsError: 7.94256e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54811e-05\tAbsError: 3.96966e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.40288e-05\tAbsError: 3.97290e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.33674e-04\tAbsError: 1.13115e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.70319e-07\tAbsError: 2.30516e-04\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 6.18804e-04\tAbsError: 3.58315e+12\n", + " Region: \"zone_1\"\tRelError: 4.68873e-04\tAbsError: 1.42143e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.68450e-04\tAbsError: 6.56788e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.23189e-07\tAbsError: 1.42077e-04\n", + " Region: \"zone_3\"\tRelError: 1.49931e-04\tAbsError: 3.58315e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12318e-05\tAbsError: 1.78963e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.55428e-05\tAbsError: 1.79352e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22733e-04\tAbsError: 6.64058e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.23241e-07\tAbsError: 1.42099e-04\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 4.07558e-04\tAbsError: 5.12712e+12\n", + " Region: \"zone_1\"\tRelError: 2.30785e-04\tAbsError: 1.49202e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30351e-04\tAbsError: 7.21285e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.33673e-07\tAbsError: 1.49130e-04\n", + " Region: \"zone_3\"\tRelError: 1.76773e-04\tAbsError: 5.12712e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00157e-05\tAbsError: 2.56251e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.55476e-05\tAbsError: 2.56461e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50776e-04\tAbsError: 7.29569e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.33721e-07\tAbsError: 1.49152e-04\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 4.23511e-04\tAbsError: 2.45168e+12\n", + " Region: \"zone_1\"\tRelError: 3.20918e-04\tAbsError: 9.72587e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.20628e-04\tAbsError: 4.49390e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89560e-07\tAbsError: 9.72137e-05\n", + " Region: \"zone_3\"\tRelError: 1.02594e-04\tAbsError: 2.45168e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68515e-06\tAbsError: 1.22451e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06349e-05\tAbsError: 1.22717e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.39839e-05\tAbsError: 4.54364e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89595e-07\tAbsError: 9.72291e-05\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 2.63546e-04\tAbsError: 3.31534e+12\n", + " Region: \"zone_1\"\tRelError: 1.49253e-04\tAbsError: 9.63405e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48973e-04\tAbsError: 4.66528e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.80025e-07\tAbsError: 9.62939e-05\n", + " Region: \"zone_3\"\tRelError: 1.14293e-04\tAbsError: 3.31534e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.47011e-06\tAbsError: 1.65699e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.00392e-05\tAbsError: 1.65834e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.75039e-05\tAbsError: 4.71892e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.80056e-07\tAbsError: 9.63086e-05\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 2.89728e-04\tAbsError: 1.67752e+12\n", + " Region: \"zone_1\"\tRelError: 2.19534e-04\tAbsError: 6.65470e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19336e-04\tAbsError: 3.07487e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98125e-07\tAbsError: 6.65162e-05\n", + " Region: \"zone_3\"\tRelError: 7.01943e-05\tAbsError: 1.67752e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.25838e-06\tAbsError: 8.37850e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.27670e-06\tAbsError: 8.39667e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.74611e-05\tAbsError: 3.10891e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98149e-07\tAbsError: 6.65268e-05\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 1.70231e-04\tAbsError: 2.14172e+12\n", + " Region: \"zone_1\"\tRelError: 9.63995e-05\tAbsError: 6.22806e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.62185e-05\tAbsError: 3.01303e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.81026e-07\tAbsError: 6.22505e-05\n", + " Region: \"zone_3\"\tRelError: 7.38317e-05\tAbsError: 2.14172e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.18256e-06\tAbsError: 1.07042e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.48997e-06\tAbsError: 1.07130e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.29781e-05\tAbsError: 3.04765e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.81046e-07\tAbsError: 6.22600e-05\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 1.98264e-04\tAbsError: 1.14780e+12\n", + " Region: \"zone_1\"\tRelError: 1.50233e-04\tAbsError: 4.55334e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50098e-04\tAbsError: 2.10391e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35563e-07\tAbsError: 4.55124e-05\n", + " Region: \"zone_3\"\tRelError: 4.80305e-05\tAbsError: 1.14780e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.59794e-06\tAbsError: 5.73280e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.97894e-06\tAbsError: 5.74523e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.93180e-05\tAbsError: 2.12720e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35579e-07\tAbsError: 4.55196e-05\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 1.10030e-04\tAbsError: 1.38428e+12\n", + " Region: \"zone_1\"\tRelError: 6.23105e-05\tAbsError: 4.02369e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.21935e-05\tAbsError: 1.94760e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16953e-07\tAbsError: 4.02174e-05\n", + " Region: \"zone_3\"\tRelError: 4.77191e-05\tAbsError: 1.38428e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.70255e-06\tAbsError: 6.91856e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.19289e-06\tAbsError: 6.92421e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.07067e-05\tAbsError: 1.96998e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16966e-07\tAbsError: 4.02236e-05\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 1.35647e-04\tAbsError: 7.85361e+11\n", + " Region: \"zone_1\"\tRelError: 1.02784e-04\tAbsError: 3.11553e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02691e-04\tAbsError: 1.43956e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.27559e-08\tAbsError: 3.11409e-05\n", + " Region: \"zone_3\"\tRelError: 3.28631e-05\tAbsError: 7.85361e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46181e-06\tAbsError: 3.92255e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.40673e-06\tAbsError: 3.93106e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.69018e-05\tAbsError: 1.45549e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.27671e-08\tAbsError: 3.11458e-05\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 9.28187e-05\tAbsError: 5.37366e+11\n", + " Region: \"zone_1\"\tRelError: 7.03324e-05\tAbsError: 2.13173e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.02690e-05\tAbsError: 9.84986e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.34663e-08\tAbsError: 2.13075e-05\n", + " Region: \"zone_3\"\tRelError: 2.24862e-05\tAbsError: 5.37366e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68445e-06\tAbsError: 2.68392e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.33099e-06\tAbsError: 2.68974e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84073e-05\tAbsError: 9.95889e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.34740e-08\tAbsError: 2.13109e-05\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 7.10923e-05\tAbsError: 8.94450e+11\n", + " Region: \"zone_1\"\tRelError: 4.02591e-05\tAbsError: 2.60047e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.01835e-05\tAbsError: 1.25834e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.55858e-08\tAbsError: 2.59921e-05\n", + " Region: \"zone_3\"\tRelError: 3.08332e-05\tAbsError: 8.94450e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74662e-06\tAbsError: 4.47043e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.70982e-06\tAbsError: 4.47408e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.63012e-05\tAbsError: 1.27280e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.55941e-08\tAbsError: 2.59961e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:58\u001b[0m.\u001b[1;36m245\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:58\u001b[0m.\u001b[1;36m247\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:59\u001b[0m.\u001b[1;36m118\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:59\u001b[0m.\u001b[1;36m125\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.0.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:59\u001b[0m.\u001b[1;36m209\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.5.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:59\u001b[0m.\u001b[1;36m293\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.55.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:59\u001b[0m.\u001b[1;36m374\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.6.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:59\u001b[0m.\u001b[1;36m455\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.65.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:59\u001b[0m.\u001b[1;36m534\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.7.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:59\u001b[0m.\u001b[1;36m615\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.75.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:59\u001b[0m.\u001b[1;36m695\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.8.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:59\u001b[0m.\u001b[1;36m775\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.85.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:59\u001b[0m.\u001b[1;36m857\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.9.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:32:59\u001b[0m.\u001b[1;36m938\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.95.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:00\u001b[0m.\u001b[1;36m018\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.0.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:00\u001b[0m.\u001b[1;36m099\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.05.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:00\u001b[0m.\u001b[1;36m181\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.1.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:00\u001b[0m.\u001b[1;36m263\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.15.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:00\u001b[0m.\u001b[1;36m345\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.2.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:00\u001b[0m.\u001b[1;36m426\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.25.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:00\u001b[0m.\u001b[1;36m510\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.3.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:00\u001b[0m.\u001b[1;36m596\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mFinished_reading devsim data\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:00\u001b[0m.\u001b[1;36m603\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading heat-charge solver CHARGE output.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:00\u001b[0m.\u001b[1;36m687\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor charge_global_mnt\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:01\u001b[0m.\u001b[1;36m698\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor potential_global_mnt\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:02\u001b[0m.\u001b[1;36m217\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor capacitance_global_mnt\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:03\u001b[0m.\u001b[1;36m247\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor temp_mnt\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:03\u001b[0m.\u001b[1;36m763\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mPostprocess time (s): 4.6376\u001b[0m \n" + ] + }, + { + "data": { + "text/plain": [ + "CompletedProcess(args=['cp', 'output/simulation_data.hdf5', 'tmp_Ba_example_cst/'], returncode=0)" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "results_cst = run_heat_sim(sim=sim_cst, log_level=\"DEBUG\")\n", + "subprocess.run([\"cp\", \"-r\", \"tmp\", \"tmp_Ba_example_cst\"]) \n", + "subprocess.run([\"cp\", \"output/simulation_data.hdf5\", \"tmp_Ba_example_cst/\"]) " + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "f2db1025-950c-4c15-a7c0-4980022d1ebd", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m273\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mSetting up heat-charge simulation.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m291\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin meshing heat-charge simulation.\u001b[0m \n", + "Debug : Destroying model model\n", + "Debug : Destroying model \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m303\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin adding structures to mesh.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m310\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m316\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m323\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m329\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m335\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m342\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m348\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m355\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m361\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m368\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m374\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m381\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a single structure:\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m387\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing a Box.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m394\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd adding structures to mesh.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m400\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m407\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m413\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m420\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m425\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m432\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m438\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m445\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m450\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m457\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m463\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mProcessing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m470\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd processing refinement region.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m476\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin adding monitors.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m482\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd adding monitors.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m488\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin combining added structures.\u001b[0m \n", + "Info : [ 10%] Fragments " + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Warning : Logger already started - ignoring\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Debug : BOOL (2,1) other \n", + "Debug : BOOL (3,1) replaced by 1\n", + "Debug : BOOL (3,2) other\n", + "Debug : BOOL (3,3) replaced by 1\n", + "Debug : BOOL (3,4) replaced by 1\n", + "Debug : BOOL (3,5) replaced by 1\n", + "Debug : BOOL (3,6) other\n", + "Debug : BOOL (2,38) other\n", + "Debug : BOOL (2,39) other\n", + "Debug : BOOL (2,40) other\n", + "Debug : BOOL (2,41) other\n", + "Debug : BOOL (2,42) other\n", + "Debug : BOOL (2,43) other\n", + "Debug : BOOL (2,44) other\n", + "Debug : BOOL (2,45) other\n", + "Debug : BOOL (2,46) other\n", + "Debug : BOOL (2,47) other\n", + "Debug : BOOL (2,48) other\n", + "Debug : BOOL (2,49) other\n", + "Debug : BOOL in (2,1) -> out (2,47) (2,48) (2,7) (2,13) (2,49) (2,8) (2,50) (2,51) (2,52) (2,53) (2,54) (2,12) (2,55) (2,56) (2,35) (2,36) (2,57) (2,58) (2,9) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (3,1) -> out (3,1)\n", + "Debug : BOOL in (3,2) -> out (3,6) (3,5) (3,3) (3,7) (3,8) (3,4) (3,9)\n", + "Debug : BOOL in (3,3) -> out (3,3)\n", + "Debug : BOOL in (3,4) -> out (3,4)\n", + "Debug : BOOL in (3,5) -> out (3,5)\n", + "Debug : BOOL in (3,6) -> out (3,9) (3,8)\n", + "Debug : BOOL in (2,38) -> out (2,13) (2,49) (2,50)\n", + "Debug : BOOL in (2,39) -> out (2,47) (2,48) (2,7) (2,13) (2,49) (2,8) (2,50) (2,51) (2,52) (2,53) (2,54) (2,12) (2,55) (2,56) (2,35) (2,36) (2,57) (2,58) (2,9) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,40) -> out (2,8) (2,52) (2,55)\n", + "Debug : BOOL in (2,41) -> out (2,47) (2,48) (2,7) (2,13) (2,49) (2,8) (2,50) (2,51) (2,52) (2,53) (2,54) (2,12) (2,55) (2,56) (2,35) (2,36) (2,57) (2,58) (2,9) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,42) -> out (2,11) (2,60) (2,37) (2,43)\n", + "Debug : BOOL in (2,43) -> out (2,47) (2,48) (2,7) (2,13) (2,49) (2,8) (2,50) (2,51) (2,52) (2,53) (2,54) (2,12) (2,55) (2,56) (2,35) (2,36) (2,57) (2,58) (2,9) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,44) -> out (2,10) (2,63) (2,44) (2,38)\n", + "Debug : BOOL in (2,45) -> out (2,47) (2,48) (2,7) (2,13) (2,49) (2,8) (2,50) (2,51) (2,52) (2,53) (2,54) (2,12) (2,55) (2,56) (2,35) (2,36) (2,57) (2,58) (2,9) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,46) -> out (2,12) (2,54) (2,36)\n", + "Debug : BOOL in (2,47) -> out (2,47) (2,48) (2,7) (2,13) (2,49) (2,8) (2,50) (2,51) (2,52) (2,53) (2,54) (2,12) (2,55) (2,56) (2,35) (2,36) (2,57) (2,58) (2,9) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "Debug : BOOL in (2,48) -> out (2,9) (2,59) (2,39)\n", + "Debug : BOOL in (2,49) -> out (2,47) (2,48) (2,7) (2,13) (2,49) (2,8) (2,50) (2,51) (2,52) (2,53) (2,54) (2,12) (2,55) (2,56) (2,35) (2,36) (2,57) (2,58) (2,9) (2,59) (2,60) (2,11) (2,39) (2,61) (2,37) (2,62) (2,10) (2,63) (2,43) (2,42) (2,38) (2,44)\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m554\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd adding structures to mesh.\u001b[0m \n", + "Debug : Syncing OCC_Internals with GModel\n", + "Debug : Sync is removing 376 model entities\n", + "Debug : Destroying 0 entities in model\n", + "Debug : OCCRTree found 3 matches at (-2.5,-0.8,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (-2.5,-0.8,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (-2.5,-0.8,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (-2.5,-0.8,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (-2.5,-0.8,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (-2.5,-0.8,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-0.8,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-0.8,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-0.8,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-0.8,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-0.8,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,-0.8,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.8,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.8,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.8,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.8,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.8,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.8,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.09,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,2,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,2,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,2,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,2,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,2,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,2,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (2.4,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (-2.4,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 3 matches at (2.5,0,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.8,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.8,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.8,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.09,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.4475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.4475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.4475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.095,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.4475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.4475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.4475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.22,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.1125,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.655,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.2,2,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.31,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,2.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,2.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,2.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,3.35,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,2.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,2.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,2.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.19,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 8 matches at (0,-1.65,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.4,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.29,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,1.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,1.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.4,1.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,0.005,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.29,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.145,0,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,1.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,1.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.4,1.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.31,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.19,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.05,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.05,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.05,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.05,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.05,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.5,-1.05,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-1.3,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-1.3,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-1.3,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.3,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-1.3,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-1.3,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0,-1.3,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.05,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.05,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.05,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.05,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.05,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-1.05,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.045,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.045,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,-0.045,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,1,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,1,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,1,0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,1,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,1,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.5,1,-0.55) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 7 - new wire\n", + "Debug : Curve 8 (7 --> 8) ori 1\n", + "Debug : Curve 42 (8 --> 34) ori 1\n", + "Debug : Curve 41 (33 --> 34) ori -1\n", + "Debug : Curve 40 (11 --> 33) ori -1\n", + "Debug : Curve 14 (13 --> 11) ori -1\n", + "Debug : Curve 39 (32 --> 13) ori -1\n", + "Debug : Curve 38 (31 --> 32) ori -1\n", + "Debug : Curve 37 (14 --> 31) ori -1\n", + "Debug : Curve 16 (15 --> 14) ori -1\n", + "Debug : Curve 36 (30 --> 15) ori -1\n", + "Debug : Curve 35 (29 --> 30) ori -1\n", + "Debug : Curve 34 (16 --> 29) ori -1\n", + "Debug : Curve 18 (17 --> 16) ori -1\n", + "Debug : Curve 33 (28 --> 17) ori -1\n", + "Debug : Curve 32 (27 --> 28) ori -1\n", + "Debug : Curve 31 (18 --> 27) ori -1\n", + "Debug : Curve 20 (19 --> 18) ori -1\n", + "Debug : Curve 30 (26 --> 19) ori -1\n", + "Debug : Curve 29 (25 --> 26) ori -1\n", + "Debug : Curve 28 (20 --> 25) ori -1\n", + "Debug : Curve 22 (21 --> 20) ori -1\n", + "Debug : Curve 27 (24 --> 21) ori -1\n", + "Debug : Curve 26 (23 --> 24) ori -1\n", + "Debug : Curve 25 (23 --> 7) ori 1\n", + "Debug : OCC surface 7 with 24 parameter bounds (-2.4,2.4)(-1.65,-0.94)\n", + "Debug : OCCRTree found 1 matches at (0,-0.445,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.445,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.445,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 8 - new wire\n", + "Debug : Curve 43 (22 --> 23) ori 1\n", + "Debug : Curve 26 (23 --> 24) ori 1\n", + "Debug : Curve 27 (24 --> 21) ori 1\n", + "Debug : Curve 23 (22 --> 21) ori -1\n", + "Debug : OCC surface 8 with 4 parameter bounds (-2.4,-2.29)(-0.945,-0.94)\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 9 - new wire\n", + "Debug : Curve 21 (20 --> 19) ori -1\n", + "Debug : Curve 28 (20 --> 25) ori 1\n", + "Debug : Curve 29 (25 --> 26) ori 1\n", + "Debug : Curve 30 (26 --> 19) ori 1\n", + "Debug : OCC surface 9 with 4 parameter bounds (-1.31,-1.19)(-0.945,-0.94)\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 10 - new wire\n", + "Debug : Curve 19 (18 --> 17) ori -1\n", + "Debug : Curve 31 (18 --> 27) ori 1\n", + "Debug : Curve 32 (27 --> 28) ori 1\n", + "Debug : Curve 33 (28 --> 17) ori 1\n", + "Debug : OCC surface 10 with 4 parameter bounds (-0.31,-0.19)(-0.945,-0.94)\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 11 - new wire\n", + "Debug : Curve 36 (30 --> 15) ori 1\n", + "Debug : Curve 17 (16 --> 15) ori -1\n", + "Debug : Curve 34 (16 --> 29) ori 1\n", + "Debug : Curve 35 (29 --> 30) ori 1\n", + "Debug : OCC surface 11 with 4 parameter bounds (0.19,0.31)(-0.945,-0.94)\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 12 - new wire\n", + "Debug : Curve 39 (32 --> 13) ori 1\n", + "Debug : Curve 15 (14 --> 13) ori -1\n", + "Debug : Curve 37 (14 --> 31) ori 1\n", + "Debug : Curve 38 (31 --> 32) ori 1\n", + "Debug : OCC surface 12 with 4 parameter bounds (1.19,1.31)(-0.945,-0.94)\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 13 - new wire\n", + "Debug : Curve 41 (33 --> 34) ori 1\n", + "Debug : Curve 44 (34 --> 12) ori 1\n", + "Debug : Curve 13 (11 --> 12) ori -1\n", + "Debug : Curve 40 (11 --> 33) ori 1\n", + "Debug : OCC surface 13 with 4 parameter bounds (2.29,2.4)(-0.945,-0.94)\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,-0.0925,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 35 - new wire\n", + "Debug : Curve 92 (68 --> 70) ori 1\n", + "Debug : Curve 118 (70 --> 84) ori 1\n", + "Debug : Curve 117 (84 --> 83) ori 1\n", + "Debug : Curve 116 (83 --> 53) ori 1\n", + "Debug : Curve 67 (53 --> 52) ori 1\n", + "Debug : Curve 69 (54 --> 52) ori -1\n", + "Debug : Curve 73 (54 --> 58) ori 1\n", + "Debug : Curve 115 (82 --> 58) ori -1\n", + "Debug : Curve 114 (81 --> 82) ori -1\n", + "Debug : Curve 113 (57 --> 81) ori -1\n", + "Debug : Curve 71 (57 --> 55) ori 1\n", + "Debug : Curve 112 (80 --> 55) ori -1\n", + "Debug : Curve 111 (60 --> 80) ori -1\n", + "Debug : Curve 76 (60 --> 59) ori 1\n", + "Debug : Curve 79 (59 --> 61) ori 1\n", + "Debug : Curve 81 (63 --> 61) ori -1\n", + "Debug : Curve 110 (79 --> 63) ori -1\n", + "Debug : Curve 109 (67 --> 79) ori -1\n", + "Debug : Curve 85 (67 --> 66) ori 1\n", + "Debug : Curve 108 (78 --> 66) ori -1\n", + "Debug : Curve 107 (77 --> 78) ori -1\n", + "Debug : Curve 106 (64 --> 77) ori -1\n", + "Debug : Curve 83 (64 --> 65) ori 1\n", + "Debug : Curve 89 (65 --> 68) ori 1\n", + "Debug : OCC surface 35 with 24 parameter bounds (-2.4,2.4)(-0.85,2.5)\n", + "Debug : OCCRTree found 1 matches at (0,1.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,1.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,1.675,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 36 - new wire\n", + "Debug : Curve 84 (66 --> 64) ori 1\n", + "Debug : Curve 106 (64 --> 77) ori 1\n", + "Debug : Curve 107 (77 --> 78) ori 1\n", + "Debug : Curve 108 (78 --> 66) ori 1\n", + "Debug : OCC surface 36 with 4 parameter bounds (1.19,1.31)(-0.85,-0.845)\n", + "Debug : OCCRTree found 1 matches at (-1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 37 - new wire\n", + "Debug : Curve 86 (62 --> 67) ori 1\n", + "Debug : Curve 109 (67 --> 79) ori 1\n", + "Debug : Curve 110 (79 --> 63) ori 1\n", + "Debug : Curve 82 (62 --> 63) ori -1\n", + "Debug : OCC surface 37 with 4 parameter bounds (0.25,0.31)(-0.85,-0.845)\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 38 - new wire\n", + "Debug : Curve 112 (80 --> 55) ori 1\n", + "Debug : Curve 70 (55 --> 56) ori 1\n", + "Debug : Curve 77 (56 --> 60) ori 1\n", + "Debug : Curve 111 (60 --> 80) ori 1\n", + "Debug : OCC surface 38 with 4 parameter bounds (-0.31,-0.25)(-0.85,-0.845)\n", + "Debug : OCCRTree found 1 matches at (0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.28,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 39 - new wire\n", + "Debug : Curve 115 (82 --> 58) ori 1\n", + "Debug : Curve 72 (58 --> 57) ori 1\n", + "Debug : Curve 113 (57 --> 81) ori 1\n", + "Debug : Curve 114 (81 --> 82) ori 1\n", + "Debug : OCC surface 39 with 4 parameter bounds (-1.31,-1.19)(-0.85,-0.845)\n", + "Debug : OCCRTree found 1 matches at (1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.25,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 42 - new wire\n", + "Debug : Curve 121 (86 --> 85) ori 1\n", + "Debug : Curve 126 (88 --> 85) ori -1\n", + "Debug : Curve 125 (63 --> 88) ori -1\n", + "Debug : Curve 81 (63 --> 61) ori 1\n", + "Debug : Curve 79 (59 --> 61) ori -1\n", + "Debug : Curve 76 (60 --> 59) ori -1\n", + "Debug : Curve 124 (87 --> 60) ori -1\n", + "Debug : Curve 123 (86 --> 87) ori -1\n", + "Debug : OCC surface 42 with 8 parameter bounds (-0.25,0.25)(-0.85,-0.63)\n", + "Debug : OCCRTree found 1 matches at (0,0.11,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.11,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,0.11,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 43 - new wire\n", + "Debug : Curve 120 (85 --> 62) ori 1\n", + "Debug : Curve 82 (62 --> 63) ori 1\n", + "Debug : Curve 125 (63 --> 88) ori 1\n", + "Debug : Curve 126 (88 --> 85) ori 1\n", + "Debug : OCC surface 43 with 4 parameter bounds (0.19,0.25)(-0.85,-0.845)\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 44 - new wire\n", + "Debug : Curve 122 (56 --> 86) ori 1\n", + "Debug : Curve 123 (86 --> 87) ori 1\n", + "Debug : Curve 124 (87 --> 60) ori 1\n", + "Debug : Curve 77 (56 --> 60) ori -1\n", + "Debug : OCC surface 44 with 4 parameter bounds (-0.25,-0.19)(-0.85,-0.845)\n", + "Debug : OCCRTree found 1 matches at (0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.22,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 47 - new wire\n", + "Debug : Curve 128 (89 --> 90) ori 1\n", + "Debug : Curve 131 (90 --> 92) ori 1\n", + "Debug : Curve 130 (91 --> 92) ori -1\n", + "Debug : Curve 129 (91 --> 89) ori 1\n", + "Debug : OCC surface 47 with 4 parameter bounds (-2.4,2.4)(-2.5,-2.15)\n", + "Debug : OCCRTree found 1 matches at (0,-1.475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-1.475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-1.475,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 48 - new wire\n", + "Debug : Curve 130 (91 --> 92) ori 1\n", + "Debug : Curve 133 (92 --> 8) ori 1\n", + "Debug : Curve 8 (7 --> 8) ori -1\n", + "Debug : Curve 132 (7 --> 91) ori 1\n", + "Debug : OCC surface 48 with 4 parameter bounds (-2.4,2.4)(-2.15,-1.65)\n", + "Debug : OCCRTree found 1 matches at (0,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-1.05,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 49 - new wire\n", + "Debug : Curve 13 (11 --> 12) ori 1\n", + "Debug : Curve 136 (12 --> 94) ori 1\n", + "Debug : Curve 135 (93 --> 94) ori -1\n", + "Debug : Curve 134 (93 --> 11) ori 1\n", + "Debug : OCC surface 49 with 4 parameter bounds (2.29,2.4)(-0.94,-0.85)\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 50 - new wire\n", + "Debug : Curve 135 (93 --> 94) ori 1\n", + "Debug : Curve 139 (94 --> 96) ori 1\n", + "Debug : Curve 138 (96 --> 95) ori 1\n", + "Debug : Curve 137 (95 --> 93) ori 1\n", + "Debug : OCC surface 50 with 4 parameter bounds (2.29,2.4)(-0.85,-0.845)\n", + "Debug : OCCRTree found 1 matches at (-2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 51 - new wire\n", + "Debug : Curve 14 (13 --> 11) ori 1\n", + "Debug : Curve 134 (93 --> 11) ori -1\n", + "Debug : Curve 141 (65 --> 93) ori -1\n", + "Debug : Curve 83 (64 --> 65) ori -1\n", + "Debug : Curve 140 (13 --> 64) ori -1\n", + "Debug : OCC surface 51 with 5 parameter bounds (1.31,2.29)(-0.94,-0.85)\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 52 - new wire\n", + "Debug : Curve 142 (97 --> 22) ori 1\n", + "Debug : Curve 23 (22 --> 21) ori 1\n", + "Debug : Curve 144 (21 --> 98) ori 1\n", + "Debug : Curve 143 (97 --> 98) ori -1\n", + "Debug : OCC surface 52 with 4 parameter bounds (-2.4,-2.29)(-0.94,-0.85)\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (2.345,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 53 - new wire\n", + "Debug : Curve 138 (96 --> 95) ori -1\n", + "Debug : Curve 145 (96 --> 70) ori 1\n", + "Debug : Curve 92 (68 --> 70) ori -1\n", + "Debug : Curve 89 (65 --> 68) ori -1\n", + "Debug : Curve 141 (65 --> 93) ori 1\n", + "Debug : Curve 137 (95 --> 93) ori -1\n", + "Debug : OCC surface 53 with 6 parameter bounds (2,2.4)(-0.85,1.15)\n", + "Debug : OCCRTree found 1 matches at (-2.2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-2.2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 54 - new wire\n", + "Debug : Curve 15 (14 --> 13) ori 1\n", + "Debug : Curve 140 (13 --> 64) ori 1\n", + "Debug : Curve 84 (66 --> 64) ori -1\n", + "Debug : Curve 146 (66 --> 14) ori 1\n", + "Debug : OCC surface 54 with 4 parameter bounds (1.19,1.31)(-0.94,-0.85)\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 55 - new wire\n", + "Debug : Curve 147 (99 --> 97) ori 1\n", + "Debug : Curve 143 (97 --> 98) ori 1\n", + "Debug : Curve 149 (98 --> 100) ori 1\n", + "Debug : Curve 148 (100 --> 99) ori 1\n", + "Debug : OCC surface 55 with 4 parameter bounds (-2.4,-2.29)(-0.85,-0.845)\n", + "Debug : OCCRTree found 1 matches at (2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.345,0.0025,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 56 - new wire\n", + "Debug : Curve 144 (21 --> 98) ori -1\n", + "Debug : Curve 22 (21 --> 20) ori 1\n", + "Debug : Curve 151 (58 --> 20) ori -1\n", + "Debug : Curve 73 (54 --> 58) ori -1\n", + "Debug : Curve 150 (98 --> 54) ori -1\n", + "Debug : OCC surface 56 with 5 parameter bounds (-2.29,-1.31)(-0.94,-0.85)\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (1.8,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 57 - new wire\n", + "Debug : Curve 16 (15 --> 14) ori 1\n", + "Debug : Curve 146 (66 --> 14) ori -1\n", + "Debug : Curve 85 (67 --> 66) ori -1\n", + "Debug : Curve 152 (15 --> 67) ori -1\n", + "Debug : OCC surface 57 with 4 parameter bounds (0.31,1.19)(-0.94,-0.85)\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (-0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 58 - new wire\n", + "Debug : Curve 153 (53 --> 99) ori 1\n", + "Debug : Curve 148 (100 --> 99) ori -1\n", + "Debug : Curve 149 (98 --> 100) ori -1\n", + "Debug : Curve 150 (98 --> 54) ori 1\n", + "Debug : Curve 69 (54 --> 52) ori 1\n", + "Debug : Curve 67 (53 --> 52) ori -1\n", + "Debug : OCC surface 58 with 6 parameter bounds (-2.4,-2)(-0.85,1.15)\n", + "Debug : OCCRTree found 1 matches at (2.2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (2.2,1,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 59 - new wire\n", + "Debug : Curve 151 (58 --> 20) ori 1\n", + "Debug : Curve 21 (20 --> 19) ori 1\n", + "Debug : Curve 154 (19 --> 57) ori 1\n", + "Debug : Curve 72 (58 --> 57) ori -1\n", + "Debug : OCC surface 59 with 4 parameter bounds (-1.31,-1.19)(-0.94,-0.85)\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (1.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 60 - new wire\n", + "Debug : Curve 17 (16 --> 15) ori 1\n", + "Debug : Curve 152 (15 --> 67) ori 1\n", + "Debug : Curve 86 (62 --> 67) ori -1\n", + "Debug : Curve 120 (85 --> 62) ori -1\n", + "Debug : Curve 155 (85 --> 16) ori 1\n", + "Debug : OCC surface 60 with 5 parameter bounds (0.19,0.31)(-0.94,-0.85)\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (-0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 61 - new wire\n", + "Debug : Curve 154 (19 --> 57) ori -1\n", + "Debug : Curve 20 (19 --> 18) ori 1\n", + "Debug : Curve 156 (55 --> 18) ori -1\n", + "Debug : Curve 71 (57 --> 55) ori -1\n", + "Debug : OCC surface 61 with 4 parameter bounds (-1.19,-0.31)(-0.94,-0.85)\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0.75,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 62 - new wire\n", + "Debug : Curve 18 (17 --> 16) ori 1\n", + "Debug : Curve 155 (85 --> 16) ori -1\n", + "Debug : Curve 121 (86 --> 85) ori -1\n", + "Debug : Curve 157 (17 --> 86) ori -1\n", + "Debug : OCC surface 62 with 4 parameter bounds (-0.19,0.19)(-0.94,-0.85)\n", + "Debug : OCCRTree found 1 matches at (0,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 1 matches at (0,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCC surface 63 - new wire\n", + "Debug : Curve 156 (55 --> 18) ori 1\n", + "Debug : Curve 19 (18 --> 17) ori 1\n", + "Debug : Curve 157 (17 --> 86) ori 1\n", + "Debug : Curve 122 (56 --> 86) ori -1\n", + "Debug : Curve 70 (55 --> 56) ori -1\n", + "Debug : OCC surface 63 with 5 parameter bounds (-0.31,-0.19)(-0.94,-0.85)\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "Debug : OCCRTree found 2 matches at (0.25,-0.045,0) in tree of size 654\n", + "Debug : OCCRtree 0 matches after bounding box filtering\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m570\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin constructing surface dictionary.\u001b[0m \n", + "Debug : GModel imported:\n", + "Debug : 81 points\n", + "Debug : 110 curves\n", + "Debug : 32 surfaces\n", + "Debug : 0 volumes\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m579\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd constructing surface dictionary.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m586\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin create volume zones.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m592\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd create volume zones.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m599\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin create surface zones.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m608\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mContinue create surface zones.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m615\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd create surface zones.\u001b[0m \n", + "Debug : Decoded option name 'Mesh' . 'MeshSizeExtendFromBoundary' (index 0)\n", + "Debug : Decoded option name 'Mesh' . 'MeshSizeFromPoints' (index 0)\n", + "Debug : Decoded option name 'Mesh' . 'MeshSizeFromCurvature' (index 0)\n", + "Debug : Destroying 28 entities in model\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m622\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mBegin meshing.\u001b[0m \n", + "Debug : Decoded option name 'Mesh' . 'Algorithm' (index 0)\n", + "Debug : Decoded option name 'Mesh' . 'Algorithm3D' (index 0)\n", + "Debug : Decoded option name 'General' . 'NumThreads' (index 0)\n", + "Info : Meshing 1D...\n", + "Info : [ 0%] Meshing curve 8 (Line)\n", + "Debug : Meshing curve 8 (Line): 9 interior vertices\n", + "Info : [ 10%] Meshing curve 13 (Line)\n", + "Debug : Meshing curve 13 (Line): 26 interior vertices\n", + "Info : [ 10%] Meshing curve 14 (Line)\n", + "Debug : Meshing curve 14 (Line): 44 interior vertices\n", + "Info : [ 10%] Meshing curve 15 (Line)\n", + "Debug : Meshing curve 15 (Line): 28 interior vertices\n", + "Info : [ 10%] Meshing curve 16 (Line)\n", + "Debug : Meshing curve 16 (Line): 40 interior vertices\n", + "Info : [ 10%] Meshing curve 17 (Line)\n", + "Debug : Meshing curve 17 (Line): 28 interior vertices\n", + "Info : [ 10%] Meshing curve 18 (Line)\n", + "Debug : Meshing curve 18 (Line): 20 interior vertices\n", + "Info : [ 10%] Meshing curve 19 (Line)\n", + "Debug : Meshing curve 19 (Line): 28 interior vertices\n", + "Info : [ 10%] Meshing curve 20 (Line)\n", + "Debug : Meshing curve 20 (Line): 40 interior vertices\n", + "Info : [ 10%] Meshing curve 21 (Line)\n", + "Debug : Meshing curve 21 (Line): 28 interior vertices\n", + "Info : [ 20%] Meshing curve 22 (Line)\n", + "Debug : Meshing curve 22 (Line): 44 interior vertices\n", + "Info : [ 20%] Meshing curve 23 (Line)\n", + "Debug : Meshing curve 23 (Line): 26 interior vertices\n", + "Info : [ 20%] Meshing curve 25 (Line)\n", + "Debug : Meshing curve 25 (Line): 11 interior vertices\n", + "Info : [ 20%] Meshing curve 26 (Line)\n", + "Debug : Meshing curve 26 (Line): 26 interior vertices\n", + "Info : [ 20%] Meshing curve 27 (Line)\n", + "Debug : Meshing curve 27 (Line): 1 interior vertices\n", + "Info : [ 20%] Meshing curve 28 (Line)\n", + "Debug : Meshing curve 28 (Line): 1 interior vertices\n", + "Info : [ 20%] Meshing curve 29 (Line)\n", + "Debug : Meshing curve 29 (Line): 28 interior vertices\n", + "Info : [ 20%] Meshing curve 30 (Line)\n", + "Debug : Meshing curve 30 (Line): 1 interior vertices\n", + "Info : [ 20%] Meshing curve 31 (Line)\n", + "Debug : Meshing curve 31 (Line): 1 interior vertices\n", + "Info : [ 20%] Meshing curve 32 (Line)\n", + "Debug : Meshing curve 32 (Line): 28 interior vertices\n", + "Info : [ 30%] Meshing curve 33 (Line)\n", + "Debug : Meshing curve 33 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 34 (Line)\n", + "Debug : Meshing curve 34 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 35 (Line)\n", + "Debug : Meshing curve 35 (Line): 28 interior vertices\n", + "Info : [ 30%] Meshing curve 36 (Line)\n", + "Debug : Meshing curve 36 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 37 (Line)\n", + "Debug : Meshing curve 37 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 38 (Line)\n", + "Debug : Meshing curve 38 (Line): 28 interior vertices\n", + "Info : [ 30%] Meshing curve 39 (Line)\n", + "Debug : Meshing curve 39 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 40 (Line)\n", + "Debug : Meshing curve 40 (Line): 1 interior vertices\n", + "Info : [ 30%] Meshing curve 41 (Line)\n", + "Debug : Meshing curve 41 (Line): 26 interior vertices\n", + "Info : [ 40%] Meshing curve 42 (Line)\n", + "Debug : Meshing curve 42 (Line): 11 interior vertices\n", + "Info : [ 40%] Meshing curve 43 (Line)\n", + "Debug : Meshing curve 43 (Line): 1 interior vertices\n", + "Info : [ 40%] Meshing curve 44 (Line)\n", + "Debug : Meshing curve 44 (Line): 1 interior vertices\n", + "Info : [ 40%] Meshing curve 67 (Line)\n", + "Debug : Meshing curve 67 (Line): 0 interior vertices\n", + "Info : [ 40%] Meshing curve 69 (Line)\n", + "Debug : Meshing curve 69 (Line): 9 interior vertices\n", + "Info : [ 40%] Meshing curve 70 (Line)\n", + "Debug : Meshing curve 70 (Line): 14 interior vertices\n", + "Info : [ 40%] Meshing curve 71 (Line)\n", + "Debug : Meshing curve 71 (Line): 40 interior vertices\n", + "Info : [ 40%] Meshing curve 72 (Line)\n", + "Debug : Meshing curve 72 (Line): 28 interior vertices\n", + "Info : [ 40%] Meshing curve 73 (Line)\n", + "Debug : Meshing curve 73 (Line): 30 interior vertices\n", + "Info : [ 40%] Meshing curve 76 (Line)\n", + "Debug : Meshing curve 76 (Line): 11 interior vertices\n", + "Info : [ 50%] Meshing curve 77 (Line)\n", + "Debug : Meshing curve 77 (Line): 1 interior vertices\n", + "Info : [ 50%] Meshing curve 79 (Line)\n", + "Debug : Meshing curve 79 (Line): 19 interior vertices\n", + "Info : [ 50%] Meshing curve 81 (Line)\n", + "Debug : Meshing curve 81 (Line): 11 interior vertices\n", + "Info : [ 50%] Meshing curve 82 (Line)\n", + "Debug : Meshing curve 82 (Line): 1 interior vertices\n", + "Info : [ 50%] Meshing curve 83 (Line)\n", + "Debug : Meshing curve 83 (Line): 30 interior vertices\n", + "Info : [ 50%] Meshing curve 84 (Line)\n", + "Debug : Meshing curve 84 (Line): 28 interior vertices\n", + "Info : [ 50%] Meshing curve 85 (Line)\n", + "Debug : Meshing curve 85 (Line): 40 interior vertices\n", + "Info : [ 50%] Meshing curve 86 (Line)\n", + "Debug : Meshing curve 86 (Line): 14 interior vertices\n", + "Info : [ 50%] Meshing curve 89 (Line)\n", + "Debug : Meshing curve 89 (Line): 9 interior vertices\n", + "Info : [ 60%] Meshing curve 92 (Line)\n", + "Debug : Meshing curve 92 (Line): 0 interior vertices\n", + "Info : [ 60%] Meshing curve 106 (Line)\n", + "Debug : Meshing curve 106 (Line): 1 interior vertices\n", + "Info : [ 60%] Meshing curve 107 (Line)\n", + "Debug : Meshing curve 107 (Line): 28 interior vertices\n", + "Info : [ 60%] Meshing curve 108 (Line)\n", + "Debug : Meshing curve 108 (Line): 1 interior vertices\n", + "Info : [ 60%] Meshing curve 109 (Line)\n", + "Debug : Meshing curve 109 (Line): 1 interior vertices\n", + "Info : [ 60%] Meshing curve 110 (Line)\n", + "Debug : Meshing curve 110 (Line): 14 interior vertices\n", + "Info : [ 60%] Meshing curve 111 (Line)\n", + "Debug : Meshing curve 111 (Line): 14 interior vertices\n", + "Info : [ 60%] Meshing curve 112 (Line)\n", + "Debug : Meshing curve 112 (Line): 1 interior vertices\n", + "Info : [ 60%] Meshing curve 113 (Line)\n", + "Debug : Meshing curve 113 (Line): 1 interior vertices\n", + "Info : [ 60%] Meshing curve 114 (Line)\n", + "Debug : Meshing curve 114 (Line): 28 interior vertices\n", + "Info : [ 70%] Meshing curve 115 (Line)\n", + "Debug : Meshing curve 115 (Line): 1 interior vertices\n", + "Info : [ 70%] Meshing curve 116 (Line)\n", + "Debug : Meshing curve 116 (Line): 2 interior vertices\n", + "Info : [ 70%] Meshing curve 117 (Line)\n", + "Debug : Meshing curve 117 (Line): 9 interior vertices\n", + "Info : [ 70%] Meshing curve 118 (Line)\n", + "Debug : Meshing curve 118 (Line): 2 interior vertices\n", + "Info : [ 70%] Meshing curve 120 (Line)\n", + "Debug : Meshing curve 120 (Line): 14 interior vertices\n", + "Info : [ 70%] Meshing curve 121 (Line)\n", + "Debug : Meshing curve 121 (Line): 20 interior vertices\n", + "Info : [ 70%] Meshing curve 122 (Line)\n", + "Debug : Meshing curve 122 (Line): 14 interior vertices\n", + "Info : [ 70%] Meshing curve 123 (Line)\n", + "Debug : Meshing curve 123 (Line): 1 interior vertices\n", + "Info : [ 70%] Meshing curve 124 (Line)\n", + "Debug : Meshing curve 124 (Line): 14 interior vertices\n", + "Info : [ 70%] Meshing curve 125 (Line)\n", + "Debug : Meshing curve 125 (Line): 14 interior vertices\n", + "Info : [ 80%] Meshing curve 126 (Line)\n", + "Debug : Meshing curve 126 (Line): 1 interior vertices\n", + "Info : [ 80%] Meshing curve 134 (Line)\n", + "Debug : Meshing curve 134 (Line): 21 interior vertices\n", + "Info : [ 80%] Meshing curve 135 (Line)\n", + "Debug : Meshing curve 135 (Line): 26 interior vertices\n", + "Info : [ 80%] Meshing curve 136 (Line)\n", + "Debug : Meshing curve 136 (Line): 21 interior vertices\n", + "Info : [ 80%] Meshing curve 140 (Line)\n", + "Debug : Meshing curve 140 (Line): 21 interior vertices\n", + "Info : [ 80%] Meshing curve 141 (Line)\n", + "Debug : Meshing curve 141 (Line): 14 interior vertices\n", + "Info : [ 80%] Meshing curve 142 (Line)\n", + "Debug : Meshing curve 142 (Line): 21 interior vertices\n", + "Info : [ 80%] Meshing curve 143 (Line)\n", + "Debug : Meshing curve 143 (Line): 26 interior vertices\n", + "Info : [ 80%] Meshing curve 144 (Line)\n", + "Debug : Meshing curve 144 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 146 (Line)\n", + "Debug : Meshing curve 146 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 150 (Line)\n", + "Debug : Meshing curve 150 (Line): 14 interior vertices\n", + "Info : [ 90%] Meshing curve 151 (Line)\n", + "Debug : Meshing curve 151 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 152 (Line)\n", + "Debug : Meshing curve 152 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 154 (Line)\n", + "Debug : Meshing curve 154 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 155 (Line)\n", + "Debug : Meshing curve 155 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 156 (Line)\n", + "Debug : Meshing curve 156 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 157 (Line)\n", + "Debug : Meshing curve 157 (Line): 21 interior vertices\n", + "Info : [ 90%] Meshing curve 158 (Line)\n", + "Debug : Meshing curve 158 (Line): 2 interior vertices\n", + "Info : [ 90%] Meshing curve 159 (Line)\n", + "Debug : Meshing curve 159 (Line): 0 interior vertices\n", + "Info : [100%] Meshing curve 160 (Line)\n", + "Debug : Meshing curve 160 (Line): 0 interior vertices\n", + "Info : [100%] Meshing curve 161 (Line)\n", + "Debug : Meshing curve 161 (Line): 9 interior vertices\n", + "Info : [100%] Meshing curve 162 (Line)\n", + "Debug : Meshing curve 162 (Line): 2 interior vertices\n", + "Info : [100%] Meshing curve 163 (Line)\n", + "Debug : Meshing curve 163 (Line): 9 interior vertices\n", + "Info : [100%] Meshing curve 164 (Line)\n", + "Debug : Meshing curve 164 (Line): 0 interior vertices\n", + "Info : [100%] Meshing curve 165 (Line)\n", + "Debug : Meshing curve 165 (Line): 0 interior vertices\n", + "Info : [100%] Meshing curve 171 (Line)\n", + "Debug : Meshing curve 171 (Line): 0 interior vertices\n", + "Info : [100%] Meshing curve 178 (Line)\n", + "Debug : Meshing curve 178 (Line): 3 interior vertices\n", + "Info : [100%] Meshing curve 179 (Line)\n", + "Debug : Meshing curve 179 (Line): 3 interior vertices\n", + "Info : Done meshing 1D (Wall 0.0483087s, CPU 0.047373s)\n", + "Info : Meshing 2D...\n", + "Info : [ 0%] Meshing surface 7 (Plane, Delaunay)\n", + "Debug : Recovering 24 model edges\n", + "Debug : Recovering 417 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 7\n", + "Debug : Computing mesh size field at mesh nodes 417\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 417 points created -- Worst tri radius is 16.636\n", + "Debug : Point 0.849571 -0.962496 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.849571 -0.962496 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.92425 -0.994632 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.92425 -0.994632 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.974031 -0.994626 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.974031 -0.994626 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.0245666 -0.994823 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.0236 -0.995088 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.0236 -0.995088 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.0624619 -0.983954 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.99922 -0.961566 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.99922 -0.961566 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.04902 -0.961566 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.04902 -0.961566 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.700214 -0.961558 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.700214 -0.961558 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.188237 -0.952773 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.188237 -0.952773 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.18823 -0.952775 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.18823 -0.952775 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.307931 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.307931 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30793 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30793 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.28753 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.28753 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.31247 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.31247 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.312471 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.312471 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.18753 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.18753 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19207 -0.949745 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19207 -0.949745 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.192069 -0.949739 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.192069 -0.949739 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.187542 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.187542 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30793 -0.949572 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30793 -0.949572 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.307931 -0.949571 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.307931 -0.949571 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.299655 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.299655 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.29966 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.29966 -0.950199 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.20862 -0.950133 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.20862 -0.950133 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.208621 -0.950133 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.245862 -0.949827 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.864448 -1.00756 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.857824 -0.981105 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.817402 -0.981659 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.749674 -0.994294 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.864448 -1.00756 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.857824 -0.981105 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.817402 -0.981659 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.749674 -0.994294 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.200345 -0.949739 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.295517 -0.949413 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.295517 -0.949413 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.29552 -0.949413 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.29552 -0.949413 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.241724 -0.949404 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.13618 -0.985957 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.13618 -0.985957 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19621 -0.948615 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19621 -0.948615 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.20862 -0.94909 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.20862 -0.94909 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.196207 -0.948615 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.212759 -0.948615 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.21276 -0.948743 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.21276 -0.948743 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.241724 -0.948584 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.25 -0.948744 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.25 -0.948744 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.241724 -0.948831 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.24172 -0.948831 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.24172 -0.948831 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.313011 -0.979156 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.313011 -0.979156 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.313 -0.979134 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.313 -0.979134 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.2519 -0.998086 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.2519 -0.998086 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.251899 -0.998093 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.251899 -0.998093 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1685 triangles generated, 635 internal nodes\n", + "Info : [ 10%] Meshing surface 8 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 58 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 8\n", + "Debug : Computing mesh size field at mesh nodes 58\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 58 points created -- Worst tri radius is 0.792\n", + "Debug : Point -2.39796 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.29204 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.29204 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -2.39796 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 110 triangles generated, 27 internal nodes\n", + "Info : [ 10%] Meshing surface 9 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 9\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point -1.19207 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30793 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30793 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19207 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30718 -0.9425 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19282 -0.9425 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 20%] Meshing surface 10 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 10\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point -0.307931 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.192069 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.192069 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.307931 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.192824 -0.9425 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.307176 -0.9425 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 20%] Meshing surface 11 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 11\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point 0.307931 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.192069 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.307931 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.192069 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.192824 -0.9425 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.307176 -0.9425 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 20%] Meshing surface 12 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 12\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point 1.30793 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19207 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19207 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30793 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19282 -0.9425 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30718 -0.9425 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 30%] Meshing surface 13 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 58 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 13\n", + "Debug : Computing mesh size field at mesh nodes 58\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 58 points created -- Worst tri radius is 0.792\n", + "Debug : Point 2.39796 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.39796 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.29204 -0.94125 cannot be inserted because it is too close to another point)\n", + "Debug : Point 2.29204 -0.94375 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 110 triangles generated, 27 internal nodes\n", + "Info : [ 30%] Meshing surface 35 (Plane, Delaunay)\n", + "Debug : Recovering 24 model edges\n", + "Debug : Recovering 326 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 35\n", + "Debug : Computing mesh size field at mesh nodes 326\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 326 points created -- Worst tri radius is 47.641\n", + "Debug : Point -0.312471 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point 0.312471 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.18753 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.18753 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.31243 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.31243 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.8484 -0.80827 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.8484 -0.80827 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1482 triangles generated, 579 internal nodes\n", + "Info : [ 40%] Meshing surface 36 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 36\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point 1.19207 -0.84625 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19207 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30793 -0.84625 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30793 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.19282 -0.8475 cannot be inserted because it is too close to another point)\n", + "Debug : Point 1.30718 -0.8475 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 40%] Meshing surface 37 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 34 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 37\n", + "Debug : Computing mesh size field at mesh nodes 34\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 34 points created -- Worst tri radius is 0.800\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 62 triangles generated, 15 internal nodes\n", + "Info : [ 40%] Meshing surface 38 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 34 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 38\n", + "Debug : Computing mesh size field at mesh nodes 34\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 34 points created -- Worst tri radius is 0.800\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 62 triangles generated, 15 internal nodes\n", + "Info : [ 50%] Meshing surface 39 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 62 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 39\n", + "Debug : Computing mesh size field at mesh nodes 62\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 62 points created -- Worst tri radius is 0.794\n", + "Debug : Point -1.30793 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19207 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30793 -0.84625 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19207 -0.84625 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.19282 -0.8475 cannot be inserted because it is too close to another point)\n", + "Debug : Point -1.30718 -0.8475 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 114 triangles generated, 27 internal nodes\n", + "Info : [ 50%] Meshing surface 42 (Plane, Delaunay)\n", + "Debug : Recovering 8 model edges\n", + "Debug : Recovering 99 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 42\n", + "Debug : Computing mesh size field at mesh nodes 99\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 99 points created -- Worst tri radius is 9.102\n", + "Debug : Point 0.187542 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : Point -0.187542 -0.84875 cannot be inserted because it is too close to another point)\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 613 triangles generated, 258 internal nodes\n", + "Info : [ 60%] Meshing surface 43 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 34 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 43\n", + "Debug : Computing mesh size field at mesh nodes 34\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 34 points created -- Worst tri radius is 0.800\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 62 triangles generated, 15 internal nodes\n", + "Info : [ 60%] Meshing surface 44 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 34 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 44\n", + "Debug : Computing mesh size field at mesh nodes 34\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 34 points created -- Worst tri radius is 0.800\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 62 triangles generated, 15 internal nodes\n", + "Info : [ 60%] Meshing surface 49 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 98 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 49\n", + "Debug : Computing mesh size field at mesh nodes 98\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 98 points created -- Worst tri radius is 11.057\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1506 triangles generated, 705 internal nodes\n", + "Info : [ 70%] Meshing surface 51 (Plane, Delaunay)\n", + "Debug : Recovering 5 model edges\n", + "Debug : Recovering 135 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 51\n", + "Debug : Computing mesh size field at mesh nodes 135\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 135 points created -- Worst tri radius is 5.960\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 539 triangles generated, 203 internal nodes\n", + "Info : [ 70%] Meshing surface 52 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 98 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 52\n", + "Debug : Computing mesh size field at mesh nodes 98\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 98 points created -- Worst tri radius is 11.057\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1522 triangles generated, 713 internal nodes\n", + "Info : [ 70%] Meshing surface 54 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 102 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 54\n", + "Debug : Computing mesh size field at mesh nodes 102\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 102 points created -- Worst tri radius is 10.917\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1608 triangles generated, 754 internal nodes\n", + "Info : [ 80%] Meshing surface 56 (Plane, Delaunay)\n", + "Debug : Recovering 5 model edges\n", + "Debug : Recovering 135 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 56\n", + "Debug : Computing mesh size field at mesh nodes 135\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 135 points created -- Worst tri radius is 5.960\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 539 triangles generated, 203 internal nodes\n", + "Info : [ 80%] Meshing surface 57 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 126 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 57\n", + "Debug : Computing mesh size field at mesh nodes 126\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 126 points created -- Worst tri radius is 5.990\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 486 triangles generated, 181 internal nodes\n", + "Info : [ 90%] Meshing surface 59 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 102 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 59\n", + "Debug : Computing mesh size field at mesh nodes 102\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 102 points created -- Worst tri radius is 10.917\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1612 triangles generated, 756 internal nodes\n", + "Info : [ 90%] Meshing surface 60 (Plane, Delaunay)\n", + "Debug : Recovering 5 model edges\n", + "Debug : Recovering 103 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 60\n", + "Debug : Computing mesh size field at mesh nodes 103\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 103 points created -- Worst tri radius is 11.128\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1619 triangles generated, 759 internal nodes\n", + "Info : [ 90%] Meshing surface 61 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 126 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 61\n", + "Debug : Computing mesh size field at mesh nodes 126\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 126 points created -- Worst tri radius is 5.990\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 494 triangles generated, 185 internal nodes\n", + "Info : [100%] Meshing surface 62 (Plane, Delaunay)\n", + "Debug : Recovering 4 model edges\n", + "Debug : Recovering 86 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 62\n", + "Debug : Computing mesh size field at mesh nodes 86\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 86 points created -- Worst tri radius is 6.043\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 326 triangles generated, 121 internal nodes\n", + "Info : [100%] Meshing surface 63 (Plane, Delaunay)\n", + "Debug : Recovering 5 model edges\n", + "Debug : Recovering 103 mesh edges (0 not recovered)\n", + "Debug : Boundary edges recovered for surface 63\n", + "Debug : Computing mesh size field at mesh nodes 103\n", + "Debug : Delaunizing the initial mesh\n", + "Debug : Starting to add internal nodes\n", + "Debug : 103 points created -- Worst tri radius is 11.128\n", + "Debug : laplacian smoothing ...\n", + "Debug : Type 16 1623 triangles generated, 761 internal nodes\n", + "Info : Done meshing 2D (Wall 0.127256s, CPU 0.122115s)\n", + "Info : 8547 nodes 18360 elements\n", + "Debug : Minimum mesh quality (ICN) = 0.367733\n", + "Debug : Renumbering for potentially partial mesh save\n", + "Info : Removing duplicate mesh elements...\n", + "Info : Done removing duplicate mesh elements\n", + "Info : Removing duplicate mesh nodes...\n", + "Info : Found 0 duplicate nodes \n", + "Info : No duplicate nodes found\n", + "Debug : Renumbering for potentially partial mesh save\n", + "Debug : Decoded option name 'Mesh' . 'MshFileVersion' (index 0)\n", + "Info : Writing './output/gmsh.msh'...\n", + "Info : Done writing './output/gmsh.msh'\n", + "Info : Writing './output/gmsh.vtk'...\n", + "Info : Done writing './output/gmsh.vtk'\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m859\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd meshing.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m866\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mEnd meshing heat-charge simulation.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:04\u001b[0m.\u001b[1;36m872\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mMesh heat-charge simulation time (s): 0.5927\u001b[0m \n", + "Resetting DEVSIM\n", + "\u001b[1;31m[\u001b[0m\u001b[1;36m25\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m08\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m27\u001b[0m\u001b[31m \u001b[0m\u001b[1;92m13:33:05\u001b[0m\u001b[31m.\u001b[0m\u001b[1;36m031\u001b[0m\u001b[1;31m]\u001b[0m\u001b[1;31m[\u001b[0m\u001b[31mUSER \u001b[0m\u001b[1;31m]\u001b[0m\u001b[31m: \u001b[0m\u001b[39mWARNING: BC not introduced: % ('zone_1/bc_3',)\u001b[0m\u001b[31m \u001b[0m\n", + "\u001b[1;31m[\u001b[0m\u001b[1;36m25\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m08\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m27\u001b[0m\u001b[31m \u001b[0m\u001b[1;92m13:33:05\u001b[0m\u001b[31m.\u001b[0m\u001b[1;36m031\u001b[0m\u001b[1;31m]\u001b[0m\u001b[1;31m[\u001b[0m\u001b[31mUSER \u001b[0m\u001b[1;31m]\u001b[0m\u001b[31m: \u001b[0m\u001b[39mnot all arguments converted during string formatting\u001b[0m\u001b[31m \u001b[0m\n", + "\u001b[1;31m[\u001b[0m\u001b[1;36m25\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m08\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m27\u001b[0m\u001b[31m \u001b[0m\u001b[1;92m13:33:05\u001b[0m\u001b[31m.\u001b[0m\u001b[1;36m044\u001b[0m\u001b[1;31m]\u001b[0m\u001b[1;31m[\u001b[0m\u001b[31mUSER \u001b[0m\u001b[1;31m]\u001b[0m\u001b[31m: \u001b[0m\u001b[39mWARNING: BC not introduced: % ('zone_3/bc_4',)\u001b[0m\u001b[31m \u001b[0m\n", + "\u001b[1;31m[\u001b[0m\u001b[1;36m25\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m08\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m27\u001b[0m\u001b[31m \u001b[0m\u001b[1;92m13:33:05\u001b[0m\u001b[31m.\u001b[0m\u001b[1;36m044\u001b[0m\u001b[1;31m]\u001b[0m\u001b[1;31m[\u001b[0m\u001b[31mUSER \u001b[0m\u001b[1;31m]\u001b[0m\u001b[31m: \u001b[0m\u001b[39mnot all arguments converted during string formatting\u001b[0m\u001b[31m \u001b[0m\n", + "\u001b[1;31m[\u001b[0m\u001b[1;36m25\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m08\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m27\u001b[0m\u001b[31m \u001b[0m\u001b[1;92m13:33:05\u001b[0m\u001b[31m.\u001b[0m\u001b[1;36m056\u001b[0m\u001b[1;31m]\u001b[0m\u001b[1;31m[\u001b[0m\u001b[31mUSER \u001b[0m\u001b[1;31m]\u001b[0m\u001b[31m: \u001b[0m\u001b[39mWARNING: BC not introduced: % ('zone_3/bc_5',)\u001b[0m\u001b[31m \u001b[0m\n", + "\u001b[1;31m[\u001b[0m\u001b[1;36m25\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m08\u001b[0m\u001b[31m-\u001b[0m\u001b[1;36m27\u001b[0m\u001b[31m \u001b[0m\u001b[1;92m13:33:05\u001b[0m\u001b[31m.\u001b[0m\u001b[1;36m056\u001b[0m\u001b[1;31m]\u001b[0m\u001b[1;31m[\u001b[0m\u001b[31mUSER \u001b[0m\u001b[1;31m]\u001b[0m\u001b[31m: \u001b[0m\u001b[39mnot all arguments converted during string formatting\u001b[0m\u001b[31m \u001b[0m\n", + "Physical group name bc_0 has 0 Tetrahedra.\n", + "Physical group name bc_0 has 0 Triangles.\n", + "Physical group name bc_0 has 10 Lines.\n", + "Physical group name bc_0 has 11 Points.\n", + "Physical group name bc_1 has 0 Tetrahedra.\n", + "Physical group name bc_1 has 0 Triangles.\n", + "Physical group name bc_1 has 44 Lines.\n", + "Physical group name bc_1 has 47 Points.\n", + "Physical group name bc_2 has 0 Tetrahedra.\n", + "Physical group name bc_2 has 0 Triangles.\n", + "Physical group name bc_2 has 643 Lines.\n", + "Physical group name bc_2 has 645 Points.\n", + "Physical group name bc_3 has 0 Tetrahedra.\n", + "Physical group name bc_3 has 0 Triangles.\n", + "Physical group name bc_3 has 22 Lines.\n", + "Physical group name bc_3 has 24 Points.\n", + "Physical group name bc_4 has 0 Tetrahedra.\n", + "Physical group name bc_4 has 0 Triangles.\n", + "Physical group name bc_4 has 42 Lines.\n", + "Physical group name bc_4 has 43 Points.\n", + "Physical group name bc_5 has 0 Tetrahedra.\n", + "Physical group name bc_5 has 0 Triangles.\n", + "Physical group name bc_5 has 42 Lines.\n", + "Physical group name bc_5 has 43 Points.\n", + "Physical group name bc_6 has 0 Tetrahedra.\n", + "Physical group name bc_6 has 0 Triangles.\n", + "Physical group name bc_6 has 44 Lines.\n", + "Physical group name bc_6 has 46 Points.\n", + "Physical group name zone_1 has 0 Tetrahedra.\n", + "Physical group name zone_1 has 4195 Triangles.\n", + "Physical group name zone_1 has 6652 Lines.\n", + "Physical group name zone_1 has 2459 Points.\n", + "Physical group name zone_3 has 0 Tetrahedra.\n", + "Physical group name zone_3 has 12611 Triangles.\n", + "Physical group name zone_3 has 19302 Lines.\n", + "Physical group name zone_3 has 6692 Points.\n", + "Device device has 8506 coordinates with max index 8506\n", + "Region zone_1 has 2459 nodes.\n", + "Region zone_3 has 6692 nodes.\n", + "Contact zone_1_bc_0 in region zone_1 with 11 nodes\n", + "Warning, contact \"zone_1_bc_0\" shares a node with contact \"zone_1_bc_1\" (repeated 1 times)\n", + "Contact zone_1_bc_1 in region zone_1 with 47 nodes\n", + "Warning, contact \"zone_1_bc_1\" shares a node with contact \"zone_1_bc_3\" (repeated 1 times)\n", + "Contact zone_1_bc_3 in region zone_1 with 24 nodes\n", + "Warning, contact \"zone_1_bc_3\" shares a node with contact \"zone_3_bc_4\"\n", + "Contact zone_3_bc_4 in region zone_3 with 43 nodes\n", + "Warning, contact \"zone_1_bc_3\" shares a node with contact \"zone_3_bc_5\"\n", + "Contact zone_3_bc_5 in region zone_3 with 43 nodes\n", + "Warning, contact \"zone_1_bc_1\" shares a node with contact \"zone_3_bc_6\" (repeated 1 times)\n", + "Warning, contact \"zone_3_bc_4\" shares a node with contact \"zone_3_bc_6\"\n", + "Warning, contact \"zone_3_bc_5\" shares a node with contact \"zone_3_bc_6\"\n", + "Contact zone_3_bc_6 in region zone_3 with 46 nodes\n", + "Warning, contact \"zone_1_bc_3\" shares a node with interface \"zone_1_bc_2\"\n", + "Warning, contact \"zone_3_bc_5\" shares a node with interface \"zone_1_bc_2\"\n", + "Warning, contact \"zone_3_bc_6\" shares a node with interface \"zone_1_bc_2\" (repeated 1 times)\n", + "Adding interface zone_1_bc_2 with 645, 645 nodes\n", + "Warning: Replacing equation with equation of the same name.\n", + "Region: zone_1, Equation: PotentialEquation, Variable: Potential\n", + "Replacing Node Model Holes in region zone_1 of material Si\n", + "Replacing Node Model Electrons in region zone_1 of material Si\n", + "Warning: Replacing equation with equation of the same name.\n", + "Region: zone_3, Equation: PotentialEquation, Variable: Potential\n", + "Warning: Replacing equation with equation of the same name.\n", + "Region: zone_3, Equation: TemperatureEquation, Variable: T\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:14\u001b[0m.\u001b[1;36m703\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mInitializing with constant thermal conductivity\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:14\u001b[0m.\u001b[1;36m716\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mRamping up doping. Scaling by 1.0\u001b[0m \n", + "Replacing Node Model NetDoping in region zone_1 of material Si\n", + "Replacing Node Model n_i in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_1 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_1 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_1 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_1 of material Si\n", + "Replacing Node Model n_i:T in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_1 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_1 of material Si\n", + "Replacing Node Model NetDoping in region zone_3 of material Si\n", + "Replacing Node Model n_i in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i@en2 in region zone_3 of material Si\n", + "Replacing Node Model n_i:Electrons in region zone_3 of material Si\n", + "Replacing Node Model n_i:Holes in region zone_3 of material Si\n", + "Replacing Node Model n_i:T in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Electrons@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:Holes@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n0:T@n0 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Electrons@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:Holes@n1 in region zone_3 of material Si\n", + "Replacing Edge Model n_i@n1:T@n1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Electrons@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:Holes@en2 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en0 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en1 in region zone_3 of material Si\n", + "Replacing Triangle Edge Model n_i:T@en2 in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", @@ -57259,1131 +22088,5443 @@ "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.76014e+00\tAbsError: 7.64952e+15\n", - " Region: \"zone_1\"\tRelError: 2.30453e-01\tAbsError: 7.86318e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.30319e-01\tAbsError: 3.18462e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.34653e-04\tAbsError: 4.67856e-02\n", - " Region: \"zone_3\"\tRelError: 1.52969e+00\tAbsError: 7.64952e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.52442e-01\tAbsError: 3.70961e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.23039e-01\tAbsError: 3.93991e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.54074e-01\tAbsError: 3.18463e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.34653e-04\tAbsError: 4.67856e-02\n", + "number of equations 31686\n", "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.60199e+01\tAbsError: 8.22903e+15\n", - " Region: \"zone_1\"\tRelError: 3.43433e+01\tAbsError: 4.09555e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.43433e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.48443e-09\tAbsError: 1.21289e-06\n", - " Region: \"zone_3\"\tRelError: 1.67662e+00\tAbsError: 8.22903e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69667e-01\tAbsError: 4.78919e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69613e-01\tAbsError: 3.43984e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37338e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.48691e-09\tAbsError: 1.21378e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.14370e+00\tAbsError: 5.28119e+15\n", - " Region: \"zone_1\"\tRelError: 1.24540e-01\tAbsError: 3.42249e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.24516e-01\tAbsError: 2.58826e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.40097e-05\tAbsError: 8.34232e-03\n", - " Region: \"zone_3\"\tRelError: 1.01916e+00\tAbsError: 5.28119e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.67272e-01\tAbsError: 2.54892e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.17893e-01\tAbsError: 2.73227e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.33973e-01\tAbsError: 2.53440e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.40097e-05\tAbsError: 8.34232e-03\n", + " Device: \"device\"\tRelError: 1.63614e+09\tAbsError: 2.04000e+20\n", + " Region: \"zone_1\"\tRelError: 1.00000e+00\tAbsError: 5.11725e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00000e+00\tAbsError: 5.11725e-01\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39682e-13\tAbsError: 7.19047e-11\n", + " Region: \"zone_3\"\tRelError: 1.63614e+09\tAbsError: 2.04000e+20\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.18080e+08\tAbsError: 1.01999e+20\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.18064e+08\tAbsError: 1.02001e+20\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00000e+00\tAbsError: 5.13531e-01\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.55896e-13\tAbsError: 7.67687e-11\n", "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.73485e+00\tAbsError: 1.08973e+15\n", - " Region: \"zone_1\"\tRelError: 2.25350e+00\tAbsError: 6.85700e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.25339e+00\tAbsError: 3.07635e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", - " Region: \"zone_3\"\tRelError: 1.48136e+00\tAbsError: 1.08973e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41054e-01\tAbsError: 6.25022e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.24005e-01\tAbsError: 4.64711e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16189e-01\tAbsError: 3.07637e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08792e-04\tAbsError: 3.78065e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.95220e-01\tAbsError: 1.79561e+15\n", - " Region: \"zone_1\"\tRelError: 1.18421e-01\tAbsError: 4.83315e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18312e-01\tAbsError: 1.05217e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08967e-04\tAbsError: 3.78098e-02\n", - " Region: \"zone_3\"\tRelError: 3.76798e-01\tAbsError: 1.79561e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04475e-01\tAbsError: 9.41675e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.29051e-01\tAbsError: 8.53937e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.31629e-02\tAbsError: 1.05218e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.08989e-04\tAbsError: 3.78175e-02\n", + " Device: \"device\"\tRelError: 1.40045e+05\tAbsError: 1.61907e+20\n", + " Region: \"zone_1\"\tRelError: 3.47294e-01\tAbsError: 5.08684e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.30901e-01\tAbsError: 8.68355e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63934e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.40044e+05\tAbsError: 1.61907e+20\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.39049e+05\tAbsError: 7.45343e+19\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.95347e+02\tAbsError: 8.73728e+19\n", + " Equation: \"PotentialEquation\"\tRelError: 2.92913e-01\tAbsError: 8.08560e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63934e-02\tAbsError: 5.00000e+00\n", "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.38677e+00\tAbsError: 6.38966e+14\n", - " Region: \"zone_1\"\tRelError: 4.51470e-01\tAbsError: 3.37904e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.51448e-01\tAbsError: 2.58448e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", - " Region: \"zone_3\"\tRelError: 9.35299e-01\tAbsError: 6.38966e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42607e-01\tAbsError: 3.02038e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.95795e-01\tAbsError: 3.36928e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.68743e-02\tAbsError: 2.57679e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.28638e-05\tAbsError: 7.94563e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.33633e-02\tAbsError: 2.89598e+14\n", - " Region: \"zone_1\"\tRelError: 8.40256e-03\tAbsError: 3.97616e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.28859e-03\tAbsError: 1.99593e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13973e-04\tAbsError: 3.95620e-02\n", - " Region: \"zone_3\"\tRelError: 8.49608e-02\tAbsError: 2.89598e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.18487e-02\tAbsError: 1.59566e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.99528e-03\tAbsError: 1.30032e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.30026e-02\tAbsError: 2.10101e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.14128e-04\tAbsError: 3.96148e-02\n", + " Device: \"device\"\tRelError: 1.03985e+05\tAbsError: 1.66186e+18\n", + " Region: \"zone_1\"\tRelError: 6.06328e-01\tAbsError: 5.08695e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.90199e-01\tAbsError: 8.69500e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61290e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.03984e+05\tAbsError: 1.66186e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.17973e+03\tAbsError: 1.32393e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.68038e+04\tAbsError: 1.52946e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 4.66222e-01\tAbsError: 8.09377e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61290e-02\tAbsError: 5.00000e+00\n", "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.41554e-01\tAbsError: 2.20715e+14\n", - " Region: \"zone_1\"\tRelError: 2.89595e-02\tAbsError: 1.67352e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.89377e-02\tAbsError: 9.16565e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18085e-05\tAbsError: 7.56954e-03\n", - " Region: \"zone_3\"\tRelError: 3.12594e-01\tAbsError: 2.20715e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94155e-01\tAbsError: 1.01533e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.87246e-02\tAbsError: 1.19182e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.96932e-02\tAbsError: 9.16570e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.18152e-05\tAbsError: 7.57200e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.14441e-02\tAbsError: 2.12438e+13\n", - " Region: \"zone_1\"\tRelError: 4.74421e-03\tAbsError: 7.64054e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.74205e-03\tAbsError: 1.52893e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.15714e-06\tAbsError: 7.48765e-04\n", - " Region: \"zone_3\"\tRelError: 1.66999e-02\tAbsError: 2.12438e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38752e-03\tAbsError: 9.42368e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.26682e-03\tAbsError: 1.18201e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40434e-02\tAbsError: 1.60606e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.16115e-06\tAbsError: 7.50158e-04\n", + " Device: \"device\"\tRelError: 3.13958e+04\tAbsError: 2.87339e+17\n", + " Region: \"zone_1\"\tRelError: 1.59320e+00\tAbsError: 5.08561e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57670e+00\tAbsError: 8.56052e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64936e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 3.13942e+04\tAbsError: 2.87339e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.65010e+04\tAbsError: 1.50348e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.48922e+04\tAbsError: 2.72304e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 9.50011e-01\tAbsError: 8.42269e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64946e-02\tAbsError: 5.00000e+00\n", "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.19808e-02\tAbsError: 3.06344e+13\n", - " Region: \"zone_1\"\tRelError: 2.04251e-02\tAbsError: 4.10278e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.04136e-02\tAbsError: 1.00349e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", - " Region: \"zone_3\"\tRelError: 6.15557e-02\tAbsError: 3.06344e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.38926e-02\tAbsError: 1.71938e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.73234e-03\tAbsError: 1.34406e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.91920e-03\tAbsError: 1.01109e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.15275e-05\tAbsError: 4.00243e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 6.16301e-04\tAbsError: 4.20516e+11\n", - " Region: \"zone_1\"\tRelError: 1.45428e-04\tAbsError: 1.24820e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41835e-04\tAbsError: 4.38423e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.59201e-06\tAbsError: 1.24776e-03\n", - " Region: \"zone_3\"\tRelError: 4.70873e-04\tAbsError: 4.20516e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.02345e-05\tAbsError: 1.56877e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.16841e-05\tAbsError: 2.63639e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.25363e-04\tAbsError: 4.49118e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.59205e-06\tAbsError: 1.24780e-03\n", + " Device: \"device\"\tRelError: 1.36021e+05\tAbsError: 5.15974e+16\n", + " Region: \"zone_1\"\tRelError: 1.97568e+01\tAbsError: 2.25684e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97496e+01\tAbsError: 9.27525e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.14608e-03\tAbsError: 2.16409e+00\n", + " Region: \"zone_3\"\tRelError: 1.36001e+05\tAbsError: 5.15974e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.59447e+04\tAbsError: 1.60531e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.00364e+04\tAbsError: 3.55443e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.99278e+01\tAbsError: 9.30809e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.13177e-03\tAbsError: 2.49545e+00\n", "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.53920e-03\tAbsError: 1.84314e+12\n", - " Region: \"zone_1\"\tRelError: 2.29752e-04\tAbsError: 2.41443e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.29064e-04\tAbsError: 2.20702e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", - " Region: \"zone_3\"\tRelError: 1.30944e-03\tAbsError: 1.84314e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11485e-04\tAbsError: 5.81096e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.63190e-04\tAbsError: 1.26205e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 9.34079e-04\tAbsError: 2.25011e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.88407e-07\tAbsError: 2.39236e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.65259e-03\tAbsError: 1.21744e+12\n", - " Region: \"zone_1\"\tRelError: 3.89816e-04\tAbsError: 8.01243e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.89587e-04\tAbsError: 6.08661e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.29074e-07\tAbsError: 7.95156e-05\n", - " Region: \"zone_3\"\tRelError: 1.26277e-03\tAbsError: 1.21744e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.77440e-05\tAbsError: 6.11805e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.74827e-05\tAbsError: 6.05636e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.14732e-03\tAbsError: 6.26783e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.29108e-07\tAbsError: 7.95286e-05\n", + " Device: \"device\"\tRelError: 2.59187e+05\tAbsError: 3.16103e+16\n", + " Region: \"zone_1\"\tRelError: 6.22405e+01\tAbsError: 7.70319e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.22383e+01\tAbsError: 9.70843e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20749e-03\tAbsError: 6.73234e-01\n", + " Region: \"zone_3\"\tRelError: 2.59125e+05\tAbsError: 3.16103e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43058e+03\tAbsError: 1.81721e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.09817e+04\tAbsError: 1.34382e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83712e+05\tAbsError: 9.75233e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.86284e-03\tAbsError: 8.76030e-01\n", "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.51045e-04\tAbsError: 2.02519e+11\n", - " Region: \"zone_1\"\tRelError: 4.54891e-05\tAbsError: 1.12868e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.51644e-05\tAbsError: 1.25671e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.24705e-07\tAbsError: 1.12743e-04\n", - " Region: \"zone_3\"\tRelError: 2.05556e-04\tAbsError: 2.02519e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12163e-05\tAbsError: 1.36505e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10724e-05\tAbsError: 6.60139e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82943e-04\tAbsError: 1.30848e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.24777e-07\tAbsError: 1.12769e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.61183e-04\tAbsError: 7.68860e+10\n", - " Region: \"zone_1\"\tRelError: 3.88511e-05\tAbsError: 7.71614e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.86291e-05\tAbsError: 4.56521e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.21984e-07\tAbsError: 7.71157e-05\n", - " Region: \"zone_3\"\tRelError: 1.22332e-04\tAbsError: 7.68860e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.07272e-06\tAbsError: 3.66037e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.10133e-06\tAbsError: 4.02822e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13936e-04\tAbsError: 4.66713e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.22064e-07\tAbsError: 7.71436e-05\n", + " Device: \"device\"\tRelError: 7.12663e+03\tAbsError: 3.14689e+16\n", + " Region: \"zone_1\"\tRelError: 4.72994e+02\tAbsError: 6.49498e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.72992e+02\tAbsError: 9.15351e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83288e-03\tAbsError: 5.57963e-01\n", + " Region: \"zone_3\"\tRelError: 6.65364e+03\tAbsError: 3.14689e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.20208e+03\tAbsError: 1.48352e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.38425e+03\tAbsError: 1.66337e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.73100e+01\tAbsError: 9.20547e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27330e-03\tAbsError: 6.94052e-01\n", "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.09882e-04\tAbsError: 1.05387e+11\n", - " Region: \"zone_1\"\tRelError: 1.91896e-05\tAbsError: 8.11152e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.91665e-05\tAbsError: 7.26801e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.30974e-08\tAbsError: 8.03884e-06\n", - " Region: \"zone_3\"\tRelError: 9.06925e-05\tAbsError: 1.05387e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41210e-06\tAbsError: 4.74044e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.36012e-06\tAbsError: 5.79823e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.78972e-05\tAbsError: 7.44246e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.31071e-08\tAbsError: 8.04242e-06\n", + " Device: \"device\"\tRelError: 3.25004e+03\tAbsError: 1.76010e+16\n", + " Region: \"zone_1\"\tRelError: 9.19676e+01\tAbsError: 5.50223e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.19661e+01\tAbsError: 8.57702e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52803e-03\tAbsError: 4.64453e-01\n", + " Region: \"zone_3\"\tRelError: 3.15807e+03\tAbsError: 1.76010e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38438e+03\tAbsError: 8.25190e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.87348e+02\tAbsError: 9.34914e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.63381e+01\tAbsError: 8.62287e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77255e-03\tAbsError: 5.40214e-01\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.96247e+04\tAbsError: 1.27123e+16\n", + " Region: \"zone_1\"\tRelError: 3.51883e+02\tAbsError: 4.99107e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.51882e+02\tAbsError: 8.12041e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37678e-03\tAbsError: 4.17903e-01\n", + " Region: \"zone_3\"\tRelError: 3.92729e+04\tAbsError: 1.27123e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.39604e+04\tAbsError: 8.81526e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.42018e+04\tAbsError: 3.89706e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11070e+03\tAbsError: 8.16683e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59620e-03\tAbsError: 4.85693e-01\n", "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.18292e-04\tAbsError: 7.64415e+10\n", - " Region: \"zone_1\"\tRelError: 2.82416e-05\tAbsError: 9.49574e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.82143e-05\tAbsError: 3.50165e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.72335e-08\tAbsError: 9.46073e-06\n", - " Region: \"zone_3\"\tRelError: 9.00505e-05\tAbsError: 7.64415e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.51691e-06\tAbsError: 4.30037e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.49401e-06\tAbsError: 3.34378e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 8.30124e-05\tAbsError: 3.56592e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.72411e-08\tAbsError: 9.46340e-06\n", + " Device: \"device\"\tRelError: 3.78049e+03\tAbsError: 5.88817e+15\n", + " Region: \"zone_1\"\tRelError: 1.45825e+03\tAbsError: 5.57457e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45825e+03\tAbsError: 7.78390e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58260e-03\tAbsError: 4.79618e-01\n", + " Region: \"zone_3\"\tRelError: 2.32224e+03\tAbsError: 5.88817e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.48118e+03\tAbsError: 3.37968e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.56891e+01\tAbsError: 2.50849e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.15370e+02\tAbsError: 7.83250e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.90372e-03\tAbsError: 5.78164e-01\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.96908e+03\tAbsError: 5.55927e+15\n", + " Region: \"zone_1\"\tRelError: 1.41061e+02\tAbsError: 6.59790e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41059e+02\tAbsError: 7.34749e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94879e-03\tAbsError: 5.86315e-01\n", + " Region: \"zone_3\"\tRelError: 2.82802e+03\tAbsError: 5.55927e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.35912e+01\tAbsError: 3.31308e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.66709e+03\tAbsError: 2.24619e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09733e+03\tAbsError: 7.40157e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27936e-03\tAbsError: 6.86083e-01\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 3.25024e+02\tAbsError: 4.77329e+15\n", + " Region: \"zone_1\"\tRelError: 5.59710e+00\tAbsError: 6.20159e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.59528e+00\tAbsError: 6.86986e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82559e-03\tAbsError: 5.51461e-01\n", + " Region: \"zone_3\"\tRelError: 3.19427e+02\tAbsError: 4.77329e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.15843e+02\tAbsError: 2.46072e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.99963e-01\tAbsError: 2.31258e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58192e+00\tAbsError: 6.92991e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20339e-03\tAbsError: 6.66499e-01\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 3.25556e+01\tAbsError: 3.52513e+15\n", + " Region: \"zone_1\"\tRelError: 2.04222e+00\tAbsError: 6.09628e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04041e+00\tAbsError: 6.32910e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.81191e-03\tAbsError: 5.46337e-01\n", + " Region: \"zone_3\"\tRelError: 3.05134e+01\tAbsError: 3.52513e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.05080e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96909e+01\tAbsError: 1.47433e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82030e+00\tAbsError: 6.39672e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18849e-03\tAbsError: 6.60546e-01\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.56443e+01\tAbsError: 4.17414e+15\n", + " Region: \"zone_1\"\tRelError: 6.43424e-01\tAbsError: 5.53952e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.41773e-01\tAbsError: 5.68664e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65129e-03\tAbsError: 4.97085e-01\n", + " Region: \"zone_3\"\tRelError: 1.50009e+01\tAbsError: 4.17414e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 2.35478e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.72812e+00\tAbsError: 1.81937e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.27075e+00\tAbsError: 5.76515e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99182e-03\tAbsError: 5.99991e-01\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.18388e+01\tAbsError: 5.30198e+15\n", + " Region: \"zone_1\"\tRelError: 4.18901e-01\tAbsError: 4.95624e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.17415e-01\tAbsError: 4.89909e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48590e-03\tAbsError: 4.46633e-01\n", + " Region: \"zone_3\"\tRelError: 1.14199e+01\tAbsError: 5.30198e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 3.17316e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.19056e-01\tAbsError: 2.12882e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59902e+00\tAbsError: 4.99528e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78924e-03\tAbsError: 5.38007e-01\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 1.43802e+01\tAbsError: 8.77227e+15\n", + " Region: \"zone_1\"\tRelError: 3.38643e-01\tAbsError: 3.20645e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.37703e-01\tAbsError: 3.84197e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.39813e-04\tAbsError: 2.82226e-01\n", + " Region: \"zone_3\"\tRelError: 1.40416e+01\tAbsError: 8.77227e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00000e+00\tAbsError: 5.24831e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.16302e+00\tAbsError: 3.52396e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.87740e+00\tAbsError: 3.96792e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14376e-03\tAbsError: 3.43522e-01\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 9.92517e+02\tAbsError: 1.50280e+16\n", + " Region: \"zone_1\"\tRelError: 4.46286e-01\tAbsError: 1.79873e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.45771e-01\tAbsError: 2.52672e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.15103e-04\tAbsError: 1.54606e-01\n", + " Region: \"zone_3\"\tRelError: 9.92071e+02\tAbsError: 1.50280e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.76946e+02\tAbsError: 9.24048e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.44780e+01\tAbsError: 5.78757e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.46295e-01\tAbsError: 2.58872e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.27621e-04\tAbsError: 1.88385e-01\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 4.64692e+05\tAbsError: 1.64112e+16\n", + " Region: \"zone_1\"\tRelError: 1.10508e+01\tAbsError: 9.55593e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10505e+01\tAbsError: 3.13672e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.13916e-04\tAbsError: 6.41920e-02\n", + " Region: \"zone_3\"\tRelError: 4.64681e+05\tAbsError: 1.64112e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.35296e+02\tAbsError: 1.21624e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.64445e+05\tAbsError: 4.24880e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.85320e-01\tAbsError: 3.16975e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.60299e-04\tAbsError: 7.81105e-02\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 1.62740e+03\tAbsError: 9.13426e+15\n", + " Region: \"zone_1\"\tRelError: 3.25476e+00\tAbsError: 5.19479e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.25473e+00\tAbsError: 4.36418e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.76730e-05\tAbsError: 8.30616e-03\n", + " Region: \"zone_3\"\tRelError: 1.62415e+03\tAbsError: 9.13426e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46089e+03\tAbsError: 4.88112e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.62876e+02\tAbsError: 4.25314e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.82041e-01\tAbsError: 4.47896e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.10474e-05\tAbsError: 9.31639e-03\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 6.51216e+04\tAbsError: 1.93640e+15\n", + " Region: \"zone_1\"\tRelError: 2.72374e-01\tAbsError: 4.02433e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.72346e-01\tAbsError: 3.20451e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.73140e-05\tAbsError: 8.19820e-03\n", + " Region: \"zone_3\"\tRelError: 6.51213e+04\tAbsError: 1.93640e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.48318e+04\tAbsError: 5.81883e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.89469e+02\tAbsError: 1.35451e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.20644e-02\tAbsError: 3.34681e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.93428e-05\tAbsError: 8.80743e-03\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 5.03242e+03\tAbsError: 9.17331e+14\n", + " Region: \"zone_1\"\tRelError: 3.00131e-01\tAbsError: 2.68074e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.00128e-01\tAbsError: 2.57492e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52546e-06\tAbsError: 1.05816e-03\n", + " Region: \"zone_3\"\tRelError: 5.03212e+03\tAbsError: 9.17331e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.03106e+03\tAbsError: 4.51325e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.97623e-01\tAbsError: 4.66006e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.47294e-02\tAbsError: 2.58203e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.85177e-06\tAbsError: 1.15614e-03\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 4.42459e+03\tAbsError: 2.59858e+14\n", + " Region: \"zone_1\"\tRelError: 7.73489e-02\tAbsError: 1.37314e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.73466e-02\tAbsError: 1.30511e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.26654e-06\tAbsError: 6.80295e-04\n", + " Region: \"zone_3\"\tRelError: 4.42452e+03\tAbsError: 2.59858e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.36605e+03\tAbsError: 1.29539e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.84451e+01\tAbsError: 1.30318e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.35711e-02\tAbsError: 1.54410e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.44849e-06\tAbsError: 7.34929e-04\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 8.14645e+05\tAbsError: 5.60775e+13\n", + " Region: \"zone_1\"\tRelError: 1.77692e-02\tAbsError: 7.34022e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77686e-02\tAbsError: 5.40611e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.44386e-07\tAbsError: 1.93410e-04\n", + " Region: \"zone_3\"\tRelError: 8.14645e+05\tAbsError: 5.60775e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.14644e+05\tAbsError: 2.83815e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.45792e-01\tAbsError: 2.76960e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.43082e-03\tAbsError: 5.81520e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.97310e-07\tAbsError: 2.09302e-04\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 2.52821e+04\tAbsError: 7.06363e+10\n", + " Region: \"zone_1\"\tRelError: 2.53034e-04\tAbsError: 4.28356e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52892e-04\tAbsError: 1.64899e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42166e-07\tAbsError: 4.26707e-05\n", + " Region: \"zone_3\"\tRelError: 2.52821e+04\tAbsError: 7.06363e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52821e+04\tAbsError: 4.82046e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.80736e-03\tAbsError: 2.24318e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45545e-03\tAbsError: 1.71439e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53779e-07\tAbsError: 4.61577e-05\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 5.16531e-02\tAbsError: 1.18489e+10\n", + " Region: \"zone_1\"\tRelError: 5.70770e-05\tAbsError: 4.72086e-07\n", + " Equation: \"PotentialEquation\"\tRelError: 5.70755e-05\tAbsError: 1.37639e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52699e-09\tAbsError: 4.58322e-07\n", + " Region: \"zone_3\"\tRelError: 5.15960e-02\tAbsError: 1.18489e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.12664e-02\tAbsError: 1.00938e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.59222e-06\tAbsError: 1.75504e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.27055e-04\tAbsError: 1.46782e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65908e-09\tAbsError: 4.97982e-07\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 1.38752e-05\tAbsError: 3.59897e+08\n", + " Region: \"zone_1\"\tRelError: 2.03500e-06\tAbsError: 8.67821e-08\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03471e-06\tAbsError: 2.55294e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.88332e-10\tAbsError: 8.65268e-08\n", + " Region: \"zone_3\"\tRelError: 1.18402e-05\tAbsError: 3.59897e+08\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.14487e-08\tAbsError: 2.79678e+08\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.13583e-08\tAbsError: 8.02184e+07\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17571e-05\tAbsError: 2.65333e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.11265e-10\tAbsError: 9.34086e-08\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:33:35\u001b[0m.\u001b[1;36m976\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mApplying specified thermal conductivity\u001b[0m \n", + "number of equations 31686\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.34194e+02\tAbsError: 2.36799e+15\n", + " Region: \"zone_1\"\tRelError: 2.76890e+01\tAbsError: 5.00160e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76726e+01\tAbsError: 1.59784e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63935e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.06505e+02\tAbsError: 2.36799e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.48236e-01\tAbsError: 1.71727e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.53562e-01\tAbsError: 6.50728e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05387e+02\tAbsError: 3.75989e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63935e-02\tAbsError: 5.00000e+00\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 5.35248e+01\tAbsError: 6.15463e+15\n", + " Region: \"zone_1\"\tRelError: 1.22679e+01\tAbsError: 5.00275e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22518e+01\tAbsError: 2.74651e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61179e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 4.12569e+01\tAbsError: 6.15463e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.61206e-01\tAbsError: 3.11239e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.58867e-01\tAbsError: 3.04223e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.03207e+01\tAbsError: 2.82705e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61180e-02\tAbsError: 5.00000e+00\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.06862e+02\tAbsError: 2.80501e+15\n", + " Region: \"zone_1\"\tRelError: 1.19310e+01\tAbsError: 1.22763e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19270e+01\tAbsError: 3.69527e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.02928e-03\tAbsError: 1.22393e+00\n", + " Region: \"zone_3\"\tRelError: 9.49310e+01\tAbsError: 2.80501e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.83900e-01\tAbsError: 2.15211e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.80779e-01\tAbsError: 6.52907e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.43623e+01\tAbsError: 3.72068e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.03144e-03\tAbsError: 1.22458e+00\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 7.71404e+00\tAbsError: 1.07235e+15\n", + " Region: \"zone_1\"\tRelError: 5.60627e+00\tAbsError: 8.45686e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.60357e+00\tAbsError: 6.04892e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.70604e-03\tAbsError: 8.45081e-01\n", + " Region: \"zone_3\"\tRelError: 2.10777e+00\tAbsError: 1.07235e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.15163e-01\tAbsError: 4.15260e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.25383e-01\tAbsError: 6.57092e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86452e+00\tAbsError: 6.18940e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.70627e-03\tAbsError: 8.45157e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.84448e+00\tAbsError: 4.59299e+14\n", + " Region: \"zone_1\"\tRelError: 7.99737e-01\tAbsError: 2.27889e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.98988e-01\tAbsError: 3.27316e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.48589e-04\tAbsError: 2.27562e-01\n", + " Region: \"zone_3\"\tRelError: 3.04474e+00\tAbsError: 4.59299e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.71332e-02\tAbsError: 3.96765e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.69074e-02\tAbsError: 6.25344e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.92995e+00\tAbsError: 3.39801e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.48949e-04\tAbsError: 2.27669e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.02681e+00\tAbsError: 1.75699e+14\n", + " Region: \"zone_1\"\tRelError: 9.89735e-02\tAbsError: 1.93176e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.83560e-02\tAbsError: 1.39055e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.17554e-04\tAbsError: 1.93037e-01\n", + " Region: \"zone_3\"\tRelError: 9.27841e-01\tAbsError: 1.75699e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11526e-02\tAbsError: 6.00838e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.73325e-02\tAbsError: 1.15615e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.78738e-01\tAbsError: 1.42364e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.17602e-04\tAbsError: 1.93055e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 5.11753e+00\tAbsError: 1.46465e+14\n", + " Region: \"zone_1\"\tRelError: 1.52663e-01\tAbsError: 1.79610e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52604e-01\tAbsError: 8.44671e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87903e-05\tAbsError: 1.78765e-02\n", + " Region: \"zone_3\"\tRelError: 4.96487e+00\tAbsError: 1.46465e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.72901e-02\tAbsError: 9.85349e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.71759e-02\tAbsError: 4.79299e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.93034e+00\tAbsError: 8.79238e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.88038e-05\tAbsError: 1.78805e-02\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.68196e-01\tAbsError: 2.09756e+13\n", + " Region: \"zone_1\"\tRelError: 8.63112e-03\tAbsError: 6.79611e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.41381e-03\tAbsError: 2.10193e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17309e-04\tAbsError: 6.79400e-02\n", + " Region: \"zone_3\"\tRelError: 1.59565e-01\tAbsError: 2.09756e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.65783e-03\tAbsError: 1.06650e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.75305e-03\tAbsError: 1.03105e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42937e-01\tAbsError: 2.83863e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17328e-04\tAbsError: 6.79471e-02\n", "Iteration: 8\n", - " Device: \"device\"\tRelError: 7.21635e-06\tAbsError: 6.66072e+09\n", - " Region: \"zone_1\"\tRelError: 1.30608e-06\tAbsError: 5.92265e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28905e-06\tAbsError: 4.03393e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70320e-08\tAbsError: 5.91862e-06\n", - " Region: \"zone_3\"\tRelError: 5.91027e-06\tAbsError: 6.66072e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61854e-07\tAbsError: 4.98334e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.27195e-07\tAbsError: 1.67738e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 5.20418e-06\tAbsError: 4.19235e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.70346e-08\tAbsError: 5.91965e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:31\u001b[0m.\u001b[1;36m388\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.6\u001b[0m \n", + " Device: \"device\"\tRelError: 6.48075e-01\tAbsError: 6.35873e+13\n", + " Region: \"zone_1\"\tRelError: 5.54767e-02\tAbsError: 2.68256e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.53910e-02\tAbsError: 3.26377e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.57060e-05\tAbsError: 2.67930e-02\n", + " Region: \"zone_3\"\tRelError: 5.92598e-01\tAbsError: 6.35873e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.06781e-03\tAbsError: 3.67945e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.01762e-03\tAbsError: 2.67928e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.78427e-01\tAbsError: 3.39518e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.57131e-05\tAbsError: 2.67957e-02\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.42304e-01\tAbsError: 2.65734e+13\n", + " Region: \"zone_1\"\tRelError: 2.43870e-02\tAbsError: 3.70911e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42684e-02\tAbsError: 1.35687e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18590e-04\tAbsError: 3.70775e-02\n", + " Region: \"zone_3\"\tRelError: 2.17917e-01\tAbsError: 2.65734e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.49439e-03\tAbsError: 1.50313e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.35286e-03\tAbsError: 1.15421e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07951e-01\tAbsError: 1.91198e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18601e-04\tAbsError: 3.70816e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.00691e-01\tAbsError: 3.81858e+13\n", + " Region: \"zone_1\"\tRelError: 3.15530e-02\tAbsError: 2.58227e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.14704e-02\tAbsError: 1.87343e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.25393e-05\tAbsError: 2.58040e-02\n", + " Region: \"zone_3\"\tRelError: 2.69138e-01\tAbsError: 3.81858e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.09004e-03\tAbsError: 2.07542e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.06036e-03\tAbsError: 1.74316e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.60905e-01\tAbsError: 1.94588e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.25467e-05\tAbsError: 2.58068e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.30308e-01\tAbsError: 2.72692e+13\n", + " Region: \"zone_1\"\tRelError: 2.31165e-02\tAbsError: 2.58723e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30338e-02\tAbsError: 1.33037e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.27083e-05\tAbsError: 2.58589e-02\n", + " Region: \"zone_3\"\tRelError: 2.07192e-01\tAbsError: 2.72692e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.31866e-03\tAbsError: 1.46394e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.74092e-03\tAbsError: 1.26298e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.00049e-01\tAbsError: 1.40929e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.27158e-05\tAbsError: 2.58618e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.02479e-01\tAbsError: 2.73873e+13\n", + " Region: \"zone_1\"\tRelError: 2.24020e-02\tAbsError: 2.14344e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23335e-02\tAbsError: 1.32822e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.85190e-05\tAbsError: 2.14211e-02\n", + " Region: \"zone_3\"\tRelError: 1.80077e-01\tAbsError: 2.73873e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89183e-03\tAbsError: 1.46327e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.10744e-03\tAbsError: 1.27546e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74009e-01\tAbsError: 1.37845e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.85252e-05\tAbsError: 2.14235e-02\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.88081e-01\tAbsError: 2.28410e+13\n", + " Region: \"zone_1\"\tRelError: 1.90637e-02\tAbsError: 1.96763e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90008e-02\tAbsError: 1.10642e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.28986e-05\tAbsError: 1.96653e-02\n", + " Region: \"zone_3\"\tRelError: 1.69017e-01\tAbsError: 2.28410e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.55645e-03\tAbsError: 1.21666e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.84693e-03\tAbsError: 1.06744e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63551e-01\tAbsError: 1.14744e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.29043e-05\tAbsError: 1.96674e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.54006e-01\tAbsError: 2.09644e+13\n", + " Region: \"zone_1\"\tRelError: 1.71473e-02\tAbsError: 1.71293e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70925e-02\tAbsError: 1.01432e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.47580e-05\tAbsError: 1.71192e-02\n", + " Region: \"zone_3\"\tRelError: 1.36858e-01\tAbsError: 2.09644e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.23481e-03\tAbsError: 1.11588e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.48335e-03\tAbsError: 9.80553e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32085e-01\tAbsError: 1.05238e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.47629e-05\tAbsError: 1.71211e-02\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 1.48335e-01\tAbsError: 1.82797e+13\n", + " Region: \"zone_1\"\tRelError: 1.51858e-02\tAbsError: 1.53443e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51368e-02\tAbsError: 8.84267e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.90502e-05\tAbsError: 1.53355e-02\n", + " Region: \"zone_3\"\tRelError: 1.33149e-01\tAbsError: 1.82797e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.99927e-03\tAbsError: 9.72331e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.22082e-03\tAbsError: 8.55639e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28880e-01\tAbsError: 9.17251e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.90546e-05\tAbsError: 1.53372e-02\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 1.21038e-01\tAbsError: 1.63722e+13\n", + " Region: \"zone_1\"\tRelError: 1.34100e-02\tAbsError: 1.35432e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33667e-02\tAbsError: 7.91793e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.32941e-05\tAbsError: 1.35353e-02\n", + " Region: \"zone_3\"\tRelError: 1.07628e-01\tAbsError: 1.63722e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.76800e-03\tAbsError: 8.70772e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96317e-03\tAbsError: 7.66446e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03854e-01\tAbsError: 8.21424e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.32980e-05\tAbsError: 1.35368e-02\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 1.16027e-01\tAbsError: 1.44558e+13\n", + " Region: \"zone_1\"\tRelError: 1.19837e-02\tAbsError: 1.20488e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19452e-02\tAbsError: 6.99098e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.85158e-05\tAbsError: 1.20418e-02\n", + " Region: \"zone_3\"\tRelError: 1.04043e-01\tAbsError: 1.44558e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.57100e-03\tAbsError: 7.68732e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.74419e-03\tAbsError: 6.76846e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00690e-01\tAbsError: 7.25218e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.85193e-05\tAbsError: 1.20432e-02\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 9.58191e-02\tAbsError: 1.28600e+13\n", + " Region: \"zone_1\"\tRelError: 1.05472e-02\tAbsError: 1.06751e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05131e-02\tAbsError: 6.21890e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.41255e-05\tAbsError: 1.06689e-02\n", + " Region: \"zone_3\"\tRelError: 8.52719e-02\tAbsError: 1.28600e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.39358e-03\tAbsError: 6.83863e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.54720e-03\tAbsError: 6.02136e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.22970e-02\tAbsError: 6.45146e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.41286e-05\tAbsError: 1.06700e-02\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 9.06721e-02\tAbsError: 1.13947e+13\n", + " Region: \"zone_1\"\tRelError: 9.43363e-03\tAbsError: 9.47893e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.40333e-03\tAbsError: 5.51031e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.03008e-05\tAbsError: 9.47341e-03\n", + " Region: \"zone_3\"\tRelError: 8.12385e-02\tAbsError: 1.13947e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23621e-03\tAbsError: 6.05921e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.37236e-03\tAbsError: 5.33548e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.85996e-02\tAbsError: 5.71628e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.03035e-05\tAbsError: 9.47446e-03\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 7.59086e-02\tAbsError: 1.01178e+13\n", + " Region: \"zone_1\"\tRelError: 8.30697e-03\tAbsError: 8.40704e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.28010e-03\tAbsError: 4.89275e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.68750e-05\tAbsError: 8.40215e-03\n", + " Region: \"zone_3\"\tRelError: 6.76016e-02\tAbsError: 1.01178e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09740e-03\tAbsError: 5.38020e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.21834e-03\tAbsError: 4.73757e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.52590e-02\tAbsError: 5.07569e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.68775e-05\tAbsError: 8.40308e-03\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 7.09236e-02\tAbsError: 8.97376e+12\n", + " Region: \"zone_1\"\tRelError: 7.42219e-03\tAbsError: 7.46099e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.39834e-03\tAbsError: 4.33954e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.38502e-05\tAbsError: 7.45665e-03\n", + " Region: \"zone_3\"\tRelError: 6.35014e-02\tAbsError: 8.97376e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.73158e-04\tAbsError: 4.77183e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.08032e-03\tAbsError: 4.20194e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.14241e-02\tAbsError: 4.50177e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.38524e-05\tAbsError: 7.45747e-03\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 6.00876e-02\tAbsError: 7.96395e+12\n", + " Region: \"zone_1\"\tRelError: 6.54409e-03\tAbsError: 6.61923e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.52293e-03\tAbsError: 3.85121e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.11598e-05\tAbsError: 6.61538e-03\n", + " Region: \"zone_3\"\tRelError: 5.35435e-02\tAbsError: 7.96395e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.63957e-04\tAbsError: 4.23486e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.59158e-04\tAbsError: 3.72909e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.16993e-02\tAbsError: 3.99519e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.11618e-05\tAbsError: 6.61611e-03\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 5.55433e-02\tAbsError: 7.06543e+12\n", + " Region: \"zone_1\"\tRelError: 5.83948e-03\tAbsError: 5.87347e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.82070e-03\tAbsError: 3.41670e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87755e-05\tAbsError: 5.87005e-03\n", + " Region: \"zone_3\"\tRelError: 4.97039e-02\tAbsError: 7.06543e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.66156e-04\tAbsError: 3.75706e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.50526e-04\tAbsError: 3.30837e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.80684e-02\tAbsError: 3.54443e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87772e-05\tAbsError: 5.87070e-03\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 4.75165e-02\tAbsError: 6.26944e+12\n", + " Region: \"zone_1\"\tRelError: 5.15506e-03\tAbsError: 5.21124e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.13840e-03\tAbsError: 3.03178e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66589e-05\tAbsError: 5.20821e-03\n", + " Region: \"zone_3\"\tRelError: 4.23615e-02\tAbsError: 6.26944e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.80137e-04\tAbsError: 3.33379e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.55077e-04\tAbsError: 2.93565e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.09096e-02\tAbsError: 3.14512e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66604e-05\tAbsError: 5.20879e-03\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 4.35455e-02\tAbsError: 5.56253e+12\n", + " Region: \"zone_1\"\tRelError: 4.59469e-03\tAbsError: 4.62392e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.57991e-03\tAbsError: 2.68993e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47811e-05\tAbsError: 4.62123e-03\n", + " Region: \"zone_3\"\tRelError: 3.89508e-02\tAbsError: 5.56253e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.03197e-04\tAbsError: 2.95789e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.69625e-04\tAbsError: 2.60464e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.76632e-02\tAbsError: 2.79050e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47825e-05\tAbsError: 4.62174e-03\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 3.75418e-02\tAbsError: 4.93565e+12\n", + " Region: \"zone_1\"\tRelError: 4.06044e-03\tAbsError: 4.10267e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.04732e-03\tAbsError: 2.38678e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31151e-05\tAbsError: 4.10029e-03\n", + " Region: \"zone_3\"\tRelError: 3.34814e-02\tAbsError: 4.93565e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.35425e-04\tAbsError: 2.62454e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.94417e-04\tAbsError: 2.31110e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.23384e-02\tAbsError: 2.47601e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31162e-05\tAbsError: 4.10074e-03\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 3.41695e-02\tAbsError: 4.37923e+12\n", + " Region: \"zone_1\"\tRelError: 3.61563e-03\tAbsError: 3.64024e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.60400e-03\tAbsError: 2.11771e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16367e-05\tAbsError: 3.63813e-03\n", + " Region: \"zone_3\"\tRelError: 3.05539e-02\tAbsError: 4.37923e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.74898e-04\tAbsError: 2.32867e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.27199e-04\tAbsError: 2.05057e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.95402e-02\tAbsError: 2.19688e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16377e-05\tAbsError: 3.63853e-03\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 2.96392e-02\tAbsError: 3.88565e+12\n", + " Region: \"zone_1\"\tRelError: 3.19793e-03\tAbsError: 3.22991e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.18760e-03\tAbsError: 1.87903e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03251e-05\tAbsError: 3.22803e-03\n", + " Region: \"zone_3\"\tRelError: 2.64412e-02\tAbsError: 3.88565e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.21506e-04\tAbsError: 2.06621e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.67944e-04\tAbsError: 1.81945e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.55415e-02\tAbsError: 1.94928e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03260e-05\tAbsError: 3.22838e-03\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 2.68312e-02\tAbsError: 3.44764e+12\n", + " Region: \"zone_1\"\tRelError: 2.84546e-03\tAbsError: 2.86584e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83630e-03\tAbsError: 1.66721e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.16116e-06\tAbsError: 2.86417e-03\n", + " Region: \"zone_3\"\tRelError: 2.39857e-02\tAbsError: 3.44764e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.73885e-04\tAbsError: 1.83329e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.15063e-04\tAbsError: 1.61435e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31876e-02\tAbsError: 1.72954e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.16200e-06\tAbsError: 2.86449e-03\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 2.33862e-02\tAbsError: 3.05904e+12\n", + " Region: \"zone_1\"\tRelError: 2.51842e-03\tAbsError: 2.54280e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51029e-03\tAbsError: 1.47929e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.12858e-06\tAbsError: 2.54132e-03\n", + " Region: \"zone_3\"\tRelError: 2.08678e-02\tAbsError: 3.05904e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.31827e-04\tAbsError: 1.62665e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.68383e-04\tAbsError: 1.43239e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01594e-02\tAbsError: 1.53460e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.12931e-06\tAbsError: 2.54160e-03\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 2.10805e-02\tAbsError: 2.71421e+12\n", + " Region: \"zone_1\"\tRelError: 2.23950e-03\tAbsError: 2.25618e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23229e-03\tAbsError: 1.31254e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.21229e-06\tAbsError: 2.25487e-03\n", + " Region: \"zone_3\"\tRelError: 1.88410e-02\tAbsError: 2.71421e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.94356e-04\tAbsError: 1.44329e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.26776e-04\tAbsError: 1.27092e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82127e-02\tAbsError: 1.36161e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.21294e-06\tAbsError: 2.25512e-03\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 1.84437e-02\tAbsError: 2.40828e+12\n", + " Region: \"zone_1\"\tRelError: 1.98316e-03\tAbsError: 2.00186e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97677e-03\tAbsError: 1.16460e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.39936e-06\tAbsError: 2.00070e-03\n", + " Region: \"zone_3\"\tRelError: 1.64605e-02\tAbsError: 2.40828e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.61230e-04\tAbsError: 1.28061e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.90008e-04\tAbsError: 1.12767e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59029e-02\tAbsError: 1.20814e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.39994e-06\tAbsError: 2.00092e-03\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 1.65696e-02\tAbsError: 2.13681e+12\n", + " Region: \"zone_1\"\tRelError: 1.76270e-03\tAbsError: 1.77622e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75702e-03\tAbsError: 1.03332e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.67800e-06\tAbsError: 1.77518e-03\n", + " Region: \"zone_3\"\tRelError: 1.48069e-02\tAbsError: 2.13681e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.31742e-04\tAbsError: 1.13626e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.57267e-04\tAbsError: 1.00056e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43122e-02\tAbsError: 1.07195e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.67851e-06\tAbsError: 1.77538e-03\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 1.45404e-02\tAbsError: 1.89596e+12\n", + " Region: \"zone_1\"\tRelError: 1.56159e-03\tAbsError: 1.57600e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55655e-03\tAbsError: 9.16850e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.03800e-06\tAbsError: 1.57508e-03\n", + " Region: \"zone_3\"\tRelError: 1.29788e-02\tAbsError: 1.89596e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05653e-04\tAbsError: 1.00818e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.28308e-04\tAbsError: 8.87777e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25398e-02\tAbsError: 9.51127e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.03846e-06\tAbsError: 1.57526e-03\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 1.30284e-02\tAbsError: 1.68224e+12\n", + " Region: \"zone_1\"\tRelError: 1.38747e-03\tAbsError: 1.39836e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38300e-03\tAbsError: 8.13501e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.47010e-06\tAbsError: 1.39754e-03\n", + " Region: \"zone_3\"\tRelError: 1.16409e-02\tAbsError: 1.68224e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.82446e-04\tAbsError: 8.94537e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.02542e-04\tAbsError: 7.87706e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12514e-02\tAbsError: 8.43914e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.47051e-06\tAbsError: 1.39770e-03\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 1.14597e-02\tAbsError: 1.49263e+12\n", + " Region: \"zone_1\"\tRelError: 1.22958e-03\tAbsError: 1.24073e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22561e-03\tAbsError: 7.21806e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.96625e-06\tAbsError: 1.24001e-03\n", + " Region: \"zone_3\"\tRelError: 1.02301e-02\tAbsError: 1.49263e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61901e-04\tAbsError: 7.93707e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.79736e-04\tAbsError: 6.98918e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.88454e-03\tAbsError: 7.48791e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.96661e-06\tAbsError: 1.24015e-03\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 1.02467e-02\tAbsError: 1.32437e+12\n", + " Region: \"zone_1\"\tRelError: 1.09216e-03\tAbsError: 1.10088e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08864e-03\tAbsError: 6.40443e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.51917e-06\tAbsError: 1.10024e-03\n", + " Region: \"zone_3\"\tRelError: 9.15454e-03\tAbsError: 1.32437e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43636e-04\tAbsError: 7.04240e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.59457e-04\tAbsError: 6.20135e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.84792e-03\tAbsError: 6.64386e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.51949e-06\tAbsError: 1.10036e-03\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 9.02967e-03\tAbsError: 1.17509e+12\n", + " Region: \"zone_1\"\tRelError: 9.68123e-04\tAbsError: 9.76789e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.65001e-04\tAbsError: 5.68254e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.12250e-06\tAbsError: 9.76221e-04\n", + " Region: \"zone_3\"\tRelError: 8.06155e-03\tAbsError: 1.17509e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27458e-04\tAbsError: 6.24860e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.41499e-04\tAbsError: 5.50235e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.78947e-03\tAbsError: 5.89498e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.12278e-06\tAbsError: 9.76329e-04\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 8.06064e-03\tAbsError: 1.04264e+12\n", + " Region: \"zone_1\"\tRelError: 8.59729e-04\tAbsError: 8.66686e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.56959e-04\tAbsError: 5.04200e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.77052e-06\tAbsError: 8.66182e-04\n", + " Region: \"zone_3\"\tRelError: 7.20091e-03\tAbsError: 1.04264e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13081e-04\tAbsError: 5.54425e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.25537e-04\tAbsError: 4.88212e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.95952e-03\tAbsError: 5.23049e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.77078e-06\tAbsError: 8.66278e-04\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 7.11361e-03\tAbsError: 9.25113e+11\n", + " Region: \"zone_1\"\tRelError: 7.62245e-04\tAbsError: 7.68994e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.59787e-04\tAbsError: 4.47367e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45824e-06\tAbsError: 7.68546e-04\n", + " Region: \"zone_3\"\tRelError: 6.35137e-03\tAbsError: 9.25113e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00342e-04\tAbsError: 4.91931e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11396e-04\tAbsError: 4.33182e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.13717e-03\tAbsError: 4.64092e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45846e-06\tAbsError: 7.68631e-04\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 6.34201e-03\tAbsError: 8.20834e+11\n", + " Region: \"zone_1\"\tRelError: 6.76779e-04\tAbsError: 6.82313e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.74598e-04\tAbsError: 3.96940e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18114e-06\tAbsError: 6.81917e-04\n", + " Region: \"zone_3\"\tRelError: 5.66523e-03\tAbsError: 8.20834e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.90257e-05\tAbsError: 4.36480e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.88318e-05\tAbsError: 3.84353e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.47520e-03\tAbsError: 4.11779e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.18134e-06\tAbsError: 6.81992e-04\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 5.60332e-03\tAbsError: 7.28311e+11\n", + " Region: \"zone_1\"\tRelError: 6.00136e-04\tAbsError: 6.05403e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.98200e-04\tAbsError: 3.52198e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93529e-06\tAbsError: 6.05051e-04\n", + " Region: \"zone_3\"\tRelError: 5.00319e-03\tAbsError: 7.28311e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.89957e-05\tAbsError: 3.87281e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.76976e-05\tAbsError: 3.41030e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.83456e-03\tAbsError: 3.65364e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93546e-06\tAbsError: 6.05118e-04\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 4.99047e-03\tAbsError: 6.46215e+11\n", + " Region: \"zone_1\"\tRelError: 5.32770e-04\tAbsError: 5.37163e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.31053e-04\tAbsError: 3.12498e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71714e-06\tAbsError: 5.36850e-04\n", + " Region: \"zone_3\"\tRelError: 4.45770e-03\tAbsError: 6.46215e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.00875e-05\tAbsError: 3.43627e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.78077e-05\tAbsError: 3.02589e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.30808e-03\tAbsError: 3.24180e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71730e-06\tAbsError: 5.36910e-04\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 4.41318e-03\tAbsError: 5.73375e+11\n", + " Region: \"zone_1\"\tRelError: 4.72495e-04\tAbsError: 4.76614e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.70972e-04\tAbsError: 2.77273e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52359e-06\tAbsError: 4.76337e-04\n", + " Region: \"zone_3\"\tRelError: 3.94068e-03\tAbsError: 5.73375e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.21903e-05\tAbsError: 3.04894e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.90410e-05\tAbsError: 2.68481e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.80793e-03\tAbsError: 2.87639e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52373e-06\tAbsError: 4.76390e-04\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 3.92735e-03\tAbsError: 5.08744e+11\n", + " Region: \"zone_1\"\tRelError: 4.19410e-04\tAbsError: 4.22891e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.18058e-04\tAbsError: 2.46019e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35185e-06\tAbsError: 4.22645e-04\n", + " Region: \"zone_3\"\tRelError: 3.50794e-03\tAbsError: 5.08744e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.51779e-05\tAbsError: 2.70526e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.12558e-05\tAbsError: 2.38218e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.39015e-03\tAbsError: 2.55217e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35197e-06\tAbsError: 4.22691e-04\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 3.47551e-03\tAbsError: 4.51399e+11\n", + " Region: \"zone_1\"\tRelError: 3.71997e-04\tAbsError: 3.75223e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.70798e-04\tAbsError: 2.18288e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19947e-06\tAbsError: 3.75004e-04\n", + " Region: \"zone_3\"\tRelError: 3.10351e-03\tAbsError: 4.51399e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89602e-05\tAbsError: 2.40033e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.43534e-05\tAbsError: 2.11366e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.99900e-03\tAbsError: 2.26449e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19958e-06\tAbsError: 3.75046e-04\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 3.09095e-03\tAbsError: 4.00517e+11\n", + " Region: \"zone_1\"\tRelError: 3.30174e-04\tAbsError: 3.32928e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.29110e-04\tAbsError: 1.93683e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06427e-06\tAbsError: 3.32734e-04\n", + " Region: \"zone_3\"\tRelError: 2.76078e-03\tAbsError: 4.00517e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.34399e-05\tAbsError: 2.12976e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.82249e-05\tAbsError: 1.87541e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66805e-03\tAbsError: 2.00924e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06436e-06\tAbsError: 3.32771e-04\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 2.73687e-03\tAbsError: 3.55372e+11\n", + " Region: \"zone_1\"\tRelError: 2.92872e-04\tAbsError: 2.95400e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.91928e-04\tAbsError: 1.71851e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.44304e-07\tAbsError: 2.95229e-04\n", + " Region: \"zone_3\"\tRelError: 2.44400e-03\tAbsError: 3.55372e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.85446e-05\tAbsError: 1.88970e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.27904e-05\tAbsError: 1.66402e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36172e-03\tAbsError: 1.78276e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.44390e-07\tAbsError: 2.95261e-04\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 2.43284e-03\tAbsError: 3.15314e+11\n", + " Region: \"zone_1\"\tRelError: 2.59927e-04\tAbsError: 2.62103e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.59089e-04\tAbsError: 1.52480e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.37862e-07\tAbsError: 2.61951e-04\n", + " Region: \"zone_3\"\tRelError: 2.17291e-03\tAbsError: 3.15314e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.41989e-05\tAbsError: 1.67669e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.79660e-05\tAbsError: 1.47645e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09991e-03\tAbsError: 1.58181e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.37938e-07\tAbsError: 2.61980e-04\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 2.15510e-03\tAbsError: 2.79772e+11\n", + " Region: \"zone_1\"\tRelError: 2.30575e-04\tAbsError: 2.32559e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29832e-04\tAbsError: 1.35293e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.43419e-07\tAbsError: 2.32424e-04\n", + " Region: \"zone_3\"\tRelError: 1.92452e-03\tAbsError: 2.79772e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.03448e-05\tAbsError: 1.48770e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.36874e-05\tAbsError: 1.31003e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85974e-03\tAbsError: 1.40351e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.43487e-07\tAbsError: 2.32449e-04\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 1.91494e-03\tAbsError: 2.48237e+11\n", + " Region: \"zone_1\"\tRelError: 2.04626e-04\tAbsError: 2.06345e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03967e-04\tAbsError: 1.20043e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.59621e-07\tAbsError: 2.06225e-04\n", + " Region: \"zone_3\"\tRelError: 1.71031e-03\tAbsError: 2.48237e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.69238e-05\tAbsError: 1.32000e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.98895e-05\tAbsError: 1.16236e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65284e-03\tAbsError: 1.24530e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.59681e-07\tAbsError: 2.06248e-04\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 1.69691e-03\tAbsError: 2.20256e+11\n", + " Region: \"zone_1\"\tRelError: 1.81528e-04\tAbsError: 1.83086e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80943e-04\tAbsError: 1.06511e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.85270e-07\tAbsError: 1.82980e-04\n", + " Region: \"zone_3\"\tRelError: 1.51538e-03\tAbsError: 2.20256e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38894e-05\tAbsError: 1.17121e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.65209e-05\tAbsError: 1.03134e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46439e-03\tAbsError: 1.10493e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.85323e-07\tAbsError: 1.83000e-04\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 1.50735e-03\tAbsError: 1.95428e+11\n", + " Region: \"zone_1\"\tRelError: 1.61092e-04\tAbsError: 1.62449e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60573e-04\tAbsError: 9.45056e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.19298e-07\tAbsError: 1.62354e-04\n", + " Region: \"zone_3\"\tRelError: 1.34626e-03\tAbsError: 1.95428e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11962e-05\tAbsError: 1.03920e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.35311e-05\tAbsError: 9.15088e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30101e-03\tAbsError: 9.80387e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.19345e-07\tAbsError: 1.62372e-04\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 1.33609e-03\tAbsError: 1.73400e+11\n", + " Region: \"zone_1\"\tRelError: 1.42914e-04\tAbsError: 1.44138e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42453e-04\tAbsError: 8.38530e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.60763e-07\tAbsError: 1.44054e-04\n", + " Region: \"zone_3\"\tRelError: 1.19318e-03\tAbsError: 1.73400e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88073e-05\tAbsError: 9.22059e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.08790e-05\tAbsError: 8.11940e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15303e-03\tAbsError: 8.69878e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.60805e-07\tAbsError: 1.44070e-04\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 1.18655e-03\tAbsError: 1.53854e+11\n", + " Region: \"zone_1\"\tRelError: 1.26821e-04\tAbsError: 1.27891e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26412e-04\tAbsError: 7.44011e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.08826e-07\tAbsError: 1.27816e-04\n", + " Region: \"zone_3\"\tRelError: 1.05973e-03\tAbsError: 1.53854e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.66871e-05\tAbsError: 8.18125e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.85253e-05\tAbsError: 7.20419e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02411e-03\tAbsError: 7.71826e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.08863e-07\tAbsError: 1.27830e-04\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 1.05197e-03\tAbsError: 1.36512e+11\n", + " Region: \"zone_1\"\tRelError: 1.12513e-04\tAbsError: 1.13475e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12150e-04\tAbsError: 6.60147e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.62744e-07\tAbsError: 1.13409e-04\n", + " Region: \"zone_3\"\tRelError: 9.39456e-04\tAbsError: 1.36512e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.48063e-05\tAbsError: 7.25906e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.64373e-05\tAbsError: 6.39214e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.07850e-04\tAbsError: 6.84827e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.62777e-07\tAbsError: 1.13421e-04\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 9.34051e-04\tAbsError: 1.21124e+11\n", + " Region: \"zone_1\"\tRelError: 9.98405e-05\tAbsError: 1.00684e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.95186e-05\tAbsError: 5.85735e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.21856e-07\tAbsError: 1.00625e-04\n", + " Region: \"zone_3\"\tRelError: 8.34210e-04\tAbsError: 1.21124e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31372e-05\tAbsError: 6.44083e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.45843e-05\tAbsError: 5.67162e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.06167e-04\tAbsError: 6.07633e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.21885e-07\tAbsError: 1.00637e-04\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 8.28246e-04\tAbsError: 1.07471e+11\n", + " Region: \"zone_1\"\tRelError: 8.85788e-05\tAbsError: 8.93350e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.82932e-05\tAbsError: 5.19712e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.85576e-07\tAbsError: 8.92830e-05\n", + " Region: \"zone_3\"\tRelError: 7.39668e-04\tAbsError: 1.07471e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16565e-05\tAbsError: 5.71482e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29405e-05\tAbsError: 5.03232e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.14785e-04\tAbsError: 5.39141e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.85602e-07\tAbsError: 8.92929e-05\n", + "Iteration: 59\n", + " Device: \"device\"\tRelError: 7.35295e-04\tAbsError: 9.53573e+10\n", + " Region: \"zone_1\"\tRelError: 7.86003e-05\tAbsError: 7.92652e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.83470e-05\tAbsError: 4.61130e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.53386e-07\tAbsError: 7.92191e-05\n", + " Region: \"zone_3\"\tRelError: 6.56695e-04\tAbsError: 9.53573e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03425e-05\tAbsError: 5.07065e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.14818e-05\tAbsError: 4.46508e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.34617e-04\tAbsError: 4.78370e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.53409e-07\tAbsError: 7.92279e-05\n", + "Iteration: 60\n", + " Device: \"device\"\tRelError: 6.52092e-04\tAbsError: 8.46087e+10\n", + " Region: \"zone_1\"\tRelError: 6.97357e-05\tAbsError: 7.03305e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.95109e-05\tAbsError: 4.09152e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24825e-07\tAbsError: 7.02896e-05\n", + " Region: \"zone_3\"\tRelError: 5.82356e-04\tAbsError: 8.46087e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.17679e-06\tAbsError: 4.49909e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.01876e-05\tAbsError: 3.96178e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.62767e-04\tAbsError: 4.24448e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24845e-07\tAbsError: 7.02973e-05\n", + "Iteration: 61\n", + " Device: \"device\"\tRelError: 5.78842e-04\tAbsError: 7.50717e+10\n", + " Region: \"zone_1\"\tRelError: 6.18790e-05\tAbsError: 6.24029e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.16795e-05\tAbsError: 3.63033e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99483e-07\tAbsError: 6.23666e-05\n", + " Region: \"zone_3\"\tRelError: 5.16963e-04\tAbsError: 7.50717e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.14234e-06\tAbsError: 3.99196e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.03924e-06\tAbsError: 3.51521e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.99582e-04\tAbsError: 3.76605e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99501e-07\tAbsError: 6.23735e-05\n", + "Iteration: 62\n", + " Device: \"device\"\tRelError: 5.13396e-04\tAbsError: 6.66097e+10\n", + " Region: \"zone_1\"\tRelError: 5.49010e-05\tAbsError: 5.53689e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.47240e-05\tAbsError: 3.22112e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76997e-07\tAbsError: 5.53367e-05\n", + " Region: \"zone_3\"\tRelError: 4.58495e-04\tAbsError: 6.66097e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.22458e-06\tAbsError: 3.54199e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.02039e-06\tAbsError: 3.11898e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.43073e-04\tAbsError: 3.34154e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77013e-07\tAbsError: 5.53428e-05\n", + "Iteration: 63\n", + " Device: \"device\"\tRelError: 4.55683e-04\tAbsError: 5.91015e+10\n", + " Region: \"zone_1\"\tRelError: 4.87150e-05\tAbsError: 4.91277e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.85579e-05\tAbsError: 2.85804e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57046e-07\tAbsError: 4.90991e-05\n", + " Region: \"zone_3\"\tRelError: 4.06968e-04\tAbsError: 5.91015e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.41020e-06\tAbsError: 3.14274e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.11630e-06\tAbsError: 2.76741e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.93284e-04\tAbsError: 2.96488e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57060e-07\tAbsError: 4.91046e-05\n", + "Iteration: 64\n", + " Device: \"device\"\tRelError: 4.04195e-04\tAbsError: 5.24396e+10\n", + " Region: \"zone_1\"\tRelError: 4.32220e-05\tAbsError: 4.35901e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.30827e-05\tAbsError: 2.53588e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39344e-07\tAbsError: 4.35647e-05\n", + " Region: \"zone_3\"\tRelError: 3.60973e-04\tAbsError: 5.24396e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.68767e-06\tAbsError: 2.78849e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.31419e-06\tAbsError: 2.45547e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.48832e-04\tAbsError: 2.63068e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39357e-07\tAbsError: 4.35696e-05\n", + "Iteration: 65\n", + " Device: \"device\"\tRelError: 3.58732e-04\tAbsError: 4.65286e+10\n", + " Region: \"zone_1\"\tRelError: 3.83515e-05\tAbsError: 3.86766e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.82279e-05\tAbsError: 2.25004e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23637e-07\tAbsError: 3.86541e-05\n", + " Region: \"zone_3\"\tRelError: 3.20380e-04\tAbsError: 4.65286e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.04654e-06\tAbsError: 2.47417e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.60243e-06\tAbsError: 2.17869e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.09608e-04\tAbsError: 2.33416e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23648e-07\tAbsError: 3.86584e-05\n", + "Iteration: 66\n", + " Device: \"device\"\tRelError: 3.18219e-04\tAbsError: 4.12840e+10\n", + " Region: \"zone_1\"\tRelError: 3.40274e-05\tAbsError: 3.43170e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.39177e-05\tAbsError: 1.99642e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09701e-07\tAbsError: 3.42971e-05\n", + " Region: \"zone_3\"\tRelError: 2.84192e-04\tAbsError: 4.12840e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.47771e-06\tAbsError: 2.19529e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.97095e-06\tAbsError: 1.93311e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74634e-04\tAbsError: 2.07105e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09711e-07\tAbsError: 3.43009e-05\n", + "Iteration: 67\n", + " Device: \"device\"\tRelError: 2.82410e-04\tAbsError: 3.66304e+10\n", + " Region: \"zone_1\"\tRelError: 3.01928e-05\tAbsError: 3.04488e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.00954e-05\tAbsError: 1.77138e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.73355e-08\tAbsError: 3.04311e-05\n", + " Region: \"zone_3\"\tRelError: 2.52217e-04\tAbsError: 3.66304e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.97298e-06\tAbsError: 1.94783e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.41061e-06\tAbsError: 1.71521e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.43736e-04\tAbsError: 1.83760e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.73444e-08\tAbsError: 3.04345e-05\n", + "Iteration: 68\n", + " Device: \"device\"\tRelError: 2.50530e-04\tAbsError: 3.25015e+10\n", + " Region: \"zone_1\"\tRelError: 2.67887e-05\tAbsError: 2.70167e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67024e-05\tAbsError: 1.57171e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.63639e-08\tAbsError: 2.70010e-05\n", + " Region: \"zone_3\"\tRelError: 2.23741e-04\tAbsError: 3.25015e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.52516e-06\tAbsError: 1.72828e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.91346e-06\tAbsError: 1.52187e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16216e-04\tAbsError: 1.63047e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.63718e-08\tAbsError: 2.70039e-05\n", + "Iteration: 69\n", + " Device: \"device\"\tRelError: 2.22327e-04\tAbsError: 2.88379e+10\n", + " Region: \"zone_1\"\tRelError: 2.37697e-05\tAbsError: 2.39714e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36931e-05\tAbsError: 1.39455e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.66290e-08\tAbsError: 2.39574e-05\n", + " Region: \"zone_3\"\tRelError: 1.98558e-04\tAbsError: 2.88379e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.12780e-06\tAbsError: 1.53347e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.47233e-06\tAbsError: 1.35033e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91881e-04\tAbsError: 1.44669e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.66360e-08\tAbsError: 2.39601e-05\n", + "Iteration: 70\n", + " Device: \"device\"\tRelError: 1.97237e-04\tAbsError: 2.55873e+10\n", + " Region: \"zone_1\"\tRelError: 2.10900e-05\tAbsError: 2.12693e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.10220e-05\tAbsError: 1.23736e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.79915e-08\tAbsError: 2.12570e-05\n", + " Region: \"zone_3\"\tRelError: 1.76147e-04\tAbsError: 2.55873e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.77524e-06\tAbsError: 1.36061e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.08094e-06\tAbsError: 1.19812e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70223e-04\tAbsError: 1.28362e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.79977e-08\tAbsError: 2.12593e-05\n", + "Iteration: 71\n", + " Device: \"device\"\tRelError: 1.75028e-04\tAbsError: 2.27032e+10\n", + " Region: \"zone_1\"\tRelError: 1.87131e-05\tAbsError: 1.88719e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86527e-05\tAbsError: 1.09788e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.03275e-08\tAbsError: 1.88609e-05\n", + " Region: \"zone_3\"\tRelError: 1.56315e-04\tAbsError: 2.27032e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46241e-06\tAbsError: 1.20725e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.73365e-06\tAbsError: 1.06307e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51059e-04\tAbsError: 1.13893e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.03330e-08\tAbsError: 1.88630e-05\n", + "Iteration: 72\n", + " Device: \"device\"\tRelError: 1.55281e-04\tAbsError: 2.01441e+10\n", + " Region: \"zone_1\"\tRelError: 1.66035e-05\tAbsError: 1.67446e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65499e-05\tAbsError: 9.74130e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.35275e-08\tAbsError: 1.67349e-05\n", + " Region: \"zone_3\"\tRelError: 1.38677e-04\tAbsError: 2.01441e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.18485e-06\tAbsError: 1.07117e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.42552e-06\tAbsError: 9.43242e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34013e-04\tAbsError: 1.01055e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.35323e-08\tAbsError: 1.67368e-05\n", + "Iteration: 73\n", + " Device: \"device\"\tRelError: 1.37792e-04\tAbsError: 1.78735e+10\n", + " Region: \"zone_1\"\tRelError: 1.47321e-05\tAbsError: 1.48572e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46847e-05\tAbsError: 8.64327e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.74939e-08\tAbsError: 1.48486e-05\n", + " Region: \"zone_3\"\tRelError: 1.23060e-04\tAbsError: 1.78735e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.93858e-06\tAbsError: 9.50425e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.15212e-06\tAbsError: 8.36921e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18922e-04\tAbsError: 8.96640e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.74982e-08\tAbsError: 1.48502e-05\n", + "Iteration: 74\n", + " Device: \"device\"\tRelError: 1.22249e-04\tAbsError: 1.58588e+10\n", + " Region: \"zone_1\"\tRelError: 1.30714e-05\tAbsError: 1.31825e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30292e-05\tAbsError: 7.66901e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.21404e-08\tAbsError: 1.31748e-05\n", + " Region: \"zone_3\"\tRelError: 1.09178e-04\tAbsError: 1.58588e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.72006e-06\tAbsError: 8.43295e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.90953e-06\tAbsError: 7.42583e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05506e-04\tAbsError: 7.95571e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.21442e-08\tAbsError: 1.31763e-05\n", + "Iteration: 75\n", + " Device: \"device\"\tRelError: 1.08478e-04\tAbsError: 1.40712e+10\n", + " Region: \"zone_1\"\tRelError: 1.15981e-05\tAbsError: 1.16966e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15607e-05\tAbsError: 6.80456e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.73904e-08\tAbsError: 1.16898e-05\n", + " Region: \"zone_3\"\tRelError: 9.68799e-05\tAbsError: 1.40712e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52618e-06\tAbsError: 7.48240e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.69429e-06\tAbsError: 6.58878e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.36220e-05\tAbsError: 7.05895e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.73938e-08\tAbsError: 1.16911e-05\n", + "Iteration: 76\n", + " Device: \"device\"\tRelError: 9.62434e-05\tAbsError: 1.24851e+10\n", + " Region: \"zone_1\"\tRelError: 1.02907e-05\tAbsError: 1.03782e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02575e-05\tAbsError: 6.03756e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.31757e-08\tAbsError: 1.03721e-05\n", + " Region: \"zone_3\"\tRelError: 8.59528e-05\tAbsError: 1.24851e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.35415e-06\tAbsError: 6.63897e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.50331e-06\tAbsError: 5.84610e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 8.30621e-05\tAbsError: 6.26327e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.31788e-08\tAbsError: 1.03733e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:34:36\u001b[0m.\u001b[1;36m792\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:34:36\u001b[0m.\u001b[1;36m808\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mBuilt-in potential: % (-1.0598791516305661,)\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:34:36\u001b[0m.\u001b[1;36m808\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mnot all arguments converted during string formatting\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:34:36\u001b[0m.\u001b[1;36m899\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.6 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:34:36\u001b[0m.\u001b[1;36m899\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.65 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:34:36\u001b[0m.\u001b[1;36m899\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.7 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:34:36\u001b[0m.\u001b[1;36m899\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.5 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:34:36\u001b[0m.\u001b[1;36m899\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.55 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:34:36\u001b[0m.\u001b[1;36m914\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.6 V. Current applied bias: 0.6\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:34:36\u001b[0m.\u001b[1;36m914\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.7 V. Current applied bias: 0.7\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:34:36\u001b[0m.\u001b[1;36m915\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.5 V. Current applied bias: 0.5\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:34:36\u001b[0m.\u001b[1;36m918\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.65 V. Current applied bias: 0.65\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.79359e-05\tAbsError: 9.12029e+09\n", - " Region: \"zone_1\"\tRelError: 4.32768e-06\tAbsError: 5.24059e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.31261e-06\tAbsError: 4.64642e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.50721e-08\tAbsError: 5.23594e-06\n", - " Region: \"zone_3\"\tRelError: 1.36082e-05\tAbsError: 9.12029e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.47236e-07\tAbsError: 5.20850e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.47461e-07\tAbsError: 3.91180e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.26984e-05\tAbsError: 4.72645e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.50744e-08\tAbsError: 5.23674e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:31\u001b[0m.\u001b[1;36m732\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:31\u001b[0m.\u001b[1;36m732\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.7272727272727272\u001b[0m \n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:34:36\u001b[0m.\u001b[1;36m923\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.55 V. Current applied bias: 0.55\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.57743e+01\tAbsError: 8.48667e+15\n", - " Region: \"zone_1\"\tRelError: 1.40602e+01\tAbsError: 4.09544e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.40602e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.57556e-10\tAbsError: 1.24451e-07\n", - " Region: \"zone_3\"\tRelError: 1.71408e+00\tAbsError: 8.48667e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69582e-01\tAbsError: 4.51146e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.69441e-01\tAbsError: 3.97521e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.75053e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.57765e-10\tAbsError: 1.24526e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.49189e+01\tAbsError: 4.08174e+16\n", - " Region: \"zone_1\"\tRelError: 2.31126e+01\tAbsError: 4.18737e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.31126e+01\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.58304e-09\tAbsError: 8.97333e-07\n", - " Region: \"zone_3\"\tRelError: 1.80635e+00\tAbsError: 4.08174e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.76313e-01\tAbsError: 2.02615e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.75653e-01\tAbsError: 2.05560e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.54388e-01\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.58332e-09\tAbsError: 8.97431e-07\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 4.55570e+00\tAbsError: 5.16331e+15\n", - " Region: \"zone_1\"\tRelError: 3.06111e+00\tAbsError: 6.97364e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.06100e+00\tAbsError: 3.07634e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12162e-04\tAbsError: 3.89730e-02\n", - " Region: \"zone_3\"\tRelError: 1.49459e+00\tAbsError: 5.16331e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38938e-01\tAbsError: 2.46191e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.11412e-01\tAbsError: 2.70140e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.44124e-01\tAbsError: 3.07634e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.12162e-04\tAbsError: 3.89730e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.86954e+00\tAbsError: 4.19041e+16\n", - " Region: \"zone_1\"\tRelError: 2.86521e-01\tAbsError: 1.91688e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.86060e-01\tAbsError: 3.18461e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.60347e-04\tAbsError: 1.59842e-01\n", - " Region: \"zone_3\"\tRelError: 1.58302e+00\tAbsError: 4.19041e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.48427e-01\tAbsError: 2.09916e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.11904e-01\tAbsError: 2.09125e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.22232e-01\tAbsError: 3.18461e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.60347e-04\tAbsError: 1.59842e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.13964e+00\tAbsError: 3.47644e+15\n", - " Region: \"zone_1\"\tRelError: 1.85284e-01\tAbsError: 3.50197e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.85258e-01\tAbsError: 2.58979e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.62526e-05\tAbsError: 9.12177e-03\n", - " Region: \"zone_3\"\tRelError: 9.54354e-01\tAbsError: 3.47644e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46208e-01\tAbsError: 1.62778e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.89583e-01\tAbsError: 1.84866e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18536e-01\tAbsError: 2.53855e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.62526e-05\tAbsError: 9.12177e-03\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.21420e+00\tAbsError: 2.59228e+16\n", - " Region: \"zone_1\"\tRelError: 1.78553e-01\tAbsError: 1.14359e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.78297e-01\tAbsError: 2.55828e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.55742e-04\tAbsError: 8.87761e-02\n", - " Region: \"zone_3\"\tRelError: 1.03565e+00\tAbsError: 2.59228e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.56028e-01\tAbsError: 1.29282e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.99653e-01\tAbsError: 1.29946e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.79713e-01\tAbsError: 2.47400e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.55742e-04\tAbsError: 8.87761e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 8.24095e-01\tAbsError: 1.04537e+15\n", - " Region: \"zone_1\"\tRelError: 4.93544e-01\tAbsError: 2.65000e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.93494e-01\tAbsError: 9.16559e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.98913e-05\tAbsError: 1.73344e-02\n", - " Region: \"zone_3\"\tRelError: 3.30551e-01\tAbsError: 1.04537e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84640e-01\tAbsError: 5.55503e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10521e-01\tAbsError: 4.89866e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.53403e-02\tAbsError: 9.16565e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.98913e-05\tAbsError: 1.73344e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 7.80503e-01\tAbsError: 7.70857e+15\n", - " Region: \"zone_1\"\tRelError: 3.75236e-01\tAbsError: 3.59699e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.75163e-01\tAbsError: 1.05209e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.33305e-05\tAbsError: 2.54491e-02\n", - " Region: \"zone_3\"\tRelError: 4.05267e-01\tAbsError: 7.70857e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.91232e-01\tAbsError: 4.05990e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.09957e-01\tAbsError: 3.64868e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04004e-01\tAbsError: 1.05209e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.33305e-05\tAbsError: 2.54491e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.23262e-02\tAbsError: 1.95138e+14\n", - " Region: \"zone_1\"\tRelError: 2.57438e-02\tAbsError: 3.23382e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.56511e-02\tAbsError: 1.67807e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.26701e-05\tAbsError: 3.21704e-02\n", - " Region: \"zone_3\"\tRelError: 6.65824e-02\tAbsError: 1.95138e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.49682e-02\tAbsError: 6.65802e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.06072e-03\tAbsError: 1.28558e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.46071e-03\tAbsError: 1.74923e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.26947e-05\tAbsError: 3.21777e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.49304e-01\tAbsError: 1.80910e+15\n", - " Region: \"zone_1\"\tRelError: 4.17844e-02\tAbsError: 2.45403e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.10777e-02\tAbsError: 3.29923e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.06706e-04\tAbsError: 2.45073e-01\n", - " Region: \"zone_3\"\tRelError: 1.07520e-01\tAbsError: 1.80910e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.01149e-02\tAbsError: 8.96543e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.60138e-02\tAbsError: 9.12557e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.06845e-02\tAbsError: 3.29923e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.06706e-04\tAbsError: 2.45073e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 3.13427e-02\tAbsError: 1.62210e+13\n", - " Region: \"zone_1\"\tRelError: 1.73710e-02\tAbsError: 1.21679e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.73676e-02\tAbsError: 1.36050e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.46587e-06\tAbsError: 1.20318e-03\n", - " Region: \"zone_3\"\tRelError: 1.39717e-02\tAbsError: 1.62210e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19687e-03\tAbsError: 6.47584e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.09668e-03\tAbsError: 9.74512e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16747e-02\tAbsError: 1.39577e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.46587e-06\tAbsError: 1.20318e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.37718e-01\tAbsError: 3.70307e+14\n", - " Region: \"zone_1\"\tRelError: 9.30668e-02\tAbsError: 1.58018e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.30214e-02\tAbsError: 6.99005e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.53632e-05\tAbsError: 1.57319e-02\n", - " Region: \"zone_3\"\tRelError: 1.44651e-01\tAbsError: 3.70307e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.23209e-03\tAbsError: 1.87637e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.12058e-03\tAbsError: 1.82670e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.34253e-01\tAbsError: 7.30395e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.53632e-05\tAbsError: 1.57319e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.53065e-03\tAbsError: 7.24481e+11\n", - " Region: \"zone_1\"\tRelError: 1.49459e-03\tAbsError: 1.07639e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49149e-03\tAbsError: 6.55190e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.09641e-06\tAbsError: 1.07573e-03\n", - " Region: \"zone_3\"\tRelError: 1.03606e-03\tAbsError: 7.24481e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.73129e-05\tAbsError: 2.45596e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.81580e-05\tAbsError: 4.78885e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 9.37490e-04\tAbsError: 6.76708e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.09642e-06\tAbsError: 1.07576e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.06829e-02\tAbsError: 3.05635e+13\n", - " Region: \"zone_1\"\tRelError: 1.22718e-02\tAbsError: 7.18985e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.22511e-02\tAbsError: 5.44565e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.07168e-05\tAbsError: 7.18441e-03\n", - " Region: \"zone_3\"\tRelError: 1.84111e-02\tAbsError: 3.05635e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.29967e-04\tAbsError: 1.55164e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.34908e-04\tAbsError: 1.50471e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.75255e-02\tAbsError: 5.93302e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.07242e-05\tAbsError: 7.18712e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.69038e-03\tAbsError: 1.04370e+12\n", - " Region: \"zone_1\"\tRelError: 1.58975e-03\tAbsError: 1.04879e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.58945e-03\tAbsError: 5.38488e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.00336e-07\tAbsError: 1.04341e-04\n", - " Region: \"zone_3\"\tRelError: 1.10063e-03\tAbsError: 1.04370e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.23814e-05\tAbsError: 5.26651e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.22994e-05\tAbsError: 5.17045e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 9.95649e-04\tAbsError: 5.63224e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.00360e-07\tAbsError: 1.04351e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.86421e-02\tAbsError: 1.70748e+13\n", - " Region: \"zone_1\"\tRelError: 7.47202e-03\tAbsError: 9.61059e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.46926e-03\tAbsError: 2.58943e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.76244e-06\tAbsError: 9.58470e-04\n", - " Region: \"zone_3\"\tRelError: 1.11701e-02\tAbsError: 1.70748e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.42677e-04\tAbsError: 8.65778e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.38187e-04\tAbsError: 8.41703e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06865e-02\tAbsError: 2.88374e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.76358e-06\tAbsError: 9.58882e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.67954e-04\tAbsError: 1.01821e+11\n", - " Region: \"zone_1\"\tRelError: 2.21136e-04\tAbsError: 6.97280e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 2.20936e-04\tAbsError: 5.57180e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00534e-07\tAbsError: 6.96723e-05\n", - " Region: \"zone_3\"\tRelError: 1.46817e-04\tAbsError: 1.01821e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.39462e-06\tAbsError: 5.27392e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.41727e-06\tAbsError: 4.90816e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35805e-04\tAbsError: 5.79583e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00607e-07\tAbsError: 6.96980e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.17252e-03\tAbsError: 2.39421e+12\n", - " Region: \"zone_1\"\tRelError: 1.27830e-03\tAbsError: 4.41120e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.27703e-03\tAbsError: 3.52817e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26752e-06\tAbsError: 4.40767e-04\n", - " Region: \"zone_3\"\tRelError: 1.89422e-03\tAbsError: 2.39421e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.41609e-05\tAbsError: 1.21178e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.35709e-05\tAbsError: 1.18243e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.82522e-03\tAbsError: 3.85960e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26800e-06\tAbsError: 4.40936e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.02562e-04\tAbsError: 6.84436e+10\n", - " Region: \"zone_1\"\tRelError: 1.21040e-04\tAbsError: 1.06970e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.21010e-04\tAbsError: 3.27450e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.06942e-08\tAbsError: 1.06642e-05\n", - " Region: \"zone_3\"\tRelError: 8.15214e-05\tAbsError: 6.84436e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.33271e-06\tAbsError: 3.86456e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.32148e-06\tAbsError: 2.97979e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.48365e-05\tAbsError: 3.43670e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.07019e-08\tAbsError: 1.06669e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.32904e-03\tAbsError: 1.04115e+12\n", - " Region: \"zone_1\"\tRelError: 5.35241e-04\tAbsError: 8.15222e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.35007e-04\tAbsError: 1.45533e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.34015e-07\tAbsError: 8.13766e-05\n", - " Region: \"zone_3\"\tRelError: 7.93795e-04\tAbsError: 1.04115e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.48691e-05\tAbsError: 5.27432e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.45106e-05\tAbsError: 5.13716e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 7.64181e-04\tAbsError: 1.65639e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.34109e-07\tAbsError: 8.14107e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.67619e-05\tAbsError: 1.02422e+10\n", - " Region: \"zone_1\"\tRelError: 2.21445e-05\tAbsError: 4.91320e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.21303e-05\tAbsError: 5.33976e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41260e-08\tAbsError: 4.90786e-06\n", - " Region: \"zone_3\"\tRelError: 1.46175e-05\tAbsError: 1.02422e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.20200e-07\tAbsError: 5.93794e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.20801e-07\tAbsError: 4.30423e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35623e-05\tAbsError: 5.58038e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.41284e-08\tAbsError: 4.90869e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:42\u001b[0m.\u001b[1;36m989\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.7\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.69383e-04\tAbsError: 1.90424e+11\n", - " Region: \"zone_1\"\tRelError: 1.08741e-04\tAbsError: 3.06906e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08652e-04\tAbsError: 2.81501e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.81753e-08\tAbsError: 3.06624e-05\n", - " Region: \"zone_3\"\tRelError: 1.60642e-04\tAbsError: 1.90424e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.72095e-06\tAbsError: 9.63082e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.66101e-06\tAbsError: 9.41161e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55172e-04\tAbsError: 3.17766e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.82093e-08\tAbsError: 3.06751e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 9.38488e-05\tAbsError: 6.84833e+10\n", - " Region: \"zone_1\"\tRelError: 3.78678e-05\tAbsError: 6.55657e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.78490e-05\tAbsError: 1.02277e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.88252e-08\tAbsError: 6.54634e-06\n", - " Region: \"zone_3\"\tRelError: 5.59810e-05\tAbsError: 6.84833e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.79292e-07\tAbsError: 3.46701e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.53325e-07\tAbsError: 3.38132e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 5.40295e-05\tAbsError: 1.16112e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.88326e-08\tAbsError: 6.54910e-06\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.11982e+00\tAbsError: 2.71568e+16\n", - " Region: \"zone_1\"\tRelError: 3.35178e+00\tAbsError: 4.09552e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.35178e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.75560e-09\tAbsError: 9.57391e-07\n", - " Region: \"zone_3\"\tRelError: 1.76804e+00\tAbsError: 2.71568e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68907e-01\tAbsError: 1.36090e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.68433e-01\tAbsError: 1.35478e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.30705e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.75592e-09\tAbsError: 9.57503e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:44\u001b[0m.\u001b[1;36m274\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:44\u001b[0m.\u001b[1;36m274\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.8318181818181818\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.73275e+00\tAbsError: 2.68838e+16\n", - " Region: \"zone_1\"\tRelError: 1.92080e-01\tAbsError: 1.46306e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.91747e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.32681e-04\tAbsError: 1.15542e-01\n", - " Region: \"zone_3\"\tRelError: 1.54067e+00\tAbsError: 2.68838e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.36324e-01\tAbsError: 1.35736e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.01335e-01\tAbsError: 1.33102e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.02681e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.32681e-04\tAbsError: 1.15542e-01\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 6.26409e+01\tAbsError: 2.06464e+17\n", - " Region: \"zone_1\"\tRelError: 5.29122e+01\tAbsError: 4.18750e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.29122e+01\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.18828e-09\tAbsError: 2.15194e-06\n", - " Region: \"zone_3\"\tRelError: 9.72871e+00\tAbsError: 2.06464e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68786e-01\tAbsError: 1.04673e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.64901e-01\tAbsError: 1.01791e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 8.19502e+00\tAbsError: 4.18729e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.19085e-09\tAbsError: 2.15289e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.12307e+00\tAbsError: 1.60442e+16\n", - " Region: \"zone_1\"\tRelError: 1.49907e-01\tAbsError: 9.31426e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49713e-01\tAbsError: 2.58569e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93773e-04\tAbsError: 6.72856e-02\n", - " Region: \"zone_3\"\tRelError: 9.73164e-01\tAbsError: 1.60442e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.39500e-01\tAbsError: 8.04160e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.83757e-01\tAbsError: 8.00261e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49713e-01\tAbsError: 2.43087e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.93773e-04\tAbsError: 6.72856e-02\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 1.35511e+01\tAbsError: 2.00721e+17\n", - " Region: \"zone_1\"\tRelError: 9.05776e+00\tAbsError: 3.17953e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 9.05694e+00\tAbsError: 3.18460e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.25235e-04\tAbsError: 2.86107e-01\n", - " Region: \"zone_3\"\tRelError: 4.49330e+00\tAbsError: 2.00721e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.18665e-01\tAbsError: 1.00830e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.48184e-01\tAbsError: 9.98909e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.22562e+00\tAbsError: 3.18461e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.25235e-04\tAbsError: 2.86107e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.25010e-01\tAbsError: 4.83168e+15\n", - " Region: \"zone_1\"\tRelError: 9.35029e-02\tAbsError: 6.02167e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.33558e-02\tAbsError: 9.16529e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47066e-04\tAbsError: 5.10514e-02\n", - " Region: \"zone_3\"\tRelError: 3.31507e-01\tAbsError: 4.83168e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74852e-01\tAbsError: 2.44485e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.96161e-02\tAbsError: 2.38683e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.68922e-02\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.47066e-04\tAbsError: 5.10514e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.64600e+01\tAbsError: 1.09755e+17\n", - " Region: \"zone_1\"\tRelError: 8.60535e+00\tAbsError: 7.85504e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.60519e+00\tAbsError: 2.58355e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.51895e-04\tAbsError: 5.27150e-02\n", - " Region: \"zone_3\"\tRelError: 7.85464e+00\tAbsError: 1.09755e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.72183e-01\tAbsError: 5.54608e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.84598e-01\tAbsError: 5.42941e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 7.19770e+00\tAbsError: 2.58833e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.51931e-04\tAbsError: 5.27291e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.30868e-01\tAbsError: 1.08442e+15\n", - " Region: \"zone_1\"\tRelError: 2.27753e-02\tAbsError: 2.15920e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.21537e-02\tAbsError: 2.84606e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.21607e-04\tAbsError: 2.15635e-01\n", - " Region: \"zone_3\"\tRelError: 1.08092e-01\tAbsError: 1.08442e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.76472e-02\tAbsError: 4.26455e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.43864e-02\tAbsError: 6.57964e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 4.54371e-02\tAbsError: 2.84606e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.21607e-04\tAbsError: 2.15635e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.39576e+01\tAbsError: 2.65299e+16\n", - " Region: \"zone_1\"\tRelError: 4.26722e+00\tAbsError: 2.88514e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.26642e+00\tAbsError: 1.05207e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.02275e-04\tAbsError: 2.77993e-01\n", - " Region: \"zone_3\"\tRelError: 9.69036e+00\tAbsError: 2.65299e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.08928e-01\tAbsError: 1.33171e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.65693e-02\tAbsError: 1.32128e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 9.53406e+00\tAbsError: 1.05209e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.02275e-04\tAbsError: 2.77993e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.55617e-01\tAbsError: 2.35794e+14\n", - " Region: \"zone_1\"\tRelError: 4.99367e-02\tAbsError: 1.38607e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 4.98970e-02\tAbsError: 6.98741e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.97528e-05\tAbsError: 1.37908e-02\n", - " Region: \"zone_3\"\tRelError: 1.05680e-01\tAbsError: 2.35794e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.27300e-03\tAbsError: 1.18548e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.21148e-03\tAbsError: 1.17246e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.51557e-02\tAbsError: 7.06637e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.97528e-05\tAbsError: 1.37908e-02\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.42859e+00\tAbsError: 2.49911e+15\n", - " Region: \"zone_1\"\tRelError: 5.91891e-01\tAbsError: 3.18861e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.91799e-01\tAbsError: 5.49238e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.17909e-05\tAbsError: 3.18312e-02\n", - " Region: \"zone_3\"\tRelError: 8.36703e-01\tAbsError: 2.49911e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54401e-02\tAbsError: 1.28918e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.49463e-03\tAbsError: 1.20992e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 8.18676e-01\tAbsError: 5.54292e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.19256e-05\tAbsError: 3.18774e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.12114e-02\tAbsError: 1.98754e+13\n", - " Region: \"zone_1\"\tRelError: 7.04172e-03\tAbsError: 6.58751e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.02275e-03\tAbsError: 5.51750e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.89733e-05\tAbsError: 6.58199e-03\n", - " Region: \"zone_3\"\tRelError: 1.41697e-02\tAbsError: 1.98754e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43525e-04\tAbsError: 1.00008e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.47254e-04\tAbsError: 9.87467e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.32599e-02\tAbsError: 5.78756e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.89775e-05\tAbsError: 6.58354e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.80948e-02\tAbsError: 9.31122e+13\n", - " Region: \"zone_1\"\tRelError: 2.56313e-02\tAbsError: 4.95623e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.56170e-02\tAbsError: 7.64802e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42800e-05\tAbsError: 4.94858e-03\n", - " Region: \"zone_3\"\tRelError: 2.46352e-03\tAbsError: 9.31122e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46073e-04\tAbsError: 4.55140e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.72001e-04\tAbsError: 4.75982e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.93116e-03\tAbsError: 7.70864e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42820e-05\tAbsError: 4.94922e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.24258e-02\tAbsError: 1.10918e+13\n", - " Region: \"zone_1\"\tRelError: 4.12899e-03\tAbsError: 9.16825e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.12635e-03\tAbsError: 2.69238e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.63359e-06\tAbsError: 9.14133e-04\n", - " Region: \"zone_3\"\tRelError: 8.29681e-03\tAbsError: 1.10918e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.48339e-04\tAbsError: 5.58229e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.46113e-04\tAbsError: 5.50951e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.79972e-03\tAbsError: 2.89698e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.63458e-06\tAbsError: 9.14508e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.25345e-02\tAbsError: 3.21244e+13\n", - " Region: \"zone_1\"\tRelError: 3.04273e-02\tAbsError: 6.71597e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.04254e-02\tAbsError: 1.30196e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.92861e-06\tAbsError: 6.70295e-04\n", - " Region: \"zone_3\"\tRelError: 4.21072e-02\tAbsError: 3.21244e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.48791e-05\tAbsError: 1.57862e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.89246e-05\tAbsError: 1.63382e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.19414e-02\tAbsError: 1.31464e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.92951e-06\tAbsError: 6.70605e-04\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.18008e-03\tAbsError: 1.59787e+12\n", - " Region: \"zone_1\"\tRelError: 7.30404e-04\tAbsError: 4.14536e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.29211e-04\tAbsError: 3.64518e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19313e-06\tAbsError: 4.14171e-04\n", - " Region: \"zone_3\"\tRelError: 1.44968e-03\tAbsError: 1.59787e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.59026e-05\tAbsError: 8.02763e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.55751e-05\tAbsError: 7.95108e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37700e-03\tAbsError: 3.97752e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.19336e-06\tAbsError: 4.14251e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.17447e-03\tAbsError: 2.58043e+12\n", - " Region: \"zone_1\"\tRelError: 7.71621e-04\tAbsError: 2.66830e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 7.70854e-04\tAbsError: 2.10775e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.67206e-07\tAbsError: 2.66619e-04\n", - " Region: \"zone_3\"\tRelError: 4.02848e-04\tAbsError: 2.58043e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.32310e-06\tAbsError: 1.26387e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.42751e-06\tAbsError: 1.31656e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 3.85330e-04\tAbsError: 2.12566e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.67527e-07\tAbsError: 2.66734e-04\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 9.04358e-04\tAbsError: 6.91618e+11\n", - " Region: \"zone_1\"\tRelError: 3.02587e-04\tAbsError: 7.78938e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 3.02363e-04\tAbsError: 1.55785e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.23501e-07\tAbsError: 7.77380e-05\n", - " Region: \"zone_3\"\tRelError: 6.01772e-04\tAbsError: 6.91618e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.55559e-05\tAbsError: 3.47877e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.53466e-05\tAbsError: 3.43741e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.70646e-04\tAbsError: 1.69595e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.23586e-07\tAbsError: 7.77681e-05\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 4.12184e-03\tAbsError: 1.62887e+12\n", - " Region: \"zone_1\"\tRelError: 1.73087e-03\tAbsError: 1.53873e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.73082e-03\tAbsError: 7.35260e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.40606e-08\tAbsError: 1.53138e-05\n", - " Region: \"zone_3\"\tRelError: 2.39098e-03\tAbsError: 1.62887e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33503e-06\tAbsError: 8.01201e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.97355e-06\tAbsError: 8.27667e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 2.38262e-03\tAbsError: 7.42067e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.40835e-08\tAbsError: 1.53217e-05\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.87260e-04\tAbsError: 1.29403e+11\n", - " Region: \"zone_1\"\tRelError: 6.28801e-05\tAbsError: 2.91909e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.27963e-05\tAbsError: 3.06059e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.38368e-08\tAbsError: 2.91603e-05\n", - " Region: \"zone_3\"\tRelError: 1.24379e-04\tAbsError: 1.29403e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91169e-06\tAbsError: 6.49895e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.87741e-06\tAbsError: 6.44135e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.18506e-04\tAbsError: 3.32307e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.38700e-08\tAbsError: 2.91722e-05\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.79168e-04\tAbsError: 3.20906e+10\n", - " Region: \"zone_1\"\tRelError: 7.55189e-05\tAbsError: 1.50080e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 7.54758e-05\tAbsError: 4.46211e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.31734e-08\tAbsError: 1.50036e-05\n", - " Region: \"zone_3\"\tRelError: 1.03649e-04\tAbsError: 3.20906e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07218e-07\tAbsError: 1.57169e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.64373e-07\tAbsError: 1.63737e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03134e-04\tAbsError: 4.49804e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.31912e-08\tAbsError: 1.50100e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 6.51617e-05\tAbsError: 4.65398e+10\n", - " Region: \"zone_1\"\tRelError: 2.18609e-05\tAbsError: 6.36014e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18427e-05\tAbsError: 1.11819e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.82534e-08\tAbsError: 6.34896e-06\n", - " Region: \"zone_3\"\tRelError: 4.33008e-05\tAbsError: 4.65398e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04809e-06\tAbsError: 2.33986e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.03254e-06\tAbsError: 2.31412e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.12019e-05\tAbsError: 1.20844e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.82605e-08\tAbsError: 6.35150e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:55\u001b[0m.\u001b[1;36m272\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.7999999999999999\u001b[0m\n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.38551e-04\tAbsError: 8.98512e+10\n", - " Region: \"zone_1\"\tRelError: 1.00201e-04\tAbsError: 8.19631e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00199e-04\tAbsError: 4.20573e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.34630e-09\tAbsError: 8.15425e-07\n", - " Region: \"zone_3\"\tRelError: 1.38350e-04\tAbsError: 8.98512e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38157e-07\tAbsError: 4.42059e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.17525e-07\tAbsError: 4.56453e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37892e-04\tAbsError: 4.24388e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.34751e-09\tAbsError: 8.15869e-07\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.97502e+01\tAbsError: 1.32808e+17\n", - " Region: \"zone_1\"\tRelError: 2.76074e+01\tAbsError: 4.09563e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.76074e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.00798e-09\tAbsError: 2.08971e-06\n", - " Region: \"zone_3\"\tRelError: 2.14284e+00\tAbsError: 1.32808e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.64512e-01\tAbsError: 6.68287e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.62033e-01\tAbsError: 6.59795e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.16298e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.01029e-09\tAbsError: 2.09057e-06\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 2.07212e-05\tAbsError: 3.92078e+09\n", - " Region: \"zone_1\"\tRelError: 8.71999e-06\tAbsError: 8.80168e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 8.71745e-06\tAbsError: 3.03329e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.53184e-09\tAbsError: 8.79864e-07\n", - " Region: \"zone_3\"\tRelError: 1.20013e-05\tAbsError: 3.92078e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.24810e-09\tAbsError: 1.93525e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.55241e-08\tAbsError: 1.98553e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19739e-05\tAbsError: 3.05503e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.53289e-09\tAbsError: 8.80250e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:56\u001b[0m.\u001b[1;36m825\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:41:56\u001b[0m.\u001b[1;36m825\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m0.9363636363636363\u001b[0m \n", - "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_4, Equation: PotentialEquation\n", "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 8.61535e+00\tAbsError: 1.17905e+17\n", - " Region: \"zone_1\"\tRelError: 7.44285e-01\tAbsError: 3.38569e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 7.43397e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.87545e-04\tAbsError: 3.07806e-01\n", - " Region: \"zone_3\"\tRelError: 7.87107e+00\tAbsError: 1.17905e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17750e-01\tAbsError: 5.81639e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.67341e-01\tAbsError: 5.97408e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.58509e+00\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.87924e-04\tAbsError: 3.07944e-01\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31686\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "number of equations 31686\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31686\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31686\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31686\n", "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.48867e+01\tAbsError: 8.69121e+17\n", - " Region: \"zone_1\"\tRelError: 1.65971e+01\tAbsError: 4.18727e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65971e+01\tAbsError: 4.18726e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.60155e-10\tAbsError: 9.04112e-08\n", - " Region: \"zone_3\"\tRelError: 1.82897e+01\tAbsError: 8.69121e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.24787e-01\tAbsError: 4.24939e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.05667e-01\tAbsError: 4.44182e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.68592e+01\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.60276e-10\tAbsError: 9.04544e-08\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 6.05251e+00\tAbsError: 7.12298e+16\n", - " Region: \"zone_1\"\tRelError: 9.54106e-01\tAbsError: 5.37894e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 9.54025e-01\tAbsError: 2.58886e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.04593e-05\tAbsError: 2.79009e-02\n", - " Region: \"zone_3\"\tRelError: 5.09841e+00\tAbsError: 7.12298e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.89784e-01\tAbsError: 3.67872e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.99659e-01\tAbsError: 3.44425e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 4.40888e+00\tAbsError: 2.58912e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.04593e-05\tAbsError: 2.79009e-02\n", + " Device: \"device\"\tRelError: 1.11610e+02\tAbsError: 5.65759e+16\n", + " Region: \"zone_1\"\tRelError: 1.09495e+02\tAbsError: 8.03430e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09495e+02\tAbsError: 8.03338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94362e-08\tAbsError: 9.20298e-06\n", + " Region: \"zone_3\"\tRelError: 2.11522e+00\tAbsError: 5.65759e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.53744e-01\tAbsError: 3.12412e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.53597e-01\tAbsError: 2.53346e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07877e-01\tAbsError: 8.03338e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94389e-08\tAbsError: 9.20400e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.11711e+01\tAbsError: 5.14326e+16\n", + " Region: \"zone_1\"\tRelError: 9.08710e+00\tAbsError: 7.79907e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.08710e+00\tAbsError: 7.79815e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94362e-08\tAbsError: 9.20298e-06\n", + " Region: \"zone_3\"\tRelError: 2.08402e+00\tAbsError: 5.14326e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.49352e-01\tAbsError: 2.84011e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.49192e-01\tAbsError: 2.30315e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85474e-01\tAbsError: 7.79815e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94389e-08\tAbsError: 9.20400e-06\n", + "Iteration: 0\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.51798e+01\tAbsError: 7.20057e+16\n", + " Region: \"zone_1\"\tRelError: 2.30524e+01\tAbsError: 8.63383e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30524e+01\tAbsError: 8.63291e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94362e-08\tAbsError: 9.20298e-06\n", + " Region: \"zone_3\"\tRelError: 2.12738e+00\tAbsError: 7.20057e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.63292e-01\tAbsError: 3.97616e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.63174e-01\tAbsError: 3.22441e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.00913e-01\tAbsError: 8.63291e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94389e-08\tAbsError: 9.20400e-06\n", + " Device: \"device\"\tRelError: 4.92297e+01\tAbsError: 6.68624e+16\n", + " Region: \"zone_1\"\tRelError: 4.71172e+01\tAbsError: 8.44899e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.71172e+01\tAbsError: 8.44807e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94362e-08\tAbsError: 9.20298e-06\n", + " Region: \"zone_3\"\tRelError: 2.11246e+00\tAbsError: 6.68624e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.60579e-01\tAbsError: 3.69215e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.60453e-01\tAbsError: 2.99409e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91428e-01\tAbsError: 8.44807e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94389e-08\tAbsError: 9.20400e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 2.03798e+01\tAbsError: 6.17191e+16\n", + " Region: \"zone_1\"\tRelError: 1.82405e+01\tAbsError: 8.24993e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82405e+01\tAbsError: 8.24901e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94362e-08\tAbsError: 9.20298e-06\n", + " Region: \"zone_3\"\tRelError: 2.13925e+00\tAbsError: 6.17191e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.57434e-01\tAbsError: 3.40814e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.57298e-01\tAbsError: 2.76378e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24517e-01\tAbsError: 8.24901e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94389e-08\tAbsError: 9.20400e-06\n", "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.50101e+01\tAbsError: 4.92774e+17\n", - " Region: \"zone_1\"\tRelError: 2.38889e+01\tAbsError: 8.39239e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.38866e+01\tAbsError: 3.18457e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.32486e-03\tAbsError: 8.07393e-01\n", - " Region: \"zone_3\"\tRelError: 1.11212e+01\tAbsError: 4.92774e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.97767e-01\tAbsError: 2.47241e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.70128e-01\tAbsError: 2.45533e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.01510e+01\tAbsError: 3.18461e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.32553e-03\tAbsError: 8.07646e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.96439e+00\tAbsError: 2.12374e+16\n", - " Region: \"zone_1\"\tRelError: 1.45967e+00\tAbsError: 2.87618e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.45886e+00\tAbsError: 9.16520e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03570e-04\tAbsError: 2.78453e-01\n", - " Region: \"zone_3\"\tRelError: 2.50473e+00\tAbsError: 2.12374e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31487e-01\tAbsError: 1.07624e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.30649e-02\tAbsError: 1.04749e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 2.30937e+00\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.03570e-04\tAbsError: 2.78453e-01\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.35926e+03\tAbsError: 1.05438e+17\n", - " Region: \"zone_1\"\tRelError: 2.03313e+03\tAbsError: 2.96967e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03313e+03\tAbsError: 2.58401e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.81226e-04\tAbsError: 2.71127e-01\n", - " Region: \"zone_3\"\tRelError: 3.26125e+02\tAbsError: 1.05438e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.89823e-01\tAbsError: 5.29897e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.07843e-01\tAbsError: 5.24486e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.25827e+02\tAbsError: 2.58968e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.84277e-04\tAbsError: 2.72186e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.06736e+00\tAbsError: 1.67079e+15\n", - " Region: \"zone_1\"\tRelError: 1.87002e-01\tAbsError: 2.94468e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.86917e-01\tAbsError: 5.45669e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.47563e-05\tAbsError: 2.93922e-02\n", - " Region: \"zone_3\"\tRelError: 1.88036e+00\tAbsError: 1.67079e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95806e-02\tAbsError: 8.61655e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.32450e-03\tAbsError: 8.09135e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.85737e+00\tAbsError: 5.47236e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.50770e-05\tAbsError: 2.95046e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 2.39810e+03\tAbsError: 8.38928e+15\n", - " Region: \"zone_1\"\tRelError: 1.19903e+03\tAbsError: 3.97682e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19903e+03\tAbsError: 1.05203e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11056e-03\tAbsError: 3.87162e-01\n", - " Region: \"zone_3\"\tRelError: 1.19907e+03\tAbsError: 8.38928e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91275e-02\tAbsError: 4.21388e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.23084e-02\tAbsError: 4.17540e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19903e+03\tAbsError: 1.05209e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.11347e-03\tAbsError: 3.88174e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.99757e-02\tAbsError: 6.03219e+13\n", - " Region: \"zone_1\"\tRelError: 5.28092e-03\tAbsError: 6.07421e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 5.26342e-03\tAbsError: 6.43272e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75062e-05\tAbsError: 6.06778e-03\n", - " Region: \"zone_3\"\tRelError: 2.46948e-02\tAbsError: 6.03219e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52421e-04\tAbsError: 2.92320e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.21852e-04\tAbsError: 3.10899e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.41030e-02\tAbsError: 6.47112e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.75095e-05\tAbsError: 6.06885e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 5.74169e+00\tAbsError: 3.25633e+15\n", - " Region: \"zone_1\"\tRelError: 4.07651e+00\tAbsError: 5.82288e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.07484e+00\tAbsError: 1.78290e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67256e-03\tAbsError: 5.82110e-01\n", - " Region: \"zone_3\"\tRelError: 1.66518e+00\tAbsError: 3.25633e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05814e-02\tAbsError: 1.48807e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.36399e-03\tAbsError: 1.76827e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.65055e+00\tAbsError: 1.80419e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.67601e-03\tAbsError: 5.83306e-01\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.10405e-01\tAbsError: 3.12560e+13\n", - " Region: \"zone_1\"\tRelError: 1.08840e-02\tAbsError: 4.61195e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08827e-02\tAbsError: 1.71511e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32204e-06\tAbsError: 4.59479e-04\n", - " Region: \"zone_3\"\tRelError: 9.95213e-02\tAbsError: 3.12560e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34947e-04\tAbsError: 1.52362e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.27748e-04\tAbsError: 1.60198e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 9.92573e-02\tAbsError: 1.72813e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.32271e-06\tAbsError: 4.59705e-04\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.39772e+01\tAbsError: 2.88783e+15\n", - " Region: \"zone_1\"\tRelError: 1.07664e+01\tAbsError: 3.55558e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07663e+01\tAbsError: 1.67865e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.01653e-04\tAbsError: 3.53879e-02\n", - " Region: \"zone_3\"\tRelError: 3.21075e+00\tAbsError: 2.88783e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.72695e-03\tAbsError: 1.43653e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.01817e-03\tAbsError: 1.45130e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 3.20390e+00\tAbsError: 1.69327e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.01695e-04\tAbsError: 3.54018e-02\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 4.63047e-03\tAbsError: 9.09027e+11\n", - " Region: \"zone_1\"\tRelError: 4.56990e-04\tAbsError: 3.44629e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.55999e-04\tAbsError: 1.41300e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.91190e-07\tAbsError: 3.44488e-04\n", - " Region: \"zone_3\"\tRelError: 4.17348e-03\tAbsError: 9.09027e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33335e-06\tAbsError: 4.38047e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.02288e-05\tAbsError: 4.70980e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 4.15793e-03\tAbsError: 1.42246e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.91601e-07\tAbsError: 3.44637e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.54985e+00\tAbsError: 2.55969e+14\n", - " Region: \"zone_1\"\tRelError: 3.36029e+00\tAbsError: 2.26869e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.36022e+00\tAbsError: 1.18562e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.51403e-05\tAbsError: 2.26750e-02\n", - " Region: \"zone_3\"\tRelError: 1.89556e-01\tAbsError: 2.55969e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.34677e-04\tAbsError: 1.27496e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.19133e-04\tAbsError: 1.28473e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.88537e-01\tAbsError: 1.19493e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.51674e-05\tAbsError: 2.26844e-02\n", + " Device: \"device\"\tRelError: 8.86922e+00\tAbsError: 9.24872e+15\n", + " Region: \"zone_1\"\tRelError: 4.31487e+00\tAbsError: 1.05507e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.31170e+00\tAbsError: 7.88206e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.17011e-03\tAbsError: 9.76245e-01\n", + " Region: \"zone_3\"\tRelError: 4.55434e+00\tAbsError: 9.24872e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.49983e-01\tAbsError: 4.58045e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.89615e-01\tAbsError: 4.66827e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.61158e+00\tAbsError: 7.88209e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.17011e-03\tAbsError: 9.76245e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.05259e+02\tAbsError: 8.12385e+15\n", + " Region: \"zone_1\"\tRelError: 1.00380e+02\tAbsError: 9.89122e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00377e+02\tAbsError: 7.64333e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.96312e-03\tAbsError: 9.12689e-01\n", + " Region: \"zone_3\"\tRelError: 4.87915e+00\tAbsError: 8.12385e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.45176e-01\tAbsError: 4.06823e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.87715e-01\tAbsError: 4.05563e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.94329e+00\tAbsError: 7.64337e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.96312e-03\tAbsError: 9.12689e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 9.41508e+00\tAbsError: 6.81132e+15\n", + " Region: \"zone_1\"\tRelError: 3.90007e+00\tAbsError: 9.09303e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.89735e+00\tAbsError: 7.38150e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.71180e-03\tAbsError: 8.35488e-01\n", + " Region: \"zone_3\"\tRelError: 5.51501e+00\tAbsError: 6.81132e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.39409e-01\tAbsError: 3.34310e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.85245e-01\tAbsError: 3.46822e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.58765e+00\tAbsError: 7.38153e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.71180e-03\tAbsError: 8.35488e-01\n", + "Iteration: 1\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 2.98222e+01\tAbsError: 1.11639e+16\n", + " Region: \"zone_1\"\tRelError: 2.56621e+01\tAbsError: 1.18471e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.56585e+01\tAbsError: 8.30410e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57887e-03\tAbsError: 1.10167e+00\n", + " Region: \"zone_3\"\tRelError: 4.16016e+00\tAbsError: 1.11639e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.57526e-01\tAbsError: 5.20492e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.92299e-01\tAbsError: 5.95896e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20676e+00\tAbsError: 8.30413e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57887e-03\tAbsError: 1.10167e+00\n", + " Device: \"device\"\tRelError: 7.52010e+00\tAbsError: 9.88313e+15\n", + " Region: \"zone_1\"\tRelError: 3.16481e+00\tAbsError: 1.11175e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.16146e+00\tAbsError: 8.10136e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34764e-03\tAbsError: 1.03073e+00\n", + " Region: \"zone_3\"\tRelError: 4.35528e+00\tAbsError: 9.88313e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.54095e-01\tAbsError: 4.58058e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.91102e-01\tAbsError: 5.30254e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.40674e+00\tAbsError: 8.10139e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34764e-03\tAbsError: 1.03073e+00\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 5.84959e+01\tAbsError: 4.95490e+15\n", + " Region: \"zone_1\"\tRelError: 5.32265e+01\tAbsError: 5.46597e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.32250e+01\tAbsError: 7.72032e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50315e-03\tAbsError: 4.69394e-01\n", + " Region: \"zone_3\"\tRelError: 5.26940e+00\tAbsError: 4.95490e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.44049e-01\tAbsError: 2.91603e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.88109e-01\tAbsError: 2.03887e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.33574e+00\tAbsError: 7.72032e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50331e-03\tAbsError: 4.69453e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.35621e+01\tAbsError: 5.59578e+15\n", + " Region: \"zone_1\"\tRelError: 8.64378e+00\tAbsError: 5.91458e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.64214e+00\tAbsError: 7.94442e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63972e-03\tAbsError: 5.12014e-01\n", + " Region: \"zone_3\"\tRelError: 4.91830e+00\tAbsError: 5.59578e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.48506e-01\tAbsError: 3.27290e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.90126e-01\tAbsError: 2.32288e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97803e+00\tAbsError: 7.94442e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63988e-03\tAbsError: 5.12079e-01\n", + "Iteration: 2\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.19891e+00\tAbsError: 4.32421e+15\n", + " Region: \"zone_1\"\tRelError: 3.55222e+00\tAbsError: 5.22318e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.55078e+00\tAbsError: 7.47671e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43310e-03\tAbsError: 4.47551e-01\n", + " Region: \"zone_3\"\tRelError: 5.64669e+00\tAbsError: 4.32421e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.38413e-01\tAbsError: 2.57375e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.85923e-01\tAbsError: 1.75046e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.72093e+00\tAbsError: 7.47672e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43325e-03\tAbsError: 4.47607e-01\n", + " Device: \"device\"\tRelError: 2.43550e+01\tAbsError: 3.70472e+15\n", + " Region: \"zone_1\"\tRelError: 1.80372e+01\tAbsError: 4.89909e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80359e+01\tAbsError: 7.21002e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33777e-03\tAbsError: 4.17809e-01\n", + " Region: \"zone_3\"\tRelError: 6.31776e+00\tAbsError: 3.70472e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.31983e-01\tAbsError: 2.23410e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.82448e-01\tAbsError: 1.47063e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.40199e+00\tAbsError: 7.21002e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33791e-03\tAbsError: 4.17861e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 9.59825e+00\tAbsError: 3.10876e+15\n", + " Region: \"zone_1\"\tRelError: 1.71797e+00\tAbsError: 4.43147e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.71677e+00\tAbsError: 6.91562e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19740e-03\tAbsError: 3.73991e-01\n", + " Region: \"zone_3\"\tRelError: 7.88028e+00\tAbsError: 3.10876e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.24073e-01\tAbsError: 1.89975e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.77826e-01\tAbsError: 1.20901e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.97719e+00\tAbsError: 6.91562e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19752e-03\tAbsError: 3.74038e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.67860e+00\tAbsError: 1.00022e+15\n", + " Region: \"zone_1\"\tRelError: 2.88306e-01\tAbsError: 4.78790e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.86976e-01\tAbsError: 6.38532e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33026e-03\tAbsError: 4.14937e-01\n", + " Region: \"zone_3\"\tRelError: 3.39030e+00\tAbsError: 1.00022e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.08896e-01\tAbsError: 5.30635e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.56619e-01\tAbsError: 4.69589e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52345e+00\tAbsError: 6.38532e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33038e-03\tAbsError: 4.14982e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.12841e+00\tAbsError: 1.35360e+15\n", + " Region: \"zone_1\"\tRelError: 1.40703e+00\tAbsError: 5.19203e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40558e+00\tAbsError: 6.72023e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44934e-03\tAbsError: 4.52001e-01\n", + " Region: \"zone_3\"\tRelError: 3.72139e+00\tAbsError: 1.35360e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.20057e-01\tAbsError: 8.07923e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.66440e-01\tAbsError: 5.45674e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83344e+00\tAbsError: 6.72023e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44947e-03\tAbsError: 4.52050e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.56037e+00\tAbsError: 1.70751e+15\n", + " Region: \"zone_1\"\tRelError: 4.90056e-01\tAbsError: 5.46859e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.88527e-01\tAbsError: 7.02145e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52859e-03\tAbsError: 4.76645e-01\n", + " Region: \"zone_3\"\tRelError: 4.07031e+00\tAbsError: 1.70751e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.28711e-01\tAbsError: 1.09432e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.73987e-01\tAbsError: 6.13185e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16609e+00\tAbsError: 7.02145e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52873e-03\tAbsError: 4.76696e-01\n", + "Iteration: 3\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.83218e+01\tAbsError: 2.24086e+15\n", + " Region: \"zone_1\"\tRelError: 2.38621e+01\tAbsError: 5.68143e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38605e+01\tAbsError: 7.29480e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58829e-03\tAbsError: 4.95195e-01\n", + " Region: \"zone_3\"\tRelError: 4.45975e+00\tAbsError: 2.24086e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.36205e-01\tAbsError: 1.56598e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.79330e-01\tAbsError: 6.74879e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54262e+00\tAbsError: 7.29480e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58843e-03\tAbsError: 4.95248e-01\n", + " Device: \"device\"\tRelError: 2.48517e+01\tAbsError: 2.96293e+15\n", + " Region: \"zone_1\"\tRelError: 1.98967e+01\tAbsError: 6.00981e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.98951e+01\tAbsError: 7.54476e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68584e-03\tAbsError: 5.25533e-01\n", + " Region: \"zone_3\"\tRelError: 4.95493e+00\tAbsError: 2.96293e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.42070e-01\tAbsError: 2.16160e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.83503e-01\tAbsError: 8.01328e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.02767e+00\tAbsError: 7.54477e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68599e-03\tAbsError: 5.25589e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.72907e+00\tAbsError: 4.93492e+14\n", + " Region: \"zone_1\"\tRelError: 2.61458e-01\tAbsError: 3.39402e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.60556e-01\tAbsError: 5.77713e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.02074e-04\tAbsError: 2.81631e-01\n", + " Region: \"zone_3\"\tRelError: 4.46761e+00\tAbsError: 4.93492e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.83104e-01\tAbsError: 2.78560e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.07926e-01\tAbsError: 2.14932e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67568e+00\tAbsError: 5.77713e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.02150e-04\tAbsError: 2.81660e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.46958e+00\tAbsError: 6.78295e+14\n", + " Region: \"zone_1\"\tRelError: 5.01820e-01\tAbsError: 3.75345e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.00815e-01\tAbsError: 6.16313e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00491e-03\tAbsError: 3.13713e-01\n", + " Region: \"zone_3\"\tRelError: 3.96776e+00\tAbsError: 6.78295e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.99309e-01\tAbsError: 4.15513e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.33231e-01\tAbsError: 2.62781e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13421e+00\tAbsError: 6.16313e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00500e-03\tAbsError: 3.13746e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 5.92638e+00\tAbsError: 1.14837e+15\n", + " Region: \"zone_1\"\tRelError: 2.22777e+00\tAbsError: 4.01593e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.22669e+00\tAbsError: 6.50744e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07805e-03\tAbsError: 3.36519e-01\n", + " Region: \"zone_3\"\tRelError: 3.69861e+00\tAbsError: 1.14837e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.11514e-01\tAbsError: 7.46536e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.51031e-01\tAbsError: 4.01835e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83499e+00\tAbsError: 6.50745e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07814e-03\tAbsError: 3.36554e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.55489e+00\tAbsError: 1.83494e+15\n", + " Region: \"zone_1\"\tRelError: 1.03071e+00\tAbsError: 4.24286e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02957e+00\tAbsError: 6.81758e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14089e-03\tAbsError: 3.56110e-01\n", + " Region: \"zone_3\"\tRelError: 3.52418e+00\tAbsError: 1.83494e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.21631e-01\tAbsError: 1.23691e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.62681e-01\tAbsError: 5.98024e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63872e+00\tAbsError: 6.81758e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14098e-03\tAbsError: 3.56147e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.02452e+00\tAbsError: 2.82583e+15\n", + " Region: \"zone_1\"\tRelError: 6.18503e-01\tAbsError: 4.57922e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.17264e-01\tAbsError: 7.09928e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23968e-03\tAbsError: 3.86929e-01\n", + " Region: \"zone_3\"\tRelError: 3.40602e+00\tAbsError: 2.82583e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.29649e-01\tAbsError: 1.95916e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.71517e-01\tAbsError: 8.66662e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50361e+00\tAbsError: 7.09928e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23979e-03\tAbsError: 3.86970e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.11627e+00\tAbsError: 3.11992e+14\n", + " Region: \"zone_1\"\tRelError: 1.82844e-01\tAbsError: 3.04122e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82032e-01\tAbsError: 5.06647e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.12494e-04\tAbsError: 2.53458e-01\n", + " Region: \"zone_3\"\tRelError: 3.93342e+00\tAbsError: 3.11992e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.49414e-01\tAbsError: 2.04751e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.86399e-01\tAbsError: 1.07241e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29680e+00\tAbsError: 5.06648e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.12563e-04\tAbsError: 2.53484e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 5.76634e+00\tAbsError: 5.05468e+14\n", + " Region: \"zone_1\"\tRelError: 8.51745e-01\tAbsError: 3.30421e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.50862e-01\tAbsError: 5.51778e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.82458e-04\tAbsError: 2.75243e-01\n", + " Region: \"zone_3\"\tRelError: 4.91459e+00\tAbsError: 5.05468e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.73516e-01\tAbsError: 2.91347e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.48617e-01\tAbsError: 2.14121e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.19158e+00\tAbsError: 5.51779e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.82533e-04\tAbsError: 2.75271e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 6.98989e+00\tAbsError: 1.00788e+15\n", + " Region: \"zone_1\"\tRelError: 6.39687e-01\tAbsError: 3.47724e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.38761e-01\tAbsError: 5.91690e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.25249e-04\tAbsError: 2.88555e-01\n", + " Region: \"zone_3\"\tRelError: 6.35021e+00\tAbsError: 1.00788e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.91607e-01\tAbsError: 5.99041e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.90171e-01\tAbsError: 4.08840e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.56750e+00\tAbsError: 5.91691e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.25328e-04\tAbsError: 2.88585e-01\n", + "Iteration: 5\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.12473e+01\tAbsError: 3.78758e+15\n", + " Region: \"zone_1\"\tRelError: 8.58784e+00\tAbsError: 3.80409e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.58683e+00\tAbsError: 6.59479e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00852e-03\tAbsError: 3.14461e-01\n", + " Region: \"zone_3\"\tRelError: 1.26595e+01\tAbsError: 3.78758e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.16791e-01\tAbsError: 2.47669e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.38022e-01\tAbsError: 1.31089e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08036e+01\tAbsError: 6.59480e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00860e-03\tAbsError: 3.14493e-01\n", + " Device: \"device\"\tRelError: 2.38510e+01\tAbsError: 2.01068e+15\n", + " Region: \"zone_1\"\tRelError: 1.51107e+01\tAbsError: 3.60712e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51098e+01\tAbsError: 6.27344e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.55556e-04\tAbsError: 2.97977e-01\n", + " Region: \"zone_3\"\tRelError: 8.74031e+00\tAbsError: 2.01068e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.05515e-01\tAbsError: 1.26142e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.18298e-01\tAbsError: 7.49258e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.91554e+00\tAbsError: 6.27344e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.55636e-04\tAbsError: 2.98008e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.44725e+00\tAbsError: 2.71131e+14\n", + " Region: \"zone_1\"\tRelError: 1.45468e-01\tAbsError: 2.22869e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44890e-01\tAbsError: 4.22860e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.78548e-04\tAbsError: 1.80583e-01\n", + " Region: \"zone_3\"\tRelError: 3.30178e+00\tAbsError: 2.71131e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.91583e-01\tAbsError: 1.20891e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.99042e-01\tAbsError: 1.50240e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01057e+00\tAbsError: 4.22860e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.78595e-04\tAbsError: 1.80601e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.63719e+00\tAbsError: 4.98878e+14\n", + " Region: \"zone_1\"\tRelError: 5.81237e-01\tAbsError: 2.50121e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.80588e-01\tAbsError: 4.76277e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.48794e-04\tAbsError: 2.02493e-01\n", + " Region: \"zone_3\"\tRelError: 3.05595e+00\tAbsError: 4.98878e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.29936e-01\tAbsError: 2.52480e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.29247e-01\tAbsError: 2.46398e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59612e+00\tAbsError: 4.76277e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.48848e-04\tAbsError: 2.02514e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.44967e+00\tAbsError: 1.18081e+15\n", + " Region: \"zone_1\"\tRelError: 5.03623e-01\tAbsError: 2.72588e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.02917e-01\tAbsError: 5.23179e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.05795e-04\tAbsError: 2.20270e-01\n", + " Region: \"zone_3\"\tRelError: 2.94605e+00\tAbsError: 1.18081e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.58300e-01\tAbsError: 7.23248e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.16570e-01\tAbsError: 4.57558e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37047e+00\tAbsError: 5.23179e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.05855e-04\tAbsError: 2.20293e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.85934e+00\tAbsError: 4.95433e+15\n", + " Region: \"zone_1\"\tRelError: 1.03628e+00\tAbsError: 3.19715e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03544e+00\tAbsError: 6.01883e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.31643e-04\tAbsError: 2.59527e-01\n", + " Region: \"zone_3\"\tRelError: 2.82307e+00\tAbsError: 4.95433e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.95737e-01\tAbsError: 2.57394e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.80695e-01\tAbsError: 2.38039e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14580e+00\tAbsError: 6.01884e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.31715e-04\tAbsError: 2.59554e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 3.81258e+00\tAbsError: 2.66958e+15\n", + " Region: \"zone_1\"\tRelError: 9.38423e-01\tAbsError: 2.93644e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.37663e-01\tAbsError: 5.64734e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.59981e-04\tAbsError: 2.37170e-01\n", + " Region: \"zone_3\"\tRelError: 2.87416e+00\tAbsError: 2.66958e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.79194e-01\tAbsError: 1.55310e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.64064e-01\tAbsError: 1.11648e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23014e+00\tAbsError: 5.64734e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.60046e-04\tAbsError: 2.37195e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.44409e+00\tAbsError: 1.82484e+14\n", + " Region: \"zone_1\"\tRelError: 1.12534e-01\tAbsError: 1.98523e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12001e-01\tAbsError: 3.23224e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.32754e-04\tAbsError: 1.66200e-01\n", + " Region: \"zone_3\"\tRelError: 4.33155e+00\tAbsError: 1.82484e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.98888e-01\tAbsError: 1.23613e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.14455e-01\tAbsError: 5.88707e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.51768e+00\tAbsError: 3.23224e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.32801e-04\tAbsError: 1.66218e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.27792e+01\tAbsError: 3.60245e+14\n", + " Region: \"zone_1\"\tRelError: 1.43723e+01\tAbsError: 2.18515e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43718e+01\tAbsError: 3.86608e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.76591e-04\tAbsError: 1.79855e-01\n", + " Region: \"zone_3\"\tRelError: 8.40685e+00\tAbsError: 3.60245e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.63265e-01\tAbsError: 2.19851e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.49832e-01\tAbsError: 1.40394e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.39317e+00\tAbsError: 3.86609e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.76642e-04\tAbsError: 1.79874e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.05874e+01\tAbsError: 8.37073e+14\n", + " Region: \"zone_1\"\tRelError: 4.09327e-01\tAbsError: 2.32266e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.08724e-01\tAbsError: 4.42308e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.02871e-04\tAbsError: 1.88035e-01\n", + " Region: \"zone_3\"\tRelError: 3.01781e+01\tAbsError: 8.37073e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09316e-01\tAbsError: 4.20656e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.52215e-01\tAbsError: 4.16416e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.90159e+01\tAbsError: 4.42309e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.02923e-04\tAbsError: 1.88055e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.67370e+01\tAbsError: 3.78764e+15\n", + " Region: \"zone_1\"\tRelError: 1.67221e+00\tAbsError: 2.66246e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67153e+00\tAbsError: 5.34969e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.82209e-04\tAbsError: 2.12749e-01\n", + " Region: \"zone_3\"\tRelError: 2.50648e+01\tAbsError: 3.78764e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.66705e-01\tAbsError: 2.16704e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.01117e-01\tAbsError: 1.62060e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.37963e+01\tAbsError: 5.34969e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.82269e-04\tAbsError: 2.12771e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.30343e+02\tAbsError: 1.95377e+15\n", + " Region: \"zone_1\"\tRelError: 1.78843e+00\tAbsError: 2.48387e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78779e+00\tAbsError: 4.91403e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.38868e-04\tAbsError: 1.99247e-01\n", + " Region: \"zone_3\"\tRelError: 1.28554e+02\tAbsError: 1.95377e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.42003e-01\tAbsError: 1.04522e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.91386e-01\tAbsError: 9.08541e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27320e+02\tAbsError: 4.91404e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.38924e-04\tAbsError: 1.99268e-01\n", "Iteration: 8\n", - " Device: \"device\"\tRelError: 6.49771e-03\tAbsError: 1.64940e+12\n", - " Region: \"zone_1\"\tRelError: 6.42053e-04\tAbsError: 1.77929e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.42002e-04\tAbsError: 9.99896e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.09050e-08\tAbsError: 1.76929e-05\n", - " Region: \"zone_3\"\tRelError: 5.85566e-03\tAbsError: 1.64940e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.16109e-06\tAbsError: 8.03293e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.70130e-06\tAbsError: 8.46106e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.84174e-03\tAbsError: 1.00703e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.09341e-08\tAbsError: 1.77035e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 7.69184e-01\tAbsError: 1.54336e+14\n", - " Region: \"zone_1\"\tRelError: 6.51898e-01\tAbsError: 2.46820e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.51891e-01\tAbsError: 6.67604e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.08303e-06\tAbsError: 2.46152e-03\n", - " Region: \"zone_3\"\tRelError: 1.17286e-01\tAbsError: 1.54336e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.86365e-04\tAbsError: 7.68336e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.04654e-04\tAbsError: 7.75022e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.16988e-01\tAbsError: 6.73289e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.08303e-06\tAbsError: 2.46238e-03\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 5.44825e-04\tAbsError: 5.87780e+10\n", - " Region: \"zone_1\"\tRelError: 5.39394e-05\tAbsError: 2.02429e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.38812e-05\tAbsError: 6.87611e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.82246e-08\tAbsError: 2.02360e-05\n", - " Region: \"zone_3\"\tRelError: 4.90886e-04\tAbsError: 5.87780e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46411e-07\tAbsError: 2.85251e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.30809e-07\tAbsError: 3.02529e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 4.90250e-04\tAbsError: 6.91269e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.82487e-08\tAbsError: 2.02448e-05\n", + " Device: \"device\"\tRelError: 2.15593e+00\tAbsError: 1.72752e+14\n", + " Region: \"zone_1\"\tRelError: 9.94642e-02\tAbsError: 1.35502e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.91129e-02\tAbsError: 2.58895e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.51240e-04\tAbsError: 1.09613e-01\n", + " Region: \"zone_3\"\tRelError: 2.05646e+00\tAbsError: 1.72752e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.33140e-01\tAbsError: 9.57525e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.88618e-02\tAbsError: 7.69999e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50411e+00\tAbsError: 2.53192e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.51267e-04\tAbsError: 1.09624e-01\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.21785e+00\tAbsError: 2.03964e+14\n", + " Region: \"zone_1\"\tRelError: 1.26829e+00\tAbsError: 1.49561e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26790e+00\tAbsError: 2.80828e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.89293e-04\tAbsError: 1.21478e-01\n", + " Region: \"zone_3\"\tRelError: 1.94955e+00\tAbsError: 2.03964e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.44508e-01\tAbsError: 9.83375e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.01829e-02\tAbsError: 1.05627e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21447e+00\tAbsError: 2.80828e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.89324e-04\tAbsError: 1.21490e-01\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.38388e+00\tAbsError: 7.37092e+14\n", + " Region: \"zone_1\"\tRelError: 3.78447e-01\tAbsError: 1.61022e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.78042e-01\tAbsError: 3.46430e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.05026e-04\tAbsError: 1.26379e-01\n", + " Region: \"zone_3\"\tRelError: 2.00544e+00\tAbsError: 7.37092e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.23218e-01\tAbsError: 4.04076e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.13861e-01\tAbsError: 3.33016e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06795e+00\tAbsError: 3.46430e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.05058e-04\tAbsError: 1.26391e-01\n", "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.01432e-01\tAbsError: 2.06717e+13\n", - " Region: \"zone_1\"\tRelError: 8.22439e-02\tAbsError: 1.10802e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 8.22407e-02\tAbsError: 7.73664e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.18996e-06\tAbsError: 1.10725e-03\n", - " Region: \"zone_3\"\tRelError: 1.91883e-02\tAbsError: 2.06717e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.30941e-05\tAbsError: 1.02983e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.90681e-05\tAbsError: 1.03734e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.91229e-02\tAbsError: 7.79971e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.19006e-06\tAbsError: 1.10725e-03\n", + " Device: \"device\"\tRelError: 2.69787e+00\tAbsError: 5.03857e+15\n", + " Region: \"zone_1\"\tRelError: 4.94446e-01\tAbsError: 1.71648e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.94042e-01\tAbsError: 4.56388e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.03902e-04\tAbsError: 1.26009e-01\n", + " Region: \"zone_3\"\tRelError: 2.20342e+00\tAbsError: 5.03857e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.17767e-01\tAbsError: 2.85065e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.34840e-01\tAbsError: 2.18792e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.50411e-01\tAbsError: 4.56389e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.03933e-04\tAbsError: 1.26020e-01\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.88188e+01\tAbsError: 2.17173e+15\n", + " Region: \"zone_1\"\tRelError: 1.67311e+01\tAbsError: 1.69237e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67307e+01\tAbsError: 4.04734e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.12698e-04\tAbsError: 1.28763e-01\n", + " Region: \"zone_3\"\tRelError: 2.08774e+00\tAbsError: 2.17173e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.78086e-01\tAbsError: 1.20654e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.18612e-01\tAbsError: 9.65183e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.90628e-01\tAbsError: 4.04734e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.12731e-04\tAbsError: 1.28775e-01\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.63027e+04\tAbsError: 9.78086e+13\n", + " Region: \"zone_1\"\tRelError: 6.58715e-02\tAbsError: 1.27864e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.54973e-02\tAbsError: 1.11416e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.74163e-04\tAbsError: 1.16723e-01\n", + " Region: \"zone_3\"\tRelError: 1.63027e+04\tAbsError: 9.78086e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.86412e-01\tAbsError: 5.69028e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.71465e-02\tAbsError: 4.09058e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63024e+04\tAbsError: 1.11417e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.74197e-04\tAbsError: 1.16736e-01\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 5.91292e+00\tAbsError: 1.14945e+14\n", + " Region: \"zone_1\"\tRelError: 7.10179e-01\tAbsError: 1.45158e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.09786e-01\tAbsError: 2.25796e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.92973e-04\tAbsError: 1.22579e-01\n", + " Region: \"zone_3\"\tRelError: 5.20274e+00\tAbsError: 1.14945e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.48486e-01\tAbsError: 6.69306e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.67661e-02\tAbsError: 4.80142e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.69709e+00\tAbsError: 2.25798e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.93009e-04\tAbsError: 1.22592e-01\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 3.54016e+00\tAbsError: 5.77109e+14\n", + " Region: \"zone_1\"\tRelError: 1.85194e-01\tAbsError: 1.55614e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84778e-01\tAbsError: 2.57438e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.16390e-04\tAbsError: 1.29870e-01\n", + " Region: \"zone_3\"\tRelError: 3.35496e+00\tAbsError: 5.77109e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.78842e-01\tAbsError: 3.19042e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.76031e-01\tAbsError: 2.58066e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.59968e+00\tAbsError: 2.56236e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.16428e-04\tAbsError: 1.29885e-01\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 2.86176e+00\tAbsError: 6.05685e+15\n", + " Region: \"zone_1\"\tRelError: 3.92345e-01\tAbsError: 1.91945e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.91846e-01\tAbsError: 3.62983e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.99152e-04\tAbsError: 1.55647e-01\n", + " Region: \"zone_3\"\tRelError: 2.46942e+00\tAbsError: 6.05685e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.39669e-01\tAbsError: 3.52970e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.58355e-01\tAbsError: 2.52715e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27090e+00\tAbsError: 3.62984e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.99201e-04\tAbsError: 1.55665e-01\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 3.94347e+00\tAbsError: 2.14052e+15\n", + " Region: \"zone_1\"\tRelError: 1.15749e+00\tAbsError: 1.68444e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15705e+00\tAbsError: 3.01870e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.43324e-04\tAbsError: 1.38257e-01\n", + " Region: \"zone_3\"\tRelError: 2.78598e+00\tAbsError: 2.14052e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.72683e-01\tAbsError: 1.22738e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.26577e-01\tAbsError: 9.13146e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78628e+00\tAbsError: 3.01870e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.43365e-04\tAbsError: 1.38273e-01\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.17434e+00\tAbsError: 1.23763e+14\n", + " Region: \"zone_1\"\tRelError: 7.01119e-02\tAbsError: 6.21030e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.99131e-02\tAbsError: 6.65496e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98822e-04\tAbsError: 6.20364e-02\n", + " Region: \"zone_3\"\tRelError: 1.10423e+00\tAbsError: 1.23763e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.50061e-02\tAbsError: 6.58484e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.08052e-03\tAbsError: 5.79151e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.99942e-01\tAbsError: 6.92242e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98837e-04\tAbsError: 6.20422e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.71031e+00\tAbsError: 1.31596e+14\n", + " Region: \"zone_1\"\tRelError: 6.52288e-01\tAbsError: 5.18140e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.52123e-01\tAbsError: 1.87184e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65482e-04\tAbsError: 5.16268e-02\n", + " Region: \"zone_3\"\tRelError: 1.05802e+00\tAbsError: 1.31596e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.25778e-01\tAbsError: 7.95912e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.75147e-03\tAbsError: 5.20053e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.23324e-01\tAbsError: 1.94436e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65493e-04\tAbsError: 5.16311e-02\n", "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.92595e-04\tAbsError: 9.49473e+10\n", - " Region: \"zone_1\"\tRelError: 3.87978e-05\tAbsError: 2.02444e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.87920e-05\tAbsError: 5.96621e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.80757e-09\tAbsError: 2.01847e-06\n", - " Region: \"zone_3\"\tRelError: 3.53797e-04\tAbsError: 9.49473e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.10989e-07\tAbsError: 4.62323e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.83783e-07\tAbsError: 4.87150e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.52997e-04\tAbsError: 6.00786e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.81025e-09\tAbsError: 2.01944e-06\n", + " Device: \"device\"\tRelError: 1.44916e+00\tAbsError: 3.12348e+14\n", + " Region: \"zone_1\"\tRelError: 3.06843e-01\tAbsError: 8.21279e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.06627e-01\tAbsError: 1.46786e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16209e-04\tAbsError: 6.74493e-02\n", + " Region: \"zone_3\"\tRelError: 1.14232e+00\tAbsError: 3.12348e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.37944e-01\tAbsError: 1.90281e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.66381e-02\tAbsError: 1.22067e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.27521e-01\tAbsError: 1.46788e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16225e-04\tAbsError: 6.74554e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.25016e+00\tAbsError: 5.53255e+15\n", + " Region: \"zone_1\"\tRelError: 6.60812e-01\tAbsError: 7.94337e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.60639e-01\tAbsError: 2.53947e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73269e-04\tAbsError: 5.40390e-02\n", + " Region: \"zone_3\"\tRelError: 1.58935e+00\tAbsError: 5.53255e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.03262e-01\tAbsError: 3.22275e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.67935e-01\tAbsError: 2.30979e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.17982e-01\tAbsError: 2.53395e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73281e-04\tAbsError: 5.40432e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.19791e+00\tAbsError: 1.45106e+15\n", + " Region: \"zone_1\"\tRelError: 1.83851e+00\tAbsError: 8.50974e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83832e+00\tAbsError: 2.58809e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89842e-04\tAbsError: 5.92164e-02\n", + " Region: \"zone_3\"\tRelError: 1.35940e+00\tAbsError: 1.45106e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.87376e-01\tAbsError: 8.38558e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.14149e-01\tAbsError: 6.12507e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.57688e-01\tAbsError: 2.56752e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89855e-04\tAbsError: 5.92215e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.14305e+00\tAbsError: 5.03693e+13\n", + " Region: \"zone_1\"\tRelError: 3.54907e-02\tAbsError: 7.02597e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52656e-02\tAbsError: 3.17765e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.25126e-04\tAbsError: 7.02280e-02\n", + " Region: \"zone_3\"\tRelError: 1.10756e+00\tAbsError: 5.03693e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.71694e-03\tAbsError: 3.31056e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02825e-02\tAbsError: 1.72637e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08833e+00\tAbsError: 3.65275e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.25146e-04\tAbsError: 7.02356e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 8.07908e-01\tAbsError: 3.52323e+13\n", + " Region: \"zone_1\"\tRelError: 3.00655e-01\tAbsError: 6.61825e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.00442e-01\tAbsError: 2.41917e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.12106e-04\tAbsError: 6.61583e-02\n", + " Region: \"zone_3\"\tRelError: 5.07254e-01\tAbsError: 3.52323e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.89017e-03\tAbsError: 2.64897e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.69266e-03\tAbsError: 8.74260e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.89459e-01\tAbsError: 3.30491e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.12125e-04\tAbsError: 6.61655e-02\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 9.13697e-01\tAbsError: 8.41493e+13\n", + " Region: \"zone_1\"\tRelError: 1.30413e-01\tAbsError: 1.10653e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30049e-01\tAbsError: 1.69938e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.64058e-04\tAbsError: 1.10483e-01\n", + " Region: \"zone_3\"\tRelError: 7.83284e-01\tAbsError: 8.41493e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.30913e-01\tAbsError: 4.90743e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.61290e-02\tAbsError: 3.50750e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.35878e-01\tAbsError: 1.71506e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.64162e-04\tAbsError: 1.10513e-01\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.26497e+00\tAbsError: 3.15307e+15\n", + " Region: \"zone_1\"\tRelError: 3.98747e-01\tAbsError: 1.86813e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.98198e-01\tAbsError: 1.76095e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.49721e-04\tAbsError: 1.69203e-01\n", + " Region: \"zone_3\"\tRelError: 8.66223e-01\tAbsError: 3.15307e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.75815e-01\tAbsError: 1.70212e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.01351e-01\tAbsError: 1.45094e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88507e-01\tAbsError: 1.76100e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.49721e-04\tAbsError: 1.69203e-01\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.46630e+00\tAbsError: 6.77274e+14\n", + " Region: \"zone_1\"\tRelError: 8.32295e-01\tAbsError: 4.21261e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.32185e-01\tAbsError: 8.50620e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09740e-04\tAbsError: 3.36199e-02\n", + " Region: \"zone_3\"\tRelError: 6.34002e-01\tAbsError: 6.77274e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.50810e-01\tAbsError: 3.37087e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.09380e-02\tAbsError: 3.40187e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.12145e-01\tAbsError: 8.50627e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09740e-04\tAbsError: 3.36199e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 6.16330e-01\tAbsError: 7.32124e+13\n", + " Region: \"zone_1\"\tRelError: 4.29620e-02\tAbsError: 5.04935e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.28003e-02\tAbsError: 3.90152e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61713e-04\tAbsError: 5.04545e-02\n", + " Region: \"zone_3\"\tRelError: 5.73368e-01\tAbsError: 7.32124e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.09370e-03\tAbsError: 3.87254e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.33901e-03\tAbsError: 3.44870e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.59774e-01\tAbsError: 4.06484e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61727e-04\tAbsError: 5.04599e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 6.84845e-01\tAbsError: 6.76816e+13\n", + " Region: \"zone_1\"\tRelError: 2.70935e-01\tAbsError: 4.23707e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.70799e-01\tAbsError: 3.68086e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35706e-04\tAbsError: 4.23339e-02\n", + " Region: \"zone_3\"\tRelError: 4.13910e-01\tAbsError: 6.76816e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.80594e-03\tAbsError: 3.67513e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.16833e-03\tAbsError: 3.09303e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.02800e-01\tAbsError: 3.82660e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35717e-04\tAbsError: 4.23383e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 8.15165e-01\tAbsError: 1.29674e+14\n", + " Region: \"zone_1\"\tRelError: 2.81434e-01\tAbsError: 7.15559e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.81205e-01\tAbsError: 6.32954e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29197e-04\tAbsError: 7.14926e-02\n", + " Region: \"zone_3\"\tRelError: 5.33731e-01\tAbsError: 1.29674e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.32293e-03\tAbsError: 6.43495e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04252e-02\tAbsError: 6.53245e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.13753e-01\tAbsError: 6.61737e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29218e-04\tAbsError: 7.15004e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 8.80208e-01\tAbsError: 7.22345e+14\n", + " Region: \"zone_1\"\tRelError: 2.48270e-01\tAbsError: 8.96413e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.47978e-01\tAbsError: 5.30498e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.91169e-04\tAbsError: 8.91108e-02\n", + " Region: \"zone_3\"\tRelError: 6.31938e-01\tAbsError: 7.22345e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43373e-01\tAbsError: 4.17565e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.39197e-02\tAbsError: 3.04780e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54354e-01\tAbsError: 5.59229e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.91285e-04\tAbsError: 8.91415e-02\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.92441e-01\tAbsError: 2.16330e+14\n", + " Region: \"zone_1\"\tRelError: 4.43447e-02\tAbsError: 1.90515e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.37231e-02\tAbsError: 1.91494e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.21624e-04\tAbsError: 1.90324e-01\n", + " Region: \"zone_3\"\tRelError: 1.48096e-01\tAbsError: 2.16330e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.60723e-02\tAbsError: 2.18144e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.67890e-02\tAbsError: 1.94516e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.46133e-02\tAbsError: 2.00625e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.21688e-04\tAbsError: 1.90335e-01\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 7.33871e-01\tAbsError: 5.24158e+13\n", + " Region: \"zone_1\"\tRelError: 3.04607e-02\tAbsError: 4.90773e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.03034e-02\tAbsError: 2.82697e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57233e-04\tAbsError: 4.90490e-02\n", + " Region: \"zone_3\"\tRelError: 7.03410e-01\tAbsError: 5.24158e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.32132e-03\tAbsError: 2.79983e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.16184e-03\tAbsError: 2.44175e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.89770e-01\tAbsError: 2.94067e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57247e-04\tAbsError: 4.90544e-02\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 5.93275e-01\tAbsError: 4.28369e+13\n", + " Region: \"zone_1\"\tRelError: 2.23958e-01\tAbsError: 4.35472e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23818e-01\tAbsError: 2.37659e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39538e-04\tAbsError: 4.35234e-02\n", + " Region: \"zone_3\"\tRelError: 3.69317e-01\tAbsError: 4.28369e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.53429e-03\tAbsError: 2.36712e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.35628e-03\tAbsError: 1.91658e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.57287e-01\tAbsError: 2.46506e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39551e-04\tAbsError: 4.35282e-02\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 6.79950e-01\tAbsError: 7.68923e+13\n", + " Region: \"zone_1\"\tRelError: 1.55303e-01\tAbsError: 7.75683e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55054e-01\tAbsError: 3.99913e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.48609e-04\tAbsError: 7.75283e-02\n", + " Region: \"zone_3\"\tRelError: 5.24647e-01\tAbsError: 7.68923e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05152e-02\tAbsError: 4.13074e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13625e-02\tAbsError: 3.55849e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.02520e-01\tAbsError: 4.41027e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.48632e-04\tAbsError: 7.75370e-02\n", + "Iteration: 13\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.22311e+00\tAbsError: 1.79390e+14\n", + " Region: \"zone_1\"\tRelError: 7.39850e-01\tAbsError: 6.74738e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.39628e-01\tAbsError: 8.43019e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.22057e-04\tAbsError: 6.73895e-02\n", + " Region: \"zone_3\"\tRelError: 4.83263e-01\tAbsError: 1.79390e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05665e-02\tAbsError: 7.57966e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.41220e-03\tAbsError: 1.03593e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.63063e-01\tAbsError: 8.70725e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.22187e-04\tAbsError: 6.74284e-02\n", + " Device: \"device\"\tRelError: 1.51939e-01\tAbsError: 7.44703e+13\n", + " Region: \"zone_1\"\tRelError: 4.86096e-02\tAbsError: 5.32576e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.84389e-02\tAbsError: 5.39520e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70724e-04\tAbsError: 5.32037e-02\n", + " Region: \"zone_3\"\tRelError: 1.03330e-01\tAbsError: 7.44703e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.09212e-03\tAbsError: 2.79885e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.80935e-03\tAbsError: 4.64818e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.92576e-02\tAbsError: 5.48712e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70739e-04\tAbsError: 5.32096e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 4.42877e-01\tAbsError: 5.22476e+13\n", + " Region: \"zone_1\"\tRelError: 3.04305e-02\tAbsError: 4.06367e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.03003e-02\tAbsError: 2.76588e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.30161e-04\tAbsError: 4.06091e-02\n", + " Region: \"zone_3\"\tRelError: 4.12446e-01\tAbsError: 5.22476e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.24652e-03\tAbsError: 2.72913e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.89988e-03\tAbsError: 2.49563e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.01170e-01\tAbsError: 2.88043e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.30173e-04\tAbsError: 4.06135e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 4.62325e-01\tAbsError: 4.60959e+13\n", + " Region: \"zone_1\"\tRelError: 1.84055e-01\tAbsError: 3.46929e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83944e-01\tAbsError: 2.47727e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11135e-04\tAbsError: 3.46681e-02\n", + " Region: \"zone_3\"\tRelError: 2.78270e-01\tAbsError: 4.60959e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.44095e-03\tAbsError: 2.45113e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.04061e-03\tAbsError: 2.15846e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.68677e-01\tAbsError: 2.57398e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11145e-04\tAbsError: 3.46719e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 5.65978e-01\tAbsError: 8.44365e+13\n", + " Region: \"zone_1\"\tRelError: 1.98931e-01\tAbsError: 6.17288e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.98733e-01\tAbsError: 4.30773e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.97768e-04\tAbsError: 6.16858e-02\n", + " Region: \"zone_3\"\tRelError: 3.67047e-01\tAbsError: 8.44365e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.10833e-03\tAbsError: 4.47030e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.96443e-03\tAbsError: 3.97335e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.49777e-01\tAbsError: 4.48904e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.97786e-04\tAbsError: 6.16925e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 9.63459e-01\tAbsError: 7.70020e+13\n", + " Region: \"zone_1\"\tRelError: 6.22876e-01\tAbsError: 8.77030e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.22595e-01\tAbsError: 3.51805e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.81198e-04\tAbsError: 8.76678e-02\n", + " Region: \"zone_3\"\tRelError: 3.40584e-01\tAbsError: 7.70020e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31747e-02\tAbsError: 3.80275e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.28961e-02\tAbsError: 3.89745e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.14231e-01\tAbsError: 5.51102e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.81226e-04\tAbsError: 8.76786e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.97657e-01\tAbsError: 5.18671e+13\n", + " Region: \"zone_1\"\tRelError: 7.88533e-02\tAbsError: 5.90491e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.88339e-02\tAbsError: 2.36155e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93924e-05\tAbsError: 5.88129e-03\n", + " Region: \"zone_3\"\tRelError: 1.18804e-01\tAbsError: 5.18671e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.47324e-03\tAbsError: 2.97408e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.46537e-03\tAbsError: 2.21263e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13846e-01\tAbsError: 2.40282e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93945e-05\tAbsError: 5.88193e-03\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 5.37257e-01\tAbsError: 4.34805e+13\n", + " Region: \"zone_1\"\tRelError: 2.47537e-02\tAbsError: 3.69710e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.46353e-02\tAbsError: 2.30182e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18440e-04\tAbsError: 3.69480e-02\n", + " Region: \"zone_3\"\tRelError: 5.12503e-01\tAbsError: 4.34805e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.82825e-03\tAbsError: 2.26763e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.38844e-03\tAbsError: 2.08042e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.02168e-01\tAbsError: 2.39629e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18451e-04\tAbsError: 3.69520e-02\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 4.60417e-01\tAbsError: 3.70189e+13\n", + " Region: \"zone_1\"\tRelError: 1.75617e-01\tAbsError: 3.21228e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75515e-01\tAbsError: 1.98889e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02922e-04\tAbsError: 3.21029e-02\n", + " Region: \"zone_3\"\tRelError: 2.84800e-01\tAbsError: 3.70189e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.18117e-03\tAbsError: 1.96290e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.68215e-03\tAbsError: 1.73900e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.75834e-01\tAbsError: 2.06549e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02932e-04\tAbsError: 3.21064e-02\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 5.42222e-01\tAbsError: 6.65924e+13\n", + " Region: \"zone_1\"\tRelError: 1.37424e-01\tAbsError: 5.78417e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37239e-01\tAbsError: 3.43317e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85368e-04\tAbsError: 5.78073e-02\n", + " Region: \"zone_3\"\tRelError: 4.04798e-01\tAbsError: 6.65924e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.63411e-03\tAbsError: 3.55691e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.44819e-03\tAbsError: 3.10232e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.88530e-01\tAbsError: 3.56696e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.85385e-04\tAbsError: 5.78137e-02\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 7.64242e-01\tAbsError: 1.00273e+14\n", + " Region: \"zone_1\"\tRelError: 4.51638e-01\tAbsError: 6.51775e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.51430e-01\tAbsError: 4.64052e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08867e-04\tAbsError: 6.51311e-02\n", + " Region: \"zone_3\"\tRelError: 3.12603e-01\tAbsError: 1.00273e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00925e-03\tAbsError: 5.17990e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.47940e-03\tAbsError: 4.84735e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.93906e-01\tAbsError: 4.79926e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08886e-04\tAbsError: 6.51384e-02\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 1.11183e-02\tAbsError: 6.49591e+12\n", + " Region: \"zone_1\"\tRelError: 2.09734e-03\tAbsError: 2.03771e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03198e-03\tAbsError: 7.32840e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.53682e-05\tAbsError: 2.03698e-02\n", + " Region: \"zone_3\"\tRelError: 9.02100e-03\tAbsError: 6.49591e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.40271e-03\tAbsError: 3.01508e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.97880e-03\tAbsError: 3.48083e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.57411e-03\tAbsError: 1.00960e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.53740e-05\tAbsError: 2.03720e-02\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 3.45190e-01\tAbsError: 3.96669e+13\n", + " Region: \"zone_1\"\tRelError: 2.29890e-02\tAbsError: 3.20413e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.28863e-02\tAbsError: 2.09407e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02634e-04\tAbsError: 3.20203e-02\n", + " Region: \"zone_3\"\tRelError: 3.22201e-01\tAbsError: 3.96669e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.18132e-03\tAbsError: 2.06239e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.65241e-03\tAbsError: 1.90431e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.13264e-01\tAbsError: 2.18057e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02643e-04\tAbsError: 3.20239e-02\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 3.49725e-01\tAbsError: 3.44457e+13\n", + " Region: \"zone_1\"\tRelError: 1.38987e-01\tAbsError: 2.75180e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38899e-01\tAbsError: 1.84222e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.81565e-05\tAbsError: 2.74996e-02\n", + " Region: \"zone_3\"\tRelError: 2.10737e-01\tAbsError: 3.44457e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.58701e-03\tAbsError: 1.81729e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.99773e-03\tAbsError: 1.62728e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03064e-01\tAbsError: 1.91389e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.81645e-05\tAbsError: 2.75026e-02\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 4.26527e-01\tAbsError: 6.22863e+13\n", + " Region: \"zone_1\"\tRelError: 1.46822e-01\tAbsError: 4.94325e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46663e-01\tAbsError: 3.20413e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58385e-04\tAbsError: 4.94004e-02\n", + " Region: \"zone_3\"\tRelError: 2.79705e-01\tAbsError: 6.22863e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.47299e-03\tAbsError: 3.32571e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.17663e-03\tAbsError: 2.90292e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.65897e-01\tAbsError: 3.33388e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58399e-04\tAbsError: 4.94059e-02\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 8.04334e-01\tAbsError: 7.18549e+13\n", + " Region: \"zone_1\"\tRelError: 5.06230e-01\tAbsError: 6.48327e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.06022e-01\tAbsError: 3.42080e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.07843e-04\tAbsError: 6.47985e-02\n", + " Region: \"zone_3\"\tRelError: 2.98104e-01\tAbsError: 7.18549e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.74882e-03\tAbsError: 3.81448e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.48468e-03\tAbsError: 3.37101e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.79662e-01\tAbsError: 3.67490e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.07862e-04\tAbsError: 6.48057e-02\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 7.71411e-02\tAbsError: 2.04363e+13\n", + " Region: \"zone_1\"\tRelError: 3.21610e-02\tAbsError: 7.58781e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.21367e-02\tAbsError: 9.19950e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.43197e-05\tAbsError: 7.57861e-03\n", + " Region: \"zone_3\"\tRelError: 4.49801e-02\tAbsError: 2.04363e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.71767e-04\tAbsError: 1.14702e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10799e-03\tAbsError: 8.96604e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.29760e-02\tAbsError: 9.32299e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.43217e-05\tAbsError: 7.57936e-03\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 4.01249e-01\tAbsError: 3.44381e+13\n", + " Region: \"zone_1\"\tRelError: 1.95797e-02\tAbsError: 2.85383e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.94883e-02\tAbsError: 1.81773e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.14229e-05\tAbsError: 2.85201e-02\n", + " Region: \"zone_3\"\tRelError: 3.81670e-01\tAbsError: 3.44381e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.73895e-03\tAbsError: 1.78935e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.15686e-03\tAbsError: 1.65445e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.73682e-01\tAbsError: 1.89264e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.14312e-05\tAbsError: 2.85233e-02\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 3.54262e-01\tAbsError: 2.95924e+13\n", + " Region: \"zone_1\"\tRelError: 1.35988e-01\tAbsError: 2.46305e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35909e-01\tAbsError: 1.58203e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.89143e-05\tAbsError: 2.46146e-02\n", + " Region: \"zone_3\"\tRelError: 2.18274e-01\tAbsError: 2.95924e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.22462e-03\tAbsError: 1.55939e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.58788e-03\tAbsError: 1.39985e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.11382e-01\tAbsError: 1.64335e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.89215e-05\tAbsError: 2.46173e-02\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 4.19203e-01\tAbsError: 5.32170e+13\n", + " Region: \"zone_1\"\tRelError: 1.11778e-01\tAbsError: 4.43443e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11636e-01\tAbsError: 2.74250e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42106e-04\tAbsError: 4.43169e-02\n", + " Region: \"zone_3\"\tRelError: 3.07426e-01\tAbsError: 5.32170e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.82630e-03\tAbsError: 2.84433e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.46895e-03\tAbsError: 2.47738e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.94988e-01\tAbsError: 2.85136e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42119e-04\tAbsError: 4.43218e-02\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 5.61973e-01\tAbsError: 7.02447e+13\n", + " Region: \"zone_1\"\tRelError: 3.31628e-01\tAbsError: 5.40984e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.31454e-01\tAbsError: 3.35394e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73385e-04\tAbsError: 5.40649e-02\n", + " Region: \"zone_3\"\tRelError: 2.30345e-01\tAbsError: 7.02447e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.15687e-03\tAbsError: 3.76200e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.85862e-03\tAbsError: 3.26248e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.15156e-01\tAbsError: 3.46015e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73401e-04\tAbsError: 5.40709e-02\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 3.32484e-02\tAbsError: 7.70600e+12\n", + " Region: \"zone_1\"\tRelError: 1.28143e-02\tAbsError: 1.10637e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27788e-02\tAbsError: 3.56134e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.54932e-05\tAbsError: 1.10601e-02\n", + " Region: \"zone_3\"\tRelError: 2.04341e-02\tAbsError: 7.70600e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.39973e-03\tAbsError: 4.36973e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.61484e-03\tAbsError: 3.33627e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73840e-02\tAbsError: 5.88766e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.54964e-05\tAbsError: 1.10614e-02\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 2.74330e-01\tAbsError: 3.06799e+13\n", + " Region: \"zone_1\"\tRelError: 1.77325e-02\tAbsError: 2.50628e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76522e-02\tAbsError: 1.61856e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.02821e-05\tAbsError: 2.50466e-02\n", + " Region: \"zone_3\"\tRelError: 2.56598e-01\tAbsError: 3.06799e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.27742e-03\tAbsError: 1.59330e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.64019e-03\tAbsError: 1.47469e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49600e-01\tAbsError: 1.68536e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.02894e-05\tAbsError: 2.50494e-02\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 2.73287e-01\tAbsError: 2.64993e+13\n", + " Region: \"zone_1\"\tRelError: 1.08298e-01\tAbsError: 2.15531e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08229e-01\tAbsError: 1.41554e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.90491e-05\tAbsError: 2.15390e-02\n", + " Region: \"zone_3\"\tRelError: 1.64990e-01\tAbsError: 2.64993e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.81871e-03\tAbsError: 1.39531e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.13183e-03\tAbsError: 1.25461e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58970e-01\tAbsError: 1.47055e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.90553e-05\tAbsError: 2.15414e-02\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 3.31021e-01\tAbsError: 4.76929e+13\n", + " Region: \"zone_1\"\tRelError: 1.11210e-01\tAbsError: 3.87408e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11086e-01\tAbsError: 2.45702e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24132e-04\tAbsError: 3.87162e-02\n", + " Region: \"zone_3\"\tRelError: 2.19811e-01\tAbsError: 4.76929e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.06890e-03\tAbsError: 2.54957e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.62633e-03\tAbsError: 2.21972e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08991e-01\tAbsError: 2.55553e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24143e-04\tAbsError: 3.87205e-02\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 6.17365e-01\tAbsError: 5.83231e+13\n", + " Region: \"zone_1\"\tRelError: 3.84004e-01\tAbsError: 4.92075e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.83847e-01\tAbsError: 2.80061e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57742e-04\tAbsError: 4.91795e-02\n", + " Region: \"zone_3\"\tRelError: 2.33361e-01\tAbsError: 5.83231e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.49586e-03\tAbsError: 3.13816e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.18525e-03\tAbsError: 2.69415e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19522e-01\tAbsError: 2.88620e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57757e-04\tAbsError: 4.91850e-02\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 4.41314e-02\tAbsError: 1.15478e+13\n", + " Region: \"zone_1\"\tRelError: 1.81700e-02\tAbsError: 7.46235e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81461e-02\tAbsError: 5.13152e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39305e-05\tAbsError: 7.45722e-03\n", + " Region: \"zone_3\"\tRelError: 2.59613e-02\tAbsError: 1.15478e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.61729e-04\tAbsError: 6.33698e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.08758e-03\tAbsError: 5.21085e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38881e-02\tAbsError: 5.21206e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39326e-05\tAbsError: 7.45802e-03\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 3.02510e-01\tAbsError: 2.69568e+13\n", + " Region: \"zone_1\"\tRelError: 1.53462e-02\tAbsError: 2.21820e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52751e-02\tAbsError: 1.42210e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.10594e-05\tAbsError: 2.21678e-02\n", + " Region: \"zone_3\"\tRelError: 2.87164e-01\tAbsError: 2.69568e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.90763e-03\tAbsError: 1.39972e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.22978e-03\tAbsError: 1.29596e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80955e-01\tAbsError: 1.48076e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.10659e-05\tAbsError: 2.21702e-02\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 3.21864e-01\tAbsError: 4.16757e+13\n", + " Region: \"zone_1\"\tRelError: 8.86463e-02\tAbsError: 3.43206e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.85363e-02\tAbsError: 2.14781e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09982e-04\tAbsError: 3.42991e-02\n", + " Region: \"zone_3\"\tRelError: 2.33218e-01\tAbsError: 4.16757e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.50452e-03\tAbsError: 2.22814e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.00342e-03\tAbsError: 1.93942e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23600e-01\tAbsError: 2.23347e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09992e-04\tAbsError: 3.43029e-02\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 2.71960e-01\tAbsError: 2.32066e+13\n", + " Region: \"zone_1\"\tRelError: 1.04859e-01\tAbsError: 1.90972e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04798e-01\tAbsError: 1.23955e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.11851e-05\tAbsError: 1.90848e-02\n", + " Region: \"zone_3\"\tRelError: 1.67101e-01\tAbsError: 2.32066e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.50298e-03\tAbsError: 1.22157e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.78088e-03\tAbsError: 1.09909e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61756e-01\tAbsError: 1.28766e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.11906e-05\tAbsError: 1.90869e-02\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 4.36037e-01\tAbsError: 5.28312e+13\n", + " Region: \"zone_1\"\tRelError: 2.58193e-01\tAbsError: 4.26073e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.58057e-01\tAbsError: 2.53851e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36562e-04\tAbsError: 4.25819e-02\n", + " Region: \"zone_3\"\tRelError: 1.77844e-01\tAbsError: 5.28312e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.58688e-03\tAbsError: 2.84847e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.19049e-03\tAbsError: 2.43466e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65930e-01\tAbsError: 2.61731e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36575e-04\tAbsError: 4.25866e-02\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 3.13242e-02\tAbsError: 7.92330e+12\n", + " Region: \"zone_1\"\tRelError: 1.24505e-02\tAbsError: 7.50482e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24264e-02\tAbsError: 3.52127e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.40725e-05\tAbsError: 7.50130e-03\n", + " Region: \"zone_3\"\tRelError: 1.88737e-02\tAbsError: 7.92330e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.75218e-04\tAbsError: 4.32209e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09454e-03\tAbsError: 3.60120e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67798e-02\tAbsError: 4.10449e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.40747e-05\tAbsError: 7.50212e-03\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 2.18334e-01\tAbsError: 2.38575e+13\n", + " Region: \"zone_1\"\tRelError: 1.37640e-02\tAbsError: 1.95536e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37014e-02\tAbsError: 1.25847e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.26354e-05\tAbsError: 1.95410e-02\n", + " Region: \"zone_3\"\tRelError: 2.04570e-01\tAbsError: 2.38575e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.55842e-03\tAbsError: 1.23868e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.84079e-03\tAbsError: 1.14706e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.99108e-01\tAbsError: 1.31040e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.26410e-05\tAbsError: 1.95432e-02\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 2.58864e-01\tAbsError: 3.69082e+13\n", + " Region: \"zone_1\"\tRelError: 8.51619e-02\tAbsError: 3.01772e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.50652e-02\tAbsError: 1.90201e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.66944e-05\tAbsError: 3.01582e-02\n", + " Region: \"zone_3\"\tRelError: 1.73702e-01\tAbsError: 3.69082e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.94867e-03\tAbsError: 1.97339e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.38438e-03\tAbsError: 1.71742e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65272e-01\tAbsError: 1.97806e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.67031e-05\tAbsError: 3.01615e-02\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 2.14984e-01\tAbsError: 2.05618e+13\n", + " Region: \"zone_1\"\tRelError: 8.49654e-02\tAbsError: 1.68120e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.49116e-02\tAbsError: 1.09811e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.38606e-05\tAbsError: 1.68010e-02\n", + " Region: \"zone_3\"\tRelError: 1.30018e-01\tAbsError: 2.05618e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.20031e-03\tAbsError: 1.08221e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.44346e-03\tAbsError: 9.73970e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25321e-01\tAbsError: 1.14077e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.38655e-05\tAbsError: 1.68029e-02\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 4.66930e-01\tAbsError: 4.57205e+13\n", + " Region: \"zone_1\"\tRelError: 2.88314e-01\tAbsError: 3.78226e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88193e-01\tAbsError: 2.19943e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21243e-04\tAbsError: 3.78006e-02\n", + " Region: \"zone_3\"\tRelError: 1.78616e-01\tAbsError: 4.57205e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.97027e-03\tAbsError: 2.46702e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.51814e-03\tAbsError: 2.10503e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68006e-01\tAbsError: 2.26707e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21254e-04\tAbsError: 3.78048e-02\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 3.06220e-02\tAbsError: 7.95893e+12\n", + " Region: \"zone_1\"\tRelError: 1.25046e-02\tAbsError: 6.09074e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24851e-02\tAbsError: 3.51940e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.95342e-05\tAbsError: 6.08722e-03\n", + " Region: \"zone_3\"\tRelError: 1.81174e-02\tAbsError: 7.95893e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.96331e-04\tAbsError: 4.33007e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.87527e-04\tAbsError: 3.62886e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64140e-02\tAbsError: 3.58233e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.95359e-05\tAbsError: 6.08788e-03\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 2.29754e-01\tAbsError: 2.10335e+13\n", + " Region: \"zone_1\"\tRelError: 1.19915e-02\tAbsError: 1.72743e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19361e-02\tAbsError: 1.10952e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.53372e-05\tAbsError: 1.72632e-02\n", + " Region: \"zone_3\"\tRelError: 2.17762e-01\tAbsError: 2.10335e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.26418e-03\tAbsError: 1.09203e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.51452e-03\tAbsError: 1.01133e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12928e-01\tAbsError: 1.15529e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.53423e-05\tAbsError: 1.72651e-02\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 2.47249e-01\tAbsError: 3.24565e+13\n", + " Region: \"zone_1\"\tRelError: 6.96969e-02\tAbsError: 2.66392e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.96115e-02\tAbsError: 1.67274e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.53655e-05\tAbsError: 2.66225e-02\n", + " Region: \"zone_3\"\tRelError: 1.77552e-01\tAbsError: 3.24565e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.49477e-03\tAbsError: 1.73539e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.88191e-03\tAbsError: 1.51026e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70090e-01\tAbsError: 1.73954e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.53732e-05\tAbsError: 2.66255e-02\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 2.09080e-01\tAbsError: 1.81053e+13\n", + " Region: \"zone_1\"\tRelError: 8.08791e-02\tAbsError: 1.48525e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.08315e-02\tAbsError: 9.66908e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.75853e-05\tAbsError: 1.48428e-02\n", + " Region: \"zone_3\"\tRelError: 1.28201e-01\tAbsError: 1.81053e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94683e-03\tAbsError: 9.52855e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.16227e-03\tAbsError: 8.57670e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24044e-01\tAbsError: 1.00446e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.75896e-05\tAbsError: 1.48445e-02\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 3.42581e-01\tAbsError: 4.05442e+13\n", + " Region: \"zone_1\"\tRelError: 2.03654e-01\tAbsError: 3.31139e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03548e-01\tAbsError: 1.95066e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06137e-04\tAbsError: 3.30944e-02\n", + " Region: \"zone_3\"\tRelError: 1.38927e-01\tAbsError: 4.05442e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33535e-03\tAbsError: 2.18873e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.81308e-03\tAbsError: 1.86569e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29672e-01\tAbsError: 2.01091e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06146e-04\tAbsError: 3.30981e-02\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 2.52830e-02\tAbsError: 6.49526e+12\n", + " Region: \"zone_1\"\tRelError: 1.01315e-02\tAbsError: 5.54185e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01138e-02\tAbsError: 2.87135e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77752e-05\tAbsError: 5.53898e-03\n", + " Region: \"zone_3\"\tRelError: 1.51514e-02\tAbsError: 6.49526e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.25231e-04\tAbsError: 3.52634e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.08036e-04\tAbsError: 2.96892e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36004e-02\tAbsError: 3.05297e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77768e-05\tAbsError: 5.53958e-03\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 1.73279e-01\tAbsError: 1.85810e+13\n", + " Region: \"zone_1\"\tRelError: 1.07051e-02\tAbsError: 1.52434e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06563e-02\tAbsError: 9.80125e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.88289e-05\tAbsError: 1.52336e-02\n", + " Region: \"zone_3\"\tRelError: 1.62574e-01\tAbsError: 1.85810e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.99497e-03\tAbsError: 9.64677e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.21508e-03\tAbsError: 8.93421e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58315e-01\tAbsError: 1.02057e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.88334e-05\tAbsError: 1.52353e-02\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 2.02626e-01\tAbsError: 2.86479e+13\n", + " Region: \"zone_1\"\tRelError: 6.55383e-02\tAbsError: 2.34665e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.54631e-02\tAbsError: 1.47645e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.51925e-05\tAbsError: 2.34517e-02\n", + " Region: \"zone_3\"\tRelError: 1.37088e-01\tAbsError: 2.86479e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.07128e-03\tAbsError: 1.53178e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.41054e-03\tAbsError: 1.33301e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30531e-01\tAbsError: 1.53545e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.51993e-05\tAbsError: 2.34543e-02\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 1.69093e-01\tAbsError: 1.59944e+13\n", + " Region: \"zone_1\"\tRelError: 6.66791e-02\tAbsError: 1.30973e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.66371e-02\tAbsError: 8.54150e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.19602e-05\tAbsError: 1.30888e-02\n", + " Region: \"zone_3\"\tRelError: 1.02413e-01\tAbsError: 1.59944e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.71460e-03\tAbsError: 8.41741e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.90394e-03\tAbsError: 7.57695e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.87530e-02\tAbsError: 8.87325e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.19641e-05\tAbsError: 1.30903e-02\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 3.53383e-01\tAbsError: 3.54973e+13\n", + " Region: \"zone_1\"\tRelError: 2.17068e-01\tAbsError: 2.91979e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16974e-01\tAbsError: 1.70829e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.35942e-05\tAbsError: 2.91808e-02\n", + " Region: \"zone_3\"\tRelError: 1.36316e-01\tAbsError: 3.54973e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.83244e-03\tAbsError: 1.91653e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.25764e-03\tAbsError: 1.63320e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28132e-01\tAbsError: 1.76092e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.36027e-05\tAbsError: 2.91840e-02\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 2.27791e-02\tAbsError: 5.90333e+12\n", + " Region: \"zone_1\"\tRelError: 9.26647e-03\tAbsError: 4.74730e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.25124e-03\tAbsError: 2.60729e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52260e-05\tAbsError: 4.74469e-03\n", + " Region: \"zone_3\"\tRelError: 1.35126e-02\tAbsError: 5.90333e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.22078e-04\tAbsError: 3.20439e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.91786e-04\tAbsError: 2.69894e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21835e-02\tAbsError: 2.65575e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52274e-05\tAbsError: 4.74521e-03\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 1.75528e-01\tAbsError: 1.63973e+13\n", + " Region: \"zone_1\"\tRelError: 9.35966e-03\tAbsError: 1.34594e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.31655e-03\tAbsError: 8.64944e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31163e-05\tAbsError: 1.34508e-02\n", + " Region: \"zone_3\"\tRelError: 1.66169e-01\tAbsError: 1.63973e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.76390e-03\tAbsError: 8.51300e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.95881e-03\tAbsError: 7.88429e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62403e-01\tAbsError: 9.00630e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31202e-05\tAbsError: 1.34523e-02\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 1.90333e-01\tAbsError: 2.52374e+13\n", + " Region: \"zone_1\"\tRelError: 5.45954e-02\tAbsError: 2.06945e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.45291e-02\tAbsError: 1.30071e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.63149e-05\tAbsError: 2.06815e-02\n", + " Region: \"zone_3\"\tRelError: 1.35738e-01\tAbsError: 2.52374e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.71408e-03\tAbsError: 1.34943e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.01466e-03\tAbsError: 1.17432e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29943e-01\tAbsError: 1.35267e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.63209e-05\tAbsError: 2.06838e-02\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 1.61113e-01\tAbsError: 1.41052e+13\n", + " Region: \"zone_1\"\tRelError: 6.24783e-02\tAbsError: 1.15610e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.24413e-02\tAbsError: 7.53265e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.70397e-05\tAbsError: 1.15535e-02\n", + " Region: \"zone_3\"\tRelError: 9.86350e-02\tAbsError: 1.41052e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.51525e-03\tAbsError: 7.42311e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.68279e-03\tAbsError: 6.68211e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.53999e-02\tAbsError: 7.82519e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.70430e-05\tAbsError: 1.15548e-02\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 2.69288e-01\tAbsError: 3.12906e+13\n", + " Region: \"zone_1\"\tRelError: 1.60634e-01\tAbsError: 2.56453e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60552e-01\tAbsError: 1.50589e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.21996e-05\tAbsError: 2.56303e-02\n", + " Region: \"zone_3\"\tRelError: 1.08653e-01\tAbsError: 3.12906e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.35730e-03\tAbsError: 1.68958e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.72888e-03\tAbsError: 1.43948e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01485e-01\tAbsError: 1.55233e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.22071e-05\tAbsError: 2.56331e-02\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 1.96394e-02\tAbsError: 5.06470e+12\n", + " Region: \"zone_1\"\tRelError: 7.89441e-03\tAbsError: 4.20000e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.88094e-03\tAbsError: 2.23678e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34710e-05\tAbsError: 4.19776e-03\n", + " Region: \"zone_3\"\tRelError: 1.17450e-02\tAbsError: 5.06470e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.50520e-04\tAbsError: 2.74764e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.12318e-04\tAbsError: 2.31706e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05687e-02\tAbsError: 2.31770e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34723e-05\tAbsError: 4.19823e-03\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 1.37061e-01\tAbsError: 1.44779e+13\n", + " Region: \"zone_1\"\tRelError: 8.33221e-03\tAbsError: 1.18805e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.29415e-03\tAbsError: 7.63694e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.80569e-05\tAbsError: 1.18729e-02\n", + " Region: \"zone_3\"\tRelError: 1.28729e-01\tAbsError: 1.44779e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.55512e-03\tAbsError: 7.51648e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.72671e-03\tAbsError: 6.96143e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25409e-01\tAbsError: 7.95204e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.80603e-05\tAbsError: 1.18742e-02\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 1.58477e-01\tAbsError: 2.22551e+13\n", + " Region: \"zone_1\"\tRelError: 5.05725e-02\tAbsError: 1.82393e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.05141e-02\tAbsError: 1.14701e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.84438e-05\tAbsError: 1.82278e-02\n", + " Region: \"zone_3\"\tRelError: 1.07904e-01\tAbsError: 2.22551e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38769e-03\tAbsError: 1.18997e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.65156e-03\tAbsError: 1.03554e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02807e-01\tAbsError: 1.19284e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.84491e-05\tAbsError: 1.82298e-02\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 1.32784e-01\tAbsError: 1.24503e+13\n", + " Region: \"zone_1\"\tRelError: 5.22668e-02\tAbsError: 1.01997e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.22341e-02\tAbsError: 6.64885e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.26770e-05\tAbsError: 1.01930e-02\n", + " Region: \"zone_3\"\tRelError: 8.05169e-02\tAbsError: 1.24503e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33546e-03\tAbsError: 6.55217e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.48293e-03\tAbsError: 5.89818e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.76658e-02\tAbsError: 6.90709e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.26800e-05\tAbsError: 1.01941e-02\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 2.68479e-01\tAbsError: 2.74849e+13\n", + " Region: \"zone_1\"\tRelError: 1.64276e-01\tAbsError: 2.25702e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64204e-01\tAbsError: 1.32282e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.23483e-05\tAbsError: 2.25570e-02\n", + " Region: \"zone_3\"\tRelError: 1.04203e-01\tAbsError: 2.74849e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96117e-03\tAbsError: 1.48412e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.29000e-03\tAbsError: 1.26437e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.78795e-02\tAbsError: 1.36359e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.23549e-05\tAbsError: 2.25595e-02\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 1.73029e-02\tAbsError: 4.47892e+12\n", + " Region: \"zone_1\"\tRelError: 7.02508e-03\tAbsError: 3.65329e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.01336e-03\tAbsError: 1.97769e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17173e-05\tAbsError: 3.65132e-03\n", + " Region: \"zone_3\"\tRelError: 1.02778e-02\tAbsError: 4.47892e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.78905e-04\tAbsError: 2.42991e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.32392e-04\tAbsError: 2.04901e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.25481e-03\tAbsError: 2.01694e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17184e-05\tAbsError: 3.65172e-03\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 1.34718e-01\tAbsError: 1.27798e+13\n", + " Region: \"zone_1\"\tRelError: 7.30184e-03\tAbsError: 1.04885e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.26824e-03\tAbsError: 6.74126e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.35992e-05\tAbsError: 1.04818e-02\n", + " Region: \"zone_3\"\tRelError: 1.27416e-01\tAbsError: 1.27798e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.37438e-03\tAbsError: 6.63489e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.52620e-03\tAbsError: 6.14494e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24482e-01\tAbsError: 7.01940e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.36022e-05\tAbsError: 1.04830e-02\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 1.46824e-01\tAbsError: 1.96154e+13\n", + " Region: \"zone_1\"\tRelError: 4.26777e-02\tAbsError: 1.60803e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.26261e-02\tAbsError: 1.01097e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.15284e-05\tAbsError: 1.60702e-02\n", + " Region: \"zone_3\"\tRelError: 1.04147e-01\tAbsError: 1.96154e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10846e-03\tAbsError: 1.04883e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.34190e-03\tAbsError: 9.12716e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.96448e-02\tAbsError: 1.05136e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.15330e-05\tAbsError: 1.60719e-02\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 1.24424e-01\tAbsError: 1.09846e+13\n", + " Region: \"zone_1\"\tRelError: 4.83414e-02\tAbsError: 9.00107e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.83125e-02\tAbsError: 5.86609e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.88379e-05\tAbsError: 8.99521e-03\n", + " Region: \"zone_3\"\tRelError: 7.60824e-02\tAbsError: 1.09846e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.17960e-03\tAbsError: 5.78077e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.30999e-03\tAbsError: 5.20379e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.35640e-02\tAbsError: 6.09392e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.88405e-05\tAbsError: 8.99620e-03\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 2.11172e-01\tAbsError: 2.41869e+13\n", + " Region: \"zone_1\"\tRelError: 1.26320e-01\tAbsError: 1.98424e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26256e-01\tAbsError: 1.16411e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.36003e-05\tAbsError: 1.98308e-02\n", + " Region: \"zone_3\"\tRelError: 8.48517e-02\tAbsError: 2.41869e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.59808e-03\tAbsError: 1.30606e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.88597e-03\tAbsError: 1.11263e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.93040e-02\tAbsError: 1.20000e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.36061e-05\tAbsError: 1.98329e-02\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 1.50961e-02\tAbsError: 3.89750e+12\n", + " Region: \"zone_1\"\tRelError: 6.07772e-03\tAbsError: 3.20668e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.06743e-03\tAbsError: 1.72096e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02850e-05\tAbsError: 3.20496e-03\n", + " Region: \"zone_3\"\tRelError: 9.01837e-03\tAbsError: 3.89750e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.20461e-04\tAbsError: 2.11418e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.67473e-04\tAbsError: 1.78332e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.12015e-03\tAbsError: 1.77024e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02859e-05\tAbsError: 3.20531e-03\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 1.08089e-01\tAbsError: 1.12823e+13\n", + " Region: \"zone_1\"\tRelError: 6.48764e-03\tAbsError: 9.25890e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.45798e-03\tAbsError: 5.95132e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.96592e-05\tAbsError: 9.25295e-03\n", + " Region: \"zone_3\"\tRelError: 1.01602e-01\tAbsError: 1.12823e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.21211e-03\tAbsError: 5.85741e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34587e-03\tAbsError: 5.42489e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.90139e-02\tAbsError: 6.19686e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.96619e-05\tAbsError: 9.25397e-03\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 1.23808e-01\tAbsError: 1.72930e+13\n", + " Region: \"zone_1\"\tRelError: 3.90921e-02\tAbsError: 1.41746e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.90466e-02\tAbsError: 8.91279e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.54196e-05\tAbsError: 1.41657e-02\n", + " Region: \"zone_3\"\tRelError: 8.47156e-02\tAbsError: 1.72930e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.85592e-03\tAbsError: 9.24645e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.06108e-03\tAbsError: 8.04653e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.07532e-02\tAbsError: 9.26884e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.54238e-05\tAbsError: 1.41672e-02\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 1.04097e-01\tAbsError: 9.69357e+12\n", + " Region: \"zone_1\"\tRelError: 4.09161e-02\tAbsError: 7.94221e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.08906e-02\tAbsError: 5.17666e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54448e-05\tAbsError: 7.93704e-03\n", + " Region: \"zone_3\"\tRelError: 6.31808e-02\tAbsError: 9.69357e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04000e-03\tAbsError: 5.10136e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.15485e-03\tAbsError: 4.59221e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.09605e-02\tAbsError: 5.37772e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54471e-05\tAbsError: 7.93791e-03\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 2.04764e-01\tAbsError: 2.12645e+13\n", + " Region: \"zone_1\"\tRelError: 1.24924e-01\tAbsError: 1.74540e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24868e-01\tAbsError: 1.02346e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.59480e-05\tAbsError: 1.74438e-02\n", + " Region: \"zone_3\"\tRelError: 7.98402e-02\tAbsError: 2.12645e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.28931e-03\tAbsError: 1.14826e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.54353e-03\tAbsError: 9.78191e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.49514e-02\tAbsError: 1.05502e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.59531e-05\tAbsError: 1.74457e-02\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 1.32210e-02\tAbsError: 3.42056e+12\n", + " Region: \"zone_1\"\tRelError: 5.36143e-03\tAbsError: 2.80127e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.35245e-03\tAbsError: 1.51030e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.98461e-06\tAbsError: 2.79976e-03\n", + " Region: \"zone_3\"\tRelError: 7.85953e-03\tAbsError: 3.42056e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.67245e-04\tAbsError: 1.85550e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.08245e-04\tAbsError: 1.56506e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.07505e-03\tAbsError: 1.54662e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.98542e-06\tAbsError: 2.80007e-03\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 1.03761e-01\tAbsError: 9.95976e+12\n", + " Region: \"zone_1\"\tRelError: 5.69487e-03\tAbsError: 8.17376e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.66869e-03\tAbsError: 5.25370e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.61838e-05\tAbsError: 8.16850e-03\n", + " Region: \"zone_3\"\tRelError: 9.80661e-02\tAbsError: 9.95976e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.07094e-03\tAbsError: 5.17079e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.18923e-03\tAbsError: 4.78897e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.57798e-02\tAbsError: 5.47046e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.61862e-05\tAbsError: 8.16941e-03\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 1.13455e-01\tAbsError: 1.52439e+13\n", + " Region: \"zone_1\"\tRelError: 3.33153e-02\tAbsError: 1.24957e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.32752e-02\tAbsError: 7.85671e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.00417e-05\tAbsError: 1.24879e-02\n", + " Region: \"zone_3\"\tRelError: 8.01394e-02\tAbsError: 1.52439e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.63817e-03\tAbsError: 8.15085e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.81951e-03\tAbsError: 7.09308e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.66417e-02\tAbsError: 8.17058e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.00453e-05\tAbsError: 1.24893e-02\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 9.62634e-02\tAbsError: 8.55337e+12\n", + " Region: \"zone_1\"\tRelError: 3.74544e-02\tAbsError: 7.00842e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74320e-02\tAbsError: 4.56777e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24537e-05\tAbsError: 7.00386e-03\n", + " Region: \"zone_3\"\tRelError: 5.88090e-02\tAbsError: 8.55337e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.18377e-04\tAbsError: 4.50132e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.01988e-03\tAbsError: 4.05205e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.68483e-02\tAbsError: 4.74517e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24558e-05\tAbsError: 7.00463e-03\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 1.65155e-01\tAbsError: 1.87042e+13\n", + " Region: \"zone_1\"\tRelError: 9.90130e-02\tAbsError: 1.53486e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.89638e-02\tAbsError: 9.00244e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.91967e-05\tAbsError: 1.53396e-02\n", + " Region: \"zone_3\"\tRelError: 6.61416e-02\tAbsError: 1.87042e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01006e-03\tAbsError: 1.01001e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.23288e-03\tAbsError: 8.60408e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.18494e-02\tAbsError: 9.27998e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.92012e-05\tAbsError: 1.53412e-02\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 1.15700e-02\tAbsError: 2.98844e+12\n", + " Region: \"zone_1\"\tRelError: 4.66273e-03\tAbsError: 2.45334e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.65487e-03\tAbsError: 1.31951e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.86876e-06\tAbsError: 2.45202e-03\n", + " Region: \"zone_3\"\tRelError: 6.90724e-03\tAbsError: 2.98844e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.21701e-04\tAbsError: 1.62104e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.57636e-04\tAbsError: 1.36740e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.22004e-03\tAbsError: 1.35448e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.86948e-06\tAbsError: 2.45229e-03\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 8.50307e-02\tAbsError: 8.79236e+12\n", + " Region: \"zone_1\"\tRelError: 5.05253e-03\tAbsError: 7.21565e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.02941e-03\tAbsError: 4.63791e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.31141e-05\tAbsError: 7.21102e-03\n", + " Region: \"zone_3\"\tRelError: 7.99782e-02\tAbsError: 8.79236e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.44715e-04\tAbsError: 4.56471e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04898e-03\tAbsError: 4.22765e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.79614e-02\tAbsError: 4.82926e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.31162e-05\tAbsError: 7.21181e-03\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 9.66220e-02\tAbsError: 1.34381e+13\n", + " Region: \"zone_1\"\tRelError: 3.02553e-02\tAbsError: 1.10153e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.02200e-02\tAbsError: 6.92605e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52965e-05\tAbsError: 1.10084e-02\n", + " Region: \"zone_3\"\tRelError: 6.63668e-02\tAbsError: 1.34381e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.44248e-03\tAbsError: 7.18529e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.60196e-03\tAbsError: 6.25285e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.32870e-02\tAbsError: 7.20273e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52997e-05\tAbsError: 1.10096e-02\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 8.14908e-02\tAbsError: 7.54764e+12\n", + " Region: \"zone_1\"\tRelError: 3.19941e-02\tAbsError: 6.18420e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.19743e-02\tAbsError: 4.03068e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98127e-05\tAbsError: 6.18017e-03\n", + " Region: \"zone_3\"\tRelError: 4.94966e-02\tAbsError: 7.54764e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.09865e-04\tAbsError: 3.97203e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.99310e-04\tAbsError: 3.57561e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.77676e-02\tAbsError: 4.18722e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98145e-05\tAbsError: 6.18085e-03\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 1.56670e-01\tAbsError: 1.64484e+13\n", + " Region: \"zone_1\"\tRelError: 9.53698e-02\tAbsError: 1.34991e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.53265e-02\tAbsError: 7.91671e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.32705e-05\tAbsError: 1.34912e-02\n", + " Region: \"zone_3\"\tRelError: 6.13002e-02\tAbsError: 1.64484e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.77024e-03\tAbsError: 8.88199e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96679e-03\tAbsError: 7.56637e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.75199e-02\tAbsError: 8.16079e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.32745e-05\tAbsError: 1.34927e-02\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 1.01183e-02\tAbsError: 2.61715e+12\n", + " Region: \"zone_1\"\tRelError: 4.09989e-03\tAbsError: 2.14575e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.09301e-03\tAbsError: 1.15556e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.88216e-06\tAbsError: 2.14460e-03\n", + " Region: \"zone_3\"\tRelError: 6.01845e-03\tAbsError: 2.61715e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.81316e-04\tAbsError: 1.41965e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.12723e-04\tAbsError: 1.19750e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.41753e-03\tAbsError: 1.18470e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.88279e-06\tAbsError: 2.14483e-03\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 8.01333e-02\tAbsError: 7.76183e+12\n", + " Region: \"zone_1\"\tRelError: 4.44073e-03\tAbsError: 6.36991e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.42033e-03\tAbsError: 4.09432e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.04053e-05\tAbsError: 6.36581e-03\n", + " Region: \"zone_3\"\tRelError: 7.56925e-02\tAbsError: 7.76183e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.34524e-04\tAbsError: 4.02970e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.26692e-04\tAbsError: 3.73214e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.39109e-02\tAbsError: 4.26325e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.04072e-05\tAbsError: 6.36652e-03\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 8.77850e-02\tAbsError: 1.18463e+13\n", + " Region: \"zone_1\"\tRelError: 2.59802e-02\tAbsError: 9.71043e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.59491e-02\tAbsError: 6.10558e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.11163e-05\tAbsError: 9.70433e-03\n", + " Region: \"zone_3\"\tRelError: 6.18048e-02\tAbsError: 1.18463e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27285e-03\tAbsError: 6.33414e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.41373e-03\tAbsError: 5.51213e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.90871e-02\tAbsError: 6.34950e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.11191e-05\tAbsError: 9.70540e-03\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 7.45831e-02\tAbsError: 6.66007e+12\n", + " Region: \"zone_1\"\tRelError: 2.90511e-02\tAbsError: 5.45700e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.90336e-02\tAbsError: 3.55669e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74832e-05\tAbsError: 5.45345e-03\n", + " Region: \"zone_3\"\tRelError: 4.55319e-02\tAbsError: 6.66007e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.15028e-04\tAbsError: 3.50494e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94048e-04\tAbsError: 3.15513e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.40054e-02\tAbsError: 3.69482e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74848e-05\tAbsError: 5.45405e-03\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 1.28863e-01\tAbsError: 1.44660e+13\n", + " Region: \"zone_1\"\tRelError: 7.73910e-02\tAbsError: 1.18716e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.73530e-02\tAbsError: 6.96267e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.80523e-05\tAbsError: 1.18647e-02\n", + " Region: \"zone_3\"\tRelError: 5.14723e-02\tAbsError: 1.44660e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.55496e-03\tAbsError: 7.81155e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.72738e-03\tAbsError: 6.65449e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.81519e-02\tAbsError: 7.17732e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.80557e-05\tAbsError: 1.18660e-02\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 8.86045e-03\tAbsError: 2.28910e+12\n", + " Region: \"zone_1\"\tRelError: 3.57330e-03\tAbsError: 1.87807e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.56728e-03\tAbsError: 1.01071e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.02364e-06\tAbsError: 1.87706e-03\n", + " Region: \"zone_3\"\tRelError: 5.28715e-03\tAbsError: 2.28910e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46265e-04\tAbsError: 1.24169e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.73767e-04\tAbsError: 1.04741e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.76109e-03\tAbsError: 1.03690e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.02418e-06\tAbsError: 1.87726e-03\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 6.67580e-02\tAbsError: 6.85200e+12\n", + " Region: \"zone_1\"\tRelError: 3.93548e-03\tAbsError: 5.62328e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.91747e-03\tAbsError: 3.61439e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80133e-05\tAbsError: 5.61966e-03\n", + " Region: \"zone_3\"\tRelError: 6.28226e-02\tAbsError: 6.85200e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.36288e-04\tAbsError: 3.55734e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.17555e-04\tAbsError: 3.29466e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.12507e-02\tAbsError: 3.76351e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.80149e-05\tAbsError: 5.62028e-03\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 7.53395e-02\tAbsError: 1.04428e+13\n", + " Region: \"zone_1\"\tRelError: 2.34378e-02\tAbsError: 8.56009e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34103e-02\tAbsError: 5.38226e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.74293e-05\tAbsError: 8.55471e-03\n", + " Region: \"zone_3\"\tRelError: 5.19017e-02\tAbsError: 1.04428e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12109e-03\tAbsError: 5.58370e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24506e-03\tAbsError: 4.85909e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.95082e-02\tAbsError: 5.59727e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.74318e-05\tAbsError: 8.55565e-03\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 6.37202e-02\tAbsError: 5.87686e+12\n", + " Region: \"zone_1\"\tRelError: 2.49948e-02\tAbsError: 4.81528e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49794e-02\tAbsError: 3.13843e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54270e-05\tAbsError: 4.81214e-03\n", + " Region: \"zone_3\"\tRelError: 3.87254e-02\tAbsError: 5.87686e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.30636e-04\tAbsError: 3.09277e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.00291e-04\tAbsError: 2.78410e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.73790e-02\tAbsError: 3.26032e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54284e-05\tAbsError: 4.81267e-03\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 1.20172e-01\tAbsError: 1.27222e+13\n", + " Region: \"zone_1\"\tRelError: 7.30284e-02\tAbsError: 1.04407e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.29950e-02\tAbsError: 6.12333e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34669e-05\tAbsError: 1.04346e-02\n", + " Region: \"zone_3\"\tRelError: 4.71439e-02\tAbsError: 1.27222e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36897e-03\tAbsError: 6.86990e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.52094e-03\tAbsError: 5.85230e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.42205e-02\tAbsError: 6.31212e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.34700e-05\tAbsError: 1.04358e-02\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 7.74713e-03\tAbsError: 2.00350e+12\n", + " Region: \"zone_1\"\tRelError: 3.13721e-03\tAbsError: 1.64316e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.13194e-03\tAbsError: 8.84608e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.27017e-06\tAbsError: 1.64227e-03\n", + " Region: \"zone_3\"\tRelError: 4.60992e-03\tAbsError: 2.00350e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.15429e-04\tAbsError: 1.08677e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.39481e-04\tAbsError: 9.16728e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.14974e-03\tAbsError: 9.07210e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.27064e-06\tAbsError: 1.64245e-03\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 6.20136e-02\tAbsError: 6.04892e+12\n", + " Region: \"zone_1\"\tRelError: 3.46232e-03\tAbsError: 4.96416e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.44642e-03\tAbsError: 3.19077e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59021e-05\tAbsError: 4.96097e-03\n", + " Region: \"zone_3\"\tRelError: 5.85513e-02\tAbsError: 6.04892e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.50313e-04\tAbsError: 3.14040e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.22131e-04\tAbsError: 2.90851e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.71629e-02\tAbsError: 3.32242e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59036e-05\tAbsError: 4.96152e-03\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 6.79918e-02\tAbsError: 9.20581e+12\n", + " Region: \"zone_1\"\tRelError: 2.02443e-02\tAbsError: 7.54602e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02201e-02\tAbsError: 4.74470e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.41805e-05\tAbsError: 7.54127e-03\n", + " Region: \"zone_3\"\tRelError: 4.77475e-02\tAbsError: 9.20581e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.89037e-04\tAbsError: 4.92230e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09849e-03\tAbsError: 4.28351e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.56358e-02\tAbsError: 4.93426e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.41827e-05\tAbsError: 7.54211e-03\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 5.78499e-02\tAbsError: 5.18581e+12\n", + " Region: \"zone_1\"\tRelError: 2.25526e-02\tAbsError: 4.24903e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25390e-02\tAbsError: 2.76939e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36131e-05\tAbsError: 4.24626e-03\n", + " Region: \"zone_3\"\tRelError: 3.52973e-02\tAbsError: 5.18581e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.56716e-04\tAbsError: 2.72909e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.18237e-04\tAbsError: 2.45671e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.41088e-02\tAbsError: 2.87695e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36143e-05\tAbsError: 4.24673e-03\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 1.00355e-01\tAbsError: 1.11886e+13\n", + " Region: \"zone_1\"\tRelError: 6.03527e-02\tAbsError: 9.18215e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.03233e-02\tAbsError: 5.38522e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94318e-05\tAbsError: 9.17676e-03\n", + " Region: \"zone_3\"\tRelError: 4.00026e-02\tAbsError: 1.11886e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.20284e-03\tAbsError: 6.04176e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.33623e-03\tAbsError: 5.14684e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74341e-02\tAbsError: 5.55124e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94345e-05\tAbsError: 9.17777e-03\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 6.78410e-03\tAbsError: 1.75292e+12\n", + " Region: \"zone_1\"\tRelError: 2.73736e-03\tAbsError: 1.43792e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73275e-03\tAbsError: 7.73969e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.61191e-06\tAbsError: 1.43714e-03\n", + " Region: \"zone_3\"\tRelError: 4.04673e-03\tAbsError: 1.75292e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88546e-04\tAbsError: 9.50845e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.09601e-04\tAbsError: 8.02073e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.64397e-03\tAbsError: 7.93891e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.61233e-06\tAbsError: 1.43730e-03\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 5.23290e-02\tAbsError: 5.33987e+12\n", + " Region: \"zone_1\"\tRelError: 3.06575e-03\tAbsError: 4.38231e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.05171e-03\tAbsError: 2.81675e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40380e-05\tAbsError: 4.37949e-03\n", + " Region: \"zone_3\"\tRelError: 4.92633e-02\tAbsError: 5.33987e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.73834e-04\tAbsError: 2.77229e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.37175e-04\tAbsError: 2.56758e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.80382e-02\tAbsError: 2.93296e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40393e-05\tAbsError: 4.37997e-03\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 5.87029e-02\tAbsError: 8.11515e+12\n", + " Region: \"zone_1\"\tRelError: 1.81694e-02\tAbsError: 6.65210e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81480e-02\tAbsError: 4.18259e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.13156e-05\tAbsError: 6.64792e-03\n", + " Region: \"zone_3\"\tRelError: 4.05335e-02\tAbsError: 8.11515e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.71287e-04\tAbsError: 4.33913e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.67640e-04\tAbsError: 3.77603e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.86733e-02\tAbsError: 4.34968e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.13175e-05\tAbsError: 6.64865e-03\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 4.97791e-02\tAbsError: 4.57596e+12\n", + " Region: \"zone_1\"\tRelError: 1.95125e-02\tAbsError: 3.74937e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95005e-02\tAbsError: 2.44371e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20121e-05\tAbsError: 3.74693e-03\n", + " Region: \"zone_3\"\tRelError: 3.02665e-02\tAbsError: 4.57596e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.91064e-04\tAbsError: 2.40815e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.45306e-04\tAbsError: 2.16781e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.92182e-02\tAbsError: 2.53862e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.20132e-05\tAbsError: 3.74734e-03\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 9.23548e-02\tAbsError: 9.84000e+12\n", + " Region: \"zone_1\"\tRelError: 5.60509e-02\tAbsError: 8.07533e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.60250e-02\tAbsError: 4.73612e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58847e-05\tAbsError: 8.07059e-03\n", + " Region: \"zone_3\"\tRelError: 3.63039e-02\tAbsError: 9.84000e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05871e-03\tAbsError: 5.31354e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.17622e-03\tAbsError: 4.52647e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40431e-02\tAbsError: 4.88213e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58871e-05\tAbsError: 8.07148e-03\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 5.93218e-03\tAbsError: 1.53396e+12\n", + " Region: \"zone_1\"\tRelError: 2.40116e-03\tAbsError: 1.25818e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39712e-03\tAbsError: 6.77291e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.03541e-06\tAbsError: 1.25750e-03\n", + " Region: \"zone_3\"\tRelError: 3.53102e-03\tAbsError: 1.53396e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.64958e-04\tAbsError: 8.32074e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.83376e-04\tAbsError: 7.01885e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.17865e-03\tAbsError: 6.94658e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.03578e-06\tAbsError: 1.25764e-03\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 4.80672e-02\tAbsError: 4.71401e+12\n", + " Region: \"zone_1\"\tRelError: 2.69920e-03\tAbsError: 3.86864e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.68680e-03\tAbsError: 2.48661e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23927e-05\tAbsError: 3.86616e-03\n", + " Region: \"zone_3\"\tRelError: 4.53680e-02\tAbsError: 4.71401e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.06772e-04\tAbsError: 2.44736e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.62735e-04\tAbsError: 2.26665e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.42861e-02\tAbsError: 2.58921e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23939e-05\tAbsError: 3.86658e-03\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 5.27019e-02\tAbsError: 7.15388e+12\n", + " Region: \"zone_1\"\tRelError: 1.57653e-02\tAbsError: 5.86405e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57465e-02\tAbsError: 3.68714e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87908e-05\tAbsError: 5.86037e-03\n", + " Region: \"zone_3\"\tRelError: 3.69366e-02\tAbsError: 7.15388e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68525e-04\tAbsError: 3.82514e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.53569e-04\tAbsError: 3.32874e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52957e-02\tAbsError: 3.83444e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87925e-05\tAbsError: 5.86101e-03\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 4.49097e-02\tAbsError: 4.03788e+12\n", + " Region: \"zone_1\"\tRelError: 1.75194e-02\tAbsError: 3.30847e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75088e-02\tAbsError: 2.15636e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05997e-05\tAbsError: 3.30631e-03\n", + " Region: \"zone_3\"\tRelError: 2.73902e-02\tAbsError: 4.03788e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33462e-04\tAbsError: 2.12498e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.81360e-04\tAbsError: 1.91290e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64648e-02\tAbsError: 2.24011e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06006e-05\tAbsError: 3.30668e-03\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 7.80359e-02\tAbsError: 8.65378e+12\n", + " Region: \"zone_1\"\tRelError: 4.69802e-02\tAbsError: 7.10193e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.69575e-02\tAbsError: 4.16519e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27641e-05\tAbsError: 7.09776e-03\n", + " Region: \"zone_3\"\tRelError: 3.10557e-02\tAbsError: 8.65378e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.30426e-04\tAbsError: 4.67298e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03362e-03\tAbsError: 3.98080e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.90689e-02\tAbsError: 4.29360e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27661e-05\tAbsError: 7.09854e-03\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 5.19412e-03\tAbsError: 1.34222e+12\n", + " Region: \"zone_1\"\tRelError: 2.09664e-03\tAbsError: 1.10097e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09311e-03\tAbsError: 5.92634e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.53120e-06\tAbsError: 1.10038e-03\n", + " Region: \"zone_3\"\tRelError: 3.09748e-03\tAbsError: 1.34222e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.44362e-04\tAbsError: 7.28069e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.60483e-04\tAbsError: 6.14153e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78910e-03\tAbsError: 6.07860e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.53152e-06\tAbsError: 1.10050e-03\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 4.09672e-02\tAbsError: 4.16144e+12\n", + " Region: \"zone_1\"\tRelError: 2.38844e-03\tAbsError: 3.41520e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.37750e-03\tAbsError: 2.19514e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09401e-05\tAbsError: 3.41300e-03\n", + " Region: \"zone_3\"\tRelError: 3.85788e-02\tAbsError: 4.16144e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.47218e-04\tAbsError: 2.16049e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.96585e-04\tAbsError: 2.00095e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.76240e-02\tAbsError: 2.28571e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09411e-05\tAbsError: 3.41338e-03\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 4.57138e-02\tAbsError: 6.30634e+12\n", + " Region: \"zone_1\"\tRelError: 1.40929e-02\tAbsError: 5.16938e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40763e-02\tAbsError: 3.25032e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65645e-05\tAbsError: 5.16613e-03\n", + " Region: \"zone_3\"\tRelError: 3.16209e-02\tAbsError: 6.30634e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.77130e-04\tAbsError: 3.37196e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.52017e-04\tAbsError: 2.93437e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.01752e-02\tAbsError: 3.38017e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65660e-05\tAbsError: 5.16670e-03\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 3.88601e-02\tAbsError: 3.56303e+12\n", + " Region: \"zone_1\"\tRelError: 1.52241e-02\tAbsError: 2.91941e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52147e-02\tAbsError: 1.90277e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.35313e-06\tAbsError: 2.91751e-03\n", + " Region: \"zone_3\"\tRelError: 2.36360e-02\tAbsError: 3.56303e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.82377e-04\tAbsError: 1.87508e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.24616e-04\tAbsError: 1.68794e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.28197e-02\tAbsError: 1.97667e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.35398e-06\tAbsError: 2.91783e-03\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 7.10813e-02\tAbsError: 7.61073e+12\n", + " Region: \"zone_1\"\tRelError: 4.30969e-02\tAbsError: 6.24584e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.30768e-02\tAbsError: 3.66315e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00204e-05\tAbsError: 6.24218e-03\n", + " Region: \"zone_3\"\tRelError: 2.79845e-02\tAbsError: 7.61073e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.18783e-04\tAbsError: 4.10974e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.09656e-04\tAbsError: 3.50099e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.62360e-02\tAbsError: 3.77608e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00222e-05\tAbsError: 6.24287e-03\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 4.54248e-03\tAbsError: 1.17451e+12\n", + " Region: \"zone_1\"\tRelError: 1.83802e-03\tAbsError: 9.63376e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83493e-03\tAbsError: 5.18583e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.08988e-06\tAbsError: 9.62857e-04\n", + " Region: \"zone_3\"\tRelError: 2.70446e-03\tAbsError: 1.17451e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.26309e-04\tAbsError: 6.37095e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.40411e-04\tAbsError: 5.37413e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.43465e-03\tAbsError: 5.31893e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.09016e-06\tAbsError: 9.62963e-04\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 3.73026e-02\tAbsError: 3.67369e+12\n", + " Region: \"zone_1\"\tRelError: 2.10411e-03\tAbsError: 3.01489e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09445e-03\tAbsError: 1.93786e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.65784e-06\tAbsError: 3.01296e-03\n", + " Region: \"zone_3\"\tRelError: 3.51985e-02\tAbsError: 3.67369e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.94919e-04\tAbsError: 1.90727e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.38528e-04\tAbsError: 1.76643e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.43554e-02\tAbsError: 2.01781e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.65872e-06\tAbsError: 3.01329e-03\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 4.08743e-02\tAbsError: 5.55932e+12\n", + " Region: \"zone_1\"\tRelError: 1.22715e-02\tAbsError: 4.55699e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22569e-02\tAbsError: 2.86530e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46024e-05\tAbsError: 4.55412e-03\n", + " Region: \"zone_3\"\tRelError: 2.86029e-02\tAbsError: 5.55932e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.97188e-04\tAbsError: 2.97254e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.63268e-04\tAbsError: 2.58678e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73278e-02\tAbsError: 2.97977e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46037e-05\tAbsError: 4.55463e-03\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 3.48873e-02\tAbsError: 3.14405e+12\n", + " Region: \"zone_1\"\tRelError: 1.36166e-02\tAbsError: 2.57611e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36084e-02\tAbsError: 1.67903e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.25332e-06\tAbsError: 2.57443e-03\n", + " Region: \"zone_3\"\tRelError: 2.12707e-02\tAbsError: 3.14405e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.37499e-04\tAbsError: 1.65460e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.74792e-04\tAbsError: 1.48946e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05501e-02\tAbsError: 1.74424e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.25407e-06\tAbsError: 2.57471e-03\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 6.06084e-02\tAbsError: 6.69325e+12\n", + " Region: \"zone_1\"\tRelError: 3.65187e-02\tAbsError: 5.49297e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.65011e-02\tAbsError: 3.22156e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76069e-05\tAbsError: 5.48975e-03\n", + " Region: \"zone_3\"\tRelError: 2.40897e-02\tAbsError: 6.69325e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.19691e-04\tAbsError: 3.61431e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.99517e-04\tAbsError: 3.07894e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25529e-02\tAbsError: 3.32088e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76085e-05\tAbsError: 5.49036e-03\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 3.97679e-03\tAbsError: 1.02773e+12\n", + " Region: \"zone_1\"\tRelError: 1.60574e-03\tAbsError: 8.42990e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60304e-03\tAbsError: 4.53774e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.70377e-06\tAbsError: 8.42537e-04\n", + " Region: \"zone_3\"\tRelError: 2.37105e-03\tAbsError: 1.02773e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10534e-04\tAbsError: 5.57475e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.22877e-04\tAbsError: 4.70251e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13494e-03\tAbsError: 4.65426e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.70402e-06\tAbsError: 8.42629e-04\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 3.20406e-02\tAbsError: 3.24308e+12\n", + " Region: \"zone_1\"\tRelError: 1.86090e-03\tAbsError: 2.66152e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85237e-03\tAbsError: 1.71071e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.52577e-06\tAbsError: 2.65980e-03\n", + " Region: \"zone_3\"\tRelError: 3.01797e-02\tAbsError: 3.24308e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.48536e-04\tAbsError: 1.68370e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.87012e-04\tAbsError: 1.55938e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.94356e-02\tAbsError: 1.78129e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.52654e-06\tAbsError: 2.66010e-03\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 3.55827e-02\tAbsError: 4.90070e+12\n", + " Region: \"zone_1\"\tRelError: 1.09356e-02\tAbsError: 4.01716e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09228e-02\tAbsError: 2.52585e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28724e-05\tAbsError: 4.01463e-03\n", + " Region: \"zone_3\"\tRelError: 2.46471e-02\tAbsError: 4.90070e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.26230e-04\tAbsError: 2.62037e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.84432e-04\tAbsError: 2.28032e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.35236e-02\tAbsError: 2.62675e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28735e-05\tAbsError: 4.01507e-03\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 3.03190e-02\tAbsError: 2.77432e+12\n", + " Region: \"zone_1\"\tRelError: 1.18728e-02\tAbsError: 2.27317e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18655e-02\tAbsError: 1.48158e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.28273e-06\tAbsError: 2.27169e-03\n", + " Region: \"zone_3\"\tRelError: 1.84462e-02\tAbsError: 2.77432e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.97743e-04\tAbsError: 1.46002e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.30634e-04\tAbsError: 1.31430e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78105e-02\tAbsError: 1.53912e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.28339e-06\tAbsError: 2.27194e-03\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 5.47700e-02\tAbsError: 5.88650e+12\n", + " Region: \"zone_1\"\tRelError: 3.31818e-02\tAbsError: 4.83083e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.31663e-02\tAbsError: 2.83326e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54847e-05\tAbsError: 4.82800e-03\n", + " Region: \"zone_3\"\tRelError: 2.15882e-02\tAbsError: 5.88650e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.33244e-04\tAbsError: 3.17867e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.03520e-04\tAbsError: 2.70783e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02360e-02\tAbsError: 2.92061e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54861e-05\tAbsError: 4.82853e-03\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 3.47831e-03\tAbsError: 8.99298e+11\n", + " Region: \"zone_1\"\tRelError: 1.40705e-03\tAbsError: 7.37643e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40469e-03\tAbsError: 3.97069e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36588e-06\tAbsError: 7.37246e-04\n", + " Region: \"zone_3\"\tRelError: 2.07125e-03\tAbsError: 8.99298e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.67138e-05\tAbsError: 4.87811e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.07512e-04\tAbsError: 4.11487e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86466e-03\tAbsError: 4.07263e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36609e-06\tAbsError: 7.37327e-04\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 2.89760e-02\tAbsError: 2.86296e+12\n", + " Region: \"zone_1\"\tRelError: 1.64012e-03\tAbsError: 2.34955e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63259e-03\tAbsError: 1.51020e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.52650e-06\tAbsError: 2.34804e-03\n", + " Region: \"zone_3\"\tRelError: 2.73359e-02\tAbsError: 2.86296e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.07757e-04\tAbsError: 1.48636e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.41740e-04\tAbsError: 1.37660e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66788e-02\tAbsError: 1.57251e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.52718e-06\tAbsError: 2.34830e-03\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 3.17154e-02\tAbsError: 4.32017e+12\n", + " Region: \"zone_1\"\tRelError: 9.54843e-03\tAbsError: 3.54126e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.53708e-03\tAbsError: 2.22664e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13476e-05\tAbsError: 3.53904e-03\n", + " Region: \"zone_3\"\tRelError: 2.21670e-02\tAbsError: 4.32017e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.64056e-04\tAbsError: 2.30997e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.15402e-04\tAbsError: 2.01020e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.11762e-02\tAbsError: 2.31559e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.13486e-05\tAbsError: 3.53943e-03\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 2.71156e-02\tAbsError: 2.44808e+12\n", + " Region: \"zone_1\"\tRelError: 1.05875e-02\tAbsError: 2.00586e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05811e-02\tAbsError: 1.30736e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.42636e-06\tAbsError: 2.00455e-03\n", + " Region: \"zone_3\"\tRelError: 1.65281e-02\tAbsError: 2.44808e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.62783e-04\tAbsError: 1.28833e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.91819e-04\tAbsError: 1.15975e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59671e-02\tAbsError: 1.35813e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.42695e-06\tAbsError: 2.00477e-03\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 4.70291e-02\tAbsError: 5.17689e+12\n", + " Region: \"zone_1\"\tRelError: 2.83551e-02\tAbsError: 4.24853e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83415e-02\tAbsError: 2.49172e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36180e-05\tAbsError: 4.24604e-03\n", + " Region: \"zone_3\"\tRelError: 1.86741e-02\tAbsError: 5.17689e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.56676e-04\tAbsError: 2.79548e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.18425e-04\tAbsError: 2.38140e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74853e-02\tAbsError: 2.56853e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36193e-05\tAbsError: 4.24650e-03\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 3.04480e-03\tAbsError: 7.86915e+11\n", + " Region: \"zone_1\"\tRelError: 1.22971e-03\tAbsError: 6.45463e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22764e-03\tAbsError: 3.47448e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.07023e-06\tAbsError: 6.45116e-04\n", + " Region: \"zone_3\"\tRelError: 1.81509e-03\tAbsError: 7.86915e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.46333e-05\tAbsError: 4.26851e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.40836e-05\tAbsError: 3.60064e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63431e-03\tAbsError: 3.56369e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.07042e-06\tAbsError: 6.45187e-04\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 2.50396e-02\tAbsError: 2.52738e+12\n", + " Region: \"zone_1\"\tRelError: 1.44995e-03\tAbsError: 2.07416e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44330e-03\tAbsError: 1.33318e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.64426e-06\tAbsError: 2.07283e-03\n", + " Region: \"zone_3\"\tRelError: 2.35896e-02\tAbsError: 2.52738e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.71627e-04\tAbsError: 1.31213e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.01613e-04\tAbsError: 1.21525e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30097e-02\tAbsError: 1.38819e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.64487e-06\tAbsError: 2.07305e-03\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 2.76870e-02\tAbsError: 3.80836e+12\n", + " Region: \"zone_1\"\tRelError: 8.48850e-03\tAbsError: 3.12176e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.47850e-03\tAbsError: 1.96285e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00032e-05\tAbsError: 3.11979e-03\n", + " Region: \"zone_3\"\tRelError: 1.91985e-02\tAbsError: 3.80836e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.08954e-04\tAbsError: 2.03631e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.54187e-04\tAbsError: 1.77205e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83254e-02\tAbsError: 2.04127e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00041e-05\tAbsError: 3.12014e-03\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 2.36447e-02\tAbsError: 2.16020e+12\n", + " Region: \"zone_1\"\tRelError: 9.25606e-03\tAbsError: 1.76998e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.25039e-03\tAbsError: 1.15361e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.67063e-06\tAbsError: 1.76883e-03\n", + " Region: \"zone_3\"\tRelError: 1.43886e-02\tAbsError: 2.16020e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.31840e-04\tAbsError: 1.13683e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.57452e-04\tAbsError: 1.02337e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38937e-02\tAbsError: 1.19842e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.67115e-06\tAbsError: 1.76903e-03\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 4.22383e-02\tAbsError: 4.55289e+12\n", + " Region: \"zone_1\"\tRelError: 2.55745e-02\tAbsError: 3.73640e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.55626e-02\tAbsError: 2.19138e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19766e-05\tAbsError: 3.73421e-03\n", + " Region: \"zone_3\"\tRelError: 1.66638e-02\tAbsError: 4.55289e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.89756e-04\tAbsError: 2.45853e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.44105e-04\tAbsError: 2.09436e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56180e-02\tAbsError: 2.25894e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19777e-05\tAbsError: 3.73462e-03\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 2.66341e-03\tAbsError: 6.88577e+11\n", + " Region: \"zone_1\"\tRelError: 1.07719e-03\tAbsError: 5.64802e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07538e-03\tAbsError: 3.04029e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.81152e-06\tAbsError: 5.64498e-04\n", + " Region: \"zone_3\"\tRelError: 1.58622e-03\tAbsError: 6.88577e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.40528e-05\tAbsError: 3.73509e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.23212e-05\tAbsError: 3.15069e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42803e-03\tAbsError: 3.11835e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.81168e-06\tAbsError: 5.64560e-04\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 2.25244e-02\tAbsError: 2.23115e+12\n", + " Region: \"zone_1\"\tRelError: 1.27838e-03\tAbsError: 1.83104e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27252e-03\tAbsError: 1.17692e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.86551e-06\tAbsError: 1.82986e-03\n", + " Region: \"zone_3\"\tRelError: 2.12460e-02\tAbsError: 2.23115e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.39833e-04\tAbsError: 1.15834e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.66316e-04\tAbsError: 1.07281e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07340e-02\tAbsError: 1.22548e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.86604e-06\tAbsError: 1.83007e-03\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 2.46173e-02\tAbsError: 3.35723e+12\n", + " Region: \"zone_1\"\tRelError: 7.42753e-03\tAbsError: 2.75194e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.41871e-03\tAbsError: 1.73033e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.81826e-06\tAbsError: 2.75021e-03\n", + " Region: \"zone_3\"\tRelError: 1.71898e-02\tAbsError: 3.35723e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.60607e-04\tAbsError: 1.79509e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.00505e-04\tAbsError: 1.56214e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64198e-02\tAbsError: 1.79946e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.81906e-06\tAbsError: 2.75051e-03\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 2.10837e-02\tAbsError: 1.90618e+12\n", + " Region: \"zone_1\"\tRelError: 8.23481e-03\tAbsError: 1.56184e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.22981e-03\tAbsError: 1.01796e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.00382e-06\tAbsError: 1.56083e-03\n", + " Region: \"zone_3\"\tRelError: 1.28489e-02\tAbsError: 1.90618e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04609e-04\tAbsError: 1.00315e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.27217e-04\tAbsError: 9.03028e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24121e-02\tAbsError: 1.05750e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.00428e-06\tAbsError: 1.56100e-03\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 3.64659e-02\tAbsError: 4.00405e+12\n", + " Region: \"zone_1\"\tRelError: 2.19973e-02\tAbsError: 3.28601e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19868e-02\tAbsError: 1.92721e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05328e-05\tAbsError: 3.28409e-03\n", + " Region: \"zone_3\"\tRelError: 1.44686e-02\tAbsError: 4.00405e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.30579e-04\tAbsError: 2.16216e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.78343e-04\tAbsError: 1.84189e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35492e-02\tAbsError: 1.98663e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05338e-05\tAbsError: 3.28445e-03\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 2.33126e-03\tAbsError: 6.02529e+11\n", + " Region: \"zone_1\"\tRelError: 9.41695e-04\tAbsError: 4.94221e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.40110e-04\tAbsError: 2.66036e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58514e-06\tAbsError: 4.93955e-04\n", + " Region: \"zone_3\"\tRelError: 1.38956e-03\tAbsError: 6.02529e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.48019e-05\tAbsError: 3.26833e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.20377e-05\tAbsError: 2.75696e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25114e-03\tAbsError: 2.72866e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58528e-06\tAbsError: 4.94009e-04\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 1.95564e-02\tAbsError: 1.96963e+12\n", + " Region: \"zone_1\"\tRelError: 1.12980e-03\tAbsError: 1.61642e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12462e-03\tAbsError: 1.03897e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.17798e-06\tAbsError: 1.61538e-03\n", + " Region: \"zone_3\"\tRelError: 1.84266e-02\tAbsError: 1.96963e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.11688e-04\tAbsError: 1.02257e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.35058e-04\tAbsError: 9.47060e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79746e-02\tAbsError: 1.08183e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.17845e-06\tAbsError: 1.61556e-03\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 2.15373e-02\tAbsError: 2.95950e+12\n", + " Region: \"zone_1\"\tRelError: 6.59065e-03\tAbsError: 2.42593e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.58287e-03\tAbsError: 1.52535e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.77356e-06\tAbsError: 2.42441e-03\n", + " Region: \"zone_3\"\tRelError: 1.49466e-02\tAbsError: 2.95950e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.17811e-04\tAbsError: 1.58243e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.52964e-04\tAbsError: 1.37707e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42681e-02\tAbsError: 1.58628e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.77427e-06\tAbsError: 2.42468e-03\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 1.84333e-02\tAbsError: 1.68202e+12\n", + " Region: \"zone_1\"\tRelError: 7.21406e-03\tAbsError: 1.37818e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.20965e-03\tAbsError: 8.98251e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.41538e-06\tAbsError: 1.37728e-03\n", + " Region: \"zone_3\"\tRelError: 1.12192e-02\tAbsError: 1.68202e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.80524e-04\tAbsError: 8.85181e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.00466e-04\tAbsError: 7.96835e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08338e-02\tAbsError: 9.33138e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.41579e-06\tAbsError: 1.37743e-03\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 3.25957e-02\tAbsError: 3.52142e+12\n", + " Region: \"zone_1\"\tRelError: 1.97271e-02\tAbsError: 2.88991e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97179e-02\tAbsError: 1.69491e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.26328e-06\tAbsError: 2.88822e-03\n", + " Region: \"zone_3\"\tRelError: 1.28686e-02\tAbsError: 3.52142e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.78786e-04\tAbsError: 1.90154e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.20818e-04\tAbsError: 1.61988e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20597e-02\tAbsError: 1.74717e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.26412e-06\tAbsError: 2.88853e-03\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 2.03940e-03\tAbsError: 5.27232e+11\n", + " Region: \"zone_1\"\tRelError: 8.24692e-04\tAbsError: 4.32460e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.23305e-04\tAbsError: 2.32790e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38705e-06\tAbsError: 4.32227e-04\n", + " Region: \"zone_3\"\tRelError: 1.21471e-03\tAbsError: 5.27232e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.67014e-05\tAbsError: 2.85990e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.30324e-05\tAbsError: 2.41243e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09359e-03\tAbsError: 2.38767e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38718e-06\tAbsError: 4.32274e-04\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 1.75191e-02\tAbsError: 1.73877e+12\n", + " Region: \"zone_1\"\tRelError: 9.96393e-04\tAbsError: 1.42696e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.91822e-04\tAbsError: 9.17192e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.57108e-06\tAbsError: 1.42604e-03\n", + " Region: \"zone_3\"\tRelError: 1.65227e-02\tAbsError: 1.73877e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.86902e-04\tAbsError: 9.02713e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.07539e-04\tAbsError: 8.36055e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61237e-02\tAbsError: 9.55034e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.57149e-06\tAbsError: 1.42620e-03\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 1.91129e-02\tAbsError: 2.60892e+12\n", + " Region: \"zone_1\"\tRelError: 5.77644e-03\tAbsError: 2.13855e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.76959e-03\tAbsError: 1.34465e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.85272e-06\tAbsError: 2.13720e-03\n", + " Region: \"zone_3\"\tRelError: 1.33364e-02\tAbsError: 2.60892e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.80222e-04\tAbsError: 1.39498e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.11225e-04\tAbsError: 1.21394e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27381e-02\tAbsError: 1.39837e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.85334e-06\tAbsError: 2.13744e-03\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 1.63987e-02\tAbsError: 1.48422e+12\n", + " Region: \"zone_1\"\tRelError: 6.40649e-03\tAbsError: 1.21611e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.40259e-03\tAbsError: 7.92624e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.89617e-06\tAbsError: 1.21532e-03\n", + " Region: \"zone_3\"\tRelError: 9.99223e-03\tAbsError: 1.48422e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.59315e-04\tAbsError: 7.81091e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.76917e-04\tAbsError: 7.03134e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.65210e-03\tAbsError: 8.23409e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.89653e-06\tAbsError: 1.21546e-03\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 2.82594e-02\tAbsError: 3.09693e+12\n", + " Region: \"zone_1\"\tRelError: 1.70535e-02\tAbsError: 2.54156e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70454e-02\tAbsError: 1.49060e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.14662e-06\tAbsError: 2.54007e-03\n", + " Region: \"zone_3\"\tRelError: 1.12058e-02\tAbsError: 3.09693e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.33042e-04\tAbsError: 1.67232e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.69988e-04\tAbsError: 1.42461e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04947e-02\tAbsError: 1.53656e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.14735e-06\tAbsError: 2.54035e-03\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 1.78495e-03\tAbsError: 4.61346e+11\n", + " Region: \"zone_1\"\tRelError: 7.21115e-04\tAbsError: 3.78417e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.19901e-04\tAbsError: 2.03699e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21372e-06\tAbsError: 3.78213e-04\n", + " Region: \"zone_3\"\tRelError: 1.06384e-03\tAbsError: 4.61346e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.96175e-05\tAbsError: 2.50251e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.51578e-05\tAbsError: 2.11096e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.57847e-04\tAbsError: 2.08929e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21383e-06\tAbsError: 3.78255e-04\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 1.52666e-02\tAbsError: 1.53496e+12\n", + " Region: \"zone_1\"\tRelError: 8.80369e-04\tAbsError: 1.25970e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.76334e-04\tAbsError: 8.09684e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.03528e-06\tAbsError: 1.25889e-03\n", + " Region: \"zone_3\"\tRelError: 1.43862e-02\tAbsError: 1.53496e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.64974e-04\tAbsError: 7.96902e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.83187e-04\tAbsError: 7.38058e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40340e-02\tAbsError: 8.43090e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.03565e-06\tAbsError: 1.25903e-03\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 1.67498e-02\tAbsError: 2.29985e+12\n", + " Region: \"zone_1\"\tRelError: 5.11812e-03\tAbsError: 1.88521e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.11208e-03\tAbsError: 1.18536e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.04088e-06\tAbsError: 1.88402e-03\n", + " Region: \"zone_3\"\tRelError: 1.16317e-02\tAbsError: 2.29985e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46979e-04\tAbsError: 1.22972e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.74298e-04\tAbsError: 1.07013e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11044e-02\tAbsError: 1.23271e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.04143e-06\tAbsError: 1.88423e-03\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 1.43666e-02\tAbsError: 1.30969e+12\n", + " Region: \"zone_1\"\tRelError: 5.62137e-03\tAbsError: 1.07311e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.61793e-03\tAbsError: 6.99415e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.43800e-06\tAbsError: 1.07241e-03\n", + " Region: \"zone_3\"\tRelError: 8.74522e-03\tAbsError: 1.30969e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.40565e-04\tAbsError: 6.89237e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.56094e-04\tAbsError: 6.20448e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.44512e-03\tAbsError: 7.26579e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.43831e-06\tAbsError: 1.07253e-03\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 2.51674e-02\tAbsError: 2.72364e+12\n", + " Region: \"zone_1\"\tRelError: 1.52261e-02\tAbsError: 2.23520e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52189e-02\tAbsError: 1.31093e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.16466e-06\tAbsError: 2.23389e-03\n", + " Region: \"zone_3\"\tRelError: 9.94126e-03\tAbsError: 2.72364e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.92962e-04\tAbsError: 1.47074e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.25470e-04\tAbsError: 1.25289e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.31566e-03\tAbsError: 1.35134e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.16531e-06\tAbsError: 2.23413e-03\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 1.56158e-03\tAbsError: 4.03693e+11\n", + " Region: \"zone_1\"\tRelError: 6.31396e-04\tAbsError: 3.31127e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.30334e-04\tAbsError: 1.78243e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06204e-06\tAbsError: 3.30949e-04\n", + " Region: \"zone_3\"\tRelError: 9.30186e-04\tAbsError: 4.03693e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.34156e-05\tAbsError: 2.18978e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.82632e-05\tAbsError: 1.84716e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.37445e-04\tAbsError: 1.82820e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06214e-06\tAbsError: 3.30985e-04\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 1.36321e-02\tAbsError: 1.35505e+12\n", + " Region: \"zone_1\"\tRelError: 7.76584e-04\tAbsError: 1.11205e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.73021e-04\tAbsError: 7.14781e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.56231e-06\tAbsError: 1.11134e-03\n", + " Region: \"zone_3\"\tRelError: 1.28555e-02\tAbsError: 1.35505e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.45654e-04\tAbsError: 7.03498e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.61736e-04\tAbsError: 6.51550e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25445e-02\tAbsError: 7.44272e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.56263e-06\tAbsError: 1.11146e-03\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 1.48422e-02\tAbsError: 2.02741e+12\n", + " Region: \"zone_1\"\tRelError: 4.49161e-03\tAbsError: 1.66188e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.48629e-03\tAbsError: 1.04494e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.32528e-06\tAbsError: 1.66083e-03\n", + " Region: \"zone_3\"\tRelError: 1.03506e-02\tAbsError: 2.02741e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.17757e-04\tAbsError: 1.08404e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.41849e-04\tAbsError: 9.43363e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.88571e-03\tAbsError: 1.08668e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.32577e-06\tAbsError: 1.66102e-03\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 1.27579e-02\tAbsError: 1.15568e+12\n", + " Region: \"zone_1\"\tRelError: 4.98504e-03\tAbsError: 9.46915e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.98200e-03\tAbsError: 6.17169e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.03372e-06\tAbsError: 9.46298e-04\n", + " Region: \"zone_3\"\tRelError: 7.77283e-03\tAbsError: 1.15568e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.24047e-04\tAbsError: 6.08189e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.37753e-04\tAbsError: 5.47488e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.50799e-03\tAbsError: 6.41139e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.03399e-06\tAbsError: 9.46402e-04\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 2.18901e-02\tAbsError: 2.39532e+12\n", + " Region: \"zone_1\"\tRelError: 1.32139e-02\tAbsError: 1.96577e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32076e-02\tAbsError: 1.15290e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.30099e-06\tAbsError: 1.96461e-03\n", + " Region: \"zone_3\"\tRelError: 8.67620e-03\tAbsError: 2.39532e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.57598e-04\tAbsError: 1.29345e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.86175e-04\tAbsError: 1.10186e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.12612e-03\tAbsError: 1.18845e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.30156e-06\tAbsError: 1.96483e-03\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 1.30243e-02\tAbsError: 1.78723e+12\n", + " Region: \"zone_1\"\tRelError: 3.97520e-03\tAbsError: 1.46501e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.97051e-03\tAbsError: 9.21147e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.69441e-06\tAbsError: 1.46408e-03\n", + " Region: \"zone_3\"\tRelError: 9.04908e-03\tAbsError: 1.78723e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.91932e-04\tAbsError: 9.55620e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.13163e-04\tAbsError: 8.31606e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.63929e-03\tAbsError: 9.57946e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.69484e-06\tAbsError: 1.46425e-03\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 1.19133e-02\tAbsError: 1.19622e+12\n", + " Region: \"zone_1\"\tRelError: 6.86023e-04\tAbsError: 9.81706e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.82878e-04\tAbsError: 6.30999e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.14476e-06\tAbsError: 9.81075e-04\n", + " Region: \"zone_3\"\tRelError: 1.12273e-02\tAbsError: 1.19622e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28569e-04\tAbsError: 6.21038e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.42763e-04\tAbsError: 5.75180e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09528e-02\tAbsError: 6.57033e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.14504e-06\tAbsError: 9.81183e-04\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 1.36667e-03\tAbsError: 3.53245e+11\n", + " Region: \"zone_1\"\tRelError: 5.52189e-04\tAbsError: 2.89748e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.51260e-04\tAbsError: 1.55969e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.29323e-07\tAbsError: 2.89592e-04\n", + " Region: \"zone_3\"\tRelError: 8.14485e-04\tAbsError: 3.53245e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.79912e-05\tAbsError: 1.91613e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.22332e-05\tAbsError: 1.61633e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.33331e-04\tAbsError: 1.59973e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.29407e-07\tAbsError: 2.89623e-04\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 1.11947e-02\tAbsError: 1.01977e+12\n", + " Region: \"zone_1\"\tRelError: 4.37958e-03\tAbsError: 8.35564e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.37690e-03\tAbsError: 5.44593e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.67696e-06\tAbsError: 8.35019e-04\n", + " Region: \"zone_3\"\tRelError: 6.81515e-03\tAbsError: 1.01977e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09451e-04\tAbsError: 5.36668e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.21542e-04\tAbsError: 4.83106e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.58148e-03\tAbsError: 5.65744e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.67721e-06\tAbsError: 8.35111e-04\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 1.94396e-02\tAbsError: 2.10659e+12\n", + " Region: \"zone_1\"\tRelError: 1.17576e-02\tAbsError: 1.72881e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17521e-02\tAbsError: 1.01393e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.54149e-06\tAbsError: 1.72779e-03\n", + " Region: \"zone_3\"\tRelError: 7.68192e-03\tAbsError: 2.10659e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.26586e-04\tAbsError: 1.13754e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.51728e-04\tAbsError: 9.69046e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.19807e-03\tAbsError: 1.04519e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.54199e-06\tAbsError: 1.72799e-03\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 1.15277e-02\tAbsError: 1.57551e+12\n", + " Region: \"zone_1\"\tRelError: 3.49209e-03\tAbsError: 1.29145e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.48795e-03\tAbsError: 8.12026e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.13831e-06\tAbsError: 1.29064e-03\n", + " Region: \"zone_3\"\tRelError: 8.03561e-03\tAbsError: 1.57551e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.69217e-04\tAbsError: 8.42416e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.87938e-04\tAbsError: 7.33093e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.67432e-03\tAbsError: 8.44466e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.13868e-06\tAbsError: 1.29079e-03\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 1.06110e-02\tAbsError: 1.05601e+12\n", + " Region: \"zone_1\"\tRelError: 6.05251e-04\tAbsError: 8.66638e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.02475e-04\tAbsError: 5.57040e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.77616e-06\tAbsError: 8.66081e-04\n", + " Region: \"zone_3\"\tRelError: 1.00058e-02\tAbsError: 1.05601e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13509e-04\tAbsError: 5.48246e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.26042e-04\tAbsError: 5.07763e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.76346e-03\tAbsError: 5.80022e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.77641e-06\tAbsError: 8.66177e-04\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 1.19570e-03\tAbsError: 3.09101e+11\n", + " Region: \"zone_1\"\tRelError: 4.83417e-04\tAbsError: 2.53539e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.82604e-04\tAbsError: 1.36478e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.13188e-07\tAbsError: 2.53402e-04\n", + " Region: \"zone_3\"\tRelError: 7.12288e-04\tAbsError: 3.09101e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.32427e-05\tAbsError: 1.67668e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.69545e-05\tAbsError: 1.41434e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.41277e-04\tAbsError: 1.39982e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.13262e-07\tAbsError: 2.53430e-04\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 9.92723e-03\tAbsError: 8.99856e+11\n", + " Region: \"zone_1\"\tRelError: 3.87955e-03\tAbsError: 7.37306e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87718e-03\tAbsError: 4.80553e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36217e-06\tAbsError: 7.36826e-04\n", + " Region: \"zone_3\"\tRelError: 6.04768e-03\tAbsError: 8.99856e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.65871e-05\tAbsError: 4.73560e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.07259e-04\tAbsError: 4.26296e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.84147e-03\tAbsError: 4.99216e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36239e-06\tAbsError: 7.36907e-04\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 1.69506e-02\tAbsError: 1.85265e+12\n", + " Region: \"zone_1\"\tRelError: 1.02346e-02\tAbsError: 1.52042e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02297e-02\tAbsError: 8.91712e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.87349e-06\tAbsError: 1.51953e-03\n", + " Region: \"zone_3\"\tRelError: 6.71602e-03\tAbsError: 1.85265e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.99243e-04\tAbsError: 1.00042e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.21347e-04\tAbsError: 8.52234e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.29056e-03\tAbsError: 9.19203e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.87393e-06\tAbsError: 1.51969e-03\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 1.01260e-02\tAbsError: 1.38886e+12\n", + " Region: \"zone_1\"\tRelError: 3.08788e-03\tAbsError: 1.13846e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.08423e-03\tAbsError: 7.15829e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.64805e-06\tAbsError: 1.13775e-03\n", + " Region: \"zone_3\"\tRelError: 7.03816e-03\tAbsError: 1.38886e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49154e-04\tAbsError: 7.42618e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.65653e-04\tAbsError: 6.46246e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.71971e-03\tAbsError: 7.44426e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.64839e-06\tAbsError: 1.13787e-03\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 9.29390e-03\tAbsError: 9.32231e+11\n", + " Region: \"zone_1\"\tRelError: 5.34591e-04\tAbsError: 7.65058e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.32140e-04\tAbsError: 4.91747e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45076e-06\tAbsError: 7.64566e-04\n", + " Region: \"zone_3\"\tRelError: 8.75931e-03\tAbsError: 9.32231e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00196e-04\tAbsError: 4.83984e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11258e-04\tAbsError: 4.48247e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.54540e-03\tAbsError: 5.12036e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45098e-06\tAbsError: 7.64651e-04\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 1.04642e-03\tAbsError: 2.70474e+11\n", + " Region: \"zone_1\"\tRelError: 4.22828e-04\tAbsError: 2.21855e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22116e-04\tAbsError: 1.19423e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.11567e-07\tAbsError: 2.21736e-04\n", + " Region: \"zone_3\"\tRelError: 6.23592e-04\tAbsError: 2.70474e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.90891e-05\tAbsError: 1.46715e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.23372e-05\tAbsError: 1.23759e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.61454e-04\tAbsError: 1.22489e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.11632e-07\tAbsError: 2.21760e-04\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 8.72172e-03\tAbsError: 7.94037e+11\n", + " Region: \"zone_1\"\tRelError: 3.41166e-03\tAbsError: 6.50604e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40958e-03\tAbsError: 4.24042e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08439e-06\tAbsError: 6.50180e-04\n", + " Region: \"zone_3\"\tRelError: 5.31006e-03\tAbsError: 7.94037e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.52235e-05\tAbsError: 4.17871e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.46387e-05\tAbsError: 3.76166e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.12811e-03\tAbsError: 4.40511e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08458e-06\tAbsError: 6.50251e-04\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 1.50199e-02\tAbsError: 1.62934e+12\n", + " Region: \"zone_1\"\tRelError: 9.08261e-03\tAbsError: 1.33714e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.07833e-03\tAbsError: 7.84226e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.28605e-06\tAbsError: 1.33636e-03\n", + " Region: \"zone_3\"\tRelError: 5.93732e-03\tAbsError: 1.62934e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.75249e-04\tAbsError: 8.79831e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.94694e-04\tAbsError: 7.49507e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.56309e-03\tAbsError: 8.08403e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.28644e-06\tAbsError: 1.33651e-03\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 8.95445e-03\tAbsError: 1.22434e+12\n", + " Region: \"zone_1\"\tRelError: 2.71471e-03\tAbsError: 1.00360e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.71149e-03\tAbsError: 6.31030e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.21590e-06\tAbsError: 1.00297e-03\n", + " Region: \"zone_3\"\tRelError: 6.23974e-03\tAbsError: 1.22434e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31498e-04\tAbsError: 6.54646e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.46046e-04\tAbsError: 5.69690e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.95898e-03\tAbsError: 6.56240e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.21619e-06\tAbsError: 1.00308e-03\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 8.26169e-03\tAbsError: 8.22964e+11\n", + " Region: \"zone_1\"\tRelError: 4.71711e-04\tAbsError: 6.75384e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.69547e-04\tAbsError: 4.34109e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16350e-06\tAbsError: 6.74950e-04\n", + " Region: \"zone_3\"\tRelError: 7.78998e-03\tAbsError: 8.22964e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.84583e-05\tAbsError: 4.27256e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.82251e-05\tAbsError: 3.95707e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.60113e-03\tAbsError: 4.52020e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16370e-06\tAbsError: 6.75025e-04\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 9.15547e-04\tAbsError: 2.36674e+11\n", + " Region: \"zone_1\"\tRelError: 3.70125e-04\tAbsError: 1.94131e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.69502e-04\tAbsError: 1.04499e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.22645e-07\tAbsError: 1.94026e-04\n", + " Region: \"zone_3\"\tRelError: 5.45422e-04\tAbsError: 2.36674e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.54535e-05\tAbsError: 1.28380e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.82955e-05\tAbsError: 1.08294e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.91050e-04\tAbsError: 1.07182e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.22701e-07\tAbsError: 1.94047e-04\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 7.72577e-03\tAbsError: 7.00664e+11\n", + " Region: \"zone_1\"\tRelError: 3.01956e-03\tAbsError: 5.74096e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.01772e-03\tAbsError: 3.74177e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83928e-06\tAbsError: 5.73722e-04\n", + " Region: \"zone_3\"\tRelError: 4.70621e-03\tAbsError: 7.00664e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.52060e-05\tAbsError: 3.68733e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.35151e-05\tAbsError: 3.31931e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54565e-03\tAbsError: 3.88710e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83945e-06\tAbsError: 5.73785e-04\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 1.31223e-02\tAbsError: 1.43293e+12\n", + " Region: \"zone_1\"\tRelError: 7.92452e-03\tAbsError: 1.17596e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.92075e-03\tAbsError: 6.89693e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.76939e-06\tAbsError: 1.17527e-03\n", + " Region: \"zone_3\"\tRelError: 5.19775e-03\tAbsError: 1.43293e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54106e-04\tAbsError: 7.73773e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.71203e-04\tAbsError: 6.59159e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.86867e-03\tAbsError: 7.10956e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.76974e-06\tAbsError: 1.17540e-03\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 7.87191e-03\tAbsError: 1.07929e+12\n", + " Region: \"zone_1\"\tRelError: 2.39884e-03\tAbsError: 8.84707e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39600e-03\tAbsError: 5.56275e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.83493e-06\tAbsError: 8.84151e-04\n", + " Region: \"zone_3\"\tRelError: 5.47307e-03\tAbsError: 1.07929e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.15910e-04\tAbsError: 5.77093e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.28732e-04\tAbsError: 5.02202e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.22559e-03\tAbsError: 5.78498e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.83518e-06\tAbsError: 8.84249e-04\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 7.24875e-03\tAbsError: 7.26502e+11\n", + " Region: \"zone_1\"\tRelError: 4.16592e-04\tAbsError: 5.96221e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.14682e-04\tAbsError: 3.83226e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.90991e-06\tAbsError: 5.95838e-04\n", + " Region: \"zone_3\"\tRelError: 6.83216e-03\tAbsError: 7.26502e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.80852e-05\tAbsError: 3.77176e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.67062e-05\tAbsError: 3.49325e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.66546e-03\tAbsError: 3.99038e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91009e-06\tAbsError: 5.95904e-04\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 8.01215e-04\tAbsError: 2.07098e+11\n", + " Region: \"zone_1\"\tRelError: 3.23767e-04\tAbsError: 1.69871e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.23223e-04\tAbsError: 9.14403e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.44836e-07\tAbsError: 1.69779e-04\n", + " Region: \"zone_3\"\tRelError: 4.77448e-04\tAbsError: 2.07098e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.22730e-05\tAbsError: 1.12337e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.47600e-05\tAbsError: 9.47606e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.29870e-04\tAbsError: 9.37879e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.44885e-07\tAbsError: 1.69798e-04\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 6.79415e-03\tAbsError: 6.18269e+11\n", + " Region: \"zone_1\"\tRelError: 2.65740e-03\tAbsError: 5.06586e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.65578e-03\tAbsError: 3.30176e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62299e-06\tAbsError: 5.06256e-04\n", + " Region: \"zone_3\"\tRelError: 4.13675e-03\tAbsError: 6.18269e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.63589e-05\tAbsError: 3.25372e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.36900e-05\tAbsError: 2.92898e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.99508e-03\tAbsError: 3.43000e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62314e-06\tAbsError: 5.06312e-04\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 1.16078e-02\tAbsError: 1.26021e+12\n", + " Region: \"zone_1\"\tRelError: 7.01818e-03\tAbsError: 1.03421e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.01486e-03\tAbsError: 6.06558e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.31504e-06\tAbsError: 1.03360e-03\n", + " Region: \"zone_3\"\tRelError: 4.58966e-03\tAbsError: 1.26021e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.35544e-04\tAbsError: 6.80503e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.50584e-04\tAbsError: 5.79704e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.30022e-03\tAbsError: 6.25258e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.31534e-06\tAbsError: 1.03372e-03\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 6.95627e-03\tAbsError: 9.51439e+11\n", + " Region: \"zone_1\"\tRelError: 2.11021e-03\tAbsError: 7.79901e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.10771e-03\tAbsError: 4.90377e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.49909e-06\tAbsError: 7.79411e-04\n", + " Region: \"zone_3\"\tRelError: 4.84605e-03\tAbsError: 9.51439e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02187e-04\tAbsError: 5.08729e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13492e-04\tAbsError: 4.42710e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62788e-03\tAbsError: 5.09968e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.49932e-06\tAbsError: 7.79497e-04\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 6.43382e-03\tAbsError: 6.41348e+11\n", + " Region: \"zone_1\"\tRelError: 3.67629e-04\tAbsError: 5.26337e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.65943e-04\tAbsError: 3.38308e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68605e-06\tAbsError: 5.25999e-04\n", + " Region: \"zone_3\"\tRelError: 6.06619e-03\tAbsError: 6.41348e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.89364e-05\tAbsError: 3.32967e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.65477e-05\tAbsError: 3.08381e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.91902e-03\tAbsError: 3.52266e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68620e-06\tAbsError: 5.26057e-04\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 7.01028e-04\tAbsError: 1.81217e+11\n", + " Region: \"zone_1\"\tRelError: 2.83387e-04\tAbsError: 1.48643e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.82911e-04\tAbsError: 8.00133e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.76749e-07\tAbsError: 1.48563e-04\n", + " Region: \"zone_3\"\tRelError: 4.17641e-04\tAbsError: 1.81217e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94894e-05\tAbsError: 9.82988e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.16655e-05\tAbsError: 8.29187e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.76009e-04\tAbsError: 8.20676e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.76792e-07\tAbsError: 1.48579e-04\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 6.01319e-03\tAbsError: 5.45565e+11\n", + " Region: \"zone_1\"\tRelError: 2.35041e-03\tAbsError: 4.47014e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34898e-03\tAbsError: 2.91350e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43214e-06\tAbsError: 4.46723e-04\n", + " Region: \"zone_3\"\tRelError: 3.66278e-03\tAbsError: 5.45565e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.85581e-05\tAbsError: 2.87110e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.50278e-05\tAbsError: 2.58455e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53776e-03\tAbsError: 3.02665e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43227e-06\tAbsError: 4.46772e-04\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 1.01565e-02\tAbsError: 1.10830e+12\n", + " Region: \"zone_1\"\tRelError: 6.13436e-03\tAbsError: 9.09547e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.13144e-03\tAbsError: 5.33442e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.91543e-06\tAbsError: 9.09014e-04\n", + " Region: \"zone_3\"\tRelError: 4.02214e-03\tAbsError: 1.10830e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19195e-04\tAbsError: 5.98473e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.32419e-04\tAbsError: 5.09825e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.76761e-03\tAbsError: 5.49888e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.91570e-06\tAbsError: 9.09114e-04\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 6.11906e-03\tAbsError: 8.38726e+11\n", + " Region: \"zone_1\"\tRelError: 1.86369e-03\tAbsError: 6.87511e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86148e-03\tAbsError: 4.32285e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20304e-06\tAbsError: 6.87079e-04\n", + " Region: \"zone_3\"\tRelError: 4.25537e-03\tAbsError: 8.38726e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.00751e-05\tAbsError: 4.48462e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.00039e-04\tAbsError: 3.90264e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.06306e-03\tAbsError: 4.49554e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20324e-06\tAbsError: 6.87155e-04\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 5.65263e-03\tAbsError: 5.66174e+11\n", + " Region: \"zone_1\"\tRelError: 3.24643e-04\tAbsError: 4.64644e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.23154e-04\tAbsError: 2.98654e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48842e-06\tAbsError: 4.64346e-04\n", + " Region: \"zone_3\"\tRelError: 5.32799e-03\tAbsError: 5.66174e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.08534e-05\tAbsError: 2.93939e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.75719e-05\tAbsError: 2.72235e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.19808e-03\tAbsError: 3.10976e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48856e-06\tAbsError: 4.64397e-04\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 6.13471e-04\tAbsError: 1.58571e+11\n", + " Region: \"zone_1\"\tRelError: 2.47912e-04\tAbsError: 1.30067e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.47495e-04\tAbsError: 7.00143e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.17172e-07\tAbsError: 1.29997e-04\n", + " Region: \"zone_3\"\tRelError: 3.65559e-04\tAbsError: 1.58571e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.70541e-05\tAbsError: 8.60148e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.89583e-05\tAbsError: 7.25566e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.29129e-04\tAbsError: 7.18119e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.17210e-07\tAbsError: 1.30012e-04\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 5.29206e-03\tAbsError: 4.81409e+11\n", + " Region: \"zone_1\"\tRelError: 2.06973e-03\tAbsError: 3.94448e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06846e-03\tAbsError: 2.57088e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26373e-06\tAbsError: 3.94191e-04\n", + " Region: \"zone_3\"\tRelError: 3.22233e-03\tAbsError: 4.81409e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.16699e-05\tAbsError: 2.53347e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.73784e-05\tAbsError: 2.28062e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.11202e-03\tAbsError: 2.67073e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26384e-06\tAbsError: 3.94235e-04\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 8.97251e-03\tAbsError: 9.74705e+11\n", + " Region: \"zone_1\"\tRelError: 5.42416e-03\tAbsError: 7.99909e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.42160e-03\tAbsError: 4.69141e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.56401e-06\tAbsError: 7.99440e-04\n", + " Region: \"zone_3\"\tRelError: 3.54835e-03\tAbsError: 9.74705e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04835e-04\tAbsError: 5.26334e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.16467e-04\tAbsError: 4.48371e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.32448e-03\tAbsError: 4.83604e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.56424e-06\tAbsError: 7.99528e-04\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 5.40438e-03\tAbsError: 7.39369e+11\n", + " Region: \"zone_1\"\tRelError: 1.64022e-03\tAbsError: 6.06066e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63828e-03\tAbsError: 3.81075e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94206e-06\tAbsError: 6.05685e-04\n", + " Region: \"zone_3\"\tRelError: 3.76416e-03\tAbsError: 7.39369e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94093e-05\tAbsError: 3.95336e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.81943e-05\tAbsError: 3.44032e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59461e-03\tAbsError: 3.96299e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94224e-06\tAbsError: 6.05752e-04\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 5.01116e-03\tAbsError: 4.99812e+11\n", + " Region: \"zone_1\"\tRelError: 2.86510e-04\tAbsError: 4.10182e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.85196e-04\tAbsError: 2.63649e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31396e-06\tAbsError: 4.09919e-04\n", + " Region: \"zone_3\"\tRelError: 4.72465e-03\tAbsError: 4.99812e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.37229e-05\tAbsError: 2.59486e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.96544e-05\tAbsError: 2.40326e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.60996e-03\tAbsError: 2.74526e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31408e-06\tAbsError: 4.09964e-04\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 5.36771e-04\tAbsError: 1.38755e+11\n", + " Region: \"zone_1\"\tRelError: 2.16978e-04\tAbsError: 1.13813e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16613e-04\tAbsError: 6.12649e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.65039e-07\tAbsError: 1.13752e-04\n", + " Region: \"zone_3\"\tRelError: 3.19793e-04\tAbsError: 1.38755e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49227e-05\tAbsError: 7.52658e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.65889e-05\tAbsError: 6.34895e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.87916e-04\tAbsError: 6.28378e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.65072e-07\tAbsError: 1.13765e-04\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 4.68065e-03\tAbsError: 4.24799e+11\n", + " Region: \"zone_1\"\tRelError: 1.82968e-03\tAbsError: 3.48063e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82856e-03\tAbsError: 2.26856e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11512e-06\tAbsError: 3.47837e-04\n", + " Region: \"zone_3\"\tRelError: 2.85097e-03\tAbsError: 4.24799e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.55955e-05\tAbsError: 2.23555e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.06330e-05\tAbsError: 2.01243e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.75363e-03\tAbsError: 2.35667e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.11522e-06\tAbsError: 3.47875e-04\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 7.85978e-03\tAbsError: 8.57212e+11\n", + " Region: \"zone_1\"\tRelError: 4.74769e-03\tAbsError: 7.03487e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.74544e-03\tAbsError: 4.12590e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.25494e-06\tAbsError: 7.03075e-04\n", + " Region: \"zone_3\"\tRelError: 3.11208e-03\tAbsError: 8.57212e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.21918e-05\tAbsError: 4.62888e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02420e-04\tAbsError: 3.94323e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.91522e-03\tAbsError: 4.25310e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.25514e-06\tAbsError: 7.03152e-04\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 4.75622e-03\tAbsError: 6.51779e+11\n", + " Region: \"zone_1\"\tRelError: 1.44800e-03\tAbsError: 5.34269e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44629e-03\tAbsError: 3.35931e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71199e-06\tAbsError: 5.33933e-04\n", + " Region: \"zone_3\"\tRelError: 3.30822e-03\tAbsError: 6.51779e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.99984e-05\tAbsError: 3.48503e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.77418e-05\tAbsError: 3.03276e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.15877e-03\tAbsError: 3.49351e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71215e-06\tAbsError: 5.33992e-04\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 4.40736e-03\tAbsError: 4.41228e+11\n", + " Region: \"zone_1\"\tRelError: 2.52991e-04\tAbsError: 3.62104e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51831e-04\tAbsError: 2.32746e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15995e-06\tAbsError: 3.61872e-04\n", + " Region: \"zone_3\"\tRelError: 4.15436e-03\tAbsError: 4.41228e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.74242e-05\tAbsError: 2.29071e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.26601e-05\tAbsError: 2.12157e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.05312e-03\tAbsError: 2.42348e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16006e-06\tAbsError: 3.61912e-04\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 4.69721e-04\tAbsError: 1.21416e+11\n", + " Region: \"zone_1\"\tRelError: 1.89827e-04\tAbsError: 9.95904e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89508e-04\tAbsError: 5.36088e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.19422e-07\tAbsError: 9.95368e-05\n", + " Region: \"zone_3\"\tRelError: 2.79893e-04\tAbsError: 1.21416e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.30580e-05\tAbsError: 6.58601e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.45160e-05\tAbsError: 5.55554e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52000e-04\tAbsError: 5.49852e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.19451e-07\tAbsError: 9.95478e-05\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 4.12174e-03\tAbsError: 3.74845e+11\n", + " Region: \"zone_1\"\tRelError: 1.61192e-03\tAbsError: 3.07133e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61093e-03\tAbsError: 2.00179e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.83989e-07\tAbsError: 3.06933e-04\n", + " Region: \"zone_3\"\tRelError: 2.50982e-03\tAbsError: 3.74845e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.02325e-05\tAbsError: 1.97266e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.46773e-05\tAbsError: 1.77578e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42393e-03\tAbsError: 2.07954e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.84078e-07\tAbsError: 3.06967e-04\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 6.93645e-03\tAbsError: 7.53884e+11\n", + " Region: \"zone_1\"\tRelError: 4.19290e-03\tAbsError: 6.18688e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.19092e-03\tAbsError: 3.62856e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98313e-06\tAbsError: 6.18325e-04\n", + " Region: \"zone_3\"\tRelError: 2.74356e-03\tAbsError: 7.53884e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.10839e-05\tAbsError: 4.07092e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.00804e-05\tAbsError: 3.46792e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57041e-03\tAbsError: 3.74043e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98331e-06\tAbsError: 6.18393e-04\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 4.19894e-03\tAbsError: 5.74568e+11\n", + " Region: \"zone_1\"\tRelError: 1.27484e-03\tAbsError: 4.70977e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27333e-03\tAbsError: 2.96136e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50919e-06\tAbsError: 4.70681e-04\n", + " Region: \"zone_3\"\tRelError: 2.92410e-03\tAbsError: 5.74568e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17090e-05\tAbsError: 3.07218e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.85358e-05\tAbsError: 2.67349e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.79235e-03\tAbsError: 3.07966e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50932e-06\tAbsError: 4.70733e-04\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 3.90357e-03\tAbsError: 3.89511e+11\n", + " Region: \"zone_1\"\tRelError: 2.23288e-04\tAbsError: 3.19661e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.22264e-04\tAbsError: 2.05465e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02399e-06\tAbsError: 3.19456e-04\n", + " Region: \"zone_3\"\tRelError: 3.68028e-03\tAbsError: 3.89511e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.18669e-05\tAbsError: 2.02222e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.64894e-05\tAbsError: 1.87289e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59090e-03\tAbsError: 2.13942e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02409e-06\tAbsError: 3.19491e-04\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 4.11000e-04\tAbsError: 1.06243e+11\n", + " Region: \"zone_1\"\tRelError: 1.66133e-04\tAbsError: 8.71450e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65853e-04\tAbsError: 4.69095e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.79505e-07\tAbsError: 8.70981e-05\n", + " Region: \"zone_3\"\tRelError: 2.44867e-04\tAbsError: 1.06243e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.14261e-05\tAbsError: 5.76298e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.27019e-05\tAbsError: 4.86129e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20460e-04\tAbsError: 4.81139e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.79530e-07\tAbsError: 8.71076e-05\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 3.64366e-03\tAbsError: 3.30765e+11\n", + " Region: \"zone_1\"\tRelError: 1.42439e-03\tAbsError: 2.71016e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42352e-03\tAbsError: 1.76640e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.68278e-07\tAbsError: 2.70840e-04\n", + " Region: \"zone_3\"\tRelError: 2.21927e-03\tAbsError: 3.30765e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.55023e-05\tAbsError: 1.74069e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.94247e-05\tAbsError: 1.56696e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.14347e-03\tAbsError: 1.83500e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.68357e-07\tAbsError: 2.70869e-04\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 6.08168e-03\tAbsError: 6.63009e+11\n", + " Region: \"zone_1\"\tRelError: 3.67394e-03\tAbsError: 5.44111e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.67220e-03\tAbsError: 3.19117e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74408e-06\tAbsError: 5.43792e-04\n", + " Region: \"zone_3\"\tRelError: 2.40773e-03\tAbsError: 6.63009e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.13061e-05\tAbsError: 3.58020e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.92172e-05\tAbsError: 3.04989e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25547e-03\tAbsError: 3.28955e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74423e-06\tAbsError: 5.43852e-04\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 3.69673e-03\tAbsError: 5.06502e+11\n", + " Region: \"zone_1\"\tRelError: 1.12508e-03\tAbsError: 4.15184e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12375e-03\tAbsError: 2.61054e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33040e-06\tAbsError: 4.14923e-04\n", + " Region: \"zone_3\"\tRelError: 2.57165e-03\tAbsError: 5.06502e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.43965e-05\tAbsError: 2.70824e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.04140e-05\tAbsError: 2.35678e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.45551e-03\tAbsError: 2.71483e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33052e-06\tAbsError: 4.14968e-04\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 3.43604e-03\tAbsError: 3.43856e+11\n", + " Region: \"zone_1\"\tRelError: 1.97154e-04\tAbsError: 2.82193e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96250e-04\tAbsError: 1.81382e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.03967e-07\tAbsError: 2.82012e-04\n", + " Region: \"zone_3\"\tRelError: 3.23889e-03\tAbsError: 3.43856e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.69585e-05\tAbsError: 1.78519e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.10390e-05\tAbsError: 1.65337e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.15998e-03\tAbsError: 1.88866e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.04050e-07\tAbsError: 2.82043e-04\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 3.59655e-04\tAbsError: 9.29659e+10\n", + " Region: \"zone_1\"\tRelError: 1.45351e-04\tAbsError: 7.62548e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45106e-04\tAbsError: 4.10474e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.44576e-07\tAbsError: 7.62137e-05\n", + " Region: \"zone_3\"\tRelError: 2.14304e-04\tAbsError: 9.29659e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99829e-06\tAbsError: 5.04280e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11147e-05\tAbsError: 4.25379e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92947e-04\tAbsError: 4.21013e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.44598e-07\tAbsError: 7.62221e-05\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 3.21004e-03\tAbsError: 2.91869e+11\n", + " Region: \"zone_1\"\tRelError: 1.25531e-03\tAbsError: 2.39146e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25455e-03\tAbsError: 1.55868e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.66173e-07\tAbsError: 2.38990e-04\n", + " Region: \"zone_3\"\tRelError: 1.95472e-03\tAbsError: 2.91869e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.13267e-05\tAbsError: 1.53600e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.47877e-05\tAbsError: 1.38270e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88784e-03\tAbsError: 1.61921e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.66243e-07\tAbsError: 2.39017e-04\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 5.36301e-03\tAbsError: 5.83090e+11\n", + " Region: \"zone_1\"\tRelError: 3.24155e-03\tAbsError: 4.78523e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.24002e-03\tAbsError: 2.80650e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53385e-06\tAbsError: 4.78242e-04\n", + " Region: \"zone_3\"\tRelError: 2.12145e-03\tAbsError: 5.83090e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.27138e-05\tAbsError: 3.14864e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.96720e-05\tAbsError: 2.68225e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.98754e-03\tAbsError: 2.89303e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53398e-06\tAbsError: 4.78295e-04\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 3.26252e-03\tAbsError: 4.46500e+11\n", + " Region: \"zone_1\"\tRelError: 9.90819e-04\tAbsError: 3.65999e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.89646e-04\tAbsError: 2.30129e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17280e-06\tAbsError: 3.65769e-04\n", + " Region: \"zone_3\"\tRelError: 2.27170e-03\tAbsError: 4.46500e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.79542e-05\tAbsError: 2.38741e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.32593e-05\tAbsError: 2.07759e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16932e-03\tAbsError: 2.39322e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17290e-06\tAbsError: 3.65809e-04\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 3.04107e-03\tAbsError: 3.03552e+11\n", + " Region: \"zone_1\"\tRelError: 1.74016e-04\tAbsError: 2.49117e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73218e-04\tAbsError: 1.60122e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.98012e-07\tAbsError: 2.48957e-04\n", + " Region: \"zone_3\"\tRelError: 2.86706e-03\tAbsError: 3.03552e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.26274e-05\tAbsError: 1.57594e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.62297e-05\tAbsError: 1.45958e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.79740e-03\tAbsError: 1.66729e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.98085e-07\tAbsError: 2.48984e-04\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 3.14698e-04\tAbsError: 8.13483e+10\n", + " Region: \"zone_1\"\tRelError: 1.27203e-04\tAbsError: 6.67255e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26989e-04\tAbsError: 3.59179e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.14012e-07\tAbsError: 6.66896e-05\n", + " Region: \"zone_3\"\tRelError: 1.87495e-04\tAbsError: 8.13483e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.74878e-06\tAbsError: 4.41262e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.72565e-06\tAbsError: 3.72221e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68806e-04\tAbsError: 3.68400e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.14032e-07\tAbsError: 6.66969e-05\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 2.83657e-03\tAbsError: 2.57547e+11\n", + " Region: \"zone_1\"\tRelError: 1.10892e-03\tAbsError: 2.11024e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10825e-03\tAbsError: 1.37539e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.76076e-07\tAbsError: 2.10887e-04\n", + " Region: \"zone_3\"\tRelError: 1.72764e-03\tAbsError: 2.57547e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.76435e-05\tAbsError: 1.35537e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.06976e-05\tAbsError: 1.22010e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66862e-03\tAbsError: 1.42880e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.76137e-07\tAbsError: 2.10910e-04\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 4.70539e-03\tAbsError: 5.12803e+11\n", + " Region: \"zone_1\"\tRelError: 2.84271e-03\tAbsError: 4.20842e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.84136e-03\tAbsError: 2.46820e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34895e-06\tAbsError: 4.20595e-04\n", + " Region: \"zone_3\"\tRelError: 1.86268e-03\tAbsError: 5.12803e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.51519e-05\tAbsError: 2.76910e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.12708e-05\tAbsError: 2.35893e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74490e-03\tAbsError: 2.54430e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34907e-06\tAbsError: 4.20641e-04\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 2.87314e-03\tAbsError: 3.93605e+11\n", + " Region: \"zone_1\"\tRelError: 8.74204e-04\tAbsError: 3.22642e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.73170e-04\tAbsError: 2.02867e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03386e-06\tAbsError: 3.22439e-04\n", + " Region: \"zone_3\"\tRelError: 1.99893e-03\tAbsError: 3.93605e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.22720e-05\tAbsError: 2.10459e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.69483e-05\tAbsError: 1.83147e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90868e-03\tAbsError: 2.10971e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03396e-06\tAbsError: 3.22474e-04\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 2.67856e-03\tAbsError: 2.67972e+11\n", + " Region: \"zone_1\"\tRelError: 1.53642e-04\tAbsError: 2.19918e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52938e-04\tAbsError: 1.41354e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.04476e-07\tAbsError: 2.19776e-04\n", + " Region: \"zone_3\"\tRelError: 2.52492e-03\tAbsError: 2.67972e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.88024e-05\tAbsError: 1.39122e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.19824e-05\tAbsError: 1.28850e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.46343e-03\tAbsError: 1.47186e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.04540e-07\tAbsError: 2.19800e-04\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 2.75381e-04\tAbsError: 7.11825e+10\n", + " Region: \"zone_1\"\tRelError: 1.11295e-04\tAbsError: 5.83871e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11107e-04\tAbsError: 3.14293e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87268e-07\tAbsError: 5.83556e-05\n", + " Region: \"zone_3\"\tRelError: 1.64086e-04\tAbsError: 7.11825e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.65552e-06\tAbsError: 3.86119e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.51032e-06\tAbsError: 3.25706e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47733e-04\tAbsError: 3.22363e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87285e-07\tAbsError: 5.83620e-05\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 2.49988e-03\tAbsError: 2.27261e+11\n", + " Region: \"zone_1\"\tRelError: 9.77566e-04\tAbsError: 1.86209e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.76969e-04\tAbsError: 1.21365e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.96573e-07\tAbsError: 1.86088e-04\n", + " Region: \"zone_3\"\tRelError: 1.52231e-03\tAbsError: 2.27261e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.43923e-05\tAbsError: 1.19599e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.70872e-05\tAbsError: 1.07662e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47024e-03\tAbsError: 1.26078e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.96627e-07\tAbsError: 1.86108e-04\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 4.14682e-03\tAbsError: 4.50990e+11\n", + " Region: \"zone_1\"\tRelError: 2.50631e-03\tAbsError: 3.70113e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.50512e-03\tAbsError: 2.17068e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18635e-06\tAbsError: 3.69896e-04\n", + " Region: \"zone_3\"\tRelError: 1.64051e-03\tAbsError: 4.50990e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.85056e-05\tAbsError: 2.43531e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.38874e-05\tAbsError: 2.07458e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53693e-03\tAbsError: 2.23761e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18646e-06\tAbsError: 3.69936e-04\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 2.53502e-03\tAbsError: 3.46978e+11\n", + " Region: \"zone_1\"\tRelError: 7.70051e-04\tAbsError: 2.84420e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.69139e-04\tAbsError: 1.78834e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.11388e-07\tAbsError: 2.84241e-04\n", + " Region: \"zone_3\"\tRelError: 1.76497e-03\tAbsError: 3.46978e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.72654e-05\tAbsError: 1.85527e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.13879e-05\tAbsError: 1.61451e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68541e-03\tAbsError: 1.85979e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.11470e-07\tAbsError: 2.84273e-04\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 2.36933e-03\tAbsError: 2.36563e+11\n", + " Region: \"zone_1\"\tRelError: 1.35615e-04\tAbsError: 1.94141e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34993e-04\tAbsError: 1.24786e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.21903e-07\tAbsError: 1.94016e-04\n", + " Region: \"zone_3\"\tRelError: 2.23371e-03\tAbsError: 2.36563e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.54269e-05\tAbsError: 1.22816e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.82343e-05\tAbsError: 1.13747e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17943e-03\tAbsError: 1.29934e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.21960e-07\tAbsError: 1.94037e-04\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 2.40960e-04\tAbsError: 6.22871e+10\n", + " Region: \"zone_1\"\tRelError: 9.73959e-05\tAbsError: 5.10906e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.72320e-05\tAbsError: 2.75017e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63866e-07\tAbsError: 5.10631e-05\n", + " Region: \"zone_3\"\tRelError: 1.43564e-04\tAbsError: 6.22871e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.69880e-06\tAbsError: 3.37867e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.44678e-06\tAbsError: 2.85004e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29255e-04\tAbsError: 2.82078e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63881e-07\tAbsError: 5.10687e-05\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 2.20834e-03\tAbsError: 2.00537e+11\n", + " Region: \"zone_1\"\tRelError: 8.63354e-04\tAbsError: 1.64312e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.62828e-04\tAbsError: 1.07093e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.26420e-07\tAbsError: 1.64205e-04\n", + " Region: \"zone_3\"\tRelError: 1.34499e-03\tAbsError: 2.00537e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.15243e-05\tAbsError: 1.05535e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.39023e-05\tAbsError: 9.50018e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29903e-03\tAbsError: 1.11252e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.26468e-07\tAbsError: 1.64223e-04\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 3.64028e-03\tAbsError: 3.96627e+11\n", + " Region: \"zone_1\"\tRelError: 2.19935e-03\tAbsError: 3.25499e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19831e-03\tAbsError: 1.90903e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04334e-06\tAbsError: 3.25308e-04\n", + " Region: \"zone_3\"\tRelError: 1.44093e-03\tAbsError: 3.96627e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.26573e-05\tAbsError: 2.14176e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.73900e-05\tAbsError: 1.82451e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34984e-03\tAbsError: 1.96788e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04344e-06\tAbsError: 3.25344e-04\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 2.23297e-03\tAbsError: 3.05873e+11\n", + " Region: \"zone_1\"\tRelError: 6.79287e-04\tAbsError: 2.50727e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.78484e-04\tAbsError: 1.57649e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03420e-07\tAbsError: 2.50569e-04\n", + " Region: \"zone_3\"\tRelError: 1.55368e-03\tAbsError: 3.05873e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.28499e-05\tAbsError: 1.63549e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.64839e-05\tAbsError: 1.42324e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48354e-03\tAbsError: 1.63947e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.03493e-07\tAbsError: 2.50597e-04\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 2.08793e-03\tAbsError: 2.08835e+11\n", + " Region: \"zone_1\"\tRelError: 1.19734e-04\tAbsError: 1.71385e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19185e-04\tAbsError: 1.10159e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.49009e-07\tAbsError: 1.71275e-04\n", + " Region: \"zone_3\"\tRelError: 1.96820e-03\tAbsError: 2.08835e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.24462e-05\tAbsError: 1.08420e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.49244e-05\tAbsError: 1.00414e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92028e-03\tAbsError: 1.14704e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.49058e-07\tAbsError: 1.71294e-04\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 2.10854e-04\tAbsError: 5.45033e+10\n", + " Region: \"zone_1\"\tRelError: 8.52175e-05\tAbsError: 4.47060e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.50741e-05\tAbsError: 2.40649e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43388e-07\tAbsError: 4.46820e-05\n", + " Region: \"zone_3\"\tRelError: 1.25636e-04\tAbsError: 5.45033e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.86170e-06\tAbsError: 2.95645e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.51621e-06\tAbsError: 2.49388e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13115e-04\tAbsError: 2.46828e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43401e-07\tAbsError: 4.46869e-05\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 1.94676e-03\tAbsError: 1.76955e+11\n", + " Region: \"zone_1\"\tRelError: 7.61249e-04\tAbsError: 1.44990e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.60785e-04\tAbsError: 9.44996e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.64516e-07\tAbsError: 1.44895e-04\n", + " Region: \"zone_3\"\tRelError: 1.18551e-03\tAbsError: 1.76955e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.89929e-05\tAbsError: 9.31245e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.10912e-05\tAbsError: 8.38301e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14496e-03\tAbsError: 9.81698e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.64558e-07\tAbsError: 1.44911e-04\n", + "Iteration: 59\n", + " Device: \"device\"\tRelError: 1.96980e-03\tAbsError: 2.69638e+11\n", + " Region: \"zone_1\"\tRelError: 5.98459e-04\tAbsError: 2.21025e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.97751e-04\tAbsError: 1.38973e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.08245e-07\tAbsError: 2.20886e-04\n", + " Region: \"zone_3\"\tRelError: 1.37134e-03\tAbsError: 2.69638e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89590e-05\tAbsError: 1.44174e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.21627e-05\tAbsError: 1.25464e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30951e-03\tAbsError: 1.44525e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.08309e-07\tAbsError: 2.20910e-04\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 3.20664e-03\tAbsError: 3.48817e+11\n", + " Region: \"zone_1\"\tRelError: 1.93799e-03\tAbsError: 2.86263e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93707e-03\tAbsError: 1.67891e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.17579e-07\tAbsError: 2.86095e-04\n", + " Region: \"zone_3\"\tRelError: 1.26866e-03\tAbsError: 3.48817e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.75164e-05\tAbsError: 1.88359e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.16789e-05\tAbsError: 1.60458e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18854e-03\tAbsError: 1.73067e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.17663e-07\tAbsError: 2.86127e-04\n", + "Iteration: 59\n", + " Device: \"device\"\tRelError: 1.84607e-03\tAbsError: 1.84357e+11\n", + " Region: \"zone_1\"\tRelError: 1.05689e-04\tAbsError: 1.51297e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05204e-04\tAbsError: 9.72473e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.84659e-07\tAbsError: 1.51199e-04\n", + " Region: \"zone_3\"\tRelError: 1.74038e-03\tAbsError: 1.84357e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98156e-05\tAbsError: 9.57121e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.20034e-05\tAbsError: 8.86447e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69808e-03\tAbsError: 1.01260e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.84703e-07\tAbsError: 1.51216e-04\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 1.84500e-04\tAbsError: 4.76922e+10\n", + " Region: \"zone_1\"\tRelError: 7.45737e-05\tAbsError: 3.91193e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.44482e-05\tAbsError: 2.10576e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.25469e-07\tAbsError: 3.90982e-05\n", + " Region: \"zone_3\"\tRelError: 1.09926e-04\tAbsError: 4.76922e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.12917e-06\tAbsError: 2.58700e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.70188e-06\tAbsError: 2.18223e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.89697e-05\tAbsError: 2.15983e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.25481e-07\tAbsError: 3.91025e-05\n", + "Iteration: 59\n", + " Device: \"device\"\tRelError: 1.71931e-03\tAbsError: 1.56146e+11\n", + " Region: \"zone_1\"\tRelError: 6.72182e-04\tAbsError: 1.27940e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.71772e-04\tAbsError: 8.33870e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.09892e-07\tAbsError: 1.27856e-04\n", + " Region: \"zone_3\"\tRelError: 1.04712e-03\tAbsError: 1.56146e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.67596e-05\tAbsError: 8.21736e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.86113e-05\tAbsError: 7.39722e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01134e-03\tAbsError: 8.66256e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.09929e-07\tAbsError: 1.27871e-04\n", + "Iteration: 60\n", + " Device: \"device\"\tRelError: 1.73539e-03\tAbsError: 2.37696e+11\n", + " Region: \"zone_1\"\tRelError: 5.27841e-04\tAbsError: 1.94841e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.27216e-04\tAbsError: 1.22510e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.24343e-07\tAbsError: 1.94719e-04\n", + " Region: \"zone_3\"\tRelError: 1.20755e-03\tAbsError: 2.37696e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.55279e-05\tAbsError: 1.27095e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.83520e-05\tAbsError: 1.10601e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15305e-03\tAbsError: 1.27404e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.24400e-07\tAbsError: 1.94740e-04\n", + "Iteration: 59\n", + " Device: \"device\"\tRelError: 2.81612e-03\tAbsError: 3.06770e+11\n", + " Region: \"zone_1\"\tRelError: 1.70148e-03\tAbsError: 2.51757e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70067e-03\tAbsError: 1.47653e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.06973e-07\tAbsError: 2.51609e-04\n", + " Region: \"zone_3\"\tRelError: 1.11464e-03\tAbsError: 3.06770e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.29933e-05\tAbsError: 1.65654e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.66539e-05\tAbsError: 1.41116e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04418e-03\tAbsError: 1.52205e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.07046e-07\tAbsError: 2.51637e-04\n", + "Iteration: 60\n", + " Device: \"device\"\tRelError: 1.62745e-03\tAbsError: 1.62748e+11\n", + " Region: \"zone_1\"\tRelError: 9.33093e-05\tAbsError: 1.33563e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.28814e-05\tAbsError: 8.58488e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.27851e-07\tAbsError: 1.33477e-04\n", + " Region: \"zone_3\"\tRelError: 1.53414e-03\tAbsError: 1.62748e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74927e-05\tAbsError: 8.44935e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.94240e-05\tAbsError: 7.82545e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49680e-03\tAbsError: 8.93908e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.27890e-07\tAbsError: 1.33492e-04\n", + "Iteration: 59\n", + " Device: \"device\"\tRelError: 1.61447e-04\tAbsError: 4.17323e+10\n", + " Region: \"zone_1\"\tRelError: 6.52502e-05\tAbsError: 3.42307e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.51404e-05\tAbsError: 1.84261e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09790e-07\tAbsError: 3.42123e-05\n", + " Region: \"zone_3\"\tRelError: 9.61967e-05\tAbsError: 4.17323e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.48821e-06\tAbsError: 2.26371e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.98935e-06\tAbsError: 1.90952e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.66093e-05\tAbsError: 1.88992e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09800e-07\tAbsError: 3.42160e-05\n", + "Iteration: 60\n", + " Device: \"device\"\tRelError: 1.51598e-03\tAbsError: 1.37784e+11\n", + " Region: \"zone_1\"\tRelError: 5.92786e-04\tAbsError: 1.12895e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.92424e-04\tAbsError: 7.35812e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.61691e-07\tAbsError: 1.12821e-04\n", + " Region: \"zone_3\"\tRelError: 9.23191e-04\tAbsError: 1.37784e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47886e-05\tAbsError: 7.25104e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.64225e-05\tAbsError: 6.52735e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.91619e-04\tAbsError: 7.64389e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.61724e-07\tAbsError: 1.12834e-04\n", + "Iteration: 61\n", + " Device: \"device\"\tRelError: 1.53063e-03\tAbsError: 2.09537e+11\n", + " Region: \"zone_1\"\tRelError: 4.65095e-04\tAbsError: 1.71760e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.64544e-04\tAbsError: 1.07997e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.50381e-07\tAbsError: 1.71652e-04\n", + " Region: \"zone_3\"\tRelError: 1.06554e-03\tAbsError: 2.09537e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.25042e-05\tAbsError: 1.12039e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.49938e-05\tAbsError: 9.74989e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01749e-03\tAbsError: 1.12311e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.50431e-07\tAbsError: 1.71670e-04\n", + "Iteration: 60\n", + " Device: \"device\"\tRelError: 2.47975e-03\tAbsError: 2.69792e+11\n", + " Region: \"zone_1\"\tRelError: 1.49862e-03\tAbsError: 2.21410e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49791e-03\tAbsError: 1.29855e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.09700e-07\tAbsError: 2.21280e-04\n", + " Region: \"zone_3\"\tRelError: 9.81123e-04\tAbsError: 2.69792e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.90169e-05\tAbsError: 1.45686e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.22364e-05\tAbsError: 1.24106e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.19160e-04\tAbsError: 1.33858e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.09764e-07\tAbsError: 2.21304e-04\n", + "Iteration: 61\n", + " Device: \"device\"\tRelError: 1.43844e-03\tAbsError: 1.43672e+11\n", + " Region: \"zone_1\"\tRelError: 8.23656e-05\tAbsError: 1.17908e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.19879e-05\tAbsError: 7.57863e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77702e-07\tAbsError: 1.17832e-04\n", + " Region: \"zone_3\"\tRelError: 1.35607e-03\tAbsError: 1.43672e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54425e-05\tAbsError: 7.45899e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.71475e-05\tAbsError: 6.90821e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32310e-03\tAbsError: 7.89132e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77736e-07\tAbsError: 1.17845e-04\n", + "Iteration: 60\n", + " Device: \"device\"\tRelError: 1.41269e-04\tAbsError: 3.65171e+10\n", + " Region: \"zone_1\"\tRelError: 5.70994e-05\tAbsError: 2.99530e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.70033e-05\tAbsError: 1.61235e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.60698e-08\tAbsError: 2.99369e-05\n", + " Region: \"zone_3\"\tRelError: 8.41695e-05\tAbsError: 3.65171e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.92732e-06\tAbsError: 1.98082e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.36584e-06\tAbsError: 1.67090e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.57803e-05\tAbsError: 1.65374e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.60785e-08\tAbsError: 2.99402e-05\n", + "Iteration: 61\n", + " Device: \"device\"\tRelError: 1.33860e-03\tAbsError: 1.21581e+11\n", + " Region: \"zone_1\"\tRelError: 5.23351e-04\tAbsError: 9.96191e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.23032e-04\tAbsError: 6.49285e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.19158e-07\tAbsError: 9.95541e-05\n", + " Region: \"zone_3\"\tRelError: 8.15250e-04\tAbsError: 1.21581e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.30497e-05\tAbsError: 6.39837e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.44915e-05\tAbsError: 5.75978e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.87389e-04\tAbsError: 6.74502e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.19187e-07\tAbsError: 9.95651e-05\n", + "Iteration: 62\n", + " Device: \"device\"\tRelError: 1.34867e-03\tAbsError: 1.84715e+11\n", + " Region: \"zone_1\"\tRelError: 4.10165e-04\tAbsError: 1.51412e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.09680e-04\tAbsError: 9.52031e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.85180e-07\tAbsError: 1.51317e-04\n", + " Region: \"zone_3\"\tRelError: 9.38503e-04\tAbsError: 1.84715e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98380e-05\tAbsError: 9.87660e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.20325e-05\tAbsError: 8.59488e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.96147e-04\tAbsError: 9.90064e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.85225e-07\tAbsError: 1.51334e-04\n", + "Iteration: 61\n", + " Device: \"device\"\tRelError: 2.17845e-03\tAbsError: 2.37271e+11\n", + " Region: \"zone_1\"\tRelError: 1.31624e-03\tAbsError: 1.94721e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31562e-03\tAbsError: 1.14202e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.24152e-07\tAbsError: 1.94606e-04\n", + " Region: \"zone_3\"\tRelError: 8.62203e-04\tAbsError: 2.37271e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.55187e-05\tAbsError: 1.28125e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.83499e-05\tAbsError: 1.09146e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.07710e-04\tAbsError: 1.17723e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.24208e-07\tAbsError: 1.94628e-04\n", + "Iteration: 62\n", + " Device: \"device\"\tRelError: 1.26848e-03\tAbsError: 1.26832e+11\n", + " Region: \"zone_1\"\tRelError: 7.27166e-05\tAbsError: 1.04088e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.23832e-05\tAbsError: 6.69033e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.33431e-07\tAbsError: 1.04021e-04\n", + " Region: \"zone_3\"\tRelError: 1.19576e-03\tAbsError: 1.26832e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36324e-05\tAbsError: 6.58471e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.51375e-05\tAbsError: 6.09849e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16666e-03\tAbsError: 6.96636e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.33461e-07\tAbsError: 1.04032e-04\n", + "Iteration: 61\n", + " Device: \"device\"\tRelError: 1.23617e-04\tAbsError: 3.19537e+10\n", + " Region: \"zone_1\"\tRelError: 4.99614e-05\tAbsError: 2.62099e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.98773e-05\tAbsError: 1.41086e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.40643e-08\tAbsError: 2.61958e-05\n", + " Region: \"zone_3\"\tRelError: 7.36556e-05\tAbsError: 3.19537e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.43655e-06\tAbsError: 1.73328e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.82027e-06\tAbsError: 1.46209e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.63147e-05\tAbsError: 1.44708e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.40719e-08\tAbsError: 2.61986e-05\n", + "Iteration: 62\n", + " Device: \"device\"\tRelError: 1.18049e-03\tAbsError: 1.07284e+11\n", + " Region: \"zone_1\"\tRelError: 4.61595e-04\tAbsError: 8.79045e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.61314e-04\tAbsError: 5.72932e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.81627e-07\tAbsError: 8.78472e-05\n", + " Region: \"zone_3\"\tRelError: 7.18898e-04\tAbsError: 1.07284e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.15150e-05\tAbsError: 5.64596e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.27872e-05\tAbsError: 5.08246e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.94314e-04\tAbsError: 5.95184e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.81653e-07\tAbsError: 8.78569e-05\n", + "Iteration: 63\n", + " Device: \"device\"\tRelError: 1.18940e-03\tAbsError: 1.62833e+11\n", + " Region: \"zone_1\"\tRelError: 3.61445e-04\tAbsError: 1.33475e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.61018e-04\tAbsError: 8.39250e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.27704e-07\tAbsError: 1.33391e-04\n", + " Region: \"zone_3\"\tRelError: 8.27950e-04\tAbsError: 1.62833e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74881e-05\tAbsError: 8.70658e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.94228e-05\tAbsError: 7.57670e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.90611e-04\tAbsError: 8.72778e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.27743e-07\tAbsError: 1.33406e-04\n", + "Iteration: 62\n", + " Device: \"device\"\tRelError: 1.91770e-03\tAbsError: 2.08670e+11\n", + " Region: \"zone_1\"\tRelError: 1.15892e-03\tAbsError: 1.71249e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15837e-03\tAbsError: 1.00436e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.48916e-07\tAbsError: 1.71148e-04\n", + " Region: \"zone_3\"\tRelError: 7.58778e-04\tAbsError: 2.08670e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.24430e-05\tAbsError: 1.12680e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.49331e-05\tAbsError: 9.59896e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.10853e-04\tAbsError: 1.03533e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.48966e-07\tAbsError: 1.71167e-04\n", + "Iteration: 63\n", + " Device: \"device\"\tRelError: 1.12086e-03\tAbsError: 1.11966e+11\n", + " Region: \"zone_1\"\tRelError: 6.41893e-05\tAbsError: 9.18874e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.38950e-05\tAbsError: 5.90614e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94349e-07\tAbsError: 9.18283e-05\n", + " Region: \"zone_3\"\tRelError: 1.05667e-03\tAbsError: 1.11966e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.20346e-05\tAbsError: 5.81290e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.33633e-05\tAbsError: 5.38367e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03097e-03\tAbsError: 6.14982e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94375e-07\tAbsError: 9.18384e-05\n", + "Iteration: 62\n", + " Device: \"device\"\tRelError: 1.08168e-04\tAbsError: 2.79606e+10\n", + " Region: \"zone_1\"\tRelError: 4.37198e-05\tAbsError: 2.29345e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.36463e-05\tAbsError: 1.23455e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.35591e-08\tAbsError: 2.29222e-05\n", + " Region: \"zone_3\"\tRelError: 6.44477e-05\tAbsError: 2.79606e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.00709e-06\tAbsError: 1.51668e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.34285e-06\tAbsError: 1.27938e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.80242e-05\tAbsError: 1.26625e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.35658e-08\tAbsError: 2.29247e-05\n", + "Iteration: 63\n", + " Device: \"device\"\tRelError: 1.04222e-03\tAbsError: 9.46682e+10\n", + " Region: \"zone_1\"\tRelError: 4.07480e-04\tAbsError: 7.75674e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.07232e-04\tAbsError: 5.05559e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.48509e-07\tAbsError: 7.75169e-05\n", + " Region: \"zone_3\"\tRelError: 6.34736e-04\tAbsError: 9.46682e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01610e-05\tAbsError: 4.98203e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.12836e-05\tAbsError: 4.48479e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.13043e-04\tAbsError: 5.25194e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.48532e-07\tAbsError: 7.75254e-05\n", + "Iteration: 64\n", + " Device: \"device\"\tRelError: 1.04811e-03\tAbsError: 1.43543e+11\n", + " Region: \"zone_1\"\tRelError: 3.18728e-04\tAbsError: 1.17663e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.18351e-04\tAbsError: 7.39829e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77037e-07\tAbsError: 1.17589e-04\n", + " Region: \"zone_3\"\tRelError: 7.29382e-04\tAbsError: 1.43543e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54162e-05\tAbsError: 7.67516e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.71216e-05\tAbsError: 6.67913e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.96467e-04\tAbsError: 7.69385e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.77071e-07\tAbsError: 1.17602e-04\n", + "Iteration: 63\n", + " Device: \"device\"\tRelError: 1.68511e-03\tAbsError: 1.83517e+11\n", + " Region: \"zone_1\"\tRelError: 1.01819e-03\tAbsError: 1.50606e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01771e-03\tAbsError: 8.83294e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.82749e-07\tAbsError: 1.50518e-04\n", + " Region: \"zone_3\"\tRelError: 6.66923e-04\tAbsError: 1.83517e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97374e-05\tAbsError: 9.90976e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.19273e-05\tAbsError: 8.44189e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.24776e-04\tAbsError: 9.10526e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.82793e-07\tAbsError: 1.50535e-04\n", + "Iteration: 64\n", + " Device: \"device\"\tRelError: 9.88654e-04\tAbsError: 9.88421e+10\n", + " Region: \"zone_1\"\tRelError: 5.66687e-05\tAbsError: 8.11171e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.64089e-05\tAbsError: 5.21387e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.59847e-07\tAbsError: 8.10650e-05\n", + " Region: \"zone_3\"\tRelError: 9.31985e-04\tAbsError: 9.88421e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06239e-05\tAbsError: 5.13156e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.17969e-05\tAbsError: 4.75264e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.09304e-04\tAbsError: 5.42899e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.59871e-07\tAbsError: 8.10739e-05\n", + "Iteration: 63\n", + " Device: \"device\"\tRelError: 9.46514e-05\tAbsError: 2.44665e+10\n", + " Region: \"zone_1\"\tRelError: 3.82549e-05\tAbsError: 2.00685e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.81905e-05\tAbsError: 1.08027e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.43667e-08\tAbsError: 2.00577e-05\n", + " Region: \"zone_3\"\tRelError: 5.63965e-05\tAbsError: 2.44665e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.63131e-06\tAbsError: 1.32715e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.92512e-06\tAbsError: 1.11950e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.07757e-05\tAbsError: 1.10801e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.43725e-08\tAbsError: 2.00599e-05\n", + "Iteration: 64\n", + " Device: \"device\"\tRelError: 9.19236e-04\tAbsError: 8.35358e+10\n", + " Region: \"zone_1\"\tRelError: 3.59434e-04\tAbsError: 6.84459e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59215e-04\tAbsError: 4.46108e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19286e-07\tAbsError: 6.84013e-05\n", + " Region: \"zone_3\"\tRelError: 5.59802e-04\tAbsError: 8.35358e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.96608e-06\tAbsError: 4.39617e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.95665e-06\tAbsError: 3.95741e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.40660e-04\tAbsError: 4.63434e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19306e-07\tAbsError: 6.84089e-05\n", + "Iteration: 65\n", + " Device: \"device\"\tRelError: 9.24246e-04\tAbsError: 1.26538e+11\n", + " Region: \"zone_1\"\tRelError: 2.80892e-04\tAbsError: 1.03724e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80560e-04\tAbsError: 6.52186e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32371e-07\tAbsError: 1.03659e-04\n", + " Region: \"zone_3\"\tRelError: 6.43354e-04\tAbsError: 1.26538e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.35901e-05\tAbsError: 6.76594e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.50935e-05\tAbsError: 5.88790e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.14338e-04\tAbsError: 6.78241e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32402e-07\tAbsError: 1.03671e-04\n", + "Iteration: 64\n", + " Device: \"device\"\tRelError: 1.48309e-03\tAbsError: 1.61395e+11\n", + " Region: \"zone_1\"\tRelError: 8.96257e-04\tAbsError: 1.32452e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.95833e-04\tAbsError: 7.76821e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.24558e-07\tAbsError: 1.32374e-04\n", + " Region: \"zone_3\"\tRelError: 5.86834e-04\tAbsError: 1.61395e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.73585e-05\tAbsError: 8.71524e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.92844e-05\tAbsError: 7.42430e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.49767e-04\tAbsError: 8.00771e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.24597e-07\tAbsError: 1.32389e-04\n", + "Iteration: 65\n", + " Device: \"device\"\tRelError: 8.73415e-04\tAbsError: 8.72567e+10\n", + " Region: \"zone_1\"\tRelError: 5.00240e-05\tAbsError: 7.16092e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.97946e-05\tAbsError: 4.60275e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29390e-07\tAbsError: 7.15632e-05\n", + " Region: \"zone_3\"\tRelError: 8.23391e-04\tAbsError: 8.72567e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.37873e-06\tAbsError: 4.53009e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04142e-05\tAbsError: 4.19558e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.03368e-04\tAbsError: 4.79265e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29411e-07\tAbsError: 7.15711e-05\n", + "Iteration: 65\n", + " Device: \"device\"\tRelError: 8.11468e-04\tAbsError: 7.37125e+10\n", + " Region: \"zone_1\"\tRelError: 3.17267e-04\tAbsError: 6.03971e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.17074e-04\tAbsError: 3.93649e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93499e-07\tAbsError: 6.03577e-05\n", + " Region: \"zone_3\"\tRelError: 4.94200e-04\tAbsError: 7.37125e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.91177e-06\tAbsError: 3.87921e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.78587e-06\tAbsError: 3.49204e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.77309e-04\tAbsError: 4.08937e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.93517e-07\tAbsError: 6.03644e-05\n", + "Iteration: 66\n", + " Device: \"device\"\tRelError: 8.14524e-04\tAbsError: 1.11548e+11\n", + " Region: \"zone_1\"\tRelError: 2.47677e-04\tAbsError: 9.14369e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.47384e-04\tAbsError: 5.74926e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.92997e-07\tAbsError: 9.13794e-05\n", + " Region: \"zone_3\"\tRelError: 5.66846e-04\tAbsError: 1.11548e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19800e-05\tAbsError: 5.96441e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.33053e-05\tAbsError: 5.19039e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.41268e-04\tAbsError: 5.97893e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.93024e-07\tAbsError: 9.13894e-05\n", + "Iteration: 65\n", + " Device: \"device\"\tRelError: 1.30346e-03\tAbsError: 1.41941e+11\n", + " Region: \"zone_1\"\tRelError: 7.87601e-04\tAbsError: 1.16486e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.87228e-04\tAbsError: 6.83182e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.73381e-07\tAbsError: 1.16418e-04\n", + " Region: \"zone_3\"\tRelError: 5.15862e-04\tAbsError: 1.41941e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52659e-05\tAbsError: 7.66469e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.69596e-05\tAbsError: 6.52937e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.83263e-04\tAbsError: 7.04245e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.73415e-07\tAbsError: 1.16431e-04\n", + "Iteration: 66\n", + " Device: \"device\"\tRelError: 7.70539e-04\tAbsError: 7.70291e+10\n", + " Region: \"zone_1\"\tRelError: 4.41626e-05\tAbsError: 6.32158e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.39601e-05\tAbsError: 4.06325e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.02503e-07\tAbsError: 6.31751e-05\n", + " Region: \"zone_3\"\tRelError: 7.26377e-04\tAbsError: 7.70291e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.27938e-06\tAbsError: 3.99911e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.19349e-06\tAbsError: 3.70381e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.08701e-04\tAbsError: 4.23089e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.02521e-07\tAbsError: 6.31821e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:35:48\u001b[0m.\u001b[1;36m228\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 66\n", + " Device: \"device\"\tRelError: 7.15788e-04\tAbsError: 6.50443e+10\n", + " Region: \"zone_1\"\tRelError: 2.79880e-04\tAbsError: 5.32948e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.79709e-04\tAbsError: 3.47358e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70745e-07\tAbsError: 5.32600e-05\n", + " Region: \"zone_3\"\tRelError: 4.35908e-04\tAbsError: 6.50443e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.98135e-06\tAbsError: 3.42303e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.75266e-06\tAbsError: 3.08140e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.21003e-04\tAbsError: 3.60849e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70760e-07\tAbsError: 5.32659e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:35:48\u001b[0m.\u001b[1;36m251\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.75 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:35:48\u001b[0m.\u001b[1;36m265\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.75 V. Current applied bias: 0.75\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31686\n", + "Iteration: 67\n", + " Device: \"device\"\tRelError: 7.18213e-04\tAbsError: 9.83336e+10\n", + " Region: \"zone_1\"\tRelError: 2.18289e-04\tAbsError: 8.06049e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18031e-04\tAbsError: 5.06818e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58288e-07\tAbsError: 8.05542e-05\n", + " Region: \"zone_3\"\tRelError: 4.99923e-04\tAbsError: 9.83336e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05609e-05\tAbsError: 5.25785e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.17292e-05\tAbsError: 4.57552e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.77375e-04\tAbsError: 5.27065e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.58311e-07\tAbsError: 8.05631e-05\n", + "Iteration: 66\n", + " Device: \"device\"\tRelError: 1.14700e-03\tAbsError: 1.24831e+11\n", + " Region: \"zone_1\"\tRelError: 6.93143e-04\tAbsError: 1.02445e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.92814e-04\tAbsError: 6.00831e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.28374e-07\tAbsError: 1.02385e-04\n", + " Region: \"zone_3\"\tRelError: 4.53861e-04\tAbsError: 1.24831e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34259e-05\tAbsError: 6.74078e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.49155e-05\tAbsError: 5.74231e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.25191e-04\tAbsError: 6.19354e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.28403e-07\tAbsError: 1.02396e-04\n", + "Iteration: 67\n", + " Device: \"device\"\tRelError: 6.80613e-04\tAbsError: 6.80004e+10\n", + " Region: \"zone_1\"\tRelError: 3.89847e-05\tAbsError: 5.58062e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.88059e-05\tAbsError: 3.58699e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78767e-07\tAbsError: 5.57703e-05\n", + " Region: \"zone_3\"\tRelError: 6.41629e-04\tAbsError: 6.80004e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.30898e-06\tAbsError: 3.53036e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.11595e-06\tAbsError: 3.26968e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.26025e-04\tAbsError: 3.73498e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78784e-07\tAbsError: 5.57764e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.10875e+01\tAbsError: 2.12872e+16\n", + " Region: \"zone_1\"\tRelError: 9.55110e+00\tAbsError: 2.78645e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.55110e+00\tAbsError: 2.78470e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.63230e-08\tAbsError: 1.75511e-05\n", + " Region: \"zone_3\"\tRelError: 1.53636e+00\tAbsError: 2.12872e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.52451e-01\tAbsError: 1.06742e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.51583e-01\tAbsError: 1.06129e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32325e-01\tAbsError: 2.78470e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.63281e-08\tAbsError: 1.75531e-05\n", + "Iteration: 67\n", + " Device: \"device\"\tRelError: 6.31815e-04\tAbsError: 5.73955e+10\n", + " Region: \"zone_1\"\tRelError: 2.47029e-04\tAbsError: 4.70276e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.46878e-04\tAbsError: 3.06511e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50666e-07\tAbsError: 4.69970e-05\n", + " Region: \"zone_3\"\tRelError: 3.84786e-04\tAbsError: 5.73955e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.16042e-06\tAbsError: 3.02050e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.84103e-06\tAbsError: 2.71904e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.71634e-04\tAbsError: 3.18415e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50680e-07\tAbsError: 4.70022e-05\n", + "Iteration: 68\n", + " Device: \"device\"\tRelError: 6.32990e-04\tAbsError: 8.66847e+10\n", + " Region: \"zone_1\"\tRelError: 1.92467e-04\tAbsError: 7.10561e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92239e-04\tAbsError: 4.46778e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27690e-07\tAbsError: 7.10114e-05\n", + " Region: \"zone_3\"\tRelError: 4.40523e-04\tAbsError: 8.66847e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.30977e-06\tAbsError: 4.63498e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03397e-05\tAbsError: 4.03348e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.20646e-04\tAbsError: 4.64627e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27711e-07\tAbsError: 7.10193e-05\n", + "Iteration: 67\n", + " Device: \"device\"\tRelError: 1.00823e-03\tAbsError: 1.09784e+11\n", + " Region: \"zone_1\"\tRelError: 6.09219e-04\tAbsError: 9.00960e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.08931e-04\tAbsError: 5.28406e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.88791e-07\tAbsError: 9.00432e-05\n", + " Region: \"zone_3\"\tRelError: 3.99012e-04\tAbsError: 1.09784e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18074e-05\tAbsError: 5.92824e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.31174e-05\tAbsError: 5.05013e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.73798e-04\tAbsError: 5.44697e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.88817e-07\tAbsError: 9.00531e-05\n", + "Iteration: 68\n", + " Device: \"device\"\tRelError: 6.00533e-04\tAbsError: 6.00300e+10\n", + " Region: \"zone_1\"\tRelError: 3.44164e-05\tAbsError: 4.92650e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.42586e-05\tAbsError: 3.16655e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57814e-07\tAbsError: 4.92334e-05\n", + " Region: \"zone_3\"\tRelError: 5.66117e-04\tAbsError: 6.00300e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.45225e-06\tAbsError: 3.11656e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.16463e-06\tAbsError: 2.88643e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.52342e-04\tAbsError: 3.29720e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57828e-07\tAbsError: 4.92388e-05\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.34524e+00\tAbsError: 1.24380e+16\n", + " Region: \"zone_1\"\tRelError: 2.74289e-01\tAbsError: 5.60790e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74179e-01\tAbsError: 2.21574e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10249e-04\tAbsError: 3.39216e-02\n", + " Region: \"zone_3\"\tRelError: 1.07096e+00\tAbsError: 1.24380e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43535e-01\tAbsError: 6.08525e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.88199e-01\tAbsError: 6.35275e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39111e-01\tAbsError: 2.21615e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10249e-04\tAbsError: 3.39216e-02\n", + "Iteration: 68\n", + " Device: \"device\"\tRelError: 5.57362e-04\tAbsError: 5.06461e+10\n", + " Region: \"zone_1\"\tRelError: 2.17932e-04\tAbsError: 4.14974e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17799e-04\tAbsError: 2.70467e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32949e-07\tAbsError: 4.14704e-05\n", + " Region: \"zone_3\"\tRelError: 3.39430e-04\tAbsError: 5.06461e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.43596e-06\tAbsError: 2.66531e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.03653e-06\tAbsError: 2.39930e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.27824e-04\tAbsError: 2.80971e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32961e-07\tAbsError: 4.14750e-05\n", + "Iteration: 69\n", + " Device: \"device\"\tRelError: 5.58112e-04\tAbsError: 7.64157e+10\n", + " Region: \"zone_1\"\tRelError: 1.69638e-04\tAbsError: 6.26385e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69437e-04\tAbsError: 3.93851e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00717e-07\tAbsError: 6.25991e-05\n", + " Region: \"zone_3\"\tRelError: 3.88475e-04\tAbsError: 7.64157e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.20695e-06\tAbsError: 4.08591e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.11485e-06\tAbsError: 3.55566e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.70952e-04\tAbsError: 4.09585e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.00735e-07\tAbsError: 6.26060e-05\n", + "Iteration: 68\n", + " Device: \"device\"\tRelError: 8.87094e-04\tAbsError: 9.65502e+10\n", + " Region: \"zone_1\"\tRelError: 5.36071e-04\tAbsError: 7.92357e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.35817e-04\tAbsError: 4.64712e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.53980e-07\tAbsError: 7.91893e-05\n", + " Region: \"zone_3\"\tRelError: 3.51023e-04\tAbsError: 9.65502e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03842e-05\tAbsError: 5.21364e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.15363e-05\tAbsError: 4.44138e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.28848e-04\tAbsError: 4.79038e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54003e-07\tAbsError: 7.91980e-05\n", + "Iteration: 69\n", + " Device: \"device\"\tRelError: 5.30381e-04\tAbsError: 5.29938e+10\n", + " Region: \"zone_1\"\tRelError: 3.03815e-05\tAbsError: 4.34906e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.02422e-05\tAbsError: 2.79540e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39316e-07\tAbsError: 4.34626e-05\n", + " Region: \"zone_3\"\tRelError: 4.99999e-04\tAbsError: 5.29938e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.69600e-06\tAbsError: 2.75127e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.32488e-06\tAbsError: 2.54811e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.87839e-04\tAbsError: 2.91073e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39329e-07\tAbsError: 4.34674e-05\n", + "Iteration: 69\n", + " Device: \"device\"\tRelError: 4.91940e-04\tAbsError: 4.46904e+10\n", + " Region: \"zone_1\"\tRelError: 1.92342e-04\tAbsError: 3.66176e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92224e-04\tAbsError: 2.38662e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17315e-07\tAbsError: 3.65937e-05\n", + " Region: \"zone_3\"\tRelError: 2.99599e-04\tAbsError: 4.46904e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.79675e-06\tAbsError: 2.35189e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.32669e-06\tAbsError: 2.11716e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.89358e-04\tAbsError: 2.47931e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17326e-07\tAbsError: 3.65978e-05\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 7.18839e-01\tAbsError: 4.05400e+15\n", + " Region: \"zone_1\"\tRelError: 3.25524e-01\tAbsError: 4.10579e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.24191e-01\tAbsError: 2.15432e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33294e-03\tAbsError: 4.08425e-01\n", + " Region: \"zone_3\"\tRelError: 3.93315e-01\tAbsError: 4.05400e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.96509e-01\tAbsError: 2.03070e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.18013e-01\tAbsError: 2.02330e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 7.74599e-02\tAbsError: 2.19378e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33320e-03\tAbsError: 4.08489e-01\n", + "Iteration: 70\n", + " Device: \"device\"\tRelError: 4.91912e-04\tAbsError: 6.73632e+10\n", + " Region: \"zone_1\"\tRelError: 1.49564e-04\tAbsError: 5.52181e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49387e-04\tAbsError: 3.47194e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76939e-07\tAbsError: 5.51834e-05\n", + " Region: \"zone_3\"\tRelError: 3.42348e-04\tAbsError: 6.73632e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.23469e-06\tAbsError: 3.60187e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.03502e-06\tAbsError: 3.13444e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.26901e-04\tAbsError: 3.61064e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76955e-07\tAbsError: 5.51895e-05\n", + "Iteration: 69\n", + " Device: \"device\"\tRelError: 7.79857e-04\tAbsError: 8.49119e+10\n", + " Region: \"zone_1\"\tRelError: 4.71230e-04\tAbsError: 6.96846e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.71007e-04\tAbsError: 4.08695e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23365e-07\tAbsError: 6.96437e-05\n", + " Region: \"zone_3\"\tRelError: 3.08627e-04\tAbsError: 8.49119e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.13241e-06\tAbsError: 4.58519e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.01456e-05\tAbsError: 3.90601e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.89125e-04\tAbsError: 4.21295e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.23385e-07\tAbsError: 6.96514e-05\n", + "Iteration: 70\n", + " Device: \"device\"\tRelError: 4.68029e-04\tAbsError: 4.67823e+10\n", + " Region: \"zone_1\"\tRelError: 2.68211e-05\tAbsError: 3.83930e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66981e-05\tAbsError: 2.46774e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22987e-07\tAbsError: 3.83683e-05\n", + " Region: \"zone_3\"\tRelError: 4.41208e-04\tAbsError: 4.67823e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.02834e-06\tAbsError: 2.42879e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.58351e-06\tAbsError: 2.24944e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.30473e-04\tAbsError: 2.56956e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22998e-07\tAbsError: 3.83725e-05\n", + "Iteration: 70\n", + " Device: \"device\"\tRelError: 4.33997e-04\tAbsError: 3.94351e+10\n", + " Region: \"zone_1\"\tRelError: 1.69695e-04\tAbsError: 3.23116e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69591e-04\tAbsError: 2.10596e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03519e-07\tAbsError: 3.22905e-05\n", + " Region: \"zone_3\"\tRelError: 2.64302e-04\tAbsError: 3.94351e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.23266e-06\tAbsError: 2.07532e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.70029e-06\tAbsError: 1.86819e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.55266e-04\tAbsError: 2.18776e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03529e-07\tAbsError: 3.22941e-05\n", + "Iteration: 71\n", + " Device: \"device\"\tRelError: 4.33704e-04\tAbsError: 5.93830e+10\n", + " Region: \"zone_1\"\tRelError: 1.31829e-04\tAbsError: 4.86768e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31673e-04\tAbsError: 3.06064e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55978e-07\tAbsError: 4.86462e-05\n", + " Region: \"zone_3\"\tRelError: 3.01875e-04\tAbsError: 5.93830e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.37767e-06\tAbsError: 3.17518e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.08320e-06\tAbsError: 2.76312e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88258e-04\tAbsError: 3.18291e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55992e-07\tAbsError: 4.86515e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.22827e+00\tAbsError: 5.53831e+14\n", + " Region: \"zone_1\"\tRelError: 7.68745e-01\tAbsError: 1.24567e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.68343e-01\tAbsError: 1.50085e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.01706e-04\tAbsError: 1.24417e-01\n", + " Region: \"zone_3\"\tRelError: 4.59525e-01\tAbsError: 5.53831e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.96677e-02\tAbsError: 2.78727e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.88881e-02\tAbsError: 2.75104e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.20567e-01\tAbsError: 1.59532e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.01948e-04\tAbsError: 1.24431e-01\n", + "Iteration: 70\n", + " Device: \"device\"\tRelError: 6.86088e-04\tAbsError: 7.46766e+10\n", + " Region: \"zone_1\"\tRelError: 4.14599e-04\tAbsError: 6.12847e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.14403e-04\tAbsError: 3.59430e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.96440e-07\tAbsError: 6.12488e-05\n", + " Region: \"zone_3\"\tRelError: 2.71489e-04\tAbsError: 7.46766e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.03163e-06\tAbsError: 4.03248e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.92274e-06\tAbsError: 3.43517e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54338e-04\tAbsError: 3.70511e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.96458e-07\tAbsError: 6.12555e-05\n", + "Iteration: 71\n", + " Device: \"device\"\tRelError: 4.13315e-04\tAbsError: 4.12989e+10\n", + " Region: \"zone_1\"\tRelError: 2.36768e-05\tAbsError: 3.38929e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.35682e-05\tAbsError: 2.17849e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08571e-07\tAbsError: 3.38711e-05\n", + " Region: \"zone_3\"\tRelError: 3.89638e-04\tAbsError: 4.12989e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.43898e-06\tAbsError: 2.14410e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.92907e-06\tAbsError: 1.98578e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.80161e-04\tAbsError: 2.26838e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08581e-07\tAbsError: 3.38748e-05\n", + "Iteration: 71\n", + " Device: \"device\"\tRelError: 3.83035e-04\tAbsError: 3.47978e+10\n", + " Region: \"zone_1\"\tRelError: 1.49762e-04\tAbsError: 2.85119e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49671e-04\tAbsError: 1.85831e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.13461e-08\tAbsError: 2.84933e-05\n", + " Region: \"zone_3\"\tRelError: 2.33273e-04\tAbsError: 3.47978e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.73494e-06\tAbsError: 1.83127e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.14758e-06\tAbsError: 1.64850e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25299e-04\tAbsError: 1.93049e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.13544e-08\tAbsError: 2.84965e-05\n", + "Iteration: 72\n", + " Device: \"device\"\tRelError: 3.82274e-04\tAbsError: 5.23483e+10\n", + " Region: \"zone_1\"\tRelError: 1.16225e-04\tAbsError: 4.29103e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16088e-04\tAbsError: 2.69806e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37501e-07\tAbsError: 4.28833e-05\n", + " Region: \"zone_3\"\tRelError: 2.66049e-04\tAbsError: 5.23483e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.62212e-06\tAbsError: 2.79904e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.24407e-06\tAbsError: 2.43579e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54045e-04\tAbsError: 2.80585e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37513e-07\tAbsError: 4.28881e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 4.78172e-01\tAbsError: 1.43036e+14\n", + " Region: \"zone_1\"\tRelError: 2.31843e-01\tAbsError: 1.96802e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31211e-01\tAbsError: 6.05305e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.32198e-04\tAbsError: 1.96742e-01\n", + " Region: \"zone_3\"\tRelError: 2.46329e-01\tAbsError: 1.43036e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.77225e-02\tAbsError: 7.37599e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.94217e-02\tAbsError: 6.92762e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88553e-01\tAbsError: 1.14462e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.32259e-04\tAbsError: 1.96765e-01\n", + "Iteration: 71\n", + " Device: \"device\"\tRelError: 6.03204e-04\tAbsError: 6.56750e+10\n", + " Region: \"zone_1\"\tRelError: 3.64490e-04\tAbsError: 5.38974e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.64317e-04\tAbsError: 3.16104e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72761e-07\tAbsError: 5.38658e-05\n", + " Region: \"zone_3\"\tRelError: 2.38713e-04\tAbsError: 6.56750e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.06345e-06\tAbsError: 3.54640e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.84714e-06\tAbsError: 3.02110e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23630e-04\tAbsError: 3.25850e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72777e-07\tAbsError: 5.38717e-05\n", + "Iteration: 72\n", + " Device: \"device\"\tRelError: 3.64757e-04\tAbsError: 3.64581e+10\n", + " Region: \"zone_1\"\tRelError: 2.09020e-05\tAbsError: 2.99202e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08062e-05\tAbsError: 1.92315e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.58453e-08\tAbsError: 2.99010e-05\n", + " Region: \"zone_3\"\tRelError: 3.43855e-04\tAbsError: 3.64581e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.91866e-06\tAbsError: 1.89279e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.35131e-06\tAbsError: 1.75303e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35489e-04\tAbsError: 2.00250e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.58541e-08\tAbsError: 2.99043e-05\n", + "Iteration: 72\n", + " Device: \"device\"\tRelError: 3.37935e-04\tAbsError: 3.07057e+10\n", + " Region: \"zone_1\"\tRelError: 1.32133e-04\tAbsError: 2.51591e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32053e-04\tAbsError: 1.63979e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.06043e-08\tAbsError: 2.51427e-05\n", + " Region: \"zone_3\"\tRelError: 2.05802e-04\tAbsError: 3.07057e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.29572e-06\tAbsError: 1.61593e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.65984e-06\tAbsError: 1.45465e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.98766e-04\tAbsError: 1.70347e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.06117e-08\tAbsError: 2.51455e-05\n", + "Iteration: 73\n", + " Device: \"device\"\tRelError: 3.37028e-04\tAbsError: 4.61469e+10\n", + " Region: \"zone_1\"\tRelError: 1.02446e-04\tAbsError: 3.78270e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02325e-04\tAbsError: 2.37844e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21212e-07\tAbsError: 3.78032e-05\n", + " Region: \"zone_3\"\tRelError: 2.34582e-04\tAbsError: 4.61469e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.95612e-06\tAbsError: 2.46745e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.50439e-06\tAbsError: 2.14724e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24000e-04\tAbsError: 2.47346e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21223e-07\tAbsError: 3.78074e-05\n", + "Iteration: 73\n", + " Device: \"device\"\tRelError: 3.22091e-04\tAbsError: 3.21848e+10\n", + " Region: \"zone_1\"\tRelError: 1.84517e-05\tAbsError: 2.64132e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83671e-05\tAbsError: 1.69773e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.46112e-08\tAbsError: 2.63962e-05\n", + " Region: \"zone_3\"\tRelError: 3.03639e-04\tAbsError: 3.21848e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.45936e-06\tAbsError: 1.67093e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.84130e-06\tAbsError: 1.54755e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96254e-04\tAbsError: 1.76778e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.46188e-08\tAbsError: 2.63992e-05\n", + "Iteration: 72\n", + " Device: \"device\"\tRelError: 5.30634e-04\tAbsError: 5.77585e+10\n", + " Region: \"zone_1\"\tRelError: 3.20657e-04\tAbsError: 4.74006e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.20505e-04\tAbsError: 2.78001e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51936e-07\tAbsError: 4.73728e-05\n", + " Region: \"zone_3\"\tRelError: 2.09977e-04\tAbsError: 5.77585e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.21205e-06\tAbsError: 3.11892e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.90127e-06\tAbsError: 2.65693e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96712e-04\tAbsError: 2.86571e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51950e-07\tAbsError: 4.73780e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.78397e-01\tAbsError: 2.21960e+14\n", + " Region: \"zone_1\"\tRelError: 5.20206e-01\tAbsError: 1.32938e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.19779e-01\tAbsError: 8.31761e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.26724e-04\tAbsError: 1.32855e-01\n", + " Region: \"zone_3\"\tRelError: 2.58192e-01\tAbsError: 2.21960e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.79912e-02\tAbsError: 1.14217e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.94495e-02\tAbsError: 1.07743e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20324e-01\tAbsError: 8.58795e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.26763e-04\tAbsError: 1.32869e-01\n", + "Iteration: 73\n", + " Device: \"device\"\tRelError: 2.98240e-04\tAbsError: 2.70950e+10\n", + " Region: \"zone_1\"\tRelError: 1.16609e-04\tAbsError: 2.22005e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16538e-04\tAbsError: 1.44696e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.11257e-08\tAbsError: 2.21861e-05\n", + " Region: \"zone_3\"\tRelError: 1.81631e-04\tAbsError: 2.70950e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.90817e-06\tAbsError: 1.42590e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.22947e-06\tAbsError: 1.28359e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75423e-04\tAbsError: 1.50316e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.11322e-08\tAbsError: 2.21885e-05\n", + "Iteration: 74\n", + " Device: \"device\"\tRelError: 2.97072e-04\tAbsError: 4.06802e+10\n", + " Region: \"zone_1\"\tRelError: 9.03182e-05\tAbsError: 3.33459e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.02114e-05\tAbsError: 2.09668e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06852e-07\tAbsError: 3.33249e-05\n", + " Region: \"zone_3\"\tRelError: 2.06753e-04\tAbsError: 4.06802e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.36898e-06\tAbsError: 2.17515e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.85230e-06\tAbsError: 1.89287e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97425e-04\tAbsError: 2.18044e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06862e-07\tAbsError: 3.33286e-05\n", + "Iteration: 74\n", + " Device: \"device\"\tRelError: 2.84270e-04\tAbsError: 2.84124e+10\n", + " Region: \"zone_1\"\tRelError: 1.62892e-05\tAbsError: 2.33173e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.62146e-05\tAbsError: 1.49874e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.46937e-08\tAbsError: 2.33023e-05\n", + " Region: \"zone_3\"\tRelError: 2.67981e-04\tAbsError: 2.84124e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.05387e-06\tAbsError: 1.47508e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.39105e-06\tAbsError: 1.36616e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.61461e-04\tAbsError: 1.56057e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.47005e-08\tAbsError: 2.33049e-05\n", + "Iteration: 73\n", + " Device: \"device\"\tRelError: 4.66562e-04\tAbsError: 5.07962e+10\n", + " Region: \"zone_1\"\tRelError: 2.81925e-04\tAbsError: 4.16868e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.81791e-04\tAbsError: 2.44490e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33622e-07\tAbsError: 4.16624e-05\n", + " Region: \"zone_3\"\tRelError: 1.84637e-04\tAbsError: 5.07962e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.46322e-06\tAbsError: 2.74296e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.06936e-06\tAbsError: 2.33666e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72970e-04\tAbsError: 2.52028e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33634e-07\tAbsError: 4.16670e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.79324e-01\tAbsError: 1.43251e+14\n", + " Region: \"zone_1\"\tRelError: 2.63701e-01\tAbsError: 1.34496e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.63269e-01\tAbsError: 5.69883e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.32001e-04\tAbsError: 1.34439e-01\n", + " Region: \"zone_3\"\tRelError: 2.15623e-01\tAbsError: 1.43251e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.79855e-02\tAbsError: 7.71431e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.98507e-02\tAbsError: 6.61079e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77355e-01\tAbsError: 7.49904e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.32041e-04\tAbsError: 1.34454e-01\n", + "Iteration: 74\n", + " Device: \"device\"\tRelError: 2.63134e-04\tAbsError: 2.39087e+10\n", + " Region: \"zone_1\"\tRelError: 1.02886e-04\tAbsError: 1.95899e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02823e-04\tAbsError: 1.27680e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.27618e-08\tAbsError: 1.95771e-05\n", + " Region: \"zone_3\"\tRelError: 1.60249e-04\tAbsError: 2.39087e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.56618e-06\tAbsError: 1.25823e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.84970e-06\tAbsError: 1.13265e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54770e-04\tAbsError: 1.32639e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.27675e-08\tAbsError: 1.95793e-05\n", + "Iteration: 75\n", + " Device: \"device\"\tRelError: 2.61903e-04\tAbsError: 3.58610e+10\n", + " Region: \"zone_1\"\tRelError: 7.96124e-05\tAbsError: 2.93956e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.95183e-05\tAbsError: 1.84830e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.41943e-08\tAbsError: 2.93771e-05\n", + " Region: \"zone_3\"\tRelError: 1.82291e-04\tAbsError: 3.58610e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.85143e-06\tAbsError: 1.91747e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.27750e-06\tAbsError: 1.66863e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74068e-04\tAbsError: 1.92214e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.42029e-08\tAbsError: 2.93803e-05\n", + "Iteration: 75\n", + " Device: \"device\"\tRelError: 2.51003e-04\tAbsError: 2.50821e+10\n", + " Region: \"zone_1\"\tRelError: 1.43798e-05\tAbsError: 2.05842e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43138e-05\tAbsError: 1.32307e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.59388e-08\tAbsError: 2.05710e-05\n", + " Region: \"zone_3\"\tRelError: 2.36623e-04\tAbsError: 2.50821e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.69593e-06\tAbsError: 1.30218e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.99358e-06\tAbsError: 1.20603e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30868e-04\tAbsError: 1.37766e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.59447e-08\tAbsError: 2.05733e-05\n", + "Iteration: 74\n", + " Device: \"device\"\tRelError: 4.10406e-04\tAbsError: 4.46732e+10\n", + " Region: \"zone_1\"\tRelError: 2.48003e-04\tAbsError: 3.66619e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.47885e-04\tAbsError: 2.15019e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17515e-07\tAbsError: 3.66404e-05\n", + " Region: \"zone_3\"\tRelError: 1.62403e-04\tAbsError: 4.46732e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.80469e-06\tAbsError: 2.41232e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.33777e-06\tAbsError: 2.05500e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52144e-04\tAbsError: 2.21648e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17526e-07\tAbsError: 3.66444e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.35587e-01\tAbsError: 1.46710e+14\n", + " Region: \"zone_1\"\tRelError: 3.54922e-01\tAbsError: 1.08360e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.54575e-01\tAbsError: 5.66674e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47895e-04\tAbsError: 1.08303e-01\n", + " Region: \"zone_3\"\tRelError: 1.80665e-01\tAbsError: 1.46710e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42665e-02\tAbsError: 7.73811e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.57716e-02\tAbsError: 6.93287e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50279e-01\tAbsError: 6.01809e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.47927e-04\tAbsError: 1.08315e-01\n", + "Iteration: 75\n", + " Device: \"device\"\tRelError: 2.32218e-04\tAbsError: 2.10972e+10\n", + " Region: \"zone_1\"\tRelError: 9.07952e-05\tAbsError: 1.72862e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.07399e-05\tAbsError: 1.12666e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.53814e-08\tAbsError: 1.72750e-05\n", + " Region: \"zone_3\"\tRelError: 1.41423e-04\tAbsError: 2.10972e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.26442e-06\tAbsError: 1.11027e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.51459e-06\tAbsError: 9.99456e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36589e-04\tAbsError: 1.17042e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.53864e-08\tAbsError: 1.72769e-05\n", + "Iteration: 76\n", + " Device: \"device\"\tRelError: 2.30859e-04\tAbsError: 3.16128e+10\n", + " Region: \"zone_1\"\tRelError: 7.01862e-05\tAbsError: 2.59133e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.01031e-05\tAbsError: 1.62934e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.30357e-08\tAbsError: 2.58970e-05\n", + " Region: \"zone_3\"\tRelError: 1.60673e-04\tAbsError: 3.16128e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.39516e-06\tAbsError: 1.69032e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.77076e-06\tAbsError: 1.47096e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53424e-04\tAbsError: 1.69443e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.30432e-08\tAbsError: 2.58998e-05\n", + "Iteration: 76\n", + " Device: \"device\"\tRelError: 2.21541e-04\tAbsError: 2.21422e+10\n", + " Region: \"zone_1\"\tRelError: 1.26944e-05\tAbsError: 1.81715e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26362e-05\tAbsError: 1.16799e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.82100e-08\tAbsError: 1.81598e-05\n", + " Region: \"zone_3\"\tRelError: 2.08847e-04\tAbsError: 2.21422e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.37993e-06\tAbsError: 1.14955e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.64269e-06\tAbsError: 1.06467e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03766e-04\tAbsError: 1.21618e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.82152e-08\tAbsError: 1.81618e-05\n", + "Iteration: 75\n", + " Device: \"device\"\tRelError: 3.60870e-04\tAbsError: 3.92882e+10\n", + " Region: \"zone_1\"\tRelError: 2.18061e-04\tAbsError: 3.22426e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17958e-04\tAbsError: 1.89100e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03350e-07\tAbsError: 3.22237e-05\n", + " Region: \"zone_3\"\tRelError: 1.42809e-04\tAbsError: 3.92882e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.22552e-06\tAbsError: 2.12154e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.69433e-06\tAbsError: 1.80729e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33786e-04\tAbsError: 1.94930e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03359e-07\tAbsError: 3.22273e-05\n", + "Iteration: 76\n", + " Device: \"device\"\tRelError: 2.04890e-04\tAbsError: 1.86163e+10\n", + " Region: \"zone_1\"\tRelError: 8.01119e-05\tAbsError: 1.52535e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.00630e-05\tAbsError: 9.94171e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.88688e-08\tAbsError: 1.52435e-05\n", + " Region: \"zone_3\"\tRelError: 1.24778e-04\tAbsError: 1.86163e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.99813e-06\tAbsError: 9.79706e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.21889e-06\tAbsError: 8.81926e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20512e-04\tAbsError: 1.03278e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.88733e-08\tAbsError: 1.52452e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 3.90246e-01\tAbsError: 1.16931e+14\n", + " Region: \"zone_1\"\tRelError: 2.23852e-01\tAbsError: 9.80040e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23538e-01\tAbsError: 4.59609e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.14763e-04\tAbsError: 9.79580e-02\n", + " Region: \"zone_3\"\tRelError: 1.66393e-01\tAbsError: 1.16931e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.29515e-02\tAbsError: 6.24881e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.43993e-02\tAbsError: 5.44428e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38728e-01\tAbsError: 5.41669e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.14792e-04\tAbsError: 9.79687e-02\n", + "Iteration: 77\n", + " Device: \"device\"\tRelError: 2.03525e-04\tAbsError: 2.78678e+10\n", + " Region: \"zone_1\"\tRelError: 6.18678e-05\tAbsError: 2.28435e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.17946e-05\tAbsError: 1.43632e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.31989e-08\tAbsError: 2.28291e-05\n", + " Region: \"zone_3\"\tRelError: 1.41657e-04\tAbsError: 2.78678e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.99297e-06\tAbsError: 1.49008e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.32407e-06\tAbsError: 1.29670e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35267e-04\tAbsError: 1.49371e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.32056e-08\tAbsError: 2.28316e-05\n", + "Iteration: 77\n", + " Device: \"device\"\tRelError: 1.95606e-04\tAbsError: 1.95469e+10\n", + " Region: \"zone_1\"\tRelError: 1.12064e-05\tAbsError: 1.60416e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11550e-05\tAbsError: 1.03109e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.13871e-08\tAbsError: 1.60313e-05\n", + " Region: \"zone_3\"\tRelError: 1.84400e-04\tAbsError: 1.95469e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10098e-06\tAbsError: 1.01481e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.33294e-06\tAbsError: 9.39876e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79915e-04\tAbsError: 1.07363e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.13917e-08\tAbsError: 1.60331e-05\n", + "Iteration: 76\n", + " Device: \"device\"\tRelError: 3.17421e-04\tAbsError: 3.45524e+10\n", + " Region: \"zone_1\"\tRelError: 1.91812e-04\tAbsError: 2.83561e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91722e-04\tAbsError: 1.66306e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.08917e-08\tAbsError: 2.83394e-05\n", + " Region: \"zone_3\"\tRelError: 1.25609e-04\tAbsError: 3.45524e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.71618e-06\tAbsError: 1.86580e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.12849e-06\tAbsError: 1.58944e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17673e-04\tAbsError: 1.71433e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.08999e-08\tAbsError: 2.83425e-05\n", + "Iteration: 77\n", + " Device: \"device\"\tRelError: 1.80812e-04\tAbsError: 1.64271e+10\n", + " Region: \"zone_1\"\tRelError: 7.06962e-05\tAbsError: 1.34598e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.06530e-05\tAbsError: 8.77263e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31222e-08\tAbsError: 1.34510e-05\n", + " Region: \"zone_3\"\tRelError: 1.10116e-04\tAbsError: 1.64271e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.76317e-06\tAbsError: 8.64497e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.95796e-06\tAbsError: 7.78216e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06352e-04\tAbsError: 9.11334e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31261e-08\tAbsError: 1.34525e-05\n", + "Iteration: 78\n", + " Device: \"device\"\tRelError: 1.79403e-04\tAbsError: 2.45665e+10\n", + " Region: \"zone_1\"\tRelError: 5.45417e-05\tAbsError: 2.01374e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.44771e-05\tAbsError: 1.26617e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.45275e-08\tAbsError: 2.01247e-05\n", + " Region: \"zone_3\"\tRelError: 1.24861e-04\tAbsError: 2.45665e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.63840e-06\tAbsError: 1.31356e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.93028e-06\tAbsError: 1.14309e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19228e-04\tAbsError: 1.31675e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.45334e-08\tAbsError: 2.01269e-05\n", "Iteration: 9\n", - " Device: \"device\"\tRelError: 4.02759e-02\tAbsError: 9.07693e+12\n", - " Region: \"zone_1\"\tRelError: 3.24485e-02\tAbsError: 1.93405e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 3.24480e-02\tAbsError: 3.17337e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.55164e-07\tAbsError: 1.93088e-04\n", - " Region: \"zone_3\"\tRelError: 7.82740e-03\tAbsError: 9.07693e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.61255e-06\tAbsError: 4.52137e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.67188e-06\tAbsError: 4.55556e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 7.80956e-03\tAbsError: 3.20002e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.55372e-07\tAbsError: 1.93161e-04\n", + " Device: \"device\"\tRelError: 3.86590e-01\tAbsError: 1.06162e+14\n", + " Region: \"zone_1\"\tRelError: 2.52207e-01\tAbsError: 8.32255e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51940e-01\tAbsError: 4.13756e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.67220e-04\tAbsError: 8.31842e-02\n", + " Region: \"zone_3\"\tRelError: 1.34382e-01\tAbsError: 1.06162e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09029e-02\tAbsError: 5.63760e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.21126e-02\tAbsError: 4.97860e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11100e-01\tAbsError: 4.59759e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.67244e-04\tAbsError: 8.31933e-02\n", + "Iteration: 78\n", + " Device: \"device\"\tRelError: 1.72654e-04\tAbsError: 1.72557e+10\n", + " Region: \"zone_1\"\tRelError: 9.89295e-06\tAbsError: 1.41613e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.84759e-06\tAbsError: 9.10232e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.53639e-08\tAbsError: 1.41522e-05\n", + " Region: \"zone_3\"\tRelError: 1.62761e-04\tAbsError: 1.72557e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.85472e-06\tAbsError: 8.95862e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.05949e-06\tAbsError: 8.29712e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58801e-04\tAbsError: 9.47787e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.53680e-08\tAbsError: 1.41538e-05\n", + "Iteration: 77\n", + " Device: \"device\"\tRelError: 2.79120e-04\tAbsError: 3.03874e+10\n", + " Region: \"zone_1\"\tRelError: 1.68663e-04\tAbsError: 2.49380e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68583e-04\tAbsError: 1.46259e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.99355e-08\tAbsError: 2.49234e-05\n", + " Region: \"zone_3\"\tRelError: 1.10457e-04\tAbsError: 3.03874e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.26822e-06\tAbsError: 1.64090e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.63083e-06\tAbsError: 1.39784e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03478e-04\tAbsError: 1.50768e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.99427e-08\tAbsError: 2.49261e-05\n", + "Iteration: 79\n", + " Device: \"device\"\tRelError: 1.58159e-04\tAbsError: 2.16562e+10\n", + " Region: \"zone_1\"\tRelError: 4.80781e-05\tAbsError: 1.77518e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.80213e-05\tAbsError: 1.11618e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.68833e-08\tAbsError: 1.77406e-05\n", + " Region: \"zone_3\"\tRelError: 1.10081e-04\tAbsError: 2.16562e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.32585e-06\tAbsError: 1.15795e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.58315e-06\tAbsError: 1.00768e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05115e-04\tAbsError: 1.16077e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.68885e-08\tAbsError: 1.77426e-05\n", + "Iteration: 78\n", + " Device: \"device\"\tRelError: 1.59537e-04\tAbsError: 1.44954e+10\n", + " Region: \"zone_1\"\tRelError: 6.23788e-05\tAbsError: 1.18770e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.23408e-05\tAbsError: 7.74102e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.80512e-08\tAbsError: 1.18692e-05\n", + " Region: \"zone_3\"\tRelError: 9.71583e-05\tAbsError: 1.44954e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.55583e-06\tAbsError: 7.62837e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.72772e-06\tAbsError: 6.86702e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.38368e-05\tAbsError: 8.04167e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.80547e-08\tAbsError: 1.18705e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.01863e-01\tAbsError: 8.99254e+13\n", + " Region: \"zone_1\"\tRelError: 1.76868e-01\tAbsError: 7.30150e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76633e-01\tAbsError: 3.52145e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.34495e-04\tAbsError: 7.29798e-02\n", + " Region: \"zone_3\"\tRelError: 1.24996e-01\tAbsError: 8.99254e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.61956e-03\tAbsError: 4.79187e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.07074e-02\tAbsError: 4.20067e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04434e-01\tAbsError: 4.02829e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.34516e-04\tAbsError: 7.29878e-02\n", + "Iteration: 79\n", + " Device: \"device\"\tRelError: 1.52436e-04\tAbsError: 1.52332e+10\n", + " Region: \"zone_1\"\tRelError: 8.73331e-06\tAbsError: 1.25015e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.69326e-06\tAbsError: 8.03542e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.00467e-08\tAbsError: 1.24934e-05\n", + " Region: \"zone_3\"\tRelError: 1.43703e-04\tAbsError: 1.52332e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.63732e-06\tAbsError: 7.90857e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.81810e-06\tAbsError: 7.32460e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40208e-04\tAbsError: 8.36695e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.00504e-08\tAbsError: 1.24948e-05\n", + "Iteration: 78\n", + " Device: \"device\"\tRelError: 2.45505e-04\tAbsError: 2.67245e+10\n", + " Region: \"zone_1\"\tRelError: 1.48354e-04\tAbsError: 2.19319e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48284e-04\tAbsError: 1.28629e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.03000e-08\tAbsError: 2.19191e-05\n", + " Region: \"zone_3\"\tRelError: 9.71507e-05\tAbsError: 2.67245e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87427e-06\tAbsError: 1.44310e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.19317e-06\tAbsError: 1.22934e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.10130e-05\tAbsError: 1.32595e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.03064e-08\tAbsError: 2.19215e-05\n", + "Iteration: 80\n", + " Device: \"device\"\tRelError: 1.39416e-04\tAbsError: 1.90908e+10\n", + " Region: \"zone_1\"\tRelError: 4.23844e-05\tAbsError: 1.56489e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.23343e-05\tAbsError: 9.83950e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.01447e-08\tAbsError: 1.56390e-05\n", + " Region: \"zone_3\"\tRelError: 9.70317e-05\tAbsError: 1.90908e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05032e-06\tAbsError: 1.02077e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.27714e-06\tAbsError: 8.88304e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.26541e-05\tAbsError: 1.02326e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.01493e-08\tAbsError: 1.56407e-05\n", + "Iteration: 79\n", + " Device: \"device\"\tRelError: 1.40786e-04\tAbsError: 1.27908e+10\n", + " Region: \"zone_1\"\tRelError: 5.50465e-05\tAbsError: 1.04803e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.50129e-05\tAbsError: 6.83072e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.35766e-08\tAbsError: 1.04735e-05\n", + " Region: \"zone_3\"\tRelError: 8.57400e-05\tAbsError: 1.27908e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.37287e-06\tAbsError: 6.73131e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.52455e-06\tAbsError: 6.05949e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 8.28090e-05\tAbsError: 7.09601e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.35797e-08\tAbsError: 1.04746e-05\n", "Iteration: 11\n", - " Device: \"device\"\tRelError: 5.03275e-05\tAbsError: 9.08763e+09\n", - " Region: \"zone_1\"\tRelError: 4.97773e-06\tAbsError: 1.23989e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.97416e-06\tAbsError: 6.85123e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.56554e-09\tAbsError: 1.23921e-06\n", - " Region: \"zone_3\"\tRelError: 4.53497e-05\tAbsError: 9.08763e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.78500e-08\tAbsError: 4.42118e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.59273e-08\tAbsError: 4.66645e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 4.52724e-05\tAbsError: 6.89457e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.56702e-09\tAbsError: 1.23975e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:42:07\u001b[0m.\u001b[1;36m715\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.8999999999999999\u001b[0m\n", + " Device: \"device\"\tRelError: 2.84781e-01\tAbsError: 7.89661e+13\n", + " Region: \"zone_1\"\tRelError: 1.83316e-01\tAbsError: 6.29467e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83114e-01\tAbsError: 3.08554e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.02117e-04\tAbsError: 6.29159e-02\n", + " Region: \"zone_3\"\tRelError: 1.01465e-01\tAbsError: 7.89661e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.24247e-03\tAbsError: 4.20080e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.16769e-03\tAbsError: 3.69581e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.38530e-02\tAbsError: 3.47261e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.02135e-04\tAbsError: 6.29228e-02\n", + "Iteration: 80\n", + " Device: \"device\"\tRelError: 1.34554e-04\tAbsError: 1.34477e+10\n", + " Region: \"zone_1\"\tRelError: 7.70972e-06\tAbsError: 1.10361e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.67437e-06\tAbsError: 7.09358e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.53528e-08\tAbsError: 1.10291e-05\n", + " Region: \"zone_3\"\tRelError: 1.26844e-04\tAbsError: 1.34477e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.44541e-06\tAbsError: 6.98160e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.60499e-06\tAbsError: 6.46607e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23758e-04\tAbsError: 7.38625e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.53560e-08\tAbsError: 1.10303e-05\n", + "Iteration: 79\n", + " Device: \"device\"\tRelError: 2.15888e-04\tAbsError: 2.35031e+10\n", + " Region: \"zone_1\"\tRelError: 1.30454e-04\tAbsError: 1.92882e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30392e-04\tAbsError: 1.13124e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.18259e-08\tAbsError: 1.92769e-05\n", + " Region: \"zone_3\"\tRelError: 8.54337e-05\tAbsError: 2.35031e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52780e-06\tAbsError: 1.26915e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.80826e-06\tAbsError: 1.08116e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.00358e-05\tAbsError: 1.16612e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.18316e-08\tAbsError: 1.92790e-05\n", + "Iteration: 81\n", + " Device: \"device\"\tRelError: 1.22906e-04\tAbsError: 1.68292e+10\n", + " Region: \"zone_1\"\tRelError: 3.73620e-05\tAbsError: 1.37950e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.73178e-05\tAbsError: 8.67387e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.42044e-08\tAbsError: 1.37864e-05\n", + " Region: \"zone_3\"\tRelError: 8.55437e-05\tAbsError: 1.68292e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.80743e-06\tAbsError: 8.99849e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.00738e-06\tAbsError: 7.83071e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 8.16846e-05\tAbsError: 9.02039e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.42084e-08\tAbsError: 1.37879e-05\n", + "Iteration: 80\n", + " Device: \"device\"\tRelError: 1.24223e-04\tAbsError: 1.12867e+10\n", + " Region: \"zone_1\"\tRelError: 4.85710e-05\tAbsError: 9.24788e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.85413e-05\tAbsError: 6.02747e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.96282e-08\tAbsError: 9.24185e-06\n", + " Region: \"zone_3\"\tRelError: 7.56521e-05\tAbsError: 1.12867e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.21143e-06\tAbsError: 5.93975e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34527e-06\tAbsError: 5.34694e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 7.30658e-05\tAbsError: 6.26156e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.96309e-08\tAbsError: 9.24287e-06\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.30028e-01\tAbsError: 6.80431e+13\n", + " Region: \"zone_1\"\tRelError: 1.36630e-01\tAbsError: 5.47625e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36454e-01\tAbsError: 2.66202e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75869e-04\tAbsError: 5.47358e-02\n", + " Region: \"zone_3\"\tRelError: 9.33981e-02\tAbsError: 6.80431e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.20623e-03\tAbsError: 3.62278e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.02217e-03\tAbsError: 3.18153e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.79939e-02\tAbsError: 3.01994e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.75885e-04\tAbsError: 5.47418e-02\n", + "Iteration: 81\n", + " Device: \"device\"\tRelError: 1.18794e-04\tAbsError: 1.18714e+10\n", + " Region: \"zone_1\"\tRelError: 6.80601e-06\tAbsError: 9.74258e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.77480e-06\tAbsError: 6.26213e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.12090e-08\tAbsError: 9.73632e-06\n", + " Region: \"zone_3\"\tRelError: 1.11988e-04\tAbsError: 1.18714e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27599e-06\tAbsError: 6.16327e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.41687e-06\tAbsError: 5.70816e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09264e-04\tAbsError: 6.52049e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.12119e-08\tAbsError: 9.73739e-06\n", + "Iteration: 80\n", + " Device: \"device\"\tRelError: 1.89883e-04\tAbsError: 2.06700e+10\n", + " Region: \"zone_1\"\tRelError: 1.14742e-04\tAbsError: 1.69632e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14688e-04\tAbsError: 9.94879e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43734e-08\tAbsError: 1.69533e-05\n", + " Region: \"zone_3\"\tRelError: 7.51404e-05\tAbsError: 2.06700e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.22310e-06\tAbsError: 1.11616e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.46975e-06\tAbsError: 9.50833e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 7.03931e-05\tAbsError: 1.02555e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43783e-08\tAbsError: 1.69551e-05\n", + "Iteration: 82\n", + " Device: \"device\"\tRelError: 1.08342e-04\tAbsError: 1.48355e+10\n", + " Region: \"zone_1\"\tRelError: 3.29370e-05\tAbsError: 1.21608e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.28981e-05\tAbsError: 7.64633e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.89677e-08\tAbsError: 1.21532e-05\n", + " Region: \"zone_3\"\tRelError: 7.54046e-05\tAbsError: 1.48355e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.59331e-06\tAbsError: 7.93249e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.76958e-06\tAbsError: 6.90305e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 7.20028e-05\tAbsError: 7.95180e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.89713e-08\tAbsError: 1.21545e-05\n", + "Iteration: 81\n", + " Device: \"device\"\tRelError: 1.09621e-04\tAbsError: 9.95944e+09\n", + " Region: \"zone_1\"\tRelError: 4.28611e-05\tAbsError: 8.16039e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.28350e-05\tAbsError: 5.31867e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.61441e-08\tAbsError: 8.15507e-06\n", + " Region: \"zone_3\"\tRelError: 6.67600e-05\tAbsError: 9.95944e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06897e-06\tAbsError: 5.24127e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.18707e-06\tAbsError: 4.71817e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 6.44778e-05\tAbsError: 5.52524e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.61465e-08\tAbsError: 8.15597e-06\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 2.11604e-01\tAbsError: 5.92047e+13\n", + " Region: \"zone_1\"\tRelError: 1.34806e-01\tAbsError: 4.74124e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34653e-01\tAbsError: 2.31510e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52241e-04\tAbsError: 4.73892e-02\n", + " Region: \"zone_3\"\tRelError: 7.67980e-02\tAbsError: 5.92047e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.21064e-03\tAbsError: 3.15089e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.91002e-03\tAbsError: 2.76957e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.35251e-02\tAbsError: 2.61456e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52255e-04\tAbsError: 4.73944e-02\n", + "Iteration: 82\n", + " Device: \"device\"\tRelError: 1.04861e-04\tAbsError: 1.04800e+10\n", + " Region: \"zone_1\"\tRelError: 6.00830e-06\tAbsError: 8.60063e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.98075e-06\tAbsError: 5.52813e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75510e-08\tAbsError: 8.59511e-06\n", + " Region: \"zone_3\"\tRelError: 9.88527e-05\tAbsError: 1.04800e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12643e-06\tAbsError: 5.44086e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.25080e-06\tAbsError: 5.03909e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 9.64479e-05\tAbsError: 5.75622e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75535e-08\tAbsError: 8.59605e-06\n", + "Iteration: 81\n", + " Device: \"device\"\tRelError: 1.66980e-04\tAbsError: 1.81784e+10\n", + " Region: \"zone_1\"\tRelError: 1.00901e-04\tAbsError: 1.49184e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00853e-04\tAbsError: 8.74956e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.78192e-08\tAbsError: 1.49097e-05\n", + " Region: \"zone_3\"\tRelError: 6.60790e-05\tAbsError: 1.81784e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95512e-06\tAbsError: 9.81621e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.17204e-06\tAbsError: 8.36219e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 6.19040e-05\tAbsError: 9.01930e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.78235e-08\tAbsError: 1.49113e-05\n", + "Iteration: 83\n", + " Device: \"device\"\tRelError: 9.55103e-05\tAbsError: 1.30781e+10\n", + " Region: \"zone_1\"\tRelError: 2.90343e-05\tAbsError: 1.07202e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.90000e-05\tAbsError: 6.74052e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.43515e-08\tAbsError: 1.07135e-05\n", + " Region: \"zone_3\"\tRelError: 6.64759e-05\tAbsError: 1.30781e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.40457e-06\tAbsError: 6.99278e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.55995e-06\tAbsError: 6.08530e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 6.34771e-05\tAbsError: 7.00980e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.43546e-08\tAbsError: 1.07146e-05\n", + "Iteration: 82\n", + " Device: \"device\"\tRelError: 9.67257e-05\tAbsError: 8.78828e+09\n", + " Region: \"zone_1\"\tRelError: 3.78195e-05\tAbsError: 7.20077e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.77964e-05\tAbsError: 4.69323e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.30697e-08\tAbsError: 7.19608e-06\n", + " Region: \"zone_3\"\tRelError: 5.89062e-05\tAbsError: 8.78828e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.43268e-07\tAbsError: 4.62494e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04748e-06\tAbsError: 4.16334e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.68924e-05\tAbsError: 4.87551e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.30718e-08\tAbsError: 7.19687e-06\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.74367e-01\tAbsError: 5.12579e+13\n", + " Region: \"zone_1\"\tRelError: 1.04577e-01\tAbsError: 4.11521e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04445e-01\tAbsError: 2.00490e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32157e-04\tAbsError: 4.11321e-02\n", + " Region: \"zone_3\"\tRelError: 6.97895e-02\tAbsError: 5.12579e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.41152e-03\tAbsError: 2.72839e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.02402e-03\tAbsError: 2.39740e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.82218e-02\tAbsError: 2.26904e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32169e-04\tAbsError: 4.11366e-02\n", + "Iteration: 83\n", + " Device: \"device\"\tRelError: 9.25773e-05\tAbsError: 9.25157e+09\n", + " Region: \"zone_1\"\tRelError: 5.30403e-06\tAbsError: 7.59254e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.27971e-06\tAbsError: 4.88017e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.43217e-08\tAbsError: 7.58766e-06\n", + " Region: \"zone_3\"\tRelError: 8.72733e-05\tAbsError: 9.25157e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.94400e-07\tAbsError: 4.80312e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10419e-06\tAbsError: 4.44845e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 8.51504e-05\tAbsError: 5.08152e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.43239e-08\tAbsError: 7.58850e-06\n", + "Iteration: 82\n", + " Device: \"device\"\tRelError: 1.46863e-04\tAbsError: 1.59872e+10\n", + " Region: \"zone_1\"\tRelError: 8.87461e-05\tAbsError: 1.31202e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.87040e-05\tAbsError: 7.69488e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.20550e-08\tAbsError: 1.31125e-05\n", + " Region: \"zone_3\"\tRelError: 5.81168e-05\tAbsError: 1.59872e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.71945e-06\tAbsError: 8.63295e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.91022e-06\tAbsError: 7.35421e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.44450e-05\tAbsError: 7.93211e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.20588e-08\tAbsError: 1.31139e-05\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 1.57886e-01\tAbsError: 4.44875e+13\n", + " Region: \"zone_1\"\tRelError: 9.97959e-02\tAbsError: 3.56713e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.96813e-02\tAbsError: 1.73999e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14543e-04\tAbsError: 3.56539e-02\n", + " Region: \"zone_3\"\tRelError: 5.80905e-02\tAbsError: 4.44875e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.67472e-03\tAbsError: 2.36785e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.20174e-03\tAbsError: 2.08090e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.80994e-02\tAbsError: 1.96681e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14553e-04\tAbsError: 3.56578e-02\n", + "Iteration: 83\n", + " Device: \"device\"\tRelError: 1.29151e-04\tAbsError: 1.40601e+10\n", + " Region: \"zone_1\"\tRelError: 7.80425e-05\tAbsError: 1.15386e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.80055e-05\tAbsError: 6.76733e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.69856e-08\tAbsError: 1.15319e-05\n", + " Region: \"zone_3\"\tRelError: 5.11090e-05\tAbsError: 1.40601e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.51218e-06\tAbsError: 7.59234e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.67996e-06\tAbsError: 6.46772e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.78799e-05\tAbsError: 6.97596e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.69890e-08\tAbsError: 1.15331e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:36:07\u001b[0m.\u001b[1;36m306\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:36:07\u001b[0m.\u001b[1;36m332\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.8 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:36:07\u001b[0m.\u001b[1;36m346\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:36:07\u001b[0m.\u001b[1;36m346\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.8 V. Current applied bias: 0.8\u001b[0m \n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", @@ -58407,106 +27548,30 @@ "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", - "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_4, Equation: PotentialEquation\n", - "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", - "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", - "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", - "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 6.82510e-03\tAbsError: 1.57093e+12\n", - " Region: \"zone_1\"\tRelError: 5.21350e-03\tAbsError: 7.21717e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.21329e-03\tAbsError: 5.21383e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.07357e-07\tAbsError: 7.21195e-05\n", - " Region: \"zone_3\"\tRelError: 1.61160e-03\tAbsError: 1.57093e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.85877e-06\tAbsError: 7.82787e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.31443e-06\tAbsError: 7.88140e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.60722e-03\tAbsError: 5.26937e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.07435e-07\tAbsError: 7.21474e-05\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 5.75731e+01\tAbsError: 5.68784e+17\n", - " Region: \"zone_1\"\tRelError: 3.83859e+01\tAbsError: 4.09543e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.83859e+01\tAbsError: 4.09541e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.16236e-10\tAbsError: 1.79418e-07\n", - " Region: \"zone_3\"\tRelError: 1.91873e+01\tAbsError: 5.68784e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.35377e-01\tAbsError: 2.75826e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.22188e-01\tAbsError: 2.92959e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.77297e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.16460e-10\tAbsError: 1.79501e-07\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 2.34680e-03\tAbsError: 5.70100e+11\n", - " Region: \"zone_1\"\tRelError: 1.79139e-03\tAbsError: 1.51124e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.79135e-03\tAbsError: 1.85167e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.33973e-08\tAbsError: 1.50939e-05\n", - " Region: \"zone_3\"\tRelError: 5.55408e-04\tAbsError: 5.70100e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.68877e-07\tAbsError: 2.84063e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.69915e-07\tAbsError: 2.86037e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.54226e-04\tAbsError: 1.87202e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.34137e-08\tAbsError: 1.51000e-05\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 4.73793e-04\tAbsError: 1.15623e+11\n", - " Region: \"zone_1\"\tRelError: 3.50083e-04\tAbsError: 4.95174e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.50068e-04\tAbsError: 4.03930e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42254e-08\tAbsError: 4.94770e-06\n", - " Region: \"zone_3\"\tRelError: 1.23711e-04\tAbsError: 1.15623e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13155e-07\tAbsError: 5.76217e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.72856e-07\tAbsError: 5.80008e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.23410e-04\tAbsError: 4.08249e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42309e-08\tAbsError: 4.94974e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.10779e+01\tAbsError: 4.06443e+17\n", - " Region: \"zone_1\"\tRelError: 1.97168e+01\tAbsError: 4.69738e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.97155e+01\tAbsError: 3.07629e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26517e-03\tAbsError: 4.38975e-01\n", - " Region: \"zone_3\"\tRelError: 1.13612e+01\tAbsError: 4.06443e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.26663e-01\tAbsError: 2.03016e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.10593e-01\tAbsError: 2.03427e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03227e+01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26614e-03\tAbsError: 4.39294e-01\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 1.47757e-04\tAbsError: 3.73129e+10\n", - " Region: \"zone_1\"\tRelError: 1.09182e-04\tAbsError: 1.12329e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09178e-04\tAbsError: 1.28385e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.22595e-09\tAbsError: 1.12201e-06\n", - " Region: \"zone_3\"\tRelError: 3.85756e-05\tAbsError: 3.73129e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96287e-08\tAbsError: 1.85947e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.85050e-08\tAbsError: 1.87182e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.84943e-05\tAbsError: 1.29789e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.22727e-09\tAbsError: 1.12250e-06\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 4.48960e+02\tAbsError: 9.69691e+16\n", - " Region: \"zone_1\"\tRelError: 4.44741e+02\tAbsError: 1.46848e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 4.44741e+02\tAbsError: 2.58943e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.47880e-04\tAbsError: 1.20954e-01\n", - " Region: \"zone_3\"\tRelError: 4.21888e+00\tAbsError: 9.69691e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.30659e-01\tAbsError: 4.85459e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.34310e-01\tAbsError: 4.84232e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.85356e+00\tAbsError: 2.58906e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.48053e-04\tAbsError: 1.21009e-01\n", - "Iteration: 14\n", - " Device: \"device\"\tRelError: 3.31804e-05\tAbsError: 8.35153e+09\n", - " Region: \"zone_1\"\tRelError: 2.40833e-05\tAbsError: 3.39599e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.40823e-05\tAbsError: 2.98627e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.75541e-10\tAbsError: 3.39301e-07\n", - " Region: \"zone_3\"\tRelError: 9.09711e-06\tAbsError: 8.35153e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.30953e-09\tAbsError: 4.16234e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.24972e-08\tAbsError: 4.18919e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.07633e-06\tAbsError: 3.01836e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.75943e-10\tAbsError: 3.39450e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:42:11\u001b[0m.\u001b[1;36m695\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:42:11\u001b[0m.\u001b[1;36m695\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m1.0409090909090908\u001b[0m \n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:36:07\u001b[0m.\u001b[1;36m370\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.85 bias\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 1.31855e-01\tAbsError: 3.85660e+13\n", + " Region: \"zone_1\"\tRelError: 7.96463e-02\tAbsError: 3.09414e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.95470e-02\tAbsError: 1.50842e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.93647e-05\tAbsError: 3.09264e-02\n", + " Region: \"zone_3\"\tRelError: 5.22086e-02\tAbsError: 3.85660e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.06686e-03\tAbsError: 2.05265e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.52696e-03\tAbsError: 1.80394e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.35154e-02\tAbsError: 1.70593e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.93736e-05\tAbsError: 3.09297e-02\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:36:07\u001b[0m.\u001b[1;36m384\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.85 V. Current applied bias: 0.85\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", @@ -58519,6 +27584,7 @@ "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", @@ -58531,7 +27597,12 @@ "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31686\n", "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", @@ -58543,208 +27614,20 @@ "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 5.03712e+00\tAbsError: 1.21527e+16\n", - " Region: \"zone_1\"\tRelError: 1.00977e+00\tAbsError: 5.07362e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00834e+00\tAbsError: 9.16487e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42992e-03\tAbsError: 4.98197e-01\n", - " Region: \"zone_3\"\tRelError: 4.02736e+00\tAbsError: 1.21527e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.24782e-02\tAbsError: 5.84262e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.44637e-02\tAbsError: 6.31012e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 3.96898e+00\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.43302e-03\tAbsError: 4.99291e-01\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.16228e+03\tAbsError: 1.88827e+18\n", - " Region: \"zone_1\"\tRelError: 1.58051e+03\tAbsError: 4.18725e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.58051e+03\tAbsError: 4.18724e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.33433e-10\tAbsError: 8.11914e-08\n", - " Region: \"zone_3\"\tRelError: 1.58177e+03\tAbsError: 1.88827e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.44099e-01\tAbsError: 9.40408e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.21680e-01\tAbsError: 9.47859e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.58051e+03\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.33530e-10\tAbsError: 8.12262e-08\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.22708e-01\tAbsError: 3.87768e+15\n", - " Region: \"zone_1\"\tRelError: 1.91968e-01\tAbsError: 6.75386e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.90026e-01\tAbsError: 2.52604e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94152e-03\tAbsError: 6.75134e-01\n", - " Region: \"zone_3\"\tRelError: 7.30741e-01\tAbsError: 3.87768e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.56619e-03\tAbsError: 1.77246e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.53274e-03\tAbsError: 2.10521e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.16698e-01\tAbsError: 2.55458e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.94389e-03\tAbsError: 6.75970e-01\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.55529e+01\tAbsError: 5.53890e+17\n", - " Region: \"zone_1\"\tRelError: 5.41760e+00\tAbsError: 1.57448e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.41318e+00\tAbsError: 3.18453e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.42211e-03\tAbsError: 1.54263e+00\n", - " Region: \"zone_3\"\tRelError: 2.01353e+01\tAbsError: 5.53890e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.41602e-01\tAbsError: 2.77810e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.39263e-01\tAbsError: 2.76080e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.94500e+01\tAbsError: 3.18461e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.42270e-03\tAbsError: 1.54278e+00\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 2.39826e+00\tAbsError: 3.43096e+15\n", - " Region: \"zone_1\"\tRelError: 2.04849e-01\tAbsError: 4.45309e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.04721e-01\tAbsError: 2.05839e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27433e-04\tAbsError: 4.43251e-02\n", - " Region: \"zone_3\"\tRelError: 2.19341e+00\tAbsError: 3.43096e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.46827e-03\tAbsError: 1.70482e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.46042e-03\tAbsError: 1.72614e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18535e+00\tAbsError: 2.07760e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.27493e-04\tAbsError: 4.43450e-02\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 7.83305e+00\tAbsError: 5.91291e+16\n", - " Region: \"zone_1\"\tRelError: 1.19920e+00\tAbsError: 2.77579e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19136e+00\tAbsError: 2.58851e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.83491e-03\tAbsError: 2.74991e+00\n", - " Region: \"zone_3\"\tRelError: 6.63386e+00\tAbsError: 5.91291e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.76383e-02\tAbsError: 2.96632e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.22448e-02\tAbsError: 2.94659e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 6.48613e+00\tAbsError: 2.58913e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.84346e-03\tAbsError: 2.75299e+00\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 3.26801e-01\tAbsError: 3.21780e+14\n", - " Region: \"zone_1\"\tRelError: 1.55999e-02\tAbsError: 2.70060e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55223e-02\tAbsError: 1.53596e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.76036e-05\tAbsError: 2.69907e-02\n", - " Region: \"zone_3\"\tRelError: 3.11201e-01\tAbsError: 3.21780e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.63679e-04\tAbsError: 1.60119e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.88527e-04\tAbsError: 1.61661e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 3.10171e-01\tAbsError: 1.54896e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.76380e-05\tAbsError: 2.70022e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.82267e+01\tAbsError: 1.87951e+16\n", - " Region: \"zone_1\"\tRelError: 7.24256e-01\tAbsError: 1.62549e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 7.19633e-01\tAbsError: 1.05198e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.62256e-03\tAbsError: 1.61497e+00\n", - " Region: \"zone_3\"\tRelError: 1.75024e+01\tAbsError: 1.87951e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04520e-02\tAbsError: 9.32017e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.38432e-02\tAbsError: 9.47491e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74635e+01\tAbsError: 1.05209e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.62918e-03\tAbsError: 1.61732e+00\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 2.06749e-01\tAbsError: 1.86094e+14\n", - " Region: \"zone_1\"\tRelError: 8.34420e-03\tAbsError: 3.03935e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 8.33549e-03\tAbsError: 8.31449e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.71533e-06\tAbsError: 3.03103e-03\n", - " Region: \"zone_3\"\tRelError: 1.98405e-01\tAbsError: 1.86094e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.28032e-04\tAbsError: 9.25440e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.88076e-04\tAbsError: 9.35503e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.97980e-01\tAbsError: 8.38945e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.71848e-06\tAbsError: 3.03213e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.42936e+00\tAbsError: 1.70570e+16\n", - " Region: \"zone_1\"\tRelError: 2.60997e-01\tAbsError: 1.59580e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 2.56434e-01\tAbsError: 1.61896e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.56257e-03\tAbsError: 1.59564e+00\n", - " Region: \"zone_3\"\tRelError: 1.16837e+00\tAbsError: 1.70570e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.62388e-02\tAbsError: 8.19423e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.33442e-03\tAbsError: 8.86273e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13323e+00\tAbsError: 1.64968e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.56346e-03\tAbsError: 1.59594e+00\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.88896e-02\tAbsError: 2.58485e+13\n", - " Region: \"zone_1\"\tRelError: 1.63690e-03\tAbsError: 1.31710e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.63310e-03\tAbsError: 9.88963e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.79528e-06\tAbsError: 1.31612e-03\n", - " Region: \"zone_3\"\tRelError: 3.72527e-02\tAbsError: 2.58485e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.09818e-05\tAbsError: 1.28647e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.53496e-05\tAbsError: 1.29838e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.71926e-02\tAbsError: 9.97598e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.79540e-06\tAbsError: 1.31620e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.15862e+00\tAbsError: 9.93947e+15\n", - " Region: \"zone_1\"\tRelError: 1.49341e-01\tAbsError: 6.40088e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49159e-01\tAbsError: 4.15530e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.81803e-04\tAbsError: 6.35932e-02\n", - " Region: \"zone_3\"\tRelError: 1.00928e+00\tAbsError: 9.93947e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.65718e-02\tAbsError: 4.85353e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.35033e-03\tAbsError: 5.08594e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 9.89178e-01\tAbsError: 4.18389e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.81889e-04\tAbsError: 6.36236e-02\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.59304e-02\tAbsError: 1.10975e+13\n", - " Region: \"zone_1\"\tRelError: 6.60647e-04\tAbsError: 2.32906e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.59978e-04\tAbsError: 3.98553e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.68839e-07\tAbsError: 2.32508e-04\n", - " Region: \"zone_3\"\tRelError: 1.52698e-02\tAbsError: 1.10975e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32236e-05\tAbsError: 5.52234e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.14382e-05\tAbsError: 5.57521e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.52444e-02\tAbsError: 4.02224e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.69094e-07\tAbsError: 2.32596e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.98332e-02\tAbsError: 3.63196e+14\n", - " Region: \"zone_1\"\tRelError: 1.09015e-02\tAbsError: 5.38113e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.07477e-02\tAbsError: 2.10916e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.53806e-04\tAbsError: 5.37902e-02\n", - " Region: \"zone_3\"\tRelError: 6.89316e-02\tAbsError: 3.63196e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.63442e-03\tAbsError: 1.76292e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.28654e-04\tAbsError: 1.86904e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 6.65147e-02\tAbsError: 2.12170e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.53867e-04\tAbsError: 5.38113e-02\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 3.34486e-03\tAbsError: 1.97182e+12\n", - " Region: \"zone_1\"\tRelError: 1.39485e-04\tAbsError: 8.65138e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.39236e-04\tAbsError: 6.47581e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.48683e-07\tAbsError: 8.64490e-05\n", - " Region: \"zone_3\"\tRelError: 3.20538e-03\tAbsError: 1.97182e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.27846e-06\tAbsError: 9.81632e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.12485e-06\tAbsError: 9.90188e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.20072e-03\tAbsError: 6.54815e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.48776e-07\tAbsError: 8.64826e-05\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.15137e-03\tAbsError: 7.06680e+11\n", - " Region: \"zone_1\"\tRelError: 4.79513e-05\tAbsError: 1.84347e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.78983e-05\tAbsError: 2.30046e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.29631e-08\tAbsError: 1.84117e-05\n", - " Region: \"zone_3\"\tRelError: 1.10342e-03\tAbsError: 7.06680e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.28767e-07\tAbsError: 3.51782e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.37241e-07\tAbsError: 3.54898e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10180e-03\tAbsError: 2.32700e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.29832e-08\tAbsError: 1.84191e-05\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.10734e-01\tAbsError: 3.23140e+14\n", - " Region: \"zone_1\"\tRelError: 1.41532e-02\tAbsError: 4.07427e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41415e-02\tAbsError: 1.48652e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.16074e-05\tAbsError: 4.05941e-03\n", - " Region: \"zone_3\"\tRelError: 9.65805e-02\tAbsError: 3.23140e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.34482e-04\tAbsError: 1.60954e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.62448e-04\tAbsError: 1.62186e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 9.55720e-02\tAbsError: 1.49643e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.16120e-05\tAbsError: 4.06102e-03\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 2.60636e-04\tAbsError: 1.46372e+11\n", - " Region: \"zone_1\"\tRelError: 1.08690e-05\tAbsError: 6.03090e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08517e-05\tAbsError: 5.09600e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73339e-08\tAbsError: 6.02581e-06\n", - " Region: \"zone_3\"\tRelError: 2.49767e-04\tAbsError: 1.46372e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68311e-07\tAbsError: 7.29196e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.63262e-07\tAbsError: 7.34528e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 2.49418e-04\tAbsError: 5.15309e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.73406e-08\tAbsError: 6.02830e-06\n", - "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.30760e-02\tAbsError: 2.51950e+13\n", - " Region: \"zone_1\"\tRelError: 1.67509e-03\tAbsError: 2.23250e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66869e-03\tAbsError: 1.29509e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.39687e-06\tAbsError: 2.23120e-03\n", - " Region: \"zone_3\"\tRelError: 1.14009e-02\tAbsError: 2.51950e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.40076e-05\tAbsError: 1.25506e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.29176e-05\tAbsError: 1.26444e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12476e-02\tAbsError: 1.30350e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.39807e-06\tAbsError: 2.23171e-03\n", - "Iteration: 13\n", - " Device: \"device\"\tRelError: 8.12930e-05\tAbsError: 4.69072e+10\n", - " Region: \"zone_1\"\tRelError: 3.38946e-06\tAbsError: 1.38742e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 3.38548e-06\tAbsError: 1.62196e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.98640e-09\tAbsError: 1.38580e-06\n", - " Region: \"zone_3\"\tRelError: 7.79035e-05\tAbsError: 4.69072e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.45193e-08\tAbsError: 2.33605e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.92263e-08\tAbsError: 2.35467e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.77958e-05\tAbsError: 1.64038e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.98804e-09\tAbsError: 1.38641e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:42:21\u001b[0m.\u001b[1;36m924\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 0.9999999999999999\u001b[0m\n", + "number of equations 31686\n", + "Iteration: 84\n", + " Device: \"device\"\tRelError: 1.13590e-04\tAbsError: 1.23653e+10\n", + " Region: \"zone_1\"\tRelError: 6.86398e-05\tAbsError: 1.01478e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.86073e-05\tAbsError: 5.95159e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.25274e-08\tAbsError: 1.01418e-05\n", + " Region: \"zone_3\"\tRelError: 4.49501e-05\tAbsError: 1.23653e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32991e-06\tAbsError: 6.67715e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.47746e-06\tAbsError: 5.68810e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.21102e-05\tAbsError: 6.13507e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.25303e-08\tAbsError: 1.01429e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:36:07\u001b[0m.\u001b[1;36m838\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:36:07\u001b[0m.\u001b[1;36m861\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.9 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:36:07\u001b[0m.\u001b[1;36m875\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.9 V. Current applied bias: 0.9\u001b[0m \n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", @@ -58783,69 +27666,130 @@ "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 9\n", - " Device: \"device\"\tRelError: 7.34066e-03\tAbsError: 1.50746e+13\n", - " Region: \"zone_1\"\tRelError: 9.38378e-04\tAbsError: 2.73944e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 9.37593e-04\tAbsError: 6.05377e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.84664e-07\tAbsError: 2.73339e-04\n", - " Region: \"zone_3\"\tRelError: 6.40228e-03\tAbsError: 1.50746e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.70757e-05\tAbsError: 7.51334e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.49476e-05\tAbsError: 7.56129e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 6.34947e-03\tAbsError: 6.09341e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.84733e-07\tAbsError: 2.73360e-04\n", + "number of equations 31686\n", "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.58363e+04\tAbsError: 1.47473e+18\n", - " Region: \"zone_1\"\tRelError: 6.98536e+03\tAbsError: 4.09543e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.98536e+03\tAbsError: 4.09539e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20641e-09\tAbsError: 4.19390e-07\n", - " Region: \"zone_3\"\tRelError: 2.88509e+04\tAbsError: 1.47473e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.64637e-01\tAbsError: 7.31003e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.38568e-01\tAbsError: 7.43726e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 2.88496e+04\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.20691e-09\tAbsError: 4.19574e-07\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.13955e-03\tAbsError: 1.79629e+12\n", - " Region: \"zone_1\"\tRelError: 1.45110e-04\tAbsError: 1.21666e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.44761e-04\tAbsError: 7.64701e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.49037e-07\tAbsError: 1.21590e-04\n", - " Region: \"zone_3\"\tRelError: 9.94436e-04\tAbsError: 1.79629e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.54025e-06\tAbsError: 8.95445e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.81841e-06\tAbsError: 9.00849e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 9.84728e-04\tAbsError: 7.69552e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.49092e-07\tAbsError: 1.21609e-04\n", - "Iteration: 11\n", - " Device: \"device\"\tRelError: 4.58110e-04\tAbsError: 7.82252e+11\n", - " Region: \"zone_1\"\tRelError: 5.84708e-05\tAbsError: 2.02313e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 5.84129e-05\tAbsError: 2.95470e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.79137e-08\tAbsError: 2.02017e-05\n", - " Region: \"zone_3\"\tRelError: 3.99639e-04\tAbsError: 7.82252e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33892e-06\tAbsError: 3.90049e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.59692e-06\tAbsError: 3.92202e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 3.96645e-04\tAbsError: 2.98275e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.79359e-08\tAbsError: 2.02098e-05\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 8.73385e+02\tAbsError: 4.80817e+17\n", - " Region: \"zone_1\"\tRelError: 4.36320e+02\tAbsError: 1.19061e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 4.36317e+02\tAbsError: 3.07626e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.33293e-03\tAbsError: 1.15985e+00\n", - " Region: \"zone_3\"\tRelError: 4.37065e+02\tAbsError: 4.80817e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.79759e-01\tAbsError: 2.41402e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.64874e-01\tAbsError: 2.39414e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 4.36317e+02\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.33331e-03\tAbsError: 1.15994e+00\n", - "Iteration: 12\n", - " Device: \"device\"\tRelError: 8.41870e-05\tAbsError: 1.22496e+11\n", - " Region: \"zone_1\"\tRelError: 1.07138e-05\tAbsError: 7.33542e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06928e-05\tAbsError: 5.31771e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.10137e-08\tAbsError: 7.33011e-06\n", - " Region: \"zone_3\"\tRelError: 7.34732e-05\tAbsError: 1.22496e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.63500e-07\tAbsError: 6.10925e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.36093e-07\tAbsError: 6.14040e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 7.28525e-05\tAbsError: 5.36696e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.10216e-08\tAbsError: 7.33297e-06\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:42:25\u001b[0m.\u001b[1;36m053\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: \u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:42:25\u001b[0m.\u001b[1;36m053\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39m1.1454545454545455\u001b[0m \n", + " Device: \"device\"\tRelError: 1.00410e+01\tAbsError: 2.09714e+16\n", + " Region: \"zone_1\"\tRelError: 7.93930e+00\tAbsError: 5.61049e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.93930e+00\tAbsError: 5.60955e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.02821e-08\tAbsError: 9.44430e-06\n", + " Region: \"zone_3\"\tRelError: 2.10174e+00\tAbsError: 2.09714e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.83020e-01\tAbsError: 1.21602e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.82933e-01\tAbsError: 8.81122e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35789e-01\tAbsError: 5.60955e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.02848e-08\tAbsError: 9.44534e-06\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.94626e+01\tAbsError: 3.07824e+16\n", + " Region: \"zone_1\"\tRelError: 5.72696e+01\tAbsError: 6.55942e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.72696e+01\tAbsError: 6.55878e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03569e-08\tAbsError: 6.34986e-06\n", + " Region: \"zone_3\"\tRelError: 2.19297e+00\tAbsError: 3.07824e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.18862e-01\tAbsError: 1.97056e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.18824e-01\tAbsError: 1.10768e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.55288e-01\tAbsError: 6.55878e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03587e-08\tAbsError: 6.35056e-06\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 1.18085e-01\tAbsError: 3.34494e+13\n", + " Region: \"zone_1\"\tRelError: 7.41961e-02\tAbsError: 2.68294e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.41100e-02\tAbsError: 1.30836e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.61518e-05\tAbsError: 2.68163e-02\n", + " Region: \"zone_3\"\tRelError: 4.38886e-02\tAbsError: 3.34494e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.51729e-03\tAbsError: 1.78036e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.91405e-03\tAbsError: 1.56458e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.63711e-02\tAbsError: 1.47920e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.61596e-05\tAbsError: 2.68192e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.32980e+02\tAbsError: 4.09554e+16\n", + " Region: \"zone_1\"\tRelError: 1.30755e+02\tAbsError: 7.25257e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30755e+02\tAbsError: 7.25190e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.14709e-08\tAbsError: 6.69830e-06\n", + " Region: \"zone_3\"\tRelError: 2.22506e+00\tAbsError: 4.09554e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.37876e-01\tAbsError: 2.79507e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.37859e-01\tAbsError: 1.30048e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.49330e-01\tAbsError: 7.25190e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.14728e-08\tAbsError: 6.69904e-06\n", + "Iteration: 85\n", + " Device: \"device\"\tRelError: 9.98926e-05\tAbsError: 1.08747e+10\n", + " Region: \"zone_1\"\tRelError: 6.03623e-05\tAbsError: 8.92454e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.03337e-05\tAbsError: 5.23418e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.86065e-08\tAbsError: 8.91931e-06\n", + " Region: \"zone_3\"\tRelError: 3.95304e-05\tAbsError: 1.08747e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16960e-06\tAbsError: 5.87227e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29936e-06\tAbsError: 5.00245e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.70328e-05\tAbsError: 5.39554e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.86091e-08\tAbsError: 8.92029e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 5.88898e+00\tAbsError: 2.96150e+16\n", + " Region: \"zone_1\"\tRelError: 3.81634e+00\tAbsError: 2.69298e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.81562e+00\tAbsError: 4.86961e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.16769e-04\tAbsError: 2.20602e-01\n", + " Region: \"zone_3\"\tRelError: 2.07264e+00\tAbsError: 2.96150e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.40216e-01\tAbsError: 1.41916e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.99623e-01\tAbsError: 1.54234e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.32084e-01\tAbsError: 4.86961e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.16769e-04\tAbsError: 2.20602e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 5.78621e+00\tAbsError: 2.59099e+16\n", + " Region: \"zone_1\"\tRelError: 3.55157e+00\tAbsError: 3.37239e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.55067e+00\tAbsError: 5.97624e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.01552e-04\tAbsError: 2.77477e-01\n", + " Region: \"zone_3\"\tRelError: 2.23463e+00\tAbsError: 2.59099e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.96450e-01\tAbsError: 1.37200e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.49043e-01\tAbsError: 1.21899e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.88239e-01\tAbsError: 5.97624e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.01552e-04\tAbsError: 2.77477e-01\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 9.95643e-02\tAbsError: 2.90068e+13\n", + " Region: \"zone_1\"\tRelError: 6.04615e-02\tAbsError: 2.32679e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.03868e-02\tAbsError: 1.13455e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.47210e-05\tAbsError: 2.32565e-02\n", + " Region: \"zone_3\"\tRelError: 3.91028e-02\tAbsError: 2.90068e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.05719e-03\tAbsError: 1.54383e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.40293e-03\tAbsError: 1.35684e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.25679e-02\tAbsError: 1.28280e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.47278e-05\tAbsError: 2.32590e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 9.08071e+00\tAbsError: 2.05435e+16\n", + " Region: \"zone_1\"\tRelError: 6.69017e+00\tAbsError: 4.74694e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.68885e+00\tAbsError: 6.76786e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32276e-03\tAbsError: 4.07015e-01\n", + " Region: \"zone_3\"\tRelError: 2.39054e+00\tAbsError: 2.05435e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.24106e-01\tAbsError: 1.19005e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.73060e-01\tAbsError: 8.64292e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.92047e-01\tAbsError: 6.76786e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32276e-03\tAbsError: 4.07015e-01\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 8.84515e-02\tAbsError: 2.51542e+13\n", + " Region: \"zone_1\"\tRelError: 5.53281e-02\tAbsError: 2.01774e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.52633e-02\tAbsError: 9.83918e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.47924e-05\tAbsError: 2.01676e-02\n", + " Region: \"zone_3\"\tRelError: 3.31234e-02\tAbsError: 2.51542e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.64599e-03\tAbsError: 1.33883e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.94458e-03\tAbsError: 1.17659e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74680e-02\tAbsError: 1.11242e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.47982e-05\tAbsError: 2.01698e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.59807e+00\tAbsError: 4.38504e+16\n", + " Region: \"zone_1\"\tRelError: 4.98452e-01\tAbsError: 1.43125e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.98116e-01\tAbsError: 3.99383e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.35380e-04\tAbsError: 1.03186e-01\n", + " Region: \"zone_3\"\tRelError: 2.09962e+00\tAbsError: 4.38504e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.74789e-01\tAbsError: 2.24227e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.81330e-01\tAbsError: 2.14277e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.43164e-01\tAbsError: 3.99383e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.35380e-04\tAbsError: 1.03186e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.99430e+00\tAbsError: 5.63930e+16\n", + " Region: \"zone_1\"\tRelError: 5.72179e-01\tAbsError: 1.42301e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.71884e-01\tAbsError: 5.30094e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94254e-04\tAbsError: 8.92914e-02\n", + " Region: \"zone_3\"\tRelError: 2.42212e+00\tAbsError: 5.63930e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.63555e-01\tAbsError: 2.70644e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.71099e-01\tAbsError: 2.93286e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.87171e-01\tAbsError: 5.30094e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94358e-04\tAbsError: 8.93221e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:36:10\u001b[0m.\u001b[1;36m987\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:36:11\u001b[0m.\u001b[1;36m010\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 0.95 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:36:11\u001b[0m.\u001b[1;36m024\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 0.95 V. Current applied bias: 0.95\u001b[0m \n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", @@ -58884,238 +27828,3562 @@ "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 1.66204e+03\tAbsError: 6.93474e+16\n", - " Region: \"zone_1\"\tRelError: 8.76338e+02\tAbsError: 4.68048e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 8.76336e+02\tAbsError: 2.58614e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26825e-03\tAbsError: 4.42186e-01\n", - " Region: \"zone_3\"\tRelError: 7.85702e+02\tAbsError: 6.93474e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.33245e-02\tAbsError: 3.47970e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.15582e-02\tAbsError: 3.45503e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 7.85556e+02\tAbsError: 2.58778e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.26845e-03\tAbsError: 4.42250e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.46324e+03\tAbsError: 5.14576e+15\n", - " Region: \"zone_1\"\tRelError: 6.87978e+02\tAbsError: 7.78255e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 6.87976e+02\tAbsError: 9.16449e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19704e-03\tAbsError: 7.69091e-01\n", - " Region: \"zone_3\"\tRelError: 7.75259e+02\tAbsError: 5.14576e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.52317e-02\tAbsError: 2.57522e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.85097e-03\tAbsError: 2.57054e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.75237e+02\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.19704e-03\tAbsError: 7.69091e-01\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 3.59974e+03\tAbsError: 2.65317e+18\n", - " Region: \"zone_1\"\tRelError: 7.29760e+02\tAbsError: 4.18736e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.29760e+02\tAbsError: 4.18722e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.08424e-09\tAbsError: 1.42468e-06\n", - " Region: \"zone_3\"\tRelError: 2.86998e+03\tAbsError: 2.65317e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.56743e-01\tAbsError: 1.32495e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.47769e-01\tAbsError: 1.32822e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 2.86888e+03\tAbsError: 4.18730e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.08585e-09\tAbsError: 1.42528e-06\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 6.96023e+00\tAbsError: 5.32372e+15\n", - " Region: \"zone_1\"\tRelError: 4.54639e+00\tAbsError: 1.02863e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 4.54344e+00\tAbsError: 2.66559e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.94644e-03\tAbsError: 1.02837e+00\n", - " Region: \"zone_3\"\tRelError: 2.41384e+00\tAbsError: 5.32372e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.51219e-02\tAbsError: 2.60450e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.65403e-03\tAbsError: 2.71922e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.38011e+00\tAbsError: 2.68000e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.95139e-03\tAbsError: 1.03011e+00\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 2.84055e+00\tAbsError: 4.94765e+17\n", - " Region: \"zone_1\"\tRelError: 1.04493e+00\tAbsError: 2.77078e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.03715e+00\tAbsError: 3.18450e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.78051e-03\tAbsError: 2.73893e+00\n", - " Region: \"zone_3\"\tRelError: 1.79562e+00\tAbsError: 4.94765e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.48499e-01\tAbsError: 2.47705e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.45175e-01\tAbsError: 2.47060e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.29416e+00\tAbsError: 3.18462e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.78137e-03\tAbsError: 2.73932e+00\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 6.07732e+01\tAbsError: 5.66142e+15\n", - " Region: \"zone_1\"\tRelError: 6.09549e-01\tAbsError: 6.00187e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.09378e-01\tAbsError: 2.72034e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71203e-04\tAbsError: 5.97467e-02\n", - " Region: \"zone_3\"\tRelError: 6.01636e+01\tAbsError: 5.66142e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13691e-02\tAbsError: 2.75447e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.48872e-03\tAbsError: 2.90695e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 6.01496e+01\tAbsError: 2.74039e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.71270e-04\tAbsError: 5.97699e-02\n", + "number of equations 31686\n", "Iteration: 2\n", - " Device: \"device\"\tRelError: 4.62423e-01\tAbsError: 1.95408e+16\n", - " Region: \"zone_1\"\tRelError: 2.05320e-01\tAbsError: 2.35938e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.98710e-01\tAbsError: 2.58598e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.60950e-03\tAbsError: 2.33352e+00\n", - " Region: \"zone_3\"\tRelError: 2.57103e-01\tAbsError: 1.95408e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.71902e-02\tAbsError: 9.71912e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.43718e-02\tAbsError: 9.82163e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.98929e-01\tAbsError: 2.58489e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.61200e-03\tAbsError: 2.33442e+00\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.18137e+00\tAbsError: 3.71256e+14\n", - " Region: \"zone_1\"\tRelError: 8.31734e-02\tAbsError: 3.74686e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 8.30661e-02\tAbsError: 1.92544e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.07324e-04\tAbsError: 3.74493e-02\n", - " Region: \"zone_3\"\tRelError: 1.09819e+00\tAbsError: 3.71256e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23962e-03\tAbsError: 1.84907e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.91184e-04\tAbsError: 1.86349e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.09615e+00\tAbsError: 1.93888e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.07368e-04\tAbsError: 3.74645e-02\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 9.39209e-01\tAbsError: 2.29973e+16\n", - " Region: \"zone_1\"\tRelError: 3.62257e-01\tAbsError: 1.50539e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 3.58005e-01\tAbsError: 1.05196e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.25210e-03\tAbsError: 1.49487e+00\n", - " Region: \"zone_3\"\tRelError: 5.76952e-01\tAbsError: 2.29973e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88256e-02\tAbsError: 1.14448e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.88555e-02\tAbsError: 1.15525e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 5.25018e-01\tAbsError: 1.05211e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.25239e-03\tAbsError: 1.49497e+00\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.46007e+00\tAbsError: 2.29640e+14\n", - " Region: \"zone_1\"\tRelError: 4.03111e-02\tAbsError: 3.94907e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 4.02998e-02\tAbsError: 1.05545e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13173e-05\tAbsError: 3.93851e-03\n", - " Region: \"zone_3\"\tRelError: 1.41976e+00\tAbsError: 2.29640e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.16328e-04\tAbsError: 1.14327e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.52600e-04\tAbsError: 1.15314e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41908e+00\tAbsError: 1.06317e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13180e-05\tAbsError: 3.93853e-03\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 3.51822e-01\tAbsError: 1.66219e+16\n", - " Region: \"zone_1\"\tRelError: 1.40128e-01\tAbsError: 7.95313e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37872e-01\tAbsError: 2.26078e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.25603e-03\tAbsError: 7.95087e-01\n", - " Region: \"zone_3\"\tRelError: 2.11694e-01\tAbsError: 1.66219e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10115e-02\tAbsError: 8.31252e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.28653e-03\tAbsError: 8.30938e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.90131e-01\tAbsError: 2.26461e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.26521e-03\tAbsError: 7.98211e-01\n", + " Device: \"device\"\tRelError: 2.54473e+01\tAbsError: 4.75212e+16\n", + " Region: \"zone_1\"\tRelError: 2.27763e+01\tAbsError: 3.16885e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27754e+01\tAbsError: 6.21775e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.27054e-04\tAbsError: 2.54708e-01\n", + " Region: \"zone_3\"\tRelError: 2.67107e+00\tAbsError: 4.75212e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.04657e-01\tAbsError: 2.20061e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.14811e-01\tAbsError: 2.55151e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 8.50775e-01\tAbsError: 6.21775e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.27054e-04\tAbsError: 2.54708e-01\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 7.51063e-02\tAbsError: 2.18149e+13\n", + " Region: \"zone_1\"\tRelError: 4.57907e-02\tAbsError: 1.74981e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.57345e-02\tAbsError: 8.53263e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.61919e-05\tAbsError: 1.74896e-02\n", + " Region: \"zone_3\"\tRelError: 2.93156e-02\tAbsError: 2.18149e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.29850e-03\tAbsError: 1.16105e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.55836e-03\tAbsError: 1.02044e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.44026e-02\tAbsError: 9.64688e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.61970e-05\tAbsError: 1.74915e-02\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 5.85940e+01\tAbsError: 5.30084e+16\n", + " Region: \"zone_1\"\tRelError: 5.62398e+01\tAbsError: 6.55956e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.62398e+01\tAbsError: 6.55878e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.51582e-08\tAbsError: 7.84417e-06\n", + " Region: \"zone_3\"\tRelError: 2.35419e+00\tAbsError: 5.30084e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.18758e-01\tAbsError: 2.68784e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.18636e-01\tAbsError: 2.61300e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.16801e-01\tAbsError: 6.55878e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.51605e-08\tAbsError: 7.84503e-06\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.90076e+00\tAbsError: 4.33774e+16\n", + " Region: \"zone_1\"\tRelError: 3.48837e-01\tAbsError: 3.00901e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.47954e-01\tAbsError: 2.95548e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.82596e-04\tAbsError: 2.71346e-01\n", + " Region: \"zone_3\"\tRelError: 1.55193e+00\tAbsError: 4.33774e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.61701e-01\tAbsError: 2.30407e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.03575e-01\tAbsError: 2.03367e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.85769e-01\tAbsError: 2.95551e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.82596e-04\tAbsError: 2.71346e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.22279e+00\tAbsError: 8.51285e+16\n", + " Region: \"zone_1\"\tRelError: 1.21518e+00\tAbsError: 5.50863e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21354e+00\tAbsError: 4.50401e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64559e-03\tAbsError: 5.05823e-01\n", + " Region: \"zone_3\"\tRelError: 2.00761e+00\tAbsError: 8.51285e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.12186e-01\tAbsError: 4.66079e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.99508e-01\tAbsError: 3.85206e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.94266e-01\tAbsError: 4.50404e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64600e-03\tAbsError: 5.05906e-01\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 5.93073e+00\tAbsError: 1.00711e+17\n", + " Region: \"zone_1\"\tRelError: 3.40279e+00\tAbsError: 6.19822e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40096e+00\tAbsError: 5.58064e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83459e-03\tAbsError: 5.64016e-01\n", + " Region: \"zone_3\"\tRelError: 2.52794e+00\tAbsError: 1.00711e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.76478e-01\tAbsError: 5.33898e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.67586e-01\tAbsError: 4.73212e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.82040e-01\tAbsError: 5.58066e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83469e-03\tAbsError: 5.64016e-01\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 6.63246e-02\tAbsError: 1.89169e+13\n", + " Region: \"zone_1\"\tRelError: 4.13473e-02\tAbsError: 1.51744e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.12986e-02\tAbsError: 7.39949e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.87273e-05\tAbsError: 1.51670e-02\n", + " Region: \"zone_3\"\tRelError: 2.49773e-02\tAbsError: 1.89169e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.99035e-03\tAbsError: 1.00684e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.21501e-03\tAbsError: 8.84851e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07232e-02\tAbsError: 8.36577e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.87317e-05\tAbsError: 1.51686e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 5.00046e+00\tAbsError: 1.60444e+17\n", + " Region: \"zone_1\"\tRelError: 2.55163e+00\tAbsError: 5.96977e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54988e+00\tAbsError: 5.97583e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74788e-03\tAbsError: 5.37219e-01\n", + " Region: \"zone_3\"\tRelError: 2.44883e+00\tAbsError: 1.60444e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.94835e-01\tAbsError: 7.88923e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.39832e-01\tAbsError: 8.15519e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.12415e-01\tAbsError: 5.97584e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74788e-03\tAbsError: 5.37219e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 2.90437e+00\tAbsError: 2.42788e+16\n", + " Region: \"zone_1\"\tRelError: 1.76358e+00\tAbsError: 2.95383e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76270e+00\tAbsError: 2.55586e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.78537e-04\tAbsError: 2.69825e-01\n", + " Region: \"zone_3\"\tRelError: 1.14078e+00\tAbsError: 2.42788e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.57030e-01\tAbsError: 1.31427e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.21962e-01\tAbsError: 1.11361e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.60913e-01\tAbsError: 2.55597e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.78537e-04\tAbsError: 2.69825e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.93134e+00\tAbsError: 1.00065e+17\n", + " Region: \"zone_1\"\tRelError: 1.32009e+00\tAbsError: 2.85196e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31927e+00\tAbsError: 3.56170e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.15412e-04\tAbsError: 2.49579e-01\n", + " Region: \"zone_3\"\tRelError: 2.61125e+00\tAbsError: 1.00065e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.24183e-01\tAbsError: 5.53484e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.37198e-01\tAbsError: 4.47165e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24906e+00\tAbsError: 3.56171e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.15805e-04\tAbsError: 2.49689e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 3.44314e+01\tAbsError: 1.73306e+17\n", + " Region: \"zone_1\"\tRelError: 3.12604e+01\tAbsError: 2.56375e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.12597e+01\tAbsError: 4.83616e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.77162e-04\tAbsError: 2.08014e-01\n", + " Region: \"zone_3\"\tRelError: 3.17105e+00\tAbsError: 1.73306e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.30637e-01\tAbsError: 9.58908e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.90237e-01\tAbsError: 7.74150e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54950e+00\tAbsError: 4.83617e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.77454e-04\tAbsError: 2.08114e-01\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 5.66145e-02\tAbsError: 1.64058e+13\n", + " Region: \"zone_1\"\tRelError: 3.46196e-02\tAbsError: 1.31592e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.45773e-02\tAbsError: 6.41699e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.22582e-05\tAbsError: 1.31528e-02\n", + " Region: \"zone_3\"\tRelError: 2.19949e-02\tAbsError: 1.64058e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.72822e-03\tAbsError: 8.73158e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.92357e-03\tAbsError: 7.67418e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83009e-02\tAbsError: 7.25474e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.22620e-05\tAbsError: 1.31543e-02\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 7.48770e+01\tAbsError: 3.05190e+17\n", + " Region: \"zone_1\"\tRelError: 2.87862e+01\tAbsError: 4.32682e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.87849e+01\tAbsError: 5.29974e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23669e-03\tAbsError: 3.79684e-01\n", + " Region: \"zone_3\"\tRelError: 4.60908e+01\tAbsError: 3.05190e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.58009e-01\tAbsError: 1.61175e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.74756e-01\tAbsError: 1.44014e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.43568e+01\tAbsError: 5.29975e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.23708e-03\tAbsError: 3.79798e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.36469e+00\tAbsError: 9.36737e+15\n", + " Region: \"zone_1\"\tRelError: 7.90890e-01\tAbsError: 6.51745e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.88758e-01\tAbsError: 1.45046e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.13223e-03\tAbsError: 6.50294e-01\n", + " Region: \"zone_3\"\tRelError: 5.73802e-01\tAbsError: 9.36737e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.15949e-01\tAbsError: 4.99396e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.15502e-02\tAbsError: 4.37341e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74171e-01\tAbsError: 1.51099e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.13239e-03\tAbsError: 6.50325e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 2.38197e+00\tAbsError: 8.97204e+16\n", + " Region: \"zone_1\"\tRelError: 1.04997e+00\tAbsError: 9.04897e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04710e+00\tAbsError: 2.56110e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.86736e-03\tAbsError: 8.79286e-01\n", + " Region: \"zone_3\"\tRelError: 1.33200e+00\tAbsError: 8.97204e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.60664e-01\tAbsError: 4.56312e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.10001e-01\tAbsError: 4.40892e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.58472e-01\tAbsError: 2.45679e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.86736e-03\tAbsError: 8.79286e-01\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 1.69138e+01\tAbsError: 2.27317e+17\n", + " Region: \"zone_1\"\tRelError: 1.47373e+00\tAbsError: 5.74366e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47198e+00\tAbsError: 3.95233e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74391e-03\tAbsError: 5.34843e-01\n", + " Region: \"zone_3\"\tRelError: 1.54401e+01\tAbsError: 2.27317e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.50132e-01\tAbsError: 1.14455e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.44507e-01\tAbsError: 1.12863e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40437e+01\tAbsError: 3.95238e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74391e-03\tAbsError: 5.34843e-01\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 4.97706e-02\tAbsError: 1.42264e+13\n", + " Region: \"zone_1\"\tRelError: 3.09485e-02\tAbsError: 1.14118e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.09119e-02\tAbsError: 5.56477e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.66452e-05\tAbsError: 1.14062e-02\n", + " Region: \"zone_3\"\tRelError: 1.88221e-02\tAbsError: 1.42264e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49707e-03\tAbsError: 7.57186e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.66609e-03\tAbsError: 6.65454e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56223e-02\tAbsError: 6.29135e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.66485e-05\tAbsError: 1.14075e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 4.94839e+03\tAbsError: 4.92107e+17\n", + " Region: \"zone_1\"\tRelError: 4.46128e+00\tAbsError: 4.40156e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.45999e+00\tAbsError: 4.50395e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28861e-03\tAbsError: 3.95117e-01\n", + " Region: \"zone_3\"\tRelError: 4.94392e+03\tAbsError: 4.92107e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.87871e-01\tAbsError: 2.48166e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.17297e-01\tAbsError: 2.43941e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.94242e+03\tAbsError: 4.50397e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28861e-03\tAbsError: 3.95117e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.46377e+00\tAbsError: 1.61889e+15\n", + " Region: \"zone_1\"\tRelError: 2.62620e+00\tAbsError: 1.54784e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.62569e+00\tAbsError: 1.66901e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.10930e-04\tAbsError: 1.54617e-01\n", + " Region: \"zone_3\"\tRelError: 1.83757e+00\tAbsError: 1.61889e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.67086e-02\tAbsError: 8.09583e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.26945e-02\tAbsError: 8.09310e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78765e+00\tAbsError: 1.88492e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.11260e-04\tAbsError: 1.54716e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 9.07935e+00\tAbsError: 4.21709e+16\n", + " Region: \"zone_1\"\tRelError: 1.96831e+00\tAbsError: 2.18706e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96766e+00\tAbsError: 1.63075e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.50866e-04\tAbsError: 2.02399e-01\n", + " Region: \"zone_3\"\tRelError: 7.11104e+00\tAbsError: 4.21709e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87857e-01\tAbsError: 2.14181e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.48610e-01\tAbsError: 2.07529e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.67392e+00\tAbsError: 1.63077e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.50910e-04\tAbsError: 2.02415e-01\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 4.26515e-02\tAbsError: 1.23378e+13\n", + " Region: \"zone_1\"\tRelError: 2.61397e-02\tAbsError: 9.89629e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.61079e-02\tAbsError: 4.82587e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.17797e-05\tAbsError: 9.89147e-03\n", + " Region: \"zone_3\"\tRelError: 1.65119e-02\tAbsError: 1.23378e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.29950e-03\tAbsError: 6.56649e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.44636e-03\tAbsError: 5.77128e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37342e-02\tAbsError: 5.45583e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.17826e-05\tAbsError: 9.89255e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.20336e+01\tAbsError: 2.46879e+17\n", + " Region: \"zone_1\"\tRelError: 8.11675e+00\tAbsError: 2.66063e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.11597e+00\tAbsError: 2.91084e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78026e-04\tAbsError: 2.36955e-01\n", + " Region: \"zone_3\"\tRelError: 3.91690e+00\tAbsError: 2.46879e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.88549e-01\tAbsError: 1.26035e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.12926e-01\tAbsError: 1.20843e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.91464e+00\tAbsError: 2.91085e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.78044e-04\tAbsError: 2.36961e-01\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 6.70044e+01\tAbsError: 5.61857e+17\n", + " Region: \"zone_1\"\tRelError: 2.42090e+01\tAbsError: 2.06394e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42024e+01\tAbsError: 3.57341e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.58597e-03\tAbsError: 2.02821e+00\n", + " Region: \"zone_3\"\tRelError: 4.27954e+01\tAbsError: 5.61857e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.47044e-01\tAbsError: 2.81674e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.74385e-01\tAbsError: 2.80183e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.16674e+01\tAbsError: 3.58376e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.58662e-03\tAbsError: 2.02843e+00\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 5.44746e+00\tAbsError: 2.38303e+14\n", + " Region: \"zone_1\"\tRelError: 5.00564e+00\tAbsError: 2.74124e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.00476e+00\tAbsError: 8.75071e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.82246e-04\tAbsError: 2.74036e-01\n", + " Region: \"zone_3\"\tRelError: 4.41816e-01\tAbsError: 2.38303e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.06253e-02\tAbsError: 1.20810e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.16112e-02\tAbsError: 1.17493e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.58697e-01\tAbsError: 1.65900e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.82332e-04\tAbsError: 2.74069e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 1.33681e+00\tAbsError: 8.92458e+15\n", + " Region: \"zone_1\"\tRelError: 4.37983e-01\tAbsError: 1.15693e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.34182e-01\tAbsError: 4.47663e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.80110e-03\tAbsError: 1.15648e+00\n", + " Region: \"zone_3\"\tRelError: 8.98824e-01\tAbsError: 8.92458e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.85487e-01\tAbsError: 4.69252e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.61836e-01\tAbsError: 4.23206e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.47698e-01\tAbsError: 6.59283e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.80216e-03\tAbsError: 1.15676e+00\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 3.73691e-02\tAbsError: 1.06989e+13\n", + " Region: \"zone_1\"\tRelError: 2.31924e-02\tAbsError: 8.58213e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31649e-02\tAbsError: 4.18496e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75588e-05\tAbsError: 8.57794e-03\n", + " Region: \"zone_3\"\tRelError: 1.41767e-02\tAbsError: 1.06989e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12600e-03\tAbsError: 5.69436e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.25314e-03\tAbsError: 5.00455e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17700e-02\tAbsError: 4.73133e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75613e-05\tAbsError: 8.57888e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.76815e+00\tAbsError: 1.13600e+17\n", + " Region: \"zone_1\"\tRelError: 7.81177e-01\tAbsError: 3.81744e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.80007e-01\tAbsError: 2.45868e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16971e-03\tAbsError: 3.57157e-01\n", + " Region: \"zone_3\"\tRelError: 3.98698e+00\tAbsError: 1.13600e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.09959e-01\tAbsError: 5.71703e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.47815e-01\tAbsError: 5.64292e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.52803e+00\tAbsError: 2.45892e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16971e-03\tAbsError: 3.57157e-01\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 3.21186e-02\tAbsError: 9.27848e+12\n", + " Region: \"zone_1\"\tRelError: 1.97174e-02\tAbsError: 7.44243e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96935e-02\tAbsError: 3.62926e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.38996e-05\tAbsError: 7.43880e-03\n", + " Region: \"zone_3\"\tRelError: 1.24011e-02\tAbsError: 9.27848e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.77170e-04\tAbsError: 4.93826e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.08759e-03\tAbsError: 4.34022e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03125e-02\tAbsError: 4.10300e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39018e-05\tAbsError: 7.43961e-03\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.64423e+00\tAbsError: 2.28506e+17\n", + " Region: \"zone_1\"\tRelError: 1.44133e+00\tAbsError: 1.55539e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43634e+00\tAbsError: 2.57722e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.99175e-03\tAbsError: 1.52962e+00\n", + " Region: \"zone_3\"\tRelError: 2.20289e+00\tAbsError: 2.28506e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.58253e-01\tAbsError: 1.14538e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.22799e-01\tAbsError: 1.13968e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.61685e+00\tAbsError: 2.57722e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.99307e-03\tAbsError: 1.53003e+00\n", "Iteration: 8\n", - " Device: \"device\"\tRelError: 2.11111e-01\tAbsError: 2.79827e+13\n", - " Region: \"zone_1\"\tRelError: 7.25122e-03\tAbsError: 1.74217e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 7.24621e-03\tAbsError: 1.19347e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.00326e-06\tAbsError: 1.74098e-03\n", - " Region: \"zone_3\"\tRelError: 2.03859e-01\tAbsError: 2.79827e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.67617e-05\tAbsError: 1.39372e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.89481e-05\tAbsError: 1.40455e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03729e-01\tAbsError: 1.20196e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.00391e-06\tAbsError: 1.74126e-03\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 9.40066e-02\tAbsError: 6.30541e+15\n", - " Region: \"zone_1\"\tRelError: 3.48618e-02\tAbsError: 2.65888e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 3.47869e-02\tAbsError: 1.70704e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.48919e-05\tAbsError: 2.64181e-02\n", - " Region: \"zone_3\"\tRelError: 5.91448e-02\tAbsError: 6.30541e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.61160e-03\tAbsError: 3.10397e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.18077e-03\tAbsError: 3.20144e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 4.72775e-02\tAbsError: 1.71665e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.49375e-05\tAbsError: 2.64342e-02\n", + " Device: \"device\"\tRelError: 2.62648e+00\tAbsError: 6.08186e+14\n", + " Region: \"zone_1\"\tRelError: 8.97176e-01\tAbsError: 1.73626e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.96618e-01\tAbsError: 9.19363e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.58373e-04\tAbsError: 1.73534e-01\n", + " Region: \"zone_3\"\tRelError: 1.72931e+00\tAbsError: 6.08186e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.41521e-02\tAbsError: 3.09193e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.56048e-02\tAbsError: 2.98993e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67899e+00\tAbsError: 1.02734e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.58424e-04\tAbsError: 1.73553e-01\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 7.45621e+01\tAbsError: 4.93706e+15\n", + " Region: \"zone_1\"\tRelError: 7.04755e+01\tAbsError: 5.20389e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.04738e+01\tAbsError: 3.08971e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67479e-03\tAbsError: 5.20080e-01\n", + " Region: \"zone_3\"\tRelError: 4.08666e+00\tAbsError: 4.93706e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.23172e-02\tAbsError: 2.39250e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.07196e-02\tAbsError: 2.54456e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.92195e+00\tAbsError: 3.28792e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67495e-03\tAbsError: 5.20138e-01\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 2.96409e+00\tAbsError: 1.21747e+16\n", + " Region: \"zone_1\"\tRelError: 1.09964e+00\tAbsError: 8.42208e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09687e+00\tAbsError: 5.78585e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.76450e-03\tAbsError: 8.41630e-01\n", + " Region: \"zone_3\"\tRelError: 1.86445e+00\tAbsError: 1.21747e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.13624e-01\tAbsError: 6.14097e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.88184e-02\tAbsError: 6.03375e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67924e+00\tAbsError: 5.78585e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.76605e-03\tAbsError: 8.42162e-01\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 2.80692e-02\tAbsError: 8.04607e+12\n", + " Region: \"zone_1\"\tRelError: 1.73955e-02\tAbsError: 6.45412e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73747e-02\tAbsError: 3.14728e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.07254e-05\tAbsError: 6.45097e-03\n", + " Region: \"zone_3\"\tRelError: 1.06737e-02\tAbsError: 8.04607e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.46881e-04\tAbsError: 4.28240e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.42515e-04\tAbsError: 3.76367e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.86360e-03\tAbsError: 3.55815e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.07273e-05\tAbsError: 6.45167e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.41597e+01\tAbsError: 2.85998e+16\n", + " Region: \"zone_1\"\tRelError: 2.05286e+01\tAbsError: 6.36129e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05266e+01\tAbsError: 1.64933e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98841e-03\tAbsError: 6.19636e-01\n", + " Region: \"zone_3\"\tRelError: 3.63109e+00\tAbsError: 2.85998e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.08234e-01\tAbsError: 1.44225e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03424e-01\tAbsError: 1.41773e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.41744e+00\tAbsError: 1.65621e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.98855e-03\tAbsError: 6.19687e-01\n", "Iteration: 9\n", - " Device: \"device\"\tRelError: 9.24879e-02\tAbsError: 1.23871e+13\n", - " Region: \"zone_1\"\tRelError: 2.93353e-03\tAbsError: 2.91323e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.93269e-03\tAbsError: 4.76030e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.36559e-07\tAbsError: 2.90847e-04\n", - " Region: \"zone_3\"\tRelError: 8.95543e-02\tAbsError: 1.23871e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.95573e-05\tAbsError: 6.16953e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.91930e-05\tAbsError: 6.21758e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 8.95147e-02\tAbsError: 4.79468e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.36647e-07\tAbsError: 2.90878e-04\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 1.30073e-03\tAbsError: 2.64584e+14\n", - " Region: \"zone_1\"\tRelError: 2.52092e-04\tAbsError: 1.96953e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.96256e-04\tAbsError: 7.14084e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.58368e-05\tAbsError: 1.96882e-02\n", - " Region: \"zone_3\"\tRelError: 1.04864e-03\tAbsError: 2.64584e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.14833e-04\tAbsError: 1.30426e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.17855e-04\tAbsError: 1.34158e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 2.60109e-04\tAbsError: 7.17928e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.58455e-05\tAbsError: 1.96915e-02\n", + " Device: \"device\"\tRelError: 1.94436e+00\tAbsError: 3.32919e+14\n", + " Region: \"zone_1\"\tRelError: 1.37313e+00\tAbsError: 1.80803e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37255e+00\tAbsError: 6.15881e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.81901e-04\tAbsError: 1.80741e-01\n", + " Region: \"zone_3\"\tRelError: 5.71230e-01\tAbsError: 3.32919e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.45329e-02\tAbsError: 1.68990e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.68983e-02\tAbsError: 1.63929e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.19217e-01\tAbsError: 1.01661e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.81954e-04\tAbsError: 1.80761e-01\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 5.33687e+00\tAbsError: 1.61074e+15\n", + " Region: \"zone_1\"\tRelError: 9.68753e-01\tAbsError: 6.25360e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.66735e-01\tAbsError: 2.07285e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.01721e-03\tAbsError: 6.25153e-01\n", + " Region: \"zone_3\"\tRelError: 4.36812e+00\tAbsError: 1.61074e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.25606e-02\tAbsError: 7.77439e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.81098e-02\tAbsError: 8.33298e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.17543e+00\tAbsError: 3.80698e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.01740e-03\tAbsError: 6.25223e-01\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.86501e+01\tAbsError: 4.71542e+15\n", + " Region: \"zone_1\"\tRelError: 1.73320e+01\tAbsError: 1.86140e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73314e+01\tAbsError: 1.56558e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.15157e-04\tAbsError: 1.85983e-01\n", + " Region: \"zone_3\"\tRelError: 1.31804e+00\tAbsError: 4.71542e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.33117e-02\tAbsError: 2.32304e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.22963e-02\tAbsError: 2.39237e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26182e+00\tAbsError: 1.58550e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.15560e-04\tAbsError: 1.86103e-01\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 2.41789e-02\tAbsError: 6.97778e+12\n", + " Region: \"zone_1\"\tRelError: 1.48620e-02\tAbsError: 5.59702e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48440e-02\tAbsError: 2.72936e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79735e-05\tAbsError: 5.59429e-03\n", + " Region: \"zone_3\"\tRelError: 9.31686e-03\tAbsError: 6.97778e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.34812e-04\tAbsError: 3.71377e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.17840e-04\tAbsError: 3.26401e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.74623e-03\tAbsError: 3.08562e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79751e-05\tAbsError: 5.59490e-03\n", "Iteration: 10\n", - " Device: \"device\"\tRelError: 1.79957e-02\tAbsError: 2.00241e+12\n", - " Region: \"zone_1\"\tRelError: 5.80226e-04\tAbsError: 1.06766e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 5.79919e-04\tAbsError: 7.62075e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.06294e-07\tAbsError: 1.06690e-04\n", - " Region: \"zone_3\"\tRelError: 1.74155e-02\tAbsError: 2.00241e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.83435e-06\tAbsError: 9.97535e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.43171e-06\tAbsError: 1.00487e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.74069e-02\tAbsError: 7.69605e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.06408e-07\tAbsError: 1.06730e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.57360e-03\tAbsError: 1.38202e+14\n", - " Region: \"zone_1\"\tRelError: 2.18644e-03\tAbsError: 1.28048e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.18283e-03\tAbsError: 5.49178e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.61467e-06\tAbsError: 1.27499e-03\n", - " Region: \"zone_3\"\tRelError: 3.38715e-03\tAbsError: 1.38202e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.63180e-04\tAbsError: 6.70794e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.54114e-04\tAbsError: 7.11228e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 2.96624e-03\tAbsError: 5.52045e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.61609e-06\tAbsError: 1.27549e-03\n", + " Device: \"device\"\tRelError: 1.75377e+00\tAbsError: 3.68614e+14\n", + " Region: \"zone_1\"\tRelError: 5.83797e-01\tAbsError: 1.41742e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.83342e-01\tAbsError: 6.14763e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.55935e-04\tAbsError: 1.41680e-01\n", + " Region: \"zone_3\"\tRelError: 1.16998e+00\tAbsError: 3.68614e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.87826e-02\tAbsError: 1.87212e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.07007e-02\tAbsError: 1.81402e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13004e+00\tAbsError: 7.89851e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.55976e-04\tAbsError: 1.41696e-01\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 5.22947e+00\tAbsError: 2.38506e+15\n", + " Region: \"zone_1\"\tRelError: 3.07081e+00\tAbsError: 4.58721e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.06934e+00\tAbsError: 1.91957e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47737e-03\tAbsError: 4.58529e-01\n", + " Region: \"zone_3\"\tRelError: 2.15866e+00\tAbsError: 2.38506e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.21083e-02\tAbsError: 1.15573e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.73190e-02\tAbsError: 1.22933e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02775e+00\tAbsError: 2.64620e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47751e-03\tAbsError: 4.58579e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 9.98171e+00\tAbsError: 3.04648e+15\n", + " Region: \"zone_1\"\tRelError: 8.62875e-01\tAbsError: 8.31516e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.60200e-01\tAbsError: 2.46187e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.67469e-03\tAbsError: 8.31270e-01\n", + " Region: \"zone_3\"\tRelError: 9.11883e+00\tAbsError: 3.04648e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.17975e-01\tAbsError: 1.56043e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.33740e-01\tAbsError: 1.48605e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.86444e+00\tAbsError: 4.62569e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.67493e-03\tAbsError: 8.31360e-01\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.79403e+00\tAbsError: 3.97821e+14\n", + " Region: \"zone_1\"\tRelError: 1.40375e+00\tAbsError: 2.93745e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40278e+00\tAbsError: 1.01795e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.72195e-04\tAbsError: 2.93643e-01\n", + " Region: \"zone_3\"\tRelError: 3.90276e-01\tAbsError: 3.97821e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.71963e-02\tAbsError: 1.95259e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.48752e-02\tAbsError: 2.02562e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97231e-01\tAbsError: 1.92379e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.72664e-04\tAbsError: 2.93781e-01\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 2.10901e-02\tAbsError: 6.05101e+12\n", + " Region: \"zone_1\"\tRelError: 1.30561e-02\tAbsError: 4.85376e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30405e-02\tAbsError: 2.36689e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55864e-05\tAbsError: 4.85139e-03\n", + " Region: \"zone_3\"\tRelError: 8.03403e-03\tAbsError: 6.05101e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.36935e-04\tAbsError: 3.22055e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.08867e-04\tAbsError: 2.83046e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.67265e-03\tAbsError: 2.67587e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55878e-05\tAbsError: 4.85192e-03\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 1.36435e+00\tAbsError: 2.78307e+14\n", + " Region: \"zone_1\"\tRelError: 8.56368e-01\tAbsError: 1.28071e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.55956e-01\tAbsError: 4.90712e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.12150e-04\tAbsError: 1.28022e-01\n", + " Region: \"zone_3\"\tRelError: 5.07983e-01\tAbsError: 2.78307e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.70188e-02\tAbsError: 1.41276e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.89189e-02\tAbsError: 1.37031e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.71634e-01\tAbsError: 7.08264e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.12187e-04\tAbsError: 1.28035e-01\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 6.90884e+00\tAbsError: 1.57673e+15\n", + " Region: \"zone_1\"\tRelError: 1.87935e+00\tAbsError: 4.28721e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.87796e+00\tAbsError: 1.41439e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38278e-03\tAbsError: 4.28579e-01\n", + " Region: \"zone_3\"\tRelError: 5.02950e+00\tAbsError: 1.57673e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.87372e-02\tAbsError: 7.63523e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.49776e-02\tAbsError: 8.13211e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.90440e+00\tAbsError: 2.42973e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38291e-03\tAbsError: 4.28626e-01\n", "Iteration: 11\n", - " Device: \"device\"\tRelError: 6.16882e-03\tAbsError: 7.25783e+11\n", - " Region: \"zone_1\"\tRelError: 1.98056e-04\tAbsError: 2.16951e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.97994e-04\tAbsError: 2.65471e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.22079e-08\tAbsError: 2.16685e-05\n", - " Region: \"zone_3\"\tRelError: 5.97077e-03\tAbsError: 7.25783e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06142e-06\tAbsError: 3.61574e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.32785e-06\tAbsError: 3.64210e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 5.96832e-03\tAbsError: 2.68167e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.22311e-08\tAbsError: 2.16771e-05\n", + " Device: \"device\"\tRelError: 2.43079e+00\tAbsError: 1.77748e+15\n", + " Region: \"zone_1\"\tRelError: 1.29820e+00\tAbsError: 1.83058e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29761e+00\tAbsError: 8.85781e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.89762e-04\tAbsError: 1.82969e-01\n", + " Region: \"zone_3\"\tRelError: 1.13260e+00\tAbsError: 1.77748e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.65257e-02\tAbsError: 8.77734e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.71261e-02\tAbsError: 8.99749e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07836e+00\tAbsError: 1.09882e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.89817e-04\tAbsError: 1.82989e-01\n", "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.97838e-04\tAbsError: 1.04334e+13\n", - " Region: \"zone_1\"\tRelError: 1.51323e-04\tAbsError: 6.35179e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49519e-04\tAbsError: 4.00189e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.80376e-06\tAbsError: 6.34779e-04\n", - " Region: \"zone_3\"\tRelError: 2.46515e-04\tAbsError: 1.04334e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.56648e-05\tAbsError: 5.11483e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.60654e-05\tAbsError: 5.31857e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.02981e-04\tAbsError: 4.02172e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.80376e-06\tAbsError: 6.34779e-04\n", + " Device: \"device\"\tRelError: 8.92878e+00\tAbsError: 4.54147e+15\n", + " Region: \"zone_1\"\tRelError: 7.24093e+00\tAbsError: 5.14043e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.23927e+00\tAbsError: 2.24088e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65053e-03\tAbsError: 5.13819e-01\n", + " Region: \"zone_3\"\tRelError: 1.68785e+00\tAbsError: 4.54147e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.53106e-02\tAbsError: 2.25493e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.71482e-02\tAbsError: 2.28654e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54374e+00\tAbsError: 2.74072e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65067e-03\tAbsError: 5.13870e-01\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 1.81974e-02\tAbsError: 5.24757e+12\n", + " Region: \"zone_1\"\tRelError: 1.11960e-02\tAbsError: 4.20919e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11825e-02\tAbsError: 2.05259e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35168e-05\tAbsError: 4.20714e-03\n", + " Region: \"zone_3\"\tRelError: 7.00140e-03\tAbsError: 5.24757e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.52575e-04\tAbsError: 2.79290e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.15007e-04\tAbsError: 2.45466e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.82030e-03\tAbsError: 2.32051e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35180e-05\tAbsError: 4.20760e-03\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.20162e+00\tAbsError: 2.55537e+14\n", + " Region: \"zone_1\"\tRelError: 4.35169e-01\tAbsError: 1.07010e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.34825e-01\tAbsError: 4.38572e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.44248e-04\tAbsError: 1.06967e-01\n", + " Region: \"zone_3\"\tRelError: 7.66454e-01\tAbsError: 2.55537e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.40542e-02\tAbsError: 1.29742e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.56194e-02\tAbsError: 1.25795e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.36436e-01\tAbsError: 5.90875e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.44279e-04\tAbsError: 1.06978e-01\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 3.54129e+00\tAbsError: 1.55173e+15\n", + " Region: \"zone_1\"\tRelError: 2.15179e+00\tAbsError: 3.48395e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.15066e+00\tAbsError: 1.32396e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12238e-03\tAbsError: 3.48262e-01\n", + " Region: \"zone_3\"\tRelError: 1.38951e+00\tAbsError: 1.55173e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.57996e-02\tAbsError: 7.52117e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.06908e-02\tAbsError: 7.99609e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29189e+00\tAbsError: 1.95023e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12249e-03\tAbsError: 3.48300e-01\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 3.20480e+00\tAbsError: 8.01863e+14\n", + " Region: \"zone_1\"\tRelError: 2.74227e+00\tAbsError: 1.92916e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74164e+00\tAbsError: 5.92801e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.22021e-04\tAbsError: 1.92857e-01\n", + " Region: \"zone_3\"\tRelError: 4.62534e-01\tAbsError: 8.01863e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.67519e-02\tAbsError: 3.95024e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.88370e-02\tAbsError: 4.06839e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.06323e-01\tAbsError: 1.10568e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.22078e-04\tAbsError: 1.92878e-01\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 3.50215e+00\tAbsError: 1.61939e+15\n", + " Region: \"zone_1\"\tRelError: 1.91642e+00\tAbsError: 5.18719e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91475e+00\tAbsError: 1.57548e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66855e-03\tAbsError: 5.18562e-01\n", + " Region: \"zone_3\"\tRelError: 1.58573e+00\tAbsError: 1.61939e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.03227e-02\tAbsError: 7.99126e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.91804e-02\tAbsError: 8.20262e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43456e+00\tAbsError: 2.90978e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66870e-03\tAbsError: 5.18617e-01\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 1.58499e-02\tAbsError: 4.55062e+12\n", + " Region: \"zone_1\"\tRelError: 9.80406e-03\tAbsError: 3.65023e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.79234e-03\tAbsError: 1.78000e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17217e-05\tAbsError: 3.64845e-03\n", + " Region: \"zone_3\"\tRelError: 6.04586e-03\tAbsError: 4.55062e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.79027e-04\tAbsError: 2.42199e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.33129e-04\tAbsError: 2.12863e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.02198e-03\tAbsError: 2.01236e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17227e-05\tAbsError: 3.64885e-03\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 9.81745e-01\tAbsError: 2.11485e+14\n", + " Region: \"zone_1\"\tRelError: 5.73807e-01\tAbsError: 9.30733e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.73508e-01\tAbsError: 3.68459e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.99507e-04\tAbsError: 9.30365e-02\n", + " Region: \"zone_3\"\tRelError: 4.07937e-01\tAbsError: 2.11485e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23035e-02\tAbsError: 1.07360e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.37111e-02\tAbsError: 1.04124e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.81623e-01\tAbsError: 5.12872e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.99533e-04\tAbsError: 9.30466e-02\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 2.47020e+01\tAbsError: 1.23219e+15\n", + " Region: \"zone_1\"\tRelError: 2.35049e+00\tAbsError: 3.04185e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34951e+00\tAbsError: 1.08289e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.80946e-04\tAbsError: 3.04077e-01\n", + " Region: \"zone_3\"\tRelError: 2.23516e+01\tAbsError: 1.23219e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.08402e-02\tAbsError: 5.97093e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.55183e-02\tAbsError: 6.35095e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.22642e+01\tAbsError: 1.69159e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.81034e-04\tAbsError: 3.04110e-01\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.51139e+00\tAbsError: 1.00256e+15\n", + " Region: \"zone_1\"\tRelError: 7.56601e-01\tAbsError: 1.48004e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.56124e-01\tAbsError: 5.75680e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.76944e-04\tAbsError: 1.47947e-01\n", + " Region: \"zone_3\"\tRelError: 7.54786e-01\tAbsError: 1.00256e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98127e-02\tAbsError: 4.94826e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.17014e-02\tAbsError: 5.07738e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.12795e-01\tAbsError: 8.30660e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.76987e-04\tAbsError: 1.47963e-01\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 6.38695e+00\tAbsError: 2.34877e+15\n", + " Region: \"zone_1\"\tRelError: 5.25472e+00\tAbsError: 3.90747e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.25347e+00\tAbsError: 1.44122e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.25524e-03\tAbsError: 3.90603e-01\n", + " Region: \"zone_3\"\tRelError: 1.13223e+00\tAbsError: 2.34877e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.04501e-02\tAbsError: 1.16650e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.68878e-02\tAbsError: 1.18227e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02364e+00\tAbsError: 2.16430e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.25535e-03\tAbsError: 3.90644e-01\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 1.36931e-02\tAbsError: 3.94638e+12\n", + " Region: \"zone_1\"\tRelError: 8.43069e-03\tAbsError: 3.16549e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.42052e-03\tAbsError: 1.54363e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01652e-05\tAbsError: 3.16394e-03\n", + " Region: \"zone_3\"\tRelError: 5.26237e-03\tAbsError: 3.94638e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.15540e-04\tAbsError: 2.10038e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.62487e-04\tAbsError: 1.84600e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.37418e-03\tAbsError: 1.74512e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01661e-05\tAbsError: 3.16429e-03\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 8.50910e-01\tAbsError: 1.84723e+14\n", + " Region: \"zone_1\"\tRelError: 3.32766e-01\tAbsError: 7.92122e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.32511e-01\tAbsError: 3.19545e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54835e-04\tAbsError: 7.91803e-02\n", + " Region: \"zone_3\"\tRelError: 5.18144e-01\tAbsError: 1.84723e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03916e-02\tAbsError: 9.37799e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.15715e-02\tAbsError: 9.09429e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.95926e-01\tAbsError: 4.36359e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54858e-04\tAbsError: 7.91889e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 3.04127e+00\tAbsError: 1.09104e+15\n", + " Region: \"zone_1\"\tRelError: 1.91582e+00\tAbsError: 2.55189e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91500e+00\tAbsError: 9.46765e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.22251e-04\tAbsError: 2.55094e-01\n", + " Region: \"zone_3\"\tRelError: 1.12545e+00\tAbsError: 1.09104e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.34119e-02\tAbsError: 5.28832e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.71617e-02\tAbsError: 5.62203e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05405e+00\tAbsError: 1.41397e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.22324e-04\tAbsError: 2.55121e-01\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.68939e+00\tAbsError: 7.00900e+14\n", + " Region: \"zone_1\"\tRelError: 1.29569e+00\tAbsError: 1.33335e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29526e+00\tAbsError: 4.45716e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.29882e-04\tAbsError: 1.33291e-01\n", + " Region: \"zone_3\"\tRelError: 3.93698e-01\tAbsError: 7.00900e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.78380e-02\tAbsError: 3.45690e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.97691e-02\tAbsError: 3.55211e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.55661e-01\tAbsError: 7.40521e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.29920e-04\tAbsError: 1.33305e-01\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 3.68132e+00\tAbsError: 1.53860e+15\n", + " Region: \"zone_1\"\tRelError: 2.73903e+00\tAbsError: 3.48417e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73791e+00\tAbsError: 1.10848e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12057e-03\tAbsError: 3.48306e-01\n", + " Region: \"zone_3\"\tRelError: 9.42293e-01\tAbsError: 1.53860e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.63266e-02\tAbsError: 7.62402e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.20680e-02\tAbsError: 7.76195e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.42778e-01\tAbsError: 1.93553e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12067e-03\tAbsError: 3.48343e-01\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 1.19138e-02\tAbsError: 3.42227e+12\n", + " Region: \"zone_1\"\tRelError: 7.36478e-03\tAbsError: 2.74512e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.35597e-03\tAbsError: 1.33864e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.81519e-06\tAbsError: 2.74379e-03\n", + " Region: \"zone_3\"\tRelError: 4.54897e-03\tAbsError: 3.42227e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.60263e-04\tAbsError: 1.82144e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.00953e-04\tAbsError: 1.60082e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.77894e-03\tAbsError: 1.51338e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.81598e-06\tAbsError: 2.74409e-03\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 7.11856e-01\tAbsError: 1.56864e+14\n", + " Region: \"zone_1\"\tRelError: 3.95573e-01\tAbsError: 6.81767e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.95354e-01\tAbsError: 2.72405e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19381e-04\tAbsError: 6.81494e-02\n", + " Region: \"zone_3\"\tRelError: 3.16283e-01\tAbsError: 1.56864e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.99597e-03\tAbsError: 7.96336e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.00289e-02\tAbsError: 7.72308e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97039e-01\tAbsError: 3.75342e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.19401e-04\tAbsError: 6.81568e-02\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 1.06885e+01\tAbsError: 9.11473e+14\n", + " Region: \"zone_1\"\tRelError: 2.63485e+00\tAbsError: 2.18573e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.63414e+00\tAbsError: 7.97189e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.04771e-04\tAbsError: 2.18493e-01\n", + " Region: \"zone_3\"\tRelError: 8.05369e+00\tAbsError: 9.11473e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91400e-02\tAbsError: 4.41778e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.25149e-02\tAbsError: 4.69695e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.99133e+00\tAbsError: 1.20792e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.04834e-04\tAbsError: 2.18517e-01\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 1.04105e+00\tAbsError: 6.62226e+14\n", + " Region: \"zone_1\"\tRelError: 5.43725e-01\tAbsError: 1.09430e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.43372e-01\tAbsError: 3.98496e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52676e-04\tAbsError: 1.09390e-01\n", + " Region: \"zone_3\"\tRelError: 4.97323e-01\tAbsError: 6.62226e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.44324e-02\tAbsError: 3.26772e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.60316e-02\tAbsError: 3.35454e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.66507e-01\tAbsError: 6.05127e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52707e-04\tAbsError: 1.09402e-01\n", "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.32512e-03\tAbsError: 1.39840e+11\n", - " Region: \"zone_1\"\tRelError: 4.25623e-05\tAbsError: 6.99519e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.25422e-05\tAbsError: 5.61701e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00663e-08\tAbsError: 6.98958e-06\n", - " Region: \"zone_3\"\tRelError: 1.28256e-03\tAbsError: 1.39840e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.35090e-07\tAbsError: 6.96726e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.14577e-07\tAbsError: 7.01672e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.28199e-03\tAbsError: 5.67287e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.00739e-08\tAbsError: 6.99239e-06\n", + " Device: \"device\"\tRelError: 3.24585e+00\tAbsError: 1.50939e+15\n", + " Region: \"zone_1\"\tRelError: 2.51917e+00\tAbsError: 2.82388e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51827e+00\tAbsError: 9.85428e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.07359e-04\tAbsError: 2.82289e-01\n", + " Region: \"zone_3\"\tRelError: 7.26679e-01\tAbsError: 1.50939e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.65499e-02\tAbsError: 7.49287e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.09547e-02\tAbsError: 7.60108e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.48267e-01\tAbsError: 1.56280e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.07439e-04\tAbsError: 2.82319e-01\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 1.03022e-02\tAbsError: 2.96784e+12\n", + " Region: \"zone_1\"\tRelError: 6.34638e-03\tAbsError: 2.38058e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.33873e-03\tAbsError: 1.16088e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.64461e-06\tAbsError: 2.37942e-03\n", + " Region: \"zone_3\"\tRelError: 3.95584e-03\tAbsError: 2.96784e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.12492e-04\tAbsError: 1.57957e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.47796e-04\tAbsError: 1.38827e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.28791e-03\tAbsError: 1.31240e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.64530e-06\tAbsError: 2.37968e-03\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 6.13704e-01\tAbsError: 1.35146e+14\n", + " Region: \"zone_1\"\tRelError: 2.54009e-01\tAbsError: 5.83271e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.53821e-01\tAbsError: 2.34277e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87651e-04\tAbsError: 5.83036e-02\n", + " Region: \"zone_3\"\tRelError: 3.59695e-01\tAbsError: 1.35146e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.65447e-03\tAbsError: 6.86090e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.52790e-03\tAbsError: 6.65365e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.43325e-01\tAbsError: 3.21087e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87668e-04\tAbsError: 5.83100e-02\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 2.71068e+00\tAbsError: 7.83675e+14\n", + " Region: \"zone_1\"\tRelError: 1.78609e+00\tAbsError: 1.85111e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78549e+00\tAbsError: 6.83436e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.96516e-04\tAbsError: 1.85042e-01\n", + " Region: \"zone_3\"\tRelError: 9.24597e-01\tAbsError: 7.83675e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.42571e-02\tAbsError: 3.79857e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.70166e-02\tAbsError: 4.03818e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.72727e-01\tAbsError: 1.02153e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.96569e-04\tAbsError: 1.85062e-01\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 1.09903e+00\tAbsError: 5.29149e+14\n", + " Region: \"zone_1\"\tRelError: 7.94639e-01\tAbsError: 9.43120e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.94335e-01\tAbsError: 3.28233e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.04049e-04\tAbsError: 9.42792e-02\n", + " Region: \"zone_3\"\tRelError: 3.04386e-01\tAbsError: 5.29149e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.25081e-02\tAbsError: 2.61050e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.39396e-02\tAbsError: 2.68099e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.77634e-01\tAbsError: 5.20162e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.04076e-04\tAbsError: 9.42893e-02\n", "Iteration: 13\n", - " Device: \"device\"\tRelError: 4.07310e-04\tAbsError: 4.47841e+10\n", - " Region: \"zone_1\"\tRelError: 1.30926e-05\tAbsError: 1.54205e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 1.30881e-05\tAbsError: 1.75011e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.42203e-09\tAbsError: 1.54030e-06\n", - " Region: \"zone_3\"\tRelError: 3.94218e-04\tAbsError: 4.47841e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.33915e-08\tAbsError: 2.23135e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.92263e-08\tAbsError: 2.24706e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 3.94061e-04\tAbsError: 1.76782e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.42382e-09\tAbsError: 1.54097e-06\n", + " Device: \"device\"\tRelError: 4.20057e+00\tAbsError: 1.17655e+15\n", + " Region: \"zone_1\"\tRelError: 3.58997e+00\tAbsError: 2.41620e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.58919e+00\tAbsError: 8.05993e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.76979e-04\tAbsError: 2.41539e-01\n", + " Region: \"zone_3\"\tRelError: 6.10599e-01\tAbsError: 1.17655e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.19010e-02\tAbsError: 5.83806e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.57977e-02\tAbsError: 5.92743e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.42124e-01\tAbsError: 1.33547e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.77048e-04\tAbsError: 2.41565e-01\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 8.95622e-03\tAbsError: 2.57369e+12\n", + " Region: \"zone_1\"\tRelError: 5.53395e-03\tAbsError: 2.06445e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.52732e-03\tAbsError: 1.00671e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.62939e-06\tAbsError: 2.06344e-03\n", + " Region: \"zone_3\"\tRelError: 3.42227e-03\tAbsError: 2.57369e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.70941e-04\tAbsError: 1.36980e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.01543e-04\tAbsError: 1.20389e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.84316e-03\tAbsError: 1.13812e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.62999e-06\tAbsError: 2.06367e-03\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 5.18972e-01\tAbsError: 1.15581e+14\n", + " Region: \"zone_1\"\tRelError: 2.77731e-01\tAbsError: 5.00557e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.77570e-01\tAbsError: 2.00534e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61067e-04\tAbsError: 5.00357e-02\n", + " Region: \"zone_3\"\tRelError: 2.41241e-01\tAbsError: 1.15581e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.59868e-03\tAbsError: 5.86759e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.35633e-03\tAbsError: 5.69048e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27125e-01\tAbsError: 2.75497e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61081e-04\tAbsError: 5.00411e-02\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 5.84220e+00\tAbsError: 6.63753e+14\n", + " Region: \"zone_1\"\tRelError: 2.93487e+00\tAbsError: 1.57692e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.93436e+00\tAbsError: 5.79928e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.08420e-04\tAbsError: 1.57634e-01\n", + " Region: \"zone_3\"\tRelError: 2.90733e+00\tAbsError: 6.63753e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.09504e-02\tAbsError: 3.21737e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.33777e-02\tAbsError: 3.42016e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.86249e+00\tAbsError: 8.69205e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.08466e-04\tAbsError: 1.57651e-01\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 7.44040e-01\tAbsError: 4.62456e+14\n", + " Region: \"zone_1\"\tRelError: 4.08059e-01\tAbsError: 7.90611e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.07804e-01\tAbsError: 2.82287e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54815e-04\tAbsError: 7.90328e-02\n", + " Region: \"zone_3\"\tRelError: 3.35982e-01\tAbsError: 4.62456e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.04028e-02\tAbsError: 2.28178e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.15913e-02\tAbsError: 2.34278e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.13733e-01\tAbsError: 4.35643e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54838e-04\tAbsError: 7.90413e-02\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.96104e+00\tAbsError: 1.03586e+15\n", + " Region: \"zone_1\"\tRelError: 1.48303e+00\tAbsError: 2.00611e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48238e+00\tAbsError: 6.89093e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.44684e-04\tAbsError: 2.00542e-01\n", + " Region: \"zone_3\"\tRelError: 4.78011e-01\tAbsError: 1.03586e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.60212e-02\tAbsError: 5.14156e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.91334e-02\tAbsError: 5.21703e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22212e-01\tAbsError: 1.10706e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.44741e-04\tAbsError: 2.00563e-01\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 7.75022e-03\tAbsError: 2.23193e+12\n", + " Region: \"zone_1\"\tRelError: 4.77622e-03\tAbsError: 1.79029e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.77047e-03\tAbsError: 8.73027e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.74906e-06\tAbsError: 1.78942e-03\n", + " Region: \"zone_3\"\tRelError: 2.97400e-03\tAbsError: 2.23193e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.35001e-04\tAbsError: 1.18790e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.61549e-04\tAbsError: 1.04403e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.47170e-03\tAbsError: 9.86982e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.74958e-06\tAbsError: 1.78962e-03\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 4.46630e-01\tAbsError: 9.92026e+13\n", + " Region: \"zone_1\"\tRelError: 1.92505e-01\tAbsError: 4.28870e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92367e-01\tAbsError: 1.72064e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37980e-04\tAbsError: 4.28698e-02\n", + " Region: \"zone_3\"\tRelError: 2.54126e-01\tAbsError: 9.92026e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.63116e-03\tAbsError: 5.03617e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.27479e-03\tAbsError: 4.88409e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42082e-01\tAbsError: 2.36033e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.37993e-04\tAbsError: 4.28744e-02\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 2.41080e+00\tAbsError: 5.65939e+14\n", + " Region: \"zone_1\"\tRelError: 1.66383e+00\tAbsError: 1.33920e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66340e+00\tAbsError: 4.94282e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31587e-04\tAbsError: 1.33870e-01\n", + " Region: \"zone_3\"\tRelError: 7.46966e-01\tAbsError: 5.65939e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.75752e-02\tAbsError: 2.74314e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.95844e-02\tAbsError: 2.91625e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.09375e-01\tAbsError: 7.37678e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31625e-04\tAbsError: 1.33885e-01\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 7.45828e-01\tAbsError: 3.84781e+14\n", + " Region: \"zone_1\"\tRelError: 5.18304e-01\tAbsError: 6.72605e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.18087e-01\tAbsError: 2.36964e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16830e-04\tAbsError: 6.72368e-02\n", + " Region: \"zone_3\"\tRelError: 2.27524e-01\tAbsError: 3.84781e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.89721e-03\tAbsError: 1.89841e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.92581e-03\tAbsError: 1.94939e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08484e-01\tAbsError: 3.70352e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16849e-04\tAbsError: 6.72441e-02\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 5.63799e+00\tAbsError: 8.51300e+14\n", + " Region: \"zone_1\"\tRelError: 5.23066e+00\tAbsError: 1.69412e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.23011e+00\tAbsError: 5.74328e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.44721e-04\tAbsError: 1.69354e-01\n", + " Region: \"zone_3\"\tRelError: 4.07328e-01\tAbsError: 8.51300e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.22866e-02\tAbsError: 4.22500e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.49915e-02\tAbsError: 4.28799e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.59505e-01\tAbsError: 9.33922e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.44770e-04\tAbsError: 1.69372e-01\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 6.73352e-03\tAbsError: 1.93552e+12\n", + " Region: \"zone_1\"\tRelError: 4.15912e-03\tAbsError: 1.55255e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.15413e-03\tAbsError: 7.57089e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.98558e-06\tAbsError: 1.55179e-03\n", + " Region: \"zone_3\"\tRelError: 2.57440e-03\tAbsError: 1.93552e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.03763e-04\tAbsError: 1.03015e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.26779e-04\tAbsError: 9.05377e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13888e-03\tAbsError: 8.55915e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.98603e-06\tAbsError: 1.55196e-03\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 3.79703e-01\tAbsError: 8.50027e+13\n", + " Region: \"zone_1\"\tRelError: 1.97521e-01\tAbsError: 3.67758e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97402e-01\tAbsError: 1.47447e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18333e-04\tAbsError: 3.67610e-02\n", + " Region: \"zone_3\"\tRelError: 1.82182e-01\tAbsError: 8.50027e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.84506e-03\tAbsError: 4.31527e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.40109e-03\tAbsError: 4.18499e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.71817e-01\tAbsError: 2.02382e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18343e-04\tAbsError: 3.67650e-02\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 4.95933e+00\tAbsError: 4.81025e+14\n", + " Region: \"zone_1\"\tRelError: 3.40624e+00\tAbsError: 1.13910e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40587e+00\tAbsError: 4.20206e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.67237e-04\tAbsError: 1.13868e-01\n", + " Region: \"zone_3\"\tRelError: 1.55310e+00\tAbsError: 4.81025e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.51013e-02\tAbsError: 2.33157e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.68488e-02\tAbsError: 2.47868e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52078e+00\tAbsError: 6.27101e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.67270e-04\tAbsError: 1.13881e-01\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 5.37932e-01\tAbsError: 3.28676e+14\n", + " Region: \"zone_1\"\tRelError: 3.06487e-01\tAbsError: 5.67527e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.06304e-01\tAbsError: 2.01471e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82921e-04\tAbsError: 5.67325e-02\n", + " Region: \"zone_3\"\tRelError: 2.31444e-01\tAbsError: 3.28676e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.46822e-03\tAbsError: 1.62167e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.32767e-03\tAbsError: 1.66509e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.15465e-01\tAbsError: 3.12423e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.82938e-04\tAbsError: 5.67386e-02\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 1.61454e+00\tAbsError: 7.25194e+14\n", + " Region: \"zone_1\"\tRelError: 1.29291e+00\tAbsError: 1.41742e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29245e+00\tAbsError: 4.84985e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.55545e-04\tAbsError: 1.41694e-01\n", + " Region: \"zone_3\"\tRelError: 3.21630e-01\tAbsError: 7.25194e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.84193e-02\tAbsError: 3.59949e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.06233e-02\tAbsError: 3.65245e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.82132e-01\tAbsError: 7.80796e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.55585e-04\tAbsError: 1.41709e-01\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 5.82992e-03\tAbsError: 1.67850e+12\n", + " Region: \"zone_1\"\tRelError: 3.59389e-03\tAbsError: 1.34638e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.58956e-03\tAbsError: 6.56552e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.32353e-06\tAbsError: 1.34572e-03\n", + " Region: \"zone_3\"\tRelError: 2.23604e-03\tAbsError: 1.67850e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.76727e-04\tAbsError: 8.93350e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96692e-04\tAbsError: 7.85155e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85830e-03\tAbsError: 7.42251e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.32392e-06\tAbsError: 1.34587e-03\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 3.26506e-01\tAbsError: 7.28838e+13\n", + " Region: \"zone_1\"\tRelError: 1.44865e-01\tAbsError: 3.15218e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44763e-01\tAbsError: 1.26431e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01417e-04\tAbsError: 3.15091e-02\n", + " Region: \"zone_3\"\tRelError: 1.81641e-01\tAbsError: 7.28838e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.14073e-03\tAbsError: 3.70005e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.61437e-03\tAbsError: 3.58833e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.72785e-01\tAbsError: 1.73465e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.01426e-04\tAbsError: 3.15125e-02\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 2.11773e+00\tAbsError: 4.09151e+14\n", + " Region: \"zone_1\"\tRelError: 1.52640e+00\tAbsError: 9.68144e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52609e+00\tAbsError: 3.57506e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.12024e-04\tAbsError: 9.67786e-02\n", + " Region: \"zone_3\"\tRelError: 5.91326e-01\tAbsError: 4.09151e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.27222e-02\tAbsError: 1.98316e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.41802e-02\tAbsError: 2.10835e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.64112e-01\tAbsError: 5.32810e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.12052e-04\tAbsError: 9.67891e-02\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 5.16098e-01\tAbsError: 2.76788e+14\n", + " Region: \"zone_1\"\tRelError: 3.48578e-01\tAbsError: 4.80974e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.48423e-01\tAbsError: 1.70090e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55049e-04\tAbsError: 4.80804e-02\n", + " Region: \"zone_3\"\tRelError: 1.67519e-01\tAbsError: 2.76788e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.35529e-03\tAbsError: 1.36563e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.09104e-03\tAbsError: 1.40225e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53918e-01\tAbsError: 2.64714e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55062e-04\tAbsError: 4.80856e-02\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 1.32364e+01\tAbsError: 6.05463e+14\n", + " Region: \"zone_1\"\tRelError: 1.29601e+01\tAbsError: 1.19210e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29597e+01\tAbsError: 4.06455e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.83275e-04\tAbsError: 1.19169e-01\n", + " Region: \"zone_3\"\tRelError: 2.76354e-01\tAbsError: 6.05463e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.56472e-02\tAbsError: 3.00513e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.75405e-02\tAbsError: 3.04950e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42783e-01\tAbsError: 6.56288e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.83309e-04\tAbsError: 1.19182e-01\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 2.78392e-01\tAbsError: 6.24808e+13\n", + " Region: \"zone_1\"\tRelError: 1.41768e-01\tAbsError: 2.70241e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41681e-01\tAbsError: 1.08375e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.69538e-05\tAbsError: 2.70133e-02\n", + " Region: \"zone_3\"\tRelError: 1.36624e-01\tAbsError: 6.24808e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.55878e-03\tAbsError: 3.17192e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.96702e-03\tAbsError: 3.07616e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29011e-01\tAbsError: 1.48708e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.69616e-05\tAbsError: 2.70162e-02\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 5.06280e-03\tAbsError: 1.45560e+12\n", + " Region: \"zone_1\"\tRelError: 3.12634e-03\tAbsError: 1.16758e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.12259e-03\tAbsError: 5.69363e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.74937e-06\tAbsError: 1.16701e-03\n", + " Region: \"zone_3\"\tRelError: 1.93646e-03\tAbsError: 1.45560e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53241e-04\tAbsError: 7.74714e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.70550e-04\tAbsError: 6.80882e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60892e-03\tAbsError: 6.43683e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.74971e-06\tAbsError: 1.16714e-03\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 5.29323e+00\tAbsError: 3.48012e+14\n", + " Region: \"zone_1\"\tRelError: 4.34747e+00\tAbsError: 8.23149e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.34721e+00\tAbsError: 3.04029e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.65364e-04\tAbsError: 8.22845e-02\n", + " Region: \"zone_3\"\tRelError: 9.45760e-01\tAbsError: 3.48012e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.08968e-02\tAbsError: 1.68682e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.21563e-02\tAbsError: 1.79331e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.22442e-01\tAbsError: 4.52879e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.65387e-04\tAbsError: 8.22934e-02\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 3.89636e-01\tAbsError: 2.34832e+14\n", + " Region: \"zone_1\"\tRelError: 2.28196e-01\tAbsError: 4.06638e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.28065e-01\tAbsError: 1.44121e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31068e-04\tAbsError: 4.06494e-02\n", + " Region: \"zone_3\"\tRelError: 1.61440e-01\tAbsError: 2.34832e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.35352e-03\tAbsError: 1.15864e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.97090e-03\tAbsError: 1.18968e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49984e-01\tAbsError: 2.23787e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.31080e-04\tAbsError: 4.06537e-02\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 1.32100e+00\tAbsError: 5.10516e+14\n", + " Region: \"zone_1\"\tRelError: 1.10129e+00\tAbsError: 9.99805e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10097e+00\tAbsError: 3.41865e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.21347e-04\tAbsError: 9.99463e-02\n", + " Region: \"zone_3\"\tRelError: 2.19708e-01\tAbsError: 5.10516e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.30110e-02\tAbsError: 2.53395e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.45700e-02\tAbsError: 2.57121e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91806e-01\tAbsError: 5.50224e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.21376e-04\tAbsError: 9.99571e-02\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 2.39246e-01\tAbsError: 5.35596e+13\n", + " Region: \"zone_1\"\tRelError: 1.08382e-01\tAbsError: 2.31659e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08307e-01\tAbsError: 9.29112e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.45339e-05\tAbsError: 2.31566e-02\n", + " Region: \"zone_3\"\tRelError: 1.30865e-01\tAbsError: 5.35596e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.04414e-03\tAbsError: 2.71903e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.39250e-03\tAbsError: 2.63693e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24354e-01\tAbsError: 1.27476e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.45406e-05\tAbsError: 2.31591e-02\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 4.38516e-03\tAbsError: 1.26230e+12\n", + " Region: \"zone_1\"\tRelError: 2.70387e-03\tAbsError: 1.01253e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.70062e-03\tAbsError: 4.93754e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.25147e-06\tAbsError: 1.01204e-03\n", + " Region: \"zone_3\"\tRelError: 1.68129e-03\tAbsError: 1.26230e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32904e-04\tAbsError: 6.71836e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.47918e-04\tAbsError: 5.90468e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39722e-03\tAbsError: 5.58204e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.25177e-06\tAbsError: 1.01215e-03\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 1.83011e+00\tAbsError: 2.95824e+14\n", + " Region: \"zone_1\"\tRelError: 1.37082e+00\tAbsError: 6.99761e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37059e+00\tAbsError: 2.58518e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.25535e-04\tAbsError: 6.99503e-02\n", + " Region: \"zone_3\"\tRelError: 4.59295e-01\tAbsError: 2.95824e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.20478e-03\tAbsError: 1.43385e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02612e-02\tAbsError: 1.52439e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.39604e-01\tAbsError: 3.84932e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.25556e-04\tAbsError: 6.99578e-02\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 3.61309e-01\tAbsError: 1.98459e+14\n", + " Region: \"zone_1\"\tRelError: 2.39018e-01\tAbsError: 3.44233e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38907e-01\tAbsError: 1.21876e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10966e-04\tAbsError: 3.44111e-02\n", + " Region: \"zone_3\"\tRelError: 1.22291e-01\tAbsError: 1.98459e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.54560e-03\tAbsError: 9.79175e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.07175e-03\tAbsError: 1.00541e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12563e-01\tAbsError: 1.89426e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10976e-04\tAbsError: 3.44148e-02\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 1.23997e+01\tAbsError: 4.28158e+14\n", + " Region: \"zone_1\"\tRelError: 1.22100e+01\tAbsError: 8.39817e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22098e+01\tAbsError: 2.86947e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69998e-04\tAbsError: 8.39530e-02\n", + " Region: \"zone_3\"\tRelError: 1.89659e-01\tAbsError: 4.28158e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10068e-02\tAbsError: 2.12516e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.23363e-02\tAbsError: 2.15642e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66046e-01\tAbsError: 4.62031e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.70022e-04\tAbsError: 8.39620e-02\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 2.04351e-01\tAbsError: 4.59191e+13\n", + " Region: \"zone_1\"\tRelError: 1.02420e-01\tAbsError: 1.98593e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02356e-01\tAbsError: 7.96485e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.38995e-05\tAbsError: 1.98514e-02\n", + " Region: \"zone_3\"\tRelError: 1.01931e-01\tAbsError: 4.59191e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.61444e-03\tAbsError: 2.33115e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.91425e-03\tAbsError: 2.26076e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.63382e-02\tAbsError: 1.09279e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.39052e-05\tAbsError: 1.98535e-02\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 3.80682e-03\tAbsError: 1.09467e+12\n", + " Region: \"zone_1\"\tRelError: 2.35029e-03\tAbsError: 8.78070e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34747e-03\tAbsError: 4.28185e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.81968e-06\tAbsError: 8.77642e-04\n", + " Region: \"zone_3\"\tRelError: 1.45653e-03\tAbsError: 1.09467e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.15245e-04\tAbsError: 5.82617e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.28263e-04\tAbsError: 5.12052e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21020e-03\tAbsError: 4.84077e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.81994e-06\tAbsError: 8.77738e-04\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 7.63537e+00\tAbsError: 2.51625e+14\n", + " Region: \"zone_1\"\tRelError: 7.02140e+00\tAbsError: 5.94898e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.02121e+00\tAbsError: 2.19842e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91774e-04\tAbsError: 5.94678e-02\n", + " Region: \"zone_3\"\tRelError: 6.13967e-01\tAbsError: 2.51625e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.86729e-03\tAbsError: 1.21962e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.77569e-03\tAbsError: 1.29663e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.97132e-01\tAbsError: 3.27196e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91791e-04\tAbsError: 5.94742e-02\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 2.81859e-01\tAbsError: 1.68041e+14\n", + " Region: \"zone_1\"\tRelError: 1.68335e-01\tAbsError: 2.91204e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68241e-01\tAbsError: 1.03165e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.38627e-05\tAbsError: 2.91101e-02\n", + " Region: \"zone_3\"\tRelError: 1.13524e-01\tAbsError: 1.68041e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.83540e-03\tAbsError: 8.29095e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.27808e-03\tAbsError: 8.51310e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05317e-01\tAbsError: 1.60241e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.38711e-05\tAbsError: 2.91132e-02\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 1.06298e+00\tAbsError: 3.59868e+14\n", + " Region: \"zone_1\"\tRelError: 9.11398e-01\tAbsError: 7.04878e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.11172e-01\tAbsError: 2.41039e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.26565e-04\tAbsError: 7.04637e-02\n", + " Region: \"zone_3\"\tRelError: 1.51580e-01\tAbsError: 3.59868e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.18267e-03\tAbsError: 1.78622e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02843e-02\tAbsError: 1.81246e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31886e-01\tAbsError: 3.87727e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.26585e-04\tAbsError: 7.04713e-02\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 1.75527e-01\tAbsError: 3.93609e+13\n", + " Region: \"zone_1\"\tRelError: 8.07211e-02\tAbsError: 1.70245e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.06663e-02\tAbsError: 6.82799e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.47751e-05\tAbsError: 1.70177e-02\n", + " Region: \"zone_3\"\tRelError: 9.48061e-02\tAbsError: 3.93609e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.23770e-03\tAbsError: 1.99821e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.49386e-03\tAbsError: 1.93788e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.00198e-02\tAbsError: 9.36794e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.47800e-05\tAbsError: 1.70195e-02\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 3.29828e-03\tAbsError: 9.49305e+11\n", + " Region: \"zone_1\"\tRelError: 2.03405e-03\tAbsError: 7.61465e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03161e-03\tAbsError: 3.71324e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.44524e-06\tAbsError: 7.61094e-04\n", + " Region: \"zone_3\"\tRelError: 1.26423e-03\tAbsError: 9.49305e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.99483e-05\tAbsError: 5.05249e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11239e-04\tAbsError: 4.44056e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05060e-03\tAbsError: 4.19793e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.44546e-06\tAbsError: 7.61177e-04\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 1.55230e+00\tAbsError: 2.13864e+14\n", + " Region: \"zone_1\"\tRelError: 1.20132e+00\tAbsError: 5.05752e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20116e+00\tAbsError: 1.86900e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63010e-04\tAbsError: 5.05566e-02\n", + " Region: \"zone_3\"\tRelError: 3.50975e-01\tAbsError: 2.13864e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.65779e-03\tAbsError: 1.03659e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.42265e-03\tAbsError: 1.10205e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.36731e-01\tAbsError: 2.78144e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63025e-04\tAbsError: 5.05620e-02\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 2.54824e-01\tAbsError: 1.42155e+14\n", + " Region: \"zone_1\"\tRelError: 1.66047e-01\tAbsError: 2.46432e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65967e-01\tAbsError: 8.72827e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.94380e-05\tAbsError: 2.46345e-02\n", + " Region: \"zone_3\"\tRelError: 8.87770e-02\tAbsError: 1.42155e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.25278e-03\tAbsError: 7.01376e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.62916e-03\tAbsError: 7.20169e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.18156e-02\tAbsError: 1.35599e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.94451e-05\tAbsError: 2.46372e-02\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 3.38962e+00\tAbsError: 3.02166e+14\n", + " Region: \"zone_1\"\tRelError: 3.25841e+00\tAbsError: 5.91864e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.25822e+00\tAbsError: 2.02391e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.90275e-04\tAbsError: 5.91662e-02\n", + " Region: \"zone_3\"\tRelError: 1.31208e-01\tAbsError: 3.02166e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.74915e-03\tAbsError: 1.49982e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.68408e-03\tAbsError: 1.52184e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14584e-01\tAbsError: 3.25507e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.90292e-04\tAbsError: 5.91725e-02\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 1.50094e-01\tAbsError: 3.37458e+13\n", + " Region: \"zone_1\"\tRelError: 7.43401e-02\tAbsError: 1.45943e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.42931e-02\tAbsError: 5.85341e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.69584e-05\tAbsError: 1.45885e-02\n", + " Region: \"zone_3\"\tRelError: 7.57539e-02\tAbsError: 3.37458e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.92087e-03\tAbsError: 1.71315e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.14110e-03\tAbsError: 1.66143e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.16450e-02\tAbsError: 8.03060e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.69626e-05\tAbsError: 1.45901e-02\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 2.86254e-03\tAbsError: 8.23238e+11\n", + " Region: \"zone_1\"\tRelError: 1.76704e-03\tAbsError: 6.60345e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76492e-03\tAbsError: 3.22013e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.12052e-06\tAbsError: 6.60023e-04\n", + " Region: \"zone_3\"\tRelError: 1.09550e-03\tAbsError: 8.23238e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.66700e-05\tAbsError: 4.38153e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.64601e-05\tAbsError: 3.85085e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.10249e-04\tAbsError: 3.64046e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.12071e-06\tAbsError: 6.60095e-04\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 4.75538e+01\tAbsError: 1.81890e+14\n", + " Region: \"zone_1\"\tRelError: 4.71404e+01\tAbsError: 4.29953e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.71403e+01\tAbsError: 1.58926e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38598e-04\tAbsError: 4.29794e-02\n", + " Region: \"zone_3\"\tRelError: 4.13403e-01\tAbsError: 1.81890e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.68188e-03\tAbsError: 8.81613e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.33748e-03\tAbsError: 9.37290e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.01245e-01\tAbsError: 2.36437e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38611e-04\tAbsError: 4.29840e-02\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 2.03486e-01\tAbsError: 1.20298e+14\n", + " Region: \"zone_1\"\tRelError: 1.23223e-01\tAbsError: 2.08506e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23156e-01\tAbsError: 7.38603e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.72079e-05\tAbsError: 2.08432e-02\n", + " Region: \"zone_3\"\tRelError: 8.02629e-02\tAbsError: 1.20298e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.74708e-03\tAbsError: 5.93537e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.06429e-03\tAbsError: 6.09440e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.43843e-02\tAbsError: 1.14729e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.72139e-05\tAbsError: 2.08455e-02\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 8.37765e-01\tAbsError: 2.53729e+14\n", + " Region: \"zone_1\"\tRelError: 7.32493e-01\tAbsError: 4.96879e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.32333e-01\tAbsError: 1.69942e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59714e-04\tAbsError: 4.96709e-02\n", + " Region: \"zone_3\"\tRelError: 1.05272e-01\tAbsError: 2.53729e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.47797e-03\tAbsError: 1.25940e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.25582e-03\tAbsError: 1.27789e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.13786e-02\tAbsError: 2.73247e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59728e-04\tAbsError: 4.96763e-02\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 1.28868e-01\tAbsError: 2.89264e+13\n", + " Region: \"zone_1\"\tRelError: 5.99139e-02\tAbsError: 1.25112e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.98736e-02\tAbsError: 5.01786e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.02540e-05\tAbsError: 1.25061e-02\n", + " Region: \"zone_3\"\tRelError: 6.89536e-02\tAbsError: 2.89264e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.64478e-03\tAbsError: 1.46849e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.83310e-03\tAbsError: 1.42415e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.54355e-02\tAbsError: 6.88431e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.02576e-05\tAbsError: 1.25075e-02\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 2.48070e-03\tAbsError: 7.13917e+11\n", + " Region: \"zone_1\"\tRelError: 1.53005e-03\tAbsError: 5.72653e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52821e-03\tAbsError: 2.79251e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83892e-06\tAbsError: 5.72374e-04\n", + " Region: \"zone_3\"\tRelError: 9.50655e-04\tAbsError: 7.13917e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.51646e-05\tAbsError: 3.79968e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.36556e-05\tAbsError: 3.33949e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.89996e-04\tAbsError: 3.15702e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83909e-06\tAbsError: 5.72437e-04\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 1.29032e+00\tAbsError: 1.54596e+14\n", + " Region: \"zone_1\"\tRelError: 1.02567e+00\tAbsError: 3.65528e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02555e+00\tAbsError: 1.35105e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17817e-04\tAbsError: 3.65393e-02\n", + " Region: \"zone_3\"\tRelError: 2.64651e-01\tAbsError: 1.54596e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.81455e-03\tAbsError: 7.49316e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.36804e-03\tAbsError: 7.96641e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54350e-01\tAbsError: 2.01002e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17827e-04\tAbsError: 3.65433e-02\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 1.80591e-01\tAbsError: 1.01793e+14\n", + " Region: \"zone_1\"\tRelError: 1.16394e-01\tAbsError: 1.76432e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16337e-01\tAbsError: 6.24974e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.68728e-05\tAbsError: 1.76370e-02\n", + " Region: \"zone_3\"\tRelError: 6.41971e-02\tAbsError: 1.01793e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.32814e-03\tAbsError: 5.02235e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.59745e-03\tAbsError: 5.15691e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.92146e-02\tAbsError: 9.70789e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.68779e-05\tAbsError: 1.76389e-02\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 1.68865e+00\tAbsError: 2.13091e+14\n", + " Region: \"zone_1\"\tRelError: 1.59737e+00\tAbsError: 4.17171e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59724e+00\tAbsError: 1.42700e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34111e-04\tAbsError: 4.17028e-02\n", + " Region: \"zone_3\"\tRelError: 9.12813e-02\tAbsError: 2.13091e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.45807e-03\tAbsError: 1.05770e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.11607e-03\tAbsError: 1.07322e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.95731e-02\tAbsError: 2.29393e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34122e-04\tAbsError: 4.17073e-02\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 1.10278e-01\tAbsError: 2.47994e+13\n", + " Region: \"zone_1\"\tRelError: 5.41409e-02\tAbsError: 1.07252e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.41064e-02\tAbsError: 4.30165e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.45090e-05\tAbsError: 1.07209e-02\n", + " Region: \"zone_3\"\tRelError: 5.61366e-02\tAbsError: 2.47994e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.41139e-03\tAbsError: 1.25898e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.57317e-03\tAbsError: 1.22096e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.31176e-02\tAbsError: 5.90155e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.45121e-05\tAbsError: 1.07221e-02\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 2.15255e-03\tAbsError: 6.19109e+11\n", + " Region: \"zone_1\"\tRelError: 1.32862e-03\tAbsError: 4.96607e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32703e-03\tAbsError: 2.42167e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59472e-06\tAbsError: 4.96365e-04\n", + " Region: \"zone_3\"\tRelError: 8.23934e-04\tAbsError: 6.19109e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.51799e-05\tAbsError: 3.29509e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.25426e-05\tAbsError: 2.89600e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.84617e-04\tAbsError: 2.73778e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59486e-06\tAbsError: 4.96419e-04\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 7.10521e+00\tAbsError: 1.31468e+14\n", + " Region: \"zone_1\"\tRelError: 6.82047e+00\tAbsError: 3.10745e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.82037e+00\tAbsError: 1.14875e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00169e-04\tAbsError: 3.10630e-02\n", + " Region: \"zone_3\"\tRelError: 2.84737e-01\tAbsError: 1.31468e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.10444e-03\tAbsError: 6.37219e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.57777e-03\tAbsError: 6.77464e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.75955e-01\tAbsError: 1.70868e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00178e-04\tAbsError: 3.10664e-02\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 1.46623e-01\tAbsError: 8.61289e+13\n", + " Region: \"zone_1\"\tRelError: 8.96656e-02\tAbsError: 1.49287e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.96175e-02\tAbsError: 5.28822e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.81201e-05\tAbsError: 1.49234e-02\n", + " Region: \"zone_3\"\tRelError: 5.69574e-02\tAbsError: 8.61289e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.96732e-03\tAbsError: 4.24951e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.19456e-03\tAbsError: 4.36338e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.27474e-02\tAbsError: 8.21423e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.81244e-05\tAbsError: 1.49250e-02\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 6.46391e-01\tAbsError: 1.78887e+14\n", + " Region: \"zone_1\"\tRelError: 5.72949e-01\tAbsError: 3.50245e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.72837e-01\tAbsError: 1.19806e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12583e-04\tAbsError: 3.50125e-02\n", + " Region: \"zone_3\"\tRelError: 7.34416e-02\tAbsError: 1.78887e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.56876e-03\tAbsError: 8.87918e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.11771e-03\tAbsError: 9.00949e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.36425e-02\tAbsError: 1.92585e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12593e-04\tAbsError: 3.50162e-02\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 9.46481e-02\tAbsError: 2.12580e+13\n", + " Region: \"zone_1\"\tRelError: 4.43557e-02\tAbsError: 9.19431e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.43261e-02\tAbsError: 3.68760e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.95823e-05\tAbsError: 9.19062e-03\n", + " Region: \"zone_3\"\tRelError: 5.02925e-02\tAbsError: 2.12580e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.20890e-03\tAbsError: 1.07919e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34734e-03\tAbsError: 1.04661e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.77066e-02\tAbsError: 5.05917e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.95850e-05\tAbsError: 9.19162e-03\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 1.86574e-03\tAbsError: 5.36895e+11\n", + " Region: \"zone_1\"\tRelError: 1.15086e-03\tAbsError: 4.30659e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14948e-03\tAbsError: 2.10008e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38295e-06\tAbsError: 4.30449e-04\n", + " Region: \"zone_3\"\tRelError: 7.14877e-04\tAbsError: 5.36895e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.65266e-05\tAbsError: 2.85752e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.29120e-05\tAbsError: 2.51143e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.94055e-04\tAbsError: 2.37421e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38307e-06\tAbsError: 4.30496e-04\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 1.05045e+00\tAbsError: 1.11745e+14\n", + " Region: \"zone_1\"\tRelError: 8.52986e-01\tAbsError: 2.64182e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.52901e-01\tAbsError: 9.76557e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.51523e-05\tAbsError: 2.64085e-02\n", + " Region: \"zone_3\"\tRelError: 1.97464e-01\tAbsError: 1.11745e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.48109e-03\tAbsError: 5.41621e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.88148e-03\tAbsError: 5.75830e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90017e-01\tAbsError: 1.45263e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.51600e-05\tAbsError: 2.64113e-02\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 1.28392e-01\tAbsError: 7.28834e+13\n", + " Region: \"zone_1\"\tRelError: 8.20984e-02\tAbsError: 1.26319e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.20577e-02\tAbsError: 4.47477e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.07186e-05\tAbsError: 1.26275e-02\n", + " Region: \"zone_3\"\tRelError: 4.62934e-02\tAbsError: 7.28834e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.66652e-03\tAbsError: 3.59600e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.85925e-03\tAbsError: 3.69234e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.27269e-02\tAbsError: 6.95040e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.07222e-05\tAbsError: 1.26288e-02\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 9.90678e-01\tAbsError: 1.50232e+14\n", + " Region: \"zone_1\"\tRelError: 9.26924e-01\tAbsError: 2.94052e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.26829e-01\tAbsError: 1.00598e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.45292e-05\tAbsError: 2.93952e-02\n", + " Region: \"zone_3\"\tRelError: 6.37538e-02\tAbsError: 1.50232e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.84535e-03\tAbsError: 7.45690e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.30868e-03\tAbsError: 7.56630e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.55052e-02\tAbsError: 1.61679e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.45375e-05\tAbsError: 2.93983e-02\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 8.10359e-02\tAbsError: 1.82247e+13\n", + " Region: \"zone_1\"\tRelError: 3.95264e-02\tAbsError: 7.88185e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.95010e-02\tAbsError: 3.16125e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.53602e-05\tAbsError: 7.87868e-03\n", + " Region: \"zone_3\"\tRelError: 4.15095e-02\tAbsError: 1.82247e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03709e-03\tAbsError: 9.25203e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.15595e-03\tAbsError: 8.97269e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.92911e-02\tAbsError: 4.33696e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.53625e-05\tAbsError: 7.87954e-03\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 1.61870e-03\tAbsError: 4.65596e+11\n", + " Region: \"zone_1\"\tRelError: 9.99025e-04\tAbsError: 3.73469e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.97826e-04\tAbsError: 1.82120e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19929e-06\tAbsError: 3.73287e-04\n", + " Region: \"zone_3\"\tRelError: 6.19674e-04\tAbsError: 4.65596e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.90183e-05\tAbsError: 2.47805e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.45554e-05\tAbsError: 2.17791e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.14901e-04\tAbsError: 2.05892e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19940e-06\tAbsError: 3.73328e-04\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 2.83849e+00\tAbsError: 9.50199e+13\n", + " Region: \"zone_1\"\tRelError: 2.63945e+00\tAbsError: 2.24589e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.63938e+00\tAbsError: 8.30297e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.23957e-05\tAbsError: 2.24506e-02\n", + " Region: \"zone_3\"\tRelError: 1.99037e-01\tAbsError: 9.50199e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.96537e-03\tAbsError: 4.60555e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.30721e-03\tAbsError: 4.89644e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92692e-01\tAbsError: 1.23488e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.24022e-05\tAbsError: 2.24530e-02\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 1.05482e-01\tAbsError: 6.16667e+13\n", + " Region: \"zone_1\"\tRelError: 6.49582e-02\tAbsError: 1.06885e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.49237e-02\tAbsError: 3.78626e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.44529e-05\tAbsError: 1.06848e-02\n", + " Region: \"zone_3\"\tRelError: 4.05236e-02\tAbsError: 6.16667e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.40879e-03\tAbsError: 3.04257e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.57155e-03\tAbsError: 3.12409e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.75088e-02\tAbsError: 5.88110e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.44560e-05\tAbsError: 1.06859e-02\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 4.89123e-01\tAbsError: 1.26112e+14\n", + " Region: \"zone_1\"\tRelError: 4.37688e-01\tAbsError: 2.46882e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.37609e-01\tAbsError: 8.44567e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.93590e-05\tAbsError: 2.46797e-02\n", + " Region: \"zone_3\"\tRelError: 5.14346e-02\tAbsError: 1.26112e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.22171e-03\tAbsError: 6.25968e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.60898e-03\tAbsError: 6.35153e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.45245e-02\tAbsError: 1.35742e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.93660e-05\tAbsError: 2.46824e-02\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 1.40320e-03\tAbsError: 4.03767e+11\n", + " Region: \"zone_1\"\tRelError: 8.65611e-04\tAbsError: 3.23874e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.64571e-04\tAbsError: 1.57935e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04003e-06\tAbsError: 3.23716e-04\n", + " Region: \"zone_3\"\tRelError: 5.37586e-04\tAbsError: 4.03767e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.25101e-05\tAbsError: 2.14897e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.73122e-05\tAbsError: 1.88870e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.46724e-04\tAbsError: 1.78550e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04013e-06\tAbsError: 3.23751e-04\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 6.95310e-02\tAbsError: 1.56225e+13\n", + " Region: \"zone_1\"\tRelError: 3.27745e-02\tAbsError: 6.75679e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.27528e-02\tAbsError: 2.70999e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17398e-05\tAbsError: 6.75408e-03\n", + " Region: \"zone_3\"\tRelError: 3.67565e-02\tAbsError: 1.56225e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.88497e-04\tAbsError: 7.93097e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.90258e-04\tAbsError: 7.69151e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.48560e-02\tAbsError: 3.71791e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.17418e-05\tAbsError: 6.75481e-03\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 8.37914e-01\tAbsError: 8.07684e+13\n", + " Region: \"zone_1\"\tRelError: 6.91777e-01\tAbsError: 1.90936e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.91715e-01\tAbsError: 7.05840e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.15438e-05\tAbsError: 1.90865e-02\n", + " Region: \"zone_3\"\tRelError: 1.46137e-01\tAbsError: 8.07684e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.51668e-03\tAbsError: 3.91479e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.80624e-03\tAbsError: 4.16205e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40753e-01\tAbsError: 1.04984e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.15493e-05\tAbsError: 1.90886e-02\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 9.14770e-02\tAbsError: 5.21829e+13\n", + " Region: \"zone_1\"\tRelError: 5.81611e-02\tAbsError: 9.04408e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.81319e-02\tAbsError: 3.20384e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.91531e-05\tAbsError: 9.04088e-03\n", + " Region: \"zone_3\"\tRelError: 3.33159e-02\tAbsError: 5.21829e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19300e-03\tAbsError: 2.57466e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.33095e-03\tAbsError: 2.64363e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.07628e-02\tAbsError: 4.97624e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.91557e-05\tAbsError: 9.04185e-03\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 6.25604e-01\tAbsError: 1.05904e+14\n", + " Region: \"zone_1\"\tRelError: 5.80954e-01\tAbsError: 2.07272e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.80887e-01\tAbsError: 7.09139e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.66311e-05\tAbsError: 2.07201e-02\n", + " Region: \"zone_3\"\tRelError: 4.46499e-02\tAbsError: 1.05904e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.70959e-03\tAbsError: 5.25663e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.03594e-03\tAbsError: 5.33373e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.88377e-02\tAbsError: 1.13960e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.66370e-05\tAbsError: 2.07224e-02\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 1.21727e-03\tAbsError: 3.50148e+11\n", + " Region: \"zone_1\"\tRelError: 7.51223e-04\tAbsError: 2.80864e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.50321e-04\tAbsError: 1.36962e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.01919e-07\tAbsError: 2.80727e-04\n", + " Region: \"zone_3\"\tRelError: 4.66044e-04\tAbsError: 3.50148e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.68639e-05\tAbsError: 1.86359e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.10281e-05\tAbsError: 1.63788e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87250e-04\tAbsError: 1.54839e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.02001e-07\tAbsError: 2.80758e-04\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 5.95523e-02\tAbsError: 1.33931e+13\n", + " Region: \"zone_1\"\tRelError: 2.89080e-02\tAbsError: 5.79228e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.88893e-02\tAbsError: 2.32317e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.86369e-05\tAbsError: 5.78996e-03\n", + " Region: \"zone_3\"\tRelError: 3.06443e-02\tAbsError: 1.33931e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.62077e-04\tAbsError: 6.79919e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.49411e-04\tAbsError: 6.59390e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.90142e-02\tAbsError: 3.18718e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.86386e-05\tAbsError: 5.79059e-03\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 1.56853e+00\tAbsError: 6.86752e+13\n", + " Region: \"zone_1\"\tRelError: 1.42801e+00\tAbsError: 1.62320e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42796e+00\tAbsError: 6.00106e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.23231e-05\tAbsError: 1.62260e-02\n", + " Region: \"zone_3\"\tRelError: 1.40522e-01\tAbsError: 6.86752e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14264e-03\tAbsError: 3.32864e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.38957e-03\tAbsError: 3.53888e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35937e-01\tAbsError: 8.92486e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.23278e-05\tAbsError: 1.62278e-02\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 7.57896e-02\tAbsError: 4.41522e+13\n", + " Region: \"zone_1\"\tRelError: 4.69057e-02\tAbsError: 7.65269e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.68810e-02\tAbsError: 2.71088e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.46674e-05\tAbsError: 7.64998e-03\n", + " Region: \"zone_3\"\tRelError: 2.88839e-02\tAbsError: 4.41522e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00878e-03\tAbsError: 2.17843e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.12534e-03\tAbsError: 2.23679e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67251e-02\tAbsError: 4.21067e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.46696e-05\tAbsError: 7.65080e-03\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 3.64317e-01\tAbsError: 8.89022e+13\n", + " Region: \"zone_1\"\tRelError: 3.27869e-01\tAbsError: 1.74023e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.27813e-01\tAbsError: 5.95352e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.59395e-05\tAbsError: 1.73964e-02\n", + " Region: \"zone_3\"\tRelError: 3.64486e-02\tAbsError: 8.89022e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.27156e-03\tAbsError: 4.41274e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.54470e-03\tAbsError: 4.47748e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.15763e-02\tAbsError: 9.56791e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.59444e-05\tAbsError: 1.73982e-02\n", + "Iteration: 50\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 1.05531e-03\tAbsError: 3.03650e+11\n", + " Region: \"zone_1\"\tRelError: 6.51040e-04\tAbsError: 2.43566e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.50258e-04\tAbsError: 1.18774e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.82148e-07\tAbsError: 2.43448e-04\n", + " Region: \"zone_3\"\tRelError: 4.04270e-04\tAbsError: 3.03650e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.19693e-05\tAbsError: 1.61612e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.55806e-05\tAbsError: 1.42038e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35937e-04\tAbsError: 1.34277e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.82219e-07\tAbsError: 2.43474e-04\n", + " Device: \"device\"\tRelError: 5.10861e-02\tAbsError: 1.14809e+13\n", + " Region: \"zone_1\"\tRelError: 2.41827e-02\tAbsError: 4.96549e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41667e-02\tAbsError: 1.99154e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59764e-05\tAbsError: 4.96350e-03\n", + " Region: \"zone_3\"\tRelError: 2.69034e-02\tAbsError: 1.14809e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.52996e-04\tAbsError: 5.82843e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.27792e-04\tAbsError: 5.65245e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.55066e-02\tAbsError: 2.73224e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59778e-05\tAbsError: 4.96404e-03\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 6.55839e-01\tAbsError: 5.83772e+13\n", + " Region: \"zone_1\"\tRelError: 5.48356e-01\tAbsError: 1.37997e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.48312e-01\tAbsError: 5.10158e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.44806e-05\tAbsError: 1.37946e-02\n", + " Region: \"zone_3\"\tRelError: 1.07483e-01\tAbsError: 5.83772e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.81930e-03\tAbsError: 2.82950e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.02868e-03\tAbsError: 3.00822e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03591e-01\tAbsError: 7.58747e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.44846e-05\tAbsError: 1.37961e-02\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 6.52713e-02\tAbsError: 3.73614e+13\n", + " Region: \"zone_1\"\tRelError: 4.13296e-02\tAbsError: 6.47530e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.13087e-02\tAbsError: 2.29386e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08727e-05\tAbsError: 6.47301e-03\n", + " Region: \"zone_3\"\tRelError: 2.39417e-02\tAbsError: 3.73614e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.54064e-04\tAbsError: 1.84338e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.52809e-04\tAbsError: 1.89277e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.21139e-02\tAbsError: 3.56283e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.08746e-05\tAbsError: 6.47370e-03\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 4.11150e-01\tAbsError: 7.46517e+13\n", + " Region: \"zone_1\"\tRelError: 3.79820e-01\tAbsError: 1.46103e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.79773e-01\tAbsError: 4.99873e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.69670e-05\tAbsError: 1.46053e-02\n", + " Region: \"zone_3\"\tRelError: 3.13306e-02\tAbsError: 7.46517e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.90949e-03\tAbsError: 3.70541e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.13942e-03\tAbsError: 3.75976e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.72347e-02\tAbsError: 8.03275e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.69711e-05\tAbsError: 1.46069e-02\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 9.15400e-04\tAbsError: 2.63326e+11\n", + " Region: \"zone_1\"\tRelError: 5.64902e-04\tAbsError: 2.11222e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.64224e-04\tAbsError: 1.03001e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.78281e-07\tAbsError: 2.11119e-04\n", + " Region: \"zone_3\"\tRelError: 3.50498e-04\tAbsError: 2.63326e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.77233e-05\tAbsError: 1.40150e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.08549e-05\tAbsError: 1.23176e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.91241e-04\tAbsError: 1.16446e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.78342e-07\tAbsError: 2.11142e-04\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 4.37655e-02\tAbsError: 9.84239e+12\n", + " Region: \"zone_1\"\tRelError: 2.11694e-02\tAbsError: 4.25669e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.11557e-02\tAbsError: 1.70727e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36960e-05\tAbsError: 4.25498e-03\n", + " Region: \"zone_3\"\tRelError: 2.25961e-02\tAbsError: 9.84239e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.60005e-04\tAbsError: 4.99663e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.24177e-04\tAbsError: 4.84577e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13982e-02\tAbsError: 2.34222e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36972e-05\tAbsError: 4.25544e-03\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 9.73226e-01\tAbsError: 4.96344e+13\n", + " Region: \"zone_1\"\tRelError: 8.73336e-01\tAbsError: 1.17316e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.73298e-01\tAbsError: 4.33727e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.78160e-05\tAbsError: 1.17273e-02\n", + " Region: \"zone_3\"\tRelError: 9.98903e-02\tAbsError: 4.96344e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54829e-03\tAbsError: 2.40575e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.72669e-03\tAbsError: 2.55770e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.65775e-02\tAbsError: 6.45032e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.78194e-05\tAbsError: 1.17286e-02\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 5.44038e-02\tAbsError: 3.16121e+13\n", + " Region: \"zone_1\"\tRelError: 3.37898e-02\tAbsError: 5.47910e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.37722e-02\tAbsError: 1.94092e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76612e-05\tAbsError: 5.47716e-03\n", + " Region: \"zone_3\"\tRelError: 2.06140e-02\tAbsError: 3.16121e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.22319e-04\tAbsError: 1.55971e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.05787e-04\tAbsError: 1.60150e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90682e-02\tAbsError: 3.01471e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76628e-05\tAbsError: 5.47775e-03\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 2.67585e-01\tAbsError: 6.26692e+13\n", + " Region: \"zone_1\"\tRelError: 2.41796e-01\tAbsError: 1.22666e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41756e-01\tAbsError: 4.19667e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.94312e-05\tAbsError: 1.22624e-02\n", + " Region: \"zone_3\"\tRelError: 2.57888e-02\tAbsError: 6.26692e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.60151e-03\tAbsError: 3.11064e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.79412e-03\tAbsError: 3.15628e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23537e-02\tAbsError: 6.74417e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.94347e-05\tAbsError: 1.22637e-02\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 7.93663e-04\tAbsError: 2.28357e+11\n", + " Region: \"zone_1\"\tRelError: 4.89646e-04\tAbsError: 1.83172e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.89058e-04\tAbsError: 8.93227e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.88208e-07\tAbsError: 1.83083e-04\n", + " Region: \"zone_3\"\tRelError: 3.04018e-04\tAbsError: 2.28357e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.40422e-05\tAbsError: 1.21539e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.67580e-05\tAbsError: 1.06818e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52629e-04\tAbsError: 1.00982e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.88261e-07\tAbsError: 1.83103e-04\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 3.75372e-02\tAbsError: 8.43722e+12\n", + " Region: \"zone_1\"\tRelError: 1.78244e-02\tAbsError: 3.64908e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78126e-02\tAbsError: 1.46357e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17409e-05\tAbsError: 3.64762e-03\n", + " Region: \"zone_3\"\tRelError: 1.97128e-02\tAbsError: 8.43722e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.79907e-04\tAbsError: 4.28327e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.34879e-04\tAbsError: 4.15395e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86863e-02\tAbsError: 2.00789e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17419e-05\tAbsError: 3.64801e-03\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 5.04798e-01\tAbsError: 4.21929e+13\n", + " Region: \"zone_1\"\tRelError: 4.26111e-01\tAbsError: 9.97364e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.26079e-01\tAbsError: 3.68720e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.21482e-05\tAbsError: 9.96995e-03\n", + " Region: \"zone_3\"\tRelError: 7.86868e-02\tAbsError: 4.21929e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31509e-03\tAbsError: 2.04506e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.46647e-03\tAbsError: 2.17423e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.58731e-02\tAbsError: 5.48374e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.21511e-05\tAbsError: 9.97103e-03\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 4.66200e-02\tAbsError: 2.67496e+13\n", + " Region: \"zone_1\"\tRelError: 2.94328e-02\tAbsError: 4.63613e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.94178e-02\tAbsError: 1.64234e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49442e-05\tAbsError: 4.63449e-03\n", + " Region: \"zone_3\"\tRelError: 1.71872e-02\tAbsError: 2.67496e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.11440e-04\tAbsError: 1.31980e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.82127e-04\tAbsError: 1.35516e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58787e-02\tAbsError: 2.55088e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49456e-05\tAbsError: 4.63499e-03\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 2.76725e-01\tAbsError: 5.26212e+13\n", + " Region: \"zone_1\"\tRelError: 2.54710e-01\tAbsError: 1.02987e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54677e-01\tAbsError: 3.52357e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.31062e-05\tAbsError: 1.02951e-02\n", + " Region: \"zone_3\"\tRelError: 2.20141e-02\tAbsError: 5.26212e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.34575e-03\tAbsError: 2.61191e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.50776e-03\tAbsError: 2.65022e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91275e-02\tAbsError: 5.66213e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.31091e-05\tAbsError: 1.02962e-02\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 6.88399e-04\tAbsError: 1.98032e+11\n", + " Region: \"zone_1\"\tRelError: 4.24802e-04\tAbsError: 1.58847e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.24292e-04\tAbsError: 7.74609e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.10096e-07\tAbsError: 1.58770e-04\n", + " Region: \"zone_3\"\tRelError: 2.63596e-04\tAbsError: 1.98032e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.08491e-05\tAbsError: 1.05399e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.32043e-05\tAbsError: 9.26332e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.19033e-04\tAbsError: 8.75720e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.10142e-07\tAbsError: 1.58787e-04\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 3.21638e-02\tAbsError: 7.23304e+12\n", + " Region: \"zone_1\"\tRelError: 1.55170e-02\tAbsError: 3.12819e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55069e-02\tAbsError: 1.25466e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00650e-05\tAbsError: 3.12694e-03\n", + " Region: \"zone_3\"\tRelError: 1.66468e-02\tAbsError: 7.23304e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.11522e-04\tAbsError: 3.67195e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.58676e-04\tAbsError: 3.56109e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57666e-02\tAbsError: 1.72127e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00659e-05\tAbsError: 3.12728e-03\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 6.39384e-01\tAbsError: 3.58728e+13\n", + " Region: \"zone_1\"\tRelError: 5.68037e-01\tAbsError: 8.47897e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.68009e-01\tAbsError: 3.13475e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.73312e-05\tAbsError: 8.47583e-03\n", + " Region: \"zone_3\"\tRelError: 7.13471e-02\tAbsError: 3.58728e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.11887e-03\tAbsError: 1.73873e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24777e-03\tAbsError: 1.84855e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.89532e-02\tAbsError: 4.66190e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.73336e-05\tAbsError: 8.47675e-03\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 3.90249e-02\tAbsError: 2.26335e+13\n", + " Region: \"zone_1\"\tRelError: 2.42996e-02\tAbsError: 3.92288e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42869e-02\tAbsError: 1.38965e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26450e-05\tAbsError: 3.92149e-03\n", + " Region: \"zone_3\"\tRelError: 1.47253e-02\tAbsError: 2.26335e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.17192e-04\tAbsError: 1.11672e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.76961e-04\tAbsError: 1.14664e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.36186e-02\tAbsError: 2.15844e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26461e-05\tAbsError: 3.92191e-03\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 1.94406e-01\tAbsError: 4.41761e+13\n", + " Region: \"zone_1\"\tRelError: 1.76179e-01\tAbsError: 8.64657e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76151e-01\tAbsError: 2.95822e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.77946e-05\tAbsError: 8.64361e-03\n", + " Region: \"zone_3\"\tRelError: 1.82264e-02\tAbsError: 4.41761e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12904e-03\tAbsError: 2.19272e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.26485e-03\tAbsError: 2.22489e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58048e-02\tAbsError: 4.75383e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.77971e-05\tAbsError: 8.64454e-03\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 5.96883e-04\tAbsError: 1.71734e+11\n", + " Region: \"zone_1\"\tRelError: 3.68255e-04\tAbsError: 1.37753e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.67812e-04\tAbsError: 6.71744e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.42357e-07\tAbsError: 1.37686e-04\n", + " Region: \"zone_3\"\tRelError: 2.28628e-04\tAbsError: 1.71734e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.80807e-05\tAbsError: 9.14021e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.01231e-05\tAbsError: 8.03319e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89982e-04\tAbsError: 7.59427e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.42397e-07\tAbsError: 1.37701e-04\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 2.75830e-02\tAbsError: 6.20045e+12\n", + " Region: \"zone_1\"\tRelError: 1.31276e-02\tAbsError: 2.68167e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31189e-02\tAbsError: 1.07556e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.62826e-06\tAbsError: 2.68059e-03\n", + " Region: \"zone_3\"\tRelError: 1.44555e-02\tAbsError: 6.20045e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.52693e-04\tAbsError: 3.14774e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.93095e-04\tAbsError: 3.05270e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37011e-02\tAbsError: 1.47558e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.62904e-06\tAbsError: 2.68089e-03\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 3.83064e-01\tAbsError: 3.04951e+13\n", + " Region: \"zone_1\"\tRelError: 3.25657e-01\tAbsError: 7.20838e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.25634e-01\tAbsError: 2.66493e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.32350e-05\tAbsError: 7.20571e-03\n", + " Region: \"zone_3\"\tRelError: 5.74067e-02\tAbsError: 3.04951e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.50582e-04\tAbsError: 1.47808e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06002e-03\tAbsError: 1.57144e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.53729e-02\tAbsError: 3.96331e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.32371e-05\tAbsError: 7.20649e-03\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 3.33217e-02\tAbsError: 1.91519e+13\n", + " Region: \"zone_1\"\tRelError: 2.09927e-02\tAbsError: 3.31934e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09820e-02\tAbsError: 1.17587e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06996e-05\tAbsError: 3.31816e-03\n", + " Region: \"zone_3\"\tRelError: 1.23290e-02\tAbsError: 1.91519e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.37750e-04\tAbsError: 9.44937e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.88355e-04\tAbsError: 9.70254e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13922e-02\tAbsError: 1.82636e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07006e-05\tAbsError: 3.31852e-03\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 1.89073e-01\tAbsError: 3.70920e+13\n", + " Region: \"zone_1\"\tRelError: 1.73591e-01\tAbsError: 7.25940e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73567e-01\tAbsError: 2.48372e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.33361e-05\tAbsError: 7.25691e-03\n", + " Region: \"zone_3\"\tRelError: 1.54827e-02\tAbsError: 3.70920e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.48490e-04\tAbsError: 1.84110e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06266e-03\tAbsError: 1.86810e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34482e-02\tAbsError: 3.99115e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.33381e-05\tAbsError: 7.25769e-03\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 5.17693e-04\tAbsError: 1.48928e+11\n", + " Region: \"zone_1\"\tRelError: 3.19453e-04\tAbsError: 1.19460e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.19070e-04\tAbsError: 5.82538e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.83613e-07\tAbsError: 1.19402e-04\n", + " Region: \"zone_3\"\tRelError: 1.98240e-04\tAbsError: 1.48928e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.56794e-05\tAbsError: 7.92642e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.74506e-05\tAbsError: 6.96641e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64726e-04\tAbsError: 6.58578e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.83648e-07\tAbsError: 1.19415e-04\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 2.36376e-02\tAbsError: 5.31547e+12\n", + " Region: \"zone_1\"\tRelError: 1.13817e-02\tAbsError: 2.29888e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13743e-02\tAbsError: 9.22033e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.39668e-06\tAbsError: 2.29795e-03\n", + " Region: \"zone_3\"\tRelError: 1.22559e-02\tAbsError: 5.31547e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.02412e-04\tAbsError: 2.69847e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.37063e-04\tAbsError: 2.61700e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16091e-02\tAbsError: 1.26494e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.39734e-06\tAbsError: 2.29820e-03\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 4.33984e-01\tAbsError: 2.59267e+13\n", + " Region: \"zone_1\"\tRelError: 3.82852e-01\tAbsError: 6.12812e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.82832e-01\tAbsError: 2.26562e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.97534e-05\tAbsError: 6.12586e-03\n", + " Region: \"zone_3\"\tRelError: 5.11318e-02\tAbsError: 2.59267e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.08574e-04\tAbsError: 1.25665e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.01717e-04\tAbsError: 1.33602e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.94017e-02\tAbsError: 3.36935e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.97551e-05\tAbsError: 6.12652e-03\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 2.79788e-02\tAbsError: 1.62050e+13\n", + " Region: \"zone_1\"\tRelError: 1.74530e-02\tAbsError: 2.80867e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74440e-02\tAbsError: 9.94952e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.05343e-06\tAbsError: 2.80767e-03\n", + " Region: \"zone_3\"\tRelError: 1.05257e-02\tAbsError: 1.62050e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.70311e-04\tAbsError: 7.99541e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.13108e-04\tAbsError: 8.20962e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.73327e-03\tAbsError: 1.54538e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.05424e-06\tAbsError: 2.80797e-03\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 1.40078e-01\tAbsError: 3.11397e+13\n", + " Region: \"zone_1\"\tRelError: 1.27206e-01\tAbsError: 6.09485e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27186e-01\tAbsError: 2.08523e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.95921e-05\tAbsError: 6.09276e-03\n", + " Region: \"zone_3\"\tRelError: 1.28717e-02\tAbsError: 3.11397e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.95921e-04\tAbsError: 1.54565e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.91672e-04\tAbsError: 1.56832e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11645e-02\tAbsError: 3.35090e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.95939e-05\tAbsError: 6.09342e-03\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 4.48889e-04\tAbsError: 1.29151e+11\n", + " Region: \"zone_1\"\tRelError: 2.76955e-04\tAbsError: 1.03596e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76622e-04\tAbsError: 5.05179e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32671e-07\tAbsError: 1.03546e-04\n", + " Region: \"zone_3\"\tRelError: 1.71935e-04\tAbsError: 1.29151e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.35974e-05\tAbsError: 6.87382e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.51334e-05\tAbsError: 6.04130e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42871e-04\tAbsError: 5.71121e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32701e-07\tAbsError: 1.03557e-04\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 2.02692e-02\tAbsError: 4.55665e+12\n", + " Region: \"zone_1\"\tRelError: 9.66282e-03\tAbsError: 1.97073e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.65648e-03\tAbsError: 7.90418e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.34082e-06\tAbsError: 1.96994e-03\n", + " Region: \"zone_3\"\tRelError: 1.06064e-02\tAbsError: 4.55665e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.59198e-04\tAbsError: 2.31325e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.88891e-04\tAbsError: 2.24341e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00519e-02\tAbsError: 1.08438e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.34139e-06\tAbsError: 1.97015e-03\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 2.87334e-01\tAbsError: 2.20404e+13\n", + " Region: \"zone_1\"\tRelError: 2.45559e-01\tAbsError: 5.20981e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.45542e-01\tAbsError: 1.92607e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67930e-05\tAbsError: 5.20788e-03\n", + " Region: \"zone_3\"\tRelError: 4.17752e-02\tAbsError: 2.20404e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.87083e-04\tAbsError: 1.06828e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.66189e-04\tAbsError: 1.13576e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.03051e-02\tAbsError: 2.86445e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67945e-05\tAbsError: 5.20844e-03\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 2.38286e-02\tAbsError: 1.37122e+13\n", + " Region: \"zone_1\"\tRelError: 1.49893e-02\tAbsError: 2.37655e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49816e-02\tAbsError: 8.41887e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.66061e-06\tAbsError: 2.37571e-03\n", + " Region: \"zone_3\"\tRelError: 8.83931e-03\tAbsError: 1.37122e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.13404e-04\tAbsError: 6.76546e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.49633e-04\tAbsError: 6.94672e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.16861e-03\tAbsError: 1.30762e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.66130e-06\tAbsError: 2.37597e-03\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 1.30464e-01\tAbsError: 2.61455e+13\n", + " Region: \"zone_1\"\tRelError: 1.19568e-01\tAbsError: 5.11706e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19551e-01\tAbsError: 1.75074e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64493e-05\tAbsError: 5.11531e-03\n", + " Region: \"zone_3\"\tRelError: 1.08963e-02\tAbsError: 2.61455e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.68523e-04\tAbsError: 1.29776e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.48988e-04\tAbsError: 1.31680e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.46233e-03\tAbsError: 2.81331e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64507e-05\tAbsError: 5.11586e-03\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 3.89320e-04\tAbsError: 1.12000e+11\n", + " Region: \"zone_1\"\tRelError: 2.40233e-04\tAbsError: 8.98388e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39945e-04\tAbsError: 4.38093e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.88493e-07\tAbsError: 8.97950e-05\n", + " Region: \"zone_3\"\tRelError: 1.49087e-04\tAbsError: 1.12000e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.17916e-05\tAbsError: 5.96099e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.31236e-05\tAbsError: 5.23903e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23883e-04\tAbsError: 4.95278e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.88519e-07\tAbsError: 8.98048e-05\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 1.73715e-02\tAbsError: 3.90627e+12\n", + " Region: \"zone_1\"\tRelError: 8.35266e-03\tAbsError: 1.68942e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.34723e-03\tAbsError: 6.77592e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43573e-06\tAbsError: 1.68874e-03\n", + " Region: \"zone_3\"\tRelError: 9.01888e-03\tAbsError: 3.90627e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.22234e-04\tAbsError: 1.98307e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.47697e-04\tAbsError: 1.92320e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.54352e-03\tAbsError: 9.29594e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43622e-06\tAbsError: 1.68893e-03\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 3.00571e-01\tAbsError: 1.87383e+13\n", + " Region: \"zone_1\"\tRelError: 2.63839e-01\tAbsError: 4.42907e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.63825e-01\tAbsError: 1.63747e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42766e-05\tAbsError: 4.42743e-03\n", + " Region: \"zone_3\"\tRelError: 3.67318e-02\tAbsError: 1.87383e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.84351e-04\tAbsError: 9.08230e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.51659e-04\tAbsError: 9.65595e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.54815e-02\tAbsError: 2.43518e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42779e-05\tAbsError: 4.42791e-03\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 2.00517e-02\tAbsError: 1.16024e+13\n", + " Region: \"zone_1\"\tRelError: 1.25244e-02\tAbsError: 2.01092e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25179e-02\tAbsError: 7.12358e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.48200e-06\tAbsError: 2.01021e-03\n", + " Region: \"zone_3\"\tRelError: 7.52734e-03\tAbsError: 1.16024e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.65141e-04\tAbsError: 5.72450e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.95784e-04\tAbsError: 5.87788e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.95994e-03\tAbsError: 1.10645e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.48258e-06\tAbsError: 2.01043e-03\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 1.00314e-01\tAbsError: 2.19503e+13\n", + " Region: \"zone_1\"\tRelError: 9.12292e-02\tAbsError: 4.29618e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.12154e-02\tAbsError: 1.46986e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38103e-05\tAbsError: 4.29471e-03\n", + " Region: \"zone_3\"\tRelError: 9.08507e-03\tAbsError: 2.19503e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.61073e-04\tAbsError: 1.08952e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.28577e-04\tAbsError: 1.10550e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.88161e-03\tAbsError: 2.36200e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38115e-05\tAbsError: 4.29517e-03\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 3.37588e-04\tAbsError: 9.71270e+10\n", + " Region: \"zone_1\"\tRelError: 2.08288e-04\tAbsError: 7.79085e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08038e-04\tAbsError: 3.79916e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.50182e-07\tAbsError: 7.78705e-05\n", + " Region: \"zone_3\"\tRelError: 1.29300e-04\tAbsError: 9.71270e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02258e-05\tAbsError: 5.16940e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13809e-05\tAbsError: 4.54330e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07443e-04\tAbsError: 4.29507e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.50205e-07\tAbsError: 7.78790e-05\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 1.48949e-02\tAbsError: 3.34864e+12\n", + " Region: \"zone_1\"\tRelError: 7.10950e-03\tAbsError: 1.44827e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.10484e-03\tAbsError: 5.80869e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.65980e-06\tAbsError: 1.44769e-03\n", + " Region: \"zone_3\"\tRelError: 7.78544e-03\tAbsError: 3.34864e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.90486e-04\tAbsError: 1.69998e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.12308e-04\tAbsError: 1.64866e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.37799e-03\tAbsError: 7.96902e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.66022e-06\tAbsError: 1.44784e-03\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 2.13552e-01\tAbsError: 1.59297e+13\n", + " Region: \"zone_1\"\tRelError: 1.83209e-01\tAbsError: 3.76535e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83197e-01\tAbsError: 1.39206e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21370e-05\tAbsError: 3.76396e-03\n", + " Region: \"zone_3\"\tRelError: 3.03433e-02\tAbsError: 1.59297e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.96615e-04\tAbsError: 7.72100e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.53795e-04\tAbsError: 8.20868e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.92808e-02\tAbsError: 2.07026e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21381e-05\tAbsError: 3.76437e-03\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 1.70459e-02\tAbsError: 9.81751e+12\n", + " Region: \"zone_1\"\tRelError: 1.07110e-02\tAbsError: 1.70154e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07055e-02\tAbsError: 6.02766e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.48478e-06\tAbsError: 1.70094e-03\n", + " Region: \"zone_3\"\tRelError: 6.33490e-03\tAbsError: 9.81751e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.24382e-04\tAbsError: 4.84387e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.50320e-04\tAbsError: 4.97364e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.85472e-03\tAbsError: 9.36218e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.48526e-06\tAbsError: 1.70112e-03\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 9.06185e-02\tAbsError: 1.84296e+13\n", + " Region: \"zone_1\"\tRelError: 8.29464e-02\tAbsError: 3.60695e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.29348e-02\tAbsError: 1.23408e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15949e-05\tAbsError: 3.60572e-03\n", + " Region: \"zone_3\"\tRelError: 7.67211e-03\tAbsError: 1.84296e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.71206e-04\tAbsError: 9.14771e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.27918e-04\tAbsError: 9.28189e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.66139e-03\tAbsError: 1.98306e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15959e-05\tAbsError: 3.60611e-03\n", + "Iteration: 59\n", + " Device: \"device\"\tRelError: 2.92781e-04\tAbsError: 8.42288e+10\n", + " Region: \"zone_1\"\tRelError: 1.80661e-04\tAbsError: 6.75625e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80444e-04\tAbsError: 3.29464e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16959e-07\tAbsError: 6.75296e-05\n", + " Region: \"zone_3\"\tRelError: 1.12121e-04\tAbsError: 8.42288e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.86779e-06\tAbsError: 4.48292e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.86950e-06\tAbsError: 3.93997e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.31666e-05\tAbsError: 3.72470e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16978e-07\tAbsError: 6.75370e-05\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 1.27665e-02\tAbsError: 2.87067e+12\n", + " Region: \"zone_1\"\tRelError: 6.13202e-03\tAbsError: 1.24154e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.12802e-03\tAbsError: 4.97955e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.99466e-06\tAbsError: 1.24104e-03\n", + " Region: \"zone_3\"\tRelError: 6.63444e-03\tAbsError: 2.87067e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.63314e-04\tAbsError: 1.45734e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.82026e-04\tAbsError: 1.41334e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.28510e-03\tAbsError: 6.83149e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.99502e-06\tAbsError: 1.24117e-03\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 2.10921e-01\tAbsError: 1.35429e+13\n", + " Region: \"zone_1\"\tRelError: 1.84489e-01\tAbsError: 3.20108e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84478e-01\tAbsError: 1.18347e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03183e-05\tAbsError: 3.19990e-03\n", + " Region: \"zone_3\"\tRelError: 2.64323e-02\tAbsError: 1.35429e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.22315e-04\tAbsError: 6.56415e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.70956e-04\tAbsError: 6.97875e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.55287e-02\tAbsError: 1.76001e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03192e-05\tAbsError: 3.20024e-03\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 1.43666e-02\tAbsError: 8.30699e+12\n", + " Region: \"zone_1\"\tRelError: 8.98173e-03\tAbsError: 1.43976e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.97709e-03\tAbsError: 5.10029e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.64093e-06\tAbsError: 1.43925e-03\n", + " Region: \"zone_3\"\tRelError: 5.38487e-03\tAbsError: 8.30699e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.89837e-04\tAbsError: 4.09859e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.11778e-04\tAbsError: 4.20840e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.97861e-03\tAbsError: 7.92183e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.64135e-06\tAbsError: 1.43941e-03\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 7.15163e-02\tAbsError: 1.54726e+13\n", + " Region: \"zone_1\"\tRelError: 6.51064e-02\tAbsError: 3.02832e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.50967e-02\tAbsError: 1.03609e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.73470e-06\tAbsError: 3.02729e-03\n", + " Region: \"zone_3\"\tRelError: 6.40993e-03\tAbsError: 1.54726e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.95513e-04\tAbsError: 7.67997e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.43100e-04\tAbsError: 7.79262e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.56158e-03\tAbsError: 1.66494e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.73556e-06\tAbsError: 3.02761e-03\n", + "Iteration: 60\n", + " Device: \"device\"\tRelError: 2.53883e-04\tAbsError: 7.30435e+10\n", + " Region: \"zone_1\"\tRelError: 1.56645e-04\tAbsError: 5.85904e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56457e-04\tAbsError: 2.85713e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88147e-07\tAbsError: 5.85619e-05\n", + " Region: \"zone_3\"\tRelError: 9.72382e-05\tAbsError: 7.30435e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69022e-06\tAbsError: 3.88760e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.55892e-06\tAbsError: 3.41675e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.08009e-05\tAbsError: 3.23007e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88164e-07\tAbsError: 5.85683e-05\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 1.09458e-02\tAbsError: 2.46088e+12\n", + " Region: \"zone_1\"\tRelError: 5.22924e-03\tAbsError: 1.06432e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.22582e-03\tAbsError: 4.26875e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.42444e-06\tAbsError: 1.06389e-03\n", + " Region: \"zone_3\"\tRelError: 5.71655e-03\tAbsError: 2.46088e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.39988e-04\tAbsError: 1.24930e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.56026e-04\tAbsError: 1.21158e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.41712e-03\tAbsError: 5.85634e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.42475e-06\tAbsError: 1.06400e-03\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 1.57588e-01\tAbsError: 1.15131e+13\n", + " Region: \"zone_1\"\tRelError: 1.35578e-01\tAbsError: 2.72138e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35569e-01\tAbsError: 1.00611e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.77198e-06\tAbsError: 2.72038e-03\n", + " Region: \"zone_3\"\tRelError: 2.20098e-02\tAbsError: 1.15131e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.58940e-04\tAbsError: 5.58034e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.00271e-04\tAbsError: 5.93280e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12418e-02\tAbsError: 1.49626e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.77277e-06\tAbsError: 2.72067e-03\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 1.21969e-02\tAbsError: 7.02904e+12\n", + " Region: \"zone_1\"\tRelError: 7.65809e-03\tAbsError: 1.21826e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.65416e-03\tAbsError: 4.31563e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.92694e-06\tAbsError: 1.21782e-03\n", + " Region: \"zone_3\"\tRelError: 4.53880e-03\tAbsError: 7.02904e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.60648e-04\tAbsError: 3.46806e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.79218e-04\tAbsError: 3.56098e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.19500e-03\tAbsError: 6.70305e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.92729e-06\tAbsError: 1.21796e-03\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 6.32258e-02\tAbsError: 1.29907e+13\n", + " Region: \"zone_1\"\tRelError: 5.78221e-02\tAbsError: 2.54250e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.78139e-02\tAbsError: 8.69885e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.17307e-06\tAbsError: 2.54163e-03\n", + " Region: \"zone_3\"\tRelError: 5.40373e-03\tAbsError: 1.29907e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.32134e-04\tAbsError: 6.44808e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.72106e-04\tAbsError: 6.54266e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.69132e-03\tAbsError: 1.39784e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.17379e-06\tAbsError: 2.54190e-03\n", + "Iteration: 61\n", + " Device: \"device\"\tRelError: 2.20182e-04\tAbsError: 6.33436e+10\n", + " Region: \"zone_1\"\tRelError: 1.35861e-04\tAbsError: 5.08098e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35698e-04\tAbsError: 2.47771e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63162e-07\tAbsError: 5.07851e-05\n", + " Region: \"zone_3\"\tRelError: 8.43203e-05\tAbsError: 6.33436e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.66895e-06\tAbsError: 3.37134e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.42228e-06\tAbsError: 2.96302e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.00659e-05\tAbsError: 2.80113e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63177e-07\tAbsError: 5.07906e-05\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 9.38210e-03\tAbsError: 2.10962e+12\n", + " Region: \"zone_1\"\tRelError: 4.50298e-03\tAbsError: 9.12391e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.50004e-03\tAbsError: 3.65942e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.93563e-06\tAbsError: 9.12025e-04\n", + " Region: \"zone_3\"\tRelError: 4.87913e-03\tAbsError: 2.10962e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.20016e-04\tAbsError: 1.07098e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.33767e-04\tAbsError: 1.03864e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62241e-03\tAbsError: 5.02038e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.93589e-06\tAbsError: 9.12124e-04\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 1.49320e-01\tAbsError: 9.78802e+12\n", + " Region: \"zone_1\"\tRelError: 1.30277e-01\tAbsError: 2.31356e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30269e-01\tAbsError: 8.55343e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.45749e-06\tAbsError: 2.31271e-03\n", + " Region: \"zone_3\"\tRelError: 1.90439e-02\tAbsError: 9.78802e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.05214e-04\tAbsError: 4.74418e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.40367e-04\tAbsError: 5.04383e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83909e-02\tAbsError: 1.27204e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.45815e-06\tAbsError: 2.31296e-03\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 1.02913e-02\tAbsError: 5.94758e+12\n", + " Region: \"zone_1\"\tRelError: 6.43819e-03\tAbsError: 1.03083e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.43487e-03\tAbsError: 3.65166e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32278e-06\tAbsError: 1.03046e-03\n", + " Region: \"zone_3\"\tRelError: 3.85311e-03\tAbsError: 5.94758e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.35920e-04\tAbsError: 2.93448e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.51630e-04\tAbsError: 3.01310e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.56224e-03\tAbsError: 5.67180e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.32307e-06\tAbsError: 1.03058e-03\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 5.08199e-02\tAbsError: 1.09065e+13\n", + " Region: \"zone_1\"\tRelError: 4.62987e-02\tAbsError: 2.13463e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62918e-02\tAbsError: 7.30329e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.86188e-06\tAbsError: 2.13389e-03\n", + " Region: \"zone_3\"\tRelError: 4.52125e-03\tAbsError: 1.09065e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.78801e-04\tAbsError: 5.41354e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.12348e-04\tAbsError: 5.49295e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.92324e-03\tAbsError: 1.17359e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.86248e-06\tAbsError: 2.13412e-03\n", + "Iteration: 62\n", + " Device: \"device\"\tRelError: 1.90932e-04\tAbsError: 5.49318e+10\n", + " Region: \"zone_1\"\tRelError: 1.17806e-04\tAbsError: 4.40625e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17664e-04\tAbsError: 2.14868e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41495e-07\tAbsError: 4.40410e-05\n", + " Region: \"zone_3\"\tRelError: 7.31266e-05\tAbsError: 5.49318e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.78336e-06\tAbsError: 2.92364e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.43666e-06\tAbsError: 2.56954e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.07651e-05\tAbsError: 2.42915e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.41507e-07\tAbsError: 4.40458e-05\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 8.04377e-03\tAbsError: 1.80848e+12\n", + " Region: \"zone_1\"\tRelError: 3.84537e-03\tAbsError: 7.82154e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.84286e-03\tAbsError: 3.13706e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.51658e-06\tAbsError: 7.81840e-04\n", + " Region: \"zone_3\"\tRelError: 4.19840e-03\tAbsError: 1.80848e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02877e-04\tAbsError: 9.18099e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.14663e-04\tAbsError: 8.90379e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.97834e-03\tAbsError: 4.30376e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.51681e-06\tAbsError: 7.81925e-04\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 1.15660e-01\tAbsError: 8.32108e+12\n", + " Region: \"zone_1\"\tRelError: 9.97108e-02\tAbsError: 1.96686e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.97044e-02\tAbsError: 7.27159e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.33990e-06\tAbsError: 1.96614e-03\n", + " Region: \"zone_3\"\tRelError: 1.59492e-02\tAbsError: 8.32108e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.59430e-04\tAbsError: 4.03317e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.89303e-04\tAbsError: 4.28791e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53941e-02\tAbsError: 1.08141e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.34047e-06\tAbsError: 1.96635e-03\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 8.72880e-03\tAbsError: 5.03259e+12\n", + " Region: \"zone_1\"\tRelError: 5.47751e-03\tAbsError: 8.72237e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.47470e-03\tAbsError: 3.08987e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.81158e-06\tAbsError: 8.71928e-04\n", + " Region: \"zone_3\"\tRelError: 3.25128e-03\tAbsError: 5.03259e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.15018e-04\tAbsError: 2.48303e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.28313e-04\tAbsError: 2.54956e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.00514e-03\tAbsError: 4.79920e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.81183e-06\tAbsError: 8.72022e-04\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 4.42501e-02\tAbsError: 9.15699e+12\n", + " Region: \"zone_1\"\tRelError: 4.04432e-02\tAbsError: 1.79218e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.04374e-02\tAbsError: 6.13171e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.76109e-06\tAbsError: 1.79156e-03\n", + " Region: \"zone_3\"\tRelError: 3.80692e-03\tAbsError: 9.15699e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.34110e-04\tAbsError: 4.54516e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.62284e-04\tAbsError: 4.61183e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.30476e-03\tAbsError: 9.85318e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.76160e-06\tAbsError: 1.79176e-03\n", + "Iteration: 63\n", + " Device: \"device\"\tRelError: 1.65585e-04\tAbsError: 4.76370e+10\n", + " Region: \"zone_1\"\tRelError: 1.02172e-04\tAbsError: 3.82111e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02049e-04\tAbsError: 1.86334e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22705e-07\tAbsError: 3.81925e-05\n", + " Region: \"zone_3\"\tRelError: 6.34128e-05\tAbsError: 4.76370e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.01533e-06\tAbsError: 2.53539e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.58187e-06\tAbsError: 2.22831e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.26929e-05\tAbsError: 2.10656e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22716e-07\tAbsError: 3.81966e-05\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 6.89490e-03\tAbsError: 1.55034e+12\n", + " Region: \"zone_1\"\tRelError: 3.30737e-03\tAbsError: 6.70506e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.30521e-03\tAbsError: 2.68926e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.15736e-06\tAbsError: 6.70238e-04\n", + " Region: \"zone_3\"\tRelError: 3.58754e-03\tAbsError: 1.55034e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.81975e-05\tAbsError: 7.87051e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.83025e-05\tAbsError: 7.63288e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.39888e-03\tAbsError: 3.68943e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.15756e-06\tAbsError: 6.70310e-04\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 1.06352e-01\tAbsError: 7.07421e+12\n", + " Region: \"zone_1\"\tRelError: 9.26196e-02\tAbsError: 1.67211e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.26142e-02\tAbsError: 6.18193e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.38985e-06\tAbsError: 1.67149e-03\n", + " Region: \"zone_3\"\tRelError: 1.37328e-02\tAbsError: 7.07421e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.20586e-04\tAbsError: 3.42882e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.45991e-04\tAbsError: 3.64539e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32608e-02\tAbsError: 9.19356e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.39033e-06\tAbsError: 1.67168e-03\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 7.37096e-03\tAbsError: 4.25830e+12\n", + " Region: \"zone_1\"\tRelError: 4.61343e-03\tAbsError: 7.38044e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.61105e-03\tAbsError: 2.61449e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.37901e-06\tAbsError: 7.37783e-04\n", + " Region: \"zone_3\"\tRelError: 2.75754e-03\tAbsError: 4.25830e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.73162e-05\tAbsError: 2.10101e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.08564e-04\tAbsError: 2.15730e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54928e-03\tAbsError: 4.06085e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.37923e-06\tAbsError: 7.37862e-04\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 3.60286e-02\tAbsError: 7.68788e+12\n", + " Region: \"zone_1\"\tRelError: 3.28402e-02\tAbsError: 1.50467e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.28353e-02\tAbsError: 5.14800e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.83685e-06\tAbsError: 1.50416e-03\n", + " Region: \"zone_3\"\tRelError: 3.18845e-03\tAbsError: 7.68788e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.96528e-04\tAbsError: 3.81595e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.20176e-04\tAbsError: 3.87192e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76691e-03\tAbsError: 8.27251e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.83728e-06\tAbsError: 1.50432e-03\n", + "Iteration: 64\n", + " Device: \"device\"\tRelError: 1.43590e-04\tAbsError: 4.13110e+10\n", + " Region: \"zone_1\"\tRelError: 8.85959e-05\tAbsError: 3.31368e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.84895e-05\tAbsError: 1.61589e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06410e-07\tAbsError: 3.31206e-05\n", + " Region: \"zone_3\"\tRelError: 5.49939e-05\tAbsError: 4.13110e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.34932e-06\tAbsError: 2.19870e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.84063e-06\tAbsError: 1.93240e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.56975e-05\tAbsError: 1.82682e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06419e-07\tAbsError: 3.31243e-05\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 5.91119e-03\tAbsError: 1.32903e+12\n", + " Region: \"zone_1\"\tRelError: 2.82725e-03\tAbsError: 5.74796e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.82540e-03\tAbsError: 2.30539e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84941e-06\tAbsError: 5.74566e-04\n", + " Region: \"zone_3\"\tRelError: 3.08394e-03\tAbsError: 1.32903e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.56039e-05\tAbsError: 6.74701e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.42655e-05\tAbsError: 6.54331e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.92222e-03\tAbsError: 3.16279e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84958e-06\tAbsError: 5.74628e-04\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 8.45417e-02\tAbsError: 6.01402e+12\n", + " Region: \"zone_1\"\tRelError: 7.29927e-02\tAbsError: 1.42154e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.29881e-02\tAbsError: 5.25550e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.58213e-06\tAbsError: 1.42101e-03\n", + " Region: \"zone_3\"\tRelError: 1.15490e-02\tAbsError: 6.01402e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.87506e-04\tAbsError: 2.91495e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.09098e-04\tAbsError: 3.09907e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11479e-02\tAbsError: 7.81585e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.58254e-06\tAbsError: 1.42117e-03\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 6.24762e-03\tAbsError: 3.60318e+12\n", + " Region: \"zone_1\"\tRelError: 3.91895e-03\tAbsError: 6.24497e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.91694e-03\tAbsError: 2.21226e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.01301e-06\tAbsError: 6.24275e-04\n", + " Region: \"zone_3\"\tRelError: 2.32867e-03\tAbsError: 3.60318e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.23487e-05\tAbsError: 1.77778e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.18672e-05\tAbsError: 1.82541e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.15244e-03\tAbsError: 3.43609e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.01319e-06\tAbsError: 6.24343e-04\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 3.10359e-02\tAbsError: 6.45464e+12\n", + " Region: \"zone_1\"\tRelError: 2.83535e-02\tAbsError: 1.26328e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83494e-02\tAbsError: 4.32216e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.06092e-06\tAbsError: 1.26285e-03\n", + " Region: \"zone_3\"\tRelError: 2.68240e-03\tAbsError: 6.45464e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.65018e-04\tAbsError: 3.20382e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.84877e-04\tAbsError: 3.25082e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32845e-03\tAbsError: 6.94539e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.06128e-06\tAbsError: 1.26299e-03\n", + "Iteration: 65\n", + " Device: \"device\"\tRelError: 1.24526e-04\tAbsError: 3.58250e+10\n", + " Region: \"zone_1\"\tRelError: 7.68366e-05\tAbsError: 2.87363e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.67443e-05\tAbsError: 1.40131e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.22790e-08\tAbsError: 2.87223e-05\n", + " Region: \"zone_3\"\tRelError: 4.76893e-05\tAbsError: 3.58250e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.77174e-06\tAbsError: 1.90672e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.19780e-06\tAbsError: 1.67578e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.96275e-05\tAbsError: 1.58422e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.22873e-08\tAbsError: 2.87255e-05\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 5.06704e-03\tAbsError: 1.13933e+12\n", + " Region: \"zone_1\"\tRelError: 2.42957e-03\tAbsError: 4.92748e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42798e-03\tAbsError: 1.97631e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58542e-06\tAbsError: 4.92550e-04\n", + " Region: \"zone_3\"\tRelError: 2.63748e-03\tAbsError: 1.13933e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.48149e-05\tAbsError: 5.78395e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.22408e-05\tAbsError: 5.60931e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49884e-03\tAbsError: 2.71132e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58556e-06\tAbsError: 4.92604e-04\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 7.60688e-02\tAbsError: 5.11283e+12\n", + " Region: \"zone_1\"\tRelError: 6.61597e-02\tAbsError: 1.20851e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.61558e-02\tAbsError: 4.46795e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.89548e-06\tAbsError: 1.20806e-03\n", + " Region: \"zone_3\"\tRelError: 9.90910e-03\tAbsError: 5.11283e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.59424e-04\tAbsError: 2.47815e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.77784e-04\tAbsError: 2.63468e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.56800e-03\tAbsError: 6.64459e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.89583e-06\tAbsError: 1.20819e-03\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 5.27878e-03\tAbsError: 3.04882e+12\n", + " Region: \"zone_1\"\tRelError: 3.30507e-03\tAbsError: 5.28419e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.30336e-03\tAbsError: 1.87190e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70331e-06\tAbsError: 5.28231e-04\n", + " Region: \"zone_3\"\tRelError: 1.97371e-03\tAbsError: 3.04882e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.96762e-05\tAbsError: 1.50426e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.77295e-05\tAbsError: 1.54456e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82461e-03\tAbsError: 2.90745e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.70346e-06\tAbsError: 5.28288e-04\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 2.54997e-02\tAbsError: 5.41910e+12\n", + " Region: \"zone_1\"\tRelError: 2.32515e-02\tAbsError: 1.06062e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32481e-02\tAbsError: 3.62877e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.40944e-06\tAbsError: 1.06026e-03\n", + " Region: \"zone_3\"\tRelError: 2.24823e-03\tAbsError: 5.41910e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38533e-04\tAbsError: 2.68982e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.55202e-04\tAbsError: 2.72928e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95109e-03\tAbsError: 5.83119e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.40974e-06\tAbsError: 1.06037e-03\n", + "Iteration: 66\n", + " Device: \"device\"\tRelError: 1.07986e-04\tAbsError: 3.10676e+10\n", + " Region: \"zone_1\"\tRelError: 6.66285e-05\tAbsError: 2.49203e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.65485e-05\tAbsError: 1.21522e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.00246e-08\tAbsError: 2.49081e-05\n", + " Region: \"zone_3\"\tRelError: 4.13575e-05\tAbsError: 3.10676e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.27087e-06\tAbsError: 1.65351e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.64035e-06\tAbsError: 1.45325e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.43663e-05\tAbsError: 1.37384e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.00319e-08\tAbsError: 2.49108e-05\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 4.34402e-03\tAbsError: 9.76692e+11\n", + " Region: \"zone_1\"\tRelError: 2.07844e-03\tAbsError: 4.22412e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07708e-03\tAbsError: 1.69421e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35911e-06\tAbsError: 4.22242e-04\n", + " Region: \"zone_3\"\tRelError: 2.26559e-03\tAbsError: 9.76692e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.55608e-05\tAbsError: 4.95831e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.19262e-05\tAbsError: 4.80861e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.14674e-03\tAbsError: 2.32430e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.35923e-06\tAbsError: 4.22288e-04\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 6.16087e-02\tAbsError: 4.34660e+12\n", + " Region: \"zone_1\"\tRelError: 5.32502e-02\tAbsError: 1.02741e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.32469e-02\tAbsError: 3.79839e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.31171e-06\tAbsError: 1.02703e-03\n", + " Region: \"zone_3\"\tRelError: 8.35847e-03\tAbsError: 4.34660e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.35521e-04\tAbsError: 2.10677e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.51127e-04\tAbsError: 2.23984e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.06851e-03\tAbsError: 5.64886e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.31200e-06\tAbsError: 1.02714e-03\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 4.47211e-03\tAbsError: 2.57977e+12\n", + " Region: \"zone_1\"\tRelError: 2.80443e-03\tAbsError: 4.47122e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80298e-03\tAbsError: 1.58391e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44125e-06\tAbsError: 4.46963e-04\n", + " Region: \"zone_3\"\tRelError: 1.66769e-03\tAbsError: 2.57977e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.89589e-05\tAbsError: 1.27284e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.57738e-05\tAbsError: 1.30694e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54151e-03\tAbsError: 2.46014e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44138e-06\tAbsError: 4.47011e-04\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 2.18003e-02\tAbsError: 4.54979e+12\n", + " Region: \"zone_1\"\tRelError: 1.99100e-02\tAbsError: 8.90473e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.99071e-02\tAbsError: 3.04664e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.86249e-06\tAbsError: 8.90168e-04\n", + " Region: \"zone_3\"\tRelError: 1.89027e-03\tAbsError: 4.54979e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16317e-04\tAbsError: 2.25833e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.30315e-04\tAbsError: 2.29146e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64078e-03\tAbsError: 4.89572e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.86274e-06\tAbsError: 8.90264e-04\n", + "Iteration: 67\n", + " Device: \"device\"\tRelError: 9.36483e-05\tAbsError: 2.69419e+10\n", + " Region: \"zone_1\"\tRelError: 5.77838e-05\tAbsError: 2.16109e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.77144e-05\tAbsError: 1.05384e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93976e-08\tAbsError: 2.16004e-05\n", + " Region: \"zone_3\"\tRelError: 3.58645e-05\tAbsError: 2.69419e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.83651e-06\tAbsError: 1.43393e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.15692e-06\tAbsError: 1.26026e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.98017e-05\tAbsError: 1.19140e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.94039e-08\tAbsError: 2.16027e-05\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 3.72375e-03\tAbsError: 8.37278e+11\n", + " Region: \"zone_1\"\tRelError: 1.78493e-03\tAbsError: 3.62115e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78377e-03\tAbsError: 1.45237e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16511e-06\tAbsError: 3.61970e-04\n", + " Region: \"zone_3\"\tRelError: 1.93881e-03\tAbsError: 8.37278e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.76315e-05\tAbsError: 4.25056e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.30887e-05\tAbsError: 4.12222e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.83693e-03\tAbsError: 1.99252e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16521e-06\tAbsError: 3.62009e-04\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 5.45702e-02\tAbsError: 3.69526e+12\n", + " Region: \"zone_1\"\tRelError: 4.74168e-02\tAbsError: 8.73443e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.74140e-02\tAbsError: 3.22918e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.81543e-06\tAbsError: 8.73120e-04\n", + " Region: \"zone_3\"\tRelError: 7.15332e-03\tAbsError: 3.69526e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.15221e-04\tAbsError: 1.79107e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.28491e-04\tAbsError: 1.90420e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.90679e-03\tAbsError: 4.80233e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.81568e-06\tAbsError: 8.73214e-04\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 3.78016e-03\tAbsError: 2.18287e+12\n", + " Region: \"zone_1\"\tRelError: 2.36735e-03\tAbsError: 3.78333e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.36613e-03\tAbsError: 1.34023e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21952e-06\tAbsError: 3.78199e-04\n", + " Region: \"zone_3\"\tRelError: 1.41281e-03\tAbsError: 2.18287e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.98865e-05\tAbsError: 1.07701e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.56525e-05\tAbsError: 1.10586e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30606e-03\tAbsError: 2.08165e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21963e-06\tAbsError: 3.78239e-04\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 1.80263e-02\tAbsError: 3.81986e+12\n", + " Region: \"zone_1\"\tRelError: 1.64412e-02\tAbsError: 7.47620e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64387e-02\tAbsError: 2.55787e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.40327e-06\tAbsError: 7.47364e-04\n", + " Region: \"zone_3\"\tRelError: 1.58512e-03\tAbsError: 3.81986e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.76512e-05\tAbsError: 1.89603e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09402e-04\tAbsError: 1.92384e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37566e-03\tAbsError: 4.11033e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.40349e-06\tAbsError: 7.47444e-04\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 3.19235e-03\tAbsError: 7.17760e+11\n", + " Region: \"zone_1\"\tRelError: 1.52781e-03\tAbsError: 3.10426e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52681e-03\tAbsError: 1.24505e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.98796e-07\tAbsError: 3.10301e-04\n", + " Region: \"zone_3\"\tRelError: 1.66454e-03\tAbsError: 7.17760e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.08312e-05\tAbsError: 3.64381e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.55092e-05\tAbsError: 3.53379e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57720e-03\tAbsError: 1.70810e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.98886e-07\tAbsError: 3.10335e-04\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 4.47962e-02\tAbsError: 3.14148e+12\n", + " Region: \"zone_1\"\tRelError: 3.87491e-02\tAbsError: 7.42552e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.87467e-02\tAbsError: 2.74526e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39352e-06\tAbsError: 7.42277e-04\n", + " Region: \"zone_3\"\tRelError: 6.04704e-03\tAbsError: 3.14148e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.79479e-05\tAbsError: 1.52266e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09227e-04\tAbsError: 1.61883e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.83747e-03\tAbsError: 4.08268e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.39373e-06\tAbsError: 7.42358e-04\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 3.20139e-03\tAbsError: 1.84704e+12\n", + " Region: \"zone_1\"\tRelError: 2.00716e-03\tAbsError: 3.20126e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.00612e-03\tAbsError: 1.13403e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03190e-06\tAbsError: 3.20013e-04\n", + " Region: \"zone_3\"\tRelError: 1.19424e-03\tAbsError: 1.84704e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.22127e-05\tAbsError: 9.11314e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.70919e-05\tAbsError: 9.35730e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10390e-03\tAbsError: 1.76139e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03199e-06\tAbsError: 3.20047e-04\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 1.53289e-02\tAbsError: 3.20708e+12\n", + " Region: \"zone_1\"\tRelError: 1.39968e-02\tAbsError: 6.27683e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39948e-02\tAbsError: 2.14753e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.01773e-06\tAbsError: 6.27469e-04\n", + " Region: \"zone_3\"\tRelError: 1.33217e-03\tAbsError: 3.20708e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.19899e-05\tAbsError: 1.59187e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.18565e-05\tAbsError: 1.61522e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15631e-03\tAbsError: 3.45093e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.01791e-06\tAbsError: 6.27536e-04\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 2.73656e-03\tAbsError: 6.15306e+11\n", + " Region: \"zone_1\"\tRelError: 1.31144e-03\tAbsError: 2.66114e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31058e-03\tAbsError: 1.06733e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.56226e-07\tAbsError: 2.66008e-04\n", + " Region: \"zone_3\"\tRelError: 1.42512e-03\tAbsError: 6.15306e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.50037e-05\tAbsError: 3.12369e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.90141e-05\tAbsError: 3.02937e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35024e-03\tAbsError: 1.46428e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.56302e-07\tAbsError: 2.66037e-04\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:37:03\u001b[0m.\u001b[1;36m643\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:37:03\u001b[0m.\u001b[1;36m666\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.0 bias\u001b[0m \n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 3.92301e-02\tAbsError: 2.67073e+12\n", + " Region: \"zone_1\"\tRelError: 3.40645e-02\tAbsError: 6.31275e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.40624e-02\tAbsError: 2.33387e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03483e-06\tAbsError: 6.31042e-04\n", + " Region: \"zone_3\"\tRelError: 5.16562e-03\tAbsError: 2.67073e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.32745e-05\tAbsError: 1.29448e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.28647e-05\tAbsError: 1.37624e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.98745e-03\tAbsError: 3.47086e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03502e-06\tAbsError: 6.31110e-04\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:37:03\u001b[0m.\u001b[1;36m684\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.0 V. Current applied bias: 1.0\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31686\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 2.70685e-03\tAbsError: 1.56287e+12\n", + " Region: \"zone_1\"\tRelError: 1.69548e-03\tAbsError: 2.70875e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69460e-03\tAbsError: 9.59563e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.73140e-07\tAbsError: 2.70779e-04\n", + " Region: \"zone_3\"\tRelError: 1.01138e-03\tAbsError: 1.56287e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.57174e-05\tAbsError: 7.71107e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.98458e-05\tAbsError: 7.91767e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.34940e-04\tAbsError: 1.49040e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.73218e-07\tAbsError: 2.70808e-04\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 1.27324e-02\tAbsError: 2.69258e+12\n", + " Region: \"zone_1\"\tRelError: 1.16149e-02\tAbsError: 5.26988e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16132e-02\tAbsError: 1.80301e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69404e-06\tAbsError: 5.26808e-04\n", + " Region: \"zone_3\"\tRelError: 1.11751e-03\tAbsError: 2.69258e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.88337e-05\tAbsError: 1.33649e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.71166e-05\tAbsError: 1.35609e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.69865e-04\tAbsError: 2.89732e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69419e-06\tAbsError: 5.26864e-04\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 1.26966e+01\tAbsError: 2.59120e+17\n", + " Region: \"zone_1\"\tRelError: 1.00919e+01\tAbsError: 6.12928e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00919e+01\tAbsError: 6.12741e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.01819e-08\tAbsError: 1.87319e-05\n", + " Region: \"zone_3\"\tRelError: 2.60467e+00\tAbsError: 2.59120e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.02625e-01\tAbsError: 1.30009e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.01763e-01\tAbsError: 1.29112e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 8.00283e-01\tAbsError: 6.12741e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.01873e-08\tAbsError: 1.87340e-05\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 2.34601e-03\tAbsError: 5.27474e+11\n", + " Region: \"zone_1\"\tRelError: 1.12298e-03\tAbsError: 2.28128e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12225e-03\tAbsError: 9.14976e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.34005e-07\tAbsError: 2.28037e-04\n", + " Region: \"zone_3\"\tRelError: 1.22303e-03\tAbsError: 5.27474e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.00065e-05\tAbsError: 2.67780e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.34443e-05\tAbsError: 2.59695e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15885e-03\tAbsError: 1.25526e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.34071e-07\tAbsError: 2.28062e-04\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 3.25182e-02\tAbsError: 2.27049e+12\n", + " Region: \"zone_1\"\tRelError: 2.81446e-02\tAbsError: 5.36675e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.81429e-02\tAbsError: 1.98412e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.72990e-06\tAbsError: 5.36476e-04\n", + " Region: \"zone_3\"\tRelError: 4.37360e-03\tAbsError: 2.27049e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.07918e-05\tAbsError: 1.10049e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.89441e-05\tAbsError: 1.17000e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.22214e-03\tAbsError: 2.95073e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73005e-06\tAbsError: 5.36534e-04\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 2.29184e-03\tAbsError: 1.32243e+12\n", + " Region: \"zone_1\"\tRelError: 1.43669e-03\tAbsError: 2.29201e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43595e-03\tAbsError: 8.11936e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.38809e-07\tAbsError: 2.29120e-04\n", + " Region: \"zone_3\"\tRelError: 8.55153e-04\tAbsError: 1.32243e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.02230e-05\tAbsError: 6.52474e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.37163e-05\tAbsError: 6.69956e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.90475e-04\tAbsError: 1.26110e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.38874e-07\tAbsError: 2.29145e-04\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 1.07865e-02\tAbsError: 2.26063e+12\n", + " Region: \"zone_1\"\tRelError: 9.84759e-03\tAbsError: 4.42446e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.84617e-03\tAbsError: 1.51377e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42227e-06\tAbsError: 4.42295e-04\n", + " Region: \"zone_3\"\tRelError: 9.38904e-04\tAbsError: 2.26063e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.77933e-05\tAbsError: 1.12209e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.47480e-05\tAbsError: 1.13855e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.14941e-04\tAbsError: 2.43252e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42240e-06\tAbsError: 4.42342e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.38207e+01\tAbsError: 6.29570e+17\n", + " Region: \"zone_1\"\tRelError: 3.68434e+01\tAbsError: 1.01140e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.68403e+01\tAbsError: 5.47540e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.12302e-03\tAbsError: 9.56647e-01\n", + " Region: \"zone_3\"\tRelError: 6.97731e+00\tAbsError: 6.29570e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.63130e-01\tAbsError: 3.09146e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.03858e-01\tAbsError: 3.20424e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 5.20720e+00\tAbsError: 5.47544e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.12302e-03\tAbsError: 9.56647e-01\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 2.01107e-03\tAbsError: 4.52182e+11\n", + " Region: \"zone_1\"\tRelError: 9.63608e-04\tAbsError: 1.95565e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.62979e-04\tAbsError: 7.84369e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.29231e-07\tAbsError: 1.95486e-04\n", + " Region: \"zone_3\"\tRelError: 1.04747e-03\tAbsError: 4.52182e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.57238e-05\tAbsError: 2.29556e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.86709e-05\tAbsError: 2.22625e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.92442e-04\tAbsError: 1.07608e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.29287e-07\tAbsError: 1.95507e-04\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 2.82446e-02\tAbsError: 1.93025e+12\n", + " Region: \"zone_1\"\tRelError: 2.45135e-02\tAbsError: 4.56250e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.45120e-02\tAbsError: 1.68679e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47066e-06\tAbsError: 4.56082e-04\n", + " Region: \"zone_3\"\tRelError: 3.73113e-03\tAbsError: 1.93025e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.01857e-05\tAbsError: 9.35578e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.71168e-05\tAbsError: 9.94671e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.60236e-03\tAbsError: 2.50854e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47080e-06\tAbsError: 4.56131e-04\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 1.93822e-03\tAbsError: 1.11897e+12\n", + " Region: \"zone_1\"\tRelError: 1.21418e-03\tAbsError: 1.93939e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21356e-03\tAbsError: 6.87020e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.25143e-07\tAbsError: 1.93870e-04\n", + " Region: \"zone_3\"\tRelError: 7.24035e-04\tAbsError: 1.11897e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.55727e-05\tAbsError: 5.52091e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.85285e-05\tAbsError: 5.66883e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.69309e-04\tAbsError: 1.06709e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.25199e-07\tAbsError: 1.93891e-04\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 8.98782e-03\tAbsError: 1.89797e+12\n", + " Region: \"zone_1\"\tRelError: 8.20001e-03\tAbsError: 3.71467e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.19882e-03\tAbsError: 1.27092e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19411e-06\tAbsError: 3.71340e-04\n", + " Region: \"zone_3\"\tRelError: 7.87809e-04\tAbsError: 1.89797e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.85203e-05\tAbsError: 9.42073e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.43589e-05\tAbsError: 9.55892e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.83736e-04\tAbsError: 2.04228e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19421e-06\tAbsError: 3.71380e-04\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 1.72405e-03\tAbsError: 3.87635e+11\n", + " Region: \"zone_1\"\tRelError: 8.25378e-04\tAbsError: 1.67649e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.24839e-04\tAbsError: 6.72406e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.39412e-07\tAbsError: 1.67582e-04\n", + " Region: \"zone_3\"\tRelError: 8.98671e-04\tAbsError: 3.87635e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.20515e-05\tAbsError: 1.96788e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.45779e-05\tAbsError: 1.90847e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.51502e-04\tAbsError: 9.22480e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.39460e-07\tAbsError: 1.67600e-04\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 2.35772e-02\tAbsError: 1.64098e+12\n", + " Region: \"zone_1\"\tRelError: 2.04146e-02\tAbsError: 3.87878e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.04133e-02\tAbsError: 1.43401e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.25027e-06\tAbsError: 3.87735e-04\n", + " Region: \"zone_3\"\tRelError: 3.16264e-03\tAbsError: 1.64098e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.11647e-05\tAbsError: 7.95373e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.70567e-05\tAbsError: 8.45610e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.05317e-03\tAbsError: 2.13262e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.25039e-06\tAbsError: 3.87777e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 3.38112e+03\tAbsError: 1.02959e+18\n", + " Region: \"zone_1\"\tRelError: 3.16505e+03\tAbsError: 1.51309e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.16504e+03\tAbsError: 4.71922e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.78230e-03\tAbsError: 1.46589e+00\n", + " Region: \"zone_3\"\tRelError: 2.16070e+02\tAbsError: 1.02959e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.77579e-01\tAbsError: 5.15927e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.31169e-01\tAbsError: 5.13666e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.14556e+02\tAbsError: 4.72405e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.78310e-03\tAbsError: 1.46611e+00\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 1.64076e-03\tAbsError: 9.46822e+11\n", + " Region: \"zone_1\"\tRelError: 1.02844e-03\tAbsError: 1.64102e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02791e-03\tAbsError: 5.81323e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.28966e-07\tAbsError: 1.64043e-04\n", + " Region: \"zone_3\"\tRelError: 6.12323e-04\tAbsError: 9.46822e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16387e-05\tAbsError: 4.67153e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.41398e-05\tAbsError: 4.79669e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.66016e-04\tAbsError: 9.02915e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.29013e-07\tAbsError: 1.64061e-04\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 7.59401e-03\tAbsError: 1.59349e+12\n", + " Region: \"zone_1\"\tRelError: 6.93225e-03\tAbsError: 3.11875e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.93125e-03\tAbsError: 1.06704e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00254e-06\tAbsError: 3.11768e-04\n", + " Region: \"zone_3\"\tRelError: 6.61758e-04\tAbsError: 1.59349e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.07376e-05\tAbsError: 7.90944e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.56398e-05\tAbsError: 8.02546e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.74378e-04\tAbsError: 1.71465e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00263e-06\tAbsError: 3.11802e-04\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 1.47792e-03\tAbsError: 3.32303e+11\n", + " Region: \"zone_1\"\tRelError: 7.08062e-04\tAbsError: 1.43718e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.07599e-04\tAbsError: 5.76424e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.62415e-07\tAbsError: 1.43661e-04\n", + " Region: \"zone_3\"\tRelError: 7.69860e-04\tAbsError: 3.32303e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.89041e-05\tAbsError: 1.68698e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.10699e-05\tAbsError: 1.63605e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.29424e-04\tAbsError: 7.90802e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.62456e-07\tAbsError: 1.43676e-04\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 2.03573e-02\tAbsError: 1.39508e+12\n", + " Region: \"zone_1\"\tRelError: 1.76618e-02\tAbsError: 3.29752e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76608e-02\tAbsError: 1.21912e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06291e-06\tAbsError: 3.29630e-04\n", + " Region: \"zone_3\"\tRelError: 2.69546e-03\tAbsError: 1.39508e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.34986e-05\tAbsError: 6.76183e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.85080e-05\tAbsError: 7.18892e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.60239e-03\tAbsError: 1.81303e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06301e-06\tAbsError: 3.29666e-04\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 1.38780e-03\tAbsError: 8.01153e+11\n", + " Region: \"zone_1\"\tRelError: 8.69456e-04\tAbsError: 1.38855e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.69009e-04\tAbsError: 4.91887e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.47585e-07\tAbsError: 1.38805e-04\n", + " Region: \"zone_3\"\tRelError: 5.18347e-04\tAbsError: 8.01153e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.83094e-05\tAbsError: 3.95281e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.04257e-05\tAbsError: 4.05872e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.79164e-04\tAbsError: 7.64002e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.47625e-07\tAbsError: 1.38820e-04\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 2.28482e+03\tAbsError: 7.64473e+17\n", + " Region: \"zone_1\"\tRelError: 4.58174e+02\tAbsError: 1.11368e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.58171e+02\tAbsError: 3.83026e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.50832e-03\tAbsError: 1.07538e+00\n", + " Region: \"zone_3\"\tRelError: 1.82665e+03\tAbsError: 7.64473e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.02429e-01\tAbsError: 3.83312e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.35021e-01\tAbsError: 3.81161e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82561e+03\tAbsError: 3.83547e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.50840e-03\tAbsError: 1.07540e+00\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 6.34184e-03\tAbsError: 1.33785e+12\n", + " Region: \"zone_1\"\tRelError: 5.78648e-03\tAbsError: 2.61843e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.78564e-03\tAbsError: 8.95858e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.41711e-07\tAbsError: 2.61753e-04\n", + " Region: \"zone_3\"\tRelError: 5.55362e-04\tAbsError: 1.33785e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.42015e-05\tAbsError: 6.64056e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.83171e-05\tAbsError: 6.73797e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.82001e-04\tAbsError: 1.43958e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.41785e-07\tAbsError: 2.61781e-04\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 1.26698e-03\tAbsError: 2.84869e+11\n", + " Region: \"zone_1\"\tRelError: 6.06623e-04\tAbsError: 1.23203e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.06226e-04\tAbsError: 4.94144e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.96408e-07\tAbsError: 1.23154e-04\n", + " Region: \"zone_3\"\tRelError: 6.60358e-04\tAbsError: 2.84869e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.62055e-05\tAbsError: 1.44618e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.80621e-05\tAbsError: 1.40251e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.25694e-04\tAbsError: 6.77920e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.96444e-07\tAbsError: 1.23167e-04\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 1.70796e-02\tAbsError: 1.18601e+12\n", + " Region: \"zone_1\"\tRelError: 1.47930e-02\tAbsError: 2.80337e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47921e-02\tAbsError: 1.03642e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.03628e-07\tAbsError: 2.80233e-04\n", + " Region: \"zone_3\"\tRelError: 2.28664e-03\tAbsError: 1.18601e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.69791e-05\tAbsError: 5.74851e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.12376e-05\tAbsError: 6.11160e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20752e-03\tAbsError: 1.54134e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.03708e-07\tAbsError: 2.80263e-04\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 1.17467e-03\tAbsError: 6.77897e+11\n", + " Region: \"zone_1\"\tRelError: 7.36233e-04\tAbsError: 1.17492e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.35854e-04\tAbsError: 4.16211e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.78724e-07\tAbsError: 1.17450e-04\n", + " Region: \"zone_3\"\tRelError: 4.38436e-04\tAbsError: 6.77897e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.54927e-05\tAbsError: 3.34468e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.72834e-05\tAbsError: 3.43429e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.05281e-04\tAbsError: 6.46461e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.78758e-07\tAbsError: 1.17463e-04\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.75945e+02\tAbsError: 2.19366e+17\n", + " Region: \"zone_1\"\tRelError: 7.86289e+02\tAbsError: 1.18440e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 7.86285e+02\tAbsError: 2.78709e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.76011e-03\tAbsError: 1.15653e+00\n", + " Region: \"zone_3\"\tRelError: 1.89657e+02\tAbsError: 2.19366e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.08921e-01\tAbsError: 1.10070e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.59060e-01\tAbsError: 1.09296e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89185e+02\tAbsError: 2.79429e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.76033e-03\tAbsError: 1.15659e+00\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 5.34833e-03\tAbsError: 1.12323e+12\n", + " Region: \"zone_1\"\tRelError: 4.88190e-03\tAbsError: 2.19837e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.88119e-03\tAbsError: 7.52141e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.06680e-07\tAbsError: 2.19762e-04\n", + " Region: \"zone_3\"\tRelError: 4.66434e-04\tAbsError: 1.12323e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.87153e-05\tAbsError: 5.57527e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.21708e-05\tAbsError: 5.65705e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.04841e-04\tAbsError: 1.20864e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.06743e-07\tAbsError: 2.19785e-04\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 1.46838e-02\tAbsError: 1.00828e+12\n", + " Region: \"zone_1\"\tRelError: 1.27363e-02\tAbsError: 2.38326e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27355e-02\tAbsError: 8.81109e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.68213e-07\tAbsError: 2.38238e-04\n", + " Region: \"zone_3\"\tRelError: 1.94750e-03\tAbsError: 1.00828e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14382e-05\tAbsError: 4.88707e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.50587e-05\tAbsError: 5.19575e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.88024e-03\tAbsError: 1.31036e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.68282e-07\tAbsError: 2.38264e-04\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 1.08611e-03\tAbsError: 2.44206e+11\n", + " Region: \"zone_1\"\tRelError: 5.20302e-04\tAbsError: 1.05617e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.19962e-04\tAbsError: 4.23608e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.39824e-07\tAbsError: 1.05575e-04\n", + " Region: \"zone_3\"\tRelError: 5.65810e-04\tAbsError: 2.44206e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38924e-05\tAbsError: 1.23975e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.54840e-05\tAbsError: 1.20231e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.36093e-04\tAbsError: 5.81152e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.39854e-07\tAbsError: 1.05586e-04\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 9.93676e-04\tAbsError: 5.73603e+11\n", + " Region: \"zone_1\"\tRelError: 6.22576e-04\tAbsError: 9.94160e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.22256e-04\tAbsError: 3.52177e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.20458e-07\tAbsError: 9.93808e-05\n", + " Region: \"zone_3\"\tRelError: 3.71100e-04\tAbsError: 5.73603e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31090e-05\tAbsError: 2.83010e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.46242e-05\tAbsError: 2.90593e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.43046e-04\tAbsError: 5.47004e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.20486e-07\tAbsError: 9.93915e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.63173e+02\tAbsError: 2.99395e+16\n", + " Region: \"zone_1\"\tRelError: 1.84688e+02\tAbsError: 5.90892e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84686e+02\tAbsError: 2.23194e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84661e-03\tAbsError: 5.68573e-01\n", + " Region: \"zone_3\"\tRelError: 5.78485e+02\tAbsError: 2.99395e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.64984e-02\tAbsError: 1.49993e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.99486e-02\tAbsError: 1.49402e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.78396e+02\tAbsError: 2.23346e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84661e-03\tAbsError: 5.68573e-01\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 4.47349e-03\tAbsError: 9.43036e+11\n", + " Region: \"zone_1\"\tRelError: 4.08200e-03\tAbsError: 1.84570e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.08140e-03\tAbsError: 6.31479e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.93311e-07\tAbsError: 1.84506e-04\n", + " Region: \"zone_3\"\tRelError: 3.91490e-04\tAbsError: 9.43036e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.41083e-05\tAbsError: 4.68085e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.70093e-05\tAbsError: 4.74951e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.39779e-04\tAbsError: 1.01474e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.93364e-07\tAbsError: 1.84526e-04\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 1.23648e-02\tAbsError: 8.57182e+11\n", + " Region: \"zone_1\"\tRelError: 1.07117e-02\tAbsError: 2.02612e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07111e-02\tAbsError: 7.49068e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.53091e-07\tAbsError: 2.02537e-04\n", + " Region: \"zone_3\"\tRelError: 1.65310e-03\tAbsError: 8.57182e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.67265e-05\tAbsError: 4.15470e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.98043e-05\tAbsError: 4.41712e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59592e-03\tAbsError: 1.11399e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.53150e-07\tAbsError: 2.02559e-04\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 9.31088e-04\tAbsError: 2.09347e+11\n", + " Region: \"zone_1\"\tRelError: 4.45834e-04\tAbsError: 9.05409e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.45542e-04\tAbsError: 3.63141e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.91316e-07\tAbsError: 9.05046e-05\n", + " Region: \"zone_3\"\tRelError: 4.85255e-04\tAbsError: 2.09347e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19092e-05\tAbsError: 1.06278e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.32737e-05\tAbsError: 1.03069e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.59781e-04\tAbsError: 4.98196e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.91342e-07\tAbsError: 9.05144e-05\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 8.40994e-04\tAbsError: 4.85355e+11\n", + " Region: \"zone_1\"\tRelError: 5.27071e-04\tAbsError: 8.41209e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.26800e-04\tAbsError: 2.97995e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.71156e-07\tAbsError: 8.40911e-05\n", + " Region: \"zone_3\"\tRelError: 3.13923e-04\tAbsError: 4.85355e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10923e-05\tAbsError: 2.39469e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.23744e-05\tAbsError: 2.45885e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.90185e-04\tAbsError: 4.62848e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.71180e-07\tAbsError: 8.41002e-05\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 3.76770e-03\tAbsError: 7.91752e+11\n", + " Region: \"zone_1\"\tRelError: 3.43893e-03\tAbsError: 1.54960e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.43843e-03\tAbsError: 5.30175e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.98130e-07\tAbsError: 1.54907e-04\n", + " Region: \"zone_3\"\tRelError: 3.28768e-04\tAbsError: 7.91752e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.02410e-05\tAbsError: 3.92994e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.26767e-05\tAbsError: 3.98758e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.85352e-04\tAbsError: 8.51953e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.98174e-07\tAbsError: 1.54924e-04\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.66581e+00\tAbsError: 2.93842e+15\n", + " Region: \"zone_1\"\tRelError: 5.65877e+00\tAbsError: 2.30905e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.65804e+00\tAbsError: 8.86321e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.37508e-04\tAbsError: 2.30816e-01\n", + " Region: \"zone_3\"\tRelError: 1.00703e+00\tAbsError: 2.93842e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38451e-02\tAbsError: 1.46049e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.32068e-02\tAbsError: 1.47794e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.49243e-01\tAbsError: 1.05522e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.37562e-04\tAbsError: 2.30836e-01\n", + "Iteration: 59\n", + " Device: \"device\"\tRelError: 1.05974e-02\tAbsError: 7.28729e+11\n", + " Region: \"zone_1\"\tRelError: 9.19018e-03\tAbsError: 1.72249e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.18963e-03\tAbsError: 6.36816e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.55221e-07\tAbsError: 1.72185e-04\n", + " Region: \"zone_3\"\tRelError: 1.40722e-03\tAbsError: 7.28729e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.27217e-05\tAbsError: 3.53210e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.53384e-05\tAbsError: 3.75519e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35860e-03\tAbsError: 9.47053e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.55271e-07\tAbsError: 1.72204e-04\n", + "Iteration: 59\n", + " Device: \"device\"\tRelError: 7.98173e-04\tAbsError: 1.79464e+11\n", + " Region: \"zone_1\"\tRelError: 3.82340e-04\tAbsError: 7.76168e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.82090e-04\tAbsError: 3.11305e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.49733e-07\tAbsError: 7.75856e-05\n", + " Region: \"zone_3\"\tRelError: 4.15833e-04\tAbsError: 1.79464e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02093e-05\tAbsError: 9.11075e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13790e-05\tAbsError: 8.83568e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.93995e-04\tAbsError: 4.27082e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.49755e-07\tAbsError: 7.75941e-05\n", + "Iteration: 59\n", + " Device: \"device\"\tRelError: 7.11469e-04\tAbsError: 4.10683e+11\n", + " Region: \"zone_1\"\tRelError: 4.45783e-04\tAbsError: 7.11790e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.45553e-04\tAbsError: 2.52148e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29439e-07\tAbsError: 7.11538e-05\n", + " Region: \"zone_3\"\tRelError: 2.65686e-04\tAbsError: 4.10683e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.38569e-06\tAbsError: 2.02627e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04705e-05\tAbsError: 2.08056e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.45600e-04\tAbsError: 3.91639e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.29459e-07\tAbsError: 7.11614e-05\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 3.15490e-03\tAbsError: 6.64735e+11\n", + " Region: \"zone_1\"\tRelError: 2.87893e-03\tAbsError: 1.30101e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.87851e-03\tAbsError: 4.45122e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.18218e-07\tAbsError: 1.30056e-04\n", + " Region: \"zone_3\"\tRelError: 2.75967e-04\tAbsError: 6.64735e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.69937e-05\tAbsError: 3.29947e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.90386e-05\tAbsError: 3.34787e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39517e-04\tAbsError: 7.15280e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.18255e-07\tAbsError: 1.30070e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 7.07775e+00\tAbsError: 8.19211e+14\n", + " Region: \"zone_1\"\tRelError: 1.31640e+00\tAbsError: 2.04516e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31574e+00\tAbsError: 6.04894e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.53708e-04\tAbsError: 2.04455e-01\n", + " Region: \"zone_3\"\tRelError: 5.76135e+00\tAbsError: 8.19211e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.67780e-02\tAbsError: 4.12730e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.99351e-02\tAbsError: 4.06482e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.70398e+00\tAbsError: 1.13412e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.53765e-04\tAbsError: 2.04477e-01\n", + "Iteration: 60\n", + " Device: \"device\"\tRelError: 8.94741e-03\tAbsError: 6.19523e+11\n", + " Region: \"zone_1\"\tRelError: 7.75240e-03\tAbsError: 1.46436e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.75193e-03\tAbsError: 5.41385e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.72018e-07\tAbsError: 1.46382e-04\n", + " Region: \"zone_3\"\tRelError: 1.19500e-03\tAbsError: 6.19523e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.93165e-05\tAbsError: 3.00279e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.15409e-05\tAbsError: 3.19245e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.15367e-03\tAbsError: 8.05131e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.72060e-07\tAbsError: 1.46398e-04\n", + "Iteration: 60\n", + " Device: \"device\"\tRelError: 6.84246e-04\tAbsError: 1.53847e+11\n", + " Region: \"zone_1\"\tRelError: 3.27656e-04\tAbsError: 6.65375e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.27442e-04\tAbsError: 2.66868e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.14085e-07\tAbsError: 6.65108e-05\n", + " Region: \"zone_3\"\tRelError: 3.56590e-04\tAbsError: 1.53847e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.75197e-06\tAbsError: 7.81025e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.75467e-06\tAbsError: 7.57444e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.37869e-04\tAbsError: 3.66119e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.14104e-07\tAbsError: 6.65180e-05\n", + "Iteration: 60\n", + " Device: \"device\"\tRelError: 6.02109e-04\tAbsError: 3.47500e+11\n", + " Region: \"zone_1\"\tRelError: 3.77342e-04\tAbsError: 6.02282e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.77148e-04\tAbsError: 2.13356e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94140e-07\tAbsError: 6.02068e-05\n", + " Region: \"zone_3\"\tRelError: 2.24767e-04\tAbsError: 3.47500e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.94176e-06\tAbsError: 1.71453e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.85970e-06\tAbsError: 1.76047e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07772e-04\tAbsError: 3.31386e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94157e-07\tAbsError: 6.02133e-05\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 2.65467e-03\tAbsError: 5.58096e+11\n", + " Region: \"zone_1\"\tRelError: 2.42294e-03\tAbsError: 1.09230e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42259e-03\tAbsError: 3.73714e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.51126e-07\tAbsError: 1.09192e-04\n", + " Region: \"zone_3\"\tRelError: 2.31736e-04\tAbsError: 5.58096e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42676e-05\tAbsError: 2.77016e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.59845e-05\tAbsError: 2.81080e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.01133e-04\tAbsError: 6.00531e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.51157e-07\tAbsError: 1.09204e-04\n", + "Iteration: 61\n", + " Device: \"device\"\tRelError: 7.65127e-03\tAbsError: 5.26684e+11\n", + " Region: \"zone_1\"\tRelError: 6.63438e-03\tAbsError: 1.24492e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.63398e-03\tAbsError: 4.60255e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.01283e-07\tAbsError: 1.24446e-04\n", + " Region: \"zone_3\"\tRelError: 1.01689e-03\tAbsError: 5.26684e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.64219e-05\tAbsError: 2.55280e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.83131e-05\tAbsError: 2.71404e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.81752e-04\tAbsError: 6.84477e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.01319e-07\tAbsError: 1.24459e-04\n", + "Iteration: 61\n", + " Device: \"device\"\tRelError: 5.86569e-04\tAbsError: 1.31886e+11\n", + " Region: \"zone_1\"\tRelError: 2.80964e-04\tAbsError: 5.70397e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.80781e-04\tAbsError: 2.28775e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83526e-07\tAbsError: 5.70168e-05\n", + " Region: \"zone_3\"\tRelError: 3.05605e-04\tAbsError: 1.31886e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.50273e-06\tAbsError: 6.69539e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.36231e-06\tAbsError: 6.49324e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.89557e-04\tAbsError: 3.13858e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83542e-07\tAbsError: 5.70230e-05\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 9.09635e+00\tAbsError: 8.17455e+14\n", + " Region: \"zone_1\"\tRelError: 8.34060e+00\tAbsError: 1.47086e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.34013e+00\tAbsError: 5.55242e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.69882e-04\tAbsError: 1.47030e-01\n", + " Region: \"zone_3\"\tRelError: 7.55755e-01\tAbsError: 8.17455e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.73422e-02\tAbsError: 4.06779e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.12635e-02\tAbsError: 4.10676e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.16679e-01\tAbsError: 7.42885e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.69920e-04\tAbsError: 1.47045e-01\n", + "Iteration: 61\n", + " Device: \"device\"\tRelError: 5.09404e-04\tAbsError: 2.94037e+11\n", + " Region: \"zone_1\"\tRelError: 3.19186e-04\tAbsError: 5.09621e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.19022e-04\tAbsError: 1.80531e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64271e-07\tAbsError: 5.09441e-05\n", + " Region: \"zone_3\"\tRelError: 1.90218e-04\tAbsError: 2.94037e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.71989e-06\tAbsError: 1.45075e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.49661e-06\tAbsError: 1.48962e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75837e-04\tAbsError: 2.80402e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64286e-07\tAbsError: 5.09495e-05\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 2.22464e-03\tAbsError: 4.68563e+11\n", + " Region: \"zone_1\"\tRelError: 2.03011e-03\tAbsError: 9.17065e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.02982e-03\tAbsError: 3.13761e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94797e-07\tAbsError: 9.16751e-05\n", + " Region: \"zone_3\"\tRelError: 1.94531e-04\tAbsError: 4.68563e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19786e-05\tAbsError: 2.32576e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34201e-05\tAbsError: 2.35987e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.68838e-04\tAbsError: 5.04192e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.94823e-07\tAbsError: 9.16849e-05\n", + "Iteration: 62\n", + " Device: \"device\"\tRelError: 6.47235e-03\tAbsError: 4.47757e+11\n", + " Region: \"zone_1\"\tRelError: 5.60854e-03\tAbsError: 1.05836e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.60820e-03\tAbsError: 3.91282e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.41148e-07\tAbsError: 1.05797e-04\n", + " Region: \"zone_3\"\tRelError: 8.63804e-04\tAbsError: 4.47757e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.39609e-05\tAbsError: 2.17025e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.55686e-05\tAbsError: 2.30732e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.33933e-04\tAbsError: 5.81903e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.41178e-07\tAbsError: 1.05808e-04\n", + "Iteration: 62\n", + " Device: \"device\"\tRelError: 5.02844e-04\tAbsError: 1.13060e+11\n", + " Region: \"zone_1\"\tRelError: 2.40800e-04\tAbsError: 4.88977e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.40643e-04\tAbsError: 1.96118e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57329e-07\tAbsError: 4.88781e-05\n", + " Region: \"zone_3\"\tRelError: 2.62044e-04\tAbsError: 1.13060e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.43173e-06\tAbsError: 5.73967e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.16861e-06\tAbsError: 5.56637e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.48286e-04\tAbsError: 2.69057e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57343e-07\tAbsError: 4.88834e-05\n", + "Iteration: 62\n", + " Device: \"device\"\tRelError: 4.31084e-04\tAbsError: 2.48800e+11\n", + " Region: \"zone_1\"\tRelError: 2.70153e-04\tAbsError: 4.31216e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.70014e-04\tAbsError: 1.52757e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38998e-07\tAbsError: 4.31064e-05\n", + " Region: \"zone_3\"\tRelError: 1.60931e-04\tAbsError: 2.48800e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.68607e-06\tAbsError: 1.22756e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.34329e-06\tAbsError: 1.26044e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48763e-04\tAbsError: 2.37263e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39011e-07\tAbsError: 4.31110e-05\n", "Iteration: 9\n", - " Device: \"device\"\tRelError: 2.53876e-04\tAbsError: 5.38820e+12\n", - " Region: \"zone_1\"\tRelError: 1.00966e-04\tAbsError: 5.99465e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.00796e-04\tAbsError: 1.68312e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69863e-07\tAbsError: 5.97782e-05\n", - " Region: \"zone_3\"\tRelError: 1.52910e-04\tAbsError: 5.38820e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.12473e-06\tAbsError: 2.67156e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.57726e-06\tAbsError: 2.71664e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 1.37038e-04\tAbsError: 1.69127e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.69863e-07\tAbsError: 5.97782e-05\n", + " Device: \"device\"\tRelError: 4.77792e+00\tAbsError: 4.24419e+14\n", + " Region: \"zone_1\"\tRelError: 1.18623e+00\tAbsError: 1.30881e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18581e+00\tAbsError: 4.09505e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.18316e-04\tAbsError: 1.30840e-01\n", + " Region: \"zone_3\"\tRelError: 3.59169e+00\tAbsError: 4.24419e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.66732e-02\tAbsError: 2.10558e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.90774e-02\tAbsError: 2.13860e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.55552e+00\tAbsError: 7.10009e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.18352e-04\tAbsError: 1.30854e-01\n", + "Iteration: 59\n", + " Device: \"device\"\tRelError: 1.87069e-03\tAbsError: 3.93395e+11\n", + " Region: \"zone_1\"\tRelError: 1.70734e-03\tAbsError: 7.69945e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.70709e-03\tAbsError: 2.63426e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.47504e-07\tAbsError: 7.69682e-05\n", + " Region: \"zone_3\"\tRelError: 1.63344e-04\tAbsError: 3.93395e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00570e-05\tAbsError: 1.95265e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.12673e-05\tAbsError: 1.98129e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41772e-04\tAbsError: 4.23307e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.47526e-07\tAbsError: 7.69764e-05\n", + "Iteration: 63\n", + " Device: \"device\"\tRelError: 5.52577e-03\tAbsError: 3.80658e+11\n", + " Region: \"zone_1\"\tRelError: 4.79091e-03\tAbsError: 8.99757e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.79062e-03\tAbsError: 3.32646e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.90025e-07\tAbsError: 8.99424e-05\n", + " Region: \"zone_3\"\tRelError: 7.34861e-04\tAbsError: 3.80658e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18688e-05\tAbsError: 1.84502e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.32357e-05\tAbsError: 1.96156e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.09466e-04\tAbsError: 4.94701e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.90051e-07\tAbsError: 8.99521e-05\n", + "Iteration: 63\n", + " Device: \"device\"\tRelError: 4.31064e-04\tAbsError: 9.69218e+10\n", + " Region: \"zone_1\"\tRelError: 2.06470e-04\tAbsError: 4.19179e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06336e-04\tAbsError: 1.68124e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34871e-07\tAbsError: 4.19010e-05\n", + " Region: \"zone_3\"\tRelError: 2.24593e-04\tAbsError: 9.69218e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.51367e-06\tAbsError: 4.92037e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.14537e-06\tAbsError: 4.77181e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12799e-04\tAbsError: 2.30651e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.34883e-07\tAbsError: 4.19056e-05\n", + "Iteration: 63\n", + " Device: \"device\"\tRelError: 3.64726e-04\tAbsError: 2.10522e+11\n", + " Region: \"zone_1\"\tRelError: 2.28538e-04\tAbsError: 3.64874e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.28420e-04\tAbsError: 1.29255e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17614e-07\tAbsError: 3.64745e-05\n", + " Region: \"zone_3\"\tRelError: 1.36188e-04\tAbsError: 2.10522e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.81125e-06\tAbsError: 1.03870e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.36736e-06\tAbsError: 1.06653e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25892e-04\tAbsError: 2.00760e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.17624e-07\tAbsError: 3.64784e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 3.71324e+01\tAbsError: 4.71263e+14\n", + " Region: \"zone_1\"\tRelError: 3.63842e+01\tAbsError: 1.02257e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.63839e+01\tAbsError: 3.61613e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.26708e-04\tAbsError: 1.02221e-01\n", + " Region: \"zone_3\"\tRelError: 7.48235e-01\tAbsError: 4.71263e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28289e-02\tAbsError: 2.34244e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.47565e-02\tAbsError: 2.37019e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.20323e-01\tAbsError: 5.51454e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.26736e-04\tAbsError: 1.02231e-01\n", + "Iteration: 60\n", + " Device: \"device\"\tRelError: 1.56852e-03\tAbsError: 3.30284e+11\n", + " Region: \"zone_1\"\tRelError: 1.43139e-03\tAbsError: 6.46427e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43118e-03\tAbsError: 2.21166e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.07798e-07\tAbsError: 6.46206e-05\n", + " Region: \"zone_3\"\tRelError: 1.37126e-04\tAbsError: 3.30284e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.44361e-06\tAbsError: 1.63940e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.45967e-06\tAbsError: 1.66345e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19014e-04\tAbsError: 3.55398e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.07817e-07\tAbsError: 6.46276e-05\n", + "Iteration: 64\n", + " Device: \"device\"\tRelError: 4.68081e-03\tAbsError: 3.23613e+11\n", + " Region: \"zone_1\"\tRelError: 4.05644e-03\tAbsError: 7.64922e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.05619e-03\tAbsError: 2.82797e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.46562e-07\tAbsError: 7.64639e-05\n", + " Region: \"zone_3\"\tRelError: 6.24373e-04\tAbsError: 3.23613e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00901e-05\tAbsError: 1.56853e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.12521e-05\tAbsError: 1.66760e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 6.02784e-04\tAbsError: 4.20567e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.46585e-07\tAbsError: 7.64722e-05\n", + "Iteration: 64\n", + " Device: \"device\"\tRelError: 3.69534e-04\tAbsError: 8.30869e+10\n", + " Region: \"zone_1\"\tRelError: 1.76967e-04\tAbsError: 3.59344e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76851e-04\tAbsError: 1.44125e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15619e-07\tAbsError: 3.59200e-05\n", + " Region: \"zone_3\"\tRelError: 1.92567e-04\tAbsError: 8.30869e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.72661e-06\tAbsError: 4.21802e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.26814e-06\tAbsError: 4.09067e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82457e-04\tAbsError: 1.97727e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.15629e-07\tAbsError: 3.59239e-05\n", + "Iteration: 64\n", + " Device: \"device\"\tRelError: 3.08639e-04\tAbsError: 1.78134e+11\n", + " Region: \"zone_1\"\tRelError: 1.93415e-04\tAbsError: 3.08739e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93315e-04\tAbsError: 1.09369e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.95189e-08\tAbsError: 3.08629e-05\n", + " Region: \"zone_3\"\tRelError: 1.15224e-04\tAbsError: 1.78134e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.07106e-06\tAbsError: 8.78895e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.54161e-06\tAbsError: 9.02442e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06512e-04\tAbsError: 1.69873e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.95278e-08\tAbsError: 3.08662e-05\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.84695e+00\tAbsError: 3.37456e+14\n", + " Region: \"zone_1\"\tRelError: 1.03581e+00\tAbsError: 8.70748e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03553e+00\tAbsError: 2.86506e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.78286e-04\tAbsError: 8.70461e-02\n", + " Region: \"zone_3\"\tRelError: 1.81114e+00\tAbsError: 3.37456e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.11171e-02\tAbsError: 1.67560e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.26517e-02\tAbsError: 1.69896e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78709e+00\tAbsError: 4.74871e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.78310e-04\tAbsError: 8.70554e-02\n", + "Iteration: 61\n", + " Device: \"device\"\tRelError: 1.31834e-03\tAbsError: 2.77299e+11\n", + " Region: \"zone_1\"\tRelError: 1.20321e-03\tAbsError: 5.42725e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20303e-03\tAbsError: 1.85686e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74463e-07\tAbsError: 5.42539e-05\n", + " Region: \"zone_3\"\tRelError: 1.15137e-04\tAbsError: 2.77299e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.08908e-06\tAbsError: 1.37640e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.94215e-06\tAbsError: 1.39659e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.99317e-05\tAbsError: 2.98384e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74478e-07\tAbsError: 5.42597e-05\n", + "Iteration: 65\n", + " Device: \"device\"\tRelError: 3.99156e-03\tAbsError: 2.75118e+11\n", + " Region: \"zone_1\"\tRelError: 3.46049e-03\tAbsError: 6.50293e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.46028e-03\tAbsError: 2.40418e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.09613e-07\tAbsError: 6.50053e-05\n", + " Region: \"zone_3\"\tRelError: 5.31070e-04\tAbsError: 2.75118e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.57812e-06\tAbsError: 1.33348e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.56599e-06\tAbsError: 1.41770e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.12716e-04\tAbsError: 3.57542e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.09632e-07\tAbsError: 6.50123e-05\n", + "Iteration: 65\n", + " Device: \"device\"\tRelError: 3.16784e-04\tAbsError: 7.12268e+10\n", + " Region: \"zone_1\"\tRelError: 1.51729e-04\tAbsError: 3.08050e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.51630e-04\tAbsError: 1.23552e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.91153e-08\tAbsError: 3.07926e-05\n", + " Region: \"zone_3\"\tRelError: 1.65055e-04\tAbsError: 7.12268e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.05193e-06\tAbsError: 3.61593e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.51616e-06\tAbsError: 3.50675e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.56388e-04\tAbsError: 1.69503e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.91242e-08\tAbsError: 3.07960e-05\n", + "Iteration: 65\n", + " Device: \"device\"\tRelError: 2.61136e-04\tAbsError: 1.50728e+11\n", + " Region: \"zone_1\"\tRelError: 1.63631e-04\tAbsError: 2.61239e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63547e-04\tAbsError: 9.25429e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.42080e-08\tAbsError: 2.61147e-05\n", + " Region: \"zone_3\"\tRelError: 9.75051e-05\tAbsError: 1.50728e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.44472e-06\tAbsError: 7.43678e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.84288e-06\tAbsError: 7.63602e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.01333e-05\tAbsError: 1.43738e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.42155e-08\tAbsError: 2.61175e-05\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 7.43349e+00\tAbsError: 3.03807e+14\n", + " Region: \"zone_1\"\tRelError: 6.82693e+00\tAbsError: 7.06089e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.82670e+00\tAbsError: 2.42627e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.25608e-04\tAbsError: 7.05847e-02\n", + " Region: \"zone_3\"\tRelError: 6.06557e-01\tAbsError: 3.03807e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.96556e-03\tAbsError: 1.50941e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.01920e-02\tAbsError: 1.52866e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.87173e-01\tAbsError: 3.85169e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.25628e-04\tAbsError: 7.05921e-02\n", + "Iteration: 62\n", + " Device: \"device\"\tRelError: 1.10582e-03\tAbsError: 2.32813e+11\n", + " Region: \"zone_1\"\tRelError: 1.00916e-03\tAbsError: 4.55659e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00902e-03\tAbsError: 1.55897e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46475e-07\tAbsError: 4.55503e-05\n", + " Region: \"zone_3\"\tRelError: 9.66595e-05\tAbsError: 2.32813e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.95180e-06\tAbsError: 1.15559e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.66801e-06\tAbsError: 1.17254e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.38932e-05\tAbsError: 2.50516e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46488e-07\tAbsError: 4.55552e-05\n", + "Iteration: 66\n", + " Device: \"device\"\tRelError: 3.38458e-03\tAbsError: 2.33890e+11\n", + " Region: \"zone_1\"\tRelError: 2.93328e-03\tAbsError: 5.52843e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.93310e-03\tAbsError: 2.04390e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78201e-07\tAbsError: 5.52638e-05\n", + " Region: \"zone_3\"\tRelError: 4.51295e-04\tAbsError: 2.33890e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.29260e-06\tAbsError: 1.13365e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.13242e-06\tAbsError: 1.20525e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.35692e-04\tAbsError: 3.03962e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.78217e-07\tAbsError: 5.52698e-05\n", + "Iteration: 66\n", + " Device: \"device\"\tRelError: 2.71567e-04\tAbsError: 6.10596e+10\n", + " Region: \"zone_1\"\tRelError: 1.30054e-04\tAbsError: 2.64078e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29969e-04\tAbsError: 1.05916e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.49672e-08\tAbsError: 2.63972e-05\n", + " Region: \"zone_3\"\tRelError: 1.41513e-04\tAbsError: 6.10596e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.47354e-06\tAbsError: 3.09978e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.87150e-06\tAbsError: 3.00619e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34083e-04\tAbsError: 1.45307e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.49748e-08\tAbsError: 2.64000e-05\n", + "Iteration: 66\n", + " Device: \"device\"\tRelError: 2.20974e-04\tAbsError: 1.27539e+11\n", + " Region: \"zone_1\"\tRelError: 1.38476e-04\tAbsError: 2.21048e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38405e-04\tAbsError: 7.83053e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.12527e-08\tAbsError: 2.20970e-05\n", + " Region: \"zone_3\"\tRelError: 8.24982e-05\tAbsError: 1.27539e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.91476e-06\tAbsError: 6.29264e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.25166e-06\tAbsError: 6.46123e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.62605e-05\tAbsError: 1.21624e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.12590e-08\tAbsError: 2.20993e-05\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.84958e+00\tAbsError: 2.39871e+14\n", + " Region: \"zone_1\"\tRelError: 8.48261e-01\tAbsError: 5.89787e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 8.48073e-01\tAbsError: 1.97747e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88484e-04\tAbsError: 5.89589e-02\n", + " Region: \"zone_3\"\tRelError: 1.00131e+00\tAbsError: 2.39871e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.53683e-03\tAbsError: 1.19135e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.55600e-03\tAbsError: 1.20736e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.85033e-01\tAbsError: 3.22305e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88501e-04\tAbsError: 5.89652e-02\n", + "Iteration: 63\n", + " Device: \"device\"\tRelError: 9.29146e-04\tAbsError: 1.95465e+11\n", + " Region: \"zone_1\"\tRelError: 8.47988e-04\tAbsError: 3.82560e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.47865e-04\tAbsError: 1.30888e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22977e-07\tAbsError: 3.82429e-05\n", + " Region: \"zone_3\"\tRelError: 8.11580e-05\tAbsError: 1.95465e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.99700e-06\tAbsError: 9.70207e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.59832e-06\tAbsError: 9.84439e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.04396e-05\tAbsError: 2.10327e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22987e-07\tAbsError: 3.82470e-05\n", + "Iteration: 67\n", + " Device: \"device\"\tRelError: 2.88375e-03\tAbsError: 1.98840e+11\n", + " Region: \"zone_1\"\tRelError: 2.49994e-03\tAbsError: 4.69996e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49979e-03\tAbsError: 1.73761e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51497e-07\tAbsError: 4.69822e-05\n", + " Region: \"zone_3\"\tRelError: 3.83803e-04\tAbsError: 1.98840e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.19978e-06\tAbsError: 9.63762e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.91375e-06\tAbsError: 1.02464e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.70538e-04\tAbsError: 2.58411e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51510e-07\tAbsError: 4.69872e-05\n", + "Iteration: 67\n", + " Device: \"device\"\tRelError: 2.32801e-04\tAbsError: 5.23438e+10\n", + " Region: \"zone_1\"\tRelError: 1.11502e-04\tAbsError: 2.26382e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11429e-04\tAbsError: 9.07973e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.28387e-08\tAbsError: 2.26292e-05\n", + " Region: \"zone_3\"\tRelError: 1.21300e-04\tAbsError: 5.23438e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.97772e-06\tAbsError: 2.65730e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.31887e-06\tAbsError: 2.57707e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14930e-04\tAbsError: 1.24566e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.28453e-08\tAbsError: 2.26316e-05\n", + "Iteration: 67\n", + " Device: \"device\"\tRelError: 1.86968e-04\tAbsError: 1.07917e+11\n", + " Region: \"zone_1\"\tRelError: 1.17158e-04\tAbsError: 1.87040e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17098e-04\tAbsError: 6.62581e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.02905e-08\tAbsError: 1.86974e-05\n", + " Region: \"zone_3\"\tRelError: 6.98101e-05\tAbsError: 1.07917e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.46632e-06\tAbsError: 5.32452e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.75139e-06\tAbsError: 5.46717e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.45321e-05\tAbsError: 1.02913e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.02959e-08\tAbsError: 1.86994e-05\n", "Iteration: 14\n", - " Device: \"device\"\tRelError: 9.30929e-05\tAbsError: 9.62198e+09\n", - " Region: \"zone_1\"\tRelError: 2.99044e-06\tAbsError: 4.57774e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 2.98912e-06\tAbsError: 3.95789e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.31308e-09\tAbsError: 4.57379e-07\n", - " Region: \"zone_3\"\tRelError: 9.01024e-05\tAbsError: 9.62198e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50292e-08\tAbsError: 4.79430e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.16874e-08\tAbsError: 4.82769e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 9.00644e-05\tAbsError: 3.99740e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.31362e-09\tAbsError: 4.57578e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:42:36\u001b[0m.\u001b[1;36m668\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 1.0999999999999999\u001b[0m\n", + " Device: \"device\"\tRelError: 2.85658e+00\tAbsError: 2.03703e+14\n", + " Region: \"zone_1\"\tRelError: 2.39737e+00\tAbsError: 4.84528e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39722e+00\tAbsError: 1.64817e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54821e-04\tAbsError: 4.84363e-02\n", + " Region: \"zone_3\"\tRelError: 4.59203e-01\tAbsError: 2.03703e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.16935e-03\tAbsError: 1.01191e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.99833e-03\tAbsError: 1.02512e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.45880e-01\tAbsError: 2.64827e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54834e-04\tAbsError: 4.84415e-02\n", + "Iteration: 64\n", + " Device: \"device\"\tRelError: 7.79579e-04\tAbsError: 1.64107e+11\n", + " Region: \"zone_1\"\tRelError: 7.11444e-04\tAbsError: 3.21188e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.11341e-04\tAbsError: 1.09890e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03248e-07\tAbsError: 3.21078e-05\n", + " Region: \"zone_3\"\tRelError: 6.81347e-05\tAbsError: 1.64107e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.19535e-06\tAbsError: 8.14562e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.70020e-06\tAbsError: 8.26511e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.91359e-05\tAbsError: 1.76586e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03257e-07\tAbsError: 3.21113e-05\n", + "Iteration: 68\n", + " Device: \"device\"\tRelError: 2.44699e-03\tAbsError: 1.69042e+11\n", + " Region: \"zone_1\"\tRelError: 2.12080e-03\tAbsError: 3.99564e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12067e-03\tAbsError: 1.47721e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28794e-07\tAbsError: 3.99416e-05\n", + " Region: \"zone_3\"\tRelError: 3.26188e-04\tAbsError: 1.69042e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.27068e-06\tAbsError: 8.19336e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.87766e-06\tAbsError: 8.71087e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.14911e-04\tAbsError: 2.19687e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28806e-07\tAbsError: 3.99459e-05\n", + "Iteration: 68\n", + " Device: \"device\"\tRelError: 1.99571e-04\tAbsError: 4.48721e+10\n", + " Region: \"zone_1\"\tRelError: 9.55767e-05\tAbsError: 1.94068e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.55142e-05\tAbsError: 7.78366e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.24415e-08\tAbsError: 1.93990e-05\n", + " Region: \"zone_3\"\tRelError: 1.03995e-04\tAbsError: 4.48721e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.55267e-06\tAbsError: 2.27799e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.84512e-06\tAbsError: 2.20921e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.85343e-05\tAbsError: 1.06785e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.24471e-08\tAbsError: 1.94011e-05\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 1.26526e+00\tAbsError: 1.65955e+14\n", + " Region: \"zone_1\"\tRelError: 6.63976e-01\tAbsError: 4.01958e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.63848e-01\tAbsError: 1.35638e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28454e-04\tAbsError: 4.01823e-02\n", + " Region: \"zone_3\"\tRelError: 6.01283e-01\tAbsError: 1.65955e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.13578e-03\tAbsError: 8.24306e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.82608e-03\tAbsError: 8.35247e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.90192e-01\tAbsError: 2.19760e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28466e-04\tAbsError: 4.01865e-02\n", + "Iteration: 68\n", + " Device: \"device\"\tRelError: 1.58210e-04\tAbsError: 9.13140e+10\n", + " Region: \"zone_1\"\tRelError: 9.91430e-05\tAbsError: 1.58264e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.90920e-05\tAbsError: 5.60643e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.10149e-08\tAbsError: 1.58208e-05\n", + " Region: \"zone_3\"\tRelError: 5.90669e-05\tAbsError: 9.13140e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.08688e-06\tAbsError: 4.50535e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.32810e-06\tAbsError: 4.62605e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.46009e-05\tAbsError: 8.70796e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.10194e-08\tAbsError: 1.58225e-05\n", + "Iteration: 65\n", + " Device: \"device\"\tRelError: 6.54875e-04\tAbsError: 1.37781e+11\n", + " Region: \"zone_1\"\tRelError: 5.97668e-04\tAbsError: 2.69662e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.97581e-04\tAbsError: 9.22611e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.66846e-08\tAbsError: 2.69570e-05\n", + " Region: \"zone_3\"\tRelError: 5.72068e-05\tAbsError: 1.37781e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.52232e-06\tAbsError: 6.83887e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.94618e-06\tAbsError: 6.93919e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.96516e-05\tAbsError: 1.48257e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.66923e-08\tAbsError: 2.69598e-05\n", + "Iteration: 69\n", + " Device: \"device\"\tRelError: 2.08362e-03\tAbsError: 1.43710e+11\n", + " Region: \"zone_1\"\tRelError: 1.80624e-03\tAbsError: 3.39686e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80613e-03\tAbsError: 1.25584e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09493e-07\tAbsError: 3.39561e-05\n", + " Region: \"zone_3\"\tRelError: 2.77379e-04\tAbsError: 1.43710e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.48085e-06\tAbsError: 6.96553e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.99687e-06\tAbsError: 7.40549e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67791e-04\tAbsError: 1.86765e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.09503e-07\tAbsError: 3.39597e-05\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 1.55850e+00\tAbsError: 1.38377e+14\n", + " Region: \"zone_1\"\tRelError: 1.22229e+00\tAbsError: 3.31645e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22219e+00\tAbsError: 1.12436e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05973e-04\tAbsError: 3.31532e-02\n", + " Region: \"zone_3\"\tRelError: 3.36210e-01\tAbsError: 1.38377e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.22662e-03\tAbsError: 6.87365e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.79276e-03\tAbsError: 6.96404e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.27085e-01\tAbsError: 1.81324e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05982e-04\tAbsError: 3.31568e-02\n", + "Iteration: 69\n", + " Device: \"device\"\tRelError: 1.71083e-04\tAbsError: 3.84669e+10\n", + " Region: \"zone_1\"\tRelError: 8.19404e-05\tAbsError: 1.66366e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.18869e-05\tAbsError: 6.67260e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.35284e-08\tAbsError: 1.66299e-05\n", + " Region: \"zone_3\"\tRelError: 8.91429e-05\tAbsError: 3.84669e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.18829e-06\tAbsError: 1.95282e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.43900e-06\tAbsError: 1.89386e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.44620e-05\tAbsError: 9.15420e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.35332e-08\tAbsError: 1.66317e-05\n", + "Iteration: 69\n", + " Device: \"device\"\tRelError: 1.33865e-04\tAbsError: 7.72654e+10\n", + " Region: \"zone_1\"\tRelError: 8.38829e-05\tAbsError: 1.33915e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.38398e-05\tAbsError: 4.74389e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31663e-08\tAbsError: 1.33868e-05\n", + " Region: \"zone_3\"\tRelError: 4.99816e-05\tAbsError: 7.72654e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.76582e-06\tAbsError: 3.81220e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96992e-06\tAbsError: 3.91434e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.62027e-05\tAbsError: 7.36824e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.31701e-08\tAbsError: 1.33882e-05\n", + "Iteration: 66\n", + " Device: \"device\"\tRelError: 5.49564e-04\tAbsError: 1.15677e+11\n", + " Region: \"zone_1\"\tRelError: 5.01536e-04\tAbsError: 2.26402e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.01463e-04\tAbsError: 7.74602e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.27783e-08\tAbsError: 2.26324e-05\n", + " Region: \"zone_3\"\tRelError: 4.80277e-05\tAbsError: 1.15677e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.95725e-06\tAbsError: 5.74175e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.31311e-06\tAbsError: 5.82597e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.16845e-05\tAbsError: 1.24473e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.27847e-08\tAbsError: 2.26348e-05\n", + "Iteration: 70\n", + " Device: \"device\"\tRelError: 1.76897e-03\tAbsError: 1.22174e+11\n", + " Region: \"zone_1\"\tRelError: 1.53321e-03\tAbsError: 2.88782e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53312e-03\tAbsError: 1.06765e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.30851e-08\tAbsError: 2.88675e-05\n", + " Region: \"zone_3\"\tRelError: 2.35760e-04\tAbsError: 1.22174e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.80935e-06\tAbsError: 5.92170e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.24804e-06\tAbsError: 6.29573e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.27609e-04\tAbsError: 1.58777e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.30934e-08\tAbsError: 2.88707e-05\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 8.81701e-01\tAbsError: 1.13878e+14\n", + " Region: \"zone_1\"\tRelError: 5.02410e-01\tAbsError: 2.74496e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.02322e-01\tAbsError: 9.28248e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.77193e-05\tAbsError: 2.74403e-02\n", + " Region: \"zone_3\"\tRelError: 3.79291e-01\tAbsError: 1.13878e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.50601e-03\tAbsError: 5.65654e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.97644e-03\tAbsError: 5.73131e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.71721e-01\tAbsError: 1.50083e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.77269e-05\tAbsError: 2.74432e-02\n", + "Iteration: 70\n", + " Device: \"device\"\tRelError: 1.46663e-04\tAbsError: 3.29760e+10\n", + " Region: \"zone_1\"\tRelError: 7.02391e-05\tAbsError: 1.42618e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.01932e-05\tAbsError: 5.72013e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.58876e-08\tAbsError: 1.42561e-05\n", + " Region: \"zone_3\"\tRelError: 7.64236e-05\tAbsError: 3.29760e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.87593e-06\tAbsError: 1.67407e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.09085e-06\tAbsError: 1.62353e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.24109e-05\tAbsError: 7.84750e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.58917e-08\tAbsError: 1.42577e-05\n", + "Iteration: 70\n", + " Device: \"device\"\tRelError: 1.13273e-04\tAbsError: 6.53782e+10\n", + " Region: \"zone_1\"\tRelError: 7.09827e-05\tAbsError: 1.13312e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.09461e-05\tAbsError: 4.01405e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.65252e-08\tAbsError: 1.13272e-05\n", + " Region: \"zone_3\"\tRelError: 4.22905e-05\tAbsError: 6.53782e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.49415e-06\tAbsError: 3.22570e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.66685e-06\tAbsError: 3.31212e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.90929e-05\tAbsError: 6.23465e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.65285e-08\tAbsError: 1.13285e-05\n", + "Iteration: 67\n", + " Device: \"device\"\tRelError: 4.61579e-04\tAbsError: 9.71198e+10\n", + " Region: \"zone_1\"\tRelError: 4.21255e-04\tAbsError: 1.90081e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.21194e-04\tAbsError: 6.50337e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.11029e-08\tAbsError: 1.90016e-05\n", + " Region: \"zone_3\"\tRelError: 4.03241e-05\tAbsError: 9.71198e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.48284e-06\tAbsError: 4.82064e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.78161e-06\tAbsError: 4.89135e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.49985e-05\tAbsError: 1.04505e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.11083e-08\tAbsError: 1.90037e-05\n", + "Iteration: 71\n", + " Device: \"device\"\tRelError: 1.50562e-03\tAbsError: 1.03866e+11\n", + " Region: \"zone_1\"\tRelError: 1.30515e-03\tAbsError: 2.45506e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30507e-03\tAbsError: 9.07653e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.91357e-08\tAbsError: 2.45415e-05\n", + " Region: \"zone_3\"\tRelError: 2.00467e-04\tAbsError: 1.03866e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.23850e-06\tAbsError: 5.03429e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.61145e-06\tAbsError: 5.35227e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93538e-04\tAbsError: 1.34983e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.91427e-08\tAbsError: 2.45442e-05\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 9.52260e-01\tAbsError: 9.43997e+13\n", + " Region: \"zone_1\"\tRelError: 7.11157e-01\tAbsError: 2.26795e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.11085e-01\tAbsError: 7.68075e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.24707e-05\tAbsError: 2.26719e-02\n", + " Region: \"zone_3\"\tRelError: 2.41103e-01\tAbsError: 9.43997e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.89166e-03\tAbsError: 4.68909e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.27884e-03\tAbsError: 4.75088e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34860e-01\tAbsError: 1.24002e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.24770e-05\tAbsError: 2.26743e-02\n", + "Iteration: 71\n", + " Device: \"device\"\tRelError: 9.58436e-05\tAbsError: 5.53198e+10\n", + " Region: \"zone_1\"\tRelError: 6.00584e-05\tAbsError: 9.58795e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.00275e-05\tAbsError: 3.39649e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.09058e-08\tAbsError: 9.58455e-06\n", + " Region: \"zone_3\"\tRelError: 3.57852e-05\tAbsError: 5.53198e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.26427e-06\tAbsError: 2.72943e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.41040e-06\tAbsError: 2.80255e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.30796e-05\tAbsError: 5.27545e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.09086e-08\tAbsError: 9.58558e-06\n", + "Iteration: 71\n", + " Device: \"device\"\tRelError: 1.25727e-04\tAbsError: 2.82689e+10\n", + " Region: \"zone_1\"\tRelError: 6.02165e-05\tAbsError: 1.22261e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.01772e-05\tAbsError: 4.90362e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.93374e-08\tAbsError: 1.22211e-05\n", + " Region: \"zone_3\"\tRelError: 6.55108e-05\tAbsError: 2.82689e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.60815e-06\tAbsError: 1.43511e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.79240e-06\tAbsError: 1.39178e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.20709e-05\tAbsError: 6.72732e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.93410e-08\tAbsError: 1.22225e-05\n", + "Iteration: 68\n", + " Device: \"device\"\tRelError: 3.87405e-04\tAbsError: 8.15394e+10\n", + " Region: \"zone_1\"\tRelError: 3.53550e-04\tAbsError: 1.59588e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53499e-04\tAbsError: 5.46007e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.13005e-08\tAbsError: 1.59533e-05\n", + " Region: \"zone_3\"\tRelError: 3.38543e-05\tAbsError: 8.15394e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.08453e-06\tAbsError: 4.04729e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.33537e-06\tAbsError: 4.10665e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.93831e-05\tAbsError: 8.77395e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.13051e-08\tAbsError: 1.59550e-05\n", + "Iteration: 72\n", + " Device: \"device\"\tRelError: 1.27873e-03\tAbsError: 8.83007e+10\n", + " Region: \"zone_1\"\tRelError: 1.10834e-03\tAbsError: 2.08715e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10827e-03\tAbsError: 7.71635e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.72767e-08\tAbsError: 2.08638e-05\n", + " Region: \"zone_3\"\tRelError: 1.70399e-04\tAbsError: 8.83007e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.75319e-06\tAbsError: 4.27987e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.07025e-06\tAbsError: 4.55020e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64508e-04\tAbsError: 1.14755e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.72827e-08\tAbsError: 2.08661e-05\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 6.16541e-01\tAbsError: 7.79383e+13\n", + " Region: \"zone_1\"\tRelError: 3.70221e-01\tAbsError: 1.87572e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.70161e-01\tAbsError: 6.34749e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.99407e-05\tAbsError: 1.87508e-02\n", + " Region: \"zone_3\"\tRelError: 2.46320e-01\tAbsError: 7.79383e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.39509e-03\tAbsError: 3.87137e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.71626e-03\tAbsError: 3.92246e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.41149e-01\tAbsError: 1.02556e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.99459e-05\tAbsError: 1.87528e-02\n", + "Iteration: 72\n", + " Device: \"device\"\tRelError: 1.07781e-04\tAbsError: 2.42337e+10\n", + " Region: \"zone_1\"\tRelError: 5.16184e-05\tAbsError: 1.04809e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.15846e-05\tAbsError: 4.20366e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.37223e-08\tAbsError: 1.04767e-05\n", + " Region: \"zone_3\"\tRelError: 5.61624e-05\tAbsError: 2.42337e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.37860e-06\tAbsError: 1.23026e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.53654e-06\tAbsError: 1.19311e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.32135e-05\tAbsError: 5.76704e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.37253e-08\tAbsError: 1.04778e-05\n", + "Iteration: 69\n", + " Device: \"device\"\tRelError: 3.25344e-04\tAbsError: 6.84585e+10\n", + " Region: \"zone_1\"\tRelError: 2.96921e-04\tAbsError: 1.33986e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96877e-04\tAbsError: 4.58414e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.30707e-08\tAbsError: 1.33940e-05\n", + " Region: \"zone_3\"\tRelError: 2.84238e-05\tAbsError: 6.84585e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.75012e-06\tAbsError: 3.39801e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96073e-06\tAbsError: 3.44785e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.46699e-05\tAbsError: 7.36639e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.30745e-08\tAbsError: 1.33954e-05\n", + "Iteration: 73\n", + " Device: \"device\"\tRelError: 1.08802e-03\tAbsError: 7.50682e+10\n", + " Region: \"zone_1\"\tRelError: 9.43132e-04\tAbsError: 1.77438e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.43075e-04\tAbsError: 6.56001e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.71948e-08\tAbsError: 1.77372e-05\n", + " Region: \"zone_3\"\tRelError: 1.44883e-04\tAbsError: 7.50682e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.34061e-06\tAbsError: 3.63850e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.61015e-06\tAbsError: 3.86832e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.39875e-04\tAbsError: 9.75584e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.71999e-08\tAbsError: 1.77392e-05\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 6.11618e-01\tAbsError: 6.44865e+13\n", + " Region: \"zone_1\"\tRelError: 4.41169e-01\tAbsError: 1.55047e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.41120e-01\tAbsError: 5.24914e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.95444e-05\tAbsError: 1.54994e-02\n", + " Region: \"zone_3\"\tRelError: 1.70449e-01\tAbsError: 6.44865e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97739e-03\tAbsError: 3.20320e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.24217e-03\tAbsError: 3.24544e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66180e-01\tAbsError: 8.47723e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.95487e-05\tAbsError: 1.55010e-02\n", + "Iteration: 73\n", + " Device: \"device\"\tRelError: 9.23956e-05\tAbsError: 2.07745e+10\n", + " Region: \"zone_1\"\tRelError: 4.42521e-05\tAbsError: 8.98479e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.42232e-05\tAbsError: 3.60362e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89086e-08\tAbsError: 8.98119e-06\n", + " Region: \"zone_3\"\tRelError: 4.81435e-05\tAbsError: 2.07745e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18181e-06\tAbsError: 1.05465e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.31721e-06\tAbsError: 1.02280e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.56155e-05\tAbsError: 4.94383e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89112e-08\tAbsError: 8.98216e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:37:27\u001b[0m.\u001b[1;36m271\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:37:27\u001b[0m.\u001b[1;36m290\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.05 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:37:27\u001b[0m.\u001b[1;36m307\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.05 V. Current applied bias: 1.05\u001b[0m \n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", @@ -59154,18 +31422,90 @@ "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.83984e-05\tAbsError: 6.20494e+11\n", - " Region: \"zone_1\"\tRelError: 1.11685e-05\tAbsError: 2.54379e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 1.10961e-05\tAbsError: 1.76630e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.24189e-08\tAbsError: 2.54203e-05\n", - " Region: \"zone_3\"\tRelError: 1.72299e-05\tAbsError: 6.20494e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01596e-06\tAbsError: 3.08474e+11\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.06157e-06\tAbsError: 3.12020e+11\n", - " Equation: \"PotentialEquation\"\tRelError: 1.50799e-05\tAbsError: 1.77456e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.24363e-08\tAbsError: 2.54264e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:42:36\u001b[0m.\u001b[1;36m888\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: 1.25\u001b[0m \n", + "number of equations 31686\n", + "Iteration: 70\n", + " Device: \"device\"\tRelError: 2.73089e-04\tAbsError: 5.74761e+10\n", + " Region: \"zone_1\"\tRelError: 2.49225e-04\tAbsError: 1.12491e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.49189e-04\tAbsError: 3.84874e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.61611e-08\tAbsError: 1.12453e-05\n", + " Region: \"zone_3\"\tRelError: 2.38635e-05\tAbsError: 5.74761e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46936e-06\tAbsError: 2.85288e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.64618e-06\tAbsError: 2.89473e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07118e-05\tAbsError: 6.18465e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.61643e-08\tAbsError: 1.12465e-05\n", + "Iteration: 74\n", + " Device: \"device\"\tRelError: 9.24312e-04\tAbsError: 6.38188e+10\n", + " Region: \"zone_1\"\tRelError: 8.01155e-04\tAbsError: 1.50848e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.01107e-04\tAbsError: 5.57695e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.86238e-08\tAbsError: 1.50792e-05\n", + " Region: \"zone_3\"\tRelError: 1.23157e-04\tAbsError: 6.38188e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98985e-06\tAbsError: 3.09325e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.21900e-06\tAbsError: 3.28863e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.18900e-04\tAbsError: 8.29386e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.86281e-08\tAbsError: 1.50808e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 7.43141e+03\tAbsError: 1.69530e+18\n", + " Region: \"zone_1\"\tRelError: 4.48563e+03\tAbsError: 4.96238e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.48563e+03\tAbsError: 4.96157e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.61510e-08\tAbsError: 8.10997e-06\n", + " Region: \"zone_3\"\tRelError: 2.94578e+03\tAbsError: 1.69530e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.98069e-01\tAbsError: 8.31705e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.81045e-01\tAbsError: 8.63598e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.94420e+03\tAbsError: 4.96159e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.61533e-08\tAbsError: 8.11085e-06\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 4.30103e-01\tAbsError: 5.32954e+13\n", + " Region: \"zone_1\"\tRelError: 2.67264e-01\tAbsError: 1.28200e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67223e-01\tAbsError: 4.33934e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.09675e-05\tAbsError: 1.28157e-02\n", + " Region: \"zone_3\"\tRelError: 1.62839e-01\tAbsError: 5.32954e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.63664e-03\tAbsError: 2.64731e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.85604e-03\tAbsError: 2.68223e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.59306e-01\tAbsError: 7.00934e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.09711e-05\tAbsError: 1.28171e-02\n", + "Iteration: 71\n", + " Device: \"device\"\tRelError: 2.29323e-04\tAbsError: 4.82556e+10\n", + " Region: \"zone_1\"\tRelError: 2.09287e-04\tAbsError: 9.44450e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09257e-04\tAbsError: 3.23131e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.03600e-08\tAbsError: 9.44127e-06\n", + " Region: \"zone_3\"\tRelError: 2.00356e-05\tAbsError: 4.82556e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.23364e-06\tAbsError: 2.39521e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.38209e-06\tAbsError: 2.43035e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73895e-05\tAbsError: 5.19248e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.03627e-08\tAbsError: 9.44228e-06\n", + "Iteration: 75\n", + " Device: \"device\"\tRelError: 7.86273e-04\tAbsError: 5.42551e+10\n", + " Region: \"zone_1\"\tRelError: 6.81561e-04\tAbsError: 1.28242e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.81520e-04\tAbsError: 4.74120e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.13372e-08\tAbsError: 1.28195e-05\n", + " Region: \"zone_3\"\tRelError: 1.04711e-04\tAbsError: 5.42551e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.69166e-06\tAbsError: 2.62971e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.88647e-06\tAbsError: 2.79580e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01092e-04\tAbsError: 7.05097e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.13409e-08\tAbsError: 1.28209e-05\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 4.02922e-01\tAbsError: 4.40711e+13\n", + " Region: \"zone_1\"\tRelError: 2.83634e-01\tAbsError: 1.05985e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83600e-01\tAbsError: 3.58782e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.38674e-05\tAbsError: 1.05949e-02\n", + " Region: \"zone_3\"\tRelError: 1.19289e-01\tAbsError: 4.40711e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.35192e-03\tAbsError: 2.18912e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.53298e-03\tAbsError: 2.21799e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16370e-01\tAbsError: 5.79474e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.38703e-05\tAbsError: 1.05961e-02\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 3.92926e+04\tAbsError: 1.17345e+18\n", + " Region: \"zone_1\"\tRelError: 3.88223e+04\tAbsError: 4.29104e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.88222e+04\tAbsError: 4.13268e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38067e-02\tAbsError: 4.24971e+00\n", + " Region: \"zone_3\"\tRelError: 4.70378e+02\tAbsError: 1.17345e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.36897e-01\tAbsError: 5.87887e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.19890e-01\tAbsError: 5.85564e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.69108e+02\tAbsError: 4.15481e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38069e-02\tAbsError: 4.24974e+00\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:37:29\u001b[0m.\u001b[1;36m463\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:37:29\u001b[0m.\u001b[1;36m482\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.1 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:37:29\u001b[0m.\u001b[1;36m499\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.1 V. Current applied bias: 1.1\u001b[0m \n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", @@ -59204,229 +31544,712 @@ "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.20731e+02\tAbsError: 2.29552e+18\n", - " Region: \"zone_1\"\tRelError: 1.41155e+02\tAbsError: 4.09537e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.41155e+02\tAbsError: 4.09536e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.05730e-10\tAbsError: 1.06495e-07\n", - " Region: \"zone_3\"\tRelError: 7.95757e+01\tAbsError: 2.29552e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.78600e-01\tAbsError: 1.14566e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.65499e-01\tAbsError: 1.14986e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 7.84316e+01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.05855e-10\tAbsError: 1.06540e-07\n", + "number of equations 31686\n", + "Iteration: 72\n", + " Device: \"device\"\tRelError: 1.92503e-04\tAbsError: 4.05142e+10\n", + " Region: \"zone_1\"\tRelError: 1.75682e-04\tAbsError: 7.92938e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75656e-04\tAbsError: 2.71293e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54895e-08\tAbsError: 7.92666e-06\n", + " Region: \"zone_3\"\tRelError: 1.68212e-05\tAbsError: 4.05142e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03573e-06\tAbsError: 2.01096e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.16037e-06\tAbsError: 2.04046e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45996e-05\tAbsError: 4.35948e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54918e-08\tAbsError: 7.92751e-06\n", + "Iteration: 76\n", + " Device: \"device\"\tRelError: 6.68101e-04\tAbsError: 4.61246e+10\n", + " Region: \"zone_1\"\tRelError: 5.79089e-04\tAbsError: 1.09024e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.79054e-04\tAbsError: 4.03070e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.51425e-08\tAbsError: 1.08984e-05\n", + " Region: \"zone_3\"\tRelError: 8.90123e-05\tAbsError: 4.61246e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43815e-06\tAbsError: 2.23563e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.60377e-06\tAbsError: 2.37683e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.59352e-05\tAbsError: 5.99434e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.51457e-08\tAbsError: 1.08996e-05\n", "Iteration: 0\n", - " Device: \"device\"\tRelError: 7.72551e+00\tAbsError: 3.07479e+18\n", - " Region: \"zone_1\"\tRelError: 5.80587e+00\tAbsError: 4.18750e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 5.80587e+00\tAbsError: 4.18717e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.52425e-09\tAbsError: 3.34314e-06\n", - " Region: \"zone_3\"\tRelError: 1.91964e+00\tAbsError: 3.07479e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.90381e-01\tAbsError: 1.53657e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.81658e-01\tAbsError: 1.53822e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 9.47601e-01\tAbsError: 4.18728e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.52641e-09\tAbsError: 3.34393e-06\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 3.75350e+01\tAbsError: 4.89721e+17\n", - " Region: \"zone_1\"\tRelError: 1.04844e+01\tAbsError: 2.18917e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04782e+01\tAbsError: 3.07622e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.15763e-03\tAbsError: 2.15840e+00\n", - " Region: \"zone_3\"\tRelError: 2.70506e+01\tAbsError: 4.89721e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.63139e-01\tAbsError: 2.45322e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.63561e-01\tAbsError: 2.44399e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 2.65177e+01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.15822e-03\tAbsError: 2.15862e+00\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 8.02267e-01\tAbsError: 3.87882e+17\n", - " Region: \"zone_1\"\tRelError: 1.96669e-01\tAbsError: 4.07465e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.85330e-01\tAbsError: 3.18444e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13395e-02\tAbsError: 4.04281e+00\n", - " Region: \"zone_3\"\tRelError: 6.05597e-01\tAbsError: 3.87882e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.15311e-01\tAbsError: 1.94168e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.98435e-01\tAbsError: 1.93714e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.80510e-01\tAbsError: 3.18460e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.13406e-02\tAbsError: 4.04330e+00\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 8.28645e+00\tAbsError: 2.11022e+16\n", - " Region: \"zone_1\"\tRelError: 5.89404e-01\tAbsError: 1.45838e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 5.85324e-01\tAbsError: 2.58807e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.07995e-03\tAbsError: 1.43250e+00\n", - " Region: \"zone_3\"\tRelError: 7.69704e+00\tAbsError: 2.11022e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.08442e-02\tAbsError: 1.06070e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.62030e-02\tAbsError: 1.04952e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 7.63591e+00\tAbsError: 2.58945e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.08866e-03\tAbsError: 1.43560e+00\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 3.26028e-01\tAbsError: 5.52255e+16\n", - " Region: \"zone_1\"\tRelError: 1.30298e-01\tAbsError: 6.51520e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12331e-01\tAbsError: 2.58932e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.79670e-02\tAbsError: 6.48931e+00\n", - " Region: \"zone_3\"\tRelError: 1.95730e-01\tAbsError: 5.52255e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.17944e-02\tAbsError: 2.75730e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.36243e-02\tAbsError: 2.76524e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.12331e-01\tAbsError: 2.58932e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.79798e-02\tAbsError: 6.49411e+00\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 3.26646e+01\tAbsError: 1.05374e+16\n", - " Region: \"zone_1\"\tRelError: 1.63183e+01\tAbsError: 9.50748e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.63156e+01\tAbsError: 9.16413e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.68897e-03\tAbsError: 9.41583e-01\n", - " Region: \"zone_3\"\tRelError: 1.63463e+01\tAbsError: 1.05374e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31069e-02\tAbsError: 5.23674e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.49207e-02\tAbsError: 5.30063e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 1.63156e+01\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69706e-03\tAbsError: 9.44437e-01\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.01824e-01\tAbsError: 1.39289e+17\n", - " Region: \"zone_1\"\tRelError: 1.05892e-01\tAbsError: 5.70881e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 8.98624e-02\tAbsError: 1.05192e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60298e-02\tAbsError: 5.69829e+00\n", - " Region: \"zone_3\"\tRelError: 2.95932e-01\tAbsError: 1.39289e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.91152e-02\tAbsError: 6.95329e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.10025e-01\tAbsError: 6.97560e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 8.07486e-02\tAbsError: 1.05208e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.60433e-02\tAbsError: 5.70315e+00\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 9.58482e+00\tAbsError: 6.34667e+15\n", - " Region: \"zone_1\"\tRelError: 2.32125e+00\tAbsError: 4.26139e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 2.32004e+00\tAbsError: 1.24165e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.21533e-03\tAbsError: 4.26014e-01\n", - " Region: \"zone_3\"\tRelError: 7.26357e+00\tAbsError: 6.34667e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.94984e-03\tAbsError: 3.16660e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.69319e-03\tAbsError: 3.18007e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.25171e+00\tAbsError: 1.24217e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.21533e-03\tAbsError: 4.26014e-01\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 1.91415e-01\tAbsError: 1.00021e+17\n", - " Region: \"zone_1\"\tRelError: 5.15868e-02\tAbsError: 4.56806e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 5.03019e-02\tAbsError: 1.18963e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.28487e-03\tAbsError: 4.55616e-01\n", - " Region: \"zone_3\"\tRelError: 1.39828e-01\tAbsError: 1.00021e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.62230e-02\tAbsError: 4.99301e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.09910e-02\tAbsError: 5.00912e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 5.13235e-02\tAbsError: 1.18981e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.29038e-03\tAbsError: 4.57437e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 8.10109e-01\tAbsError: 2.49944e+15\n", - " Region: \"zone_1\"\tRelError: 2.73036e-01\tAbsError: 9.44224e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.73009e-01\tAbsError: 7.54274e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.67762e-05\tAbsError: 9.36682e-03\n", - " Region: \"zone_3\"\tRelError: 5.37074e-01\tAbsError: 2.49944e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.44605e-03\tAbsError: 1.22669e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 6.58618e-04\tAbsError: 1.27274e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 5.30942e-01\tAbsError: 7.59068e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.67897e-05\tAbsError: 9.37175e-03\n", + " Device: \"device\"\tRelError: 4.46931e+01\tAbsError: 6.98262e+17\n", + " Region: \"zone_1\"\tRelError: 3.81166e+01\tAbsError: 6.55955e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.81166e+01\tAbsError: 6.55878e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.47821e-08\tAbsError: 7.69918e-06\n", + " Region: \"zone_3\"\tRelError: 6.57646e+00\tAbsError: 6.98262e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.14394e-01\tAbsError: 3.55333e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.12403e-01\tAbsError: 3.42929e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.74967e+00\tAbsError: 6.55878e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.47844e-08\tAbsError: 7.70002e-06\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 2.98833e-01\tAbsError: 3.64340e+13\n", + " Region: \"zone_1\"\tRelError: 1.89962e-01\tAbsError: 8.76273e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.89934e-01\tAbsError: 2.96623e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.80019e-05\tAbsError: 8.75977e-03\n", + " Region: \"zone_3\"\tRelError: 1.08871e-01\tAbsError: 3.64340e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.11851e-03\tAbsError: 1.80977e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.26843e-03\tAbsError: 1.83364e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.06456e-01\tAbsError: 4.79099e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.80043e-05\tAbsError: 8.76070e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.06363e+02\tAbsError: 3.81849e+17\n", + " Region: \"zone_1\"\tRelError: 8.53473e+00\tAbsError: 2.96787e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 8.52528e+00\tAbsError: 3.19980e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.44987e-03\tAbsError: 2.93587e+00\n", + " Region: \"zone_3\"\tRelError: 9.78285e+01\tAbsError: 3.81849e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.66818e-01\tAbsError: 1.91224e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.89042e-01\tAbsError: 1.90624e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 9.71632e+01\tAbsError: 3.21762e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.45013e-03\tAbsError: 2.93594e+00\n", + "Iteration: 73\n", + " Device: \"device\"\tRelError: 1.61643e-04\tAbsError: 3.40148e+10\n", + " Region: \"zone_1\"\tRelError: 1.47520e-04\tAbsError: 6.65731e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47498e-04\tAbsError: 2.27771e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.14004e-08\tAbsError: 6.65503e-06\n", + " Region: \"zone_3\"\tRelError: 1.41228e-05\tAbsError: 3.40148e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.69578e-07\tAbsError: 1.68836e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.74218e-07\tAbsError: 1.71312e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22576e-05\tAbsError: 3.66011e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.14023e-08\tAbsError: 6.65575e-06\n", + "Iteration: 77\n", + " Device: \"device\"\tRelError: 5.68230e-04\tAbsError: 3.92125e+10\n", + " Region: \"zone_1\"\tRelError: 4.92551e-04\tAbsError: 9.26863e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.92521e-04\tAbsError: 3.42668e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.98762e-08\tAbsError: 9.26520e-06\n", + " Region: \"zone_3\"\tRelError: 7.56786e-05\tAbsError: 3.92125e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.22264e-06\tAbsError: 1.90060e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.36344e-06\tAbsError: 2.02065e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.30626e-05\tAbsError: 5.09605e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.98789e-08\tAbsError: 9.26620e-06\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 2.69195e-01\tAbsError: 3.01230e+13\n", + " Region: \"zone_1\"\tRelError: 1.86307e-01\tAbsError: 7.24461e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86284e-01\tAbsError: 2.45239e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.31501e-05\tAbsError: 7.24216e-03\n", + " Region: \"zone_3\"\tRelError: 8.28882e-02\tAbsError: 3.01230e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.24213e-04\tAbsError: 1.49628e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04801e-03\tAbsError: 1.51602e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.08929e-02\tAbsError: 3.96097e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.31521e-05\tAbsError: 7.24293e-03\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.75451e+04\tAbsError: 2.00616e+18\n", + " Region: \"zone_1\"\tRelError: 1.57901e+03\tAbsError: 1.50229e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57900e+03\tAbsError: 5.98126e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.70849e-03\tAbsError: 1.44247e+00\n", + " Region: \"zone_3\"\tRelError: 4.59661e+04\tAbsError: 2.00616e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.67459e-01\tAbsError: 1.00003e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.87281e-01\tAbsError: 1.00613e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 4.59644e+04\tAbsError: 5.98482e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.70871e-03\tAbsError: 1.44251e+00\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.75197e+00\tAbsError: 4.59248e+16\n", + " Region: \"zone_1\"\tRelError: 8.39050e-01\tAbsError: 6.12725e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.37165e-01\tAbsError: 2.58972e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88579e-03\tAbsError: 5.86828e-01\n", + " Region: \"zone_3\"\tRelError: 2.91292e+00\tAbsError: 4.59248e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.17894e-01\tAbsError: 2.29859e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.23079e-02\tAbsError: 2.29389e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74083e+00\tAbsError: 2.58990e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.88613e-03\tAbsError: 5.86934e-01\n", + "Iteration: 74\n", + " Device: \"device\"\tRelError: 1.35696e-04\tAbsError: 2.85580e+10\n", + " Region: \"zone_1\"\tRelError: 1.23839e-04\tAbsError: 5.58932e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23821e-04\tAbsError: 1.91231e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79672e-08\tAbsError: 5.58741e-06\n", + " Region: \"zone_3\"\tRelError: 1.18570e-05\tAbsError: 2.85580e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.30076e-07\tAbsError: 1.41750e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.17930e-07\tAbsError: 1.43829e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02911e-05\tAbsError: 3.07294e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.79688e-08\tAbsError: 5.58800e-06\n", + "Iteration: 78\n", + " Device: \"device\"\tRelError: 4.82898e-04\tAbsError: 3.33363e+10\n", + " Region: \"zone_1\"\tRelError: 4.18564e-04\tAbsError: 7.87966e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 4.18539e-04\tAbsError: 2.91317e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.53990e-08\tAbsError: 7.87675e-06\n", + " Region: \"zone_3\"\tRelError: 6.43338e-05\tAbsError: 3.33363e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03942e-06\tAbsError: 1.61579e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.15912e-06\tAbsError: 1.71784e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.21098e-05\tAbsError: 4.33237e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.54013e-08\tAbsError: 7.87760e-06\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 2.06801e-01\tAbsError: 2.49050e+13\n", + " Region: \"zone_1\"\tRelError: 1.33479e-01\tAbsError: 5.98962e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33459e-01\tAbsError: 2.02756e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91401e-05\tAbsError: 5.98759e-03\n", + " Region: \"zone_3\"\tRelError: 7.33230e-02\tAbsError: 2.49050e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.64466e-04\tAbsError: 1.23709e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.66918e-04\tAbsError: 1.25341e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.16724e-02\tAbsError: 3.27479e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.91418e-05\tAbsError: 5.98822e-03\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 7.17756e+03\tAbsError: 2.25162e+18\n", + " Region: \"zone_1\"\tRelError: 5.68393e+02\tAbsError: 4.01508e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 5.68380e+02\tAbsError: 5.32898e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27865e-02\tAbsError: 3.96179e+00\n", + " Region: \"zone_3\"\tRelError: 6.60917e+03\tAbsError: 2.25162e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.66375e-01\tAbsError: 1.12814e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.95820e-01\tAbsError: 1.12348e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 6.60769e+03\tAbsError: 5.34159e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27865e-02\tAbsError: 3.96179e+00\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.68919e+01\tAbsError: 5.72958e+16\n", + " Region: \"zone_1\"\tRelError: 4.77404e+00\tAbsError: 4.68784e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.75924e+00\tAbsError: 1.25922e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47968e-02\tAbsError: 4.67525e+00\n", + " Region: \"zone_3\"\tRelError: 1.21178e+01\tAbsError: 5.72958e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.94207e-01\tAbsError: 2.81840e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.87091e-01\tAbsError: 2.91118e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14217e+01\tAbsError: 1.35466e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.47992e-02\tAbsError: 4.67603e+00\n", + "Iteration: 75\n", + " Device: \"device\"\tRelError: 1.13938e-04\tAbsError: 2.39766e+10\n", + " Region: \"zone_1\"\tRelError: 1.03983e-04\tAbsError: 4.69266e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03968e-04\tAbsError: 1.60553e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50849e-08\tAbsError: 4.69105e-06\n", + " Region: \"zone_3\"\tRelError: 9.95496e-06\tAbsError: 2.39766e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.12954e-07\tAbsError: 1.19010e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.86714e-07\tAbsError: 1.20756e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.64021e-06\tAbsError: 2.57997e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50862e-08\tAbsError: 4.69155e-06\n", + "Iteration: 79\n", + " Device: \"device\"\tRelError: 4.10662e-04\tAbsError: 2.83406e+10\n", + " Region: \"zone_1\"\tRelError: 3.55966e-04\tAbsError: 6.69884e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.55944e-04\tAbsError: 2.47661e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.15928e-08\tAbsError: 6.69637e-06\n", + " Region: \"zone_3\"\tRelError: 5.46957e-05\tAbsError: 2.83406e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.83653e-07\tAbsError: 1.37365e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.85415e-07\tAbsError: 1.46041e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.28050e-05\tAbsError: 3.68314e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.15948e-08\tAbsError: 6.69709e-06\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 1.81345e-01\tAbsError: 2.05901e+13\n", + " Region: \"zone_1\"\tRelError: 1.24039e-01\tAbsError: 4.95199e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24023e-01\tAbsError: 1.67630e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58241e-05\tAbsError: 4.95032e-03\n", + " Region: \"zone_3\"\tRelError: 5.73056e-02\tAbsError: 2.05901e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.31789e-04\tAbsError: 1.02276e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.16422e-04\tAbsError: 1.03625e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.59416e-02\tAbsError: 2.70748e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58255e-05\tAbsError: 4.95084e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.82200e+02\tAbsError: 1.07610e+18\n", + " Region: \"zone_1\"\tRelError: 9.25646e+01\tAbsError: 3.93453e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 9.25522e+01\tAbsError: 4.58838e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24246e-02\tAbsError: 3.88864e+00\n", + " Region: \"zone_3\"\tRelError: 8.96355e+01\tAbsError: 1.07610e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.43099e-01\tAbsError: 5.39271e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.12582e-01\tAbsError: 5.36833e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 8.86674e+01\tAbsError: 4.60430e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24254e-02\tAbsError: 3.88885e+00\n", + "Iteration: 76\n", + " Device: \"device\"\tRelError: 9.56517e-05\tAbsError: 2.01302e+10\n", + " Region: \"zone_1\"\tRelError: 8.72939e-05\tAbsError: 3.93984e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.72812e-05\tAbsError: 1.34796e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26649e-08\tAbsError: 3.93849e-06\n", + " Region: \"zone_3\"\tRelError: 8.35789e-06\tAbsError: 2.01302e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.14622e-07\tAbsError: 9.99180e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.76549e-07\tAbsError: 1.01384e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.25406e-06\tAbsError: 2.16608e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26660e-08\tAbsError: 3.93892e-06\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 9.40417e+01\tAbsError: 9.48397e+16\n", + " Region: \"zone_1\"\tRelError: 6.96049e+00\tAbsError: 5.00318e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 6.94423e+00\tAbsError: 3.18210e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62610e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 8.70812e+01\tAbsError: 9.48397e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.17422e+00\tAbsError: 4.73102e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.86504e-01\tAbsError: 4.75295e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 8.29043e+01\tAbsError: 5.04393e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62125e-02\tAbsError: 5.00000e+00\n", + "Iteration: 80\n", + " Device: \"device\"\tRelError: 3.49028e-04\tAbsError: 2.40936e+10\n", + " Region: \"zone_1\"\tRelError: 3.02531e-04\tAbsError: 5.69498e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 3.02512e-04\tAbsError: 2.10547e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83570e-08\tAbsError: 5.69287e-06\n", + " Region: \"zone_3\"\tRelError: 4.64972e-05\tAbsError: 2.40936e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.51231e-07\tAbsError: 1.16780e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.37743e-07\tAbsError: 1.24156e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.48898e-05\tAbsError: 3.13119e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.83586e-08\tAbsError: 5.69349e-06\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 1.42637e-01\tAbsError: 1.70237e+13\n", + " Region: \"zone_1\"\tRelError: 9.30157e-02\tAbsError: 4.09413e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.30026e-02\tAbsError: 1.38592e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.30830e-05\tAbsError: 4.09274e-03\n", + " Region: \"zone_3\"\tRelError: 4.96209e-02\tAbsError: 1.70237e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.22506e-04\tAbsError: 8.45606e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.92526e-04\tAbsError: 8.56759e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.84928e-02\tAbsError: 2.23844e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.30841e-05\tAbsError: 4.09317e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.96876e+02\tAbsError: 2.30912e+17\n", + " Region: \"zone_1\"\tRelError: 4.42667e+00\tAbsError: 4.43133e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.41283e+00\tAbsError: 3.71880e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38458e-02\tAbsError: 4.39414e+00\n", + " Region: \"zone_3\"\tRelError: 1.92450e+02\tAbsError: 2.30912e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.25087e-01\tAbsError: 1.15640e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.77285e-01\tAbsError: 1.15273e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91634e+02\tAbsError: 3.74103e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38462e-02\tAbsError: 4.39426e+00\n", + "Iteration: 81\n", + " Device: \"device\"\tRelError: 2.96791e-04\tAbsError: 2.04830e+10\n", + " Region: \"zone_1\"\tRelError: 2.57261e-04\tAbsError: 4.84155e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57245e-04\tAbsError: 1.78995e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56061e-08\tAbsError: 4.83976e-06\n", + " Region: \"zone_3\"\tRelError: 3.95307e-05\tAbsError: 2.04830e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.38654e-07\tAbsError: 9.92797e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.12202e-07\tAbsError: 1.05550e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.81643e-05\tAbsError: 2.66196e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56075e-08\tAbsError: 4.84028e-06\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.85240e+02\tAbsError: 3.03141e+17\n", + " Region: \"zone_1\"\tRelError: 1.37022e+02\tAbsError: 2.71371e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37014e+02\tAbsError: 1.02016e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.51805e-03\tAbsError: 2.70351e+00\n", + " Region: \"zone_3\"\tRelError: 4.82181e+01\tAbsError: 3.03141e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.72516e-01\tAbsError: 1.51303e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.18508e-01\tAbsError: 1.51837e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.71185e+01\tAbsError: 1.49781e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.51879e-03\tAbsError: 2.70379e+00\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 1.22786e-01\tAbsError: 1.40742e+13\n", + " Region: \"zone_1\"\tRelError: 8.33061e-02\tAbsError: 3.38488e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.32953e-02\tAbsError: 1.14582e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08164e-05\tAbsError: 3.38374e-03\n", + " Region: \"zone_3\"\tRelError: 3.94794e-02\tAbsError: 1.40742e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.31877e-04\tAbsError: 6.99098e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.89733e-04\tAbsError: 7.08318e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85470e-02\tAbsError: 1.85066e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.08174e-05\tAbsError: 3.38410e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:37:36\u001b[0m.\u001b[1;36m333\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:37:36\u001b[0m.\u001b[1;36m353\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.15 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:37:36\u001b[0m.\u001b[1;36m369\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.15 V. Current applied bias: 1.15\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31686\n", + "Iteration: 82\n", + " Device: \"device\"\tRelError: 2.52266e-04\tAbsError: 1.74135e+10\n", + " Region: \"zone_1\"\tRelError: 2.18661e-04\tAbsError: 4.11601e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.18647e-04\tAbsError: 1.52172e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32674e-08\tAbsError: 4.11449e-06\n", + " Region: \"zone_3\"\tRelError: 3.36057e-05\tAbsError: 1.74135e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.42948e-07\tAbsError: 8.44020e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.05474e-07\tAbsError: 8.97330e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.24440e-05\tAbsError: 2.26305e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32686e-08\tAbsError: 4.11493e-06\n", "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.04251e-02\tAbsError: 8.30667e+15\n", - " Region: \"zone_1\"\tRelError: 2.75203e-03\tAbsError: 6.42693e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.57122e-03\tAbsError: 6.56089e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.80808e-04\tAbsError: 6.42037e-02\n", - " Region: \"zone_3\"\tRelError: 7.67309e-03\tAbsError: 8.30667e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.62570e-03\tAbsError: 4.13378e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.11159e-03\tAbsError: 4.17290e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 7.54923e-04\tAbsError: 6.56149e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.80878e-04\tAbsError: 6.42290e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.50361e-02\tAbsError: 6.78895e+13\n", - " Region: \"zone_1\"\tRelError: 2.37122e-02\tAbsError: 9.45855e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.36853e-02\tAbsError: 1.50946e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69242e-05\tAbsError: 9.45704e-03\n", - " Region: \"zone_3\"\tRelError: 5.13239e-02\tAbsError: 6.78895e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.92168e-04\tAbsError: 3.35710e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.54573e-05\tAbsError: 3.43185e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 5.10793e-02\tAbsError: 1.52419e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.69352e-05\tAbsError: 9.46083e-03\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 2.43138e-03\tAbsError: 2.10283e+15\n", - " Region: \"zone_1\"\tRelError: 6.81118e-04\tAbsError: 9.31262e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 6.55096e-04\tAbsError: 1.84496e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.60224e-05\tAbsError: 9.29417e-03\n", - " Region: \"zone_3\"\tRelError: 1.75026e-03\tAbsError: 2.10283e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.38215e-04\tAbsError: 1.04835e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 7.17284e-04\tAbsError: 1.05448e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 6.68722e-04\tAbsError: 1.84544e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.60358e-05\tAbsError: 9.29887e-03\n", + " Device: \"device\"\tRelError: 8.08456e+02\tAbsError: 2.76929e+16\n", + " Region: \"zone_1\"\tRelError: 4.20592e+01\tAbsError: 1.65805e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.20540e+01\tAbsError: 2.62886e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.15677e-03\tAbsError: 1.63176e+00\n", + " Region: \"zone_3\"\tRelError: 7.66397e+02\tAbsError: 2.76929e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.71166e-02\tAbsError: 1.36618e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.44267e-01\tAbsError: 1.40312e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.66160e+02\tAbsError: 2.63115e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.16153e-03\tAbsError: 1.63326e+00\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 9.81272e-02\tAbsError: 1.16363e+13\n", + " Region: \"zone_1\"\tRelError: 6.44381e-02\tAbsError: 2.79849e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.44291e-02\tAbsError: 9.47332e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.94270e-06\tAbsError: 2.79755e-03\n", + " Region: \"zone_3\"\tRelError: 3.36891e-02\tAbsError: 1.16363e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.57137e-04\tAbsError: 5.78005e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.04993e-04\tAbsError: 5.85628e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.29180e-02\tAbsError: 1.53006e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.94347e-06\tAbsError: 2.79784e-03\n", "Iteration: 7\n", - " Device: \"device\"\tRelError: 5.59505e-02\tAbsError: 5.66225e+13\n", - " Region: \"zone_1\"\tRelError: 1.83279e-02\tAbsError: 3.54044e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 1.83269e-02\tAbsError: 2.54887e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00068e-06\tAbsError: 3.51495e-04\n", - " Region: \"zone_3\"\tRelError: 3.76225e-02\tAbsError: 5.66225e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.14084e-04\tAbsError: 2.81906e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.55711e-05\tAbsError: 2.84319e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.74519e-02\tAbsError: 2.56399e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.00120e-06\tAbsError: 3.51676e-04\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.03928e-04\tAbsError: 1.40333e+14\n", - " Region: \"zone_1\"\tRelError: 1.24164e-04\tAbsError: 2.26244e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17835e-04\tAbsError: 2.06645e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.32904e-06\tAbsError: 2.26038e-03\n", - " Region: \"zone_3\"\tRelError: 1.79764e-04\tAbsError: 1.40333e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.30254e-04\tAbsError: 6.96368e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.63288e-05\tAbsError: 7.06959e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.68486e-05\tAbsError: 2.06703e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.33247e-06\tAbsError: 2.26161e-03\n", + " Device: \"device\"\tRelError: 6.70715e+01\tAbsError: 2.55731e+17\n", + " Region: \"zone_1\"\tRelError: 3.71166e+01\tAbsError: 1.59451e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.71116e+01\tAbsError: 8.46202e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.02234e-03\tAbsError: 1.58605e+00\n", + " Region: \"zone_3\"\tRelError: 2.99549e+01\tAbsError: 2.55731e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.28359e-01\tAbsError: 1.27674e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.55158e-01\tAbsError: 1.28057e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 2.94663e+01\tAbsError: 1.25888e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.02264e-03\tAbsError: 1.58616e+00\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.40300e+03\tAbsError: 3.45136e+18\n", + " Region: \"zone_1\"\tRelError: 2.33764e+03\tAbsError: 5.60985e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.33764e+03\tAbsError: 5.60952e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06331e-08\tAbsError: 3.30666e-06\n", + " Region: \"zone_3\"\tRelError: 2.06537e+03\tAbsError: 3.45136e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.08575e-01\tAbsError: 1.71612e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.91810e-01\tAbsError: 1.73524e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06377e+03\tAbsError: 5.60955e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.06341e-08\tAbsError: 3.30702e-06\n", + "Iteration: 83\n", + " Device: \"device\"\tRelError: 2.14498e-04\tAbsError: 1.48040e+10\n", + " Region: \"zone_1\"\tRelError: 1.85927e-04\tAbsError: 3.49920e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85916e-04\tAbsError: 1.29368e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12792e-08\tAbsError: 3.49790e-06\n", + " Region: \"zone_3\"\tRelError: 2.85705e-05\tAbsError: 1.48040e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.61583e-07\tAbsError: 7.17538e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.14740e-07\tAbsError: 7.62859e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.75828e-05\tAbsError: 1.92392e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12802e-08\tAbsError: 3.49828e-06\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 8.34038e-02\tAbsError: 9.62028e+12\n", + " Region: \"zone_1\"\tRelError: 5.62718e-02\tAbsError: 2.31370e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.62644e-02\tAbsError: 7.83214e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.39347e-06\tAbsError: 2.31292e-03\n", + " Region: \"zone_3\"\tRelError: 2.71320e-02\tAbsError: 9.62028e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.95216e-04\tAbsError: 4.77863e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.34766e-04\tAbsError: 4.84165e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64946e-02\tAbsError: 1.26500e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.39411e-06\tAbsError: 2.31316e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 9.78574e+00\tAbsError: 3.30969e+16\n", + " Region: \"zone_1\"\tRelError: 2.53857e+00\tAbsError: 1.44289e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.53413e+00\tAbsError: 1.95145e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.43744e-03\tAbsError: 1.42337e+00\n", + " Region: \"zone_3\"\tRelError: 7.24717e+00\tAbsError: 3.30969e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.29190e-01\tAbsError: 1.65824e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.82645e-01\tAbsError: 1.65145e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.93089e+00\tAbsError: 1.96047e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.43774e-03\tAbsError: 1.42350e+00\n", "Iteration: 8\n", - " Device: \"device\"\tRelError: 7.88395e-04\tAbsError: 2.50647e+12\n", - " Region: \"zone_1\"\tRelError: 2.67678e-04\tAbsError: 3.14356e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.66781e-04\tAbsError: 1.15072e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.96866e-07\tAbsError: 3.14241e-04\n", - " Region: \"zone_3\"\tRelError: 5.20717e-04\tAbsError: 2.50647e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 9.42005e-06\tAbsError: 1.25767e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.70094e-06\tAbsError: 1.24880e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.06699e-04\tAbsError: 1.15714e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.97159e-07\tAbsError: 3.14358e-04\n", + " Device: \"device\"\tRelError: 4.10043e+00\tAbsError: 7.03007e+15\n", + " Region: \"zone_1\"\tRelError: 1.40675e+00\tAbsError: 6.15511e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40480e+00\tAbsError: 2.26355e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94457e-03\tAbsError: 6.15285e-01\n", + " Region: \"zone_3\"\tRelError: 2.69368e+00\tAbsError: 7.03007e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.36058e-02\tAbsError: 3.47322e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.05830e-01\tAbsError: 3.55686e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.54230e+00\tAbsError: 3.85875e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94466e-03\tAbsError: 6.15318e-01\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.17327e+01\tAbsError: 1.99557e+18\n", + " Region: \"zone_1\"\tRelError: 1.57095e+00\tAbsError: 5.04920e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.55467e+00\tAbsError: 4.91979e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62842e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.01617e+01\tAbsError: 1.99557e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.59340e-01\tAbsError: 9.99642e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.60388e-01\tAbsError: 9.95928e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 8.82577e+00\tAbsError: 4.95664e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62233e-02\tAbsError: 5.00000e+00\n", + "Iteration: 84\n", + " Device: \"device\"\tRelError: 1.82328e-04\tAbsError: 1.25855e+10\n", + " Region: \"zone_1\"\tRelError: 1.58040e-04\tAbsError: 2.97482e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58030e-04\tAbsError: 1.09981e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.58894e-09\tAbsError: 2.97372e-06\n", + " Region: \"zone_3\"\tRelError: 2.42884e-05\tAbsError: 1.25855e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.92412e-07\tAbsError: 6.10010e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.37603e-07\tAbsError: 6.48539e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.34488e-05\tAbsError: 1.63561e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.58980e-09\tAbsError: 2.97404e-06\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 6.73783e-02\tAbsError: 7.95387e+12\n", + " Region: \"zone_1\"\tRelError: 4.44561e-02\tAbsError: 1.91288e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.44500e-02\tAbsError: 6.47538e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.11268e-06\tAbsError: 1.91223e-03\n", + " Region: \"zone_3\"\tRelError: 2.29222e-02\tAbsError: 7.95387e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.44110e-04\tAbsError: 3.95088e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.76819e-04\tAbsError: 4.00299e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23952e-02\tAbsError: 1.04585e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.11321e-06\tAbsError: 1.91244e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.24502e+01\tAbsError: 8.82828e+15\n", + " Region: \"zone_1\"\tRelError: 1.73857e+01\tAbsError: 8.63875e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.73830e+01\tAbsError: 2.64627e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69962e-03\tAbsError: 8.63611e-01\n", + " Region: \"zone_3\"\tRelError: 1.50645e+01\tAbsError: 8.82828e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.19183e-02\tAbsError: 4.41396e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.16712e-01\tAbsError: 4.41431e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48931e+01\tAbsError: 3.59997e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.69981e-03\tAbsError: 8.63687e-01\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 6.42873e+00\tAbsError: 5.87868e+15\n", + " Region: \"zone_1\"\tRelError: 3.93411e+00\tAbsError: 6.70248e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.93199e+00\tAbsError: 1.63538e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.12224e-03\tAbsError: 6.70085e-01\n", + " Region: \"zone_3\"\tRelError: 2.49462e+00\tAbsError: 5.87868e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.49012e-02\tAbsError: 2.93565e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.01059e-01\tAbsError: 2.94304e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31654e+00\tAbsError: 3.12493e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.12239e-03\tAbsError: 6.70144e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 5.25867e+01\tAbsError: 5.02713e+17\n", + " Region: \"zone_1\"\tRelError: 4.57005e+00\tAbsError: 5.04093e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.55404e+00\tAbsError: 4.09341e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60108e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 4.80167e+01\tAbsError: 5.02713e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.68008e-01\tAbsError: 2.51721e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.06161e-01\tAbsError: 2.50992e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 4.69265e+01\tAbsError: 4.14643e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59643e-02\tAbsError: 5.00000e+00\n", + "Iteration: 85\n", + " Device: \"device\"\tRelError: 1.55024e-04\tAbsError: 1.06995e+10\n", + " Region: \"zone_1\"\tRelError: 1.34375e-04\tAbsError: 2.52902e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34367e-04\tAbsError: 9.34997e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.15197e-09\tAbsError: 2.52809e-06\n", + " Region: \"zone_3\"\tRelError: 2.06490e-05\tAbsError: 1.06995e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.33607e-07\tAbsError: 5.18596e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.72025e-07\tAbsError: 5.51351e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.99353e-05\tAbsError: 1.39050e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.15270e-09\tAbsError: 2.52836e-06\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 5.67713e-02\tAbsError: 6.57586e+12\n", + " Region: \"zone_1\"\tRelError: 3.81566e-02\tAbsError: 1.58150e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.81515e-02\tAbsError: 5.35358e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.05373e-06\tAbsError: 1.58097e-03\n", + " Region: \"zone_3\"\tRelError: 1.86147e-02\tAbsError: 6.57586e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.01797e-04\tAbsError: 3.26639e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.28832e-04\tAbsError: 3.30947e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.81790e-02\tAbsError: 8.64677e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.05416e-06\tAbsError: 1.58114e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 4.07812e+00\tAbsError: 2.32068e+15\n", + " Region: \"zone_1\"\tRelError: 8.44569e-01\tAbsError: 3.86380e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.43347e-01\tAbsError: 1.61659e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22170e-03\tAbsError: 3.86218e-01\n", + " Region: \"zone_3\"\tRelError: 3.23355e+00\tAbsError: 2.32068e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.98033e-02\tAbsError: 1.15482e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.64254e-02\tAbsError: 1.16586e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.13610e+00\tAbsError: 1.72907e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.22179e-03\tAbsError: 3.86253e-01\n", "Iteration: 8\n", - " Device: \"device\"\tRelError: 5.99632e-05\tAbsError: 4.11052e+13\n", - " Region: \"zone_1\"\tRelError: 2.28310e-05\tAbsError: 2.19806e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 2.22169e-05\tAbsError: 4.64136e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.14063e-07\tAbsError: 2.19342e-04\n", - " Region: \"zone_3\"\tRelError: 3.71322e-05\tAbsError: 4.11052e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.38645e-05\tAbsError: 2.04271e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.71535e-06\tAbsError: 2.06782e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 3.93797e-06\tAbsError: 4.64170e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 6.14301e-07\tAbsError: 2.19426e-04\n", + " Device: \"device\"\tRelError: 4.10778e+02\tAbsError: 1.05544e+16\n", + " Region: \"zone_1\"\tRelError: 4.20200e+00\tAbsError: 7.32708e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.19972e+00\tAbsError: 2.06573e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28455e-03\tAbsError: 7.32501e-01\n", + " Region: \"zone_3\"\tRelError: 4.06576e+02\tAbsError: 1.05544e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.25430e-02\tAbsError: 5.26615e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.89649e-02\tAbsError: 5.28827e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.06403e+02\tAbsError: 3.58334e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28472e-03\tAbsError: 7.32571e-01\n", + "Iteration: 86\n", + " Device: \"device\"\tRelError: 1.31779e-04\tAbsError: 9.09609e+09\n", + " Region: \"zone_1\"\tRelError: 1.14225e-04\tAbsError: 2.15003e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14218e-04\tAbsError: 7.94882e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93034e-09\tAbsError: 2.14924e-06\n", + " Region: \"zone_3\"\tRelError: 1.75544e-05\tAbsError: 9.09609e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.83613e-07\tAbsError: 4.40881e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.16275e-07\tAbsError: 4.68728e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69475e-05\tAbsError: 1.18212e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.93097e-09\tAbsError: 2.14947e-06\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 4.62014e-02\tAbsError: 5.43677e+12\n", + " Region: \"zone_1\"\tRelError: 3.05821e-02\tAbsError: 1.30753e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.05779e-02\tAbsError: 4.42617e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.17825e-06\tAbsError: 1.30709e-03\n", + " Region: \"zone_3\"\tRelError: 1.56193e-02\tAbsError: 5.43677e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.66855e-04\tAbsError: 2.70057e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.89212e-04\tAbsError: 2.73619e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52590e-02\tAbsError: 7.14882e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.17861e-06\tAbsError: 1.30723e-03\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 3.83729e+01\tAbsError: 7.70399e+16\n", + " Region: \"zone_1\"\tRelError: 9.28219e-01\tAbsError: 5.03127e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 9.12492e-01\tAbsError: 3.12746e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57269e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 3.74446e+01\tAbsError: 7.70399e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.93749e-01\tAbsError: 3.84531e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.54327e-01\tAbsError: 3.85868e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.66808e+01\tAbsError: 3.15909e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57134e-02\tAbsError: 5.00000e+00\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 2.19092e+00\tAbsError: 2.87592e+15\n", + " Region: \"zone_1\"\tRelError: 1.16639e+00\tAbsError: 3.66602e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16523e+00\tAbsError: 1.03381e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16067e-03\tAbsError: 3.66499e-01\n", + " Region: \"zone_3\"\tRelError: 1.02452e+00\tAbsError: 2.87592e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.38737e-02\tAbsError: 1.43502e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.33922e-02\tAbsError: 1.44090e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.26098e-01\tAbsError: 1.90208e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.16077e-03\tAbsError: 3.66537e-01\n", "Iteration: 9\n", - " Device: \"device\"\tRelError: 3.01493e-03\tAbsError: 2.03887e+12\n", - " Region: \"zone_1\"\tRelError: 9.68351e-04\tAbsError: 1.94584e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 9.68295e-04\tAbsError: 8.45891e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.51588e-08\tAbsError: 1.93738e-05\n", - " Region: \"zone_3\"\tRelError: 2.04658e-03\tAbsError: 2.03887e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.90840e-06\tAbsError: 1.01569e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.17272e-06\tAbsError: 1.02318e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 2.03944e-03\tAbsError: 8.50612e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.51787e-08\tAbsError: 1.93808e-05\n", + " Device: \"device\"\tRelError: 4.60762e+01\tAbsError: 7.24439e+15\n", + " Region: \"zone_1\"\tRelError: 2.09202e+01\tAbsError: 5.11813e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09186e+01\tAbsError: 1.80197e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59824e-03\tAbsError: 5.11633e-01\n", + " Region: \"zone_3\"\tRelError: 2.51560e+01\tAbsError: 7.24439e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.40074e-02\tAbsError: 3.61456e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.10969e-02\tAbsError: 3.62984e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.50293e+01\tAbsError: 2.50328e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59837e-03\tAbsError: 5.11682e-01\n", + "Iteration: 87\n", + " Device: \"device\"\tRelError: 1.12041e-04\tAbsError: 7.73298e+09\n", + " Region: \"zone_1\"\tRelError: 9.71168e-05\tAbsError: 1.82784e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 9.71109e-05\tAbsError: 6.75763e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.89179e-09\tAbsError: 1.82716e-06\n", + " Region: \"zone_3\"\tRelError: 1.49239e-05\tAbsError: 7.73298e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.41112e-07\tAbsError: 3.74812e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.68879e-07\tAbsError: 3.98486e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44080e-05\tAbsError: 1.00497e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.89231e-09\tAbsError: 1.82736e-06\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 3.86961e-02\tAbsError: 4.49487e+12\n", + " Region: \"zone_1\"\tRelError: 2.59398e-02\tAbsError: 1.08102e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.59364e-02\tAbsError: 3.65939e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.45442e-06\tAbsError: 1.08065e-03\n", + " Region: \"zone_3\"\tRelError: 1.27563e-02\tAbsError: 4.49487e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.37938e-04\tAbsError: 2.23271e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.56419e-04\tAbsError: 2.26216e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24585e-02\tAbsError: 5.91040e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.45472e-06\tAbsError: 1.08077e-03\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.35187e+01\tAbsError: 1.06608e+17\n", + " Region: \"zone_1\"\tRelError: 2.69724e+00\tAbsError: 3.10474e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.68770e+00\tAbsError: 2.58803e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.53941e-03\tAbsError: 3.07886e+00\n", + " Region: \"zone_3\"\tRelError: 1.08215e+01\tAbsError: 1.06608e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.55582e-01\tAbsError: 5.28875e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.17335e-01\tAbsError: 5.37207e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05390e+01\tAbsError: 2.58792e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.54082e-03\tAbsError: 3.07931e+00\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 2.54557e+00\tAbsError: 1.63965e+15\n", + " Region: \"zone_1\"\tRelError: 5.23305e-01\tAbsError: 2.60706e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.22481e-01\tAbsError: 9.66030e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.24649e-04\tAbsError: 2.60610e-01\n", + " Region: \"zone_3\"\tRelError: 2.02227e+00\tAbsError: 1.63965e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.07324e-02\tAbsError: 8.18189e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.70320e-02\tAbsError: 8.21458e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95368e+00\tAbsError: 1.36397e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.24716e-04\tAbsError: 2.60636e-01\n", "Iteration: 10\n", - " Device: \"device\"\tRelError: 2.13878e-04\tAbsError: 1.24488e+11\n", - " Region: \"zone_1\"\tRelError: 6.77267e-05\tAbsError: 1.32659e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 6.76887e-05\tAbsError: 6.49775e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.79174e-08\tAbsError: 1.32594e-05\n", - " Region: \"zone_3\"\tRelError: 1.46151e-04\tAbsError: 1.24488e+11\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.41336e-07\tAbsError: 6.10291e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.66825e-07\tAbsError: 6.34588e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.45305e-04\tAbsError: 6.53401e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.79209e-08\tAbsError: 1.32605e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:42:48\u001b[0m.\u001b[1;36m551\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + " Device: \"device\"\tRelError: 1.05792e+02\tAbsError: 6.00004e+15\n", + " Region: \"zone_1\"\tRelError: 5.28451e+01\tAbsError: 4.13530e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.28438e+01\tAbsError: 1.33353e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28971e-03\tAbsError: 4.13396e-01\n", + " Region: \"zone_3\"\tRelError: 5.29473e+01\tAbsError: 6.00004e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.56000e-02\tAbsError: 2.99344e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.65590e-02\tAbsError: 3.00659e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.28438e+01\tAbsError: 2.15011e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.28981e-03\tAbsError: 4.13437e-01\n", + "Iteration: 88\n", + " Device: \"device\"\tRelError: 9.52437e-05\tAbsError: 6.57414e+09\n", + " Region: \"zone_1\"\tRelError: 8.25564e-05\tAbsError: 1.55392e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.25514e-05\tAbsError: 5.74496e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.00886e-09\tAbsError: 1.55335e-06\n", + " Region: \"zone_3\"\tRelError: 1.26873e-05\tAbsError: 6.57414e+09\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04980e-07\tAbsError: 3.18644e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.28585e-07\tAbsError: 3.38770e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22488e-05\tAbsError: 8.54373e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.00931e-09\tAbsError: 1.55352e-06\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 3.16497e-02\tAbsError: 3.71624e+12\n", + " Region: \"zone_1\"\tRelError: 2.09960e-02\tAbsError: 8.93747e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.09932e-02\tAbsError: 3.02546e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.85600e-06\tAbsError: 8.93445e-04\n", + " Region: \"zone_3\"\tRelError: 1.06537e-02\tAbsError: 3.71624e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.14050e-04\tAbsError: 1.84594e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29332e-04\tAbsError: 1.87029e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04074e-02\tAbsError: 4.88650e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.85624e-06\tAbsError: 8.93540e-04\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 4.59562e+01\tAbsError: 1.14898e+17\n", + " Region: \"zone_1\"\tRelError: 4.78941e-01\tAbsError: 4.05646e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.66515e-01\tAbsError: 1.35613e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24258e-02\tAbsError: 4.04289e+00\n", + " Region: \"zone_3\"\tRelError: 4.54772e+01\tAbsError: 1.14898e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.66797e-01\tAbsError: 5.72350e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.96382e-01\tAbsError: 5.76628e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 4.48016e+01\tAbsError: 1.39054e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.24258e-02\tAbsError: 4.04289e+00\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.26617e+00\tAbsError: 1.65208e+15\n", + " Region: \"zone_1\"\tRelError: 6.32100e-01\tAbsError: 2.23644e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.31392e-01\tAbsError: 7.15896e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.07952e-04\tAbsError: 2.23572e-01\n", + " Region: \"zone_3\"\tRelError: 6.34067e-01\tAbsError: 1.65208e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.73206e-02\tAbsError: 8.24148e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.21249e-02\tAbsError: 8.27931e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.73914e-01\tAbsError: 1.19762e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.08011e-04\tAbsError: 2.23596e-01\n", "Iteration: 11\n", - " Device: \"device\"\tRelError: 1.56196e-04\tAbsError: 8.22099e+10\n", - " Region: \"zone_1\"\tRelError: 4.96683e-05\tAbsError: 1.29947e-06\n", - " Equation: \"PotentialEquation\"\tRelError: 4.96646e-05\tAbsError: 3.20602e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.70688e-09\tAbsError: 1.29627e-06\n", - " Region: \"zone_3\"\tRelError: 1.06527e-04\tAbsError: 8.22099e+10\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.53254e-07\tAbsError: 4.09765e+10\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.71613e-07\tAbsError: 4.12334e+10\n", - " Equation: \"PotentialEquation\"\tRelError: 1.06199e-04\tAbsError: 3.22381e-09\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.70726e-09\tAbsError: 1.29639e-06\n", + " Device: \"device\"\tRelError: 1.67477e+02\tAbsError: 4.43671e+15\n", + " Region: \"zone_1\"\tRelError: 1.64006e+02\tAbsError: 3.07914e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64005e+02\tAbsError: 1.08328e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.61209e-04\tAbsError: 3.07805e-01\n", + " Region: \"zone_3\"\tRelError: 3.47036e+00\tAbsError: 4.43671e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.48503e-02\tAbsError: 2.21343e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.28648e-02\tAbsError: 2.22328e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.39168e+00\tAbsError: 1.60503e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.61284e-04\tAbsError: 3.07836e-01\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 2.63999e-02\tAbsError: 3.07242e+12\n", + " Region: \"zone_1\"\tRelError: 1.76653e-02\tAbsError: 7.38919e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76629e-02\tAbsError: 2.50134e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36123e-06\tAbsError: 7.38669e-04\n", + " Region: \"zone_3\"\tRelError: 8.73467e-03\tAbsError: 3.07242e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.42873e-05\tAbsError: 1.52615e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06920e-04\tAbsError: 1.54628e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.53110e-03\tAbsError: 4.03999e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.36144e-06\tAbsError: 7.38747e-04\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.43239e+00\tAbsError: 1.17794e+15\n", + " Region: \"zone_1\"\tRelError: 3.49426e-01\tAbsError: 1.72525e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.48880e-01\tAbsError: 6.06721e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.45817e-04\tAbsError: 1.72464e-01\n", + " Region: \"zone_3\"\tRelError: 1.08296e+00\tAbsError: 1.17794e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.08774e-02\tAbsError: 5.87523e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.44166e-02\tAbsError: 5.90420e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03712e+00\tAbsError: 9.26240e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.45863e-04\tAbsError: 1.72482e-01\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 6.02339e+01\tAbsError: 9.24505e+16\n", + " Region: \"zone_1\"\tRelError: 6.25920e+00\tAbsError: 3.01630e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 6.24985e+00\tAbsError: 1.59055e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.35233e-03\tAbsError: 3.01471e+00\n", + " Region: \"zone_3\"\tRelError: 5.39747e+01\tAbsError: 9.24505e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.51539e-01\tAbsError: 4.61722e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.00962e-01\tAbsError: 4.62783e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.32128e+01\tAbsError: 2.47960e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.35233e-03\tAbsError: 3.01471e+00\n", "Iteration: 12\n", - " Device: \"device\"\tRelError: 1.81376e-05\tAbsError: 8.11356e+09\n", - " Region: \"zone_1\"\tRelError: 5.70565e-06\tAbsError: 6.56313e-07\n", - " Equation: \"PotentialEquation\"\tRelError: 5.70378e-06\tAbsError: 3.58334e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.87514e-09\tAbsError: 6.55955e-07\n", - " Region: \"zone_3\"\tRelError: 1.24320e-05\tAbsError: 8.11356e+09\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.21600e-08\tAbsError: 4.01059e+09\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.61223e-08\tAbsError: 4.10296e+09\n", - " Equation: \"PotentialEquation\"\tRelError: 1.23818e-05\tAbsError: 3.60254e-10\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.87583e-09\tAbsError: 6.56203e-07\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:42:49\u001b[0m.\u001b[1;36m618\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 1.2\u001b[0m \n", + " Device: \"device\"\tRelError: 6.62103e+01\tAbsError: 3.50786e+15\n", + " Region: \"zone_1\"\tRelError: 1.44544e+01\tAbsError: 2.42853e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44536e+01\tAbsError: 8.22214e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.57546e-04\tAbsError: 2.42771e-01\n", + " Region: \"zone_3\"\tRelError: 5.17559e+01\tAbsError: 3.50786e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.74968e-02\tAbsError: 1.74999e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.33923e-02\tAbsError: 1.75787e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.16943e+01\tAbsError: 1.27647e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.57606e-04\tAbsError: 2.42795e-01\n", + "Iteration: 37\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:37:45\u001b[0m.\u001b[1;36m031\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + " Device: \"device\"\tRelError: 2.16665e-02\tAbsError: 2.54019e+12\n", + " Region: \"zone_1\"\tRelError: 1.43949e-02\tAbsError: 6.10911e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.43929e-02\tAbsError: 2.06802e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.95219e-06\tAbsError: 6.10705e-04\n", + " Region: \"zone_3\"\tRelError: 7.27160e-03\tAbsError: 2.54019e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.79570e-05\tAbsError: 1.26177e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.84023e-05\tAbsError: 1.27842e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.10329e-03\tAbsError: 3.34011e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.95235e-06\tAbsError: 6.10769e-04\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:37:45\u001b[0m.\u001b[1;36m053\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.2 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:37:45\u001b[0m.\u001b[1;36m069\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.2 V. Current applied bias: 1.2\u001b[0m \n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", @@ -59465,108 +32288,1992 @@ "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 1.06075e+01\tAbsError: 2.79862e+18\n", - " Region: \"zone_1\"\tRelError: 7.94145e+00\tAbsError: 4.09534e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 7.94145e+00\tAbsError: 4.09533e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.59504e-10\tAbsError: 9.07782e-08\n", - " Region: \"zone_3\"\tRelError: 2.66604e+00\tAbsError: 2.79862e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.05077e-01\tAbsError: 1.39826e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.97560e-01\tAbsError: 1.40036e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 1.66340e+00\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.59605e-10\tAbsError: 9.08149e-08\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 8.81850e-01\tAbsError: 3.97971e+17\n", - " Region: \"zone_1\"\tRelError: 2.47010e-01\tAbsError: 3.38007e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 2.37556e-01\tAbsError: 3.07618e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.45414e-03\tAbsError: 3.34931e+00\n", - " Region: \"zone_3\"\tRelError: 6.34840e-01\tAbsError: 3.97971e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14857e-01\tAbsError: 1.99270e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.03011e-01\tAbsError: 1.98701e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 2.07516e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 9.45541e-03\tAbsError: 3.34965e+00\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 3.67895e-01\tAbsError: 4.72516e+16\n", - " Region: \"zone_1\"\tRelError: 1.50726e-01\tAbsError: 5.59199e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35198e-01\tAbsError: 2.58844e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.55275e-02\tAbsError: 5.56611e+00\n", - " Region: \"zone_3\"\tRelError: 2.17169e-01\tAbsError: 4.72516e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.45897e-02\tAbsError: 2.35836e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.18017e-02\tAbsError: 2.36679e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.35232e-01\tAbsError: 2.58775e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.55454e-02\tAbsError: 5.57271e+00\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 4.33086e-01\tAbsError: 8.94267e+16\n", - " Region: \"zone_1\"\tRelError: 1.27506e-01\tAbsError: 5.03041e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.13299e-01\tAbsError: 9.16402e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42065e-02\tAbsError: 5.02125e+00\n", - " Region: \"zone_3\"\tRelError: 3.05581e-01\tAbsError: 8.94267e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 8.77157e-02\tAbsError: 4.46015e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.56957e-02\tAbsError: 4.48253e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17945e-01\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.42247e-02\tAbsError: 5.02775e+00\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 2.30726e-01\tAbsError: 6.72803e+16\n", - " Region: \"zone_1\"\tRelError: 7.35635e-02\tAbsError: 3.08358e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 7.26895e-02\tAbsError: 9.81454e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.74003e-04\tAbsError: 3.07376e-01\n", - " Region: \"zone_3\"\tRelError: 1.57162e-01\tAbsError: 6.72803e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.94071e-02\tAbsError: 3.35566e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.14449e-02\tAbsError: 3.37237e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 7.54322e-02\tAbsError: 9.82805e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 8.78127e-04\tAbsError: 3.08879e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 1.07982e-02\tAbsError: 4.75532e+15\n", - " Region: \"zone_1\"\tRelError: 2.87315e-03\tAbsError: 7.10545e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 2.67193e-03\tAbsError: 3.42983e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.01215e-04\tAbsError: 7.10202e-02\n", - " Region: \"zone_3\"\tRelError: 7.92501e-03\tAbsError: 4.75532e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.99321e-03\tAbsError: 2.36925e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.95393e-03\tAbsError: 2.38607e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.77664e-03\tAbsError: 3.43025e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.01229e-04\tAbsError: 7.10259e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 4.25637e-03\tAbsError: 1.33088e+15\n", - " Region: \"zone_1\"\tRelError: 1.51076e-03\tAbsError: 5.63944e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.49479e-03\tAbsError: 1.60161e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59642e-05\tAbsError: 5.62343e-03\n", - " Region: \"zone_3\"\tRelError: 2.74561e-03\tAbsError: 1.33088e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.72024e-04\tAbsError: 6.65349e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.04225e-04\tAbsError: 6.65530e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.55339e-03\tAbsError: 1.61219e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.59735e-05\tAbsError: 5.62680e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 3.40119e-04\tAbsError: 1.07870e+14\n", - " Region: \"zone_1\"\tRelError: 1.10130e-04\tAbsError: 1.99295e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.04476e-04\tAbsError: 1.10955e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.65450e-06\tAbsError: 1.99184e-03\n", - " Region: \"zone_3\"\tRelError: 2.29988e-04\tAbsError: 1.07870e+14\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.77399e-05\tAbsError: 5.36836e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 8.81953e-05\tAbsError: 5.41868e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.08396e-04\tAbsError: 1.11836e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 5.65725e-06\tAbsError: 1.99285e-03\n", + "number of equations 31686\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 8.56718e-01\tAbsError: 1.01890e+15\n", + " Region: \"zone_1\"\tRelError: 3.76220e-01\tAbsError: 1.42111e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.75770e-01\tAbsError: 4.74995e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.49808e-04\tAbsError: 1.42064e-01\n", + " Region: \"zone_3\"\tRelError: 4.80498e-01\tAbsError: 1.01890e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.74296e-02\tAbsError: 5.08214e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.03053e-02\tAbsError: 5.10685e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.42313e-01\tAbsError: 7.66050e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.49845e-04\tAbsError: 1.42078e-01\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 5.25638e+00\tAbsError: 2.66968e+15\n", + " Region: \"zone_1\"\tRelError: 3.89061e+00\tAbsError: 1.85467e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.89003e+00\tAbsError: 6.48731e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.78868e-04\tAbsError: 1.85402e-01\n", + " Region: \"zone_3\"\tRelError: 1.36577e+00\tAbsError: 2.66968e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12450e-02\tAbsError: 1.33186e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.57725e-02\tAbsError: 1.33782e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.31817e+00\tAbsError: 9.75050e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.78913e-04\tAbsError: 1.85421e-01\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 2.15130e+01\tAbsError: 7.66398e+16\n", + " Region: \"zone_1\"\tRelError: 1.39194e+00\tAbsError: 1.72300e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.38668e+00\tAbsError: 1.32201e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.26441e-03\tAbsError: 1.72168e+00\n", + " Region: \"zone_3\"\tRelError: 2.01210e+01\tAbsError: 7.66398e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.52804e-01\tAbsError: 3.82787e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.24724e-01\tAbsError: 3.83611e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96382e+01\tAbsError: 1.91034e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.26480e-03\tAbsError: 1.72185e+00\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 4.70780e+03\tAbsError: 1.97270e+18\n", + " Region: \"zone_1\"\tRelError: 3.22010e+02\tAbsError: 6.92858e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.22010e+02\tAbsError: 6.92845e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.25825e-09\tAbsError: 1.32057e-06\n", + " Region: \"zone_3\"\tRelError: 4.38579e+03\tAbsError: 1.97270e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.17699e-01\tAbsError: 9.52127e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.13051e-01\tAbsError: 1.02057e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 4.38396e+03\tAbsError: 6.92846e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.25863e-09\tAbsError: 1.32071e-06\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 1.80221e-02\tAbsError: 2.10013e+12\n", + " Region: \"zone_1\"\tRelError: 1.20444e-02\tAbsError: 5.05080e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20428e-02\tAbsError: 1.70976e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61400e-06\tAbsError: 5.04909e-04\n", + " Region: \"zone_3\"\tRelError: 5.97762e-03\tAbsError: 2.10013e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.44496e-05\tAbsError: 1.04318e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.30846e-05\tAbsError: 1.05694e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.83847e-03\tAbsError: 2.76149e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61414e-06\tAbsError: 5.04963e-04\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 8.49074e-01\tAbsError: 7.86325e+14\n", + " Region: \"zone_1\"\tRelError: 2.35888e-01\tAbsError: 1.12800e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.35531e-01\tAbsError: 3.89288e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.56900e-04\tAbsError: 1.12761e-01\n", + " Region: \"zone_3\"\tRelError: 6.13187e-01\tAbsError: 7.86325e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.37389e-02\tAbsError: 3.92164e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.59719e-02\tAbsError: 3.94161e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.83119e-01\tAbsError: 6.08245e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.56930e-04\tAbsError: 1.12772e-01\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.38448e+01\tAbsError: 2.08339e+15\n", + " Region: \"zone_1\"\tRelError: 8.45318e+00\tAbsError: 1.44739e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.45273e+00\tAbsError: 4.98649e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.51547e-04\tAbsError: 1.44689e-01\n", + " Region: \"zone_3\"\tRelError: 5.39166e+00\tAbsError: 2.08339e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.65110e-02\tAbsError: 1.03936e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.99526e-02\tAbsError: 1.04403e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 5.35475e+00\tAbsError: 7.61969e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.51583e-04\tAbsError: 1.44704e-01\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.43279e+00\tAbsError: 4.26586e+16\n", + " Region: \"zone_1\"\tRelError: 3.64263e-01\tAbsError: 1.15840e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.60711e-01\tAbsError: 6.85932e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.55254e-03\tAbsError: 1.15772e+00\n", + " Region: \"zone_3\"\tRelError: 1.06852e+00\tAbsError: 4.26586e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33180e-01\tAbsError: 2.13052e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.56264e-01\tAbsError: 2.13534e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.75527e-01\tAbsError: 1.04548e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.55278e-03\tAbsError: 1.15782e+00\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 1.48253e-02\tAbsError: 1.73632e+12\n", + " Region: \"zone_1\"\tRelError: 9.85977e-03\tAbsError: 4.17582e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.85844e-03\tAbsError: 1.41357e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33439e-06\tAbsError: 4.17441e-04\n", + " Region: \"zone_3\"\tRelError: 4.96549e-03\tAbsError: 1.73632e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.32863e-05\tAbsError: 8.62471e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.04260e-05\tAbsError: 8.73846e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.85044e-03\tAbsError: 2.28310e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.33451e-06\tAbsError: 4.17485e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.66161e+03\tAbsError: 4.38893e+18\n", + " Region: \"zone_1\"\tRelError: 3.32712e+02\tAbsError: 5.06415e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.32696e+02\tAbsError: 6.41543e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62334e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.32889e+03\tAbsError: 4.38893e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.57282e-01\tAbsError: 2.19550e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.56160e-01\tAbsError: 2.19343e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32716e+03\tAbsError: 6.42667e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62336e-02\tAbsError: 5.00000e+00\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 5.72225e-01\tAbsError: 6.48162e+14\n", + " Region: \"zone_1\"\tRelError: 2.31721e-01\tAbsError: 9.15594e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31432e-01\tAbsError: 3.10612e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89781e-04\tAbsError: 9.15283e-02\n", + " Region: \"zone_3\"\tRelError: 3.40504e-01\tAbsError: 6.48162e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.12291e-02\tAbsError: 3.23279e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.30510e-02\tAbsError: 3.24884e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.15934e-01\tAbsError: 4.94045e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.89806e-04\tAbsError: 9.15379e-02\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 2.24434e+00\tAbsError: 1.60339e+15\n", + " Region: \"zone_1\"\tRelError: 1.40883e+00\tAbsError: 1.11573e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40848e+00\tAbsError: 3.89110e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.48198e-04\tAbsError: 1.11534e-01\n", + " Region: \"zone_3\"\tRelError: 8.35510e-01\tAbsError: 1.60339e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28030e-02\tAbsError: 7.99906e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.54778e-02\tAbsError: 8.03487e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 8.06881e-01\tAbsError: 5.87227e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.48226e-04\tAbsError: 1.11545e-01\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 1.23080e-02\tAbsError: 1.43552e+12\n", + " Region: \"zone_1\"\tRelError: 8.21868e-03\tAbsError: 3.45242e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.21757e-03\tAbsError: 1.16869e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10323e-06\tAbsError: 3.45125e-04\n", + " Region: \"zone_3\"\tRelError: 4.08928e-03\tAbsError: 1.43552e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.40541e-05\tAbsError: 7.13057e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.99565e-05\tAbsError: 7.22462e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.99416e-03\tAbsError: 1.88759e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.10332e-06\tAbsError: 3.45162e-04\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 6.93425e+00\tAbsError: 2.15304e+16\n", + " Region: \"zone_1\"\tRelError: 5.64215e+00\tAbsError: 8.51265e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.63954e+00\tAbsError: 2.82295e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.60451e-03\tAbsError: 8.50982e-01\n", + " Region: \"zone_3\"\tRelError: 1.29210e+00\tAbsError: 2.15304e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.18293e-02\tAbsError: 1.07515e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13689e-01\tAbsError: 1.07789e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08398e+00\tAbsError: 4.83655e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.60469e-03\tAbsError: 8.51058e-01\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.19807e+01\tAbsError: 3.13334e+18\n", + " Region: \"zone_1\"\tRelError: 3.37774e+00\tAbsError: 5.05881e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.36160e+00\tAbsError: 5.88148e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61389e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.86030e+01\tAbsError: 3.13334e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.33436e-01\tAbsError: 1.56961e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.84921e-01\tAbsError: 1.56373e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 1.71686e+01\tAbsError: 5.90590e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60403e-02\tAbsError: 5.00000e+00\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 5.24316e-01\tAbsError: 5.14433e+14\n", + " Region: \"zone_1\"\tRelError: 1.58144e-01\tAbsError: 7.33837e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57912e-01\tAbsError: 2.51643e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.32201e-04\tAbsError: 7.33585e-02\n", + " Region: \"zone_3\"\tRelError: 3.66172e-01\tAbsError: 5.14433e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.95740e-03\tAbsError: 2.56569e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.04007e-02\tAbsError: 2.57863e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.46582e-01\tAbsError: 3.95947e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.32221e-04\tAbsError: 7.33662e-02\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 3.71512e+00\tAbsError: 1.24582e+15\n", + " Region: \"zone_1\"\tRelError: 2.03807e+00\tAbsError: 8.67042e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03780e+00\tAbsError: 3.00585e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.70515e-04\tAbsError: 8.66741e-02\n", + " Region: \"zone_3\"\tRelError: 1.67705e+00\tAbsError: 1.24582e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.91541e-03\tAbsError: 6.21515e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.19691e-02\tAbsError: 6.24301e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65489e+00\tAbsError: 4.56449e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.70536e-04\tAbsError: 8.66829e-02\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 1.01409e-02\tAbsError: 1.18684e+12\n", + " Region: \"zone_1\"\tRelError: 6.74907e-03\tAbsError: 2.85434e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.74816e-03\tAbsError: 9.66232e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.12111e-07\tAbsError: 2.85337e-04\n", + " Region: \"zone_3\"\tRelError: 3.39181e-03\tAbsError: 1.18684e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.64231e-05\tAbsError: 5.89532e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.13033e-05\tAbsError: 5.97308e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.31317e-03\tAbsError: 1.56059e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.12190e-07\tAbsError: 2.85367e-04\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.52413e+00\tAbsError: 1.46687e+16\n", + " Region: \"zone_1\"\tRelError: 8.45534e-01\tAbsError: 6.18031e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 8.43640e-01\tAbsError: 2.06232e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89449e-03\tAbsError: 6.17825e-01\n", + " Region: \"zone_3\"\tRelError: 1.67859e+00\tAbsError: 1.46687e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.59042e-02\tAbsError: 7.32478e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.35017e-02\tAbsError: 7.34387e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.52729e+00\tAbsError: 3.32135e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.89463e-03\tAbsError: 6.17883e-01\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 3.78629e-01\tAbsError: 4.17420e+14\n", + " Region: \"zone_1\"\tRelError: 1.45410e-01\tAbsError: 5.92606e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45222e-01\tAbsError: 2.02069e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87548e-04\tAbsError: 5.92404e-02\n", + " Region: \"zone_3\"\tRelError: 2.33220e-01\tAbsError: 4.17420e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.26315e-03\tAbsError: 2.08189e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.43622e-03\tAbsError: 2.09231e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17333e-01\tAbsError: 3.19766e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87564e-04\tAbsError: 5.92465e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.03434e+02\tAbsError: 9.47669e+17\n", + " Region: \"zone_1\"\tRelError: 2.65704e+00\tAbsError: 5.05224e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64107e+00\tAbsError: 5.22445e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59726e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.00777e+02\tAbsError: 9.47669e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.64836e-01\tAbsError: 4.74449e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.23923e-01\tAbsError: 4.73220e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 9.94722e+01\tAbsError: 5.27355e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57870e-02\tAbsError: 5.00000e+00\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 1.26047e+00\tAbsError: 9.62922e+14\n", + " Region: \"zone_1\"\tRelError: 6.80720e-01\tAbsError: 6.70628e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.80510e-01\tAbsError: 2.33583e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.09277e-04\tAbsError: 6.70394e-02\n", + " Region: \"zone_3\"\tRelError: 5.79746e-01\tAbsError: 9.62922e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69446e-03\tAbsError: 4.80386e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.29278e-03\tAbsError: 4.82536e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 5.62549e-01\tAbsError: 3.52980e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.09294e-04\tAbsError: 6.70462e-02\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 8.40793e-03\tAbsError: 9.81234e+11\n", + " Region: \"zone_1\"\tRelError: 5.61118e-03\tAbsError: 2.35986e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.61043e-03\tAbsError: 7.98845e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.54100e-07\tAbsError: 2.35907e-04\n", + " Region: \"zone_3\"\tRelError: 2.79674e-03\tAbsError: 9.81234e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.01128e-05\tAbsError: 4.87403e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.41474e-05\tAbsError: 4.93831e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73173e-03\tAbsError: 1.29024e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.54166e-07\tAbsError: 2.35932e-04\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 3.27129e+00\tAbsError: 1.03152e+16\n", + " Region: \"zone_1\"\tRelError: 2.35804e+00\tAbsError: 4.53504e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.35665e+00\tAbsError: 1.55365e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38821e-03\tAbsError: 4.53349e-01\n", + " Region: \"zone_3\"\tRelError: 9.13252e-01\tAbsError: 1.03152e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.72770e-02\tAbsError: 5.15074e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.04316e-02\tAbsError: 5.16447e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.04155e-01\tAbsError: 2.33744e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38832e-03\tAbsError: 4.53392e-01\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 3.30955e-01\tAbsError: 3.34547e+14\n", + " Region: \"zone_1\"\tRelError: 1.05053e-01\tAbsError: 4.76526e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04902e-01\tAbsError: 1.63064e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50788e-04\tAbsError: 4.76363e-02\n", + " Region: \"zone_3\"\tRelError: 2.25902e-01\tAbsError: 3.34547e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.82224e-03\tAbsError: 1.66854e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.75896e-03\tAbsError: 1.67693e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13170e-01\tAbsError: 2.57114e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50801e-04\tAbsError: 4.76412e-02\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 7.30790e+01\tAbsError: 2.62302e+17\n", + " Region: \"zone_1\"\tRelError: 1.79877e+01\tAbsError: 5.04361e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.79720e+01\tAbsError: 4.36137e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56343e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 5.50913e+01\tAbsError: 2.62302e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.69067e-01\tAbsError: 1.31544e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.50746e-01\tAbsError: 1.30758e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 5.41559e+01\tAbsError: 4.40423e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55417e-02\tAbsError: 5.00000e+00\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 1.68729e+00\tAbsError: 7.47019e+14\n", + " Region: \"zone_1\"\tRelError: 9.02787e-01\tAbsError: 5.20299e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.02625e-01\tAbsError: 1.80790e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62339e-04\tAbsError: 5.20119e-02\n", + " Region: \"zone_3\"\tRelError: 7.84506e-01\tAbsError: 7.47019e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.95618e-03\tAbsError: 3.72675e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.18841e-03\tAbsError: 3.74344e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.71199e-01\tAbsError: 2.73870e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62352e-04\tAbsError: 5.20171e-02\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 6.93507e-03\tAbsError: 8.11251e+11\n", + " Region: \"zone_1\"\tRelError: 4.61771e-03\tAbsError: 1.95105e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.61709e-03\tAbsError: 6.60457e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.23464e-07\tAbsError: 1.95039e-04\n", + " Region: \"zone_3\"\tRelError: 2.31736e-03\tAbsError: 8.11251e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.48965e-05\tAbsError: 4.02968e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.82323e-05\tAbsError: 4.08283e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.26361e-03\tAbsError: 1.06672e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.23518e-07\tAbsError: 1.95060e-04\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 1.58279e+00\tAbsError: 7.46993e+15\n", + " Region: \"zone_1\"\tRelError: 6.46543e-01\tAbsError: 3.33004e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 6.45523e-01\tAbsError: 1.15704e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02039e-03\tAbsError: 3.32889e-01\n", + " Region: \"zone_3\"\tRelError: 9.36249e-01\tAbsError: 7.46993e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.48882e-02\tAbsError: 3.72996e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.47251e-02\tAbsError: 3.73997e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.55615e-01\tAbsError: 1.70076e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02046e-03\tAbsError: 3.32921e-01\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 2.48952e-01\tAbsError: 2.70068e+14\n", + " Region: \"zone_1\"\tRelError: 9.23199e-02\tAbsError: 3.84139e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 9.21983e-02\tAbsError: 1.31216e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21569e-04\tAbsError: 3.84008e-02\n", + " Region: \"zone_3\"\tRelError: 1.56632e-01\tAbsError: 2.70068e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.70551e-03\tAbsError: 1.34696e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.46436e-03\tAbsError: 1.35372e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46341e-01\tAbsError: 2.07260e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21579e-04\tAbsError: 3.84048e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 7.59361e+01\tAbsError: 2.06521e+17\n", + " Region: \"zone_1\"\tRelError: 2.06905e+00\tAbsError: 5.03502e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.05367e+00\tAbsError: 3.50161e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53761e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 7.38671e+01\tAbsError: 2.06521e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.88833e-01\tAbsError: 1.03368e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.75645e-01\tAbsError: 1.03153e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 7.28873e+01\tAbsError: 3.55173e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53038e-02\tAbsError: 5.00000e+00\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 7.96679e-01\tAbsError: 5.78340e+14\n", + " Region: \"zone_1\"\tRelError: 4.12002e-01\tAbsError: 4.02932e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.11876e-01\tAbsError: 1.40269e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.25735e-04\tAbsError: 4.02792e-02\n", + " Region: \"zone_3\"\tRelError: 3.84677e-01\tAbsError: 5.78340e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.62143e-03\tAbsError: 2.88524e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.57955e-03\tAbsError: 2.89815e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74351e-01\tAbsError: 2.12069e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.25745e-04\tAbsError: 4.02832e-02\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 5.74480e-03\tAbsError: 6.70712e+11\n", + " Region: \"zone_1\"\tRelError: 3.83239e-03\tAbsError: 1.61306e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.83187e-03\tAbsError: 5.46042e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.15457e-07\tAbsError: 1.61251e-04\n", + " Region: \"zone_3\"\tRelError: 1.91241e-03\tAbsError: 6.70712e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05833e-05\tAbsError: 3.33159e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.33411e-05\tAbsError: 3.37553e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.86797e-03\tAbsError: 8.81929e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.15502e-07\tAbsError: 1.61268e-04\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 1.42658e+00\tAbsError: 5.44072e+15\n", + " Region: \"zone_1\"\tRelError: 9.54406e-01\tAbsError: 2.44911e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.53656e-01\tAbsError: 8.56569e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.49888e-04\tAbsError: 2.44825e-01\n", + " Region: \"zone_3\"\tRelError: 4.72174e-01\tAbsError: 5.44072e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.54684e-02\tAbsError: 2.71669e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.26418e-02\tAbsError: 2.72402e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.13314e-01\tAbsError: 1.24204e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.49945e-04\tAbsError: 2.44849e-01\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 2.11329e-01\tAbsError: 2.17176e+14\n", + " Region: \"zone_1\"\tRelError: 6.92630e-02\tAbsError: 3.09234e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.91651e-02\tAbsError: 1.05747e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.78540e-05\tAbsError: 3.09128e-02\n", + " Region: \"zone_3\"\tRelError: 1.42066e-01\tAbsError: 2.17176e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.78028e-03\tAbsError: 1.08316e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.38847e-03\tAbsError: 1.08860e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33799e-01\tAbsError: 1.66841e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.78622e-05\tAbsError: 3.09160e-02\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 8.84959e-01\tAbsError: 4.48407e+14\n", + " Region: \"zone_1\"\tRelError: 4.68587e-01\tAbsError: 3.12414e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.68489e-01\tAbsError: 1.08648e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.74795e-05\tAbsError: 3.12305e-02\n", + " Region: \"zone_3\"\tRelError: 4.16372e-01\tAbsError: 4.48407e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.57818e-03\tAbsError: 2.23703e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.31843e-03\tAbsError: 2.24704e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.08378e-01\tAbsError: 1.64431e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.74872e-05\tAbsError: 3.12337e-02\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 4.16988e+01\tAbsError: 1.59557e+17\n", + " Region: \"zone_1\"\tRelError: 1.82717e+01\tAbsError: 5.02588e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82562e+01\tAbsError: 2.58785e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.55239e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 2.34270e+01\tAbsError: 1.59557e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.38911e-01\tAbsError: 7.99530e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.56916e-01\tAbsError: 7.96037e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.24216e+01\tAbsError: 2.58619e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.54613e-03\tAbsError: 3.16439e+00\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 4.74198e-03\tAbsError: 5.54522e+11\n", + " Region: \"zone_1\"\tRelError: 3.15848e-03\tAbsError: 1.33362e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.15805e-03\tAbsError: 4.51448e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.26162e-07\tAbsError: 1.33317e-04\n", + " Region: \"zone_3\"\tRelError: 1.58350e-03\tAbsError: 5.54522e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.70177e-05\tAbsError: 2.75444e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.92978e-05\tAbsError: 2.79077e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54676e-03\tAbsError: 7.29147e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.26199e-07\tAbsError: 1.33331e-04\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 8.85008e-01\tAbsError: 3.98846e+15\n", + " Region: \"zone_1\"\tRelError: 4.16516e-01\tAbsError: 1.80196e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.15964e-01\tAbsError: 6.33366e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.52042e-04\tAbsError: 1.80132e-01\n", + " Region: \"zone_3\"\tRelError: 4.68493e-01\tAbsError: 3.98846e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88127e-02\tAbsError: 1.99154e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.41315e-02\tAbsError: 1.99692e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 4.24996e-01\tAbsError: 9.11676e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.52083e-04\tAbsError: 1.80150e-01\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 1.62978e-01\tAbsError: 1.75030e+14\n", + " Region: \"zone_1\"\tRelError: 5.90582e-02\tAbsError: 2.49134e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.89793e-02\tAbsError: 8.51509e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.88421e-05\tAbsError: 2.49048e-02\n", + " Region: \"zone_3\"\tRelError: 1.03920e-01\tAbsError: 1.75030e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.05058e-03\tAbsError: 8.72961e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.54222e-03\tAbsError: 8.77344e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.72480e-02\tAbsError: 1.34411e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.88487e-05\tAbsError: 2.49074e-02\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 5.13237e-01\tAbsError: 3.47375e+14\n", + " Region: \"zone_1\"\tRelError: 2.66540e-01\tAbsError: 2.42052e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66465e-01\tAbsError: 8.42440e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.55309e-05\tAbsError: 2.41968e-02\n", + " Region: \"zone_3\"\tRelError: 2.46697e-01\tAbsError: 3.47375e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.77546e-03\tAbsError: 1.73300e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.35042e-03\tAbsError: 1.74075e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.40496e-01\tAbsError: 1.27391e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.55369e-05\tAbsError: 2.41993e-02\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 3.92570e-03\tAbsError: 4.58458e+11\n", + " Region: \"zone_1\"\tRelError: 2.61815e-03\tAbsError: 1.10259e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.61780e-03\tAbsError: 3.73241e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52335e-07\tAbsError: 1.10222e-04\n", + " Region: \"zone_3\"\tRelError: 1.30755e-03\tAbsError: 4.58458e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.40695e-05\tAbsError: 2.27727e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.59546e-05\tAbsError: 2.30731e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27717e-03\tAbsError: 6.02833e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52366e-07\tAbsError: 1.10233e-04\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 4.72347e+01\tAbsError: 2.15904e+17\n", + " Region: \"zone_1\"\tRelError: 4.01161e+01\tAbsError: 5.02049e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.01009e+01\tAbsError: 2.04903e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52581e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 7.11855e+00\tAbsError: 2.15904e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.62957e-01\tAbsError: 1.08656e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.29641e-01\tAbsError: 1.07248e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 6.21091e+00\tAbsError: 2.11987e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50430e-02\tAbsError: 5.00000e+00\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 7.18046e-01\tAbsError: 2.92911e+15\n", + " Region: \"zone_1\"\tRelError: 4.45975e-01\tAbsError: 1.32682e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 4.45568e-01\tAbsError: 4.66901e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.06316e-04\tAbsError: 1.32636e-01\n", + " Region: \"zone_3\"\tRelError: 2.72071e-01\tAbsError: 2.92911e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.38085e-02\tAbsError: 1.46258e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.76964e-02\tAbsError: 1.46654e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.40160e-01\tAbsError: 6.70356e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.06346e-04\tAbsError: 1.32648e-01\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 1.35800e-01\tAbsError: 1.40909e+14\n", + " Region: \"zone_1\"\tRelError: 4.54199e-02\tAbsError: 2.00627e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.53564e-02\tAbsError: 6.85936e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.34874e-05\tAbsError: 2.00558e-02\n", + " Region: \"zone_3\"\tRelError: 9.03796e-02\tAbsError: 1.40909e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.45340e-03\tAbsError: 7.02780e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.84820e-03\tAbsError: 7.06310e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 8.50145e-02\tAbsError: 1.08240e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.34927e-05\tAbsError: 2.00579e-02\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 4.94052e-01\tAbsError: 2.69271e+14\n", + " Region: \"zone_1\"\tRelError: 2.60235e-01\tAbsError: 1.87630e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.60177e-01\tAbsError: 6.52734e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.85452e-05\tAbsError: 1.87564e-02\n", + " Region: \"zone_3\"\tRelError: 2.33817e-01\tAbsError: 2.69271e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.14957e-03\tAbsError: 1.34335e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.59435e-03\tAbsError: 1.34936e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.29014e-01\tAbsError: 9.87499e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.85499e-05\tAbsError: 1.87583e-02\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 3.24207e-03\tAbsError: 3.79037e+11\n", + " Region: \"zone_1\"\tRelError: 2.15992e-03\tAbsError: 9.11581e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.15963e-03\tAbsError: 3.08583e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.91298e-07\tAbsError: 9.11273e-05\n", + " Region: \"zone_3\"\tRelError: 1.08215e-03\tAbsError: 3.79037e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.16323e-05\tAbsError: 1.88277e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.31908e-05\tAbsError: 1.90760e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.05704e-03\tAbsError: 4.98401e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.91323e-07\tAbsError: 9.11369e-05\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 4.88553e-01\tAbsError: 2.15450e+15\n", + " Region: \"zone_1\"\tRelError: 2.48270e-01\tAbsError: 9.76780e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.47971e-01\tAbsError: 3.44461e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.99211e-04\tAbsError: 9.76435e-02\n", + " Region: \"zone_3\"\tRelError: 2.40283e-01\tAbsError: 2.15450e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01890e-02\tAbsError: 1.07579e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.30634e-02\tAbsError: 1.07871e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16731e-01\tAbsError: 4.93175e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.99233e-04\tAbsError: 9.76531e-02\n", "Iteration: 8\n", - " Device: \"device\"\tRelError: 1.15955e-04\tAbsError: 3.29274e+13\n", - " Region: \"zone_1\"\tRelError: 4.09483e-05\tAbsError: 2.57424e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 4.02187e-05\tAbsError: 4.28366e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.29581e-07\tAbsError: 2.56996e-04\n", - " Region: \"zone_3\"\tRelError: 7.50067e-05\tAbsError: 3.29274e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.50866e-06\tAbsError: 1.64259e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.70008e-05\tAbsError: 1.65016e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 4.17673e-05\tAbsError: 4.31616e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.29977e-07\tAbsError: 2.57139e-04\n", + " Device: \"device\"\tRelError: 8.46300e+00\tAbsError: 1.97420e+17\n", + " Region: \"zone_1\"\tRelError: 1.70815e+00\tAbsError: 3.94064e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69631e+00\tAbsError: 1.80353e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18410e-02\tAbsError: 3.93884e+00\n", + " Region: \"zone_3\"\tRelError: 6.75485e+00\tAbsError: 1.97420e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.28726e-01\tAbsError: 9.86354e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.34375e-01\tAbsError: 9.87843e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 5.47990e+00\tAbsError: 3.10920e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.18420e-02\tAbsError: 3.93930e+00\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 1.06375e-01\tAbsError: 1.13507e+14\n", + " Region: \"zone_1\"\tRelError: 3.79663e-02\tAbsError: 1.61603e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.79152e-02\tAbsError: 5.52451e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.11412e-05\tAbsError: 1.61548e-02\n", + " Region: \"zone_3\"\tRelError: 6.84085e-02\tAbsError: 1.13507e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.97829e-03\tAbsError: 5.66113e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.29701e-03\tAbsError: 5.68956e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.40820e-02\tAbsError: 8.71850e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.11455e-05\tAbsError: 1.61565e-02\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 3.22369e-01\tAbsError: 2.08653e+14\n", + " Region: \"zone_1\"\tRelError: 1.67881e-01\tAbsError: 1.45398e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.67836e-01\tAbsError: 5.05991e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.53699e-05\tAbsError: 1.45347e-02\n", + " Region: \"zone_3\"\tRelError: 1.54488e-01\tAbsError: 2.08653e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.66688e-03\tAbsError: 1.04094e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.01206e-03\tAbsError: 1.04559e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50764e-01\tAbsError: 7.65212e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.53735e-05\tAbsError: 1.45362e-02\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 2.68286e-03\tAbsError: 3.13374e+11\n", + " Region: \"zone_1\"\tRelError: 1.78894e-03\tAbsError: 7.53663e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78870e-03\tAbsError: 2.55125e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.40835e-07\tAbsError: 7.53408e-05\n", + " Region: \"zone_3\"\tRelError: 8.93922e-04\tAbsError: 3.13374e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.61709e-06\tAbsError: 1.55661e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.09056e-05\tAbsError: 1.57714e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.73158e-04\tAbsError: 4.12060e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.40856e-07\tAbsError: 7.53488e-05\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 3.79185e-01\tAbsError: 1.58572e+15\n", + " Region: \"zone_1\"\tRelError: 2.23980e-01\tAbsError: 7.19498e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23759e-01\tAbsError: 2.53690e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20351e-04\tAbsError: 7.19244e-02\n", + " Region: \"zone_3\"\tRelError: 1.55205e-01\tAbsError: 1.58572e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.49335e-03\tAbsError: 7.91787e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.60168e-03\tAbsError: 7.93933e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.37890e-01\tAbsError: 3.63180e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.20367e-04\tAbsError: 7.19314e-02\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 8.75826e-02\tAbsError: 9.14121e+13\n", + " Region: \"zone_1\"\tRelError: 2.96749e-02\tAbsError: 1.30154e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96338e-02\tAbsError: 4.44970e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.11871e-05\tAbsError: 1.30110e-02\n", + " Region: \"zone_3\"\tRelError: 5.79077e-02\tAbsError: 9.14121e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.59195e-03\tAbsError: 4.55916e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.84817e-03\tAbsError: 4.58206e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.44264e-02\tAbsError: 7.02183e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.11906e-05\tAbsError: 1.30123e-02\n", "Iteration: 9\n", - " Device: \"device\"\tRelError: 1.48312e-05\tAbsError: 3.74352e+12\n", - " Region: \"zone_1\"\tRelError: 5.08968e-06\tAbsError: 7.35732e-05\n", - " Equation: \"PotentialEquation\"\tRelError: 4.88096e-06\tAbsError: 5.18501e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.08719e-07\tAbsError: 7.35214e-05\n", - " Region: \"zone_3\"\tRelError: 9.74149e-06\tAbsError: 3.74352e+12\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 6.01215e-07\tAbsError: 1.86497e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.86664e-06\tAbsError: 1.87855e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.06480e-06\tAbsError: 5.22650e-08\n", - " Equation: \"TemperatureEquation\"\tRelError: 2.08829e-07\tAbsError: 7.35626e-05\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:42:59\u001b[0m.\u001b[1;36m266\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 1.3\u001b[0m \n", + " Device: \"device\"\tRelError: 1.40803e+01\tAbsError: 1.42237e+17\n", + " Region: \"zone_1\"\tRelError: 3.36413e+00\tAbsError: 2.29407e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35729e+00\tAbsError: 1.73198e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.84407e-03\tAbsError: 2.29234e+00\n", + " Region: \"zone_3\"\tRelError: 1.07161e+01\tAbsError: 1.42237e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.45501e-01\tAbsError: 7.10658e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.58132e-01\tAbsError: 7.11716e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01056e+01\tAbsError: 2.73534e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.84448e-03\tAbsError: 2.29252e+00\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 2.84708e-01\tAbsError: 1.61724e+14\n", + " Region: \"zone_1\"\tRelError: 1.49539e-01\tAbsError: 1.12695e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.49503e-01\tAbsError: 3.92102e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.51642e-05\tAbsError: 1.12656e-02\n", + " Region: \"zone_3\"\tRelError: 1.35170e-01\tAbsError: 1.61724e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.29129e-03\tAbsError: 8.06816e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.55852e-03\tAbsError: 8.10425e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32285e-01\tAbsError: 5.93108e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.51670e-05\tAbsError: 1.12668e-02\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 2.21643e-03\tAbsError: 2.59087e+11\n", + " Region: \"zone_1\"\tRelError: 1.47685e-03\tAbsError: 6.23101e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47665e-03\tAbsError: 2.10928e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99114e-07\tAbsError: 6.22890e-05\n", + " Region: \"zone_3\"\tRelError: 7.39584e-04\tAbsError: 2.59087e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.95110e-06\tAbsError: 1.28695e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.01643e-06\tAbsError: 1.30392e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.22417e-04\tAbsError: 3.40676e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99131e-07\tAbsError: 6.22957e-05\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 2.68019e-01\tAbsError: 1.16750e+15\n", + " Region: \"zone_1\"\tRelError: 1.41877e-01\tAbsError: 5.29810e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.41715e-01\tAbsError: 1.87003e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62284e-04\tAbsError: 5.29623e-02\n", + " Region: \"zone_3\"\tRelError: 1.26143e-01\tAbsError: 1.16750e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.52475e-03\tAbsError: 5.82959e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.08105e-03\tAbsError: 5.84541e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13374e-01\tAbsError: 2.67378e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62296e-04\tAbsError: 5.29675e-02\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 6.92881e-02\tAbsError: 7.36253e+13\n", + " Region: \"zone_1\"\tRelError: 2.44851e-02\tAbsError: 1.04832e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.44519e-02\tAbsError: 3.58397e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.31749e-05\tAbsError: 1.04796e-02\n", + " Region: \"zone_3\"\tRelError: 4.48031e-02\tAbsError: 7.36253e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.28310e-03\tAbsError: 3.67204e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.48977e-03\tAbsError: 3.69049e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.19970e-02\tAbsError: 5.65562e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.31777e-05\tAbsError: 1.04807e-02\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 1.05764e+01\tAbsError: 7.78855e+16\n", + " Region: \"zone_1\"\tRelError: 2.79638e+00\tAbsError: 1.36876e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.79228e+00\tAbsError: 9.88655e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.10039e-03\tAbsError: 1.36777e+00\n", + " Region: \"zone_3\"\tRelError: 7.78006e+00\tAbsError: 7.78855e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.05049e-01\tAbsError: 3.88864e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.69154e-01\tAbsError: 3.89991e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.50176e+00\tAbsError: 1.62100e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.10060e-03\tAbsError: 1.36785e+00\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 1.99109e-01\tAbsError: 1.25329e+14\n", + " Region: \"zone_1\"\tRelError: 1.03874e-01\tAbsError: 8.73361e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03847e-01\tAbsError: 3.03919e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.72521e-05\tAbsError: 8.73058e-03\n", + " Region: \"zone_3\"\tRelError: 9.52353e-02\tAbsError: 1.25329e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00113e-03\tAbsError: 6.25248e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.20841e-03\tAbsError: 6.28045e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.29985e-02\tAbsError: 4.59638e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.72543e-05\tAbsError: 8.73146e-03\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 1.83360e-03\tAbsError: 2.14203e+11\n", + " Region: \"zone_1\"\tRelError: 1.22250e-03\tAbsError: 5.15158e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.22233e-03\tAbsError: 1.74388e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64620e-07\tAbsError: 5.14984e-05\n", + " Region: \"zone_3\"\tRelError: 6.11105e-04\tAbsError: 2.14203e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.57366e-06\tAbsError: 1.06400e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.45443e-06\tAbsError: 1.07803e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.96913e-04\tAbsError: 2.81659e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64634e-07\tAbsError: 5.15038e-05\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 2.03140e-01\tAbsError: 8.59790e+14\n", + " Region: \"zone_1\"\tRelError: 1.16664e-01\tAbsError: 3.90287e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16544e-01\tAbsError: 1.37708e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19533e-04\tAbsError: 3.90149e-02\n", + " Region: \"zone_3\"\tRelError: 8.64760e-02\tAbsError: 8.59790e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.06639e-03\tAbsError: 4.29313e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.21022e-03\tAbsError: 4.30477e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.70799e-02\tAbsError: 1.96960e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19542e-04\tAbsError: 3.90187e-02\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 5.66085e-02\tAbsError: 5.93000e+13\n", + " Region: \"zone_1\"\tRelError: 1.93404e-02\tAbsError: 8.44340e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.93137e-02\tAbsError: 2.88659e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.67192e-05\tAbsError: 8.44052e-03\n", + " Region: \"zone_3\"\tRelError: 3.72682e-02\tAbsError: 5.93000e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03287e-03\tAbsError: 2.95757e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.19913e-03\tAbsError: 2.97243e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.50094e-02\tAbsError: 4.55517e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.67214e-05\tAbsError: 8.44140e-03\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 7.30902e-01\tAbsError: 2.66915e+16\n", + " Region: \"zone_1\"\tRelError: 2.50008e-01\tAbsError: 7.59961e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.47735e-01\tAbsError: 2.37450e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27237e-03\tAbsError: 7.59723e-01\n", + " Region: \"zone_3\"\tRelError: 4.80895e-01\tAbsError: 2.66915e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.30561e-02\tAbsError: 1.33178e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.03515e-01\tAbsError: 1.33737e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 3.12051e-01\tAbsError: 3.48853e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.27249e-03\tAbsError: 7.59769e-01\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 1.66944e-01\tAbsError: 9.71371e+13\n", + " Region: \"zone_1\"\tRelError: 8.75425e-02\tAbsError: 6.76900e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.75214e-02\tAbsError: 2.35528e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.11213e-05\tAbsError: 6.76664e-03\n", + " Region: \"zone_3\"\tRelError: 7.94016e-02\tAbsError: 9.71371e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.75681e-04\tAbsError: 4.84602e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.36221e-04\tAbsError: 4.86769e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.76686e-02\tAbsError: 3.56245e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.11230e-05\tAbsError: 6.76733e-03\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 1.51518e-03\tAbsError: 1.77096e+11\n", + " Region: \"zone_1\"\tRelError: 1.00970e-03\tAbsError: 4.25914e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00956e-03\tAbsError: 1.44178e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36102e-07\tAbsError: 4.25770e-05\n", + " Region: \"zone_3\"\tRelError: 5.05484e-04\tAbsError: 1.77096e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.43489e-06\tAbsError: 8.79678e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.16308e-06\tAbsError: 8.91281e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.93750e-04\tAbsError: 2.32866e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.36114e-07\tAbsError: 4.25815e-05\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 1.46389e-01\tAbsError: 6.33210e+14\n", + " Region: \"zone_1\"\tRelError: 7.92022e-02\tAbsError: 2.87429e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.91142e-02\tAbsError: 1.01471e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.80383e-05\tAbsError: 2.87327e-02\n", + " Region: \"zone_3\"\tRelError: 6.71872e-02\tAbsError: 6.33210e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.99673e-03\tAbsError: 3.16176e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.84030e-03\tAbsError: 3.17034e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.02621e-02\tAbsError: 1.45042e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.80450e-05\tAbsError: 2.87355e-02\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 4.50691e-02\tAbsError: 4.77602e+13\n", + " Region: \"zone_1\"\tRelError: 1.58235e-02\tAbsError: 6.80056e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.58020e-02\tAbsError: 2.32500e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.15208e-05\tAbsError: 6.79823e-03\n", + " Region: \"zone_3\"\tRelError: 2.92456e-02\tAbsError: 4.77602e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.32271e-04\tAbsError: 2.38203e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.66312e-04\tAbsError: 2.39399e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74255e-02\tAbsError: 3.66884e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.15226e-05\tAbsError: 6.79894e-03\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 7.30451e-01\tAbsError: 1.70655e+16\n", + " Region: \"zone_1\"\tRelError: 2.53232e-01\tAbsError: 5.66376e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51536e-01\tAbsError: 1.60267e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69646e-03\tAbsError: 5.66216e-01\n", + " Region: \"zone_3\"\tRelError: 4.77218e-01\tAbsError: 1.70655e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.90611e-02\tAbsError: 8.51338e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.33520e-02\tAbsError: 8.55216e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53109e-01\tAbsError: 2.56842e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.69657e-03\tAbsError: 5.66266e-01\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 1.25323e-03\tAbsError: 1.46416e+11\n", + " Region: \"zone_1\"\tRelError: 8.35477e-04\tAbsError: 3.52131e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.35365e-04\tAbsError: 1.19201e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12524e-07\tAbsError: 3.52011e-05\n", + " Region: \"zone_3\"\tRelError: 4.17749e-04\tAbsError: 1.46416e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.49336e-06\tAbsError: 7.27286e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.09540e-06\tAbsError: 7.36879e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.08048e-04\tAbsError: 1.92525e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12534e-07\tAbsError: 3.52049e-05\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 1.21665e-01\tAbsError: 7.52803e+13\n", + " Region: \"zone_1\"\tRelError: 6.35418e-02\tAbsError: 5.24597e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.35254e-02\tAbsError: 1.82549e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63693e-05\tAbsError: 5.24414e-03\n", + " Region: \"zone_3\"\tRelError: 5.81234e-02\tAbsError: 7.52803e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.01300e-04\tAbsError: 3.75562e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.25786e-04\tAbsError: 3.77241e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.67800e-02\tAbsError: 2.76088e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.63706e-05\tAbsError: 5.24467e-03\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 1.09521e-01\tAbsError: 4.66391e+14\n", + " Region: \"zone_1\"\tRelError: 6.19308e-02\tAbsError: 2.11732e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 6.18659e-02\tAbsError: 7.47274e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.48486e-05\tAbsError: 2.11657e-02\n", + " Region: \"zone_3\"\tRelError: 4.75906e-02\tAbsError: 4.66391e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.20650e-03\tAbsError: 2.32880e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.82715e-03\tAbsError: 2.33511e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.24921e-02\tAbsError: 1.06845e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.48535e-05\tAbsError: 2.11678e-02\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 3.66376e-02\tAbsError: 3.84684e+13\n", + " Region: \"zone_1\"\tRelError: 1.25845e-02\tAbsError: 5.47738e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25672e-02\tAbsError: 1.87259e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73333e-05\tAbsError: 5.47551e-03\n", + " Region: \"zone_3\"\tRelError: 2.40530e-02\tAbsError: 3.84684e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.70098e-04\tAbsError: 1.91860e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.77974e-04\tAbsError: 1.92824e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.25876e-02\tAbsError: 2.95501e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.73347e-05\tAbsError: 5.47608e-03\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 5.36319e-01\tAbsError: 1.14139e+16\n", + " Region: \"zone_1\"\tRelError: 1.97635e-01\tAbsError: 3.60242e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96557e-01\tAbsError: 1.28812e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07778e-03\tAbsError: 3.60113e-01\n", + " Region: \"zone_3\"\tRelError: 3.38685e-01\tAbsError: 1.14139e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.14485e-02\tAbsError: 5.69679e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.65963e-02\tAbsError: 5.71709e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.59562e-01\tAbsError: 1.62972e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.07786e-03\tAbsError: 3.60146e-01\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 1.03576e-03\tAbsError: 1.21052e+11\n", + " Region: \"zone_1\"\tRelError: 6.90266e-04\tAbsError: 2.91129e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.90173e-04\tAbsError: 9.85511e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.30311e-08\tAbsError: 2.91030e-05\n", + " Region: \"zone_3\"\tRelError: 3.45494e-04\tAbsError: 1.21052e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.71495e-06\tAbsError: 6.01294e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.21270e-06\tAbsError: 6.09225e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 3.37473e-04\tAbsError: 1.59173e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.30391e-08\tAbsError: 2.91061e-05\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 9.88641e-02\tAbsError: 5.83452e+13\n", + " Region: \"zone_1\"\tRelError: 5.17936e-02\tAbsError: 4.06581e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.17809e-02\tAbsError: 1.41474e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26866e-05\tAbsError: 4.06440e-03\n", + " Region: \"zone_3\"\tRelError: 4.70705e-02\tAbsError: 5.83452e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.65941e-04\tAbsError: 2.91075e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.62380e-04\tAbsError: 2.92377e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.60295e-02\tAbsError: 2.13979e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26876e-05\tAbsError: 4.06481e-03\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 7.97298e-02\tAbsError: 3.43514e+14\n", + " Region: \"zone_1\"\tRelError: 4.36464e-02\tAbsError: 1.55943e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.35986e-02\tAbsError: 5.50535e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.77638e-05\tAbsError: 1.55887e-02\n", + " Region: \"zone_3\"\tRelError: 3.60834e-02\tAbsError: 3.43514e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.62569e-03\tAbsError: 1.71525e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.08317e-03\tAbsError: 1.71990e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.23268e-02\tAbsError: 7.86902e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.77674e-05\tAbsError: 1.55903e-02\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 2.92886e-02\tAbsError: 3.09825e+13\n", + " Region: \"zone_1\"\tRelError: 1.02397e-02\tAbsError: 4.41162e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.02257e-02\tAbsError: 1.50827e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39608e-05\tAbsError: 4.41011e-03\n", + " Region: \"zone_3\"\tRelError: 1.90489e-02\tAbsError: 3.09825e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.39869e-04\tAbsError: 1.54525e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.26810e-04\tAbsError: 1.55301e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78683e-02\tAbsError: 2.38003e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.39620e-05\tAbsError: 4.41057e-03\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 4.03274e-01\tAbsError: 7.87115e+15\n", + " Region: \"zone_1\"\tRelError: 1.45690e-01\tAbsError: 2.59014e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44915e-01\tAbsError: 8.59703e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.75546e-04\tAbsError: 2.58928e-01\n", + " Region: \"zone_3\"\tRelError: 2.57584e-01\tAbsError: 7.87115e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.31692e-02\tAbsError: 3.92695e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.32102e-02\tAbsError: 3.94421e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 2.00429e-01\tAbsError: 1.19918e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.75601e-04\tAbsError: 2.58952e-01\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 8.56577e-04\tAbsError: 1.00081e+11\n", + " Region: \"zone_1\"\tRelError: 5.71013e-04\tAbsError: 2.40695e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.70936e-04\tAbsError: 8.14785e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.69147e-08\tAbsError: 2.40614e-05\n", + " Region: \"zone_3\"\tRelError: 2.85564e-04\tAbsError: 1.00081e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.07139e-06\tAbsError: 4.97129e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.48290e-06\tAbsError: 5.03685e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78933e-04\tAbsError: 1.31598e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.69214e-08\tAbsError: 2.40639e-05\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 7.38468e-02\tAbsError: 4.52178e+13\n", + " Region: \"zone_1\"\tRelError: 3.85939e-02\tAbsError: 3.15104e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.85840e-02\tAbsError: 1.09648e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.83236e-06\tAbsError: 3.14995e-03\n", + " Region: \"zone_3\"\tRelError: 3.52530e-02\tAbsError: 4.52178e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.61162e-04\tAbsError: 2.25585e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.35928e-04\tAbsError: 2.26594e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.44460e-02\tAbsError: 1.65835e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.83314e-06\tAbsError: 3.15027e-03\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 5.92277e-02\tAbsError: 2.53025e+14\n", + " Region: \"zone_1\"\tRelError: 3.32086e-02\tAbsError: 1.14871e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.31734e-02\tAbsError: 4.05463e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.51826e-05\tAbsError: 1.14830e-02\n", + " Region: \"zone_3\"\tRelError: 2.60191e-02\tAbsError: 2.53025e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.19722e-03\tAbsError: 1.26341e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.53399e-03\tAbsError: 1.26684e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.32527e-02\tAbsError: 5.79655e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.51852e-05\tAbsError: 1.14841e-02\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 2.37320e-02\tAbsError: 2.49548e+13\n", + " Region: \"zone_1\"\tRelError: 8.17992e-03\tAbsError: 3.55327e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.16868e-03\tAbsError: 1.21478e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12444e-05\tAbsError: 3.55205e-03\n", + " Region: \"zone_3\"\tRelError: 1.55521e-02\tAbsError: 2.49548e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.34727e-04\tAbsError: 1.24462e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.04717e-04\tAbsError: 1.25087e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.46014e-02\tAbsError: 1.91696e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.12453e-05\tAbsError: 3.55242e-03\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 2.67429e-01\tAbsError: 5.42492e+15\n", + " Region: \"zone_1\"\tRelError: 9.83250e-02\tAbsError: 1.73559e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 9.78056e-02\tAbsError: 6.20328e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.19391e-04\tAbsError: 1.73497e-01\n", + " Region: \"zone_3\"\tRelError: 1.69104e-01\tAbsError: 5.42492e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.56085e-02\tAbsError: 2.70784e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.22502e-02\tAbsError: 2.71708e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30726e-01\tAbsError: 8.06641e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.19428e-04\tAbsError: 1.73513e-01\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 7.08018e-04\tAbsError: 8.27437e+10\n", + " Region: \"zone_1\"\tRelError: 4.71871e-04\tAbsError: 1.98998e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.71807e-04\tAbsError: 6.73635e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.35904e-08\tAbsError: 1.98931e-05\n", + " Region: \"zone_3\"\tRelError: 2.36148e-04\tAbsError: 8.27437e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.53932e-06\tAbsError: 4.11008e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.87955e-06\tAbsError: 4.16429e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 2.30665e-04\tAbsError: 1.08801e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.35959e-08\tAbsError: 1.98952e-05\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 5.88855e-02\tAbsError: 3.50452e+13\n", + " Region: \"zone_1\"\tRelError: 3.08322e-02\tAbsError: 2.44215e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.08245e-02\tAbsError: 8.49781e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.62031e-06\tAbsError: 2.44130e-03\n", + " Region: \"zone_3\"\tRelError: 2.80534e-02\tAbsError: 3.50452e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.79879e-04\tAbsError: 1.74835e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.37810e-04\tAbsError: 1.75617e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.74281e-02\tAbsError: 1.28527e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.62091e-06\tAbsError: 2.44155e-03\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 4.33507e-02\tAbsError: 1.86368e+14\n", + " Region: \"zone_1\"\tRelError: 2.38823e-02\tAbsError: 8.46066e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38564e-02\tAbsError: 2.98687e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.59140e-05\tAbsError: 8.45767e-03\n", + " Region: \"zone_3\"\tRelError: 1.94684e-02\tAbsError: 1.86368e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.81968e-04\tAbsError: 9.30578e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13012e-03\tAbsError: 9.33102e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74304e-02\tAbsError: 4.26933e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.59159e-05\tAbsError: 8.45850e-03\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 1.90219e-02\tAbsError: 2.00989e+13\n", + " Region: \"zone_1\"\tRelError: 6.63202e-03\tAbsError: 2.86189e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.62296e-03\tAbsError: 9.78436e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.05661e-06\tAbsError: 2.86091e-03\n", + " Region: \"zone_3\"\tRelError: 1.23899e-02\tAbsError: 2.00989e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.50206e-04\tAbsError: 1.00242e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.06600e-04\tAbsError: 1.00746e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.16240e-02\tAbsError: 1.54396e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.05736e-06\tAbsError: 2.86121e-03\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 1.93537e-01\tAbsError: 3.75409e+15\n", + " Region: \"zone_1\"\tRelError: 7.05241e-02\tAbsError: 1.22078e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 7.01586e-02\tAbsError: 4.22530e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.65468e-04\tAbsError: 1.22036e-01\n", + " Region: \"zone_3\"\tRelError: 1.23013e-01\tAbsError: 3.75409e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10596e-02\tAbsError: 1.87349e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.56179e-02\tAbsError: 1.88059e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 9.59704e-02\tAbsError: 5.71377e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.65494e-04\tAbsError: 1.22047e-01\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 5.85480e-04\tAbsError: 6.84096e+10\n", + " Region: \"zone_1\"\tRelError: 3.90278e-04\tAbsError: 1.64525e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.90225e-04\tAbsError: 5.56938e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.25742e-08\tAbsError: 1.64469e-05\n", + " Region: \"zone_3\"\tRelError: 1.95202e-04\tAbsError: 6.84096e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.09941e-06\tAbsError: 3.39807e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.38070e-06\tAbsError: 3.44289e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.90669e-04\tAbsError: 8.99526e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.25788e-08\tAbsError: 1.64486e-05\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 4.46384e-02\tAbsError: 2.71605e+13\n", + " Region: \"zone_1\"\tRelError: 2.33386e-02\tAbsError: 1.89270e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.33327e-02\tAbsError: 6.58609e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.90589e-06\tAbsError: 1.89205e-03\n", + " Region: \"zone_3\"\tRelError: 2.12999e-02\tAbsError: 2.71605e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.16930e-04\tAbsError: 1.35499e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.61836e-04\tAbsError: 1.36106e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08152e-02\tAbsError: 9.96103e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.90636e-06\tAbsError: 1.89224e-03\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 3.20788e-02\tAbsError: 1.37275e+14\n", + " Region: \"zone_1\"\tRelError: 1.79035e-02\tAbsError: 6.23216e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.78844e-02\tAbsError: 2.19990e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.90880e-05\tAbsError: 6.22996e-03\n", + " Region: \"zone_3\"\tRelError: 1.41753e-02\tAbsError: 1.37275e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.49572e-04\tAbsError: 6.85447e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.32298e-04\tAbsError: 6.87306e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26744e-02\tAbsError: 3.14483e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.90894e-05\tAbsError: 6.23056e-03\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 1.53806e-02\tAbsError: 1.61885e+13\n", + " Region: \"zone_1\"\tRelError: 5.31326e-03\tAbsError: 2.30506e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.30596e-03\tAbsError: 7.88052e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.29443e-06\tAbsError: 2.30427e-03\n", + " Region: \"zone_3\"\tRelError: 1.00674e-02\tAbsError: 1.61885e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.82025e-04\tAbsError: 8.07398e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.27432e-04\tAbsError: 8.11453e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.45062e-03\tAbsError: 1.24356e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.29504e-06\tAbsError: 2.30451e-03\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 1.30088e-01\tAbsError: 2.59598e+15\n", + " Region: \"zone_1\"\tRelError: 4.77148e-02\tAbsError: 8.34710e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.74650e-02\tAbsError: 2.96651e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.49824e-04\tAbsError: 8.34414e-02\n", + " Region: \"zone_3\"\tRelError: 8.23728e-02\tAbsError: 2.59598e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.57823e-03\tAbsError: 1.29576e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.06817e-02\tAbsError: 1.30022e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.38630e-02\tAbsError: 3.91274e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.49842e-04\tAbsError: 8.34491e-02\n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 4.83975e-04\tAbsError: 5.65586e+10\n", + " Region: \"zone_1\"\tRelError: 3.22564e-04\tAbsError: 1.36023e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.22520e-04\tAbsError: 4.60456e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.34665e-08\tAbsError: 1.35977e-05\n", + " Region: \"zone_3\"\tRelError: 1.61411e-04\tAbsError: 5.65586e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.73572e-06\tAbsError: 2.80940e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96828e-06\tAbsError: 2.84646e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.57663e-04\tAbsError: 7.43696e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.34703e-08\tAbsError: 1.35991e-05\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 3.51928e-02\tAbsError: 2.10501e+13\n", + " Region: \"zone_1\"\tRelError: 1.84207e-02\tAbsError: 1.46689e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84161e-02\tAbsError: 5.10430e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.57719e-06\tAbsError: 1.46638e-03\n", + " Region: \"zone_3\"\tRelError: 1.67721e-02\tAbsError: 2.10501e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.68115e-04\tAbsError: 1.05016e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.02913e-04\tAbsError: 1.05485e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.63965e-02\tAbsError: 7.72006e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.57756e-06\tAbsError: 1.46653e-03\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 1.23491e-02\tAbsError: 1.30385e+13\n", + " Region: \"zone_1\"\tRelError: 4.29784e-03\tAbsError: 1.85656e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 4.29196e-03\tAbsError: 6.34726e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87516e-06\tAbsError: 1.85592e-03\n", + " Region: \"zone_3\"\tRelError: 8.05124e-03\tAbsError: 1.30385e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.27178e-04\tAbsError: 6.50290e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.63759e-04\tAbsError: 6.53557e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.55443e-03\tAbsError: 1.00159e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.87565e-06\tAbsError: 1.85611e-03\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 2.35479e-02\tAbsError: 1.01113e+14\n", + " Region: \"zone_1\"\tRelError: 1.30173e-02\tAbsError: 4.59033e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30033e-02\tAbsError: 1.62049e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40596e-05\tAbsError: 4.58871e-03\n", + " Region: \"zone_3\"\tRelError: 1.05305e-02\tAbsError: 1.01113e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.78496e-04\tAbsError: 5.04879e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.13117e-04\tAbsError: 5.06249e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 9.42487e-03\tAbsError: 2.31633e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.40606e-05\tAbsError: 4.58916e-03\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 9.21897e-02\tAbsError: 1.79724e+15\n", + " Region: \"zone_1\"\tRelError: 3.36857e-02\tAbsError: 5.81509e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 3.35117e-02\tAbsError: 2.03999e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74073e-04\tAbsError: 5.81305e-02\n", + " Region: \"zone_3\"\tRelError: 5.85040e-02\tAbsError: 1.79724e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.29076e-03\tAbsError: 8.97004e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.43675e-03\tAbsError: 9.00231e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.56024e-02\tAbsError: 2.73174e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.74086e-04\tAbsError: 5.81359e-02\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 4.00187e-04\tAbsError: 4.67606e+10\n", + " Region: \"zone_1\"\tRelError: 2.66755e-04\tAbsError: 1.12459e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.66719e-04\tAbsError: 3.80689e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.59366e-08\tAbsError: 1.12421e-05\n", + " Region: \"zone_3\"\tRelError: 1.33432e-04\tAbsError: 4.67606e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.43503e-06\tAbsError: 2.32271e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.62730e-06\tAbsError: 2.35335e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.30333e-04\tAbsError: 6.14861e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.59397e-08\tAbsError: 1.12433e-05\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 2.69151e-02\tAbsError: 1.63142e+13\n", + " Region: \"zone_1\"\tRelError: 1.40757e-02\tAbsError: 1.13687e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.40721e-02\tAbsError: 3.95597e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.54742e-06\tAbsError: 1.13647e-03\n", + " Region: \"zone_3\"\tRelError: 1.28394e-02\tAbsError: 1.63142e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.30299e-04\tAbsError: 8.13889e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.57271e-04\tAbsError: 8.17530e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25483e-02\tAbsError: 5.98318e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.54770e-06\tAbsError: 1.13659e-03\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 9.97150e-03\tAbsError: 1.05017e+13\n", + " Region: \"zone_1\"\tRelError: 3.44967e-03\tAbsError: 1.49533e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.44494e-03\tAbsError: 5.11223e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73202e-06\tAbsError: 1.49482e-03\n", + " Region: \"zone_3\"\tRelError: 6.52183e-03\tAbsError: 1.05017e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.82958e-04\tAbsError: 5.23770e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.12416e-04\tAbsError: 5.26401e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.12173e-03\tAbsError: 8.06716e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.73241e-06\tAbsError: 1.49497e-03\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 1.73883e-02\tAbsError: 7.44777e+13\n", + " Region: \"zone_1\"\tRelError: 9.68024e-03\tAbsError: 3.38121e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.66989e-03\tAbsError: 1.19357e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03561e-05\tAbsError: 3.38001e-03\n", + " Region: \"zone_3\"\tRelError: 7.70808e-03\tAbsError: 7.44777e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.52430e-04\tAbsError: 3.71884e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.51573e-04\tAbsError: 3.72893e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.89372e-03\tAbsError: 1.70620e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.03569e-05\tAbsError: 3.38034e-03\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 6.27709e-02\tAbsError: 1.24367e+15\n", + " Region: \"zone_1\"\tRelError: 2.29955e-02\tAbsError: 4.00668e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.28756e-02\tAbsError: 1.41927e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19924e-04\tAbsError: 4.00526e-02\n", + " Region: \"zone_3\"\tRelError: 3.97754e-02\tAbsError: 1.24367e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.64807e-03\tAbsError: 6.20757e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.12517e-03\tAbsError: 6.22909e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 3.08822e-02\tAbsError: 1.88311e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19933e-04\tAbsError: 4.00563e-02\n", + "Iteration: 59\n", + " Device: \"device\"\tRelError: 3.30823e-04\tAbsError: 3.86600e+10\n", + " Region: \"zone_1\"\tRelError: 2.20495e-04\tAbsError: 9.29770e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 2.20465e-04\tAbsError: 3.14740e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.97111e-08\tAbsError: 9.29456e-06\n", + " Region: \"zone_3\"\tRelError: 1.10328e-04\tAbsError: 3.86600e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18643e-06\tAbsError: 1.92034e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34540e-06\tAbsError: 1.94566e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07767e-04\tAbsError: 5.08345e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.97136e-08\tAbsError: 9.29554e-06\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 2.10754e-02\tAbsError: 1.26439e+13\n", + " Region: \"zone_1\"\tRelError: 1.10291e-02\tAbsError: 8.81101e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10264e-02\tAbsError: 3.06594e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.74933e-06\tAbsError: 8.80794e-04\n", + " Region: \"zone_3\"\tRelError: 1.00463e-02\tAbsError: 1.26439e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.00980e-04\tAbsError: 6.30784e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.21883e-04\tAbsError: 6.33606e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 9.82065e-03\tAbsError: 4.63711e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.74954e-06\tAbsError: 8.80883e-04\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 8.01496e-03\tAbsError: 8.45828e+12\n", + " Region: \"zone_1\"\tRelError: 2.78620e-03\tAbsError: 1.20438e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78239e-03\tAbsError: 4.11757e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.81131e-06\tAbsError: 1.20397e-03\n", + " Region: \"zone_3\"\tRelError: 5.22876e-03\tAbsError: 8.45828e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.47371e-04\tAbsError: 4.21854e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.71101e-04\tAbsError: 4.23974e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.90648e-03\tAbsError: 6.49750e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.81163e-06\tAbsError: 1.20409e-03\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 1.27842e-02\tAbsError: 5.48583e+13\n", + " Region: \"zone_1\"\tRelError: 7.08026e-03\tAbsError: 2.49048e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.07263e-03\tAbsError: 8.79186e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.62798e-06\tAbsError: 2.48960e-03\n", + " Region: \"zone_3\"\tRelError: 5.70390e-03\tAbsError: 5.48583e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.59602e-04\tAbsError: 2.73920e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.32637e-04\tAbsError: 2.74663e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.10403e-03\tAbsError: 1.25672e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.62856e-06\tAbsError: 2.48984e-03\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 4.39854e-02\tAbsError: 8.60990e+14\n", + " Region: \"zone_1\"\tRelError: 1.60880e-02\tAbsError: 2.78039e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.60048e-02\tAbsError: 9.79898e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.32271e-05\tAbsError: 2.77941e-02\n", + " Region: \"zone_3\"\tRelError: 2.78974e-02\tAbsError: 8.60990e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.53309e-03\tAbsError: 4.29736e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.55568e-03\tAbsError: 4.31254e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.17254e-02\tAbsError: 1.30764e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.32331e-05\tAbsError: 2.77967e-02\n", + "Iteration: 60\n", + " Device: \"device\"\tRelError: 2.73538e-04\tAbsError: 3.19627e+10\n", + " Region: \"zone_1\"\tRelError: 1.82331e-04\tAbsError: 7.68701e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.82306e-04\tAbsError: 2.60216e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45640e-08\tAbsError: 7.68441e-06\n", + " Region: \"zone_3\"\tRelError: 9.12075e-05\tAbsError: 3.19627e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.80900e-07\tAbsError: 1.58767e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.11233e-06\tAbsError: 1.60861e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.90897e-05\tAbsError: 4.20282e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.45662e-08\tAbsError: 7.68522e-06\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 1.62041e-02\tAbsError: 9.79925e+12\n", + " Region: \"zone_1\"\tRelError: 8.47545e-03\tAbsError: 6.82870e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.47332e-03\tAbsError: 2.37618e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.13079e-06\tAbsError: 6.82632e-04\n", + " Region: \"zone_3\"\tRelError: 7.72862e-03\tAbsError: 9.79925e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.82642e-05\tAbsError: 4.88869e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.44652e-05\tAbsError: 4.91056e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 7.55376e-03\tAbsError: 3.59385e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.13095e-06\tAbsError: 6.82702e-04\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 6.46609e-03\tAbsError: 6.81261e+12\n", + " Region: \"zone_1\"\tRelError: 2.23907e-03\tAbsError: 9.70043e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23600e-03\tAbsError: 3.31639e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.06974e-06\tAbsError: 9.69711e-04\n", + " Region: \"zone_3\"\tRelError: 4.22703e-03\tAbsError: 6.81261e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.18690e-04\tAbsError: 3.39777e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.37800e-04\tAbsError: 3.41484e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.96747e-03\tAbsError: 5.23329e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.06999e-06\tAbsError: 9.69813e-04\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 9.42933e-03\tAbsError: 4.04075e+13\n", + " Region: \"zone_1\"\tRelError: 5.24224e-03\tAbsError: 1.83445e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.23662e-03\tAbsError: 6.47574e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.61864e-06\tAbsError: 1.83381e-03\n", + " Region: \"zone_3\"\tRelError: 4.18709e-03\tAbsError: 4.04075e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.91212e-04\tAbsError: 2.01764e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.45003e-04\tAbsError: 2.02311e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.74526e-03\tAbsError: 9.25686e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.61906e-06\tAbsError: 1.83398e-03\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 3.01826e-02\tAbsError: 5.95905e+14\n", + " Region: \"zone_1\"\tRelError: 1.10510e-02\tAbsError: 1.92127e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.09935e-02\tAbsError: 6.79530e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.75072e-05\tAbsError: 1.92059e-02\n", + " Region: \"zone_3\"\tRelError: 1.91315e-02\tAbsError: 5.95905e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.75080e-03\tAbsError: 2.97435e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.45731e-03\tAbsError: 2.98470e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48659e-02\tAbsError: 9.03712e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.75113e-05\tAbsError: 1.92077e-02\n", + "Iteration: 61\n", + " Device: \"device\"\tRelError: 2.26134e-04\tAbsError: 2.64256e+10\n", + " Region: \"zone_1\"\tRelError: 1.50722e-04\tAbsError: 6.35534e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50702e-04\tAbsError: 2.15137e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03087e-08\tAbsError: 6.35319e-06\n", + " Region: \"zone_3\"\tRelError: 7.54125e-05\tAbsError: 2.64256e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.10974e-07\tAbsError: 1.31263e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.19632e-07\tAbsError: 1.32994e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.36616e-05\tAbsError: 3.47474e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.03104e-08\tAbsError: 6.35387e-06\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 1.26363e-02\tAbsError: 7.59465e+12\n", + " Region: \"zone_1\"\tRelError: 6.61204e-03\tAbsError: 5.29240e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.61039e-03\tAbsError: 1.84158e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65140e-06\tAbsError: 5.29055e-04\n", + " Region: \"zone_3\"\tRelError: 6.02429e-03\tAbsError: 7.59465e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.06550e-05\tAbsError: 3.78885e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.32104e-05\tAbsError: 3.80580e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.88877e-03\tAbsError: 2.78531e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65153e-06\tAbsError: 5.29109e-04\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 5.20109e-03\tAbsError: 5.48703e+12\n", + " Region: \"zone_1\"\tRelError: 1.80667e-03\tAbsError: 7.81300e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80419e-03\tAbsError: 2.67113e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.47246e-06\tAbsError: 7.81033e-04\n", + " Region: \"zone_3\"\tRelError: 3.39443e-03\tAbsError: 5.48703e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.56009e-05\tAbsError: 2.73664e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.10995e-04\tAbsError: 2.75039e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.18536e-03\tAbsError: 4.21504e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.47266e-06\tAbsError: 7.81114e-04\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 6.93847e-03\tAbsError: 2.97632e+13\n", + " Region: \"zone_1\"\tRelError: 3.84661e-03\tAbsError: 1.35120e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.84247e-03\tAbsError: 4.76996e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.13854e-06\tAbsError: 1.35073e-03\n", + " Region: \"zone_3\"\tRelError: 3.09186e-03\tAbsError: 2.97632e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.40845e-04\tAbsError: 1.48614e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.80469e-04\tAbsError: 1.49018e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.76641e-03\tAbsError: 6.81832e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.13885e-06\tAbsError: 1.35086e-03\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 2.10241e-02\tAbsError: 4.12519e+14\n", + " Region: \"zone_1\"\tRelError: 7.69266e-03\tAbsError: 1.33118e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 7.65281e-03\tAbsError: 4.69912e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.98463e-05\tAbsError: 1.33071e-02\n", + " Region: \"zone_3\"\tRelError: 1.33314e-02\tAbsError: 4.12519e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.21327e-03\tAbsError: 2.05898e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.70241e-03\tAbsError: 2.06621e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03759e-02\tAbsError: 6.26284e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.98492e-05\tAbsError: 1.33083e-02\n", + "Iteration: 62\n", + " Device: \"device\"\tRelError: 1.86972e-04\tAbsError: 2.18478e+10\n", + " Region: \"zone_1\"\tRelError: 1.24627e-04\tAbsError: 5.25437e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24610e-04\tAbsError: 1.77868e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67905e-08\tAbsError: 5.25259e-06\n", + " Region: \"zone_3\"\tRelError: 6.23447e-05\tAbsError: 2.18478e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.70484e-07\tAbsError: 1.08523e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.60318e-07\tAbsError: 1.09955e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.08971e-05\tAbsError: 2.87279e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.67919e-08\tAbsError: 5.25315e-06\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 9.74661e-03\tAbsError: 5.88600e+12\n", + " Region: \"zone_1\"\tRelError: 5.09837e-03\tAbsError: 4.10171e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.09709e-03\tAbsError: 1.42727e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27987e-06\tAbsError: 4.10029e-04\n", + " Region: \"zone_3\"\tRelError: 4.64823e-03\tAbsError: 5.88600e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.70098e-05\tAbsError: 2.93643e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.67409e-05\tAbsError: 2.94957e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.54320e-03\tAbsError: 2.15867e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.27997e-06\tAbsError: 4.10070e-04\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 4.19357e-03\tAbsError: 4.41944e+12\n", + " Region: \"zone_1\"\tRelError: 1.45303e-03\tAbsError: 6.29282e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45104e-03\tAbsError: 2.15140e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99139e-06\tAbsError: 6.29067e-04\n", + " Region: \"zone_3\"\tRelError: 2.74055e-03\tAbsError: 4.41944e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.69967e-05\tAbsError: 2.20418e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.93941e-05\tAbsError: 2.21526e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57216e-03\tAbsError: 3.39492e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.99155e-06\tAbsError: 6.29133e-04\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 5.11449e-03\tAbsError: 2.19230e+13\n", + " Region: \"zone_1\"\tRelError: 2.84130e-03\tAbsError: 9.95274e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.83825e-03\tAbsError: 3.51340e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.04837e-06\tAbsError: 9.94922e-04\n", + " Region: \"zone_3\"\tRelError: 2.27319e-03\tAbsError: 2.19230e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03742e-04\tAbsError: 1.09466e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.32926e-04\tAbsError: 1.09763e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.03348e-03\tAbsError: 5.02226e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.04860e-06\tAbsError: 9.95019e-04\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 1.44878e-02\tAbsError: 2.85529e+14\n", + " Region: \"zone_1\"\tRelError: 5.30332e-03\tAbsError: 9.20853e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.27576e-03\tAbsError: 3.25487e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75632e-05\tAbsError: 9.20527e-03\n", + " Region: \"zone_3\"\tRelError: 9.18452e-03\tAbsError: 2.85529e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.39354e-04\tAbsError: 1.42516e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.17773e-03\tAbsError: 1.43013e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.13987e-03\tAbsError: 4.33250e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.75652e-05\tAbsError: 9.20613e-03\n", + "Iteration: 63\n", + " Device: \"device\"\tRelError: 1.54573e-04\tAbsError: 1.80630e+10\n", + " Region: \"zone_1\"\tRelError: 1.03026e-04\tAbsError: 4.34413e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03013e-04\tAbsError: 1.47055e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38818e-08\tAbsError: 4.34266e-06\n", + " Region: \"zone_3\"\tRelError: 5.15469e-05\tAbsError: 1.80630e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.54332e-07\tAbsError: 8.97231e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.28604e-07\tAbsError: 9.09065e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 5.03500e-05\tAbsError: 2.37512e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.38830e-08\tAbsError: 4.34312e-06\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 7.58191e-03\tAbsError: 4.56178e+12\n", + " Region: \"zone_1\"\tRelError: 3.96700e-03\tAbsError: 3.17892e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.96601e-03\tAbsError: 1.10616e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.91929e-07\tAbsError: 3.17781e-04\n", + " Region: \"zone_3\"\tRelError: 3.61491e-03\tAbsError: 4.56178e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.64331e-05\tAbsError: 2.27580e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.39746e-05\tAbsError: 2.28598e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53351e-03\tAbsError: 1.67302e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.92007e-07\tAbsError: 3.17813e-04\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 3.37473e-03\tAbsError: 3.55953e+12\n", + " Region: \"zone_1\"\tRelError: 1.17168e-03\tAbsError: 5.06842e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.17008e-03\tAbsError: 1.73280e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60392e-06\tAbsError: 5.06669e-04\n", + " Region: \"zone_3\"\tRelError: 2.20305e-03\tAbsError: 3.55953e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.20174e-05\tAbsError: 1.77531e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.20033e-05\tAbsError: 1.78422e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.06742e-03\tAbsError: 2.73436e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60406e-06\tAbsError: 5.06721e-04\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 3.76517e-03\tAbsError: 1.61479e+13\n", + " Region: \"zone_1\"\tRelError: 2.08851e-03\tAbsError: 7.33092e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08626e-03\tAbsError: 2.58792e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24535e-06\tAbsError: 7.32834e-04\n", + " Region: \"zone_3\"\tRelError: 1.67666e-03\tAbsError: 1.61479e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.64148e-05\tAbsError: 8.06303e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.79122e-05\tAbsError: 8.08490e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.50009e-03\tAbsError: 3.69926e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24552e-06\tAbsError: 7.32905e-04\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 1.00605e-02\tAbsError: 1.97651e+14\n", + " Region: \"zone_1\"\tRelError: 3.68165e-03\tAbsError: 6.37644e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.66257e-03\tAbsError: 2.25220e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.90865e-05\tAbsError: 6.37419e-03\n", + " Region: \"zone_3\"\tRelError: 6.37881e-03\tAbsError: 1.97651e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.81235e-04\tAbsError: 9.86530e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.15478e-04\tAbsError: 9.89983e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.96301e-03\tAbsError: 3.00024e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.90879e-05\tAbsError: 6.37478e-03\n", + "Iteration: 64\n", + " Device: \"device\"\tRelError: 1.27801e-04\tAbsError: 1.49338e+10\n", + " Region: \"zone_1\"\tRelError: 8.51859e-05\tAbsError: 3.59157e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.51744e-05\tAbsError: 1.21579e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14770e-08\tAbsError: 3.59035e-06\n", + " Region: \"zone_3\"\tRelError: 4.26154e-05\tAbsError: 1.49338e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.58302e-07\tAbsError: 7.41798e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.19707e-07\tAbsError: 7.51582e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 4.16259e-05\tAbsError: 1.96366e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.14779e-08\tAbsError: 3.59073e-06\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 5.85926e-03\tAbsError: 3.53547e+12\n", + " Region: \"zone_1\"\tRelError: 3.06510e-03\tAbsError: 2.46373e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.06433e-03\tAbsError: 8.57301e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.68765e-07\tAbsError: 2.46287e-04\n", + " Region: \"zone_3\"\tRelError: 2.79416e-03\tAbsError: 3.53547e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.82367e-05\tAbsError: 1.76379e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.40817e-05\tAbsError: 1.77168e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.73107e-03\tAbsError: 1.29662e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.68826e-07\tAbsError: 2.46312e-04\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 2.71998e-03\tAbsError: 2.86696e+12\n", + " Region: \"zone_1\"\tRelError: 9.42817e-04\tAbsError: 4.08226e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.41525e-04\tAbsError: 1.39565e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29185e-06\tAbsError: 4.08086e-04\n", + " Region: \"zone_3\"\tRelError: 1.77717e-03\tAbsError: 2.86696e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.99493e-05\tAbsError: 1.42989e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.79918e-05\tAbsError: 1.43707e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66793e-03\tAbsError: 2.20234e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29195e-06\tAbsError: 4.08129e-04\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 2.77445e-03\tAbsError: 1.18942e+13\n", + " Region: \"zone_1\"\tRelError: 1.54070e-03\tAbsError: 5.39981e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.53904e-03\tAbsError: 1.90619e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65388e-06\tAbsError: 5.39791e-04\n", + " Region: \"zone_3\"\tRelError: 1.23375e-03\tAbsError: 1.18942e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.62849e-05\tAbsError: 5.93905e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.21191e-05\tAbsError: 5.95516e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10370e-03\tAbsError: 2.72481e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.65400e-06\tAbsError: 5.39844e-04\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 6.94811e-03\tAbsError: 1.36810e+14\n", + " Region: \"zone_1\"\tRelError: 2.54313e-03\tAbsError: 4.41273e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 2.52992e-03\tAbsError: 1.55933e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32084e-05\tAbsError: 4.41117e-03\n", + " Region: \"zone_3\"\tRelError: 4.40498e-03\tAbsError: 1.36810e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.02247e-04\tAbsError: 6.82858e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.64358e-04\tAbsError: 6.85243e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.42517e-03\tAbsError: 2.07629e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.32093e-05\tAbsError: 4.41158e-03\n", + "Iteration: 65\n", + " Device: \"device\"\tRelError: 1.05658e-04\tAbsError: 1.23467e+10\n", + " Region: \"zone_1\"\tRelError: 7.04237e-05\tAbsError: 2.96938e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 7.04142e-05\tAbsError: 1.00518e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.48873e-09\tAbsError: 2.96838e-06\n", + " Region: \"zone_3\"\tRelError: 3.52341e-05\tAbsError: 1.23467e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.78908e-07\tAbsError: 6.13292e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.29675e-07\tAbsError: 6.21381e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 3.44160e-05\tAbsError: 1.62349e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.48956e-09\tAbsError: 2.96869e-06\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 4.55118e-03\tAbsError: 2.74007e+12\n", + " Region: \"zone_1\"\tRelError: 2.38117e-03\tAbsError: 1.90944e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.38057e-03\tAbsError: 6.64426e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.95810e-07\tAbsError: 1.90878e-04\n", + " Region: \"zone_3\"\tRelError: 2.17002e-03\tAbsError: 2.74007e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.18839e-05\tAbsError: 1.36698e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.64138e-05\tAbsError: 1.37309e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.12112e-03\tAbsError: 1.00491e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.95857e-07\tAbsError: 1.90897e-04\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 2.18953e-03\tAbsError: 2.30913e+12\n", + " Region: \"zone_1\"\tRelError: 7.59949e-04\tAbsError: 3.28797e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.58909e-04\tAbsError: 1.12410e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04049e-06\tAbsError: 3.28684e-04\n", + " Region: \"zone_3\"\tRelError: 1.42959e-03\tAbsError: 2.30913e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.02315e-05\tAbsError: 1.15167e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.67094e-05\tAbsError: 1.15746e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34160e-03\tAbsError: 1.77383e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.04058e-06\tAbsError: 3.28718e-04\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 2.04300e-03\tAbsError: 8.76100e+12\n", + " Region: \"zone_1\"\tRelError: 1.13357e-03\tAbsError: 3.97737e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13235e-03\tAbsError: 1.40406e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21821e-06\tAbsError: 3.97597e-04\n", + " Region: \"zone_3\"\tRelError: 9.09427e-04\tAbsError: 8.76100e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.14585e-05\tAbsError: 4.37457e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.31218e-05\tAbsError: 4.38643e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.13629e-04\tAbsError: 2.00703e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.21830e-06\tAbsError: 3.97636e-04\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 4.81715e-03\tAbsError: 9.47016e+13\n", + " Region: \"zone_1\"\tRelError: 1.76296e-03\tAbsError: 3.05489e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75382e-03\tAbsError: 1.07923e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.14411e-06\tAbsError: 3.05381e-03\n", + " Region: \"zone_3\"\tRelError: 3.05419e-03\tAbsError: 9.47016e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.78474e-04\tAbsError: 4.72682e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.90691e-04\tAbsError: 4.74335e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.37588e-03\tAbsError: 1.43742e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.14477e-06\tAbsError: 3.05409e-03\n", + "Iteration: 66\n", + " Device: \"device\"\tRelError: 8.73566e-05\tAbsError: 1.02078e+10\n", + " Region: \"zone_1\"\tRelError: 5.82272e-05\tAbsError: 2.45498e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.82193e-05\tAbsError: 8.31043e-10\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.84495e-09\tAbsError: 2.45415e-06\n", + " Region: \"zone_3\"\tRelError: 2.91294e-05\tAbsError: 1.02078e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.13267e-07\tAbsError: 5.07048e+09\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.55240e-07\tAbsError: 5.13736e+09\n", + " Equation: \"PotentialEquation\"\tRelError: 2.84531e-05\tAbsError: 1.34224e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.84563e-09\tAbsError: 2.45441e-06\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 3.52117e-03\tAbsError: 2.12361e+12\n", + " Region: \"zone_1\"\tRelError: 1.84206e-03\tAbsError: 1.47986e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.84160e-03\tAbsError: 5.14944e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.61765e-07\tAbsError: 1.47934e-04\n", + " Region: \"zone_3\"\tRelError: 1.67911e-03\tAbsError: 2.12361e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.69606e-05\tAbsError: 1.05944e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.04714e-05\tAbsError: 1.06417e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64122e-03\tAbsError: 7.78827e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.61802e-07\tAbsError: 1.47949e-04\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 1.76431e-03\tAbsError: 1.85984e+12\n", + " Region: \"zone_1\"\tRelError: 6.11711e-04\tAbsError: 2.64822e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.10873e-04\tAbsError: 9.05379e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.38041e-07\tAbsError: 2.64732e-04\n", + " Region: \"zone_3\"\tRelError: 1.15260e-03\tAbsError: 1.85984e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.24030e-05\tAbsError: 9.27591e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.76204e-05\tAbsError: 9.32251e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08173e-03\tAbsError: 1.42869e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.38111e-07\tAbsError: 2.64760e-04\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 1.50515e-03\tAbsError: 6.45316e+12\n", + " Region: \"zone_1\"\tRelError: 8.35652e-04\tAbsError: 2.92965e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 8.34755e-04\tAbsError: 1.03420e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.97306e-07\tAbsError: 2.92861e-04\n", + " Region: \"zone_3\"\tRelError: 6.69500e-04\tAbsError: 6.45316e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.05373e-05\tAbsError: 3.22221e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.91280e-05\tAbsError: 3.23095e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.98937e-04\tAbsError: 1.47833e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.97374e-07\tAbsError: 2.92890e-04\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 3.33067e-03\tAbsError: 6.55514e+13\n", + " Region: \"zone_1\"\tRelError: 1.21903e-03\tAbsError: 2.11441e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.21270e-03\tAbsError: 7.47100e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.32896e-06\tAbsError: 2.11366e-03\n", + " Region: \"zone_3\"\tRelError: 2.11163e-03\tAbsError: 6.55514e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.92745e-04\tAbsError: 3.27185e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.70417e-04\tAbsError: 3.28329e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.64214e-03\tAbsError: 9.94900e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.32942e-06\tAbsError: 2.11386e-03\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 1.42051e-03\tAbsError: 1.49797e+12\n", + " Region: \"zone_1\"\tRelError: 4.92933e-04\tAbsError: 2.13296e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.92258e-04\tAbsError: 7.29220e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.74983e-07\tAbsError: 2.13223e-04\n", + " Region: \"zone_3\"\tRelError: 9.27578e-04\tAbsError: 1.49797e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.60987e-05\tAbsError: 7.47107e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.03010e-05\tAbsError: 7.50860e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 8.70503e-04\tAbsError: 1.15071e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.75039e-07\tAbsError: 2.13245e-04\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 2.73264e-03\tAbsError: 1.64584e+12\n", + " Region: \"zone_1\"\tRelError: 1.42967e-03\tAbsError: 1.14692e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.42932e-03\tAbsError: 3.99092e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57878e-07\tAbsError: 1.14652e-04\n", + " Region: \"zone_3\"\tRelError: 1.30297e-03\tAbsError: 1.64584e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.31447e-05\tAbsError: 8.21085e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.58657e-05\tAbsError: 8.24758e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.27360e-03\tAbsError: 6.03608e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.57906e-07\tAbsError: 1.14664e-04\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 1.10848e-03\tAbsError: 4.75325e+12\n", + " Region: \"zone_1\"\tRelError: 6.15148e-04\tAbsError: 2.15791e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.14487e-04\tAbsError: 7.61769e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.60935e-07\tAbsError: 2.15715e-04\n", + " Region: \"zone_3\"\tRelError: 4.93336e-04\tAbsError: 4.75325e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.24931e-05\tAbsError: 2.37341e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.88210e-05\tAbsError: 2.37985e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.41361e-04\tAbsError: 1.08891e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.60985e-07\tAbsError: 2.15736e-04\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 2.30731e-03\tAbsError: 4.53750e+13\n", + " Region: \"zone_1\"\tRelError: 8.44440e-04\tAbsError: 1.46366e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 8.40059e-04\tAbsError: 5.17118e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.38112e-06\tAbsError: 1.46314e-03\n", + " Region: \"zone_3\"\tRelError: 1.46287e-03\tAbsError: 4.53750e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.33424e-04\tAbsError: 2.26479e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.87189e-04\tAbsError: 2.27271e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.13787e-03\tAbsError: 6.88705e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.38144e-06\tAbsError: 1.46328e-03\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:17\u001b[0m.\u001b[1;36m873\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:17\u001b[0m.\u001b[1;36m898\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.25 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:17\u001b[0m.\u001b[1;36m914\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.25 V. Current applied bias: 1.25\u001b[0m \n", + "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_5nodeelectrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeelectrons:T in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodeholes:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: ElectronContinuityEquation\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: HoleContinuityEquation\n", + "Replacing Node Model zone_3_bc_4nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_4nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_4, Equation: PotentialEquation\n", + "Replacing Node Model zone_3_bc_5nodemodel in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Potential in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Electrons in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:Holes in region zone_3 of material Si\n", + "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", + "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", + "Contact: zone_3_bc_5, Equation: PotentialEquation\n", + "number of equations 31686\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 1.14445e-03\tAbsError: 1.20651e+12\n", + " Region: \"zone_1\"\tRelError: 3.96865e-04\tAbsError: 1.71795e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.96321e-04\tAbsError: 5.87334e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43651e-07\tAbsError: 1.71736e-04\n", + " Region: \"zone_3\"\tRelError: 7.47588e-04\tAbsError: 1.20651e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.10204e-05\tAbsError: 6.01743e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.44050e-05\tAbsError: 6.04766e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.01619e-04\tAbsError: 9.26815e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.43696e-07\tAbsError: 1.71754e-04\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 2.11566e-03\tAbsError: 1.27556e+12\n", + " Region: \"zone_1\"\tRelError: 1.10680e-03\tAbsError: 8.88887e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.10652e-03\tAbsError: 3.09305e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.77363e-07\tAbsError: 8.88578e-05\n", + " Region: \"zone_3\"\tRelError: 1.00886e-03\tAbsError: 1.27556e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01875e-05\tAbsError: 6.36358e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.22963e-05\tAbsError: 6.39205e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.86094e-04\tAbsError: 4.67809e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.77385e-07\tAbsError: 8.88668e-05\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 8.16580e-04\tAbsError: 3.50114e+12\n", + " Region: \"zone_1\"\tRelError: 4.53307e-04\tAbsError: 1.58947e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.52821e-04\tAbsError: 5.61101e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.86830e-07\tAbsError: 1.58891e-04\n", + " Region: \"zone_3\"\tRelError: 3.63273e-04\tAbsError: 3.50114e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.65679e-05\tAbsError: 1.74820e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.12288e-05\tAbsError: 1.75294e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.24989e-04\tAbsError: 8.02064e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.86867e-07\tAbsError: 1.58906e-04\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 1.59622e-03\tAbsError: 3.14083e+13\n", + " Region: \"zone_1\"\tRelError: 5.84212e-04\tAbsError: 1.01311e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.81179e-04\tAbsError: 3.57957e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.03251e-06\tAbsError: 1.01276e-03\n", + " Region: \"zone_3\"\tRelError: 1.01201e-03\tAbsError: 3.14083e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.23536e-05\tAbsError: 1.56767e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.29569e-04\tAbsError: 1.57315e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.87056e-04\tAbsError: 4.76707e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.03273e-06\tAbsError: 1.01285e-03\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 9.98831e+00\tAbsError: 5.57786e+18\n", + " Region: \"zone_1\"\tRelError: 4.03246e+00\tAbsError: 6.12756e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.03246e+00\tAbsError: 6.12736e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.48592e-09\tAbsError: 2.02900e-06\n", + " Region: \"zone_3\"\tRelError: 5.95585e+00\tAbsError: 5.57786e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.07964e-01\tAbsError: 2.78263e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.96681e-01\tAbsError: 2.79523e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 4.35121e+00\tAbsError: 6.12741e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.48648e-09\tAbsError: 2.02922e-06\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 9.21560e-04\tAbsError: 9.71756e+11\n", + " Region: \"zone_1\"\tRelError: 3.19749e-04\tAbsError: 1.38368e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.19311e-04\tAbsError: 4.73057e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.37872e-07\tAbsError: 1.38321e-04\n", + " Region: \"zone_3\"\tRelError: 6.01811e-04\tAbsError: 9.71756e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.69306e-05\tAbsError: 4.84661e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.96567e-05\tAbsError: 4.87095e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.64786e-04\tAbsError: 7.46484e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.37909e-07\tAbsError: 1.38335e-04\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 1.64100e-03\tAbsError: 9.88589e+11\n", + " Region: \"zone_1\"\tRelError: 8.58530e-04\tAbsError: 6.88907e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.58315e-04\tAbsError: 2.39718e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.14962e-07\tAbsError: 6.88667e-05\n", + " Region: \"zone_3\"\tRelError: 7.82468e-04\tAbsError: 9.88589e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.89549e-06\tAbsError: 4.93191e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.52985e-06\tAbsError: 4.95397e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.64828e-04\tAbsError: 3.62562e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.14979e-07\tAbsError: 6.88737e-05\n", + "Iteration: 38\n", + " Device: \"device\"\tRelError: 6.01423e-04\tAbsError: 2.57886e+12\n", + " Region: \"zone_1\"\tRelError: 3.33786e-04\tAbsError: 1.17077e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.33427e-04\tAbsError: 4.13295e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.58588e-07\tAbsError: 1.17035e-04\n", + " Region: \"zone_3\"\tRelError: 2.67637e-04\tAbsError: 2.57886e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.22036e-05\tAbsError: 1.28768e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.56367e-05\tAbsError: 1.29118e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39438e-04\tAbsError: 5.90782e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.58615e-07\tAbsError: 1.17047e-04\n", + "Iteration: 30\n", + " Device: \"device\"\tRelError: 1.10533e-03\tAbsError: 2.17409e+13\n", + " Region: \"zone_1\"\tRelError: 4.04540e-04\tAbsError: 7.01286e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 4.02441e-04\tAbsError: 2.47774e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.09913e-06\tAbsError: 7.01039e-04\n", + " Region: \"zone_3\"\tRelError: 7.00795e-04\tAbsError: 2.17409e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.39280e-05\tAbsError: 1.08515e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.96884e-05\tAbsError: 1.08894e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 5.45079e-04\tAbsError: 3.29981e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.09929e-06\tAbsError: 7.01104e-04\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 4.93267e+01\tAbsError: 3.16366e+18\n", + " Region: \"zone_1\"\tRelError: 4.19230e+00\tAbsError: 5.05562e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.17604e+00\tAbsError: 5.56158e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.62633e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 4.51344e+01\tAbsError: 3.16366e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.44288e-01\tAbsError: 1.58233e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.14722e-01\tAbsError: 1.58132e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 4.36593e+01\tAbsError: 5.62324e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.61041e-02\tAbsError: 5.00000e+00\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 7.42391e-04\tAbsError: 7.82682e+11\n", + " Region: \"zone_1\"\tRelError: 2.57469e-04\tAbsError: 1.11446e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57116e-04\tAbsError: 3.81013e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52675e-07\tAbsError: 1.11408e-04\n", + " Region: \"zone_3\"\tRelError: 4.84923e-04\tAbsError: 7.82682e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.36363e-05\tAbsError: 3.90360e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.58320e-05\tAbsError: 3.92321e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.55102e-04\tAbsError: 6.01240e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.52705e-07\tAbsError: 1.11419e-04\n", + "Iteration: 45\n", + " Device: \"device\"\tRelError: 1.27102e-03\tAbsError: 7.66177e+11\n", + " Region: \"zone_1\"\tRelError: 6.64937e-04\tAbsError: 5.33917e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 6.64771e-04\tAbsError: 1.85787e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66600e-07\tAbsError: 5.33731e-05\n", + " Region: \"zone_3\"\tRelError: 6.06078e-04\tAbsError: 7.66177e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.11919e-06\tAbsError: 3.82234e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.38585e-06\tAbsError: 3.83943e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.92407e-04\tAbsError: 2.80993e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.66613e-07\tAbsError: 5.33786e-05\n", + "Iteration: 39\n", + " Device: \"device\"\tRelError: 4.43023e-04\tAbsError: 1.89953e+12\n", + " Region: \"zone_1\"\tRelError: 2.45919e-04\tAbsError: 8.62361e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.45655e-04\tAbsError: 3.04424e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.64128e-07\tAbsError: 8.62057e-05\n", + " Region: \"zone_3\"\tRelError: 1.97104e-04\tAbsError: 1.89953e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.98886e-06\tAbsError: 9.48479e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.15176e-05\tAbsError: 9.51052e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.76333e-04\tAbsError: 4.35157e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.64148e-07\tAbsError: 8.62141e-05\n", + "Iteration: 31\n", + " Device: \"device\"\tRelError: 7.64901e-04\tAbsError: 1.50489e+13\n", + " Region: \"zone_1\"\tRelError: 2.79949e-04\tAbsError: 4.85424e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 2.78496e-04\tAbsError: 1.71510e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45300e-06\tAbsError: 4.85253e-04\n", + " Region: \"zone_3\"\tRelError: 4.84952e-04\tAbsError: 1.50489e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.42505e-05\tAbsError: 7.51134e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.20817e-05\tAbsError: 7.53759e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 3.77167e-04\tAbsError: 2.28410e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45310e-06\tAbsError: 4.85298e-04\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 1.49436e+02\tAbsError: 1.00060e+18\n", + " Region: \"zone_1\"\tRelError: 8.37669e+01\tAbsError: 5.04584e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 8.37509e+01\tAbsError: 4.58352e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59931e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 6.56695e+01\tAbsError: 1.00060e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.27138e-01\tAbsError: 5.02793e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.78697e-01\tAbsError: 4.97806e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 6.44478e+01\tAbsError: 4.67863e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.58489e-02\tAbsError: 5.00000e+00\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 5.97853e-04\tAbsError: 6.30394e+11\n", + " Region: \"zone_1\"\tRelError: 2.07416e-04\tAbsError: 8.97618e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.07132e-04\tAbsError: 3.06879e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.84055e-07\tAbsError: 8.97311e-05\n", + " Region: \"zone_3\"\tRelError: 3.90437e-04\tAbsError: 6.30394e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.09832e-05\tAbsError: 3.14407e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.27516e-05\tAbsError: 3.15987e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.66418e-04\tAbsError: 4.84256e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.84079e-07\tAbsError: 8.97405e-05\n", + "Iteration: 46\n", + " Device: \"device\"\tRelError: 9.85540e-04\tAbsError: 5.93803e+11\n", + " Region: \"zone_1\"\tRelError: 5.15606e-04\tAbsError: 4.13797e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.15477e-04\tAbsError: 1.43989e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29119e-07\tAbsError: 4.13653e-05\n", + " Region: \"zone_3\"\tRelError: 4.69934e-04\tAbsError: 5.93803e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.74249e-06\tAbsError: 2.96239e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.72418e-06\tAbsError: 2.97564e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.59338e-04\tAbsError: 2.17776e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.29129e-07\tAbsError: 4.13695e-05\n", + "Iteration: 40\n", + " Device: \"device\"\tRelError: 3.26305e-04\tAbsError: 1.39915e+12\n", + " Region: \"zone_1\"\tRelError: 1.81106e-04\tAbsError: 6.35196e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80911e-04\tAbsError: 2.24232e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94551e-07\tAbsError: 6.34971e-05\n", + " Region: \"zone_3\"\tRelError: 1.45199e-04\tAbsError: 1.39915e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.62100e-06\tAbsError: 6.98629e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.48364e-06\tAbsError: 7.00523e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.29900e-04\tAbsError: 3.20527e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.94565e-07\tAbsError: 6.35033e-05\n", + "Iteration: 32\n", + " Device: \"device\"\tRelError: 5.29564e-04\tAbsError: 1.04169e+13\n", + " Region: \"zone_1\"\tRelError: 1.93815e-04\tAbsError: 3.36011e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.92810e-04\tAbsError: 1.18718e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00577e-06\tAbsError: 3.35893e-04\n", + " Region: \"zone_3\"\tRelError: 3.35749e-04\tAbsError: 1.04169e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.06302e-05\tAbsError: 5.19934e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.29730e-05\tAbsError: 5.21752e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.61140e-04\tAbsError: 1.58106e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00584e-06\tAbsError: 3.35924e-04\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 4.81587e-04\tAbsError: 5.07738e+11\n", + " Region: \"zone_1\"\tRelError: 1.67031e-04\tAbsError: 7.22968e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66802e-04\tAbsError: 2.47169e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28786e-07\tAbsError: 7.22721e-05\n", + " Region: \"zone_3\"\tRelError: 3.14556e-04\tAbsError: 5.07738e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.84611e-06\tAbsError: 2.53233e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.02705e-05\tAbsError: 2.54505e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.95211e-04\tAbsError: 3.90034e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.28805e-07\tAbsError: 7.22796e-05\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.09556e+02\tAbsError: 3.02984e+17\n", + " Region: \"zone_1\"\tRelError: 7.86701e+00\tAbsError: 5.03764e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 7.85130e+00\tAbsError: 3.76373e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.57134e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.01689e+02\tAbsError: 3.02984e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.67119e-01\tAbsError: 1.51672e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.49130e-01\tAbsError: 1.51313e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00957e+02\tAbsError: 3.82859e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56016e-02\tAbsError: 5.00000e+00\n", + "Iteration: 47\n", + " Device: \"device\"\tRelError: 7.63528e-04\tAbsError: 4.60210e+11\n", + " Region: \"zone_1\"\tRelError: 3.99446e-04\tAbsError: 3.20701e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.99346e-04\tAbsError: 1.11594e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00070e-07\tAbsError: 3.20590e-05\n", + " Region: \"zone_3\"\tRelError: 3.64082e-04\tAbsError: 4.60210e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.67554e-06\tAbsError: 2.29592e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.43637e-06\tAbsError: 2.30618e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.55870e-04\tAbsError: 1.68781e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.00078e-07\tAbsError: 3.20622e-05\n", + "Iteration: 41\n", + " Device: \"device\"\tRelError: 2.40357e-04\tAbsError: 1.03058e+12\n", + " Region: \"zone_1\"\tRelError: 1.33416e-04\tAbsError: 4.67871e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33273e-04\tAbsError: 1.65164e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43302e-07\tAbsError: 4.67706e-05\n", + " Region: \"zone_3\"\tRelError: 1.06941e-04\tAbsError: 1.03058e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.87687e-06\tAbsError: 5.14594e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.24885e-06\tAbsError: 5.15990e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 9.56723e-05\tAbsError: 2.36093e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.43313e-07\tAbsError: 4.67751e-05\n", + "Iteration: 33\n", + " Device: \"device\"\tRelError: 3.66514e-04\tAbsError: 7.21052e+12\n", + " Region: \"zone_1\"\tRelError: 1.34141e-04\tAbsError: 2.32586e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.33445e-04\tAbsError: 8.21768e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.96189e-07\tAbsError: 2.32504e-04\n", + " Region: \"zone_3\"\tRelError: 2.32373e-04\tAbsError: 7.21052e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.12021e-05\tAbsError: 3.59897e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.97458e-05\tAbsError: 3.61155e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80729e-04\tAbsError: 1.09440e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.96239e-07\tAbsError: 2.32525e-04\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 3.87846e-04\tAbsError: 4.08947e+11\n", + " Region: \"zone_1\"\tRelError: 1.34550e-04\tAbsError: 5.82299e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.34365e-04\tAbsError: 1.99078e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84271e-07\tAbsError: 5.82100e-05\n", + " Region: \"zone_3\"\tRelError: 2.53296e-04\tAbsError: 4.08947e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.12494e-06\tAbsError: 2.03961e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 8.27217e-06\tAbsError: 2.04986e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.37715e-04\tAbsError: 3.14145e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.84286e-07\tAbsError: 5.82161e-05\n", + "Iteration: 48\n", + " Device: \"device\"\tRelError: 5.91922e-04\tAbsError: 3.56673e+11\n", + " Region: \"zone_1\"\tRelError: 3.09675e-04\tAbsError: 2.48550e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.09597e-04\tAbsError: 8.64878e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.75561e-08\tAbsError: 2.48464e-05\n", + " Region: \"zone_3\"\tRelError: 2.82248e-04\tAbsError: 3.56673e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.84861e-06\tAbsError: 1.77938e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.43828e-06\tAbsError: 1.78734e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.75883e-04\tAbsError: 1.30809e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.75622e-08\tAbsError: 2.48489e-05\n", + "Iteration: 42\n", + " Device: \"device\"\tRelError: 1.77037e-04\tAbsError: 7.59105e+11\n", + " Region: \"zone_1\"\tRelError: 9.82618e-05\tAbsError: 3.44623e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 9.81562e-05\tAbsError: 1.21656e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05553e-07\tAbsError: 3.44502e-05\n", + " Region: \"zone_3\"\tRelError: 7.87756e-05\tAbsError: 7.59105e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.59220e-06\tAbsError: 3.79039e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.60277e-06\tAbsError: 3.80067e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.04751e-05\tAbsError: 1.73901e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.05561e-07\tAbsError: 3.44535e-05\n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 1.01094e+02\tAbsError: 4.48449e+17\n", + " Region: \"zone_1\"\tRelError: 6.75122e+00\tAbsError: 5.02954e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 6.73578e+00\tAbsError: 2.95440e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.54341e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 9.43431e+01\tAbsError: 4.48449e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.87123e-01\tAbsError: 2.24023e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.43584e-01\tAbsError: 2.24426e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 9.35970e+01\tAbsError: 2.99687e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53620e-02\tAbsError: 5.00000e+00\n", + "Iteration: 34\n", + " Device: \"device\"\tRelError: 2.53724e-04\tAbsError: 4.99111e+12\n", + " Region: \"zone_1\"\tRelError: 9.28608e-05\tAbsError: 1.60996e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 9.23789e-05\tAbsError: 5.68826e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.81902e-07\tAbsError: 1.60939e-04\n", + " Region: \"zone_3\"\tRelError: 1.60863e-04\tAbsError: 4.99111e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.46761e-05\tAbsError: 2.49120e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.05900e-05\tAbsError: 2.49991e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25115e-04\tAbsError: 7.57545e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.81937e-07\tAbsError: 1.60954e-04\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 3.12407e-04\tAbsError: 3.29378e+11\n", + " Region: \"zone_1\"\tRelError: 1.08358e-04\tAbsError: 4.69001e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.08210e-04\tAbsError: 1.60343e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48417e-07\tAbsError: 4.68840e-05\n", + " Region: \"zone_3\"\tRelError: 2.04049e-04\tAbsError: 3.29378e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.73862e-06\tAbsError: 1.64276e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.66262e-06\tAbsError: 1.65102e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91499e-04\tAbsError: 2.53021e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48430e-07\tAbsError: 4.68889e-05\n", + "Iteration: 49\n", + " Device: \"device\"\tRelError: 4.58649e-04\tAbsError: 2.76429e+11\n", + " Region: \"zone_1\"\tRelError: 2.39947e-04\tAbsError: 1.92632e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39887e-04\tAbsError: 6.70299e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.01076e-08\tAbsError: 1.92565e-05\n", + " Region: \"zone_3\"\tRelError: 2.18702e-04\tAbsError: 2.76429e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.20774e-06\tAbsError: 1.37906e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.66474e-06\tAbsError: 1.38523e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13770e-04\tAbsError: 1.01379e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.01124e-08\tAbsError: 1.92584e-05\n", + "Iteration: 43\n", + " Device: \"device\"\tRelError: 1.30404e-04\tAbsError: 5.59140e+11\n", + " Region: \"zone_1\"\tRelError: 7.23826e-05\tAbsError: 2.53842e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.23049e-05\tAbsError: 8.96091e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.77479e-08\tAbsError: 2.53752e-05\n", + " Region: \"zone_3\"\tRelError: 5.80216e-05\tAbsError: 5.59140e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.64593e-06\tAbsError: 2.79191e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.39029e-06\tAbsError: 2.79949e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 5.19076e-05\tAbsError: 1.28091e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.77537e-08\tAbsError: 2.53777e-05\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 8.80082e+01\tAbsError: 3.04330e+17\n", + " Region: \"zone_1\"\tRelError: 4.96041e+00\tAbsError: 5.02588e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.94524e+00\tAbsError: 2.58754e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51680e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 8.30478e+01\tAbsError: 3.04330e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.83560e-01\tAbsError: 1.51919e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.21091e-01\tAbsError: 1.52411e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 8.23280e+01\tAbsError: 2.58727e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.51295e-02\tAbsError: 5.00000e+00\n", + "Iteration: 35\n", + " Device: \"device\"\tRelError: 1.75616e-04\tAbsError: 3.45483e+12\n", + " Region: \"zone_1\"\tRelError: 6.42740e-05\tAbsError: 1.11441e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.39404e-05\tAbsError: 3.93740e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.33571e-07\tAbsError: 1.11401e-04\n", + " Region: \"zone_3\"\tRelError: 1.11342e-04\tAbsError: 3.45483e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.01588e-05\tAbsError: 1.72440e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.42523e-05\tAbsError: 1.73043e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 8.65971e-05\tAbsError: 5.24371e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.33595e-07\tAbsError: 1.11412e-04\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 2.51606e-04\tAbsError: 2.65290e+11\n", + " Region: \"zone_1\"\tRelError: 8.72826e-05\tAbsError: 3.77747e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.71631e-05\tAbsError: 1.29145e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19540e-07\tAbsError: 3.77618e-05\n", + " Region: \"zone_3\"\tRelError: 1.64323e-04\tAbsError: 2.65290e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.62206e-06\tAbsError: 1.32313e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.36629e-06\tAbsError: 1.32978e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.54215e-04\tAbsError: 2.03791e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19550e-07\tAbsError: 3.77657e-05\n", + "Iteration: 50\n", + " Device: \"device\"\tRelError: 3.55525e-04\tAbsError: 2.14238e+11\n", + " Region: \"zone_1\"\tRelError: 1.85999e-04\tAbsError: 1.49294e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.85952e-04\tAbsError: 5.19496e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.65847e-08\tAbsError: 1.49242e-05\n", + " Region: \"zone_3\"\tRelError: 1.69526e-04\tAbsError: 2.14238e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.71104e-06\tAbsError: 1.06880e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.06523e-06\tAbsError: 1.07358e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.65703e-04\tAbsError: 7.85712e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.65883e-08\tAbsError: 1.49257e-05\n", + "Iteration: 44\n", + " Device: \"device\"\tRelError: 9.60515e-05\tAbsError: 4.11850e+11\n", + " Region: \"zone_1\"\tRelError: 5.33126e-05\tAbsError: 1.86974e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.32553e-05\tAbsError: 6.60041e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.72673e-08\tAbsError: 1.86908e-05\n", + " Region: \"zone_3\"\tRelError: 4.27389e-05\tAbsError: 4.11850e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94893e-06\tAbsError: 2.05646e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.49721e-06\tAbsError: 2.06204e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 3.82355e-05\tAbsError: 9.43492e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.72716e-08\tAbsError: 1.86926e-05\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 2.61937e+01\tAbsError: 2.21271e+17\n", + " Region: \"zone_1\"\tRelError: 8.62986e+00\tAbsError: 5.01617e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 8.61492e+00\tAbsError: 1.61728e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49413e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.75639e+01\tAbsError: 2.21271e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.90888e-01\tAbsError: 1.10253e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.65977e-01\tAbsError: 1.11018e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66921e+01\tAbsError: 1.66809e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49040e-02\tAbsError: 5.00000e+00\n", + "Iteration: 36\n", + " Device: \"device\"\tRelError: 1.21566e-04\tAbsError: 2.39143e+12\n", + " Region: \"zone_1\"\tRelError: 4.44923e-05\tAbsError: 7.71391e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.42614e-05\tAbsError: 2.72546e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.30897e-07\tAbsError: 7.71118e-05\n", + " Region: \"zone_3\"\tRelError: 7.70741e-05\tAbsError: 2.39143e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.03187e-06\tAbsError: 1.19363e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.86543e-06\tAbsError: 1.19780e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 5.99459e-05\tAbsError: 3.62968e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.30914e-07\tAbsError: 7.71190e-05\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 2.02661e-04\tAbsError: 2.13673e+11\n", + " Region: \"zone_1\"\tRelError: 7.02950e-05\tAbsError: 3.04248e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 7.01988e-05\tAbsError: 1.04017e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.62806e-08\tAbsError: 3.04144e-05\n", + " Region: \"zone_3\"\tRelError: 1.32366e-04\tAbsError: 2.13673e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.72274e-06\tAbsError: 1.06569e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.32215e-06\tAbsError: 1.07104e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.24225e-04\tAbsError: 1.64139e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.62887e-08\tAbsError: 3.04176e-05\n", + "Iteration: 51\n", + " Device: \"device\"\tRelError: 2.75502e-04\tAbsError: 1.66039e+11\n", + " Region: \"zone_1\"\tRelError: 1.44132e-04\tAbsError: 1.15706e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.44096e-04\tAbsError: 4.02620e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.61041e-08\tAbsError: 1.15666e-05\n", + " Region: \"zone_3\"\tRelError: 1.31370e-04\tAbsError: 1.66039e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.32609e-06\tAbsError: 8.28343e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.60060e-06\tAbsError: 8.32048e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.28407e-04\tAbsError: 6.08943e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.61070e-08\tAbsError: 1.15677e-05\n", + "Iteration: 37\n", + " Device: \"device\"\tRelError: 8.41453e-05\tAbsError: 1.65534e+12\n", + " Region: \"zone_1\"\tRelError: 3.07965e-05\tAbsError: 5.33955e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.06367e-05\tAbsError: 1.88656e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59827e-07\tAbsError: 5.33766e-05\n", + " Region: \"zone_3\"\tRelError: 5.33488e-05\tAbsError: 1.65534e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.86745e-06\tAbsError: 8.26227e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.82883e-06\tAbsError: 8.29115e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 4.14927e-05\tAbsError: 2.51246e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.59838e-07\tAbsError: 5.33816e-05\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 3.06984e+00\tAbsError: 6.11946e+16\n", + " Region: \"zone_1\"\tRelError: 6.30002e-01\tAbsError: 5.00327e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 6.15337e-01\tAbsError: 3.27008e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46647e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 2.43983e+00\tAbsError: 6.11946e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.56903e-01\tAbsError: 3.05565e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.34945e-01\tAbsError: 3.06382e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 2.13332e+00\tAbsError: 3.28689e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46662e-02\tAbsError: 5.00000e+00\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 1.63222e-04\tAbsError: 1.72098e+11\n", + " Region: \"zone_1\"\tRelError: 5.66209e-05\tAbsError: 2.45051e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.65433e-05\tAbsError: 8.37783e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.75472e-08\tAbsError: 2.44967e-05\n", + " Region: \"zone_3\"\tRelError: 1.06602e-04\tAbsError: 1.72098e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.99841e-06\tAbsError: 8.58335e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.48120e-06\tAbsError: 8.62647e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 1.00044e-04\tAbsError: 1.32202e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.75537e-08\tAbsError: 2.44992e-05\n", + "Iteration: 52\n", + " Device: \"device\"\tRelError: 2.13542e-04\tAbsError: 1.28684e+11\n", + " Region: \"zone_1\"\tRelError: 1.11718e-04\tAbsError: 8.96744e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 1.11690e-04\tAbsError: 3.12039e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.79814e-08\tAbsError: 8.96432e-06\n", + " Region: \"zone_3\"\tRelError: 1.01824e-04\tAbsError: 1.28684e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02775e-06\tAbsError: 6.41983e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.24049e-06\tAbsError: 6.44855e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 9.95282e-05\tAbsError: 4.71944e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.79837e-08\tAbsError: 8.96523e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:28\u001b[0m.\u001b[1;36m049\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:28\u001b[0m.\u001b[1;36m075\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mSolving for 1.3 bias\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:28\u001b[0m.\u001b[1;36m090\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mIterating for bias 1.3 V. Current applied bias: 1.3\u001b[0m \n", "Replacing Node Model zone_3_bc_4nodeelectrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Electrons in region zone_3 of material Si\n", "Replacing Node Model zone_3_bc_4nodeelectrons:Holes in region zone_3 of material Si\n", @@ -59605,130 +34312,564 @@ "Replacing Node Model zone_3_bc_5nodemodel:T in region zone_3 of material Si\n", "Warning: Replacing Contact Equation with Contact Equation of the same name.\n", "Contact: zone_3_bc_5, Equation: PotentialEquation\n", - "number of equations 31816\n", - "Iteration: 0\n", - " Device: \"device\"\tRelError: 2.95808e+00\tAbsError: 3.06192e+18\n", - " Region: \"zone_1\"\tRelError: 1.42698e+00\tAbsError: 4.09645e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 1.42698e+00\tAbsError: 4.09530e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.26923e-08\tAbsError: 1.15159e-05\n", - " Region: \"zone_3\"\tRelError: 1.53110e+00\tAbsError: 3.06192e+18\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 4.53961e-01\tAbsError: 1.53038e+18\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 4.42414e-01\tAbsError: 1.53154e+18\n", - " Equation: \"PotentialEquation\"\tRelError: 6.34728e-01\tAbsError: 4.09542e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.27089e-08\tAbsError: 1.15220e-05\n", - "Iteration: 1\n", - " Device: \"device\"\tRelError: 6.86333e-01\tAbsError: 3.15984e+17\n", - " Region: \"zone_1\"\tRelError: 1.55509e-01\tAbsError: 4.51190e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43034e-01\tAbsError: 3.07615e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.24749e-02\tAbsError: 4.48114e+00\n", - " Region: \"zone_3\"\tRelError: 5.30824e-01\tAbsError: 3.15984e+17\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.98537e-01\tAbsError: 1.58139e+17\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.76751e-01\tAbsError: 1.57845e+17\n", - " Equation: \"PotentialEquation\"\tRelError: 1.43059e-01\tAbsError: 3.07632e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.24763e-02\tAbsError: 4.48157e+00\n", - "Iteration: 2\n", - " Device: \"device\"\tRelError: 2.29936e-01\tAbsError: 6.93044e+16\n", - " Region: \"zone_1\"\tRelError: 9.97344e-02\tAbsError: 3.68280e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 8.96071e-02\tAbsError: 2.58695e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.01274e-02\tAbsError: 3.65693e+00\n", - " Region: \"zone_3\"\tRelError: 1.30201e-01\tAbsError: 6.93044e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.50308e-02\tAbsError: 3.46144e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.54055e-02\tAbsError: 3.46900e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 8.96375e-02\tAbsError: 2.58853e-02\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.01274e-02\tAbsError: 3.65693e+00\n", - "Iteration: 3\n", - " Device: \"device\"\tRelError: 1.89249e-01\tAbsError: 9.05371e+16\n", - " Region: \"zone_1\"\tRelError: 3.84471e-02\tAbsError: 2.79280e+00\n", - " Equation: \"PotentialEquation\"\tRelError: 3.06783e-02\tAbsError: 9.16366e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.76879e-03\tAbsError: 2.78363e+00\n", - " Region: \"zone_3\"\tRelError: 1.50802e-01\tAbsError: 9.05371e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 5.62900e-02\tAbsError: 4.52528e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.56716e-02\tAbsError: 4.52844e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 3.10713e-02\tAbsError: 9.16533e-03\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.76879e-03\tAbsError: 2.78363e+00\n", - "Iteration: 4\n", - " Device: \"device\"\tRelError: 8.05096e-02\tAbsError: 5.73831e+16\n", - " Region: \"zone_1\"\tRelError: 1.80246e-02\tAbsError: 2.55628e-01\n", - " Equation: \"PotentialEquation\"\tRelError: 1.73024e-02\tAbsError: 6.33722e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.22135e-04\tAbsError: 2.54994e-01\n", - " Region: \"zone_3\"\tRelError: 6.24850e-02\tAbsError: 5.73831e+16\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 2.05558e-02\tAbsError: 2.86776e+16\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 2.36736e-02\tAbsError: 2.87055e+16\n", - " Equation: \"PotentialEquation\"\tRelError: 1.75308e-02\tAbsError: 6.33885e-04\n", - " Equation: \"TemperatureEquation\"\tRelError: 7.24828e-04\tAbsError: 2.55896e-01\n", - "Iteration: 5\n", - " Device: \"device\"\tRelError: 5.27575e-03\tAbsError: 4.47182e+15\n", - " Region: \"zone_1\"\tRelError: 7.50950e-04\tAbsError: 4.10991e-02\n", - " Equation: \"PotentialEquation\"\tRelError: 6.36726e-04\tAbsError: 4.45500e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.14224e-04\tAbsError: 4.10545e-02\n", - " Region: \"zone_3\"\tRelError: 4.52480e-03\tAbsError: 4.47182e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.81462e-03\tAbsError: 2.22587e+15\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 3.36991e-04\tAbsError: 2.24595e+15\n", - " Equation: \"PotentialEquation\"\tRelError: 2.58880e-04\tAbsError: 4.45567e-05\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.14315e-04\tAbsError: 4.10905e-02\n", - "Iteration: 6\n", - " Device: \"device\"\tRelError: 7.81415e-04\tAbsError: 1.27438e+15\n", - " Region: \"zone_1\"\tRelError: 1.31156e-04\tAbsError: 4.99777e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 1.17293e-04\tAbsError: 9.92832e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.38636e-05\tAbsError: 4.98785e-03\n", - " Region: \"zone_3\"\tRelError: 6.50259e-04\tAbsError: 1.27438e+15\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 3.49678e-04\tAbsError: 6.34942e+14\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 1.67569e-04\tAbsError: 6.39442e+14\n", - " Equation: \"PotentialEquation\"\tRelError: 1.19142e-04\tAbsError: 9.93066e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 1.38699e-05\tAbsError: 4.99010e-03\n", - "Iteration: 7\n", - " Device: \"device\"\tRelError: 1.35366e-04\tAbsError: 7.12812e+13\n", - " Region: \"zone_1\"\tRelError: 2.99971e-05\tAbsError: 1.51242e-03\n", - " Equation: \"PotentialEquation\"\tRelError: 2.57968e-05\tAbsError: 1.28730e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.20023e-06\tAbsError: 1.51114e-03\n", - " Region: \"zone_3\"\tRelError: 1.05369e-04\tAbsError: 7.12812e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 7.89869e-05\tAbsError: 3.53434e+13\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 9.86099e-06\tAbsError: 3.59377e+13\n", - " Equation: \"PotentialEquation\"\tRelError: 1.23191e-05\tAbsError: 1.28770e-06\n", - " Equation: \"TemperatureEquation\"\tRelError: 4.20200e-06\tAbsError: 1.51177e-03\n", + "number of equations 31686\n", + "Iteration: 8\n", + " Device: \"device\"\tRelError: 1.38684e+00\tAbsError: 9.07163e+16\n", + " Region: \"zone_1\"\tRelError: 2.43290e-02\tAbsError: 2.35996e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74863e-02\tAbsError: 2.75083e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.84272e-03\tAbsError: 2.35721e+00\n", + " Region: \"zone_3\"\tRelError: 1.36251e+00\tAbsError: 9.07163e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.14482e-01\tAbsError: 4.50520e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.83168e-02\tAbsError: 4.56642e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.14286e+00\tAbsError: 2.77280e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.84496e-03\tAbsError: 2.35797e+00\n", + "Iteration: 56\n", + " Device: \"device\"\tRelError: 1.31469e-04\tAbsError: 1.38613e+11\n", + " Region: \"zone_1\"\tRelError: 4.56020e-05\tAbsError: 1.97371e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.55396e-05\tAbsError: 6.74775e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.24588e-08\tAbsError: 1.97303e-05\n", + " Region: \"zone_3\"\tRelError: 8.58665e-05\tAbsError: 1.38613e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.41500e-06\tAbsError: 6.91328e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.80385e-06\tAbsError: 6.94801e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 8.05852e-05\tAbsError: 1.06480e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.24640e-08\tAbsError: 1.97324e-05\n", + "Iteration: 0\n", + " Device: \"device\"\tRelError: 3.21972e+00\tAbsError: 4.55975e+18\n", + " Region: \"zone_1\"\tRelError: 1.20968e+00\tAbsError: 4.96287e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.20968e+00\tAbsError: 4.96149e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.21818e-08\tAbsError: 1.37672e-05\n", + " Region: \"zone_3\"\tRelError: 2.01004e+00\tAbsError: 4.55975e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.96935e-01\tAbsError: 2.27870e+18\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.87956e-01\tAbsError: 2.28105e+18\n", + " Equation: \"PotentialEquation\"\tRelError: 8.25147e-01\tAbsError: 4.96159e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.21850e-08\tAbsError: 1.37686e-05\n", + "Iteration: 53\n", + " Device: \"device\"\tRelError: 1.65486e-04\tAbsError: 9.97327e+10\n", + " Region: \"zone_1\"\tRelError: 8.65762e-05\tAbsError: 6.94996e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 8.65545e-05\tAbsError: 2.41837e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16862e-08\tAbsError: 6.94754e-06\n", + " Region: \"zone_3\"\tRelError: 7.89101e-05\tAbsError: 9.97327e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.96529e-07\tAbsError: 4.97551e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.61410e-07\tAbsError: 4.99776e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 7.71305e-05\tAbsError: 3.65766e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16879e-08\tAbsError: 6.94825e-06\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:29\u001b[0m.\u001b[1;36m522\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 57\n", + " Device: \"device\"\tRelError: 1.05886e-04\tAbsError: 1.11643e+11\n", + " Region: \"zone_1\"\tRelError: 3.67306e-05\tAbsError: 1.58968e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.66802e-05\tAbsError: 5.43484e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.03061e-08\tAbsError: 1.58914e-05\n", + " Region: \"zone_3\"\tRelError: 6.91552e-05\tAbsError: 1.11643e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.94511e-06\tAbsError: 5.56816e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.25831e-06\tAbsError: 5.59613e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 6.49014e-05\tAbsError: 8.57618e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.03103e-08\tAbsError: 1.58930e-05\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 1.32466e+00\tAbsError: 5.72895e+16\n", + " Region: \"zone_1\"\tRelError: 1.68402e-01\tAbsError: 7.32615e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.66254e-01\tAbsError: 4.25477e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.14858e-03\tAbsError: 7.32190e-01\n", + " Region: \"zone_3\"\tRelError: 1.15626e+00\tAbsError: 5.72895e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 8.32417e-02\tAbsError: 2.85082e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.17837e-02\tAbsError: 2.87813e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.03908e+00\tAbsError: 4.27198e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.14912e-03\tAbsError: 7.32400e-01\n", + "Iteration: 54\n", + " Device: \"device\"\tRelError: 1.28263e-04\tAbsError: 7.72949e+10\n", + " Region: \"zone_1\"\tRelError: 6.71029e-05\tAbsError: 5.38637e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 6.70861e-05\tAbsError: 1.87429e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68073e-08\tAbsError: 5.38449e-06\n", + " Region: \"zone_3\"\tRelError: 6.11606e-05\tAbsError: 7.72949e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.17327e-07\tAbsError: 3.85612e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.45113e-07\tAbsError: 3.87337e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.97813e-05\tAbsError: 2.83477e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.68086e-08\tAbsError: 5.38504e-06\n", + "Iteration: 1\n", + " Device: \"device\"\tRelError: 1.52176e+02\tAbsError: 1.35419e+18\n", + " Region: \"zone_1\"\tRelError: 2.59399e+00\tAbsError: 5.04302e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.57798e+00\tAbsError: 4.30198e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.60173e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.49582e+02\tAbsError: 1.35419e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.81123e-01\tAbsError: 6.77279e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.60787e-01\tAbsError: 6.76915e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 1.48025e+02\tAbsError: 4.43542e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53072e-02\tAbsError: 5.00000e+00\n", + "Iteration: 58\n", + " Device: \"device\"\tRelError: 8.52853e-05\tAbsError: 8.99205e+10\n", + " Region: \"zone_1\"\tRelError: 2.95830e-05\tAbsError: 1.28038e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.95425e-05\tAbsError: 4.37737e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.05180e-08\tAbsError: 1.27994e-05\n", + " Region: \"zone_3\"\tRelError: 5.57023e-05\tAbsError: 8.99205e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.56665e-06\tAbsError: 4.48476e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.81890e-06\tAbsError: 4.50729e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 5.22762e-05\tAbsError: 6.90751e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.05214e-08\tAbsError: 1.28007e-05\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 7.65503e-01\tAbsError: 6.59662e+15\n", + " Region: \"zone_1\"\tRelError: 5.43383e-02\tAbsError: 2.46392e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 5.36207e-02\tAbsError: 2.64650e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.17612e-04\tAbsError: 2.46128e-01\n", + " Region: \"zone_3\"\tRelError: 7.11165e-01\tAbsError: 6.59662e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.32103e-02\tAbsError: 3.26736e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.94637e-02\tAbsError: 3.32926e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 6.57773e-01\tAbsError: 2.68486e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.17669e-04\tAbsError: 2.46155e-01\n", + "Iteration: 55\n", + " Device: \"device\"\tRelError: 9.94021e-05\tAbsError: 5.99052e+10\n", + " Region: \"zone_1\"\tRelError: 5.20035e-05\tAbsError: 4.17455e-06\n", + " Equation: \"PotentialEquation\"\tRelError: 5.19904e-05\tAbsError: 1.45261e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.30260e-08\tAbsError: 4.17309e-06\n", + " Region: \"zone_3\"\tRelError: 4.73986e-05\tAbsError: 5.99052e+10\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.78441e-07\tAbsError: 2.98858e+10\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.77478e-07\tAbsError: 3.00194e+10\n", + " Equation: \"PotentialEquation\"\tRelError: 4.63296e-05\tAbsError: 2.19700e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.30270e-08\tAbsError: 4.17352e-06\n", + "Iteration: 2\n", + " Device: \"device\"\tRelError: 2.41001e+03\tAbsError: 1.26783e+18\n", + " Region: \"zone_1\"\tRelError: 2.31783e+03\tAbsError: 5.02712e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.31781e+03\tAbsError: 2.71156e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.56744e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 9.21857e+01\tAbsError: 1.26783e+18\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.16459e-01\tAbsError: 6.33561e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.85456e-01\tAbsError: 6.34272e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 9.11687e+01\tAbsError: 2.88211e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50764e-02\tAbsError: 5.00000e+00\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 8.92820e-01\tAbsError: 2.55026e+15\n", + " Region: \"zone_1\"\tRelError: 5.13773e-02\tAbsError: 7.54711e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 5.11562e-02\tAbsError: 7.24896e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.21100e-04\tAbsError: 7.53986e-02\n", + " Region: \"zone_3\"\tRelError: 8.41443e-01\tAbsError: 2.55026e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.40260e-03\tAbsError: 1.24887e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.42729e-03\tAbsError: 1.30139e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 8.27392e-01\tAbsError: 7.34213e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.21130e-04\tAbsError: 7.54113e-02\n", + "Iteration: 3\n", + " Device: \"device\"\tRelError: 1.06295e+02\tAbsError: 5.63745e+17\n", + " Region: \"zone_1\"\tRelError: 2.81261e+01\tAbsError: 5.02583e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.81108e+01\tAbsError: 2.58319e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.52449e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 7.81687e+01\tAbsError: 5.63745e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.81892e-01\tAbsError: 2.81570e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.28243e-01\tAbsError: 2.82176e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 7.77437e+01\tAbsError: 2.58822e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.48525e-02\tAbsError: 5.00000e+00\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 3.07378e-01\tAbsError: 1.15060e+15\n", + " Region: \"zone_1\"\tRelError: 1.02963e-02\tAbsError: 5.90151e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.01244e-02\tAbsError: 3.43932e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71918e-04\tAbsError: 5.89807e-02\n", + " Region: \"zone_3\"\tRelError: 2.97081e-01\tAbsError: 1.15060e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.33786e-03\tAbsError: 5.72294e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.13294e-03\tAbsError: 5.78303e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.85438e-01\tAbsError: 3.48296e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.71930e-04\tAbsError: 5.89862e-02\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:32\u001b[0m.\u001b[1;36m827\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:33\u001b[0m.\u001b[1;36m105\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 4\n", + " Device: \"device\"\tRelError: 9.78152e+01\tAbsError: 3.29026e+17\n", + " Region: \"zone_1\"\tRelError: 4.64651e+00\tAbsError: 5.01730e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 4.63156e+00\tAbsError: 1.73029e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.49494e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 9.31687e+01\tAbsError: 3.29026e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.68705e-01\tAbsError: 1.64290e+17\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.81257e-01\tAbsError: 1.64735e+17\n", + " Equation: \"PotentialEquation\"\tRelError: 9.23041e+01\tAbsError: 1.79899e-02\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.46351e-02\tAbsError: 5.00000e+00\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 3.10053e-01\tAbsError: 7.71196e+14\n", + " Region: \"zone_1\"\tRelError: 1.19481e-02\tAbsError: 4.33342e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.19355e-02\tAbsError: 1.50615e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26618e-05\tAbsError: 4.31836e-03\n", + " Region: \"zone_3\"\tRelError: 2.98105e-01\tAbsError: 7.71196e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.56632e-04\tAbsError: 3.84609e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.28874e-03\tAbsError: 3.86587e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.96047e-01\tAbsError: 1.53466e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.26629e-05\tAbsError: 4.31879e-03\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 6.72149e-02\tAbsError: 3.53250e+14\n", + " Region: \"zone_1\"\tRelError: 5.06177e-04\tAbsError: 1.60108e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 4.59524e-04\tAbsError: 4.95019e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.66522e-05\tAbsError: 1.60059e-02\n", + " Region: \"zone_3\"\tRelError: 6.67087e-02\tAbsError: 3.53250e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.15533e-03\tAbsError: 1.76510e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.94292e-03\tAbsError: 1.76740e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 6.35638e-02\tAbsError: 6.42697e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.66555e-05\tAbsError: 1.60073e-02\n", + "Iteration: 5\n", + " Device: \"device\"\tRelError: 3.64435e+01\tAbsError: 1.73359e+17\n", + " Region: \"zone_1\"\tRelError: 2.23505e+01\tAbsError: 5.00474e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.23359e+01\tAbsError: 4.74193e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.45496e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.40930e+01\tAbsError: 1.73359e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.78491e-01\tAbsError: 8.63577e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.58217e-01\tAbsError: 8.70011e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.35419e+01\tAbsError: 4.76378e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.44240e-02\tAbsError: 5.00000e+00\n", + "Iteration: 15\n", + " Device: \"device\"\tRelError: 8.09811e-02\tAbsError: 2.83886e+14\n", + " Region: \"zone_1\"\tRelError: 3.05586e-03\tAbsError: 4.11591e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.04388e-03\tAbsError: 3.88216e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19855e-05\tAbsError: 4.11203e-03\n", + " Region: \"zone_3\"\tRelError: 7.79253e-02\tAbsError: 2.83886e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.21731e-04\tAbsError: 1.41881e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.98327e-04\tAbsError: 1.42005e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 7.70932e-02\tAbsError: 3.95221e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.19862e-05\tAbsError: 4.11237e-03\n", + "Iteration: 6\n", + " Device: \"device\"\tRelError: 1.49657e+02\tAbsError: 1.29559e+17\n", + " Region: \"zone_1\"\tRelError: 3.90025e+00\tAbsError: 5.00507e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 3.88603e+00\tAbsError: 5.06980e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42221e-02\tAbsError: 5.00000e+00\n", + " Region: \"zone_3\"\tRelError: 1.45757e+02\tAbsError: 1.29559e+17\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.44408e-01\tAbsError: 6.44910e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.26351e-01\tAbsError: 6.50685e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 1.45372e+02\tAbsError: 5.09598e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.42189e-02\tAbsError: 5.00000e+00\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 2.06821e-02\tAbsError: 1.57033e+14\n", + " Region: \"zone_1\"\tRelError: 5.53282e-04\tAbsError: 5.15985e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 5.38246e-04\tAbsError: 1.16029e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50360e-05\tAbsError: 5.15869e-03\n", + " Region: \"zone_3\"\tRelError: 2.01289e-02\tAbsError: 1.57033e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.80551e-04\tAbsError: 7.84400e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.27070e-04\tAbsError: 7.85928e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.91062e-02\tAbsError: 2.11557e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50370e-05\tAbsError: 5.15915e-03\n", + "Iteration: 7\n", + " Device: \"device\"\tRelError: 9.91234e-01\tAbsError: 7.81466e+16\n", + " Region: \"zone_1\"\tRelError: 3.82818e-02\tAbsError: 3.04255e+00\n", + " Equation: \"PotentialEquation\"\tRelError: 2.97815e-02\tAbsError: 3.02736e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.50023e-03\tAbsError: 3.03952e+00\n", + " Region: \"zone_3\"\tRelError: 9.52952e-01\tAbsError: 7.81466e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.67512e-01\tAbsError: 3.87913e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.20834e-01\tAbsError: 3.93553e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 6.56104e-01\tAbsError: 3.05295e-03\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.50201e-03\tAbsError: 3.04015e+00\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 2.29969e-02\tAbsError: 1.12759e+14\n", + " Region: \"zone_1\"\tRelError: 9.32096e-04\tAbsError: 2.26884e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 9.25487e-04\tAbsError: 1.19550e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.60953e-06\tAbsError: 2.26765e-03\n", + " Region: \"zone_3\"\tRelError: 2.20648e-02\tAbsError: 1.12759e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.60029e-04\tAbsError: 5.63328e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.75616e-04\tAbsError: 5.64263e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 2.16226e-02\tAbsError: 1.21608e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.60997e-06\tAbsError: 2.26784e-03\n", "Iteration: 8\n", - " Device: \"device\"\tRelError: 3.58972e-05\tAbsError: 1.82475e+13\n", - " Region: \"zone_1\"\tRelError: 6.53529e-06\tAbsError: 1.30003e-04\n", - " Equation: \"PotentialEquation\"\tRelError: 6.17481e-06\tAbsError: 3.11367e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.60483e-07\tAbsError: 1.29691e-04\n", - " Region: \"zone_3\"\tRelError: 2.93619e-05\tAbsError: 1.82475e+13\n", - " Equation: \"ElectronContinuityEquation\"\tRelError: 1.88247e-05\tAbsError: 9.03485e+12\n", - " Equation: \"HoleContinuityEquation\"\tRelError: 5.04072e-06\tAbsError: 9.21267e+12\n", - " Equation: \"PotentialEquation\"\tRelError: 5.13603e-06\tAbsError: 3.12811e-07\n", - " Equation: \"TemperatureEquation\"\tRelError: 3.60523e-07\tAbsError: 1.29709e-04\n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:09\u001b[0m.\u001b[1;36m742\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:11\u001b[0m.\u001b[1;36m095\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:11\u001b[0m.\u001b[1;36m104\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.0.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:11\u001b[0m.\u001b[1;36m218\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.5.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:11\u001b[0m.\u001b[1;36m350\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.55.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:11\u001b[0m.\u001b[1;36m479\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.6.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:11\u001b[0m.\u001b[1;36m602\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.65.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:11\u001b[0m.\u001b[1;36m740\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.7.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:11\u001b[0m.\u001b[1;36m839\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.75.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:11\u001b[0m.\u001b[1;36m971\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.8.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:12\u001b[0m.\u001b[1;36m100\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.85.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:12\u001b[0m.\u001b[1;36m234\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.9.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:12\u001b[0m.\u001b[1;36m394\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.95.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:12\u001b[0m.\u001b[1;36m529\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.0.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:12\u001b[0m.\u001b[1;36m660\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.05.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:12\u001b[0m.\u001b[1;36m789\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.1.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:12\u001b[0m.\u001b[1;36m913\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.15.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:13\u001b[0m.\u001b[1;36m042\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.2.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:13\u001b[0m.\u001b[1;36m174\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.25.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:13\u001b[0m.\u001b[1;36m306\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.3.vtu\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:13\u001b[0m.\u001b[1;36m436\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mFinished_reading devsim data\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:13\u001b[0m.\u001b[1;36m449\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading heat-charge solver CHARGE output.\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:13\u001b[0m.\u001b[1;36m569\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor charge_global_mnt\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:14\u001b[0m.\u001b[1;36m815\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor potential_global_mnt\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:15\u001b[0m.\u001b[1;36m464\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor capacitance_global_mnt\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:16\u001b[0m.\u001b[1;36m790\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor temp_mnt\u001b[0m \n", - "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m18\u001b[0m \u001b[1;92m15:43:17\u001b[0m.\u001b[1;36m467\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mPostprocess time (s): 6.3579\u001b[0m \n" + " Device: \"device\"\tRelError: 1.24013e+00\tAbsError: 5.73534e+16\n", + " Region: \"zone_1\"\tRelError: 3.84329e-01\tAbsError: 5.81968e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 3.82680e-01\tAbsError: 3.88805e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64818e-03\tAbsError: 5.81579e-01\n", + " Region: \"zone_3\"\tRelError: 8.55799e-01\tAbsError: 5.73534e+16\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 6.56071e-02\tAbsError: 2.85497e+16\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.77913e-02\tAbsError: 2.88037e+16\n", + " Equation: \"PotentialEquation\"\tRelError: 7.50753e-01\tAbsError: 3.90872e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.64837e-03\tAbsError: 5.81672e-01\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 7.37621e-03\tAbsError: 6.82290e+13\n", + " Region: \"zone_1\"\tRelError: 3.59210e-04\tAbsError: 1.89097e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.53700e-04\tAbsError: 5.16849e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.51010e-06\tAbsError: 1.89046e-03\n", + " Region: \"zone_3\"\tRelError: 7.01700e-03\tAbsError: 6.82290e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.41384e-04\tAbsError: 3.40707e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.29872e-04\tAbsError: 3.41583e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 6.64024e-03\tAbsError: 7.85788e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.51048e-06\tAbsError: 1.89063e-03\n", + "Iteration: 9\n", + " Device: \"device\"\tRelError: 3.69440e-01\tAbsError: 5.44354e+15\n", + " Region: \"zone_1\"\tRelError: 1.13513e-01\tAbsError: 2.86068e-01\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12704e-01\tAbsError: 2.46308e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.08410e-04\tAbsError: 2.85821e-01\n", + " Region: \"zone_3\"\tRelError: 2.55927e-01\tAbsError: 5.44354e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.68436e-02\tAbsError: 2.71798e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.23012e-02\tAbsError: 2.72556e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.95974e-01\tAbsError: 2.49626e-04\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.08470e-04\tAbsError: 2.85850e-01\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 7.65745e-03\tAbsError: 4.59804e+13\n", + " Region: \"zone_1\"\tRelError: 3.29793e-04\tAbsError: 1.04035e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 3.26762e-04\tAbsError: 4.25759e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.03107e-06\tAbsError: 1.03992e-03\n", + " Region: \"zone_3\"\tRelError: 7.32766e-03\tAbsError: 4.59804e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.68534e-05\tAbsError: 2.29702e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.26444e-04\tAbsError: 2.30102e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 7.12133e-03\tAbsError: 4.32860e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.03127e-06\tAbsError: 1.04002e-03\n", + "Iteration: 10\n", + " Device: \"device\"\tRelError: 2.30553e-01\tAbsError: 5.36660e+15\n", + " Region: \"zone_1\"\tRelError: 1.07567e-01\tAbsError: 3.49547e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.07468e-01\tAbsError: 7.42130e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.87791e-05\tAbsError: 3.48805e-02\n", + " Region: \"zone_3\"\tRelError: 1.22986e-01\tAbsError: 5.36660e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.60117e-03\tAbsError: 2.67865e+15\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.77163e-03\tAbsError: 2.68795e+15\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12514e-01\tAbsError: 7.56682e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.87876e-05\tAbsError: 3.48840e-02\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 3.56226e-03\tAbsError: 2.88701e+13\n", + " Region: \"zone_1\"\tRelError: 1.71736e-04\tAbsError: 7.43512e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.69570e-04\tAbsError: 2.33156e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16643e-06\tAbsError: 7.43279e-04\n", + " Region: \"zone_3\"\tRelError: 3.39053e-03\tAbsError: 2.88701e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.58676e-05\tAbsError: 1.44255e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.03845e-05\tAbsError: 1.44446e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.24211e-03\tAbsError: 3.10489e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.16658e-06\tAbsError: 7.43345e-04\n", + "Iteration: 11\n", + " Device: \"device\"\tRelError: 4.89608e-02\tAbsError: 1.27561e+15\n", + " Region: \"zone_1\"\tRelError: 1.27751e-02\tAbsError: 6.63057e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25877e-02\tAbsError: 2.56311e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87423e-04\tAbsError: 6.62801e-02\n", + " Region: \"zone_3\"\tRelError: 3.61857e-02\tAbsError: 1.27561e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.53654e-03\tAbsError: 6.36609e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.56083e-03\tAbsError: 6.38999e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.39009e-02\tAbsError: 2.74083e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.87435e-04\tAbsError: 6.62858e-02\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 2.85908e-03\tAbsError: 1.89594e+13\n", + " Region: \"zone_1\"\tRelError: 1.27394e-04\tAbsError: 4.49269e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.26085e-04\tAbsError: 1.65020e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.30900e-06\tAbsError: 4.49104e-04\n", + " Region: \"zone_3\"\tRelError: 2.73168e-03\tAbsError: 1.89594e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.36084e-05\tAbsError: 9.47133e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 5.46104e-05\tAbsError: 9.48812e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.64216e-03\tAbsError: 1.86783e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.30909e-06\tAbsError: 4.49143e-04\n", + "Iteration: 12\n", + " Device: \"device\"\tRelError: 4.82375e-02\tAbsError: 1.39793e+15\n", + " Region: \"zone_1\"\tRelError: 2.42666e-02\tAbsError: 1.07941e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 2.42361e-02\tAbsError: 1.63906e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.04776e-05\tAbsError: 1.07777e-02\n", + " Region: \"zone_3\"\tRelError: 2.39709e-02\tAbsError: 1.39793e+15\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.10125e-03\tAbsError: 6.98784e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.67041e-03\tAbsError: 6.99145e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.11688e-02\tAbsError: 1.67003e-05\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.04794e-05\tAbsError: 1.07785e-02\n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 1.61127e-03\tAbsError: 1.20929e+13\n", + " Region: \"zone_1\"\tRelError: 7.52464e-05\tAbsError: 3.02018e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 7.43664e-05\tAbsError: 9.99921e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.79998e-07\tAbsError: 3.01918e-04\n", + " Region: \"zone_3\"\tRelError: 1.53602e-03\tAbsError: 1.20929e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.27242e-05\tAbsError: 6.04236e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 3.67140e-05\tAbsError: 6.05057e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.47570e-03\tAbsError: 1.26291e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 8.80059e-07\tAbsError: 3.01944e-04\n", + "Iteration: 13\n", + " Device: \"device\"\tRelError: 7.60540e-03\tAbsError: 5.62127e+14\n", + " Region: \"zone_1\"\tRelError: 2.01898e-03\tAbsError: 1.77011e-02\n", + " Equation: \"PotentialEquation\"\tRelError: 1.96894e-03\tAbsError: 3.50919e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.00433e-05\tAbsError: 1.76976e-02\n", + " Region: \"zone_3\"\tRelError: 5.58642e-03\tAbsError: 5.62127e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.06176e-03\tAbsError: 2.80913e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.02972e-03\tAbsError: 2.81214e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 2.44489e-03\tAbsError: 6.40878e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.00466e-05\tAbsError: 1.76991e-02\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 1.13410e-03\tAbsError: 7.85645e+12\n", + " Region: \"zone_1\"\tRelError: 5.13411e-05\tAbsError: 1.89679e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.07884e-05\tAbsError: 6.66062e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.52662e-07\tAbsError: 1.89612e-04\n", + " Region: \"zone_3\"\tRelError: 1.08276e-03\tAbsError: 7.85645e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.42451e-05\tAbsError: 3.92472e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.30570e-05\tAbsError: 3.93173e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.04491e-03\tAbsError: 7.91683e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.52700e-07\tAbsError: 1.89629e-04\n", + "Iteration: 14\n", + " Device: \"device\"\tRelError: 1.18467e-02\tAbsError: 4.34801e+14\n", + " Region: \"zone_1\"\tRelError: 6.09560e-03\tAbsError: 6.25166e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 6.07793e-03\tAbsError: 4.16502e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76663e-05\tAbsError: 6.24749e-03\n", + " Region: \"zone_3\"\tRelError: 5.75110e-03\tAbsError: 4.34801e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.56709e-04\tAbsError: 2.17305e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.16104e-04\tAbsError: 2.17496e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 4.66062e-03\tAbsError: 4.24066e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.76674e-05\tAbsError: 6.24800e-03\n", + "Iteration: 24\n", + " Device: \"device\"\tRelError: 6.92152e-04\tAbsError: 5.04415e+12\n", + " Region: \"zone_1\"\tRelError: 3.19452e-05\tAbsError: 1.24400e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.15827e-05\tAbsError: 4.20907e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.62467e-07\tAbsError: 1.24358e-04\n", + " Region: \"zone_3\"\tRelError: 6.60207e-04\tAbsError: 5.04415e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 9.36240e-06\tAbsError: 2.52015e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.51223e-05\tAbsError: 2.52400e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.35360e-04\tAbsError: 5.20321e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.62492e-07\tAbsError: 1.24369e-04\n", + "Iteration: 15\n", + "Iteration: 25\n", + " Device: \"device\"\tRelError: 3.61276e-03\tAbsError: 2.21974e+14\n", + " Region: \"zone_1\"\tRelError: 1.76073e-03\tAbsError: 5.41923e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.74541e-03\tAbsError: 1.26912e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53203e-05\tAbsError: 5.41796e-03\n", + " Region: \"zone_3\"\tRelError: 1.85203e-03\tAbsError: 2.21974e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.11485e-04\tAbsError: 1.10920e+14\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.22217e-04\tAbsError: 1.11054e+14\n", + " Equation: \"PotentialEquation\"\tRelError: 9.03006e-04\tAbsError: 1.87857e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.53213e-05\tAbsError: 5.41842e-03\n", + " Device: \"device\"\tRelError: 4.62416e-04\tAbsError: 3.26267e+12\n", + " Region: \"zone_1\"\tRelError: 2.10770e-05\tAbsError: 7.93685e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 2.08458e-05\tAbsError: 2.74950e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.31255e-07\tAbsError: 7.93410e-05\n", + " Region: \"zone_3\"\tRelError: 4.41339e-04\tAbsError: 3.26267e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.96849e-06\tAbsError: 1.62995e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.64799e-06\tAbsError: 1.63272e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.25491e-04\tAbsError: 3.31703e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.31271e-07\tAbsError: 7.93480e-05\n", + "Iteration: 26\n", + " Device: \"device\"\tRelError: 2.91599e-04\tAbsError: 2.10031e+12\n", + " Region: \"zone_1\"\tRelError: 1.33964e-05\tAbsError: 5.15358e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 1.32462e-05\tAbsError: 1.75900e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50160e-07\tAbsError: 5.15183e-05\n", + " Region: \"zone_3\"\tRelError: 2.78203e-04\tAbsError: 2.10031e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.87859e-06\tAbsError: 1.04932e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 6.26473e-06\tAbsError: 1.05099e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.67910e-04\tAbsError: 2.15555e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.50170e-07\tAbsError: 5.15228e-05\n", + "Iteration: 16\n", + " Device: \"device\"\tRelError: 3.46437e-03\tAbsError: 1.47453e+14\n", + " Region: \"zone_1\"\tRelError: 1.78289e-03\tAbsError: 2.60238e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 1.77553e-03\tAbsError: 1.23195e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.35528e-06\tAbsError: 2.60114e-03\n", + " Region: \"zone_3\"\tRelError: 1.68148e-03\tAbsError: 1.47453e+14\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.44841e-04\tAbsError: 7.36895e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.98675e-04\tAbsError: 7.37635e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.23061e-03\tAbsError: 1.25365e-06\n", + " Equation: \"TemperatureEquation\"\tRelError: 7.35576e-06\tAbsError: 2.60136e-03\n", + "Iteration: 27\n", + " Device: \"device\"\tRelError: 1.90763e-04\tAbsError: 1.35613e+12\n", + " Region: \"zone_1\"\tRelError: 8.71970e-06\tAbsError: 3.30913e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 8.62329e-06\tAbsError: 1.14029e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.64179e-08\tAbsError: 3.30799e-05\n", + " Region: \"zone_3\"\tRelError: 1.82043e-04\tAbsError: 1.35613e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.48959e-06\tAbsError: 6.77503e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.02258e-06\tAbsError: 6.78629e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.75435e-04\tAbsError: 1.38361e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 9.64246e-08\tAbsError: 3.30828e-05\n", + "Iteration: 17\n", + " Device: \"device\"\tRelError: 1.53636e-03\tAbsError: 8.27252e+13\n", + " Region: \"zone_1\"\tRelError: 7.88225e-04\tAbsError: 1.80569e-03\n", + " Equation: \"PotentialEquation\"\tRelError: 7.83120e-04\tAbsError: 5.56632e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.10436e-06\tAbsError: 1.80513e-03\n", + " Region: \"zone_3\"\tRelError: 7.48138e-04\tAbsError: 8.27252e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.02527e-04\tAbsError: 4.13504e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.07348e-04\tAbsError: 4.13748e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 4.33159e-04\tAbsError: 6.18260e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 5.10469e-06\tAbsError: 1.80528e-03\n", + "Iteration: 28\n", + " Device: \"device\"\tRelError: 1.21909e-04\tAbsError: 8.73936e+11\n", + " Region: \"zone_1\"\tRelError: 5.59033e-06\tAbsError: 2.14000e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 5.52797e-06\tAbsError: 7.32989e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.23533e-08\tAbsError: 2.13927e-05\n", + " Region: \"zone_3\"\tRelError: 1.16319e-04\tAbsError: 8.73936e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.61051e-06\tAbsError: 4.36615e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.60140e-06\tAbsError: 4.37321e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12045e-04\tAbsError: 8.95051e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.23576e-08\tAbsError: 2.13946e-05\n", + "Iteration: 18\n", + " Device: \"device\"\tRelError: 1.12700e-03\tAbsError: 5.16938e+13\n", + " Region: \"zone_1\"\tRelError: 5.79407e-04\tAbsError: 9.87080e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 5.76617e-04\tAbsError: 4.02939e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.79003e-06\tAbsError: 9.86677e-04\n", + " Region: \"zone_3\"\tRelError: 5.47589e-04\tAbsError: 5.16938e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 5.55077e-05\tAbsError: 2.58333e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.13325e-04\tAbsError: 2.58605e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 3.75966e-04\tAbsError: 4.09918e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.79021e-06\tAbsError: 9.86759e-04\n", + "Iteration: 29\n", + " Device: \"device\"\tRelError: 7.90774e-05\tAbsError: 5.63883e+11\n", + " Region: \"zone_1\"\tRelError: 3.61880e-06\tAbsError: 1.37767e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 3.57865e-06\tAbsError: 4.73705e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.01412e-08\tAbsError: 1.37720e-05\n", + " Region: \"zone_3\"\tRelError: 7.54586e-05\tAbsError: 5.63883e+11\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.03665e-06\tAbsError: 2.81709e+11\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.67470e-06\tAbsError: 2.82173e+11\n", + " Equation: \"PotentialEquation\"\tRelError: 7.27071e-05\tAbsError: 5.76123e-09\n", + " Equation: \"TemperatureEquation\"\tRelError: 4.01439e-08\tAbsError: 1.37732e-05\n", + "Iteration: 19\n", + " Device: \"device\"\tRelError: 5.95919e-04\tAbsError: 3.01494e+13\n", + " Region: \"zone_1\"\tRelError: 3.06007e-04\tAbsError: 6.27470e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 3.04233e-04\tAbsError: 2.14742e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77369e-06\tAbsError: 6.27255e-04\n", + " Region: \"zone_3\"\tRelError: 2.89912e-04\tAbsError: 3.01494e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 3.55005e-05\tAbsError: 1.50673e+13\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 7.20505e-05\tAbsError: 1.50821e+13\n", + " Equation: \"PotentialEquation\"\tRelError: 1.80587e-04\tAbsError: 2.18371e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.77380e-06\tAbsError: 6.27308e-04\n", + "Iteration: 20\n", + " Device: \"device\"\tRelError: 3.87275e-04\tAbsError: 1.83728e+13\n", + " Region: \"zone_1\"\tRelError: 1.99019e-04\tAbsError: 3.62031e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.97995e-04\tAbsError: 1.38824e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02332e-06\tAbsError: 3.61892e-04\n", + " Region: \"zone_3\"\tRelError: 1.88256e-04\tAbsError: 1.83728e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 2.04162e-05\tAbsError: 9.18148e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 4.15676e-05\tAbsError: 9.19134e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 1.25249e-04\tAbsError: 1.41209e-07\n", + " Equation: \"TemperatureEquation\"\tRelError: 1.02339e-06\tAbsError: 3.61923e-04\n", + "Iteration: 21\n", + " Device: \"device\"\tRelError: 2.20398e-04\tAbsError: 1.08865e+13\n", + " Region: \"zone_1\"\tRelError: 1.13209e-04\tAbsError: 2.22158e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 1.12581e-04\tAbsError: 7.92626e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.27973e-07\tAbsError: 2.22079e-04\n", + " Region: \"zone_3\"\tRelError: 1.07189e-04\tAbsError: 1.08865e+13\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 1.25546e-05\tAbsError: 5.44028e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 2.55091e-05\tAbsError: 5.44625e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 6.84975e-05\tAbsError: 8.06105e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 6.28013e-07\tAbsError: 2.22097e-04\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:49\u001b[0m.\u001b[1;36m263\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "Iteration: 22\n", + " Device: \"device\"\tRelError: 1.36456e-04\tAbsError: 6.56708e+12\n", + " Region: \"zone_1\"\tRelError: 7.01122e-05\tAbsError: 1.31057e-04\n", + " Equation: \"PotentialEquation\"\tRelError: 6.97417e-05\tAbsError: 4.89702e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.70452e-07\tAbsError: 1.31008e-04\n", + " Region: \"zone_3\"\tRelError: 6.63441e-05\tAbsError: 6.56708e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 7.39749e-06\tAbsError: 3.28176e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 1.50481e-05\tAbsError: 3.28532e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 4.35280e-05\tAbsError: 4.98085e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 3.70476e-07\tAbsError: 1.31019e-04\n", + "Iteration: 23\n", + " Device: \"device\"\tRelError: 8.00480e-05\tAbsError: 3.91648e+12\n", + " Region: \"zone_1\"\tRelError: 4.11217e-05\tAbsError: 7.92800e-05\n", + " Equation: \"PotentialEquation\"\tRelError: 4.08976e-05\tAbsError: 2.87653e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24099e-07\tAbsError: 7.92512e-05\n", + " Region: \"zone_3\"\tRelError: 3.89263e-05\tAbsError: 3.91648e+12\n", + " Equation: \"ElectronContinuityEquation\"\tRelError: 4.47844e-06\tAbsError: 1.95717e+12\n", + " Equation: \"HoleContinuityEquation\"\tRelError: 9.10316e-06\tAbsError: 1.95931e+12\n", + " Equation: \"PotentialEquation\"\tRelError: 2.51206e-05\tAbsError: 2.92557e-08\n", + " Equation: \"TemperatureEquation\"\tRelError: 2.24113e-07\tAbsError: 7.92578e-05\n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:52\u001b[0m.\u001b[1;36m560\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:53\u001b[0m.\u001b[1;36m557\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mDEVSIM output has been saved!\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:53\u001b[0m.\u001b[1;36m564\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.0.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:53\u001b[0m.\u001b[1;36m656\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.5.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:53\u001b[0m.\u001b[1;36m748\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.55.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:53\u001b[0m.\u001b[1;36m836\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.6.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:53\u001b[0m.\u001b[1;36m924\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.65.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:54\u001b[0m.\u001b[1;36m012\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.7.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:54\u001b[0m.\u001b[1;36m100\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.75.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:54\u001b[0m.\u001b[1;36m188\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.8.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:54\u001b[0m.\u001b[1;36m276\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.85.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:54\u001b[0m.\u001b[1;36m368\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.9.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:54\u001b[0m.\u001b[1;36m456\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_0.95.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:54\u001b[0m.\u001b[1;36m543\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.0.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:54\u001b[0m.\u001b[1;36m632\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.05.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:54\u001b[0m.\u001b[1;36m720\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.1.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:54\u001b[0m.\u001b[1;36m807\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.15.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:54\u001b[0m.\u001b[1;36m895\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.2.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:54\u001b[0m.\u001b[1;36m982\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.25.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:55\u001b[0m.\u001b[1;36m070\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading file ./tmp/devsim_bias_1.3.vtu\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:55\u001b[0m.\u001b[1;36m158\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mFinished_reading devsim data\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:55\u001b[0m.\u001b[1;36m165\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mSUPPORT\u001b[1m]\u001b[0m: \u001b[39mReading heat-charge solver CHARGE output.\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:55\u001b[0m.\u001b[1;36m253\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor charge_global_mnt\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:56\u001b[0m.\u001b[1;36m255\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor potential_global_mnt\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:56\u001b[0m.\u001b[1;36m776\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor capacitance_global_mnt\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:57\u001b[0m.\u001b[1;36m813\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mProcessing data for monitor temp_mnt\u001b[0m \n", + "\u001b[1m[\u001b[0m\u001b[1;36m25\u001b[0m-\u001b[1;36m08\u001b[0m-\u001b[1;36m27\u001b[0m \u001b[1;92m13:38:58\u001b[0m.\u001b[1;36m335\u001b[0m\u001b[1m]\u001b[0m\u001b[1m[\u001b[0mUSER \u001b[1m]\u001b[0m: \u001b[39mPostprocess time (s): 4.7698\u001b[0m \n" ] }, { "data": { "text/plain": [ - "CompletedProcess(args=['cp', 'output/simulation_data.hdf5', 'tmp_B_example/'], returncode=0)" + "CompletedProcess(args=['cp', 'output/simulation_data.hdf5', 'tmp_Ba_example/'], returncode=0)" ] }, "execution_count": 18, @@ -59787,7 +34928,7 @@ "outputs": [ { "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAABVYAAAGWCAYAAACTnti1AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8fJSN1AAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOx9aaAdRdH20+eS3IRsJJAQ1oTVgApBECSCgAJBQQwCr8QICQIuCL5sougnq4go66uyy6oRBAXBBVAEQUAEQUAUBQQUJAlbIBAg4Z76fkwvVdU9c+ace2/WfpJzZ7q7urt6melnarp7DBERMjIyMjIyMjIyMjIyMjIyMjIyMjIyaqOxuBXIyMjIyMjIyMjIyMjIyMjIyMjIyFjakA2rGRkZGRkZGRkZGRkZGRkZGRkZGRltIhtWMzIyMjIyMjIyMjIyMjIyMjIyMjLaRDasZmRkZGRkZGRkZGRkZGRkZGRkZGS0iWxYzcjIyMjIyMjIyMjIyMjIyMjIyMhoE9mwmpGRkZGRkZGRkZGRkZGRkZGRkZHRJrJhNSMjIyMjIyMjIyMjIyMjIyMjIyOjTWTDakZGRkZGRkZGRkZGRkZGRkZGRkZGm8iG1YyMjIyMjIyMjIyMjIyMjIyMjIyMNpENqxl9BmMMjj/++MWtRsZyiuOPPx7GmI7ibr/99th+++07zlv3/UsvvRTGGDz11FMdp1kXM2bMwPjx4737qaeegjEGp512Wr/nDfSu3pdU3HjjjZg4cSIGDRoEYwzmzp0LALjiiiswYcIEDBgwACuttNJi1TEjIyMjo3NkzpqxOHHbbbfBGIPbbrut7bi95V2a8zreeOmll3acZl2k+PH48eOx22679XveQO/qfUnFY489hp133hkjRoyAMQbXXXcdAODee+/FpEmTMGTIEBhj8Je//GWx6pmRsawjG1YzSuEGP/4bM2YMdthhB/z6179e3Or1C37wgx9go402wqBBg7DBBhvgu9/9bq14bqBO/f74xz+Wxlu4cCFWWWUVbLPNNqUyRIS11loL73nPe9ouTxnGjx8fteu2226La6+9tu20/va3v+H4449fJEbE+fPn4/jjj1+mCJHDkly2JVm3utB9nv922WUXL/fiiy/if/7nfzB48GB8//vfxxVXXIEhQ4bg0UcfxYwZM7DeeuvhwgsvxAUXXFA7b/cQ5H4rrrgi1l57bXz0ox/FJZdcgrfeeqs07i9+8QvssssuWHnllTFo0CBsuOGGOOqoo/Diiy8m5W+44QZst912GDNmDFZccUWsu+66+J//+R/ceOON9SsrIyMjYynD8sZZzz33XOy9995Ye+21YYzBjBkzasd99NFHcfTRR2PixIkYNmwYVlttNey666647777WsbdfffdseKKK2LevHmlMtOmTcPAgQNLx6l2MWPGDNGuw4cPx6abborTTz+9cvxMYVHzmXPOOWeRGCwXB5bksi3JutWB7vP8N2jQICE7ffp0PPzwwzj55JNxxRVXYIsttsDChQux995746WXXsKZZ56JK664AuPGjauVt36m7e7uxqqrrortt98e3/zmN/H888+Xxn3kkUfwqU99CmussQa6u7ux+uqrY9q0aXjkkUeS8g8//DD22msvjBs3DoMGDcIaa6yBnXbaqfbzd0bGkoQVFrcCGUs+TjzxRKyzzjogIsyePRuXXnopPvKRj+CGG24QbxjfeOMNrLDC0tulzj//fHzuc5/DnnvuiSOOOAJ33HEHvvjFL2L+/Pn48pe/XCuNL37xi3jve98r/NZff/1S+QEDBmDvvffG+eefj6effjo56N1+++145plncPjhh7dXoBaYOHEijjzySADAf//7X5x//vn4+Mc/jnPPPRef+9znaqfzt7/9DSeccAK23357MXOyPzB//nyccMIJABDNMP1//+//4Stf+Uq/5l8X++67L/bZZx90d3fXjlNVtipceOGFaDab7arYFpaWem8F3uc5Vl99dX9+7733Yt68eTjppJOw4447ev/bbrsNzWYTZ599duU1XYVzzz0XQ4cOxVtvvYVnn30WN910Ez796U/jrLPOwi9+8QustdZaQv6oo47C6aefjk033RRf/vKXMWrUKNx///343ve+hyuvvBK33HIL3vGOd3j50047DV/60pew3Xbb4ZhjjsGKK66Ixx9/HL/97W9x5ZVXCgNyRkZGxrKI5YWznnrqqZg3bx623HJLPPfcc23Fveiii/CDH/wAe+65Jw4++GC88sorOP/88/G+970PN954oxj7NKZNm4YbbrgB1157Lfbbb78ofP78+fj5z3/uXwj2Fbq7u3HRRRcBAObOnYuf/vSnOOqoo3DvvffiyiuvrJ1Op1yrU5xzzjlYZZVVIsP3Bz7wAbzxxhsYOHBg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JZdg7733xo033lh5XaXQbr1feuml2H///fHe974Xp5xyCmbPno2zzz4bd955Jx544AFh+Gv1rNLXSHHWgQMHYvjw4fj4xz+OlVZaCYcffjimTp2Kj3zkIxg6dChWXXVVrLHGGvjmN7/pl/O3w/tbwXH2m2++GSeffDKAYn//8ePHY9ttt03G+cAHPoDx48eLiUrjxo3D3Xffjb/+9a9417ve1Wf6ZfQOmbP2ApSRUYJLLrmEAES/7u5uuvTSSyN5AHTcccd59/z58yOZu+++mwDQ5Zdf7v023XRT2nXXXdvW78knn0zql/rdeuutlWl94QtfoK6urmTY6NGjaZ999qmMf+edd9Kee+5JP/jBD+jnP/85nXLKKbTyyivToEGD6P77729ZlkceeYQA0DHHHCP899lnHxo0aBC98sorLdNoB+PGjaOdd96Znn/+eXr++efpwQcfpH322YcA0KGHHkpERFOmTKGBAwfSE0884eP997//pWHDhtEHPvAB73f11Vcn63jevHm00kor0UEHHST8Z82aRSNGjBD+06dPJwB04oknCtnNNtuMNt98c+9+/vnno37mcNxxx5G+paX64OTJk2ndddcVfttttx1tt912kSzHX/7yFwJABx98sPD/5Cc/Genkrp0nn3ySiIiuvfZaAkD33ntvafpVZXP185WvfCUZNm7cOO9218XgwYPpmWee8f733HMPAaDDDz+8Zbl1mu3Uu6unAw88UMgdddRRBIB+97vfeb9x48YRALr99tu935w5c6i7u5uOPPLIKK/ewOWV+p1yyilezrWdbitXzueff77tvFvFffnllwkA7bHHHkREdN111xEAOvPMMyvTHT58OL3nPe/x7mOPPZYA0JAhQ+jDH/4wnXzyyfTnP/+5bX0z+g7NZpOe+uvD9MLzc3r1e/GFF6jZbC7u4mRkLLFYnjirxpAhQ2j69Olt68Rx++23kzGGvv71r7eUffvtt2m11VajrbfeWvifd955BIBuuummXumiMX36dBoyZIjnrI8//jh985vfJGMMbbLJJkREdNZZZxEA+uEPf+jjLViwgLbeemsaOnQovfrqq0RUzWc+9KEP0bvf/W568803vV+z2aRJkybRBhts4P1cX9txxx3Fffnwww+nrq4umjt3rvd75zvfmeRZt956a9TWqT54yimnkDGGnn76ae+X4rsaCxYsoDFjxtDEiRPprbfe8v4XXHABARA6ub55ySWXEFHgJN/5zncq8ygrm6ufbbbZht5+++1kmOPHRIGf/fSnP/V+r7zyCq222mq02WabtSx3Ks269e7q6V3vehe98cYbXu4Xv/gFAaBjjz3W+9V9VukLuLxSv8mTJ3s513a6rVw5r7766rbzrhN30003pZEjRxIR0dy5cwkAfexjH6tMd/fddycA/lq8+eabqauri7q6umjrrbemo48+mm666SZasGBB2zpn9A0yZ+0d8ozVjJb4/ve/jw033BAAMHv2bPzwhz/EgQceiGHDhvm3vSnwt9ULFy7Eq6++ivXXXx8rrbQS7r//fuy7774AimVajzzyCB577DFssMEGtfUaO3Zs7aVXm266aWV41UbmgwYNarkMZ9KkSZg0aZJ377777thrr72wySab4Jhjjmn5Re6NN94Ym222Ga688kp885vfBFDsR3T99ddjt912K5211hvcfPPNYrlGV1cX9t13X5x66qno6enBzTffjClTpvi9cABgtdVWwyc/+UlceOGFePXVVyv1+s1vfoO5c+di6tSp4o1rV1cXttpqK9x6661RHL2367bbbosrrrii4zLyPvjKK69g4cKF2G677XDTTTfhlVdewYgRI2qn9atf/QpAsZk7x2GHHZbcxoHDve3+xS9+gU033bTjmSjtvA2fMmUK1lhjDe/ecsstsdVWW+FXv/oVzjjjjI7yrwNXT0cccYTwP/LII3Haaafhl7/8JXbYYQfvv/HGG4s33KNHj8Y73vEO/Otf/+pz3bbaait84xvfiPzbue/0B9ySTPeVZXccNmxYZbxhw4bh1Vdf9e4TTjgBEyZMwDnnnIObbroJv/71r/G1r30Nm222GX70ox/5meQZiw5EhKGrroqLN98MCyq+ol2FgcOG4dN/fgBEtHzOAMjIaAPLA2fta8yZMwef/OQnsc466+Doo49uKd/V1YV99tkHZ555Jp566im/+mjmzJlYddVV8aEPfajPdXz99dejJcaTJk3yHPFXv/oVxo4di6lTp/rwAQMG4Itf/CKmTp2K3//+92KPXY2XXnoJv/vd73DiiSdi3rx5fhwGgMmTJ+O4447Ds88+K3jVZz7zGXFP3nbbbXHmmWfi6aef7mhVC++Dr7/+Ot544w1MmjQJRIQHHngAa6+9du207rvvPsyZMwcnnniieL6ZMWMGvvSlL7XUY+DAgbjttttwwAEH1PrGRAoHHXRQ7f1UV199dTEjePjw4dhvv/1w6qmnYtasWRg7dmxHOrSCq6fjjz9e7L266667YsKECfjlL3/pP3bm0NfPKmUYNGgQbrjhhsi/zqzy/sbQoUM74qwA8Oqrr2LYsGHYaaedcPfdd+OUU07BTTfdhLvvvhvf/va3MXr0aFx00UX9vp1IRozMWXuHbFjNaIktt9xSLGefOnUqNttsMxxyyCHYbbfdSg2Sb7zxBk455RRccsklePbZZ8W08ldeecWfn3jiifjYxz6GDTfcEO9617uwyy67YN99921JSgYNGlS5wX47GDx4MBYsWJAMe/PNNzta0rT++uvjYx/7GH72s5+hp6enJbmYNm0ajjrqKNx1112YNGkSrrvuOsyfP7/WNgDPP/+82N9n6NChLT9m4IxMxhisuOKK2GijjbwBcNasWZg/f7744rjDRhtthGazif/85z+VS7Ufe+wxAIi+GumgjbKDBg2KSPPIkSPx8ssvV5ajCnfeeSeOO+443H333Zg/f74Ia9ew+vTTT6PRaGC99dYT/qk60thuu+2w55574oQTTsCZZ56J7bffHlOmTMEnP/nJ2l9GXWGFFfweVXWQeuDbcMMN8ZOf/KR2Gp3A1dP6668v/MeOHYuVVloJTz/9tPBPPSjUafdO+vwqq6zSZ/eMvsRrr70GIJBOd5zXgtTMmzcv2odq6tSpmDp1Kl599VXcc889uPTSSzFz5kx89KMfxV//+tel5qMNyxrefm0eel5/rbO4yxcvzcjoFZYHztqXeP3117Hbbrth3rx5+MMf/lD7Q1jTpk3DmWeeiZkzZ+KrX/0qnnnmGdxxxx344he/2JLvvvLKK2LCwsCBA1tuX8ONTN3d3VhnnXUEJ3r66aexwQYboNGQnw9xLxQ199B4/PHHQUT4+te/jq9//etJmTlz5gjDquYvzgDZKW/997//jWOPPRbXX399lAbvg3Xgyqu54IABA8SEiRS6u7tx6qmn4sgjj8Sqq66K973vfdhtt92w3377tWXgXGeddWrLrr/++pERxr0geeqpp/rNsOrqKcXlJ0yYgD/84Q/Cr9NnlU76fFdX1xJ5zwAK3toJZ+XyQPE9g5/97GdYsGABHnzwQVx77bU488wzsddee+Evf/kLNt54434qQUYVMmftDNmwmtE2Go0GdthhB5x99tl47LHHSo1rhx56KC655BIcdthh2HrrrTFixAgYY7DPPvug2Wx6uQ984AN44okn8POf/xw333wzLrroIpx55pk477zzcOCBB5bq0dPTIzaJr8KoUaNKyTRQzMTs6enBnDlzhKFiwYIFePHFFzv+cNRaa62FBQsW4PXXX28563Tq1Kk4+uijMXPmTEyaNAkzZ87EyJEj8ZGPfKRlPu9973sFaTzuuONaflynv41Mro2vuOKKJCHSH5Lo66+EPvHEE/jQhz6ECRMm4IwzzsBaa62FgQMH4le/+hXOPPNM0Qf7G8YYXHPNNfjjH/+IG264ATfddBM+/elP4/TTT8cf//jHWg8y3d3d0QNDX+jFHx4d+mIT/rpvKcvaPaUXRyd9fkmF+6iYM0a7B8GHHnqoNM7TTz+NV199tZR0Dh8+HDvttBN22mknDBgwAJdddhnuuece/0GDjIyMjOUByyJn7SssWLAAH//4x/HQQw/hpptuamufw8033xwTJkzAj3/8Y3z1q1/Fj3/8YxBRrckA//u//ys+KrXddttFHxPS6G8jk2vjo446CpMnT07K6BfGnfKXFHp6erDTTjvhpZdewpe//GVMmDABQ4YMwbPPPosZM2YsUs4KFKuxPvrRj+K6667DTTfdhK9//es45ZRT8Lvf/Q6bbbZZrTT6ep/dMl65KD8c1emzSid9fknFwoUL8c9//tPfL0aMGIHVVlutkrMCBaddY401ks/DAwcOxHvf+168973vxYYbboj9998fV199tf9wbEbG0oBsWM3oCO6r926mVQrXXHMNpk+fjtNPP937vfnmm5g7d24kO2rUKOy///7+408f+MAHcPzxx1eS1P/85z+134beeuutlV9EnDhxIoBiSQg3ZN53331oNps+vF3861//wqBBg2oZzlZffXXssMMOuPrqq/H1r38dv/nNbzBjxoxa5PpHP/qReBPa6m10K4wePRorrrgi/vGPf0Rhjz76KBqNht/4vozouJmdY8aM6TMy3M6SghtuuAFvvfUWrr/+ejGrILUFQR2MGzcOzWYTTzzxhHiznaqjMrzvfe/D+973Ppx88smYOXMmpk2bhiuvvBIHHnhgny+XcDOGOf75z3+KD4aNHDkyueRez+xoRzdXT4899phYej579mzMnTvXf8G0t+jrPr844ZaQuYe5DTfcEBtuuCGuu+46nH322cnlVZdffjkAVC5tdNhiiy1w2WWX4bnnnutDrTPawQoGoA4v8RWW47f/GRl9gWWNs/YFms0m9ttvP9xyyy34yU9+0tFLt2nTpuHrX/86HnroIcycORMbbLAB3vve97aMd/TRR4uPiXW61Jxj3LhxeOihh9BsNsVL6EcffdSHA+V8xnGIAQMG9KkBty5/evjhh/HPf/4Tl112Gfbbbz/vX3f7CA1X3scee0ysHFu4cCGefPLJWttNrLfeejjyyCNx5JFH4rHHHsPEiRNx+umn44c//CGA9rhhK7gZwzzNf/7znwDgeavrJ3PnzhUflErNRq6rm6unf/zjH9EKu3/84x99xln7o88vLlxzzTV44403xAuI3XbbDRdeeCH+8Ic/YJtttoni3HHHHXjqqafw2c9+tmX6bsVB5qyLD5mzdoa+nf6UsVxg4cKFuPnmmzFw4MDKPfu6urqit7bf/e53ozeLL774onAPHToU66+/Pt56661KPdx+VXV+rQjEBz/4QYwaNQrnnnuu8D/33HOx4oorii+/v/DCC3j00UfF0vLULIQHH3wQ119/PXbeeefaMw2nTZuGOXPm4LOf/SwWLlxY680/ALz//e/Hjjvu6H+9NTJ1dXVh5513xs9//nM89dRT3n/27NmYOXMmttlmG//GcciQIQAQPXxMnjwZw4cPxze/+U0sXLgwyqPuzA0O91Xe1INOqgwAouV8l1xySdv5AsCHP/xhAMD//d//Cf+zzjqrZdyXX345uhacsd7183bKVgfXXXcdnn32We/+05/+hHvuuceXAyhI86OPPira4sEHH8Sdd94p0mpHN/diQteL29eVX0u9QV/3+U7wxBNP+K8Sd4qZM2fioosuwtZbby32pTv22GPx8ssv43Of+1x0z/zzn/+MU089Fe9617uw5557AgDmz5+Pu+++O5nHr3/9awD1tq3I6B90md79MjIyOsOyyFnbwSuvvIJHH300Wkp+6KGH4qqrrsI555xTufdsFRxHPfbYY/GXv/ylNmfdeOONxfi9+eabd5Q/x0c+8hHMmjULV111lfd7++238d3vfhdDhw71huMyPjNmzBhsv/32OP/885MGnU44K1Bw5E45KxHh7LPP7ijfLbbYAqNHj8Z5550ntjq79NJLW+ozf/58vPnmm8JvvfXWw7Bhw0Q/r1u2Ovjvf/+La6+91rtfffVVXH755Zg4caJf9eYmbNx+++1e7vXXXxczQdvVbYsttsCYMWNw3nnnibL9+te/xt///vc+46z90efbxXPPPYdHH300+UxWFw8++CAOO+wwjBw5El/4whe8/5e+9CUMHjwYn/3sZ6N75EsvvYTPfe5zWHHFFcX+vrfeemtydrf7VkPmrIsPmbN2hjxjNaMlfv3rX/s3vnPmzMHMmTPx2GOP4Stf+Url8vbddtsNV1xxBUaMGIGNN94Yd999N377299i5ZVXFnIbb7wxtt9+e2y++eYYNWoU7rvvPlxzzTU45JBDKvXq6z1WTzrpJHzhC1/A3nvvjcmTJ+OOO+7AD3/4Q5x88sliH5zvfe97OOGEE8SMgk984hMYPHgwJk2ahDFjxuBvf/sbLrjgAqy44or41re+VVuPPffcEwcffDB+/vOfY6211sIHPvCBPilfJ/jGN76B3/zmN9hmm21w8MEHY4UVVsD555+Pt956C9/+9re93MSJE9HV1YVTTz0Vr7zyCrq7u/HBD34QY8aMwbnnnot9990X73nPe7DPPvtg9OjR+Pe//41f/vKXeP/734/vfe97bek0ePBgbLzxxrjqqquw4YYbYtSoUXjXu96VXL628847Y+DAgfjoRz+Kz372s3jttddw4YUXYsyYMR29BZ04cSKmTp2Kc845B6+88gomTZqEW265BY8//njLuJdddhnOOecc7LHHHlhvvfUwb948XHjhhRg+fLg3RLZTtjpYf/31sc022+Dzn/883nrrLZx11llYeeWVxYcpPv3pT+OMM87A5MmTccABB2DOnDk477zz8M53vlN8FKkd3TbddFNMnz4dF1xwAebOnYvtttsOf/rTn3DZZZdhypQp4sNVixrPPvusn2nBMXToUEyZMqXt9JwhlL98qMI111yDoUOHYsGCBXj22Wdx00034c4778Smm26Kq6++WshOmzYN9957L84++2z87W9/w7Rp0zBy5Ejcf//9uPjii7Hyyivjmmuu8R9Cmz9/PiZNmoT3ve992GWXXbDWWmth7ty5uO6663DHHXdgypQptZfvZWRkZCytWB44K1CsynnwwQcBFMbjhx56yH+ccffdd/d7vl577bXYf//9cckll2DGjBkAihef55xzDrbeemusuOKK0bi4xx57+JfmVVhnnXUwadIk/PznPweA2obV/sBnPvMZnH/++ZgxYwb+/Oc/Y/z48bjmmmtw55134qyzzvIrP6r4zPe//31ss802ePe7342DDjoI6667LmbPno27774bzzzzjK/vdrD55pvj3HPPxTe+8Q2sv/76GDNmTPLbAxMmTMB6662Ho446Cs8++yyGDx+On/70px3v1zpgwAB84xvfwGc/+1l88IMfxCc+8Qk8+eSTuOSSS1q+iP7nP/+JD33oQ/if//kfbLzxxlhhhRVw7bXXYvbs2dhnn33aLlsdbLjhhjjggANw7733YtVVV8XFF1+M2bNni8kQO++8M9Zee20ccMAB+NKXvoSuri5cfPHF/tmCo65uAwYMwKmnnor9998f2223HaZOnYrZs2fj7LPPxvjx43H44Yd3VJ6+wNtvv53krED9a5TjmGOOwWWXXYYnn3xSrF4rwx133IE333wTPT09ePHFF3HnnXfi+uuvx4gRI3DttdeKbd422GADXHbZZZg2bRre/e5344ADDsA666yDp556Cj/4wQ/wwgsv4Mc//rH4TsWhhx6K+fPnY4899sCECROwYMEC3HXXXbjqqqswfvx47L///m2VLyNjsYMyMkpwySWXEADxGzRoEE2cOJHOPfdcajabQh4AHXfccd798ssv0/7770+rrLIKDR06lCZPnkyPPvoojRs3jqZPn+7lvvGNb9CWW25JK620Eg0ePJgmTJhAJ598Mi1YsGARlTTgggsuoHe84x00cOBAWm+99ejMM8+MynnccccRALr11lu939lnn01bbrkljRo1ilZYYQVabbXV6FOf+hQ99thjbeuw9957EwA6+uije1ucUowbN4523XXXlnL3338/TZ48mYYOHUorrrgi7bDDDnTXXXdFchdeeCGtu+661NXVFdXNrbfeSpMnT6YRI0bQoEGDaL311qMZM2bQfffd52WmT59OQ4YMidJ1dc1x11130eabb04DBw4UfS4le/3119Mmm2xCgwYNovHjx9Opp55KF198MQGgJ5980sttt912tN1227WsjzfeeIO++MUv0sorr0xDhgyhj370o/Sf//wn6vvu2nF53H///TR16lRae+21qbu7m8aMGUO77babqIOqspXVjwsbN26cdz/55JMEgL7zne/Q6aefTmuttRZ1d3fTtttuSw8++GAU/4c//CGtu+66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8Yxn0Ate8AJ605veRI899tiO6RkILEHw1cB+QnDWwEFGcNajj2OVsx7rCMPqAcSNN97Y7I1mf5/73OdUnHvvvZcuv/xyuuqqq+jaa6/dJc33Njap90AgENhuXHfddfTHf/zH9P73v3+3VTkwOPGkFZ14Im/2O2mgal/72tfoq1/9avk9/vjW97G6//776ayzzlJ+T3nKU+iMM84YvWH/gR/4AfrP//k/0+/8zu/Qm970Jvr1X/91+sEf/MEt6xMIIIKv7h6CswYCgWMBwVmPPraDsx5EPGW3FQgcfbzxjW+kq6++elTmvPPOK+777ruPXv7yl9NLX/pSeve7373D2u1fLK33wM7hGc94Bh133HH0wAMPKP8HHniADh06tEtaBQI7j+uvv54+/OEP0yc+8Qk655xzdludfY/BALGi93/iP20pnUcffZT+5nO/SRlT3/KWt9C//bf/1pW/8cYb6Wd+5mdG0/zsZz+7sT6ve93rivuFL3whPetZz6JLLrmEvvCFL9C3fMu3bJxuIIAIvrp7CM567CA4a+CgIjjr0cV2cVbmFTHzNmm1dxCG1QOIM888k84888xZsvfeey+9/OUvp/PPP5/e8573HLhNiLcTS+o9sLM4/vjj6fzzz6fbb7+9bEK/Xq/p9ttvp+uvv353lQsEdgAiQq9//evpgx/8IH3sYx+jc889d7dVOhBgZvrGM86grX4n9Buedkrz9ecTTjihKz/XKHLo0KEm3SeffJIefPDBRTfsF110ERENr2CHYTWwXQi+unsIznrsIDhr4KAhOOvuYLs4a36r4aAhDKuBLu6991562cteRt/8zd9Mb3/72+krX/lKCYsnpDuLe+65hx588EG655576MiRI3TXXXcREdG3fuu30tOe9rTdVW6f4IYbbqAf+qEfogsuuIAuvPBCuummm+jRRx+l1772tbut2r7GI488Qp///OfL+Z/+6Z/SXXfdRWeccQY9+9nP3kXN9jeuu+46uvXWW+m//bf/Rqecckp5zfu0006jk046aZe129/YDoJ54okn0oknnjhbfq5R5OKLL6aHHnqI7rzzTjr//POJiOijH/0ordfrYiydgzxHPetZz5odJxDYLgRf3V0EZ915BGfdHQRn3R0EZ909HFSj6HaAZasm6cC+xXvf+97uhB3dZmdx9dVX06/92q81/r/zO79DL3vZy46+QvsUv/ALv0A/+7M/S/fffz+9+MUvpne+852LjAmB5fjYxz5GL3/5yxv/H/qhH6L3vve9R1+hA4IeSXrPe94zubIxsL/xile8gh544AG65ZZb6PDhw/Ta176WLrjgArr11luJaDBaXXLJJfS+972PLrzwQvrCF75At956K73yla+kpz/96fSHf/iH9IY3vIHOOecc+vjHP77LpQkcRARf3V0EZz06CM569BGcdXcQnDWwFxGG1UAgEAgEAoEDigcffJCuv/56+tCHPkSr1YquvPJKeuc731lWmn3xi1+kc889txhJ/uzP/ox+8Ad/kP74j/+YHn30Ufqmb/om+r7v+z76sR/7MTr11FN3uTSBQCAQCAQCgcDRRRhWA4FAIBAIBAKBQCAQCAQCgUBgIWJn90AgEAgEAoFAIBAIBAKBQCAQWIgwrAYCgUAgEAgEAoFAIBAIBAKBwEKEYTUQCAQCgUAgEAgEAoFAIBAIBBYiDKuBQCAQCAQCgUAgEAgEAoFAILAQYVgNBAKBQCAQCAQCgUAgEAgEAoGFCMNqIBAIBAKBQCAQCAQCgUAgEAgsRBhWA4FAIBAIBAKBQCAQCAQCgUBgIcKwGggEAoFAIBAIBAKBQCAQCAQCCxGG1UAgEAgEAoFAIBAIBAKBQCAQWIgwrAYCgUAgEAgEAoFAIBAIBAKBwEKEYTUQCBw4fOUrX6FDhw7RT//0Txe/3/3d36Xjjz+ebr/99l3ULBAIBAKBQCAQGBCcNRAIBI59sIjIbisRCAQCRxu//du/TVdccQX97u/+Lj33uc+lF7/4xfSqV72Kfv7nf363VQsEAoFAIBAIBIgoOGsgEAgc6wjDaiAQOLC47rrr6H/+z/9JF1xwAf3RH/0RffrTn6YTTjhht9UKBAKBQCAQCAQKgrMGAoHAsYswrAYCgQOLv/7rv6YXvOAF9Gd/9md055130gtf+MLdVikQCAQCgUAgEFAIzhoIBALHLmKP1UAgcGDxhS98ge677z5ar9f0xS9+cbfVCQQCgUAgEAgEGgRnDQQCgWMXsWI1EAgcSDzxxBN04YUX0otf/GJ67nOfSzfddBP90R/9EZ111lm7rVogEAgEAoFAIEBEwVkDgUDgWEcYVgOBwIHEj/7oj9J//a//lf7P//k/9LSnPY2+67u+i0477TT68Ic/vNuqBQKBQCAQCAQCRBScNRAIBI51xFYAgUDgwOFjH/sY3XTTTfTrv/7rdOqpp9JqtaJf//Vfp//1v/4X/dIv/dJuqxcIBAKBQCAQCARnDQQCgT2AWLEaCAQCgUAgEAgEAoFAIBAIBAILEStWA4FAIBAIBAKBQCAQCAQCgUBgIcKwGggEAoFAIBAIBAKBQCAQCAQCCxGG1UAgEAgEAoFAIBAIBAKBQCAQWIgwrAYCgUAgEAgEAoFAIBAIBAKBwEKEYTUQCAQCgUAgEAgEAoFAIBAIBBYiDKuBQCAQCAQCgUAgEAgEAoFAILAQYVgNBAKBQCAQCAQCgUAgEAgEAoGFCMNqIBAIBAKBQCAQCAQCgUAgEAgsRBhWA4FAIBAIBAKBQCAQCAQCgUBgIcKwGggEAoFAIBAIBAKBQCAQCAQCCxGG1UAgEAgEAoFAIBAIBAKBQCAQWIgwrAYCgUAgEAgEAoFAIBAIBAKBwEL8fwG+Zc51JPHjAAAAAElFTkSuQmCC", + "image/png": "iVBORw0KGgoAAAANSUhEUgAABLcAAAGGCAYAAACJ5mOhAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjMsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvZiW1igAAAAlwSFlzAAAPYQAAD2EBqD+naQABAABJREFUeJzsfXnAVUX5/2feF3hfdkVBXBDckUwxVMJcE8XUTFO/SqRCaotL5ZJp/RTMjCzXbyku5VqkaWlaKZpJlqK5paZZ6lfNJcAlQEEFufP745yZeWbmmbPde991PnDfe2bmmWeemXPumed8ZjlCSikRERERERERERERERERERERERHRDdHS2QZERERERERERERERERERERERERURSS3IiIiIiIiIiIiIiIiIiIiIiK6LSK5FRERERERERERERERERERERHRbRHJrYiIiIiIiIiIiIiIiIiIiIiIbotIbkVEREREREREREREREREREREdFtEcisiIiIiIiIiIiIiIiIiIiIiotsiklsREREREREREREREREREREREd0WkdyKiIiIiIiIiIiIiIiIiIiIiOi2iORWRERERERERERERERERERERES3Ra8kt4QQmDVrVmebEdFLMWvWLAghKuXdbbfdsNtuu1Uu2732r7nmGggh8NJLL1XWWRTTp0/HmDFjdPill16CEALnnXde08sG6mv3roo777wT48ePR3t7O4QQWLJkCQDg+uuvx9ixY9G3b1+sscYanWpjRERERER1RJ81ojMxf/58CCEwf/780nnr9btcn1f5jddcc01lnUXB+cdjxozBfvvt1/Sygfravaviueeew1577YWhQ4dCCIFbb70VAPDwww9jxx13xMCBAyGEwN/+9rdOtTOie6NHkFvqBkQ/I0aMwO6774477rijs81rCn76059iyy23RHt7OzbbbDP86Ec/KpRP3Sy5z4MPPhjMt2rVKqy99trYaaedgjJSSowaNQof+9jHStcnhDFjxnjndeedd8Ytt9xSWtczzzyDWbNmdQiRs2LFCsyaNatHdUoKXbluXdm2onCvefrZe++9tdxbb72F//mf/0H//v1xySWX4Prrr8fAgQPx7LPPYvr06dhkk01w5ZVX4oorrihctnJE1WfAgAHYcMMN8elPfxpXX301Pvjgg2De3/72t9h7772x1lprob29HZtvvjlOOeUUvPXWW6z87bffjl133RUjRozAgAEDsPHGG+N//ud/cOeddxZvrIiIiIhuht7ms86ZMweHHHIINtxwQwghMH369MJ5n332WZx66qkYP348Bg8ejHXXXRf77rsvHnnkkdy8+++/PwYMGIB33nknKDNt2jT069cv2E+VxfTp063zOmTIEGyzzTY4//zzM/tPDh3tz1x66aUdQhp1Brpy3bqybUXgXvP0097ebskeeeSReOqpp3DOOefg+uuvx3bbbYdVq1bhkEMOwdtvv40LL7wQ119/PUaPHl2obPeZtq2tDeussw522203fO9738Mbb7wRzPv000/j85//PNZff320tbVhvfXWw7Rp0/D000+z8k899RQOPvhgjB49Gu3t7Vh//fWx5557Fn7+jug49OlsAxqJ73znO9hoo40gpcSiRYtwzTXXYJ999sHtt99uMe3vvfce+vTpvlW//PLL8eUvfxkHHXQQTjrpJPz5z3/GV7/6VaxYsQLf/OY3C+n46le/iu23396K23TTTYPyffv2xSGHHILLL78cL7/8Mnvjue+++/Dqq6/ixBNPLFehHIwfPx4nn3wyAOD111/H5Zdfjs9+9rOYM2cOvvzlLxfW88wzz+Css87CbrvtZs0gagZWrFiBs846CwC8mVb/7//9P5x22mlNLb8oDj/8cBx22GFoa2srnCerblm48sorUavVyppYCt2l3fNAr3mK9dZbTx8//PDDeOedd3D22Wdj8uTJOn7+/Pmo1Wq4+OKLM3/TWZgzZw4GDRqEDz74AK+99hrmzZuHL3zhC7jooovw29/+FqNGjbLkTznlFJx//vnYZptt8M1vfhPDhg3DY489hh//+Me44YYbcM8992CLLbbQ8ueddx6+8Y1vYNddd8Xpp5+OAQMG4Pnnn8cf/vAH3HDDDRaJFxEREdET0Vt81nPPPRfvvPMOdthhB/znP/8plfcnP/kJfvrTn+Kggw7Csccei6VLl+Lyyy/Hxz/+cdx5551W3+di2rRpuP3223HLLbfgiCOO8NJXrFiB3/zmN3pQplFoa2vDT37yEwDAkiVL8Ktf/QqnnHIKHn74Ydxwww2F9VT1tari0ksvxdprr+2Rj7vssgvee+899OvXr+k25GH06NF477330Ldv31L5QnXLQhX/uAq6Q7vngV7zFK2trfr4vffew4IFC/Dtb38bxx9/vI5/9tln8fLLL+PKK6/E0UcfXal89Uy7evVqvPHGG3jggQcwc+ZMXHDBBfjlL3+JT37yk5b8r3/9a0ydOhXDhg3DUUcdhY022ggvvfQSfvrTn+Lmm2/GDTfcgAMPPFDLP/DAA9h9992x4YYb4phjjsHIkSPxyiuv4MEHH8TFF1+ME044oZLdEc1B9+0tGXzqU5/Cdtttp8NHHXUU1llnHfziF7+wHAWXSe5OeO+99/Dtb38b++67L26++WYAwDHHHINarYazzz4bX/ziF7Hmmmvm6tl5551x8MEHlyp72rRpuOyyy/CLX/yCJQnmzp2LlpYWHHbYYaX05mH99dfH5z//eR0+4ogjsOmmm+LCCy8sRW51FfTp06fLOKqtra1W59MMLF++HAMHDiztjDQaXand8+Be8xwWL14MAN6yw1B8GRx88MFYe+21dfjMM8/Ez3/+cxxxxBE45JBDrFmev/jFL3D++efj0EMPxc9//nPrepo+fTp23313HHLIIXjsscfQp08ffPjhhzj77LOx55574q677grWKyIiIqInozf4rADwpz/9Sc/aGjRoUKm8U6dOxaxZs6x8X/jCF7Dlllti1qxZmeTW/vvvj8GDB2Pu3LksufWb3/wGy5cvx7Rp00rZlIc+ffpY/fexxx6LiRMn4sYbb8QFF1xgDVJ1B7S0tHSZa5CbDdRoKJ+1I/zjLHSlds+De81zULOomuGzcs+0TzzxBPbaay8cdNBBeOaZZ7DuuusCAF544QUcfvjh2HjjjXHfffdh+PDhOs/XvvY17Lzzzjj88MPx5JNPYuONNwYAnHPOORg6dCgefvjhoP0RXQc9YlliCGussQb69+/vPdC6+xe8/PLLOPbYY7HFFlugf//+WGuttXDIIYd4y9dWrVqFs846C5ttthna29ux1lprYaeddsLdd9/dAbVJcO+99+Ktt97Csccea8Ufd9xxWL58OX73u98V1vXOO+/gww8/LCz/iU98AmPGjMHcuXO9tFWrVuHmm2/G7rvv3vSOe+TIkdhyyy3x4osv6rjHH38cn/rUpzBkyBAMGjQIe+yxh/UAfs011+CQQw4BAOy+++56Ciud7n3HHXdg5513xsCBAzF48GDsu+++3vTU6dOnY9CgQXjttddwwAEHYNCgQRg+fDhOOeUUrF69GkCyJ4C6WZ511lm6LHXNcXsQXH311fjkJz+JESNGoK2tDePGjcOcOXMqt9EHH3yAE088EcOHD8fgwYOx//7749VXX/XkuD0FHnnkEUyZMgVrr702+vfvj4022ghf+MIXCtVNtc8LL7yAffbZB4MHD9aOo7vnFsWFF16I0aNHo3///th1113x97//3UoP7TVGdVZpd0W0bLLJJmhra8OYMWPwrW99y1s+oPZZ+Mtf/oIddtgB7e3t2HjjjXHdddex9Wk2dtttNxx55JEAgO23314v9RgzZgxmzpwJABg+fHhD92qZNm0ajj76aDz00EPWPe+ss87CmmuuiSuuuMJzBHfYYQd885vfxFNPPaXJ+DfffBPLli3DJz7xCbacESNGNMTeiIiIiO6EnuizAslsm6r7Lk2YMMEjxNZaay3svPPO+Mc//pGZt3///vjsZz+Le+65h30AnTt3rvaPmomWlhbtv6hztHjxYk1mtre3Y5tttsG1116r8+T5M0Ay4+Xggw/GsGHD0N7eju222w633XabVbby8e6//36cdNJJGD58OAYOHIgDDzzQWrI1ZswYPP300/jTn/6ky1I2c3s//fnPf9ZLTdva2jBq1CiceOKJeO+99yq30xVXXIFNNtkE/fv3xw477IA///nPngy359bChQsxY8YMbLDBBmhra8O6666Lz3zmM7qts+qm2udPf/oTjj32WIwYMQIbbLCBlcZtZXLXXXfp/U7HjRuHX//611Z6aK8xV2fZdgeAm266CRMmTED//v2x9tpr4/Of/zxee+01S6bIs0pHYtasWXrFzze+8Q0IITBmzBhMnz4du+66KwDgkEMOsepfL7bZZhtcdNFFWLJkCX784x/r+B/+8IdYsWIFrrjiCovYAoC1114bl19+OZYvX44f/OAHOv6FF17ARz7yEZaAiz5r10P3mMZQEEuXLsWbb74JKSUWL16MH/3oR3j33Xdz2eSHH34YDzzwAA477DBssMEGeOmllzBnzhzstttueOaZZzBgwAAAyY9z9uzZOProo7HDDjtg2bJleOSRR/DYY49hzz33DOqv1Wp4++23C9Vh6NChmTNcHn/8cQCwRvuAxAFoaWnB448/nltfAJgxYwbeffddtLa2Yuedd8YPf/hDT6cLIQQ+97nP4Xvf+x6efvppfOQjH9Fpd955J95+++2Gj4BxWLVqFV555RU9jfzpp5/GzjvvjCFDhuDUU09F3759cfnll2O33XbDn/70J0ycOBG77LILvvrVr+J///d/8a1vfQtbbrklAOjv66+/HkceeSSmTJmCc889FytWrMCcOXOw00474fHHH7dImdWrV2PKlCmYOHEizjvvPPzhD3/A+eefj0022QRf+cpXMHz4cMyZMwdf+cpXcOCBB+Kzn/0sAGDrrbcO1mnOnDn4yEc+gv333x99+vTB7bffjmOPPRa1Wg3HHXdc6TY6+uij8bOf/Qyf+9znsOOOO+KPf/wj9t1339x8ixcvxl577YXhw4fjtNNOwxprrIGXXnpJd9xF6vbhhx9iypQp2GmnnXDeeefp308I1113Hd555x0cd9xxeP/993HxxRfjk5/8JJ566imss846hetcpd2PPvpoXHvttTj44INx8skn46GHHsLs2bPxj3/8w9vX7fnnn8fBBx+Mo446CkceeSSuuuoqTJ8+HRMmTLB+C43AqlWr8Oabb3rxAwcORP/+/fHtb38bW2yxBa644gq9tGWTTTbBAQccgOuuuw633HKLXlqYVf+yOPzww3HFFVfgrrvuwp577onnnnsO//znPzF9+nQMGTKEzXPEEUdg5syZ+O1vf4vDDjsMI0aMQP/+/XH77bfjhBNOwLBhwxpmX0RERER3QW/wWZuFhQsXWrOLQ5g2bRquvfZa/PKXv7SWQr399tuYN28epk6div79+zfTVADJwzGQEHPvvfcedtttNzz//PM4/vjjsdFGG+Gmm27C9OnTsWTJEnzta1/L9WeefvppfOITn8D666+P0047DQMHDsQvf/lLHHDAAfjVr35lLakCgBNOOAFrrrkmZs6ciZdeegkXXXQRjj/+eNx4440AgIsuuggnnHACBg0ahG9/+9sAkOl/3XTTTVixYgW+8pWvYK211sJf//pX/OhHP8Krr76Km266qXT7/PSnP8WXvvQl7Ljjjvj617+O//u//8P++++PYcOGedsguDjooIPw9NNP44QTTsCYMWOwePFi3H333fj3v/+NMWPGFKrbsccei+HDh+PMM8/E8uXLM8t77rnncOihh+LLX/4yjjzySFx99dU45JBDcOedd2b+rjiUbfdrrrkGM2bMwPbbb4/Zs2dj0aJFuPjii3H//ffj8ccft8iXvGeVRoPzWfv164chQ4bgs5/9LNZYYw2ceOKJmDp1KvbZZx8MGjQI66yzDtZff31873vf00sLy/j9eVA++1133YVzzjkHQLLf65gxY7DzzjuzeXbZZReMGTPGmiwyevRoLFiwAH//+9+x1VZbNcy+iCZB9gBcffXVEoD3aWtrk9dcc40nD0DOnDlTh1esWOHJLFiwQAKQ1113nY7bZptt5L777lvavhdffJG1j/vce++9mbqOO+442drayqYNHz5cHnbYYZn577//fnnQQQfJn/70p/I3v/mNnD17tlxrrbVke3u7fOyxx3Lr8vTTT0sA8vTTT7fiDzvsMNne3i6XLl2aq6MMRo8eLffaay/5xhtvyDfeeEM+8cQT8rDDDpMA5AknnCCllPKAAw6Q/fr1ky+88ILO9/rrr8vBgwfLXXbZRcfddNNNbBu/8847co011pDHHHOMFb9w4UI5dOhQK/7II4+UAOR3vvMdS3bbbbeVEyZM0OE33njDu84UZs6cKd2fHncNTpkyRW688cZW3K677ip33XVXT5bib3/7mwQgjz32WCv+c5/7nGeT+u28+OKLUkopb7nlFglAPvzww0H9WXVT7XPaaaexaaNHj9Zh9bvo37+/fPXVV3X8Qw89JAHIE088Mbfers4y7a7a6eijj7bkTjnlFAlA/vGPf9Rxo0ePlgDkfffdp+MWL14s29ra5Mknn+yVVQ9UWdxn9uzZWk6dO/dcqXq+8cYbpcvOy/vf//5XApAHHniglFLKW2+9VQKQF154YabeIUOGyI997GM6fOaZZ0oAcuDAgfJTn/qUPOecc+Sjjz5a2t6IiIiI7obe5LO6GDhwoDzyyCNL20Rx3333SSGEPOOMM3JlP/zwQ7nuuuvKSZMmWfGXXXaZBCDnzZtXly0ujjzySDlw4EDtsz7//PPye9/7nhRCyK233lpKKeVFF10kAcif/exnOt/KlSvlpEmT5KBBg+SyZcuklNn+zB577CE/+tGPyvfff1/H1Wo1ueOOO8rNNttMx6lrbfLkybJWq+n4E088Uba2tsolS5bouI985COsn3Xvvfd655q7BmfPni2FEPLll1/WcZy/62LlypVyxIgRcvz48fKDDz7Q8VdccYUEYNmkrs2rr75aSml8kh/+8IeZZYTqptpnp512kh9++CGbpvxjKY1/9qtf/UrHLV26VK677rpy2223za03p7Nou6t22mqrreR7772n5X77299KAPLMM8/UcUWfVRoBVRb3mTJlipZT5849V6qeN910U+myi+TdZptt5JprrimllHLJkiUSgPzMZz6TqXf//feXAPRv8a677pKtra2ytbVVTpo0SZ566qly3rx5cuXKlaVtjmg+etTMrUsuuQSbb745AGDRokX42c9+hqOPPhqDBw/Wox4c6KjNqlWrsGzZMmy66aZYY4018Nhjj+Hwww8HkEwZf/rpp/Hcc89hs802K2zXyJEjC08D32abbTLTszYXbG9vz50SvOOOO2LHHXfU4f333x8HH3wwtt56a5x++um5byobN24ctt12W9xwww343ve+ByBZn37bbbdhv/32C87eqAd33XWXNXW0tbUVhx9+OM4991ysXr0ad911Fw444AC9NhoA1l13XXzuc5/DlVdeiWXLlmXadffdd2PJkiWYOnWqNfLQ2tqKiRMn4t577/XyuHt97bzzzrj++usr15Feg0uXLsWqVauw6667Yt68eVi6dCmGDh1aWNfvf/97AMkGixRf//rX2SWlFGrU57e//S222WabyiOyZUaFDjjgAKy//vo6vMMOO2DixIn4/e9/jwsuuKBS+UWg2umkk06y4k8++WScd955+N3vfofdd99dx48bN84a6Rk+fDi22GIL/N///V/DbZs4cSK++93vevFl7jvNgFoeot4+pb4HDx6cmW/w4MFYtmyZDp911lkYO3YsLr30UsybNw933HEHvv3tb2PbbbfFz3/+cz2jMiIiIqKnojf4rI3G4sWL8bnPfQ4bbbQRTj311Fz51tZWHHbYYbjwwgvx0ksv6Vn4c+fOxTrrrIM99tij4TYuX77cW+604447ah/x97//PUaOHImpU6fq9L59++KrX/0qpk6dij/96U/Wnmsu3n77bfzxj3/Ed77zHbzzzjvW2yCnTJmCmTNn4rXXXrP8qi9+8YvWMrmdd94ZF154IV5++eVKs7vpNbh8+XK899572HHHHSGlxOOPP44NN9ywsK5HHnkEixcvxne+8x3r+Wb69On4xje+kWtHv379MH/+fBx11FGF9hzmcMwxxxTeX2u99dazZsYNGTIERxxxBM4991wsXLgQI0eOrGRDHlQ7zZo1y9qLa99998XYsWPxu9/9Tr+AQKHRzyohtLe34/bbb/fii8yubDYGDRpUyWcFgGXLlmHw4MHYc889sWDBAsyePRvz5s3DggUL8IMf/ADDhw/HT37yk6YvbY4ohx5Fbu2www7W0rqpU6di2223xfHHH4/99tsvSAq99957mD17Nq6++mq89tprkFLqtKVLl+rj73znO/jMZz6DzTffHFtttRX23ntvHH744bkdQ3t7e+aml2XQv39/rFy5kk17//33K02v3nTTTfGZz3wGv/71r7F69ercG/y0adNwyimn4IEHHsCOO+6IW2+9FStWrCi0JPGNN96w1nsPGjQod4NR9aAvhMCAAQOw5ZZbahJm4cKFWLFihfUmNoUtt9wStVoNr7zySuayseeeew4AvLdpKLjEWHt7u+e4rLnmmvjvf/+bWY8s3H///Zg5cyYWLFiAFStWWGllya2XX34ZLS0t2GSTTax4ro1c7LrrrjjooINw1lln4cILL8Ruu+2GAw44AJ/73OcKvzGmT58+es+CIuCc7s033xy//OUvC+uoAtVO7hsFR44ciTXWWAMvv/yyFc85a0XOe5Vrfu21127YPaORePfddwGYjl99Z71qXaW7+xJMnToVU6dOxbJly/DQQw/hmmuuwdy5c/HpT38af//737vNRqoRERERVdAbfNZGYvny5dhvv/3wzjvv4C9/+UvhzemnTZuGCy+8EHPnzsW3vvUtvPrqq/ot43n+7tKlS61B4379+uUupacP+m1tbdhoo40sn+jll1/GZptthpYWe9tjNajj+h4unn/+eUgpccYZZ+CMM85gZRYvXmyRW67/okigqn7rv//9b5x55pm47bbbPB30GiwCVV/XF+zbt681aM2hra0N5557Lk4++WSss846+PjHP4799tsPRxxxRCmSaaONNiosu+mmm3r7aSmS+qWXXmoauaXaifPlx44di7/85S9WXNVnlSrXfGtra5e8ZwCJ31rFZ6XyQLK/7a9//WusXLkSTzzxBG655RZceOGFOPjgg/G3v/0N48aNa1INIsqiR5FbLlpaWrD77rvj4osvxnPPPRckOE444QRcffXV+PrXv45JkyZh6NChEELgsMMOQ61W03K77LILXnjhBfzmN7/BXXfdhZ/85Ce48MILcdlll2W+vlS9mrQIhg0blvna13XXXRerV6/G4sWLrYfFlStX4q233qq8mfuoUaOwcuVKLF++PHf21dSpU3Hqqadi7ty52HHHHTF37lysueaa2GeffXLL2X777a2Oe+bMmbkbXjf7QV+d4+uvv57tlNzNXRv99pQXXngBe+yxB8aOHYsLLrgAo0aNQr9+/fD73/8eF154oXUNNhtCCNx888148MEHcfvtt2PevHn4whe+gPPPPx8PPvhgIWeyra3Nc9oaYRd14BUasTFm0Y1uQ+eds4uiyjXfVaE2+leEoHLGn3zyyWCel19+GcuWLQt2/EOGDMGee+6JPffcE3379sW1116Lhx56SG8yGhEREdEb0BN91kZh5cqV+OxnP4snn3wS8+bNK7XvzYQJEzB27Fj84he/wLe+9S384he/gJSy0IDs1772NWuj91133dXb4NtFsx/01Tk+5ZRTMGXKFFbGHbSr6r9wWL16Nfbcc0+8/fbb+OY3v4mxY8di4MCBeO211zB9+vQO9VmBZFXCpz/9adx6662YN28ezjjjDMyePRt//OMfse222xbS0eh910J+ZUdu5l71WaXKNd9VsWrVKvzrX//S94uhQ4di3XXXzfRZgcSnXX/99dnn4X79+mH77bfH9ttvj8033xwzZszATTfdpF/mFNH56NHkFgD9NkA144DDzTffjCOPPBLnn3++jnv//fexZMkST3bYsGGYMWOG3pB9l112waxZszIdhVdeeaXwqMC9996b+aaI8ePHA0imp1Iy6ZFHHkGtVtPpZfF///d/aG9vL0RerLfeeth9991x00034YwzzsDdd9+N6dOnF3Jwfv7zn1sjAnmjMnkYPnw4BgwYgH/+859e2rPPPouWlha9GWWos1EznEaMGNEwh6TMm4Fuv/12fPDBB7jtttus0TVuOWQRjB49GrVaDS+88II1wsO1UQgf//jH8fGPfxznnHMO5s6di2nTpuGGG27A0UcfXfmtRyGomXMU//rXv6xN/Ndcc012+Z87wlnGNtVOzz33nLUMbtGiRViyZIl+s0u9aPQ135lQ09mVQ7355ptj8803x6233oqLL76Yneqt3iiZtcxCYbvttsO1116L//znPw20OiIiIqJ7oKf5rI1ArVbDEUccgXvuuQe//OUvKw18TJs2DWeccQaefPJJzJ07F5ttthm233773HynnnqqtcF/1WVvFKNHj8aTTz6JWq1mDQQ+++yzOh0I+zPKh+jbt29DSbSi/tNTTz2Ff/3rX7j22mtxxBFH6Piqb+FU9X3uueesFRSrVq3Ciy++WGjp6yabbIKTTz4ZJ598Mp577jmMHz8e559/Pn72s58BKOcb5kHNnKM6//WvfwGA9lvVdbJkyRJrk3duVl5R21Q7/fOf//RWmvzzn/9smM/ajGu+s3DzzTfjvffes0jg/fbbD1deeSX+8pe/YKeddvLy/PnPf8ZLL72EL33pS7n61czb6LN2LTR2ekUXw6pVq3DXXXehX79+mXu4tLa2eqMXP/rRjzyG/a233rLCgwYNwqabbooPPvgg0w61f0GRT95N/JOf/CSGDRuGOXPmWPFz5szBgAEDrDfivfnmm3j22WetZW7caNwTTzyB2267DXvttVfhGTfTpk3D4sWL8aUvfQmrVq0q/JbET3ziE5g8ebL+1Pug39rair322gu/+c1vrNf1Llq0CHPnzsVOO+2kmfeBAwcCgOcATpkyBUOGDMH3vvc9rFq1yiuj6AgmhXpbEedscnUA4C0tuPrqq0uXCwCf+tSnAAD/+7//a8VfdNFFuXn/+9//er8FRZiq67xM3Yrg1ltvtV5j/Ne//hUPPfSQrgeQOC7PPvusdS6eeOIJ3H///ZauMrYpcthtF7XPV5G3SxZBo6/5KnjhhRf025qqYu7cufjJT36CSZMmWfuUnHnmmfjvf/+LL3/5y94989FHH8W5556LrbbaCgcddBAAYMWKFViwYAFbxh133AGg2BLaiIiIiJ6EnuizlsHSpUvx7LPPesvaTjjhBNx444249NJLM/ciy4LyUc8880z87W9/K+yzjhs3zuq/J0yYUKl8in322QcLFy7UbyoEElLzRz/6EQYNGqTJu5A/M2LECOy22264/PLL2YfqKj4rkPjIVX1WKSUuvvjiSuVut912GD58OC677DJr25Vrrrkm154VK1bg/ffft+I22WQTDB482LrOi9atCF5//XXrbdrLli3Dddddh/Hjx+vVH2rQ/L777tNyy5cvt2ZElbVtu+22w4gRI3DZZZdZdbvjjjvwj3/8o2E+azOu+bL4z3/+g2effZZ9JiuKJ554Al//+tex5pprWm+d/8Y3voH+/fvjS1/6knePfPvtt/HlL38ZAwYMsPZ7u/fee9lZjmrv3uizdi30qJlbd9xxhx75WLx4MebOnYvnnnsOp512WuZSu/322w/XX389hg4dinHjxmHBggX4wx/+gLXWWsuSGzduHHbbbTdMmDABw4YNwyOPPIKbb77Zer0wh0bvuXX22WfjuOOOwyGHHIIpU6bgz3/+M372s5/hnHPOsdZF//jHP8ZZZ51ljawdeuih6N+/P3bccUeMGDECzzzzDK644goMGDAA3//+9wvbcdBBB+HYY4/Fb37zG4waNQq77LJLQ+pXBd/97ndx9913Y6eddsKxxx6LPn364PLLL8cHH3yAH/zgB1pu/PjxaG1txbnnnoulS5eira0Nn/zkJzFixAjMmTMHhx9+OD72sY/hsMMOw/Dhw/Hvf/8bv/vd7/CJT3wCP/7xj0vZ1L9/f4wbNw433ngjNt98cwwbNgxbbbUVO5V+r732Qr9+/fDpT38aX/rSl/Duu+/iyiuvxIgRIyqNBowfPx5Tp07FpZdeiqVLl2LHHXfEPffcg+effz4377XXXotLL70UBx54IDbZZBO88847uPLKKzFkyBBNBpWpWxFsuumm2GmnnfCVr3wFH3zwAS666CKstdZa1maxX/jCF3DBBRdgypQpOOqoo7B48WJcdtll+MhHPmJtVF7Gtm222QZHHnkkrrjiCixZsgS77ror/vrXv+Laa6/FAQccYG0m39F47bXX9IgjxaBBg3DAAQeU1qfIKEoAZ+Hmm2/GoEGDsHLlSrz22muYN28e7r//fmyzzTbea76nTZuGhx9+GBdffDGeeeYZTJs2DWuuuSYee+wxXHXVVVhrrbVw880365cTrFixAjvuuCM+/vGPY++998aoUaOwZMkS3Hrrrfjzn/+MAw44oPBSgoiIiIjuit7gswLJ7PQnnngCQELgPfnkk/qFKfvvv7/eA+yWW27BjBkzcPXVV2P69OkAksGnSy+9FJMmTcKAAQO8fvHAAw/UA5dZ2GijjbDjjjviN7/5DQAUJreagS9+8Yu4/PLLMX36dDz66KMYM2YMbr75Ztx///246KKL9AzoLH/mkksuwU477YSPfvSjOOaYY7Dxxhtj0aJFWLBgAV599VXd3mUwYcIEzJkzB9/97nex6aabYsSIEexetGPHjsUmm2yCU045Ba+99hqGDBmCX/3qV5X37+rbty+++93v4ktf+hI++clP4tBDD8WLL76Iq6++Oncw8F//+hf22GMP/M///A/GjRuHPn364JZbbsGiRYtw2GGHla5bEWy++eY46qij8PDDD2OdddbBVVddhUWLFlkD0nvttRc23HBDHHXUUfjGN76B1tZWXHXVVfrZgqKobX379sW5556LGTNmYNddd8XUqVOxaNEiXHzxxRgzZgxOPPHESvVpBD788EPWZwWK/0YpTj/9dFx77bV48cUXrVUcIfz5z3/G+++/j9WrV+Ott97C/fffj9tuuw1Dhw7FLbfcYm05s9lmm+Haa6/FtGnT8NGPfhRHHXUUNtpoI7z00kv46U9/ijfffBO/+MUvrH2LTzjhBKxYsQIHHnggxo4di5UrV+KBBx7AjTfeiDFjxmDGjBml6hfRZHT8CxobD+61yu3t7XL8+PFyzpw51utvpfRfq/zf//5XzpgxQ6699tpy0KBBcsqUKfLZZ5+Vo0ePtl5Z/N3vflfusMMOco011pD9+/eXY8eOleecc06nvAr0iiuukFtssYXs16+f3GSTTeSFF17o1VO9ipa+vvfiiy+WO+ywgxw2bJjs06ePXHfddeXnP/95+dxzz5W24ZBDDpEA5KmnnlpvdYIYPXp0oVdZP/bYY3LKlCly0KBBcsCAAXL33XeXDzzwgCd35ZVXyo033li2trZ6bXPvvffKKVOmyKFDh8r29na5ySabyOnTp8tHHnlEy6jXPLvgXvv7wAMPyAkTJsh+/fpZ1xwne9ttt8mtt95atre3yzFjxshzzz1XXnXVVd4rg3fddVf2lcEu3nvvPfnVr35VrrXWWnLgwIHy05/+tHzllVe8a999LfFjjz0mp06dKjfccEPZ1tYmR4wYIffbbz+rDbLqFmoflTZ69Ggdpq8FPv/88+WoUaNkW1ub3HnnneUTTzzh5f/Zz34mN954Y9mvXz85fvx4OW/ePE9nlm1cu69atUqeddZZcqONNpJ9+/aVo0aNkqeffrr1em0pw9dh0fNRBupV09yH1lWdu4cfftjKr+r5xhtvWDrdduKg8tL76AYbbCD3228/edVVV3ntQnHrrbfKPffcU6655pqyra1NbrrppvLkk0+27JAyafMrr7xSHnDAAXL06NGyra1NDhgwQG677bbyhz/8ofUq8IiIiIieht7msx555JHBPu3qq6/WcqpdaFxWXtc/ysMll1wiAcgddtihcZVzkOUDUSxatEifw379+smPfvSjVr0VQv6MlFK+8MIL8ogjjpAjR46Uffv2leuvv77cb7/95M0336xlQn7Cvffe6/nACxculPvuu68cPHiwBKB9G072mWeekZMnT5aDBg2Sa6+9tjzmmGPkE0884Z0/zu8K4dJLL5UbbbSRbGtrk9ttt5287777PB9L+Y2qjDfffFMed9xxcuzYsXLgwIFy6NChcuLEifKXv/ylpTtUt1D70DR6jSlfcN68eXLrrbeWbW1tcuzYsfKmm27y8j/66KNy4sSJsl+/fnLDDTeUF1xwAauzTLtLKeWNN94ot912W9nW1iaHDRsmp02bJl999VVLpsyzSr0o+hulPj+FqidtQ6Uz7/et8qpP37595fDhw+Uuu+wizznnHLl48eJg3ieffFJOnTpVrrvuurJv375y5MiRcurUqfKpp57yZO+44w75hS98QY4dO1YOGjRI9uvXT2666abyhBNOkIsWLSreWBEdAiFlhd0EIyIiIiIiIiIiIiIiIiIiIiIiugB69J5bERERERERERERERERERERERE9G5HcioiIiIiIiIiIiIiIiIiIiIjotojkVkREREREREREREREREREREREt0UktyIiIiIiIiIiIiIiIiIiIiIiui0iuRURERERERERERERERERERER0W0Rya2IiIiIiIiIiIiIiIiIiIiIiG6LPp1tQEeiVqvh9ddfx+DBgyGE6GxzIiIiInoNpJR45513sN5666GlpXPHVd5//32sXLmyUt5+/fqhvb29wRZFRERE2Ig+a0RERETnoKv4rPX4q0Dv9Fl7Fbn1+uuvY9SoUZ1tRkRERESvxSuvvIINNtig08p///33sXb//lheMf/IkSPx4osv9jpnISIiomMRfdaIiIiIzkVn+qz1+qtA7/RZexW5NXjwYADJhTpkyJBOtiYiIiKi92DZsmUYNWqUvg93FlauXInlAI5vbUFbybwfAPjxwoVYuXJlr3IUIiIiOh7RZ42IiIjoHHQFn7UefxXovT5rryK31LTuIUOGREchIiIiohPQVZbXDBQSbSVt6SNlk6yJiIiIsBF91oiIiIjORVfwWav4q0Dv9Vl7FbkVEREREREBAC0CaC3pK8Q3sERERERERERERHQUqvirQO/1WSO5FRERERHR69BHJJ9SeZpjSkRERERERERERISHKv4q0Ht91t5a74iIiIiIXozWCiNhrc0xJSIiIiIiIiIiIsJDFX8V6L0+ayS3IiIiIiJ6HSK5FRERERERERER0ZURya1yiORWRERERESvQ6uQFcit3rk5Z0RERERERERERMejir8K9F6ftbfuNRYRERERERERERERERERERHR63HJJZdgzJgxaG9vx8SJE/HXv/41KHvllVdi5513xpprrok111wTkydP9uSnT58OIYT12XvvvZtah0huRURERET0OrQKs0ln0U+VkbOIiIiIiIiIiIiIKqjir1bxWW+88UacdNJJmDlzJh577DFss802mDJlChYvXszKz58/H1OnTsW9996LBQsWYNSoUdhrr73w2muvWXJ77703/vOf/+jPL37xi6pNUQiR3IqIiIiI6HVoban2iYiIiIiIiIiIiOgIVPVXy/qsF1xwAY455hjMmDED48aNw2WXXYYBAwbgqquuYuV//vOf49hjj8X48eMxduxY/OQnP0GtVsM999xjybW1tWHkyJH6s+aaa1ZtikKIrnpERERERK+D2qCz7CciIiIiIiIiIiKiI1DVX1U+67Jly6zPBx984JWxcuVKPProo5g8ebKOa2lpweTJk7FgwYJCdq5YsQKrVq3CsGHDrPj58+djxIgR2GKLLfCVr3wFb731VvXGKIBIbkVERERE9DpEcisiIiIiIiIiIqIro15ya9SoURg6dKj+zJ492yvjzTffxOrVq7HOOutY8eussw4WLlxYyM5vfvObWG+99SyCbO+998Z1112He+65B+eeey7+9Kc/4VOf+hRWr15dvUFyEN+WWAIrP1yIFasehxB9O6X8VbV30Craw+UHHrzqeVcCzbuq9l+0tgxCCyk/T7fMsCsvv5t3Ze2/aMUAtLS0hfWIQDxsAa5cmdN+79XeQrtYAxCtXkGePkHjcmR1XLbce1iKfhiMlvTlrjSPLSussKvbtcuW5WxI4lbgXfRDf7Sij2dbVj7OvjybOZ3vyOXoj/5oFe77P5hyyMXDXQP8dcfHKzveqa1Af7SjT0uLZ5ufh7ePJoSuzVD6MrkCg2R/tLTkj0k04/0oq2UNn+zzkSZo7hxUIat662uVIyIiuh+W1V7AstoLaBGdc+daJZeiLwZCdFL5K2tvo58YWl/5pDMtO7bxQe2/6CeG6PIrjY3IamUDwMraW+gn1oQQAZ+BcRTKlpMlv6r2X/TBUF1+Gd1atoAzE9L74eplaBWD2Po3epyK05eUPzjc/mXtyWkLV8eHHy5Fa2ux8quWmYXVq5eitWUIhOisUcE+GDBo104qu7GoOriq7nyvvPIKhgwZouPb2vzn6Hrx/e9/Hzfc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/epX4/rrrz/g3B0ciAi/8zu/gxe84AUHnZUDxze+8Q1cdNFF+NSnPoUf/uEfPujsBAKBQCAAIDhrcNbgrMFXWwRnDZxMhObWIcQ999yDCy644KCzEXgYsLW1hVtvvRVXXXWVuaWUcNVVV+GWW245wJwFTiXcc889ABDfhUAgEAicUgjOenQQnDWwGwRnDZxMhHDrkOFLX/oSfu3Xfg0//dM/fdBZCTwM+OY3v4lxHPHoRz+6cX/0ox+NO+6444ByFTiVkHPGa17zGvztv/238bSnPe2gsxMIBAKBAIDgrEcNwVkDOyE4a+BkI4RbB4Trr78eRLT294UvfKEJc/vtt+Pqq6/Gi170IrziFa84oJw/tNhPPQQCgYprrrkGf/mXf4kPfehDB52VQCAQCJyGCM5aEJw1EHhwCM4aONlYHHQGjipe97rX4aUvfelaP0984hPt/Gtf+xqe+9zn4tnPfjbe/e53n+TcPXzYaz0cNTzqUY/CMAy48847G/c777wTF1988QHlKnCq4Nprr8Xv/u7v4g//8A/xPd/zPQednUAgEAichgjOWhCcdT2CswbWIThr4OFACLcOCBdeeCEuvPDCXfm9/fbb8dznPheXXnop3vOe9yCl00fhbi/1cBSxubmJSy+9FDfffLMZosw54+abb8a11157sJkLHBiYGa9+9avxO7/zO/jkJz+JJzzhCQedpUAgEAicpgjOWhCcdT2CswbmEJw18HAihFunOG6//XY85znPwfd+7/fiV37lV/CNb3zD7h21WZDbbrsNd911F2677TaM44jPfe5zAIAnPelJOPvssw82cycR1113HV7ykpfgWc96Fi677DK8/e1vx/3334+XvexlB521hx333XcfvvSlL9n1V77yFXzuc5/DBRdcgMc97nEHmLOHF9dccw0++MEP4j/9p/+Ec845x2xZnHfeeTjjjDMOOHeBQCAQOIoIzloRnPVoc9bgqxXBWQMPJ4iZ+aAzEViN9773vSs7hKPWdC996Uvxvve9b+L+iU98As95znMe/gw9jHjnO9+Jt7zlLbjjjjvwzGc+E+94xztw+eWXH3S2HnZ88pOfxHOf+9yJ+0te8hK8973vffgzdEAgoln397znPTsumQgEAoFA4GQgOGtFcNajzVmDr1YEZw08nAjhViAQCAQCgUAgEAgEAoFA4NDi9FkIHwgEAoFAIBAIBAKBQCAQOHII4VYgEAgEAoFAIBAIBAKBQODQIoRbgUAgEAgEAoFAIBAIBAKBQ4sQbgUCgUAgEAgEAoFAIBAIBA4tQrgVCAQCgUAgEAgEAoFAIBA4tAjhViAQCAQCgUAgEAgEAoFA4NAihFuBQCAQCAQCgUAgEAgEAoFDixBuBQKBQCAQCAQCgUAgEAgEDi1CuBUIBAKBQCAQCAQCgUAgEDi0COFWIBAIBAKBQCAQCAQCgUDg0CKEW4FAIBAIBAKBQCAQCAQCgUOLEG4FAqcwvvGNb+Diiy/GL//yL5vbpz/9aWxubuLmm28+wJwFAoFAIBAIBAIFwVkDgcBBg5iZDzoTgUBgNX7/938fL3jBC/DpT38a3//9349nPvOZ+Imf+Am89a1vPeisBQKBQCAQCAQCAIKzBgKBg0UItwKBQ4BrrrkGf/AHf4BnPetZ+Iu/+Av8yZ/8CY4dO3bQ2QoEAoFAIBAIBAzBWQOBwEEhhFuBwCHAd7/7XTztaU/DV7/6Vdx66614+tOfftBZCgQCgUAgEAgEGgRnDQQCB4WwuRUIHAJ8+ctfxte+9jXknPFXf/VXB52dQCAQCAQCgUBgguCsgUDgoBCaW4HAKY6trS1cdtlleOYzn4nv//7vx9vf/nb8xV/8BS666KKDzlogEAgEAoFAIAAgOGsgEDhYhHArEDjF8TM/8zP4D//hP+C///f/jrPPPhs/8iM/gvPOOw+/+7u/e9BZCwQCgUAgEAgEAARnDQQCB4tYlhgInML45Cc/ibe//e34zd/8TZx77rlIKeE3f/M38V//63/Fu971roPOXiAQCAQCgUAgEJw1EAgcOEJzKxAIBAKBQCAQCAQCgUAgcGgRmluBQCAQCAQCgUAgEAgEAoFDixBuBQKBQCAQCAQCgUAgEAgEDi1CuBUIBAKBQCAQCAQCgUAgEDi0COFWIBAIBAKBQCAQCAQCgUDg0CKEW4FAIBAIBAKBQCAQCAQCgUOLEG4FAoFAIBAIBAKBQCAQCAQOLUK4FQgEAoFAIBAIBAKBQCAQOLQI4VYgEAgEAoFAIBAIBAKBQODQIoRbgUAgEAgEAoFAIBAIBAKBQ4sQbgUCgUAgEAgEAoFAIBAIBA4tQrgVCAQCgUAgEAgEAoFAIBA4tAjhViAQCAQCgUAgEAgEAoFA4NDi/wfcTbbXdtZJjQAAAABJRU5ErkJggg==", "text/plain": [ "
" ] @@ -59818,7 +34959,7 @@ "outputs": [ { "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAABV4AAAGRCAYAAACdTKj5AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8fJSN1AAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOx9d9wdRfX+M/umdxJCkUBCJxQTOqElkRIERHqLEBABpUj5ahT40URApCNKr4GIhI5IJwoKIh0Fg6gUKYGEQApJSHL3/P7YKefMzO69b0ud5/3cd6ecqTs78+zZ2bOKiAgJCQkJCQkJCQkJCQkJCQkJCQkJCQlthmxRVyAhISEhISEhISEhISEhISEhISEhYWlDUrwmJCQkJCQkJCQkJCQkJCQkJCQkJLQxkuI1ISEhISEhISEhISEhISEhISEhIaGNkRSvCQkJCQkJCQkJCQkJCQkJCQkJCQltjKR4TUhISEhISEhISEhISEhISEhISEhoYyTFa0JCQkJCQkJCQkJCQkJCQkJCQkJCGyMpXhMSEhISEhISEhISEhISEhISEhIS2hhJ8ZqQkJCQkJCQkJCQkJCQkJCQkJCQ0MZIiteEhISEhISEhISEhISEhISEhISEhDZGUrwu4VBK4ayzzlrU1UhYRnDzzTdDKYV3331XhF944YVYY4010NTUhKFDhwIAFixYgLFjx2LVVVdFlmXYc889F3p9lzS8++67UErh5ptvrit72GGHYdCgQe1ep8UZZWNs1qxZ+N73voeVVloJSimceOKJi7SeCQkJCQn1kThtwsJEGed65JFHMHToUHTp0gVKKXzxxRcAgHHjxmG99dZDx44d0adPn4Ve3yURgwYNwmGHHVZXruz+YllD2RiL3WclJCQsWUiK18UMZuHhvxVWWAEjR47Eww8/vKir1y644YYbMHjwYHTp0gVrr702fvWrXzWU7o9//GPQV+b317/+tTTd/Pnzsfzyy2PbbbctlSEirLrqqthkk02a3Z4yDBo0KDiv2223He69995m5/Xmm2/irLPOahVB8fuvc+fOWHHFFTFixAicd955mDJlSkP5PPbYYxg7diy22WYb3HTTTTjvvPMAADfeeCMuvPBC7Lvvvrjllltw0kkntbiuSzLOOuus0nHKfyNGjFgo9ZkzZw6OOOIIbLjhhujduzd69OiBIUOG4PLLL8f8+fMr696tWzesttpq+Na3voWbbroJX331VZvXr+q6VkrhjjvusLJlY+y8887DzTffjB/84AcYN24cDjnkkIbL59dplmXo06cPNtpoIxx11FF4/vnnS9N9+eWXOOecc/D1r38d3bp1Q+/evbHddtvh1ltvBREF8rNmzcKZZ56JDTfcEN27d0e/fv0wdOhQnHDCCfjoo4+a0WONYcaMGTj77LMxZMgQ9OjRA127dsWGG26In/zkJ0F5Dz74IIYPH44VVlgB3bp1wxprrIH9998fjzzyCABgxIgRDY3ppEBJSFi2saxx2quuugr77bcfVlttNSilGlI4GUyaNAljx47F0KFD0bNnT6y88srYbbfd8OKLL9ZNu8cee6Bbt26YOXNmqczo0aPRqVMnfPbZZw3XqQqHHXaYOK+9evXCkCFDcPHFFzebG8yePRtnnXUW/vjHP7aqTrw+HTp0QN++fbHpppvihBNOwJtvvtlQHp999hn2339/dO3aFb/+9a8xbtw4dO/eHZMmTcJhhx2GNddcE9dddx2uvfbaVtV1SUU9jsZ/CwvnnXcettpqK/Tv39/eS5544onBfUxb3fc0F1V99P3vf9/KlY2xsvusRuBfpz169MAaa6yBfffdF3fffTfyPI+mIyKMGzcO22+/Pfr06YNu3bpho402ws9+9jN8+eWXgXye57j11lux5ZZbom/fvujZsyfWWWcdHHrooZX35C1FrVbDTTfdhBEjRqBv377o3LkzBg0ahMMPPzyYM//+979j3333xcCBA9GlSxesssoq2Gmnnay+YXG7T0tYetFhUVcgIY6f/exnWH311UFE+OSTT3DzzTdj1113xYMPPojdd9/dys2ZMwcdOiy5p/Gaa67B97//feyzzz44+eST8cwzz+CHP/whZs+ejZ/85CcN5fHDH/4Qm2++uQhba621SuU7duyI/fbbD9dccw3ee+89DBw4MJB5+umn8cEHH7S5snDo0KH4v//7PwDARx99hGuuuQZ77703rrrqKrH41sObb76Js88+GyNGjGj1rkfTf7VaDVOmTMGzzz6LM888E5dccgnuvPNOfOMb37CyhxxyCA488EB07tzZhj311FPIsgw33HADOnXqJMJXWWUVXHrppa2q35KOvffeW4zHWbNm4Qc/+AH22msv7L333jZ8xRVXxMCBAzFnzhx07Nix3eozZ84cvPHGG9h1110xaNAgZFmGZ599FieddBKef/55jB8/Pkhz1VVXoUePHvjqq6/w4Ycf4tFHH8V3v/tdXHbZZfj973+PVVddtc3rGbuuAWDYsGHWXTbGnnrqKWy11VY488wzW1Q2v05nzpyJf/7zn5gwYQKuu+46nHTSSbjkkkuE/CeffIIddtgB//znP3HggQfiuOOOw9y5c3H33XdjzJgx+MMf/oDbb78dTU1NAIqHP9tvvz0mTZqEMWPG4Pjjj8esWbPwxhtvYPz48dhrr73wta99rUV1j+G///0vdtxxR7z//vvYb7/9cNRRR6FTp054/fXXccMNN+Dee+/Fv/71LwDARRddhB//+McYPnw4TjnlFHTr1g3//ve/8cQTT+COO+7ALrvsgtNOOw3f+973bP4vvPACrrjiCpx66qkYPHiwDf/617/eZm1YXEFEUcV6c7Gwb1QTEhYmlhVOe8EFF2DmzJnYYost8PHHHzcr7fXXX48bbrgB++yzD4455hhMnz4d11xzDbbaais88sgj2HHHHUvTjh49Gg8++CDuvfdeHHrooUH87Nmzcf/992OXXXZBv379mt2uMnTu3BnXX389AOCLL77A3XffjR/96Ed44YUXxEPSepg9ezbOPvtsAGi1cmOnnXbCoYceCiLC9OnT8dprr+GWW27Bb37zG1xwwQU4+eSTrWyMc73wwguYOXMmzjnnHNHnf/zjH5HnOS6//PLKe4ylHYMHD8a4ceNE2CmnnIIePXrgtNNOC+TfeustZFn77vN66aWXMHToUBx44IHo2bMn/vnPf+K6667DQw89hFdffRXdu3cX8s2572krmHHpY5111rHusjFWdp/VKPh1OmfOHLz33nt48MEHse+++2LEiBG4//770atXLytfq9Vw8MEH484778R2222Hs846C926dcMzzzyDs88+GxMmTMATTzyBFVdc0ab54Q9/iF//+tf49re/jdGjR6NDhw5466238PDDD2ONNdbAVltt1ex6l2HOnDnYe++98cgjj2D77bfHqaeeir59++Ldd9/FnXfeiVtuuQXvv/8+BgwYgGeffRYjR47EaquthiOPPBIrrbQS/ve//+Gvf/0rLr/8chx//PHNuk9b2pE4bTuDEhYr3HTTTQSAXnjhBRE+bdo06tixIx188MGLqGZtj9mzZ1O/fv1ot912E+GjR4+m7t2707Rp0yrTT5w4kQDQhAkTml32M888QwDo/PPPj8YfddRRlGUZffjhh83OuwwDBw4M2vrxxx9T9+7daZ111mlWXhMmTCAANHHixBbXp6r/Xn31VVphhRWoT58+9NFHH1Xmc/jhh1P37t2D8JEjR9IGG2zQ4vr5yPOcZs+e3Wb5LSpMmTKFANCZZ57ZqnzGjBlDAwcObJM6EREdd9xxBIA+/vhjG3bmmWcSAJoyZUogf9ttt1GWZbTlllu2WR2Imnddl42x1VdfPbjWGkXsOiUq5qs999yTANBvfvMbETdq1CjKsozuv//+IN2PfvQjAkC/+MUvbNidd95JAOj2228P5OfMmUPTp09vUd1jmD9/Pg0ZMoS6detGzzzzTBA/ffp0OvXUU61sr169aKeddorm9cknn0TD22I+WhKR5zm9+4+/09Qpn7b699nUqZTn+aJuUkJCm2JZ4rRERO+++669jrt3705jxoxpOO2LL75IM2fOFGFTp06l/v370zbbbFOZdvbs2dSzZ08aNWpUNH78+PEEgO64446G61MPY8aMCbhfrVajzTbbjAA0iz+3FS8CQMcee2wQPnXqVBo2bBgBoIceeqgyj1tuuSU6Zs8+++xSPtRSzJo1q83yWpTYYIMNaPjw4a3Kw8wV77zzTpvU6a677iIA9Nvf/taGtdV9T3NRNi59lI2xsvusRhC7Tg3OP/98AkD777+/CD/vvPMIAP3oRz8K0jzwwAOUZRntsssuNmzy5MmklKIjjzwykM/zvJQ7thTHHnssAaBLL700iFuwYAFdeOGF9L///Y+IiHbddVfq378/ff7554FsWb3aaj5a0pA4bfsjmRpYQtCnTx907do12Angv8753nvv4ZhjjsG6666Lrl27ol+/fthvv/2CV9Lnz5+Ps88+G2uvvTa6dOmCfv36Ydttt8Xjjz++EFpTYOLEifjss89wzDHHiPBjjz0WX375JR566KGG85o5cyYWLFjQsPw222yDQYMGRXf3zZ8/H3fddRdGjhzZprvOYlhppZUwePBgvPPOOzbslVdewTe/+U306tULPXr0wA477CBe07j55pux3377AQBGjhxpnyq19hUtjiFDhuCyyy7DF198gSuvvFKUzW0wKaVw00034csvv7T1MDITJ07EG2+8EdQvz3Ncdtll2GCDDdClSxesuOKKOProo/H555+LOgwaNAi77747Hn30UWy22Wbo2rUrrrnmGgDFzooTTzwRq666Kjp37oy11loLF1xwgXhlxtjuuuiii3DttddizTXXROfOnbH55pvjhRdeCNo8adIk7L///ujfvz+6du2KddddN3h6/+GHH+K73/0uVlxxRXTu3BkbbLABbrzxxrboclFn397Yfffdhw033BBdunTBhhtuGJinICIMGjQI3/72t4M8586di969e+Poo4+uLNvsnDa2zOph9OjR+N73vofnn39+oc4bgOun2BhTSuGdd97BQw89ZMPbwmZY165dMW7cOPTt2xfnnnuufSL817/+FY8++igOO+ww7LHHHkG6888/H2uvvTYuuOACzJkzBwDwn//8B0AxD/no0qWL2HnQWtx999147bXXcNppp0XNq/Tq1QvnnnsuAGDq1KmYMWNGtF4AsMIKK7RZvZYGEBF6rLgirt1kE1y59tot/l27ySYgyttkl0FCwpKApZHTAsUOypbu8tl0003Ro0cPEdavXz9st912+Oc//1mZtmvXrth7773x5JNP4tNPPw3ix48fj549e0bXqLZElmV2x6o5R59++imOOOIIrLjiiujSpQuGDBmCW265xaZ599130b9/fwDA2Wef3S6mavr164c77rgDHTp0sOudKZtzrhEjRmDMmDEAgM0339yaixg0aJB9g6Z///5B/R5++GFst9126N69O3r27InddtsNb7zxhqjDYYcdhh49euA///kPdt11V/Ts2ROjR48G0Hxe/Oc//xlbbLEFunTpgjXWWAO33npr0OYvvvgCJ510EgYNGoTOnTtjwIABOPTQQzF16lQr89VXX+HMM8/EWmuthc6dO2PVVVfF2LFj29SMVMzG6xtvvIFvfOMb6Nq1KwYMGICf//znwSvvY8aMwfLLLx+YwAKAnXfeGeuuu27dcoHGOW3Zfc/CQtkYK7vPagv89Kc/xc4774wJEybYt57mzJmDCy+8EOussw7OP//8IM23vvUtjBkzBo888oi9N33nnXdARFHuaMzLtBU++OADXHPNNdhpp52i329oamrCj370IwwYMABAwbc32GCDqE3mxGklEqdtfyTF62KK6dOnY+rUqZgyZQreeOMN/OAHP8CsWbPwne98pzLdCy+8gGeffRYHHnggrrjiCnz/+9/Hk08+iREjRmD27NlW7qyzzsLZZ5+NkSNH4sorr8Rpp52G1VZbDS+//HJl/nmeY+rUqQ39YoslxyuvvAIA2GyzzUT4pptuiizLbHw9HH744ejVqxe6dOmCkSNHNmQPSymFgw8+GH//+98DcvTII49g2rRplhC1J+bPn4///e9/9tWvN954A9tttx1ee+01jB07FqeffjreeecdjBgxwtqX3H777fHDH/4QAHDqqadi3LhxGDdunHjFty2w7777omvXrnjsscdKZcaNG4ftttsOnTt3tvXYfPPNrXH4AQMGBPU7+uij8eMf/xjbbLMNLr/8chx++OG4/fbbMWrUqGDMvPXWWzjooIOw00474fLLL8fQoUMxe/ZsDB8+HLfddhsOPfRQXHHFFdhmm21wyimniFfIDMaPH48LL7wQRx99NH7+85/j3Xffxd577y3Kev3117HlllviqaeewpFHHonLL78ce+65Jx588EEr88knn2CrrbbCE088geOOO86+CnTEEUfgsssua2Vvl+Oxxx7DPvvsA6UUzj//fOy5556BDSOlFL7zne/g4YcfxrRp00T6Bx98EDNmzAjmjnnz5mHq1Kn43//+h3vvvRcXXXQRBg4c2KxX6Izt1Kox0lLMnDkzOq8QEfr37186xsaNG4fll18eQ4cOteHmpq616NGjB/baay98+OGH1l6cGSOxV8gAoEOHDjj44IPx+eef4y9/+QsAWPMmZfZf2xIPPPAAADRk53aFFVZA165d8eCDDwbjKKEc+awZyL+c2fLfrBmLugkJCe2KZYHTthcmT56M5Zdfvq7c6NGjsWDBAtx5550ifNq0aXj00Uex1157oWvXru1VTQvzYLFfv36YM2cORowYgXHjxmH06NG48MIL0bt3bxx22GG4/PLLARRKpquuugoAsNdee9l1m7/i2xZYbbXVMHz4cPz1r3/FjBnxOfe0007DUUcdBaAwjzFu3DgcffTRuOyyy7DXXnsBKEwv8fqNGzcOu+22G3r06IELLrgAp59+Ot58801su+22wQOCBQsWYNSoUVhhhRVw0UUXYZ999gHQPF7873//G/vuuy922mknXHzxxVhuueVw2GGHiXuZWbNmYbvttsOvfvUr7Lzzzrj88svx/e9/H5MmTcIHH3wAoBj7e+yxBy666CJ861vfwq9+9SvsueeeuPTSS3HAAQe0vsNLMHnyZIwcORKvvvoqfvrTn+LEE0/ErbfeaseDwSGHHILPPvsMjz76aJD+qaeeCuYOIsLUqVMxefJka7auqampWaYrGrnvaSnmzp0bnVfmzZsHAKVjLHaftf3227dZvQ455BAQkX1I9ec//xmff/45Dj744FKzL4bv/v73vwfgOO2ECRPEvNweePjhh7FgwYKGv90wcOBAvPTSS/jHP/7RrvVampA4bTtiEe20TSiBedXC/3Xu3JluvvnmQB7eVvjYq9jPPfccAaBbb73Vhg0ZMqRFr+K+88470frFfvVeOz322GOpqakpGte/f3868MADK9P/5S9/oX322YduuOEGuv/+++n888+nfv36UZcuXejll1+u25Y33niDANApp5wiwg888EDq0qVLm77uS1S8wrzzzjvTlClTaMqUKfTaa6/RgQceSADo+OOPJyKiPffckzp16kT/+c9/bLqPPvqIevbsSdtvv70Na29TAwZDhgyh5ZZbzvpjrwKVvcYyfPjw4DVwY+LBf8X6kUceCcIHDhxIAOiRRx4Rsueccw51796d/vWvf4nwn/70p9TU1ETvv/8+Ebmx2q9fP2G24v777ycA9OCDD9qw7bffnnr27EnvvfeeyJO/JnHEEUfQyiuvTFOnThUyBx54IPXu3bthMwhVr7CYOt900002bOjQobTyyivTF198YcMee+wxAiBMDbz11lsEgK666iqR5x577EGDBg0KXvn47W9/K67XzTbbjF5//XUhU2VqgIjo888/JwC01157NdT2RmDGZdmPm0KIjTGicnMBjaBe2ksvvZQAWLMCxvxA7DUmg3vuuYcA0BVXXEFExTy97rrr2nN42GGH0Q033NDmr2MREW288cbUu3fvhuXPOOMMAkDdu3enb37zm3TuuefSSy+9VJlmWTU1UKvVaOqUT+m8vr3o7E5Zi3/n9e1FU6d8SrVabVE3KSGhTbEscVofzTU1EMPTTz9NSik6/fTT68ouWLCAVl55ZRo2bJgIv/rqqwkAPfroo62qiw/D/Qyn/fe//03nnXceKaXo61//OhERXXbZZQSAbrvtNptu3rx5NGzYMOrRowfNmDGDiNrf1IDBCSecQADotddeI6I45yozjxHjQzNnzqQ+ffoEr1hPnjyZevfuLcLHjBlDAOinP/2pkG0JL3766adt2KeffkqdO3em//u//7NhZh2/5557gj4wXHDcuHGUZVlggsiMl7/85S9B2jJUmRoYOHCguA5OPPFEAkDPP/+8aEPv3r3F/UWtVqMBAwbQAQccIPK75JJLSClF//3vf0X4xx9/LK7XAQMG0O9+9zsh05L7nrZA1bzCTSGUce4qcwH1UC/tK6+8QgDopJNOIiJ3zd57772laaZNm0YAaO+997Zhhx56KAGg5ZZbjvbaay+66KKL6J///GeL6lyFk046iQDQK6+80pD8Y489Rk1NTdTU1ETDhg2jsWPH0qOPPkrz5s0rTbOsmhpInLb9seRasF/K8etf/9oa3P7kk09w22234Xvf+x569uxZ+RSYP82eP38+ZsyYgbXWWgt9+vTByy+/bJ8Q9enTB2+88QbefvttrL322g3Xa6WVVmr41a0hQ4ZUxs+ZM6fUSHiXLl3sa7ll2HrrrbH11ltb/x577IF9990XX//613HKKafYL3CXYf3118fGG2+MO+64w34h8ssvv8QDDzyA3XffvU1f9zV47LHHxO67pqYmHHLIIbjgggtQq9Xw2GOPYc8998Qaa6xhZVZeeWUcfPDBuO666zBjxox2qVcZevToUfmV3OZiwoQJ6N27N3baaSfxupN5xW7ixIk4+OCDbfjqq6+OUaNGBXlst912WG655UQeO+64I37xi1/g6aefFruVDzjgACy33HLWv9122wEoPjgEAFOmTMHTTz+NE044Aauttpooy7wySES4++67sf/++9un6gajRo3CHXfcgZdffrn0Fe2W4uOPP7a7Anr37m3Dd9ppJ6y//vriy6LrrLMOttxyS9x+++32Q23Tpk3Dww8/jLFjxwavP44cORKPP/44vvjiCzz55JN47bXXol8qrYJ5LbItx4jBGWecYc8VR9++fdu8rObAb7M59uzZszSNiTO7bLp27Yrnn38e5557Lu68807cfPPNuPnmm5FlGY455hhcdNFF4gN2rcGMGTMq6+bj7LPPxnrrrYff/OY3ePTRR/Hwww/jtNNOw8Ybb4zbb7+9zXfWLw3ooABqxTcEOqTvDyQs5VgWOG1b49NPP8XBBx+M1VdfHWPHjq0r39TUhAMPPBCXXnop3n33Xfuq9fjx47Hiiitihx12aPM6fvnll8EbJVtvvbX9+NIf/vAHrLTSSjjooINsfMeOHfHDH/4QBx10EP70pz+Jj6u1N9qasxgOddBBBwle2NTUhC233BITJ04M0vzgBz8Q/uby4vXXX19wo/79+2Pddde1nBYoTAwNGTLE7qDkMFxwwoQJGDx4MNZbbz1Rrvmw1MSJE8U9VlvhD3/4A7baaitsscUWog2jR4/Gb37zGxuWZRlGjx6NK664AjNnzrQ85vbbb8fWW2+N1VdfXeTbt29fPP7445g7dy5eeeUV3HPPPZg1a1az69fW9z0G3/72t3HccccF4RtttFGbl9UctAWnBYCbbroJW2yxBW688Ubce++9uPfee/GjH/0I3/jGN3DrrbdilVVWaZP6mjIb5bU77bQTnnvuOZx//vl49NFH8dxzz+GXv/wl+vfvj+uvv77dza8siUictv2QFK+LKbbYYgvxCv5BBx2EjTfeGMcddxx23333UoXlnDlzcP755+Omm27Chx9+KF5jnT59unX/7Gc/w7e//W2ss8462HDDDbHLLrvgkEMOqfsV6i5dulR+WbU56Nq1q33FwsfcuXNb9ErUWmuthW9/+9u45557UKvV7FfEyzB69Gj86Ec/wrPPPoutt94a9913H2bPnt2QmYEpU6agVqtZf48ePQL7XD623HJL/PznP4dSCt26dcPgwYOt3ZnJkydj9uzZUbtFgwcPRp7n+N///ocNNtigbt3aCrNmzWqW0qYe3n77bUyfPr3Uro5vm8wnViaP119/vfT1cT8PX5lqlLDGdpYhqxtuuGFpvadMmYIvvvgC1157La699tqGym0LvPfeewAQvZFcd911g9coDz30UBx33HF47733MHDgQEyYMAHz58+PvpKz4oor2i907rvvvjjvvPOw00474e2338ZKK63UUP0Mqa0aI/PmzQteW+/fv3/da3OjjTZqs7mmLeG32RxnzpwZtSFl4rgsAPTu3Ru//OUv8ctf/hLvvfcennzySVx00UW48sor0bt3b/z85z+P5mW+wsvRt2/f0jWhV69e4oasERx00EE46KCDMGPGDDz//PO4+eabMX78eHzrW9/CP/7xD3Tp0qVZ+SUkJCzbWBY4bVviyy+/xO67746ZM2fiz3/+c11uaTB69GhceumlGD9+PE499VR88MEH4rXrKkyfPl1seOjUqVPdB51dunSx5nY6d+6M1Vdf3dpWBAoOs/baawdftTcP8AzHWVhohLM0B2+//TYAp6z04W+U6NChg+gfk0dzeLHPaYGC13J7sP/5z3+sGYOquv/zn/9smEu3Fd577z1sueWWQXjs3ufQQw/FBRdcgHvvvReHHnoo3nrrLbz00ku4+uqrA9lOnTrZa3n33XfHDjvsgG222QYrrLBCs5T7jdz3TJ48Wfh79+5d9551wIABi+VcU8VpyxDjtFmW4dhjj8Wxxx6Lzz77DH/5y19w9dVX4+GHH8aBBx6IZ555pjS/5txPm2uqOcrxzTffHPfccw/mzZuH1157Dffeey8uvfRS7Lvvvnj11Vex/vrrN5xXQkJrkBSvSwiyLMPIkSNx+eWX4+233y5Vvh1//PG46aabcOKJJ2LYsGHo3bs3lFI48MADheHy7bffHv/5z39w//3347HHHsP111+PSy+9FFdffTW+973vldYjdtNfhiplAFDs5KzVavj0008F4Zg3bx4+++yzFn/YatVVV8W8efPw5Zdf1t0detBBB2Hs2LEYP348tt56a4wfPx7LLbccdt1117rlbL755oI0nnnmmXU/BrD88ssvlgtvDPPnz8e//vWvSoVkc5HnOVZYYQXcfvvt0XifAMaITJ7n2GmnnUp3gJhdNQZlNxv8Bq4ezLXzne98x354wUe9G7yFgQMPPBAnnXQSbr/9dpx66qm47bbbsNlmm9X9CAFQKF9PO+003H///XU/xGVgbCZV2YV99tlnMXLkSBH2zjvv2N04Sxr8Ng8ePBj33XcfXn/99VK7W6+//joAlJK7gQMH4rvf/S722msvrLHGGrj99ttLFa//+9//ggcSEydOLLVjtt566+GVV17B//73P6y66qp128fRq1cv7LTTTthpp53QsWNH3HLLLXj++ecxfPjwZuWztKNJAXkrnvA3pd0BCcsYlkZO21aYN28e9t57b7z++ut49NFHm8XBNt10U6y33nr47W9/i1NPPRW//e1vQUQNbSY44YQTxEevhg8fXvejrU1NTUsMpwWK9bupqSn6UL8lMGNw3Lhx0QfWvo3Mzp07B0ro5vLituC0ptyNNtoIl1xySTS+uXyhPbD++utj0003td90uO2229CpUyfsv//+ddNuvfXWWHnllXH77bc3rHht9L5n5ZVXFv6bbrop+IDYkoIYpwUK3rrnnntG09TjtP369cMee+yBPfbYAyNGjMCf/vQnuyEkhubcT6+33noAgL///e8YOnRoZdt8dOrUCZtvvjk233xzrLPOOjj88MMxYcIE+1GzhAKJ07YfkuJ1CcKCBQsAoPLVibvuugtjxozBxRdfbMPmzp0b/apj3759cfjhh+Pwww/HrFmzsP322+Oss86qJKmxm/4yVCkDANgJ88UXXxSKzhdffBF5njd7QjX473//iy5dujS0Q+BrX/saRo4ciQkTJuD000/H448/jsMOO6whcn377beL3QHcPEBL0L9/f3Tr1g1vvfVWEDdp0iRkWWaJUEu/mtsc3HXXXZgzZ07wqn9rsOaaa+KJJ57ANtts0+KPPKy55pqYNWtWm5F9c96qDK/3798fPXv2RK1WW6g3GYakmF0VHLFx0rdvX+y22264/fbbMXr0aPzlL39p+MNfZizzXUT1YF4nrBojQ4YMCV7lbHRH7eKGWbNm4d5778Wqq65qyenuu++O888/H7feemtU8Vqr1ewDnXqmKJZbbjmsueaalWMx9mps1Suw3/rWt/Db3/4Wt912G0455ZTK8quw2Wab4ZZbbsHHH3/c4jyWViSSmpDQfCxtnLYtkOc5Dj30UDz55JO48847W/SQa/To0Tj99NPx+uuvY/z48Vh77bWx+eab1003duxY8cEibqKppRg4cCBef/115HkuFI6TJk2y8cDC4bTvv/8+/vSnP2HYsGFttuN1zTXXBFB8mLKl3LAteHEsz3ofE1pzzTXx2muvYYcddlgo/W8wcODAhjktUOx6Pfnkk/Hxxx9j/Pjx2G233Roem3Pnzm0Wp230vsfnYAvzTcS2xrhx46CUwk477QQA2HbbbdGnTx+MHz8ep512WlTRf+uttwJAQwrtzTbbDH/605/w8ccflypem3M//c1vfhNNTU247bbbGv7AVlm9ACROG0HitO2HrL5IwuKA+fPn47HHHkOnTp0qbew1NTUFTz1/9atfiS38APDZZ58Jf48ePbDWWmvhq6++qqyHuelv5FfPHtY3vvEN9O3b137N1OCqq65Ct27dsNtuu9mwqVOnYtKkSeJribFdCq+99hoeeOAB7LzzzsFT5TKMHj0an376KY4++mjMnz+/oZ0BALDNNttgxx13tL/WKl6bmpqw88474/777xdfQv3kk08wfvx4bLvttnYHb/fu3QEgevPx8ccfY9KkSa36Au9rr72GE088EcsttxyOPfbYFufjY//990etVsM555wTxC1YsCDanlgezz33XPClU6DoD3Mz1yj69++P7bffHjfeeCPef/99EWeupaamJuyzzz64++67o2S20R0zzcXKK6+MoUOH4pZbbhHk8fHHH8ebb74ZTXPIIYfgzTffxI9//GNr841j6tSp0Z0R119/PQCI10GrMH78eFx//fUYNmxYpe245ZZbTlwnO+6440J/VX327NmYNGmSsGPWXMyZMweHHHIIpk2bhtNOO83eqGy99dbYcccdcdNNN9kvvHKcdtpp+Ne//oWxY8fam6rXXnstWpf33nsPb775ZuUOZfNqLP9V3YTsu+++2GijjXDuuefiueeeC+JnzpyJ0047DUDRTzEZoPiSLBB/HXBZR5OiVv8SEpYlLI2ctjmYPn06Jk2aFCiFjj/+ePzud7/Db37zm0rbt1UwHPaMM87Aq6++2jCnXX/99cW6summm7aofI5dd90VkydPxu9+9zsbtmDBAvzqV79Cjx49rGK5W7duAOKctqyvmoNp06bhoIMOQq1Ws+tdW2DUqFHo1asXzjvvvCjnboQbtgUv9rHPPvvYV6p9mOtp//33x4cffojrrrsukJkzZ06zbf43il133RV//etf8be//c2GTZkypXTH70EHHQSlFE444QT897//FQ8HgMIsB783NLj77rvx+eefN8xpm3Pf43MwfwfswsCkSZOCe5bm4he/+AUee+wxHHDAAdakWbdu3fCjH/0Ib731VvRaeeihh3DzzTdj1KhR2GqrrQAUphdi9yTz5s3Dk08+iSzLKt+Ma8799KqrroojjzwSjz32GH71q18F8Xme4+KLL8YHH3wAoHhgFrvn+cMf/gAgcdoYEqdtP6Qdr4spHn74YftE+NNPP8X48ePx9ttv46c//Wnl6/O77747xo0bh969e2P99dfHc889hyeeeAL9+vUTcuuvvz5GjBiBTTfdFH379sWLL76Iu+66K2r4m6Otbbyec845OPbYY7Hffvth1KhReOaZZ3Dbbbfh3HPPFbalrrzySpx99tlix8EBBxyArl27Yuutt8YKK6yAN998E9deey26deuGX/ziFw3XY5999sExxxyD+++/H6uuumrp68ILAz//+c/x+OOPY9ttt8UxxxyDDh064JprrsFXX32FX/7yl1Zu6NChaGpqwgUXXIDp06ejc+fO+MY3voEVVlgBp5xyCm655ZaGX+d+5plnMHfuXNRqNWuX54EHHkDv3r1x7733tunuxOHDh+Poo4/G+eefj1dffRU777wzOnbsiLfffhsTJkzA5Zdfjn333bcyjx//+Mf2A2iHHXYYNt10U3z55Zf4+9//jrvuugvvvvsull9++WbV64orrsC2226LTTbZBEcddRRWX311vPvuu3jooYfw6quvAigIysSJE7HlllviyCOPxPrrr49p06bh5ZdfxhNPPBHYMW0rnH/++dhtt92w7bbb4rvf/S6mTZuGX/3qV9hggw2iO4V222039OvXDxMmTMA3v/nNwG7Ybbfdhquvvtp+xG3mzJl49NFH8fjjj+Nb3/pW1FbZXXfdhR49emDevHn48MMP8eijj+Ivf/kLhgwZggkTJrRLu8249PH1r3+92WYd/va3v2HkyJENmQMBgA8//BC33XYbgGI31ptvvokJEyZg8uTJ+L//+7/AFMOtt96KHXbYAd/+9rdx8MEHY7vttsNXX32Fe+65B3/84x9xwAEH4Mc//rGVf/zxx3HmmWdijz32wFZbbYUePXrgv//9L2688UZ89dVXDdWxUXTs2BH33HMPdtxxR2y//fbYf//9sc0226Bjx45444037G7cc889F7Nnz8bWW2+NrbbaCrvssgtWXXVVfPHFF7jvvvvwzDPPYM8998TGG2/cZnVLSEhYNrAscFoAePDBB/Haa68BKJTLr7/+ujUbs8cee9i1695778Xhhx8uXlG+7LLL8Jvf/AbDhg1Dt27d7BpksNdee9mH7lVYffXVsfXWW+P+++8HgIYVr+2Bo446Ctdccw0OO+wwvPTSSxg0aBDuuusu+zaO2XnatWtXrL/++vjd736HddZZB3379sWGG26IDTfcMNpXVfjXv/6F2267DUSEGTNm4LXXXsOECRMwa9YsXHLJJdhll13arH29evXCVVddhUMOOQSbbLIJDjzwQPTv3x/vv/8+HnroIWyzzTa48sorK/NoC17s48c//jHuuusu7Lfffvjud7+LTTfdFNOmTcMDDzyAq6++GkOGDMEhhxyCO++8E9///vcxceJEbLPNNqjVapg0aRLuvPNOPProow0rLZuDsWPHYty4cdhll11wwgknoHv37rj22mvt7mgf/fv3xy677IIJEyagT58+YlMOULwRtuOOO+KAAw7AeuuthyzL8OKLL+K2227DoEGDcMIJJwR5Lsz7HgMzLn2suOKKdrdpczB48OCGzIEAhQLflD137ly89957eOCBB/D6669j5MiRwbcrfvrTn+KVV17BBRdcgOeeew777LMPunbtij//+c+47bbbMHjwYGGW5IMPPsAWW2yBb3zjG9hhhx2w0kor4dNPP8Vvf/tbq9Bu7n1ZFS6++GL85z//wQ9/+EPcc8892H333bHccsvh/fffx4QJEzBp0iS76eT444/H7Nmzsddee2G99dbDvHnz8Oyzz+J3v/sdBg0ahMMPP7zN6pWQUBeUsFjhpptuIgDi16VLFxo6dChdddVVlOe5kAdAZ555pvV//vnndPjhh9Pyyy9PPXr0oFGjRtGkSZNo4MCBNGbMGCv385//nLbYYgvq06cPde3aldZbbz0699xzad68eQuppQ7XXnstrbvuutSpUydac8016dJLLw3aeeaZZxIAmjhxog27/PLLaYsttqC+fftShw4daOWVV6bvfOc79Pbbbze7Dvvttx8BoLFjx7a2OaUYOHAg7bbbbnXlXn75ZRo1ahT16NGDunXrRiNHjqRnn302kLvuuutojTXWoKamJtE3Y8aMIQD0zjvvVJYzceJEMc46duxI/fv3p+23357OPfdc+vTTT4M0ZnzyvMeMGUPdu3cPZIcPH04bbLBBtOxrr72WNt10U+ratSv17NmTNtpoIxo7dix99NFHVqaqv2bOnEmnnHIKrbXWWtSpUydafvnlaeutt6aLLrrIjuF33nmHANCFF14YpPevGyKif/zjH7TXXntRnz59qEuXLrTuuuvS6aefLmQ++eQTOvbYY2nVVVeljh070korrUQ77LADXXvttdF6xjBlypRo+bzON910kwi/++67afDgwdS5c2daf/316Z577qExY8bQwIEDo2Ucc8wxBIDGjx8fxL3wwgu033770WqrrUadO3em7t270yabbEKXXHIJzZ8/X8ia647PRQMGDKDdd9+dbrzxRpo7d27D7W4U/rj0f7zfysaYP3ZMnrE+j6U1ZSmlqFevXrTBBhvQkUceSc8//3xpupkzZ9JZZ51FG2ywgR3X22yzDd18883BfPbf//6XzjjjDNpqq61ohRVWoA4dOlD//v1pt912o6eeeqp+J7UAn3/+OZ1xxhm00UYbUbdu3ahLly604YYb0imnnEIff/wxERHNnz+frrvuOtpzzz1p4MCB1LlzZ+rWrRttvPHGdOGFF9JXX30VzXvChAnB/LwsoFar0dQpn9JvVuxJV3RXLf79ZsWeNHXKp1Sr1RZ1kxIS2hTLGqc1/Cv24+u66RceVpW2EU7H8etf/5oA0BZbbNF2jfNQxv18fPLJJ/YcdurUiTbaaKOA4xARPfvss7TppptSp06dxDiI9VUZeH9lWUZ9+vShjTfemE444QR64403AvkY5zLlvfDCC0LW8KEpU6YE+UycOJFGjRpFvXv3pi5dutCaa65Jhx12GL344otWpl5/tYYXDx8+nIYPHy7CPvvsMzruuONolVVWoU6dOtGAAQNozJgxNHXqVCszb948uuCCC2iDDTagzp0703LLLUebbropnX322TR9+vTSuvrYYIMNgvJ5nfm1SkT0+uuv0/Dhw6lLly60yiqr0DnnnEM33HBD6Ti/8847CQAdddRRQdyUKVPoqKOOovXWW4+6d+9OnTp1orXXXptOPPHE4Fy15L6nLVB1XfN+KxtjsbHjpy2DP69069aNBg0aRPvssw/dddddpbyjVqvRTTfdRNtssw316tWLunTpQhtssAGdffbZNGvWLCE7Y8YMuvzyy2nUqFE0YMAA6tixI/Xs2ZOGDRtG1113XTDPtwUWLFhA119/PW233XbUu3dv6tixIw0cOJAOP/xweuWVV6zcww8/TN/97ndpvfXWox49elCnTp1orbXWouOPP54++eSTaN5V92lLMxKnbX8oomZa405ISEhIWKxx0kkn4YYbbsDkyZPtK3wJCQltizzP8fm0z3D319fEggo7lfXQoUcP7PP6f7Bc334Nm8hJSEhISEhYFnD//fdjzz33xNNPP43ttttuUVcnIWGpROK07Y/UGwkJCQlLEebOnYvbbrsN++yzT1K6JiQkJCQkJCQkLLG47rrrsMYaa2Dbbbdd1FVJSEhIaDGSjdeEhISEpQCffvopnnjiCdx111347LPPonatEhIS2h5NCqD0BdiEhISEhIQ2wx133IHXX38dDz30EC6//HL7UdOEhIT2Q+K07YekeE1ISEhYCvDmm29i9OjRWGGFFXDFFVdg6NChi7pKCQnLBBJJTUhISEhIaFscdNBB6NGjB4444ggcc8wxi7o6CQnLBBKnbT8kxWtCQkLCUoARI0YgmexOSFj4SCQ1ISEhISGhbZE4bULCwkfitO2HZOM1ISEhISEhISEhISEhISEhISEhIaGNkXa8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VuVM0i//8i/Ta17zGnrTm95E/+7f/Tv6uq/7Orr99tvpj/7oj05btTNL999/P33d133d6pckJ108+s3f/E165StfSb/9279N7373u+mhhx6ib/3Wb6X777//tFU70yTbB0guHOO3PfrOgkmTJq3TxLOnQxPTnixNTHtpaeLZS08T054OTUx7csQiIqetxKTLg376p3+a/v7f//v0H/7DfzhtVc40vf3tb6cf/MEfpPvuu++0VTlTdMstt9A3fMM30M///M8T0fL1xj/1p/4U/cAP/AC9/vWvP2Xtzj4xM/3qr/4qvehFLzptVa4Y+uQnP0lPfvKT6Td/8zfpL/yFv3Da6pw50i/AvvgvvI6+eP+XjhzPYx93Nf2/3/tT8wuwkyZdIpp49tLRxLQnQxPTnh5NPHs6NDHtydLEtCdP08brpL3ps5/9LF1//fWnrcakSQfTgw8+SO9///vph3/4h4232Wzotttuo7vvvvsUNZs06eTos5/9LBHRHLdPmPQt/9HD80XUZtKkSbto4tlJlzNNTDvpSqSJaS8NTUx7cjSXoSftRR/5yEfo7/7dv0vf933fd9qqTJp0MP3xH/8xXbhwgW688cbAv/HGG+n8+fOnpNWkSSdH2+2WfvAHf5D+0//0P6Wv/uqvPm11Jk2aNOkRQRPPTrrcaWLaSVcaTUw76SzQXHi9wuj1r389MfPq70Mf+lAIc88999Add9xBL3nJS+gVr3jFKWl+edJRynvSpEmTjkuvfOUr6fd+7/fol37pl05blTNPx7KFdcydBZMmXak08eylp4lpJ02adBo0Me2lo4lpT46mqYErjF772tfSS1/60lWZZzzjGeb+xCc+QS984QvpBS94Af3CL/zCCWt39ujQ8p50MvTlX/7ldO7cObr33nsD/95776WbbrrplLSaNOlk6FWvehW9853vpPe+9730tKc97bTVOfMkFx485rGs+Q580qRDaeLZS08T0z4yaGLaSVcSTUx7aWli2pOjufB6hdENN9xAN9xww16y99xzD73whS+k5z3vefS2t71tGkg+Ah1S3pNOjh7zmMfQ8573PLrrrrvMGP52u6W77rqLXvWqV52ucpMmXSQSEfqBH/gB+tVf/VV6z3veQzfffPNpq3RF0PbCl2h74egfIthOe1iTJh1ME89eepqY9pFBE9NOuhJoYtrToYlpT47mwuukku655x765m/+5v9/e3fM0tYehwH4p0PFkirXoTjVRciikEF0tH4C/Qa2czbBr+BikSCCoxHByUUQJ4sBwaUISlZLSwpFCNilIgh67nRdeqXa+0/OTXyeLSckvJBAXt6cnMTIyEh8+PAhms3m/X2+TW2NRqMRl5eX0Wg04vb2Nk5PTyMiYnR0NAqFQr7husDCwkLMz8/HxMRETE5ORqVSiaurq3j//n3e0brWz58/4/z8/P72ly9f4vT0NIaGhuLNmzc5JutO5XI5tre3Y3d3N169enV/rbfBwcHo7+/POV33ell4mevjgYfps/nQaVtLp20vfbb9dNp86LSt05NlWZZ3CP5/qtXqgx/e3jKt8e7du9jc3Pzl+OHhYbx9+7b9gbrQ2tpaLC8vx8XFRZRKpVhdXY2pqam8Y3WtWq0WMzMzvxyfn5+ParXa/kBdrqfn379l3tjY+O3PQ3m6LMvix+VlZNndf36unp7e+Gto6MHXEPgz+mw+dNrW02nbR59tP522vXTa1jO8AgD8gSzLkow3//wxDQAAtJtO21qGVwAAAACAxFxdHgAAAAAgMcMrAAAAAEBihlcAAAAAgMQMrwAAAAAAiRleAQAAAAASM7wCAAAAACRmeAUAAAAASMzwCgAAAACQmOEVAAAAACAxwysAAAAAQGKGV6DrNZvNGB4ejqWlpftjx8fH8eLFi/j48WOOyQAA4HF0WoDO05NlWZZ3CIBW29/fj7m5uTg+Po5isRilUilmZ2djZWUl72gAAPAoOi1AZzG8As9GuVyOg4ODmJiYiHq9Hp8+fYq+vr68YwEAwKPptACdw/AKPBvX19cxNjYW3759i5OTkxgfH887EgAAPIlOC9A5XOMVeDY+f/4c379/j7u7u/j69WvecQAA4Ml0WoDO4YxX4Fm4ubmJycnJKJVKUSwWo1KpRL1ej9evX+cdDQAAHkWnBegshlfgWVhcXIydnZ04OzuLQqEQ09PTMTg4GHt7e3lHAwCAR9FpATqLSw0AXa9Wq0WlUomtra0YGBiI3t7e2NraiqOjo1hfX887HgAA/JZOC9B5nPEKAAAAAJCYM14BAAAAABIzvAIAAAAAJGZ4BQAAAABIzPAKAAAAAJCY4RUAAAAAIDHDKwAAAABAYoZXAAAAAIDEDK8AAAAAAIkZXgEAAAAAEjO8AgAAAAAkZngFAAAAAEjM8AoAAAAAkNjfJo97N2QWE9YAAAAASUVORK5CYII=", + "image/png": "iVBORw0KGgoAAAANSUhEUgAABMcAAAGGCAYAAAB/r+Y5AAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjMsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvZiW1igAAAAlwSFlzAAAPYQAAD2EBqD+naQABAABJREFUeJzsfXegFcX59jPnCvfSBaSpCKgoIAqKimBBIopRo1iwEQViLIkYlV/ks2MndrFE1FhRomI3KhbUxETsLWowxqgYlWYBpMOd74+zM/vOzDtbzjn3Uu48etjZqe/M7t159tkpQkopERAQEBAQEBAQEBAQEBAQEBAQ0ABRWNMGBAQEBAQEBAQEBAQEBAQEBAQErCkEcSwgICAgICAgICAgICAgICAgoMEiiGMBAQEBAQEBAQEBAQEBAQEBAQ0WQRwLCAgICAgICAgICAgICAgICGiwCOJYQEBAQEBAQEBAQEBAQEBAQECDRRDHAgICAgICAgICAgICAgICAgIaLII4FhAQEBAQEBAQEBAQEBAQEBDQYBHEsYCAgICAgICAgICAgICAgICABosgjgUEBAQEBAQEBAQEBAQEBAQENFisMXFMCIELLrhgTRUf0MBw1113QQiBL774wvC/8sorsfnmm6Oqqgp9+/YFAKxatQrjxo1D586dUSgUMGzYsHq3d13DF198ASEE7rrrrtS4o0aNQteuXevcprUZvnvsp59+wq9//Wt07NgRQgicdtppa9TOgICAgIBkBD4bUJ/w8a1p06ahb9++qKmpgRACP/74IwBg8uTJ6NGjBxo1aoQNN9yw3u1dF9G1a1eMGjUqNZ7v3aKhwXePce9YAQFrOyomjqkHBP21b98egwcPxjPPPFOpYtYq3H777ejZsydqamrQvXt33HDDDZnSvfzyy05bqd9rr73mTbdy5UpstNFG2G233bxxpJTo3Lkzdthhh9z18aFr167Odd19993x6KOP5s7r448/xgUXXFBWR2K3X3V1NTp06IA999wTl112GebNm5cpn+eeew7jxo3DrrvuijvvvBOXXXYZAOCOO+7AlVdeicMOOwx33303Tj/99JJtXZdxwQUXeO9T+ttzzz3rxZ6lS5fiuOOOQ+/evdGqVSs0b94cffr0wcSJE7Fy5cpE25s2bYrNNtsMv/jFL3DnnXdi+fLlFbcv6e9aCIH7779fx/XdY5dddhnuuusu/OY3v8HkyZNxzDHHZC6f/p0WCgVsuOGG2HbbbXHCCSfg9ddf96ZbvHgxLr74Ymy33XZo2rQpWrVqhd133x333HMPpJRO/J9++gnjx49H79690axZM7Rt2xZ9+/bFqaeeim+++SZHi2XDwoULceGFF6JPnz5o3rw5mjRpgt69e+P//b//55T35JNPYtCgQWjfvj2aNm2KzTffHIcffjimTZsGANhzzz0z3dPhRTcgoOGiofHZm2++GcOHD8dmm20GIUQmUUBh5syZGDduHPr27YsWLVqgU6dO2H///fHWW2+lpj3wwAPRtGlTLFq0yBtnxIgRaNy4Mb777rvMNiVh1KhRxnVt2bIl+vTpg6uvvjo3L1iyZAkuuOACvPzyy2XZRO3ZYIMN0KZNG/Tr1w+nnnoqPv7440x5fPfddzj88MPRpEkT3HTTTZg8eTKaNWuGmTNnYtSoUdhiiy1w22234dZbby3L1nUVafyM/uoLl112GXbZZRe0a9dOv0eedtppzjtMpd558iKpjU466SQdz3eP+d6xssD+O23evDk233xzHHbYYXj44YdRW1vLppNSYvLkydhjjz2w4YYbomnTpth2221x0UUXYfHixU782tpa3HPPPejfvz/atGmDFi1aYKuttsKxxx6b+D5eKlavXo0777wTe+65J9q0aYPq6mp07doVo0ePdp6Z//znP3HYYYehS5cuqKmpwSabbIK9995baw1r2zva+oQNKp3hRRddhG7dukFKiTlz5uCuu+7CfvvthyeffBIHHHCAjrd06VJssEHFi6833HLLLTjppJNw6KGHYuzYsXjllVfwu9/9DkuWLMH/+3//L1Mev/vd77DTTjsZfltuuaU3fqNGjTB8+HDccsst+PLLL9GlSxcnzt/+9jf873//q7ig07dvX/zf//0fAOCbb77BLbfcgkMOOQQ333yz8ZBMw8cff4wLL7wQe+65Z9mjh1T7rV69GvPmzcOrr76K8ePH45prrsGDDz6In/3sZzruMcccgyOPPBLV1dXa78UXX0ShUMDtt9+Oxo0bG/6bbLIJrr322rLsW9dxyCGHGPfjTz/9hN/85jc4+OCDccghh2j/Dh06oEuXLli6dCkaNWpUZ/YsXboUH330Efbbbz907doVhUIBr776Kk4//XS8/vrrmDJlipPm5ptvRvPmzbF8+XJ8/fXXePbZZ/GrX/0K1113Hf7yl7+gc+fOFbeT+7sGgAEDBmi37x578cUXscsuu2D8+PEllU3/ThctWoR//etfmDp1Km677TacfvrpuOaaa4z4c+bMwV577YV//etfOPLIIzFmzBgsW7YMDz/8MEaOHImnn34a9913H6qqqgAUBfo99tgDM2fOxMiRI3HKKafgp59+wkcffYQpU6bg4IMPxsYbb1yS7Rz++9//YsiQIZg1axaGDx+OE044AY0bN8YHH3yA22+/HY8++ij+/e9/AwCuuuoqnHHGGRg0aBDOOussNG3aFP/5z3/wwgsv4P7778e+++6Lc845B7/+9a91/m+++Sauv/56nH322ejZs6f232677SpWh4CAgHUTDYXPXn755Vi0aBF23nlnfPvtt7nS/ulPf8Ltt9+OQw89FL/97W+xYMEC3HLLLdhll10wbdo0DBkyxJt2xIgRePLJJ/Hoo4/i2GOPdcKXLFmCxx9/HPvuuy/atm2bu14+VFdX409/+hMA4Mcff8TDDz+M3//+93jzzTeNj1hpWLJkCS688EIAKPsFdO+998axxx4LKSUWLFiA999/H3fffTf++Mc/4vLLL8fYsWN1XI5vvfnmm1i0aBEuvvhio81ffvll1NbWYuLEiYnvF+s7evbsicmTJxt+Z511Fpo3b45zzjnHif/JJ5+gUKjbyVVvv/02+vbtiyOPPBItWrTAv/71L9x222146qmn8N5776FZs2ZG/DzvPJWCui9tbLXVVtrtu8d871hZQf9Oly5dii+//BJPPvkkDjvsMOy55554/PHH0bJlSx1/9erVOProo/Hggw9i9913xwUXXICmTZvilVdewYUXXoipU6fihRdeQIcOHXSa3/3ud7jppptw0EEHYcSIEdhggw3wySef4JlnnsHmm2+OXXbZJbfdPixduhSHHHIIpk2bhj322ANnn3022rRpgy+++AIPPvgg7r77bsyaNQubbropXn31VQwePBibbbYZjj/+eHTs2BFfffUVXnvtNUycOBGnnHJKrne0gJyQFcKdd94pAcg333zT8P/+++9lo0aN5NFHH12potY4lixZItu2bSv3339/w3/EiBGyWbNm8vvvv09M/9JLL0kAcurUqbnLfuWVVyQAOWHCBDb8hBNOkIVCQX799de58/ahS5cuTl2//fZb2axZM7nVVlvlymvq1KkSgHzppZdKtiep/d577z3Zvn17ueGGG8pvvvkmMZ/Ro0fLZs2aOf6DBw+W22yzTcn22aitrZVLliypWH5rCvPmzZMA5Pjx48vKZ+TIkbJLly4VsUlKKceMGSMByG+//Vb7jR8/XgKQ8+bNc+Lfe++9slAoyP79+1fMBinz/V377rFu3bo5f2tZwf2dSll8Xg0bNkwCkH/84x+NsKFDh8pCoSAff/xxJ93vf/97CUD+4Q9/0H4PPvigBCDvu+8+J/7SpUvlggULSrKdw8qVK2WfPn1k06ZN5SuvvOKEL1iwQJ599tk6bsuWLeXee+/N5jVnzhzWvxLPo4CAgPULDYnPSinlF198IWtra6WUUjZr1kyOHDkyc9q33npLLlq0yPCbP3++bNeundx1110T0y5ZskS2aNFCDh06lA2fMmWKBCDvv//+zPakYeTIkQ7vW716tdxxxx0lgFzcuVKcCIA8+eSTHf/58+fLAQMGSADyqaeeSszj7rvvZu/ZCy+80MuFSsVPP/1UsbzWJLbZZhs5aNCgsvJQz4rPP/+8IjY99NBDEoD885//rP0q9c6TF7770obvHvO9Y2UB93eqMGHCBAlAHn744Yb/ZZddJgHI3//+906aJ554QhYKBbnvvvtqv9mzZ0shhDz++OOd+LW1tV7eWCpOPvlkCUBee+21TtiqVavklVdeKb/66isppZT77befbNeunfzhhx+cuD67KvU8CpCyztcc23DDDdGkSRPnq5o9deXLL7/Eb3/7W2y99dZo0qQJ2rZti+HDhzvT71auXIkLL7wQ3bt3R01NDdq2bYvddtsNzz//fF1XReOll17Cd999h9/+9reG/8knn4zFixfjqaeeypzXokWLsGrVqszxd911V3Tt2pUdJbNy5Uo89NBDGDx4cEVHb3Do2LEjevbsic8//1z7vfvuu/j5z3+Oli1bonnz5thrr72MYal33XUXhg8fDgAYPHiwHvJZ7pB0ij59+uC6667Djz/+iBtvvNEom64LIITAnXfeicWLF2s7VJyXXnoJH330kWNfbW0trrvuOmyzzTaoqalBhw4dcOKJJ+KHH34wbOjatSsOOOAAPPvss9hxxx3RpEkT3HLLLQCKXylPO+00dO7cGdXV1dhyyy1x+eWXG0OE1XoSV111FW699VZsscUWqK6uxk477YQ333zTqfPMmTNx+OGHo127dmjSpAm23npr50vY119/jV/96lfo0KEDqqursc022+COO+6oRJMbNttrYDz22GPo3bs3ampq0Lt3b2cqrpQSXbt2xUEHHeTkuWzZMrRq1QonnnhiYtlqBKJaXyMNI0aMwK9//Wu8/vrr9frcAOJ24u4xIQQ+//xzPPXUU9q/EutYNGnSBJMnT0abNm1w6aWX6qmSr732Gp599lmMGjUKBx54oJNuwoQJ6N69Oy6//HIsXboUAPDZZ58BKD6HbNTU1Bhf8crFww8/jPfffx/nnHMOO5W8ZcuWuPTSSwEA8+fPx8KFC1m7AKB9+/YVsysgIKBhYn3ks0BxJFKp08n69euH5s2bG35t27bF7rvvjn/961+JaZs0aYJDDjkE06dPx9y5c53wKVOmoEWLFmz/VEkUCgU98ktdo7lz5+K4445Dhw4dUFNTgz59+uDuu+/Wab744gu0a9cOAHDhhRfWyZT8tm3b4v7778cGG2yg+zpVNuVbe+65J0aOHAkA2GmnnfTU2K5du+pR6O3atXPse+aZZ7D77rujWbNmaNGiBfbff3989NFHhg2jRo1C8+bN8dlnn2G//fZDixYtMGLECAD5OfHf//537LzzzqipqcHmm2+Oe+65x6nzjz/+iNNPPx1du3ZFdXU1Nt10Uxx77LGYP3++jrN8+XKMHz8eW265Jaqrq9G5c2eMGzeuostlcGuOffTRR/jZz36GJk2aYNNNN8Ull1ziTO8bOXIkNtpoI2epDwDYZ599sPXWW6eWC2Tns753nvqC7x7zvWNVAmeeeSb22WcfTJ06Vc8cWLp0Ka688kpstdVWmDBhgpPmF7/4BUaOHIlp06bp99LPP/8cUkqWN6qp9JXC//73P9xyyy3Ye++92bWEq6qq8Pvf/x6bbropgCLX3mabbdg1AgOfrXtUXBxbsGAB5s+fj3nz5uGjjz7Cb37zG/z000/45S9/mZjuzTffxKuvvoojjzwS119/PU466SRMnz4de+65J5YsWaLjXXDBBbjwwgsxePBg3HjjjTjnnHOw2Wab4Z133knMv7a2FvPnz8/04x5qFO+++y4AYMcddzT8+/Xrh0KhoMPTMHr0aLRs2RI1NTUYPHhwpjUahBA4+uij8c9//tPpxKZNm4bvv/9ed1x1iZUrV+Krr77SQ90/+ugj7L777nj//fcxbtw4nHfeefj888+x55576vWO9thjD/zud78DAJx99tmYPHkyJk+ebExnqgQOO+wwNGnSBM8995w3zuTJk7H77rujurpa27HTTjvpRSU33XRTx74TTzwRZ5xxBnbddVdMnDgRo0ePxn333YehQ4c698wnn3yCo446CnvvvTcmTpyIvn37YsmSJRg0aBDuvfdeHHvssbj++uux66674qyzzjKGzCtMmTIFV155JU488URccskl+OKLL3DIIYcYZX3wwQfo378/XnzxRRx//PGYOHEihg0bhieffFLHmTNnDnbZZRe88MILGDNmjB76fNxxx+G6664rs7X9eO6553DooYdCCIEJEyZg2LBhzrx6IQR++ctf4plnnsH3339vpH/yySexcOFC59mxYsUKzJ8/H1999RUeffRRXHXVVejSpUuuKQNqLa+ke6RULFq0iH2uSCnRrl077z02efJkbLTRRujbt6/2V+S7XDRv3hwHH3wwvv76a72GibpHuCHzALDBBhvg6KOPxg8//IB//OMfAKCncvvWI6sknnjiCQDItO5a+/bt0aRJEzz55JPOfRQQEBBQChoCn60rzJ49GxtttFFqvBEjRmDVqlV48MEHDf/vv/8ezz77LA4++GA0adKkrszUUB9+2rZti6VLl2LPPffE5MmTMWLECFx55ZVo1aoVRo0ahYkTJwIoCgE333wzAODggw/WfTadzlQJbLbZZhg0aBBee+01LFy4kI1zzjnn4IQTTgBQnAo8efJknHjiibjuuutw8MEHAyguMUHtmzx5Mvbff380b94cl19+Oc477zx8/PHH2G233RwRd9WqVRg6dCjat2+Pq666CoceeiiAfJz4P//5Dw477DDsvffeuPrqq9G6dWuMGjXKeI/56aefsPvuu+OGG27APvvsg4kTJ+Kkk07CzJkz8b///Q9A8d4/8MADcdVVV+EXv/gFbrjhBgwbNgzXXnstjjjiiPIb3IPZs2dj8ODBeO+993DmmWfitNNOwz333KPvB4VjjjkG3333HZ599lkn/Ysvvug8O6SUmD9/PmbPnq2X56mqqso1TTfLO0+pWLZsGftcWbFiBQB47zHuHWuPPfaomF3HHHMMpJT6Q8Lf//53/PDDDzj66KO9U9wV1/3LX/4CIOazU6dONZ7LdYFnnnkGq1atyryOcJcuXfD222/jww8/rFO7Ajyo1BA0NbTU/lVXV8u77rrLiQ9r6B837WzGjBkSgLznnnu0X58+fUqadvT555+z9nG/tCk2J598sqyqqmLD2rVrJ4888sjE9P/4xz/koYceKm+//Xb5+OOPywkTJsi2bdvKmpoa+c4776TW5aOPPpIA5FlnnWX4H3nkkbKmpqaiU5ukLE7X2meffeS8efPkvHnz5Pvvvy+PPPJICUCecsopUkophw0bJhs3biw/++wzne6bb76RLVq0kHvssYf2q+tplQp9+vSRrVu31ufc0GffsN1BgwY5U97UdFZ7Otm0adMc/y5dukgActq0aUbciy++WDZr1kz++9//NvzPPPNMWVVVJWfNmiWljO/Vtm3bGlN0H3/8cQlAPvnkk9pvjz32kC1atJBffvmlkaeaIiGllMcdd5zs1KmTnD9/vhHnyCOPlK1atco85TNpyK6y+c4779R+ffv2lZ06dZI//vij9nvuueckAGNa5SeffCIByJtvvtnI88ADD5Rdu3Y16iKllH/+85+Nv9cdd9xRfvDBB0acpGmVUkr5ww8/SADy4IMPzlT3LFD3pe9Hp31y95iU/qmRWZCW9tprr5UA9BRKNdWSG7at8Mgjj0gA8vrrr5dSFp/TW2+9tb6Go0aNkrfffnvFh59LKeX2228vW7VqlTn++eefLwHIZs2ayZ///Ofy0ksvlW+//XZimjCtMiAgwEZD4rM28k6r5PC3v/1NCiHkeeedlxp31apVslOnTnLAgAGG/6RJkyQA+eyzz5Zliw3F+xSf/c9//iMvu+wyKYSQ2223nZRSyuuuu04CkPfee69Ot2LFCjlgwADZvHlzuXDhQill3U+rVDj11FMlAPn+++9LKXm+5ZsKzHGhRYsWyQ033NCZTjZ79mzZqlUrw3/kyJESgDzzzDONuKVw4r/97W/ab+7cubK6ulr+3//9n/ZTffgjjzzitIHigZMnT5aFQsFZakHdL//4xz+ctD4kTavs0qWL8Xdw2mmnSQDy9ddfN+rQqlUr491i9erVctNNN5VHHHGEkd8111wjhRDyv//9r+H/7bffGn+vm266qXzggQeMOKW881QCSc8VOu3Tx7eTpkamIS3tu+++KwHI008/XUoZ/80++uij3jTff/+9BCAPOeQQ7XfsscdKALJ169by4IMPlldddZX817/+VZLNSTj99NMlAPnuu+9miv/cc8/JqqoqWVVVJQcMGCDHjRsnn332WblixQpvmjCtsnKo+AqiN910k16ob86cObj33nvx61//Gi1atEj8okK/DK1cuRILFy7ElltuiQ033BDvvPOOVls33HBDfPTRR/j000/RvXv3zHZ17Ngx81D1Pn36JIYvXbrUu7hgTU2NnoLkw8CBAzFw4EB9fuCBB+Kwww7Ddttth7POOkvvrOZDr169sP322+P+++/Xu38sXrwYTzzxBA444ICKTm1SeO6554xRLFVVVTjmmGNw+eWXY/Xq1XjuuecwbNgwbL755jpOp06dcPTRR+O2227DwoUL68QuH5o3b564A1JeTJ06Fa1atcLee+9tDO9WUwpeeuklHH300dq/W7duGDp0qJPH7rvvjtatWxt5DBkyBH/4wx/wt7/9zRj1d8QRR6B169b6fPfddwdQXKQcAObNm4e//e1vOPXUU7HZZpsZZakpElJKPPzwwzj88MP1FyqFoUOH4v7778c777zjnY5WKr799lv9ha1Vq1baf++990avXr2MXWO22mor9O/fH/fdd5/e3OH777/HM888g3HjxjnTPQYPHoznn38eP/74I6ZPn47333+f3YUmCWoaSCXvEYXzzz9fXyuKNm3aVLysPLDrrI4tWrTwplFh6ot1kyZN8Prrr+PSSy/Fgw8+iLvuugt33XUXCoUCfvvb3+Kqq64yNr0oBwsXLky0zcaFF16IHj164I9//COeffZZPPPMMzjnnHOw/fbb47777qv4CNWAgID1Gw2Bz1Yac+fOxdFHH41u3bph3LhxqfGrqqpw5JFH4tprr8UXX3yhp5VNmTIFHTp0wF577VVxGxcvXuyMyh44cKBesP3pp59Gx44dcdRRR+nwRo0a4Xe/+x2OOuoo/PWvfzU2ZKhrVJqvKP501FFHGZywqqoK/fv3x0svveSk+c1vfmOc5+XEvXr1MnhRu3btsPXWW2s+CxSXUujTp48eiUSheODUqVPRs2dP9OjRwyhXLUb/0ksvGe9XlcLTTz+NXXbZBTvvvLNRhxEjRuCPf/yj9isUChgxYgSuv/56LFq0SHOY++67DwMHDkS3bt2MfNu0aYPnn38ey5Ytw7vvvotHHnkEP/30U277Kv3Oo3DQQQdhzJgxjv+2225b8bLyoBJ8FgDuvPNO7Lzzzrjjjjvw6KOP4tFHH8Xvf/97/OxnP8M999yDTTbZpCL2qjKzctq9994bM2bMwIQJE/Dss89ixowZuOKKK9CuXTv86U9/qvOp5g0dFRfHdt55Z2O64VFHHYXtt98eY8aMwQEHHOAVlZYuXYoJEybgzjvvxNdff21M2VmwYIF2X3TRRTjooIOw1VZboXfv3th3331xzDHHpO4uVlNTk7hrTh40adJEDym1sWzZspKGgG+55ZY46KCD8Mgjj2D16tV6dzgfRowYgd///vd49dVXMXDgQDz22GNYsmRJpimV8+bNw+rVq/V58+bNnTUjbPTv3x+XXHIJhBBo2rQpevbsqedCz549G0uWLGHn0vfs2RO1tbX46quvsM0226TaVin89NNPuV6s0/Dpp59iwYIF3rne9noZdgeo8vjggw+8U+XsPGzBSwllaj0HRSp69+7ttXvevHn48ccfceutt3q38ObW+igXX375JQCwhH/rrbd2po0ce+yxGDNmjN6FderUqVi5ciU7BLlDhw5695XDDjsMl112Gfbee298+umn6NixYyb7FPlIukdWrFjhTNFr165d6t/mtttuW7FnTSVh11kdFy1axK5roMJoXABo1aoVrrjiClxxxRX48ssvMX36dFx11VW48cYb0apVK1xyySVsXmqHJYo2bdp4+4SWLVsaxDkLjjrqKBx11FFYuHAhXn/9ddx1112YMmUKfvGLX+DDDz9ETU1NrvwCAgIaLhoCn60kFi9ejAMOOACLFi3C3//+91ReqTBixAhce+21mDJlCs4++2z873//M6aYJWHBggXGB+nGjRunfoiqqanRywpUV1ejW7dueq0foMhfunfv7uxWqD6wKH5TX8jCV/Lg008/BQDv7ob2h+wNNtjAaB+VRx5ObPNZoMhp6fpkn332mZ6ymWT7v/71r8w8ulL48ssv0b9/f8efe+859thjcfnll+tdWD/55BO8/fbbmDRpkhO3cePG+m/5gAMOwF577YVdd90V7du3zyXAZnnnmT17tnHeqlWr1PfVTTfddK181iTxWR84PlsoFHDyySfj5JNPxnfffYd//OMfmDRpEp555hkceeSReOWVV7z55XmXVn9TeQTMnXbaCY888ghWrFiB999/H48++iiuvfZaHHbYYXjvvffQq1evzHkF5EOd7z1dKBQwePBgTJw4EZ9++qlXIDnllFNw55134rTTTsOAAQPQqlUrCCFw5JFHGgse7rHHHvjss8/w+OOP47nnnsOf/vQnXHvttZg0aRJ+/etfe+3gXsx8SHphA4ojolavXo25c+caHcOKFSvw3XfflbwYfufOnbFixQosXrw4dZTVUUcdhXHjxmHKlCkYOHAgpkyZgtatW2O//fZLLWennXYyOvfx48enLiK60UYbrZUPSA4rV67Ev//970TRKC9qa2vRvn173HfffWy43VFzHU5tbS323ntv79dUujUyAC8ppEQ7Depv55e//KVesNVGGhGvDxx55JE4/fTTcd999+Hss8/Gvffeix133DF18VKgKJCdc845ePzxx1MX71dQ8/iT1ilTWylTfP755/rL9roGu849e/bEY489hg8++MC7FsQHH3wAAN5OuEuXLvjVr36Fgw8+GJtvvjnuu+8+rzj21VdfOaLxSy+95F1bo0ePHnj33Xfx1VdfoXPnzqn1o2jZsiX23ntv7L333mjUqBHuvvtuvP766xg0aFCufAICAgIU1kc+WymsWLEChxxyCD744AM8++yzufhXv3790KNHD/z5z3/G2WefjT//+c+QUmb62HvqqacaC+UPGjQodZOnqqqqdYbPAsW+u6qqiv3oWgrUPTh58mT2g6K9ZlN1dbUjFOblxJXgs6rcbbfdFtdccw0bnpcr1AV69eqFfv366fWF7733XjRu3BiHH354atqBAweiU6dOuO+++zKLY1nfeTp16mSc33nnnc6mA+sKOD4LFDnrsGHD2DRpfLZt27Y48MADceCBB2LPPffEX//6V/3BnkOed+kePXoAAP75z3+ib9++iXWz0bhxY+y0007YaaedsNVWW2H06NGYOnWq3gghoPKoc3EMgN6NMWmo6EMPPYSRI0fi6quv1n7Lli1jd+xo06YNRo8ejdGjR+Onn37CHnvsgQsuuCCRTHAvZj4kvbAB0Df2W2+9ZYhRb731Fmpra3Pf+Ar//e9/UVNTk+lr28Ybb4zBgwdj6tSpOO+88/D8889j1KhRmUjQfffdZ3xpo1MhS0G7du3QtGlTfPLJJ07YzJkzUSgUdIdV6o5IefDQQw9h6dKlzrTGcrDFFlvghRdewK677lry4rBbbLEFfvrpp4qRMnXdkhZsbNeuHVq0aIHVq1fXKxlUnYn6QknB3Sdt2rTB/vvvj/vuuw8jRozAP/7xj8ybBah7mX6RT4OaPpF0j/Tp08eZupJ1ZNrahp9++gmPPvooOnfurEnEAQccgAkTJuCee+5hxbHVq1dr0T1t2m3r1q2xxRZbJN6L3FSgpCk/v/jFL/DnP/8Z9957L84666zE8pOw44474u6778a3335bch4BAQEBwPrHZyuB2tpaHHvssZg+fToefPDBkj5CjBgxAueddx4++OADTJkyBd27d8dOO+2Umm7cuHHGIud0KYpS0aVLF3zwwQeora01RKGZM2fqcKB++OysWbPw17/+FQMGDKjYyLEtttgCQHEjm1J5YSU4MZdn2gLkW2yxBd5//33stdde9dL+Cl26dMnMZ4Hi6LGxY8fi22+/xZQpU7D//vtnvjeXLVuWi89mfeex+Vd9zuapNCZPngwhBPbee28AwG677YYNN9wQU6ZMwTnnnMOKsWp31Cyi44477oi//vWv+Pbbb73iWJ536Z///OeoqqrCvffem3lRfp9dAAKfrWNUfLdKGytXrsRzzz2Hxo0bJ675UlVV5XxBuOGGG4whiwDw3XffGefNmzfHlltumbqFr3oxy/JLW6PhZz/7Gdq0aaN3qlG4+eab0bRpU+y///7ab/78+Zg5c6axEwb3xe/999/HE088gX322cf5QuPDiBEjMHfuXJx44olYuXJl5l0qd911VwwZMkT/yhXHqqqqsM8+++Dxxx83drmZM2cOpkyZgt12202PhGvWrBkAfpvib7/9FjNnzixrd6X3338fp512Glq3bo2TTz655HxsHH744Vi9ejUuvvhiJ2zVqlWZtl0+/PDDMWPGDGcXG6DYHop0Z0W7du2wxx574I477sCsWbOMMPW3VFVVhUMPPRQPP/wwSzqyfn3Oi06dOqFv3764++67jU7++eef17sl2jjmmGPw8ccf44wzztDrkFCoHR9t/OlPfwLg7h7rw5QpU/CnP/0JAwYMSFzPpHXr1sbfyZAhQ+p9Wt6SJUswc+ZMY22NvFi6dCmOOeYYfP/99zjnnHM0oRw4cCCGDBmCO++8U+/eQ3HOOefg3//+N8aNG6fJ7/vvv8/a8uWXX+Ljjz9OHOmnpgLRXxJZPOyww7Dtttvi0ksvxYwZM5zwRYsW4ZxzzgFQbCcuDlDcJQjgpz8EBAQEZMX6yGfzYMGCBZg5c6bz4n7KKafggQcewB//+MeSd2tU/PX888/He++9l5nP9urVy+hT+vXrV1L5FPvttx9mz56NBx54QPutWrUKN9xwA5o3b67Fv6ZNmwLg+ayvrfLg+++/x1FHHYXVq1frvq4SGDp0KFq2bInLLruM5dtZeGElOLGNQw89VE8fs6H+ng4//HB8/fXXuO2225w4S5cuzb3+bFbst99+eO211/DGG29ov3nz5nlHzh111FEQQuDUU0/Ff//7X2eXysWLF7M7JD788MP44YcfMvPZPO88Nv+yR5LVB2bOnOm8r+TFH/7wBzz33HM44ogj9NItTZs2xe9//3t88skn7N/KU089hbvuugtDhw7FLrvsAqA4zZR7H1mxYgWmT5+OQqGQOLskz7t0586dcfzxx+O5557DDTfc4ITX1tbi6quv1ruyvvTSS+z7ztNPPw0g8Nm6RsVHjj3zzDP668rcuXMxZcoUfPrppzjzzDMTpwoecMABmDx5Mlq1aoVevXphxowZeOGFF9C2bVsjXq9evbDnnnuiX79+aNOmDd566y089NBD7IKBFJVec+ziiy/GySefjOHDh2Po0KF45ZVXcO+99+LSSy811ju48cYbceGFFxpf74444gg0adIEAwcORPv27fHxxx/j1ltvRdOmTfGHP/whsx2HHnoofvvb3+Lxxx9H586dK7pNbl5ccskleP7557Hbbrvht7/9LTbYYAPccsstWL58Oa644godr2/fvqiqqsLll1+OBQsWoLq6Gj/72c/Qvn17nHXWWbj77rszT1175ZVXsGzZMqxevVrPFX/iiSfQqlUrPProoxUd5TNo0CCceOKJmDBhAt577z3ss88+aNSoET799FNMnToVEydOxGGHHZaYxxlnnKE3TRg1ahT69euHxYsX45///CceeughfPHFF5m2Pqe4/vrrsdtuu2GHHXbACSecgG7duuGLL77AU089hffeew9AsSN56aWX0L9/fxx//PHo1asXvv/+e7zzzjt44YUXnHW1KoUJEyZg//33x2677YZf/epX+P7773HDDTdgm222Yb+677///mjbti2mTp2Kn//8585aFvfeey8mTZqkN35YtGgRnn32WTz//PP4xS9+wa6f8dBDD6F58+ZYsWIFvv76azz77LP4xz/+gT59+mDq1Kl1Um91X9rYbrvtck9hfeONNzB48OBMU58B4Ouvv8a9994LoDiy4eOPP8bUqVMxe/Zs/N///Z8z7fSee+7BXnvthYMOOghHH300dt99dyxfvhyPPPIIXn75ZRxxxBE444wzdPznn38e48ePx4EHHohddtkFzZs3x3//+1/ccccdWL58eSYbs6JRo0Z45JFHMGTIEOyxxx44/PDDseuuu6JRo0b46KOP9Ki2Sy+9FEuWLMHAgQOxyy67YN9990Xnzp3x448/4rHHHsMrr7yCYcOGYfvtt6+YbQEBAes/GgKfBYAnn3wS77//PoCiAPjBBx/o6fEHHnig7rceffRRjB492piOdd111+GPf/wjBgwYgKZNm+r+R+Hggw/WH0WT0K1bNwwcOBCPP/44AGQWx+oCJ5xwAm655RaMGjUKb7/9Nrp27YqHHnpIj2hXI7iaNGmCXr164YEHHsBWW22FNm3aoHfv3ujduzfbVkn497//jXvvvRdSSixcuBDvv/8+pk6dip9++gnXXHMN9t1334rVr2XLlrj55ptxzDHHYIcddsCRRx6Jdu3aYdasWXjqqaew66674sYbb0zMoxKc2MYZZ5yBhx56CMOHD8evfvUr9OvXD99//z2eeOIJTJo0CX369MExxxyDBx98ECeddBJeeukl7Lrrrli9ejVmzpyJBx98EM8++2xmYSkPxo0bh8mTJ2PffffFqaeeimbNmuHWW2/VowxttGvXDvvuuy+mTp2KDTfc0Bg0ARRnVQwZMgRHHHEEevTogUKhgLfeegv33nsvunbtilNPPdXJsz7feRTUfWmjQ4cOetRWHvTs2TPT1GegKLKqspctW4Yvv/wSTzzxBD744AMMHjzYWUf5zDPPxLvvvovLL78cM2bMwKGHHoomTZrg73//O+6991707NnTmIL9v//9DzvvvDN+9rOfYa+99kLHjh0xd+5c/PnPf9aiY953siRcffXV+Oyzz/C73/0OjzzyCA444AC0bt0as2bNwtSpUzFz5kw9KOCUU07BkiVLcPDBB6NHjx5YsWIFXn31VTzwwAPo2rUrRo8eXTG7AhhUattLbuvrmpoa2bdvX3nzzTfrbXgVYG03+sMPP8jRo0fLjTbaSDZv3lwOHTpUzpw509lO95JLLpE777yz3HDDDWWTJk1kjx495KWXXpq4vWld4dZbb5Vbb721bNy4sdxiiy3ktdde69RTbXFLt9OeOHGi3HnnnWWbNm3kBhtsIDt16iR/+ctfyk8//TS3DcOHD5cA5Lhx48qtjhddunTJtN34O++8I4cOHSqbN28umzZtKgcPHixfffVVJ95tt90mN998c1lVVWW0jdoyWm2J7IPa1lj9GjVqJNu1ayf32GMPeemll8q5c+c6adT9SfP2bRU8aNAguc0227Bl33rrrbJfv36ySZMmskWLFnLbbbeV48aNk998842Ok9ReixYtkmeddZbccsstZePGjeVGG20kBw4cKK+66ip9D6ttuq+88konvf13I6WUH374oTz44IPlhhtuKGtqauTWW2/tbKE+Z84cefLJJ8vOnTvLRo0ayY4dO8q99tpL3nrrraydHJK2Cea2FpdSyocfflj27NlTVldXy169eslHHnlEjhw5Unbp0oUt47e//a0EIKdMmeKEvfnmm3L48OFys802k9XV1bJZs2Zyhx12kNdcc41cuXKlEVf93dFn0aabbioPOOAAeccdd8hly5ZlrndW2Pel/aPt5rvH7HtH5Zlla2a1XToAKYSQLVu2lNtss408/vjjje3HbSxatEhecMEFcpttttH39a677irvuusu53n23//+V55//vlyl112ke3bt5cbbLCBbNeundx///3liy++mN5IJeCHH36Q559/vtx2221l06ZNZU1Njezdu7c866yz5LfffiullHLlypXytttuk8OGDZNdunSR1dXVsmnTpnL77beXV155pVy+fDmb99SpU53nc0BAQMNGQ+OzintxP9qnq3ahfklps/A5iptuukkCkDvvvHPlKmfBx/tszJkzR1/Dxo0by2233dbhN1JK+eqrr8p+/frJxo0bG/cB11Y+0PYqFApyww03lNtvv7089dRT5UcffeTE5/iWKu/NN9804iouNG/ePCefl156SQ4dOlS2atVK1tTUyC222EKOGjVKvvXWWzpOWnuVw4kHDRokBw0aZPh99913csyYMXKTTTaRjRs3lptuuqkcOXKknD9/vo6zYsUKefnll8ttttlGVldXy9atW8t+/frJCy+8UC5YsMBrq41tttnGKZ/aTP9WpZTygw8+kIMGDZI1NTVyk002kRdffLG8/fbbvff5gw8+KAHIE044wQmbN2+ePOGEE2SPHj1ks2bNZOPGjWX37t3laaed5lyrUt55KoGkv2vabr57jLt37LQ+2M+Vpk2byq5du8pDDz1UPvTQQ3L16tVsutWrV8s777xT7rrrrrJly5aypqZGbrPNNvLCCy+UP/30kxF34cKFcuLEiXLo0KFy0003lY0aNZItWrSQAwYMkLfddpvznK8EVq1aJf/0pz/J3XffXbZq1Uo2atRIdunSRY4ePVq+++67Ot4zzzwjf/WrX8kePXrI5s2by8aNG8stt9xSnnLKKXLOnDls3knvaAH5IKTMuRpiQEBAQB3h9NNPx+23347Zs2frKQsBAQEBAQEBAQEB6woef/xxDBs2DH/729+w++67r2lzAgICMiKIYwEBAWsFli1bhs6dO+OAAw7AnXfeuabNCQgICAgICAgICMiNAw44AP/617/wn//8p143DwgICCgP9bJbZUBAQIAPc+fOxQsvvICHHnoI3333HbvWQkBAQEBAQEBAQMDajPvvvx8ffPABnnrqKUycODEIYwEB6xjCyLGAgIA1ipdffhmDBw9G+/btcd5556UuRhwQEBAQEBAQEBCwtkEIgebNm+OII47ApEmTsMEGYRxKQMC6hCCOBQQEBAQEBAQEBAQEBAQEBAQ0WBTWtAEBAQEBAQEBAQEBAQEBAQEBAQFrCkEcCwgICAgICAgICAgICAgICAhosGhQE6Fra2vxzTffoEWLFmGBxICAgIB6hJQSixYtwsYbb4xCYc19l1m2bBlWrFhRUtrGjRujpqamwhYFBAQE5EPgswEBAQFrBmsLnwUCp60LNChx7JtvvkHnzp3XtBkBAQEBDRZfffUVNt100zVS9rJly7BRkyZYXGL6jh074vPPPw9kIiAgYI0i8NmAgICANYs1yWeBwGnrCg1KHGvRogWA4s3csmXLNWxNQEBAQMPBwoUL0blzZ/0cXhNYsWIFFgMYU1VAdc60ywHcOHs2VqxYEYhEQEDAGkXgswEBAQFrBmsDnwUCp60rNChxTA09b9myZSATAQEBAWsAa8MUoGZCojqnHRuEjZ0DAgLWEgQ+GxAQELBmsTbwWSBw2kqjQYljAQEBAQEBBQFU5eQ0YfeagICAgICAgICAtQmB01YWQRwLCAgICGhQ2EAUf7nS1I0pAQEBAQEBAQEBASUhcNrKIrRNQEBAQECDQlUJX9mq6saUgICAgICAgICAgJIQOG1lEcSxgICAgIAGhUAkAgICAgICAgIC1nUETltZBHEsICAgIKBBoUrIEohEWLw0ICAgICAgICBg7UHgtJVFWI8tICAgICAgICAgICAgICAgIKDBIowcCwgICAhoUKgqYfHSMAQ9ICAgICAgICBgbULgtJVFEMcCAgICAhoUqgolrM8QRqAHBAQEBAQEBASsRQictrII4lhAQEBAQINCWLw0ICAgICAgICBgXUfgtJVFEMcCAgICAhoUApEICAgICAgICAhY1xE4bWURxLEc+Kl2NubgA1SJRtrPfy9mH6+Y9X5eXrsQjdAEhaj85HR8+Tn/dow0y2p/RGPRzCzfU02RUH/HBpkQRvyX1/6ADdAUVYVqCG+5fN5J+WaNu3LVfDQqtIYQVbnSmrYKj78VyrTJ6lU/olBogYKwHmlWPpxdcZhg/XW6hHatXbkQKDRBodAod7k+e5PuBdu/duVCiKqmKBSYR3re4cF54kdx5YofgQ2a8+WXY0vGdHL5AqBRc4i08suxISnL2tUodBla+YzXAAKRCAgIaOj4RL6LFVhecvpy+K+ExFL8hKaiRYb80vPOy20larEEC9EcrRLjmfmWUrZk40hILJUL0AwbevPm85WJ5QkSLykvKVdjGRagqWidkk+KDVm5uG2XrMVyLESN2DBzuUkc1Uybfp2krMVKuQiNRavUe8cbnvLOkBQmpcSq2oVoXEi+/3LZwxbEp5NSYrVciA1ylp+p7Az8U0qJWvkTNii0SI9cB5CyFo2rOqNp455rpPxKI3DayiKIYznwEs7GD/LTZFFA+2XvRDPHldLpHOw4dufghLO2S+vck7+MbRU0XFrnAIR080yLS8ti40bncTpPXE86X5qksow00bFAw1UeOo5wbTDSiziMPQp/WGrefDoznkiNz6cz28QO954Tt523c56WX3T/11o2gDmn91/F4trlc3FT/WSGOH4/IWU23asE8S9b1FqILj/PkXlAQEBAwNqG7+Qc3I0rkdQBpAlDWcSxdOHAJ+LwHNYnDiVzWQ8fdsLseGZZwsk/LX5ynGJ+MmJ91J+L5/GXSXlzaeJzQXhVUh25Ohk8kY3H8Xrr/UHGmdjvBe67giRpmPcFEubU10qTWD7zfuXNw5Mv957Dv/vAgfvOlR7H8bPKZdNB6vcBDu77p8c/pcykNAIiH1fl8igjfUE0Ra8OL5dnQMB6iSCO5UATtMEPQgDWy7SE+8df7O6y/tUKZHlCCBGVQsq3y47Pi3mqmIKEc+ecFc65iHxtMYEpXwrhig4ZwT1IaT0logeiIB1lZKwA+MpyFSfNKQTJl4knZFwGe72jOOqomkmAtokVxhwNe+gRZn3tduFsyoIsHZ0+qkbKcl2z3dImLGHMydK+/xPKKOf+Y21C1JGr8mnjVKCYtLJVUWsUEoA9anEdRVi8NCAgoCFjNVZFLn8nZvIKN16pvMPIMgVll5Exz6JfKgvOec6VTNyKGGoxxxb+pMcdnetvbVnTSZNLK96K0tuYClemHxcvtkhz9XrqV9n6ceXXkU2Zy7fCKd10kGZnYrio1/Z3Sy//r7ocYQwACqgp24a1BYHTVhZBHCsFjEBW8SJSQytbftrflHDOSGdMzHG+liTAFnboUfMGlZd00+gypZUHPbcFKumJR85hxdVlR+fGyC0iyjliEnNMjiP4r0vgO5K00WJZvvQ4pMgS5eLG1haaiekxa5gN1YbWTcCSJ8mcc+WWcl5qGHdeYb/4b63Cz56MWQmq3q4HKCA/kSgEIhEQELBeIqtAVhlIQH+QtPlkXF7sY4t00nHFeQnjPI5p1jAOpaKUsMLpOW0DkSmOtOKbbpNDqjawuLUR3wyj/MjM0zd6LI6TxNPd6y0M8Y3l65n8XFtUA9izR5LaK83PF07DjDqugfJZgyLUxd8bVy59f0sSmZJsYcNkSvhaAiEBUVibLcyHwGkriyCOlQrrJZV7oHGjx/h42QQMnZPVIdrpK/FwTUxPqu6LV64Nvge5LUopT3uodTlHKjRxnYYt2NniGZgwVmixRSxfHClMQhI5vPcSx1KyghPWpFWONSpLMOV4O+K855IvP8vosYohqfwK5J3qt6Y7MH1TrT8oaX2G9asJAgICAgj8nSmVeThOy+WUFJ5WdnaenI0ApPENKt/wXJoXiDi3bVXsloablhpTijiOO/OE/1rnCjF26WZ5TnxGHOLzzRNuT+P0p1HWOe1u8Vz9PiVgfORW+cWUUJI00Pwt6S5xyifvFDovzo+Wr/KQTLjll0U0q1ScLOnqSpDzwfjYXx8c3i6/vitcDwictrII4lg5iHq05IdRtr98vitLLzslUkJJafHi2GqdI/PBbpEFAXd4dgVEBOE4YDSWJG5dPu08RdxxOudC1Y+ki/KnI6douKqgMQLNEqMMG8hRi1y+MNs2GX1JFNKc7qnLEHAuDNPcefsBI650fOI8LfLizSztFrAEOaccTxZsmXk62jS2xBVU30KVLcwBMG/8fHmVVP562IEWCsVfrjR1Y0pAQEDAWoIsHWgWXpncaXBLjvh5hN+m0t5xfXkJIqzke2Mvi2Mp6UcRVI+w5OYQy2xJokss+tnxebGPb2/bz35TMUmSYEiT8uOXuyhyGsWBfUhr57RroNvVMaEy5ee2ydY764Nr+W7rEvmhD76qVGI6JcBdwxzpAqctpqkbU9YLBHGsXAgRiRgm6uPvj45M4768AP4uLEmMM794SCOeeXTFQbvzcTp5krkOE2YaM0FCXiqtJZBRf97uhGOCUKO8HVEMtP3dSggjtRnFngRg22zfQ0KSOnqOOg9LWGHbTx1tgY1pS8uSWKBRAhkp3zhHHFV/ebPPrToqkdLb+SaNHrPuCaMAiw0K9wKaoG1o3BuMQJVKOiTjl5CeFcZKRBDGDISvbAEBAQEckoWhinBbz5ctW7Cxo2bxkyQkid9ywpBJgZSElBy3VCi+aPDDqHBJpLo0ccUNd6+dSBPcBIriEOz68X6x2+8Hkj42zXyfoMUDCdMbPVwWcN8PtNvz3pBlQf+s5bM2CbN8w4+UYcPmzN5IaUiJ47uf6kUzStgAoD4MWF+FMSBw2kojiGOVQKpAJhh/+wnmv0u9C/tH7+e5OuuUCEYwtxKkpSVI8q/p7x6REgZPHK58IBZRon7d62/kR8+lZYshfkTiFNNZZhacbNuduginLVTxxV2EhGmn1MkiP/MLnXP9kzmuZQtvc9JXHm95iuARgc174X03DknmFKjbgUzvZOqaeVMMRpSKy5d8HM4zT3uXizpe93B9W2MsICAgICAr6rIzS8q3bjtR3xpc8dHks2a82DafUJMUZjI16muRJAH4Ful3z6WRExdGhbEkVFo3cMWqFDus95lK2OSkTbz13Pe41PJTbtd85ZfwPpcBDodOisiEl2IHG58Vcq10dcif12dhLKDyCKPqKgWRfW/KfEj7DFA3f+3Se5TRmSy6hYT6D/QnpE7l1sCKm8EQ5+tP9I8+t3piw993LtxznXnklpFbW6ncrEHgH75MHKN8aj9XD9s+wy4Zf4whR/u6UbfPT6LYOcvIQ7m5+Mpo2haVuP91FZUxyoLILaQskj1Z/EHGbupfJIRuBdhwCqOya+ZvT9mxRvpxGQlj6ibK8ae6LkF9Zcv7KwU33XQTunbtipqaGvTv3x9vvPFGYvypU6eiR48eqKmpwbbbbounn37aCJdS4vzzz0enTp3QpEkTDBkyBJ9++qmTz1NPPYX+/fujSZMmaN26NYYNG1ZaBQICAhog/A88tyvI/nBM6zb5LrlSvSEhd2w5NiOC59yXd1JZxXOh/WPCZrvUzvCxvEVtzMbvfLxNOv/67E9GEtV1S/VRZPIuYbxluO8T0qecqOkUdFqFKsj6CcYvvVb5kOUVIGti7m+BuyuT/HzndrF1zTcrNZ2ypLIbgDBWn5y2ISCIY5UEI5CV+z6Z5d61BmY75Sd18d4HZ+J0Sqtrt9gO1zmnwVfPXH+7VBSyBJvEIxGEdJmWm7PDR5eS6u3kQwwx21jw9nL8K6XsrNfBzTqyRDJxIsHOvvapmXLwcZ6k8Pjmy1BAafDmXG6RaRep0sJY1htAKhq+/veYVYXSfnnxwAMPYOzYsRg/fjzeeecd9OnTB0OHDsXcuXPZ+K+++iqOOuooHHfccXj33XcxbNgwDBs2DB9++KGOc8UVV+D666/HpEmT8Prrr6NZs2YYOnQoli1bpuM8/PDDOOaYYzB69Gi8//77+Mc//oGjjz46fwUCAgIaMCrdFziyByu08V2W7xWeVzpMESrfq7m0+Jdtk/eDoQcxl5FK6yFfH6X+DigjP7U4v0qjuRipmZEvsVBZLkh8n1DHGZmZQ2bkFUUOnT1yYswMF9ErTknzfrPdtPyy28CTgfP+RYzNJFClRUhqvBw3qk8/TNQVk/yTplNaZVcaDUEYA+qP0zYUhKapNIQ7iJl/TpahGjhl5u+sM2SZCKcM4XbDgjxok45cuY5A5Utn9+/C7fCcoyTn0uwYtb9PXOMylby/zj/mOKRMYZQdi5JglT0t0klyBCFZkVvY8ZHcftzINSqAOQkULMMFTJv0ueXnOwdJD1KnLKjE/e5mSnK1/7iMa03YFBfPlxaWP0HmfrySwmADEsYAoCBK++XFNddcg+OPPx6jR49Gr169MGnSJDRt2hR33HEHG3/ixInYd999ccYZZ6Bnz564+OKLscMOO+DGG28EUHx5uu6663DuuefioIMOwnbbbYd77rkH33zzDR577DEAwKpVq3DqqafiyiuvxEknnYStttoKvXr1wuGHH15qcwUEBDRY8A++JIGLE8Dy9dPJHDpLl2uWbY9NYoSRBHcWG7OE8t82XbHLOFobfxkiWETwRES445FRtrjnntnlJNmQRAX5EuK1xmTEpbj2Zu0QPvEvAyR/DalfWp3Z8kXG8pFefipEujAFxj+LH+euFLx55qh8pbm8/htpAKgvTttQEMSxuoDIKn6lZpMjcnnlGQ9Oz6KZvnLiDsAd/m2Gx0eOyNhhTlxphVPhiTk3xDkBUwgSxB/MT5K0xI8lCqRJpO1Hwpypk7ZNJK2wjr486bnTsWS5JTzCTK7vrL57L08Wth12QyexJVp+OX8GVKjLlbCMQjnWX99oYMIYABQKAlU5f4WISSxcuND4LV++nC1jxYoVePvttzFkyBBSbgFDhgzBjBkz2DQzZsww4gPA0KFDdfzPP/8cs2fPNuK0atUK/fv313HeeecdfP311ygUCth+++3RqVMn/PznPzdGnwUEBARkR4X6hhzZZPnInLdYKhnxlEJoP8qBhBOGRDdrtZQs3zWPpoXaXwiT65o5O35JHJ7zi3mrSy7T252P4aOtSbdASWJSFuTMMHP0EhQzX5J8wmxO5MlQVLb8fO8SlSy3YaEcThvgIohjeRCtccT9hP1Tjxfrq0kS6G3q+/KWlI89vZL7qsblb5xLd9g7mHhsnQQTzvbOyX+QgmSe1sEmHZOEM/2FyWoUH2nx+akCOZ3GisKCjiqjsdNJVHTUwphk2UfS/WLYlekC+zOh15odQZ10oegvc8EmvCmyMDHHX6bHyVpGHujnBvPzPXtse50808pseMIYUN5Xts6dO6NVq1b6N2HCBLaM+fPnY/Xq1ejQoYPh36FDB8yePZtNM3v27MT46pgU57///S8A4IILLsC5556Lv/zlL2jdujX23HNPfP/99zlaKSAgIEAhuY9I/CBMCQv7g7fby2uHG9tlccI6j92Kr5tEyMelfW4uzIRPClH2FVMrNigUv2NGkNnxOWEsz4rIbkzua6z9lZKXE2Ni6JA8T17K2+TBpSKPMGeUl7X8lAhZy/UmrEy07PWuMDJNp7RQCVsaFpstIowcqyzCbpV1DbWjHnMT2q+k0gnl4X2VFWA3mMwDc20DepSeONZOOmQXvaSOyQmr1BNRmudSxgqwXZagnhJkF8iob5RmPqwfmPg+JIQXSY0w46lrmfkY719J7xHlpke7bCOO+kpJ2sOOp/Olop6xZWhCgTYMdkkodlaFUhGwJFEr63najko+lLJ7pBW99L9bUdrfD712DQylrLdQFR2/+uortGzZUvtXV1dXzrAKoLa2FgBwzjnn4NBDDwUA3Hnnndh0000xdepUnHjiiWvSvICAgHUWaR26vy8pbcsqs7wsn3HscNWjC1B+pDiq8qUxTLfUsXyiGnfO+/k4scuR43oLbQWgd1QklTTqK2M7bd5G3TY3dK3Mfq2466H4aPZ3AHNn8fgNI9+1Z8FUJfFdxJeNYN5TmKZy4pT4bsO9H2apvx2nJG6Y5V3SovtJ4fWJhsdmiyiH0wa4CCPHKoSk54CkC2FlRMl/4Km7ZgrjZyxaWubDzO7a/OHJ1vlz8ERO8NNNLxCPsrKJRZpIkaC5sP6pzEew0ykd+6jtnqNtMCeacWZod0KDcwQiyjbZLa0fko+liVGul3QaIiOyXFS7LrY7+ulNk6AET8YPcKfo5hXWMleiMtEDYrRs2dL4+cSxjTbaCFVVVZgzZ47hP2fOHHTs2JFN07Fjx8T46pgUp1OnTgCAXr166fDq6mpsvvnmmDVrVtZqBgQEBDAooccu4+untEafKMlI/UyqofahNtf+TbOYt84vhWVF/KEvlTV53Gq1NCXoRcSB5KeFL4ZDCBIjcxsIk+KY1vB+1EIufpbvnI71Fp2zOSvHbcH45XqnoHYI8/5h85P+MgwuntEG+z0i7b5LvS+ZdxvDHsJPDf6q+KkUxo+O9qT/2e+VKrwklPEq2lCFsYDKI4hj9YR8Alm5b675O/XEzizaTUfvqGOExf7aXUzixDfzVcQm+gnyQyQQUUEL5Jw0pXMO/3ksRBB7GON0vSybve0lXH9vXKtcSQLiofG2ssQhbj9E7aeF0TxswOjcrWH8jD2CnDtuux1KEaj0PRAfEdWtWE/SMgxbKVvzscu33Lo8lg1lrLA0nWULY3kZQRDG6mUIeuPGjdGvXz9Mnz5d+9XW1mL69OkYMGAAm2bAgAFGfAB4/vnndfxu3bqhY8eORpyFCxfi9ddf13H69euH6upqfPLJJzrOypUr8cUXX6BLly75KhEQEBDggH8YsvyHcB37R9MlMZ4sXaRrkU8sMt1mdy4Yv9jfn49w/JNt88cxj4K1rSiQEfs0IaJiBc3Z9rPDyoOdg5oGKmjRVE3iYL9H2GQ+px2Ux9v3l/HOEjkkWa5Cu3Xk/KDvLPQ9xZcbbSIqUDkJfJfLyVi67Z9ya9hZyDyNn8HEukRDF8bCtMrKIkyrrCCoAMOGJ0yxpCj7fhUwhsRSu6QZLdYkkhbhzwCn7tHwb1pOVuKQaIP79M58LtWW2IJ0QiIWy9TUSJ40WWHS8ot6QscfJH/SM5v5WD1Tnv6IXkR9Hrdg2j0ZR5SWEpmzfHIUFqERTDw9RJ1GVe1SSn+s8xcxmTFucFWEMM5pA5UsUpFyMre3Slr2iDFVbsbvdPU9Qm0tRX0NQR87dixGjhyJHXfcETvvvDOuu+46LF68GKNHjwYAHHvssdhkk030umWnnnoqBg0ahKuvvhr7778/7r//frz11lu49dZbAQBCCJx22mm45JJL0L17d3Tr1g3nnXceNt54YwwbNgxAcWTbSSedhPHjx6Nz587o0qULrrzySgDA8OHDS6hFQEBAgA2bfBTh+Hg6pnxc0ywrSz9rikz5+q04f3OqpUkokvPU9nmWGfGV6R7ptM54cqgUMuKU5pTP2F47dxBeytlk+7nvBM5OmcRPe3lHsKWDu65K5LIpW/zuIlw/M3W28j2XVO0sz5Wv3hmM8sn7Bc06DfZ7mtHull1cfs63Wd96X7n5fT5WW6klcvIsERQ0njCtstII4lg9Qwpzbn3el+nMUGsTZDLK35mJBD8RleNdW0CJgb60XJl2fGnGL/VonEm+I+IexjZRccIMFlN0+EmO3amTztQSjHSAFxFVsoS3mCyliyV22wjOyDTYgp6MSlcjJT15GWVLGPdQuSjpb8q3XhknWCa6s/fq2YXLDHGykJgKCXHrAwoi/049BcXSc+CII47AvHnzcP7552P27Nno27cvpk2bphfUnzVrFgqFmNEMHDgQU6ZMwbnnnouzzz4b3bt3x2OPPYbevXvrOOPGjcPixYtxwgkn4Mcff8Ruu+2GadOmoaamRse58sorscEGG+CYY47B0qVL0b9/f7z44oto3bp1LvsDAgIC/EghCxIZ35bjfHy9mJQCIkNeioWZLNssQTDxzHXF+DXG4jRp/MoSjFh/ynXdhfaz+XMClmtLKdwq94c+ksZ3tONzeTjH6B0jN69jNyaAIXR5y3Tc/DVPsimvvxd5+LhG5s+lGXLKYXM9U0yR+6ZYf1FfnLahQEjZcN6YFi5ciFatWmHBggXGgspZ8cLq/8M3eCM1Xpbb09+ZZevIMi1uKs14XJlF7pIiYCUsrCmscDesaIOTjvmqIjhbbHHMTifT4wrLT6eTjL+dT544EihAGOdsuUb5wpuX4PJKCY9FMmGSABLPtb+ozNn5G+3tS+8NF+aXM0tkMjiujK87JzyZcU0RS3jTWH8f9p+LdS44cYzLt6j+8fnodMzfMGNO5lFjWZ/QSZpcpR7zAyZAbLZPSUnLff5WAsqG57YooFlVPiKxeLXEPp/VrlH7AwICAoDyn6dz5de4DmdUyBpP/yLhFbQ4EccfFsexR8i4XNjmm7zYZKd1ubK5/7vt5sI4wSrmtOWJYXYcIz7hJ8YC/lzdJOPH1hN6pos33LbZJ0ipI/MukSeMfW/yiV2ZxTFphDk2kzSZy/f42fYU7UzP01dHsH6Ez3vs9ebj4ZDxtN0UGzLSzFzx8tG0XNig0BZbt3+mpLRrA5+ldgROW1mEkWNrCPrlWKQ/cEqGgDO9UpWhn00ZplMmhalnF/cMkwA7y00AxRG/0vIDE89zTDSUZOSIJ1b84nWAHoGsR3AByTtUCv4Bz9nn7wiEWWfpOSJDG0QB8Y6bZPQWE9UwWNJ1LfJB2yLM9koq38kgQbgp9e8hV5+atMtlKUjZuTKXMJYbTM0rWlZd2V2/KGkI+vpR9YCAgIAKw2CVxLu0h6a//3Z3a/S9tMeiktDumOnQqZKKiQmSRp2ZUyqFDuGFPGq3BAx+ncZp03heLM4wba25Lt1lUwVZ0y5FkX+4fFu6dRB265r2GHZ4BRTpCbfvjbjlnOufc/SYf3OCfKD8lu4G7y2XKasiHNbz55VmR6nnPr/EMuuAHyXdfwEmAqetLNaZBflvvvlmbLfddnqHsAEDBuCZZ0pTfOsCgvySwox4wn7Q6v1o2J8ZM9uy7cUFxv1G2As2qnOHezBhRj08YQIoiiTETq+9pay6ave1VhZpWXpFId8XFCY+3XmSGyVn2EePqr3sBM6Nwh8lPdrZC9PPD0YYImJmKhKZE/OJijkKu56+9rDLS/TLvnF8cj2T/wr1Nj+WO6aZJSCpSC6cxLN39qr8VMpAVQICAgLKxdrOafPDIi56xzovA05On1SOn0SWZnoCqAwWUyRBwv22JtGV9GOc2ivJOByAGfnFpWU3D/L4STuOWSt1jb281+Pnj8THttuZu9JF2skLl+XClBwTI9YJpMcNwLgbvWuNZcybRcTnvX+ddSmyBAEnYA1gnRk5tummm+IPf/gDunfvDikl7r77bhx00EF49913sc0226xp8xK/aKSFKZTzIE/+osI/1LMswp8kMWSpc/zlpbj+WBayYGSS4dz4usP4+zpR58sZ9+HTZ5sHSpgSdgNYxhjTKS0xqtgPudMcuSO/5pg6pt8VQLzWGF1zjB3qzbmtcql9rBrqXEOm0UvpDNkLnYHMpK01lugm+XNxmM9exfusDnt7Wl7DmTGfG6KQf32GuvgyGhAQ0DCxtnPasuHRsCya5vjDCuee0pTZ2Bw6plqS8XPjITE8zomzL7EHKWmTq9iKJP7qSxUv2K8ChIcHuH5ce6jMU7k+GdXla1df+iQxzThGGeV57/Bdby883FdYYb73GF+5NF7JdmS6GRKmU6rCKw2ZoT4EgUfVDQKnrSzWGXHsF7/4hXF+6aWX4uabb8Zrr722ThCJTA/Eeipf6yaWRYoGmA95JaH4Oj8rvn6ou/FVl89+BctCJGjnwIk3Of7QdR2k2zZ2OznimSWE6PpRYYic20fAmk4JPp5vWiVXD+dIrgPtMCnhgUwbJF4mBOKpwzap8JxXqlzVEIlr41Oxtg46iVgIE9Z53aJY59DrJaGUbazDttcBAQGVwrrOaZNQ7Pbrsg9yp1cKm5iB9v15v3wVz83eO/Y1+SJfT2HEUj6mXWaXYtqSFOaHWwfbjHgKaRxXEBe7S2XUEGwXmLgsRvo9kEfs8tmXZEvebjuZZ9P9Ql0b2fcS8IJbSbBEMzM/WVzrt0Jw2kEg2uTNfW+sS4SpldkQOG1lsc6IYxSrV6/G1KlTsXjxYgwYMGBNm1MRZO9ESpXZzJSJHUyZiOUY9ykuZdzFmPHN2A6vsrMSTLxMX1YskDR0HTG9dlcUrneWJEn8HXqS6CTiDo5VtZgCLL94bS8iPLkqpFM/wwpZrKQtANpJ0tzaRFInc+2xhHs2YdRYLDJKw357IX8aToVJIy86tUDGB79oRhzl8Pvoftd/c1mEsYq8TwRhLA2FQvGXK01o1oCAgDrA+shpfbDpiR9FEuHvq/mvpa7wlDxjIXb71xLzrz8Wl04FJp9g5FI1aaYzGBafexLM/KVpsYg+ZJMR734BjiKZWNvtaYuJAOVtvnwy+qd88NTvBUnZcMoXmHDOJIvTMcF1DvtuiJvWLd0W7Ry5ltTRufOk586ja2WXyYkyPwtKfe1tQAictrJYp8Sxf/7znxgwYACWLVuG5s2b49FHH0WvXr288ZcvX47ly5fr84ULF9aHmSych5IVnv1v3+7S47s724NGOg9K6lYCQxKZ8JOGKEwJSly6Yi/tmKRysvPQEazeQAeRsiSgR5ELK9wG1z6+OgurbHox4wXwYUxLNBbzt9qDdjqpR2meU6Sm1bYVfVxSxl0HsO3lgyEomk2jryPXFgD56msZLhg/Jx6cShI/u1rMUPO6ntpo2JNl63cY9zUbV9U/matG7a7IS4UFufVkqmahhCHogUgEBARUEnk47drEZzPBQ2qF45LkXzuJYit8nyilgBBx7xoLMw4TYUpww9TIIFo2tcWSm7S/MyLMEmkcwUjGKV3bKtXReOqtv2LG4lzMEG2/KAdB258IiAkzPsrRMpL4rsOptJHJ7ZbbHutdwrTJtbBio8NoJgy35m+R9BFd3PtNSeekQfLUM2nZmkQEYSwTAqetLNaZBfkBYOutt8Z7772H119/Hb/5zW8wcuRIfPzxx974EyZMQKtWrfSvc+fOdWqfhL9bU2Hq3dZF5f76k3KS5GErAUgpix2NPpIwxHEho7QyJYwEStUBM2GQUm8UYGwKQG21W9Q6FdZ5bFDCebJ3HC55twnh/Ad99MVXLsSdi3Nk1hvzxk04knTutuAx2xHEKINsZIEtqHmP8Y1Hg3z3W/En2cvJ/p0Jxt9ubGqSfc/5mIOvLWSC26qIhNBrcuhgyfwsk5Ly9MKJx/xx2Xn4H0rrLdRXtry/gICAgEohD6etbz5bDkRCnyITzpLg5daS7UoT3T4/N9yRtUg4JxclWC1jzpq8MlSaVJGnu04gxA41oG8pdmzBZCWT25dcELZ9VFswpC7msMLgsjp+xKl0XOYI0Pbm8o4FG9oEtByHS+u8hJmfcnjeZXJxLNVmHK+k7WmEJwhjMnvRmSFjATXrX7AU8S8XGhg3LRWB01YW61TTNG7cGFtuuSX69euHCRMmoE+fPpg4caI3/llnnYUFCxbo31dffVXnNvplkRTRKuGXFC8pr0wQQv+yvnOnIVM+iQuFFvfidDbU8ZxX6tmZdW14Sf6hAo6v3nqUktG7O7096d3NcHbtDjYu9Y9sUkdP8iSU1a6KS1nlF5uNbymDo5VZtg3VlRe/gJqEtbwyMrQSIXH6OZBEpLiycl2MlKcQHRKf9jAJCAgICKgT5OG0a4LP2kjiqVl/XD5cGXnhylhcOC0lW0wzhS8Xunt8vFu15jvSltJM5YNbLy3J1uztw5NmR9oRgDmUn9oZ1Upwnyu5ktw45XJ0tlT6glBPmxwZpcg4PKl+uevOJWC0SUqYK60fSZgilnHHEmKfh5pSgTEPwqLxAWsC69S0Shu1tbXGMHMb1dXVqK6urhdbqIpudz9AdlGJe9DEz2Cuk7S/GEgSxtgpPAEq0CdcJE3TSkinwri6SaG+/sTpbYHE/gKCpPMywX27c75CwewQDEIWdRoStJ3J8G8ZX+OsR+SIm3gUiK8RUcyUXb76p7qjAlJ3utTle8bV1VUHSOyqM/6U9DcFJP99ZM0jMzJmQi+CtB3r/6e6sD5DQEDA2oYkTluffDaGuSpWrpRSuB84obpjs6/hOC4VnpS/l9PqfKOPYHB7MZNTmeuLmeH8QvwwbDPFLtttLtugtrOitTGnM5o7a8Y+5ffE1tVzeEiSkBXxFmGfx7zdtS9iu6yKZKcw28jx18Wb5MjgtcoeJpdKCHJJeRRX9ODuZrPZnLCMtmXh4IpT+9IxVkeHFAtkQpmEyyfBCWU4bqZrVMaFrMzf0LqBwGkri3VGHDvrrLPw85//HJttthkWLVqEKVOm4OWXX8azzz5bf0YkjBWX8fO8Lg2wS2VC/RaohdHdHSlp/2e+yLNx2Myj3YM8YewaT1o0k7oQHcvqWQRgru/FnJcLTpCiTcwKVtIuW1VC6GZ0nldElCoe3c7dW588Iop1kSXvHfuptlZxZbq/Lfppt+qDHQFOMo0I3i8zrHtWutdOXRM6FcBd3J+6GUUtMX4CJE/GcyOtXZx7MUe+ymEIZVxu6wfVCOszBAQErEmsFZyWBZV+6up5b0sHtj+scM4ONbsguWOMe7LsxMIQiLRwxbspp7YJbNL6ZTx/91lTaudjpXU+1HF2QfuJ6Kun3q2SEkInVdb6lAIBTqb1zUCxuTnHZjg/ThBK9stWS4ePVgpaoGNsYd5J9ZsG8WR3v0y95dLrvTYIUz6Bcn1E4LSVxTojjs2dOxfHHnssvv32W7Rq1Qrbbbcdnn32Wey9995rzqiKC2LldIJpIF+iEkayJIlhdphxjPLzhXHCjLBFM/Xcpu3qe7op8UXQcszzJOg4pKKOWJSQhm4SydU7XklfsG1q+AkSnYlrQCYdowZQ9krraFekAkd3Z0qzfobbEtGo/a5fHfwd0NGJqcJYHB/wCWkyk2AWi9IekdiwMTk4WRyrZJuRu4/uTrSeoCBK+MpWWze2BAQENDysXZy28oJY+V0G6a+5MOHQkehYdFE3zdHL2Sy/YtmS+MX2cHxWcTlelEBkjdtHSx0ivbZ5uWgq7FjSSGyOafPEjytgJDePxHYjjpu777bg/JOEKc2zE9KzSGg473uP1eBcPEEDE2Cky0jZqA1G2UlrjTHnZtqUAj15qHvAcWdA7imSSTdMnnJplq4+uF4gcNrKYp0Rx26//fY1bQJWYDH7QEn6e6/kHyDXQWazw+x01dFvmx079lVTBFXHJy1/3iJB/nXDdB7cyDOuUuX4ZUEp+dtiFVHSRKSkOTs2JjCcUu4bwbYzH6cuwBEZ1i0tD5b5Zad/maHEWPta2W6l+nFhWdyw/ePrIn2jKCuAOruyxtoe60dvWtJXtnVqhc6AgIC1GWsDpy1BWqhouUkclmehRR97N8hkuci/y6TfTZmpsiLezxGgfEsaqSDIWmOe2rklMztEkniJIodRUz+M+msDFHt3LYsFPWq7HT/NBvO6lHqXedOVwqdIE2Qpx+GsJB4VzfQ1yUNdM8alNgg7wCfaCTAzW8qHXX6eMuju9msKtPza2hVrzpAKI3DayiI0TQ4skz/kTiMr+LNz9oeZ8dg/F2F2ebY2kPR5R+0yaaSl/nY48ZfCtL2W1lEUR9ek2pKrV6swOHGU40Cq0hDGNL/EYx6T7QSCXAdlhrCOithY5dIRZuX48zcTNdm6mOTmldL1Q5KfEW6yA4fM2DdqbBDvZpCrP5f2SfwTkMnLPdTvO0p+rFy0pi2oCEQJu/qI0FsGBASsJ0haXL1iZSQUkbTMQGKYViDMztKkCCa/5eK5aahbeuNJNp7iruQnir94syvbZtudlZDkIQluXHeXd2G5+E+oamolldli+hn7QdhhriV5wjhLk47059qZrbxMrxOkHeNd4ZPL9l3xtDvDB5uLc+3AnXNlcmWxdXaMyMmP86CO+bCEf83ydQ31xWlvuukmdO3aFTU1Nejfvz/eeOONxPhTp05Fjx49UFNTg2233RZPP/20Ef7II49gn332Qdu2bSGEwHvvvefkseeeexZnmpHfSSedlN/4HAh0PwdaiE0h6/JBgNLyTn5+xJ11WlmcJsEdiycyOa4nPMvC5MreWgm9HbQhMUijXyoeJVeWv5i0dpYpkfykq0iG7F6JbSctaKXveKmRp7OwGJ2wvOsK2kQqVBnbZopUMsF15ka4V4BLskvdUHDvQ44JU7d9wyW51a9WmtuUq+sg6+Aa1OVuTbSM6lZ1X05AQEBAQJ3CnnK4Jizge3k7jPyE+shXhKnzZBWUqBiUX66gH/mkPqZA80Af0bDPk3L0h/E8n9go3faz48Sf8aL4issLFDmAUB+3JZOPvyZJfq7oaPtJw8/k0Z53mwoIK1kEOl0eeV/RnuRnvj/BrIjtb0My9kjLyXDNxHAOSWG6fGGcC9OrcqjjR5MUQFWhRd0Wsp7hgQcewNixYzF+/Hi888476NOnD4YOHYq5c+ey8V999VUcddRROO644/Duu+9i2LBhGDZsGD788EMdZ/Hixdhtt91w+eWXJ5Z9/PHH49tvv9W/K664oqJ1s7HOTKtcqyDih03lnwl+wiKNWG4HZ8d2bbN8EnaSROSrwtRZfB5b4CzwL4v2+fwNq6MIZjnRUcQdtFEfromy+vlAbHBbwXRLxOJM0S/uMuw1J4z8BOKFTa3OjutwfWGlHM0l/yWUWOUsql9Kh+RcOOsIOFNKdbtajMmxISvLounYNEzF6BTLhHxjd8b4GWDfR4moY5KQXra6WmLN2lJBiIKAyDkEPYwcCwgIWH8gEH8fr5txZOXQCcc/Q2dp0o+iy6YkdjwY4ZLJh0sT7UrJWBqnYUqIiJC7hEhS3fK0oqu22ByUV2TigzFNVFBOGqeL179iFsmHNNbRdcIy2U29zDBaBWFF8XL4UpuXE6Ws/LwsIs/7R0JZbB522+Yti0Hqn5dUBTFpiQ2prKoCtpaD9XXNsfrgtNdccw2OP/54jB49GgAwadIkPPXUU7jjjjtw5plnOvEnTpyIfffdF2eccQYA4OKLL8bzzz+PG2+8EZMmTQIAHHPMMQCAL774IrHspk2bomPHjvkMLgOB7peDNfSumH77Z9982/8BwffNxJF8oL6kxUcmPinI1TBk8o88tY0vM3byrJVzauD6GcISI2QZdSYJqRYjlb2Wn9MAytPyNwc5SSZNxqOyX9eDiHnqJ8yj3Q7lut1rSo20UEqvlXT9FRE12iYavSaYNrDdeUzKQppIeNqO2llR8Y7euHnXNxqRf/h5KdtkBwQEBKwbEPo/t+cr/ScqtJELFcY4sQZMaHIYZam0h+c4rC9eLJEZMlkKnaVLbtjlptmar46+uFbt4vVOEmxhrqdwW4m2nmDDXD8ujyQ/7hyCuzp8mT4kUkgYdNL9Lir85XJ2lHKlffan5Z1kS1LerJ80f869Db4dSwHHwSvxK8jiT9dhPUFdc9oVK1bg7bffxpAhQ0iZBQwZMgQzZsxg08yYMcOIDwBDhw71xk/Cfffdh4022gi9e/fGWWedhSVLluTOIw/CyLFcYB4rIvo2lUUxrxdI8q9pE/uqa40e47680PQi7ejZmdJ3zFElI1MjvWDiUQMS6uIYFfnRDfqML0+CeKQIcopq6nOdVuj8/UdhnlOjjbhMXrDbuBgHIjZbCGmWYbdLHqQIc8ITViyXYxqe/ABLbUxIQ5B4P6flkdfN2ZkAAUSLlCbET7iPveWXCiOvteOJVhcIi5cGBAQEuPDRqfJyTMvNFFTMIHs5fRm549j+nR7jFDbvNP2k4wcrjYohdEwKSvwop6YzKNSZ7R/Xy6y/bQmYc6upHAZHWWCcXkrBlJl8neiaY/wGBwwvt+hanh6Xa2fheiXmn6dMJ57kw735ZbnNc8Bbju9d0+LygsTn8rOFofT42a9e2iL9qTmV9CLizypTmes4yuG0CxcuNPyrq6tRXV1t+M2fPx+rV69Ghw4dDP8OHTpg5syZbP6zZ89m48+ePTuXnUcffTS6dOmCjTfeGB988AH+3//7f/jkk0/wyCOP5MonD4I4lgPRuz4DEYlk+qy8clKFNt8TWJIOLEd58AhYwtSC4AsjNtMhq9oUUiF1znffMBN7znXZlrDhCnW5moHvXJXpPsZEExI/QW8IO3+mA3OORATj4ieBLtLp6+j0tNgkYSvD0Te83CWVjB1UmSuDRDn5GnZ61DJZLJ/dITUPPCJZXhJYl7tYZsIaLHpNIEyrDAgIaOhIfuxX5g1VfcTzlU2nJtr2uCPGsnRU5aoUSnxLKk/JUNKIzcVnubVxVGJTLNH5BSu+btSW2BJJYkvCBbk6uQKXwd8inmS/m1BBxRhUpuVAKx5xp/k5ZahzYba48+Ea/J1bSV5p2G77yfgdpUK3It/mVhzjXJD6RjaU9dectw7CvVcYE+sc9VXO2oByOG3nzp0N//Hjx+OCCy6okGXl44QTTtDubbfdFp06dcJee+2Fzz77DFtssUWdlBnEsTpA2X+QCYmFL4KM5A5hx6VW+TIVvIgA9+sWzcsRxuB+vSs+lOn3O5Be1GOTLTzBPHfsiRz2w1gmdEyJWhfzUGf6X6vuKX40rSj2nnoUl0+A4vyYoy24mfV0fc3rKCxXPreuo+JeMm6DLLYb9VfGOQyZ8Uvmd0ZStmztJve+R+jK5DbsSGESXjtLFcjKeOI0MFFMoZRpkmHkWEBAQMMB1/OXkU3uZFTQyQcJkFH0Jhujo57MUV3FlJSvmr68lapEHzdPFsY8YhQhLGZYLAxxtMnl6ioiFaviWrk58EgWOSJZLpMYkk0t0qKO7ZfAj1QaxaEMQYkUmyTOpYVnuQ8VHzfiM22TGsbd+9KK47PLy009/ilh/P6lnrJpQMI9kYgyFS11vzUUYQwoj9N+9dVXaNmypfa3R40BwEYbbYSqqirMmTPH8J8zZ453LbCOHTvmip8V/fv3BwD85z//qTNxLND9OgLVBvIj55802RnSfnfn7PD58efcI6boJ5wwYf5ibpN8FG5XbWTpOxewN0Es1s1XcQ/yah+JIgzijo128IIcdW0jt2DixETG7ZjjIyN8WQ1stI9jfkSYLIHN3h4a5JyY7vrbtlhu/k4hvtL6gXH7K+P6caJXQvSy4CEtubPJu0ZLqcZLaf2hkJ9M+a0HUF/Z8v4CAgICGhaoSFZ6aj7M/xbv0oDsez36RKpkuKKKC7Xzu81ZRSot8ZdIj4rLC31UO0dS6/j8Y8tVXLWchiKaarkzZ9kz5ydN0ha5RbRQU+xdtExxVmldKfpmYu9xKQVcPyM2zaP0Y8VQwvuERoWoQ5L4SCMxl845T8rXJ8illm1D1MF1SIAqqyEytXI4bcuWLY0fJ441btwY/fr1w/Tp07VfbW0tpk+fjgEDBrA2DRgwwIgPAM8//7w3fla89957AIBOnTqVlU8SwsixOkal/1idB02508IUEnauVH6+ox0HgF57LI6X/RHJ5W8EJp0D+oGsR2YllWEJPYlGZQn32OfsCglFCYrWJa8/lvFoNoFiH2y944jCO/zZ13ZJbaDbMieD8Y0eSytfhzPXx3vvOCxWwDvcz3anoQLiUf4pljmuUgmj2gICAgIC1kfk6eFj1lK35ccjtkwpKGmPdreTNtdgNTt0c/RY7ENrKEhYPhLA1cjPnfPky45gIyQ8zjeqg/rgmkqcqcxnHsGVySKeGOrmUZ5f0Qw+byc+MxMm6b3GrAEJTLPHl59FJ+13pDR430dy3H5J5ebl9ZniZqCVmcvM/eIRJ2mIolh9YuzYsRg5ciR23HFH7LzzzrjuuuuwePFivXvlsccei0022QQTJkwAAJx66qkYNGgQrr76auy///64//778dZbb+HWW2/VeX7//feYNWsWvvnmGwDAJ598AqA46qxjx4747LPPMGXKFOy3335o27YtPvjgA5x++unYY489sN1229VZXYM4lhNpz6ckZT/PH26m+DlEDUc4Ad895n64kA5Lp/d0Yn6LrLItHlJcsDyKY3OUpHOGNNgPUe3OyH18nY7OX6C4cCURrXzMqCgISUAS+iXNY6q4RKtOhSZJyKU0j7ZfbFC6zalHlXeutISsOsKVxy8t3DtqzBLBSLKKLM6fBRnutewCWca/2ix5NSBhrCBKWLw0MK+AgID1CPkf+aU9BGORKT1m6Y9ZKnoVzxN5Jknl5hSniMUzSnGYJUSo21qU3ySltjst3I5L7VJCkM25eWJcats6LaSzJ5sMCEQL/UsjnWtLPvjFMv7cL5rBXR/Mk39SWUnx0/zSzrOEZUqfo8kT7ZNcjNKQWRwsobhAzeqH0x5xxBGYN28ezj//fMyePRt9+/bFtGnT9KL7s2bNQoHM7Rw4cCCmTJmCc889F2effTa6d++Oxx57DL1799ZxnnjiCS2uAcCRRx4JIF73rHHjxnjhhRe0ENe5c2cceuihOPfcc/MZnxNBHKswkh4AtmaTJS8K96HF72+jOk7Tz+7uGTty7FyZCDJN0tydB2REGf0qlw+JWosthEm7HnGpShRzFt23mA7dudKrjqmqp4kednJhpjM7wJhauGGWyGUVIrx5MnqWEEAtyccS5nzTKWme1J6S4Fn3LukeTLo3cwltSkeTsqSOOZNNae3ChKf+/WV618h4QRqQMAYAooDcC+yHBfkDAgICKgO3b5P6X1MCMrlL0rmTY8TduL6U47n2IvZCh5mc1vw3lqbiBfrzgieYlCfba6GJiJBJLVKZ9vuOSAhTecSNlL68h+EXZZT2HpSb0zHriHmjImqNJO7jC7L8bY6dVj73XkH98twc7vtewrnHj27QxtmQJtxlti8lX495ARVEfXHaMWPGYMyYMWzYyy+/7PgNHz4cw4cP9+Y3atQojBo1yhveuXNn/PWvf81rZtkI4lgdIO2lNotIFg8sd9MVH9ZuKZVQz722K9XAHq4s4u9C3FRKU6jin/BsmXZHYvfscXJTYBKkI6PnOm5xGmFBWOktIYm6heW2w03RSLjhypboSDtcNXpMEx8BtV6/tp+bPumQGiMNWWuC6zBtjygDtb13VrCimS2gMecA2JFx7BTXrAKXEV5GN8yVkaXM3OVmi5u+c21CaBDGvChUCRSq8j0xC7V1ZExAQEDAeoz0l2VuZ8PSOiaTT3KSEOe2U7pSkZLH7FhpOSTBrLO9lhetke2O/fwjs0z/LPZwdqWnsTbuIh8643yKoT5+bcK6F5ilY1ihTvFflUs0+p6rdx6Bjo2XUZzK7JcSlvW62fVS7wZcWKotUNctP7iynPelrAnZTAJsBE5bWQRxrI6QpSPKIpJxidKGgZcFz+gx31GVmHWNJC4fVa4rrpFyEsQKLQ7RNNIWE4tHHUeC/cpFp3BCxRVxHrbdjoZHOiIjnIheIGJX3KEXT2zxzDmSMtijcsM82nDbOfoSaa/gn3a0UFbfpRVAf/5ekPh5CQBhdcXRY570xj3O8NXcO01miZ7UFr6HTB478rbzekJOytn2OiAgICAgL/xshP8ULKxUVHCx5SlahiW7Kb4Fk/PQUsxpkvbUzFi84urg70WkFctljYp3RewvOrqjxEx/uscmCGGNU9miVOyGzs0U4hhJz+EGnPTC1Q+wZwJwbW8jzd8I9/AWmn/a0Zu35acosX5vsBOQy2pzdbYM4Y/DnmflaKXw5iRUMi8KQvNzo9I21VUd1wACp60sQtPkQFF7EBX+5fj7jDpAlcZ+P+f84fFL8+fOuSOjEehuP6++YtfBLifrDzJOa3RkInZLwNywD6abraS/slH2wg03kigDhOsW8VKm0ogTZSW4LN3aC+ovqT89gpQOvYNmTJ7UGd2R1OOWkZsu/k+OwjmXEDKyIzoKciwb9lpj1jUTKHJJ4XNDeMNoPo67LndxzNrfJe0m6f1jyRAnKc06ClElSvqVgptuugldu3ZFTU0N+vfvjzfeeCMx/tSpU9GjRw/U1NRg2223xdNPP22ESylx/vnno1OnTmjSpAmGDBmCTz/91IjTtWtXCCGM3x/+8IeS7A8ICFg/kZdb5eJhTFk+X7NLdXelpD6+rst/7soQlAVR3hW7zXzsMqXzLwfKsmL+Z/I82z+NL8eWG7YIMLH5lvSdJy/ab5ZrLrwvvefKbS/Uz5ViWhK1iaQ52NzY4shcfsw6Gbq9Itqq/DTPtsJ8didB25P8SuBJZPoxry+p55TbF89jzk7/g+UHy68cJNaXfZ+B09DrEeWsc9Qnp20ICOJYHSLbH3XxAV8b/cwOoLQcy4ZwOxwS6P4kmM7KenSbPTjJy4piQXd0cVGJ57bbB91pCNKhCDccgncLUn3Hz87LOrJuqxOEsI4pVTJGjakjzZdhedI+AoZDSvOcYTGmDSnnHLishCWaURXT2GHcsSvjgrMpkUr5K0stN6vIlEeQUoUmiWIqz4A1ggceeABjx47F+PHj8c4776BPnz4YOnQo5s6dy8Z/9dVXcdRRR+G4447Du+++i2HDhmHYsGH48MMPdZwrrrgC119/PSZNmoTXX38dzZo1w9ChQ7Fs2TIjr4suugjffvut/p1yyil1WteAgIB1DQyfq8jP7XY8MkUGv7xgSrI5jqc8yl7NnEqwy+DRiezPcvuEs7h9TREvjkslKdvypKNNNXxik/ETKXkLn6iYDrv98xzdOzFb2c5dU8Ilr8QdXXG5ghGcUpEQyeDf1o3jtD0JF9bPm2+KX0BAfSCIY3WMvA9Gs4OKR5apRTfpT3geJ4LtGsw4pT52XI1FxmIU0yvpzl2JWUJ17mbnn8kWW0BizmlcbSNDjOJ6SGcmIV9PP4kg2ow3TWr+mkhIbbNxZPLRR4GofYVBWpS/cqu4qiznqNNmvGslaXffiK0SjvSaIbKPK9uGsMOyXFDWL2qQtFvSvvBJqHQPrwSxtLKzPoBKIILrNKIh6Hl+pWxXec011+D444/H6NGj0atXL0yaNAlNmzbFHXfcwcafOHEi9t13X5xxxhno2bMnLr74Yuywww648cYbAQBSSlx33XU499xzcdBBB2G77bbDPffcg2+++QaPPfaYkVeLFi30dtgdO3ZEs2bNctsfEBAQkB8xz+NmSkgrnrntEMdtfTzRxx25eKY7FpbsUVucvbQ+sZ9dJ76OWUFbJbbOJkM0hLabXhbYya0ESPMKJR1NK6zzxA/tdj68DaVQJ5POmXeTLaTZZfjrme5n36URLXf9mPS2m77fUD+nMZkbTpo3ZXZOz9lRDhIyyvJ2Wh+/9Qb1xGkbCoI4Vg8opZMyuiZGdKHn8Wgz2z9KbxEVE+YUPx1XFIwwnU4LMXY3bVmes9LFTqzg2OHYleUo+XayLIyaVsAYfC7STacijBaHSEk2pYrTWRRKdZqqaYVyk14xw7PLWWtMWkcVh8QVkVsfLT9lj7aLmMNS0TQGlfVon/jELNh+SfddEl2VpAHjnyHQ5bk5ykXa9dbVyHBjNDTBKwfU4qV5fwCwcOFC47d8+XK2jBUrVuDtt9/GkCFD4nILBQwZMgQzZsxg08yYMcOIDwBDhw7V8T///HPMnj3biNOqVSv079/fyfMPf/gD2rZti+233x5XXnklVq1alb+hAgICAioESYb1myOdpNPVZ5kUiDznCRSBSjiuHaZNZv70Xzf/WpKH/0cXvYjbBsQ/zlsaLqdcIgTFy2SoOprnbv0ThJoUJFE0ZRNXDleej/pqrp0gDknGz34fsG1mwZThLK3heSHjbLDFKtZ+C0kCmu/cFn2Mcyndm49DHfFGX7ZBnqkMyuG0AS7Cgvw5kPQ8oeBut1IeDCqNFh6szl0QFzcJMw9kgi0qLC4NeiSbMMLp4qHUUiDO3fZz7db5CZgL7Yu4bO95dBJ3CETciYoSgohFAhBSmH7EPNohJhGHLI8Y2sYScd50l0balgWH3PDHotsj3CTcFvS6Gmvhq3bkhtTRMvXlq+C9F+WZdD+ytnCZ2m6OuSX6Sb8RnvsiLW7uOIlp1fUpof3riACtKyhlvQUR7ezTuXNnw3/8+PG44IILnPjz58/H6tWr0aFDB8O/Q4cOmDlzJlvG7Nmz2fizZ8/W4crPFwcAfve732GHHXZAmzZt8Oqrr+Kss87Ct99+i2uuuSa9ogEBAQ0C9d4NCHP3QJsnpvGqvDzX5BEu35RRnsUjjUm5dWxjHIeyYXrOl5NuZew2+bQqoehDGTe10VzC37SsFJT/yhzbElvOcP1oIy43QLW337ZEPhw1k3HtM/CkNIEuL/T9J5LpJJvQtiHDLZXGm0t5b2HjyoQwKw73F2JHCxJN+SiH0wa4COJYHcB+CGQRwLj4zkNF2P5RtyljdzE8+Ska7w2UFs+23X0ZtztyJfrwOWfvnBKNMso1jzSe9mPcsO2UMT1SopxdDiw3tVkLS6pDkG4aNx9SpieuFgd9Ak8kUhpCoSBHlYcgRyYeV0FX7LQgixlR4RGk/n57MxxBdo7khCsjjXTDYIVReC+ilRRMPRx3yj2ddsunhWfh2Xo+RZm2ZI2zHkAI5N/ZJ7oZvvrqK7Rs2VL7V1dXV9S2SmDs2LHavd1226Fx48Y48cQTMWHChLXS3oCAgPUZNo+Q+l8qONlcw5WghP43Tm/GTxLDDLVCl6l2gHRTxW47jiCp7frFUpUiW5LkQMUiKnPZEhctUXH6OH3sL+1wQ4iJa+DlyjYcHhGf27NFMp9HBadySp2OOc9AbxLrRYQ4Q0izo3koo+3O6pclPC0sN3R7k7yycMmEsg0+zITp9MyfXFK+QRirDMrhtAEugjiWCwJ5/5RLVuYBGI8VRpAyz/lw86GllAvazcdlO38m1nbMNA/zYc8thF7aH10t+E7D17GbQ51jEkBttNuDd5NvctIN5xiTYAxyOrgoXJCjYNILyeUbUSe78szRtwi/vk5UtIr8OT+axmhMTiTygLvnk4iA14+5/zKVV+7zXrdtevmpf9/cHyIbTiL4uWl5yEiOGgJK+soWxW/ZsqUhjvmw0UYboaqqCnPmzDH858yZg44dO7JpOnbsmBhfHefMmYNOnToZcfr27eu1pX///li1ahW++OILbL311qm2BwQENATU36spJ3q5MQzGakhYNA+Xx2Xr3ExRiuZJ/zUlu5jfUhmMWmgLLjZZjPPx18CHmOhR6cwdQWb6xwKb+X4Qx6Rh7jmMUhOoQyQ4mRZ4znUm/MZJOg15x7DLTqLBSAnjwu2WppUUNFFGJIpRAt7RYyzn9tlYVliKhJhQV2FnLJlw5ZCWX0CdoxxOG+AirDlWh8h720nyK65V4G5hzP/ghJtpovyjRa3irif6Sejp6JxN8VHGSeyjXXGzaBNJYUxcwwZVpq5T0U9A6t0iBeDuHEncWjCy3LBazHbD484ySkqSc24XSF+4lL71r2gDeMJ8foIx025nmG3C5atIjF7KgNhPz5HhHMy57mAFc8voONI85+LYeXIVt8OlslPw+RgGp8AXzV5UXzJxcxAztlz7lxYvoGJo3Lgx+vXrh+nTp2u/2tpaTJ8+HQMGDGDTDBgwwIgPAM8//7yO361bN3Ts2NGIs3DhQrz++uvePAHgvffeQ6FQQPv27cupUkBAQEBuxF2M4qYFzbZ41uW+3tuL9vuIpNmNMfModHcr9Gnc/dNVvRJoQ4qbRxKLBGkPM4TjoD5obk8iJ/FZQVLZTm8BDkcyk6r1teyj5lt2MYq3W0f7EsfhEhBkpTaSLq5XFEfEd52K62+H9DbO807HNmWGDJwoUds5/NfmbD6u5/iRt0Vp/grS9dO7Syo71A/mzwjPVtUgngWstQgjx3Ii6/sjEc+94UllOOGCTDMjedN4dqda9JOGn9mRSZU1n4ceaaYefnHHJqK8BQAp6Xcsbqi4ii/MdDoeOY9G67BtYEHHISPGjFFfHjcE4mmPgoZRq8w2luSoOiq+vXl3Wi0EKcgYUabrZw1FJx2mPWoM9Mj5cUyP8TO+cjE3tEtfy4fbZgKOACaNUDeDvOD+WImf7zqm1pezxWGFtl8Oopo1Do3rq0gp7bYOo76+so0dOxYjR47EjjvuiJ133hnXXXcdFi9ejNGjRwMAjj32WGyyySaYMGECAODUU0/FoEGDcPXVV2P//ffH/fffj7feegu33npr0QYhcNppp+GSSy5B9+7d0a1bN5x33nnYeOONMWzYMADFRf1ff/11DB48GC1atMCMGTNw+umn45e//CVat26duw4BAQHrH+x36Louy316ciyKcr+YG0LHjNeuivmZu2oYO9KMdLe2RON/skvnjOOGXG3sNH7EttJpmnE9YpZsT8Dkw00urayLWSStsdluMUuPUwgrB/McVnzzXGgfej2EsTYwtYadmVLhm9R7PTheKXlbaHpnreK0NNJKn2ZDVmTgrHE5TIyUdrbzi9+//Nkk2ZBVQKtLrOnyK4kwcqyyCOJYHYC73exHUWnPe3c6pFmiK54lEQZKEWyyUAwmvtbWzu6wbFsI448V6ekM4YesA8F0DFndAKJZdMJcgwsJHY1MerjyITFpQby2maBClHDtFKR+gtoj4j7OENNgNzrrR6d6qvpDkqOqRi0pWOXlE6zIkRXrfAJcQjx/+3ts8LlL9jMukBWHscy+xdkFZ0uIUy4aoAjmg6gqQFTlGzgtqvKXc8QRR2DevHk4//zzMXv2bPTt2xfTpk3TC+rPmjULhUJsx8CBAzFlyhSce+65OPvss9G9e3c89thj6N27t44zbtw4LF68GCeccAJ+/PFH7Lbbbpg2bRpqamoAFNdAu//++3HBBRdg+fLl6NatG04//XRjHbKAgICGjfJei2yRpbSyOKoC49wUyMDE5fKLWWrMgOOPyzHRkUZMEpecK7mJsmxzmqIt6mWsPKm5wcT1x15pWONOjeT4rCucwWq/JFTkVZkRaRyLCPfVSBiJn8WupPbXawIDDr837STmS8YP/rb3+kUOHZ7Aw+pKqvD9fSX9LXF50BMunS+vPHEDSkN9cdqGgiCO1QG4557I9SjgJTDdp1tlce/sSX40b1s488Wz/Z0RXzBJgw92J5kG1blIIF6cXp9LvcC85hWIxZ4kJYx2kPbulZAy2kXHzYP6qXLT1w4zhSiVJa2/4fYITPqbHtlJ0siLa/qEy2F34M56CBYzsNuMZiSEnSEsRpJ0NOOx6zIoFZDUJ8v9k2W9SScfD3nRQ8uhjgkW5BG76kMYU9D3s6eAtHLXE3GtPr+yjRkzBmPGjGHDXn75Zcdv+PDhGD58uN8OIXDRRRfhoosuYsN32GEHvPbaayXZGhAQEJAOgayvt1TY4fNxhab4HIgFnziNLRZRgSmmfz6hK7bJlKfMUWsuU853bo4CSyZn2kZJ0yqbhJUbP4qM2q/rJGS8SRRghduCh/kOkEbb0hGXoCw3RpfRrehJnr6jqnvcTslcOikfzckVOL7HVakEcO3FtiHHba16cnYlnQv1j52PQDRKT7DpWHgEsbS0uduxXI5ZqQu3jiGMHKssgjiWB3TxqgTozlm6fpmKSQ1NIhp8icIJtwkLF0NlFT9Eix1xsRNWGrVem8oxizxNJQyH/dC2UrEdh9E5k+HXSR1H1oY3d6j076dD9RwKWhVzk20kumnzaLeyRQlFOmFM4wwxjOvkk/wckcf0oztvxvxFIl7fTJpp6wIWG3OuSeKoMZNAmfGYP0omLd9+vitmR7Si2XXi4iehTtqZGEirkvR4WY8QiERAQEBA9mdaqd0Cl85mquU+Wf0CgWTCFS+lQpw9usq2Ott5Ul0UezN3rIzlL72MiWUL7ZrtFYPtulERSocbuzSqkt38TXd6felbgRPX4BG2aGeOICsAoEupWK8Khm3s91aLwth+0kpLs08U0Bi/TGIcI0ZxgpXNT0sRnsqBca8m/HELx8GestcrNU9fYDkcVALxqIm0uOsPpwuctrII4lgOUE0hLWKpt1wakdCCiZWGe033SWW+93afn+kfi2i1gNHpOh0f7fy13dbU0CSVzKoM18HB8svq1qV63Ikik9ES2eEVwwx3vOaDBOINE3X9I5mItgcR0TQxEOSYJR7McE7R0yTOap+0cwDGaDjuPDEf7RcLY0bcMkGFUQ3mljQEOhHbYkViCrDPS0hTZyA3SAOCKJRAJHJukx0QEBCwtiIzny0T3KgxacVwmSfXIdspeT8qeTnnQsWRUf25D6ExBwPJpzJQLNniyjK2S4UkcUWbngknd5A8zGmZcUwTmor7zPaES3h2rNT6hEjkF3QtZcOWBHN8JsZCDlOmwWWThSFuxkGWWQhO3sqP4Zi+uypRsMrpZ9fTvdNjTq/oNWcnwNSJ2szYUMm/mtzQIx0yimTrAQKnrSyCOFYpUGGlDKQTCfAP/uQUJH9KHGw/Ek+iuLtlFNesF/n6JZT8BWM0V9xR0sX2iSjjxCNHWj+2P5e6obWYQ92MsEPdzvRA4o4f8hGt4IQTFWoJOr7pkCJjeOwfkTpOQJJxG9J8BAl3yswSj7HTSANqWz2DXqM0Ol8p++y216f0Cy8TP8mv1HRZUOnrQv+w1kOE9RkCAgICfKjMq20sT3EhbmlxqYRXeizyhSl+a0tnIlN/Rhmra2epioVdL+o2eC34etk01l5/LDWdsMOtJVCYr862QFXq0fWzF+hn4lhNWnpZyXFZf+mG+W4Dwfh5zyM/5y/L5ti+/MHXM3OYwaNp+db7RkK+TlgC7Szr6cG9lJaUT8MRyQKnrSyCOFYGtEhh+ZWTYbYOXP2t+0rjNX5b4OJiqviS2mEMPaXdNLRMRr88KKHMLIH2OJy45z4NHUFNC1VRzUmnYowMMyx0yYQTRoq2pzTSR40mHJInLFncLJGxytQLeEb+hmgnAFFL7LWENqOSKX6OaJeWlp7b8Tie5YujCII+t0hiQt3KqW9q3aJ7K1HEKnXUVyUFNR8qKWj58lnPCUZAQEBAwwSVlSr3oOd6MFcwEyjORXCFJFvUKYZQPkdX3IITQwkD/p7UZmpcDHc/TDM955fcd0vI6GMnHTEWc+o4xF1/jMaiLDzL7pZcDekVT/0AWQI0dwbTwkIYo8dsTp4Hee5axSPpbI1KlCGoQ5rxHbfMbnPWkWtRtmX/BafWsyRhTELkmspYKT5bmWwCGg6COFYGiotKVjRDSKZH8HXXhmhgxLOFIOH48t25ysUqkTEg6SuLmXdcXtxBSmYUmS2MCacMQTpQurB9UgfkhRKijDJd0cwYjSZI/pa/uRC/UraMSpOjEoKImphivWMP4jJ9i5N6j9w14/KQXHhE2qw6cWTGdx185AwgeXBHKc0yMold6eGmOCjduHZ7ZdkGO7MYlkFsy4q6GOnl1KvyRawJhPUZAgICAugjvfKiWB6hxZUo7H7WFL9sLqtEIQOCik/ZLTEyMOQp0y5TlLPFPHdRflu6iuU+6BTqSLmYzw3L7Y/rbwOXqth7XXJHS2gjH7xNXs8JY1be0tcW/DEJugyGf3HrlQFAgdx3AnFgkh/Hu1k/mHexbyZKubDbhm0rxrakP4v4/ZGPywpwMiFM57bmeVSee2pdQeC0lUUQx3JgGX7yfHepFPjcfc8vW8pyHmZMejuu9peAFL4hmS5Z4EEIi9omm+gZal2CAqEOsU1J+UY2EEHNdhtmCriNoYQkEs+egik4N01My3CtM2rFXQM7XA2YyvOVjH51MQiGEs4Ac70xaYWTdpMCRtVs1sCmQUQCrWmv3GgxYwoiJ3ZxR1pXesKsS1EW0tqbs6fW6vlLGg0mM8YrAfUhXMnaeiikHlAlir+8aQICAgLWE9Qtn80Lewd0W46i0go9L/5ryiuKkCS/BttyVuzn0shY7KN2ltKClANUYmSYzS+5/DyiVhRitpKkQal1sHetF1Hb6zzJcissoo96xpq/nhLLuVs5IUe3tSWc6QI9fo5hCX5xO1h+Ufn2SCq7LEcwZPLW55YtSXnpPxH63pbUwhmEvbTrk2eEXl1Cv3bI5WvUjooicNqKIohjObAcC+s0/9y3aTQc2c7D3fQ6pRRpTaNMsMxZKlSISDThlCnoB6ok2aiF/ItCmSXywOyMYpoQZcd0WB4dLHaTNuK0oMQ8BCCjUWD21zBa2zhdvGunlO7i9dDhQo9+M9ccU6pVtk7Rt7YY56ePMjmtQwQk+SmixYhhxjEpLMORzVsV7MvfFzfJpqzx2BFegg/jbEny4/xTSMgaw8ola9qCiiB8ZQsICGjIqEVtnXczfunIV3LMYG0xRHFBOwd3yYwopTTDnWISLKOyHC+W0bFVcUp32qXFh1UsPcrKXjQ/3Qawblfmi/NQ/5rCGZVG3NpHbm2EXY8ojojrLKSd3j0XxNpiMCWc7rsDpJtjErLEi4VAYjsRfqg57CwLT3lJ4RyX565lWcjKLQ2b1L/xXZg07ZG1VaaEr8WolSvXtAkVQ+C0lUUQx3KgBTbBAnwDoC4eANyEyhj+8swOheuaaHqje1PDgnJMxzKHqAvEWzCb1CEWpexVD8xYtTqGJZBFJ/SrE/flxXY7laQPbk74Ydy6DS03LcvtAMm/ynbBx7FBaYpBTaI84i9qwkljHIVVR2JLGoxOXFrnQDyNVYlkArA/tzkbInhhRki8+2SxnPh68FMnMrF8jiNnGf1li3W+zDKVT4xdVwQxalfj5mvMjEoiLF4aEBDQkFHQnyaBSjPacl6SeXZgjgwTRkyT3ZofhzmBzu5oTQLBiWCxnzl+yy1Xgs8/dileHItpKjc3HZlnkNKe5o6UVHSjMagQ547Gt94jCP9lj3QaJck/poe8sBgXIotr+lrc2i7LNC0b2RPmpSEF0AqacYyZFkw0lQezd0E6vAJS8Q6w86vrc8VFjfYVkY++EBnHeVkioj/a2iXECABVhfWDzwKB01YaQRwrEUVRp3IoOa/Uh7XnkSRlwjRKJzLJzRLxSIdiest42l4cNRbKIhWpOIIs7sadXWxILyXpcxuxEFOK27CbPNxlgjsmE/GUUUC1v0kUim57x0nSUMZRJIZToYpzGzshcPnbfsR24Qln0xOoduCmTQrrnJaXFs/xh3nuiFRptmfxSwl3SCtHBGRChNT4Gc7zwGF0a0leaxMKIv+Q8rDtdUBAwHoF7plWyc6jFNgCCMet7N0o41BTA5GOn1u/JDmEUVEs+5wPxkYqGg+A/tirrJbeknlS4ocw3K7oZvNHWo3UqZEqD8qJhFmuPqo4Tji5FhLmN3ldxaK9dp6UozvlMfVHapxkYqNDjTZy7xKfH6xw4+6wL6de44Svh/C4M4VJJky6b4VuS4jotSTvAvprP9av2hAETltRBHEsN8wOuL7eHdPHlTFbV1vnZpK0h2OW0Ay1j0QlvsWiHlIJQ1ECVVfVYRdoVh43k3Oma5S1sxG0Q1EdtYirQDshQe4Rb37OvwnlS0BIQr+kiAU/K66yJYlAJJILX1qbryrTfCIX55fh6OTFTaOE2U48XGO9aZLEK2MTAJkcV58zjVWXYpiNSj6QQt8ZEBAQsF6C73ZsZpU/T+cjqpWjORbLl0cs7yhfKoEplmizKMokbT8fTGtsVxwrrpcdz2Sk9upgAPTOlLaQF9fDXVPMJ7n44vLTK91dK4tcxr0G7BW3Go+PK9m4fkj9r4hcErBmSvDc3Ram3BaK8pKeODJe99iB4vZWHVM5usfN+gmLa0skt1sJYd6RXITfs1zdzodcnaSRX2kbDZQ7aizQ0ID6RhDHykRl/miTpa/UckiHQuO7HyiUksNZUAqYgtmMuc4dxbW8vIQijq2f6OrBbrtVOV79TZEBKw6NSjtly617VJU4ReShgpHqpMvyj+yjGwYY8YD4606GDs+Be3ncG8jqwKWMylfbcJN0JQ0750CmUzoGJ60TRt2JfjI5XEo4o8Z0OHM/GHGsG81Jn3C+JpD2d7yeIazPEBAQEJAEk4Xlgy+NdOIo2cZNn61PcuWxoi/v77dKWC5XmkkgmUZJpuSjBQYRMVtpEg1ad85WnwCTXhd7SqhF9SL1iDJwNqaAIaTFHN3cPME8t3e7JOdp/FBF8taLC4mTJkKq9ub5sq69dJJl3mWSvqPYhjkzKEhg0nVmz2WOuMotuRiIZ+V4YIhb0i92+fIIzKnuEThtZRHEsZzIozdkzS9b3JRYSYs9KR3BI4wl55yy1oHBD5jOlao7uveJOlKibrnfuogFkuSlDqaXY4pJW1yCACDTNM04geAFJBbpV5USMV+nGHeAcdnKT5Cm9R6tS2DUlVjJbXEtJBHAmFqpJtFfQ1N2pUxdwD/TUZL8yD3iFbjSBDTp+hMvQdkSd/SxpTzilxO3YYlUawxVAsi5PgOqwrUJCAhYn5DGPiXysNT0HG2xyZ+KiirFGDFrstmcyX5NsYR7avttpCKQvQ4Yt4OkildMQYUiaLdVV/311ZaWTAtMPuuOWfPx3WxxY3IY87J43TLTOmmtx5VGcJLP2WmTxG3bmu/u4/Myy4laQPrjKBhl0/eDUuzxiFnaGG76InPzsrTT4yecOLGPW1rGWgl9uwTRa21C4LQVRRDH6gh51iTz3Z7ZaUQcxxCFpO3Ll5H855Hn8efrsqNzyYW5nbhNEjg1zPai+gw38ktabkoKpMetD0ynpmugwohoUvSPaIrjb1Q7Ib0qiZRqdcymu2i8IXZJQmgoN7PK1IIbPdKSrXg+e7g7pSQ/WTTeEb8kzPITYRMyO5iEc3nWSjcsLydkzWIihf6p3hG+sgUEBAT4ETMzG/7nIC+elApB/qXiEcdpfQyZt8X25XiwEr5Msc0VvuwF+mvhflCmn0AVX1Uc0Tc90tzqSlqufHFNYQ9wxLNoeRNBbIlb0j1321saZ96js4g/mIX9i/YIaYlolO+nlcNBqpqb10KXK2DMznB2r/S4s4anpS0ZlNszfurcuQct5LXFt3qIe+8H1AcCp60sgjhWR8hyy6URiXzdvYpFp6IlC2Plg1GQfPEkcRP/uEN0u3PA7FCVApYkinECEqxz7bZEH2m5dQcZERkJEXfQtGPwHQlNccr22Gi4JVCQ5hUUxCFIG3g7xTRw8SX5Zc5XxKO50toltd0YIY4pL3Fqpc/2pHB99NTD9kv7o2TFM/uq1xOCAGeiSuRfvDQQiYCAgAYCTjAqwmZV2fPLC1NyMXesdEPMFL5SOXEt9jGlpWJ8dwU1rm2UxGPzWRrDGJVliT2xtWYO+RATFPp+YU8yNTmvNFKqE3OiSUQ4M5hjiFzM0QH9ms3UxE6blr96HeHChNEKybZzZWeFM7rLetegfsX4wnMvWGkTyqDxcwtUJfDDNS6CVYLTrk+8OHDaiiKIYzlg6wWloPSFCbOVrEmC0P8k2JIhV727Dkc77K9oni2vZUwT7AHkcecjvZ2QNDpPd4fEXMIQ1/MB7hTLPPnpOljWUxFNC23C48/FF157QZpA7zgpJfT2y1KRgdgNiXyjxgSML2k+ASi+boxgVcrRN92Rq3uSbYytqX7sOmcJFc+bv88vyX9twrpgYwaUtu31elL5gICAgAS4UhDnb4ca0ktqrulfl4pxJNTan/ZatMV0pp+ZJ8cp057iHIc1+KzhS+UwWr45lsuGDhOSWYA+3pJKMWefMGT7USbOjRjj28VHimne7vYA+ii5POCeS/tqUK5lp4EjmuURqZx4CRdd+I6Kk1N/yomtcuz0rJ/HjuKrQZG/l4LE/I32TYmXUnxSMJe84tJLoGBeBE5bWQRxLBe03FAypHWWdGtmfefn0uW3xZeZX87T2/wK1XkKozMtClmAFPSxSQQclQdoZxudSX6vnuJJFJP0nb6umeumvfEUGeDYFM9EYi8Z180okAhP0PGIv2WLdpN4jn2cWYLkYdsWtZPg6pBQL24qZtEdC0OukGQiC6Exwr2L8DOFyBS31096w52y7bzyCFtp4lld9kvuW0RAQEBAQEAqTCoQ9+KMhEG6RnuNrjgvO01aiW769I4sj3jiN8aefmjPYzCnUBrSmXBjuLyY1imKJ4DizISYA3O7S9JcGYnKzNNi1N7F9tkWAOxd5AXJiztPQl5BhUuXRXji8lF8Tuh2hDNdUvF3W/Dz2ZbrPmPKy3q03ca55MMdPxnfGTrMk7ZcqljXwljedg8IKAdBHFuDSHs3NsOzPRYEJGor1HHxdtC0/pFjAoJ0+GS0mJGZNHLjqIOKZ0xOVPoZ4F1fDIqoyNhtiF9WPKVr8bvJeBvAFJ1ACrRqaYqBhMbIOJm2F4h3nyRx0tzFEWTFisSkAOZoMSLWGUc7HjWec1MIMx9uWqJ97vN340UXivOrFHTekvdPSpMlfta4zL1TFoJA5kdB5B9SXggNGRAQEMDBt0SIjP41X9G5uO7z1Tf6SZIYpr/JKZNlIN5aUw5zx23FeZIQIoxlk/HMf4s8VkBY6V0xLD1f92iKbL6Ujnwm1K7yUvuZ+frO43bQIVLCO6bFY1aRqxOCD4uj+7JjxZ/S+257wyptm/T7qRLdUYFJx9LnFSkDUoWxpOSibAtscypKPZMEywAETlthBHFsDaH4vp/tUZT99qVds8iUNp04JMRIGvJsCA2kcyWLdUmQKZI6hqc8EiRVPlHagtOr+03m60Hs93CRTA/lKJKU0U6cEWPyDcPmoK8e1xtT+xi3YSNju/dIOn+VzujkGbchNkqYbYj42nj5GieElbBYPbtrpXvrxQb6wr3rpUkmLhAro8n25RfG8t68CVAjNosss3L5rg8I6zMEBAQ0cGTtbbLEsyUUE3bfRl/ak2dQRJ/4EE+v9OcKQ9oyqVJWxDyGJRKGMCaFsOJm6cPdXS8BASEkaiVQMIQl/9RK120v1K/8XWEx6SqZZxJ0FFlkqSF+CRGvN6vyNt5CfDQpIzcy1gZm6kFlP0W7aSQhZBxfAnS1EmHfIMpWwtvZ6ZUZ3UZbSOtouTUB902t9N1WCa9MawzSrHuFsnREygCCwGkriiCOrQFI/avky7D7xUqVk1WQyR1qdEJWly3IKhHkYe/stSPMNnC1KUuZgRJoYkWnFhIFIcrboZITTlJARSI2kOvotBol+LXGAAgpzLx5jlZMJzm3jL5CkvjScjN5GXlw4cRN7dMaESnDvu8y34eJAlZCXRLcghO4nDi2n7TKkE4a5/pmIXtsHJlwI5UIdcMbZaRcgSz95PrSlwYiERAQEJCK7GOh8jBN6fGnvjZrUOOq+OX344XlbYknTXzzfXOkLjt3YY0W4yZCUtAZA9w2TTIqBUY5sU32Omec3fYi/KZ0xKVJqr8hROopDqbNtmDEX0nN5IkoZa57ZgsfxrGEtcdie4iNGemVLlsg/hhcyquaj5smIE2A8/k5caS6m6Jwpvys7ZFYji9elotUIoJA5kHgtBVFEMdywNYpSs2jeBTGsVzYz26ThiRTl7JfyfWLuNW9Gi/obtcb+3Nuu04kTMh4kf+oF6uFREG3qZ2eUBEZh8Uij+RUOR5UeCN+dOCP/tCmrJHEBml6O9Mqo2wyd+SCiSsiUiAVjYu8lX2kKs65yi9uaiMt61b5kDRSN4pZZ++RHaEV+3n/SoQ9+tCCI3px5dt2crZ40iddqCzXUN04FdTFEstKEsgy2Vsxa9YsCiL/kPIwBD0gICDAgOJYlHf547lx+C7F9aXMkJu+aM7E8JXGlWPKcLHbdEHK4igp5Ut3UbdYJ/vyznAFW1Yz1/g1Zbak9caMI+W1Tp2SWsF22+PQ4nV+47yLR0NIIvWng+uThLSYoxYLoHFiFmtPOfXnVzSKv7PS7EnLN60tXdsz2Oq1jg/VbsmEyWT7klAJUUvofyoLu+7rCxWtGAKnrSiCOFaPMEmEua5Bejo/uC9jrsxU9K3sn4KwOiDyyDL0BVpucodlR9EPWjaZIMKWKM6ZVyN5BNEulPZAhStZ7NALjIDja29PTQ37DYJIshYiGs2lEzIdvYQW/aBs14UTAYUsiE/9dX1JsDE90+ZyttG0TGmXn+CWpptmzd1vHImxO3peQOPDjNmNWcQww8+3AYDHLy1OlptH+1WAieSCdXEaMqoKxV+uNIGOBQQENBykMUbFZUGOvqckJ4jxufMLjtjriUkUpyC69hTD4xFUSaDST5xO0hzUMhki7j7N9XWpZZLkao7+4uzgdqa0a039ab6xCEfykHEdTGEtDRxB9LiNaZZkGitbiHUHcRferrJFrov8mYmXUBN1TBSlsuTHVV+dkjDN36OMRcKMglTBrATlhxMN9Xk90hbuFqgrylmJPNcrKhw4bUURxLFcoI/bfKCCjOOfkmcaPbGXOqUh1C/eELs8xPoOv0Ol7kB9HWzSSB9tqZ3a8tELYcUCmZTC+oKlcrMsiMILqjcjEXwjsezOimtHRaicjp3GkSguTGo3E0MWYluEW5nITcVD7Y7qaIwekyQOPSbxmqzwXWrEa1E4DJGKcI6/dONyo7vKfa6zohxTNuD3y1QOX3Ziq1e6z6I3R1kPgdCZBgQEBKz7KJ3PAiZ3tT9/+l6SiylsKcm1yudvg9t8ivJdPq1L8FwWLTUVUVqQPRVSkpSC+HOgA7btuLTlzNFhytfdsdJe/au4fIlZP44D+2B+oKcE1rzKfJw4c0PokWaw78jGYXi4PaU2EdKSGW2BSlpl5jjn+Rxx0BkbkrSJp/lst51O58XlY4WtSXrmuy7aXybfg0lI/Y68XqlcAWsDgjhWD1CdrBLG7Md72t990vOOE2jiMLdLK54n7BzjFO6WTjswZYOEJB2I0WWb/0qzq+c3/3a7d5oHI3cBKH7dq5XFkaJEO3PWDUgaMcZehzwMjoZ5mECthLkbJYrNrAQstlwaRtzFdheesDj/REh488/jViTCbEsihtL4Oh3TiKV08HYZGdxOu+QtN5EkJcVJ+4svFxkqov8gGijC+gwBAQEBXiT1Ikoy4bq7JFpUjOMTrVQO/HPWzxYVl6S22WVylsQhxo7qJEFRGKN8Fc6/tlTlMdCqlkkg7RwBSSyjGSTk7xDOjKY4fkSIixbbV5awbaCWtiAiomLr7ghAjpXatsZXzaDPhEomUWw1k8AWpQzhroxjqh+nSHJu8/XFcmfjiLYw5hPUfH5OnFJ2rPTx6UoiLfO6ptTrAgKnrSiCOFbH0O//wiQFxTBevMoKbuUFt8uRTJhArWFB3nLjTlB3YJI++Wks21Jfr8DXwapCMUzSM6KC6S4bWhRT0al1uUeMcWZ6L1rCU9pgbVGhpCjaoWs/aYZ73ZGNjjuqnE0clBinBC07HAlun+jk7rzDkwgK43pSsYz4CU5cs4Q23erJvJCks/PkxDVPHNtPsaEsf8jSMrxOEJhCKsK21wEBAQG5oaQSGEfoc99TkrJB20+dcd23T0ax2ZOEmbeKz+1waZ6ZfLTYpXOl+nhsBjjkyW2D+NNv3MK22KY4tzFlMuEDdmyzQHZeYDJmQdci8ak9IiqHEkltc/IxLY7pp6aM+tOmvteUQr3SXlsUkbXX+S31yLyPJApb0g23bWSnV1aAhtYHK+LKcExv6LQ3cNqKIohjOZHnWUL7E4+eYLzn5wfXzXOdqSrLpDUxociHWC8yBR53nx7GXWph5FxrETRrFVedMqNztDBG4mYRUtg2soUz4xiRBWUrycD0k0TYi8INUU9AiXxmK5odsMpKX8/opqJ2e49RJGMhTsfNNIRziaV2S8BZI8LZkJEKYQB/HXL/sWV0O1M9mYJSp/56yuDOS8kzLa/ENMK90NxbRZYdLNdXhK9sAQEBASy8XRgA1YH4PvaqeKU8LXlZg5fEeDHMFU98UknMl03iE0+jjDmt1Dml7UrJaSfS4GdxLcz5FdRH20LrL1QM4xQS5uiyPJbZMKmsJH50FBcVMaXpF/FflyZKZ9Mpe7SfnXccRvwEjNFjXAWyiG6pYJqKtg3l5TpP+i5E60riuW3gtynP35AjnJX+UpkL5b7OVRx1XsBajMBpK4qcq7cFZIXSC4oz3gRUVxO744X51Tly/aK8ox+0W1g/Gq/oV2vFqY3IQNYfyDE2SWq35I5GHjF9oW0Tt0tcT+n8SHoB01/YcaRhr168X9kdHb39SJ7nht0wnBjkyVKyIlG2wr06kLD8Zdym9B5Kykzom5h0ttKNl+Q22tYSxoQnTaKfLl9YYRkvlqpLLcmr3J9yyOhnn0sJ1NaWmHcJMN8M+GumfrX1xKLWNqidffL+SsBNN92Erl27oqamBv3798cbb7yRGH/q1Kno0aMHampqsO222+Lpp582wqWUOP/889GpUyc0adIEQ4YMwaeffsrmtXz5cvTt2xdCCLz33nsl2R8QELB+Ik+3E/NVvjtJy9Pmf8avSOAq0h9LKVArS6+PCo2XuedqHMfi/Iu1TAa3vAolppL4qTYy0ljn5juFeZ6HbkgnP0AaH9G4mglvCKQs6btgIjdPuarabmnGLoft6N3YqZ/HHn0VJTmXpr9+bZIkriRx1bq6zEUy2tmqlCOUMTZTP+etIGMjlcKGfGUmvul6blavANhAKW19ctqGgCCO1QH032ZBFJ+oAtFRWH/58bnM8Ss+Ub2PEgt8HPtRroS0tCeVyV9EohuRG9Lu+K12MjzTSIVZDu+v7IwEMhHLb3YvmfgczfOQFe5RMv5ulsIcwq+dZm9odmbSyFZEDu0vLH+rU3eOtNPlmG4Wt6WAStttJTE6YR1AYpTQwUnjBrB+kRjmTEFIG72WqWCYdXHaUKI0KlFPsN8k0tjzegBZJUr65cUDDzyAsWPHYvz48XjnnXfQp08fDB06FHPnzmXjv/rqqzjqqKNw3HHH4d1338WwYcMwbNgwfPjhhzrOFVdcgeuvvx6TJk3C66+/jmbNmmHo0KFYtmyZk9+4ceOw8cYb57Y7ICAgQIGKV1KTURCyZZ6LRBIL6xcLGmz36fEvhglP1yRiPsDkEXfX9ANqkTVRxmWGuVzXjJNUTpI/L2LBCVMCWbHNXDpGa+X6lgXpzzGpLG+PqTmRMMmtJbIJ4fez6aN0uJ1dZga/tAvH5iNhL8JfEVivi7DcqmjzLcgsP36dyPByF/1SY0ik/H2n/2SeeKVgPeKqWVFfnLahIIhjeZBRPIIalRUlssUieyRZvp/ZOaf98g2Q4Uew0bLjh2xcH8AlCtotbWKRThr8RIh55tl/26Qzjd2kByFH7/MzSxxqFBBrLNJKSI5OXlzmhp+6oUjdpemGzy1ttzRtiliW07GW6hamW989dgcvLYEqZjbENlVRUhFts4zDWD+PGxKQtdY5tcNOB6Zc6kdsT0IWYSz7H2hpf/C+chw7GxDq6SvbNddcg+OPPx6jR49Gr169MGnSJDRt2hR33HEHG3/ixInYd999ccYZZ6Bnz564+OKLscMOO+DGG28EAEgpcd111+Hcc8/FQQcdhO222w733HMPvvnmGzz22GNGXs888wyee+45XHXVVbntDggICABU10BnPkT+5DwLf4vTmZzWT6gVfP5muPtZNfLzCAPSyRvaT5I84jBaPudO/wkjDWCv0MbSWbt0CauuZp7SOs8DPyU1y4uppDD9JAwyWLx1hP7p/GkcyldVWfZNRGib8lM8Uo0TUMVAxNQ/8RwlnMM8l9TfQtKosaxwolp/YIJzM/G0TXY+LBLuYanu4zx3ffJfdxK4J4TPUgcNjNKGkWOVRRDHcsP/525+eYLhzvDcyvy3zJGLOD/3ceKWFdvL2WC/X8e2RR2cAJQAWHxe0o6PtgEXh5adJABmf8eX1D6jjUibSCZ+FF1/zBSWO4rj/fhJzmnfof1Uepjn9Brojl75Gh2x6vHMZIK0giS1l0w8gxQQsNMky3JLx1/abhrPTgtynhVOT5nwoOemcWrj7IJz3Hm+qLqs+ux8LLaU+FfEJW9obKJusWLFCrz99tsYMmSI9isUChgyZAhmzJjBppkxY4YRHwCGDh2q43/++eeYPXu2EadVq1bo37+/keecOXNw/PHHY/LkyWjatGklqxUQENBAID19WJaeIlvvIxN6K54P1iZwRi6sNuJ/tk0uZ7e4q1UPeI4cV07rgZPPzY/gsPzc62F/ojbhZSAMX0oSeeJwUxIzRB9PYUXulTwrhIbZ7ewIboA51bNC3KUkCqpGjUUX0Jl9AZD2ynv0W+RdYN96pzD8M1DapF8eYSsLShHQnHpx/kx4QEAehAX5cyDt9TJ+oNsPcmGEu488OzypBPMRIKwy+FxMe7gzO2e9WGa0AmZcjv1kjWyw4ii3AFnIU7otY7uFUStap6jNhLR2xozEN8k8JeNgRJHicEWWBOnUmabz9vdM/GJc4caxj/ZQYY4lqSysHS0NtyiGx+5iBrEIVGyzeIH+YtvJqJejG2Zqd9S5680bJGk2xq3LYuxnp2tKwBHDnCO5o3Ue0ognvGlJI9m3BBeW5Jc5voRexRfEb20Hd3M3kEX6SxlSruIvXLjQ8K+urkZ1dbUTf/78+Vi9ejU6dOhg+Hfo0AEzZ85ky5g9ezYbf/bs2Tpc+fniSCkxatQonHTSSdhxxx3xxRdfZKxhQEBAQBFUGONGZfnORRSfe7ravaL/BVimxPLnRNgi8RNFjijs2DHXddOJmAcbhE+QdBbZZNx8HGTwo/xckVlin4xb2r8Iv4/D2nEFKcWsK20DcwuBmOEnCWOJ8Ahm6S0Sp1cWGyIdd277q4xpudIKT8ovSi9sP+HGMSqS5Gb8fCKY8z5goWQ/z8WsC1ZY6m2TK/8kKr4O0PSsKIfTBrgII8cqBO69Oqs766+INI29eJ48GJXLyy6v+MWtuByRO4yayBeRDiP0CCo1pVTa8Y0NAoQz8spxA8ZILcNstm0UCYrc1tcmSRPSANsvC7I8cJWeY19wdnRPxrK022oYko2+9p5sEwcXxbnHZECYhMG+q+xJCKz9El4iZEQkwlk8M1Ia9WSFMWK/89fBrkXB+ZUB4xrlzCzvg8D344Z8Ovkz9bbNXReEvXJRKPEHoHPnzmjVqpX+TZgwod7NT8INN9yARYsW4ayzzlrTpgQEBKyD8AljNqfjz7MyG37UmC8vM2VyGbx/gdhLZ024y574w9LtdNtDOnFh+dntEf8ri906IVxaChI0FV9vrt3SQowcpW2dGV9TKWHeJzZsypYWlo+BmLYY+dGMPObZYlgeePluqe6U7JQQx764+/IpYd0ukz+nvDOU+fOtFSx9GxIkPAxsIYyXi9dTlMFpA1yEkWMVAO1IAfrHaH6H8gpL1jn/KKMbH8cp7D98GsN8qMZfr9yHhSugqThCSNQqOiHjL0hC52N+ZdJuISCkNOpq1k5qq+yOWIKpm/aIHALQQ50AyKg8EZUNyHj7bNJL1kKgQFpSOPmnQ8ZFmH7KFYWxo9LsEUYqLnzXPdEKj918WLGDk2YnkuAG504KI25j1BiK5aq8JUS8Ew/AHvUXN2aUmVT52dVWpdlriXH2w+cnXb/UNCC39Rrsiu0G8d5UjI12XCkBsf72nLIKJXxlKx6/+uortGzZUvtzo8YAYKONNkJVVRXmzJlj+M+ZMwcdO3Zk03Ts2DExvjrOmTMHnTp1MuL07dsXAPDiiy9ixowZjl077rgjRowYgbvvvjulpgEBAQ0VpjBG/EvJKyGMH1umUrlhRd+Ya7p5Ex4qePsFChBQnDbiiYmlpofxsV1kY+9xLaUwmXk8wo1wH4sH+2yOW8aYy+GUrf7V/F7QFKrNoxiab7v1y9xewuJrSf4Rx8+UvhRbfIlpcYTTciPR7PcK9Z6g2kmnoWYnxCn6m+Mw7bpwdSu5vjZK+KOvVNmJ+WR98YV1p1esYdY+lMNpA1ysM28/EyZMwE477YQWLVqgffv2GDZsGD755JM1bZbzNxqf88JYlvz8i/Db64y5a4351uyqRVEYqkWB+YmEH4knqlArBGpFMT9aX1Y7iHoL6YT4QZd6NBcvFeTBFrelvS4DjPaCJhk0vQ4j+oxdAUNPicgiWwOnN4yScEJF3Bh8HllByKshQEXngoSZX1LMnTGNIeSWW53R7aWNrabhdxtrVHBprDydI71xwR2LF05KQNYi+sIU/UDE31orH5XWvgj2Sq9xgPXj/FTlZL5dH31Flgpfnln9wJ0nre6/jkOI/AuXRn87LVu2NH4+caxx48bo168fpk+frv1qa2sxffp0DBgwgE0zYMAAIz4APP/88zp+t27d0LFjRyPOwoUL8frrr+s4119/Pd5//3289957eO+99/D0008DKO6ceemll5bYYAEBAZXE2sFphfGTZIiSu75V1nObw3G/0rssI0ytZSsEpChEP2bdMbLTZq0UkNEnUkn4b8yt47rbfBtw884SJnWeJjcFOL4uCX801xpj1+gVPEOhbeeepffl9pVV1ii6Y8s1JbEDTtiiGyClxBWK7xKua6z9payzeKjNS51z8OexLXY8aeYhLTuIPdQWxXepjXEZ6r2HXAmukdOoq1XHLJSWhvv+gv1/2aWhkvl485aVK2etQxmcNsDFOjNy7K9//StOPvlk7LTTTli1ahXOPvts7LPPPvj444/RrFmzNWIT7fBs8YRbdyxLuPvs88tqKl2cylxYtFRIx1paTnFouhDFxeBVpxB3+/HXJS2wCEm25HWtdutESyUxoy9kUofE9da9jd2hwWoJocqJ0ltZQCBeS8uuOocoC+8aWMpuKw/nAU2rqc3Mfg0T00jikJFAptb1sjtP6rbJRQY3OwqNYxXedccY/4h8uHFVncy4xWykYR+bN1d+nnAuDEy8tMvoS18OuLJpOYLxY/OR6+WONrIgIHPWK298ABg7dixGjhyJHXfcETvvvDOuu+46LF68GKNHjwYAHHvssdhkk0301MxTTz0VgwYNwtVXX439998f999/P9566y3ceuutAAAhBE477TRccskl6N69O7p164bzzjsPG2+8MYYNGwYA2GyzzQwbmjdvDgDYYostsOmmm+auQ0BAQOWxtnFac9C0y0+5c+6dXLnoTAlTaLF9VPw4hnB8qWjFFpgCe+aFssG2RRo+SQui50PMXamoFI8GU/9G44S4j3iU3Br5quyLuQtv3ZJA48ZvAOy/qctjuDkWbYx5pw5TL+d0+qYg46SMtYTVGrrmHVl8Hynmrbg0u74YeL+8x8Q6poG+n9jc2fG3Oa9w62HdIrYfNzrTJx6ZdkrjQ3p9wL4D66Wg9Qj1xWkbCtYZcWzatGnG+V133YX27dvj7bffxh577FFPVsSikzlyKk34yu5W58KTh+tX+Zu72C0rWUpCSIkCscsmN8W4tRAQkXTmvpOr2YRCuvWh3XjSQ1FNU9R5C/ooJQVYXYLUBQu9aH3xfwGW/GQ1iIvLiWvKROK2tQtDKNNu1ZaUTsWZUF/2bqEdai2Ki/trsYmQNaIZ5dlm2rUJbntIaQhtRkRWIGP8kXCtuIukhwQWrznJxMm3MuKYROJC9qX09LkXxs/b4yfYagfV5rUlQOGII47AvHnzcP7552P27Nno27cvpk2bphfUnzVrFgqFeAD3wIEDMWXKFJx77rk4++yz0b17dzz22GPo3bu3jjNu3DgsXrwYJ5xwAn788UfstttumDZtGmpqauq9fgEBAaVh7eC0RfhWE3DieUP8/YP50c5dHsRMbYtu5fc7ttglpTBoihtXTSQkYpYwmUYSReRpoyvo2LU0ZTLqSyc2xvm5lCrmTgUr16zwt0lksaR1YD+Fe65wQnmeaZGsCMfcqLEgFAlkEZH2LZKvPSnvtY/Sf05HemnOrnashNl+5QhvZh7+SchsgjLVJfXOUPHXy5T89H2UtjwJd5NawYlLra2nAllA5bDOiGM2FixYAABo06aNN87y5cuxfPlyfW7vMpYXS7FIaQsAaAeWhvx/hXE5WR6flQMr7KCg1x0z4oJ2BsXueDWk7soL0ZpjBS+tAPinFBU1oq6WrCdG1xATNIlVEVuAApTAJnRvJ9UXJ5LYGQWWAGPHRljtR5/OXBMYRcRUI6llXAjXTn3zUDHMKs24ztLcFVNHM9d44HbgoV+3DH/qZ9sV/ey2Sz2yYdLxN6+fdWOwo8c8bwZpcQ0/UWEywVzXtPjcKcfcbX8f0TD+cCKBbNVyrA+QheIvb5pSMGbMGIwZM4YNe/nllx2/4cOHY/jw4d78hBC46KKLcNFFF2Uqv2vXruZuvgEBAWsd0jhtpfmsXije6P7sz2y8WEXPzSeL/0Ox+84u2Hg+lNK1KmEn/thbPI+7ajeUMlu99paUOl6Rh2ZhZ1LnYvvHq/fS7paOI4tX9dV1F4A7vs4ildEhrndsR9weHHhLaHtQsUrl7wU3SixPH2RsBBCnp7MebOu17TIWGJNErjhfu2wrb4bfeowGpODz9bmtc3Y0GeHqxnsKZ6uVp8O/GT/ufhAQdfPKmXIL6DvQc6Ny1NSXtUgIU561clmyQesQ6pPTNgSsk+JYbW0tTjvtNOy6667GF3UbEyZMwIUXXlixcrfGYGyAxqhGC00cfH/rScTCjOOGr8YqfCbfYdPUJdQ7vtmxFrtg+jcUU4ckP4HVQgllUqen+XAfOIRtR/RObsT2JKSj0uzOkKJWAAWjhxSohSz6OcaYXk4URUYUN9FpRHE5jKjziee6C2PeuxaLvOUKvr46Iu+v8rd/NJWxKzjogvlmWDYhiZSu6mTsNmO5s0Jdcu80THKkedMjN3qMy8PwS6mncfTkX1+oqgE2G2j6+W+N7LDjLv0O2GSXHBmsvQhEIiAgYG1BFk5baT7bBhthK9kLG2ADFFCAKVaBOeeQTRz7L77AQixEvg7IzLXUrtWRhjwmOKKJlsNiWUwtJaJEBQEkDqo2X+btD7axEKZKpVMibVHNrT9VEIhbCBTXC1UzObwE0snFLknLdTJe9QxO/GQrdYiaLsksql/knHSkHuVUUsfzbsQkYkFFSNV+xF/nC+fDbdrRKsYIz+KG5TaOMqVcqdi8xcmhX13SBbucf3OZdN86gmqTRo22QaNGbZ1w6UT2hHniUNTKZWi0QefcNq6tCJy2slgnxbGTTz4ZH374If7+978nxjvrrLMwduxYfb5w4UJ07lz6H0NfHIy+OLjk9FmxQi7FlTgaQP0+o5SGYBKEImqBaJ8f2pkXY3Nf3ux4tZF6URTK1IgyWjgZTm6sH6CMitctE0qFkopuxATBJRRKJCHT8qQlAKkvXKSDzcPEnL5ECv2QN5kiIZtWB12MK4ibpNXuBBFGpxFOJ8rGB2kDsttR4hpkiDuvJLcSqZwFQDl41hjzhumjZIUxdrdNO67XjymTK8+wxWYs9cwsJIBuu0P8/Nr6K3M9gKwSJezss4YYY0BAwHqNLJy20ny2sWiMMeL/Sk6fB0/WTsNj8kmIUtZtAFBKn0p7Ymeyn0S0bq4/Z1MYo3s8CuIj9Qj4Il+N6yesvEDSx/+aJYGUafoDBak+evLjzkxCI2LbBG0Bk6fHdvKkkQo41CK3TCT40Sw9bW7xqJifk6tmxbFFJJVGtaKeYgl6H+Q8En5rrKdLDdXm5Zj6yMHil8U2d4UxYc0XNLg39bPydduc97NtWRNi2UYbnYqamj71W+g6jsBpK4t1TjccM2YM/vKXv+Cll15KXVy4urra2VlsXUEts4tOXf785SBDHD5+7IZVVpWRn5GvfiirdFr3AKxzW9OI4xd3+1E/1bOrJbegyII+J6JV9E/SI8MOE/QnhfklkXHbOlc2pCcoIO6cRVLHZ+Wo7NZROBFIuW0Bz3Kz0ykhjQP1NjaKtPP0Hj3CGCw/RPZyW6uywliCn6c6dKPM4j0oHL2srhCXGZAX6itb3l9AQEBAJZGV067LfBYAJAqolWqXyErxU/+PykjSciMxbcGTj3uEHnFX5OtSFoq7YUphcNLYBuX20xHOXTyX2s8vEwkYzM74iKxycfMybSOSIhV/YLulxz8bEuNKZVVkiTVizBaxtFtQP2Fw+dQdKrlzlS8VyRgb4p8085ExFxeWO6ksysntcuI7mPyEbUc5P3PmSf53lRKh2kSC/8AfkIj64rQ33XQTunbtipqaGvTv3x9vvPFGYvypU6eiR48eqKmpwbbbbqt3T1d45JFHsM8++6Bt27YQQuC9995z8li2bBlOPvlktG3bFs2bN8ehhx6KOXPm5Dc+B9YZui+lxJgxY/Doo4/ixRdfRLdu3da0SXUGCSWOVWE1ClgdkYO6+sX5FwgRKRjHWrikplbH8fkVvH4SVbqOEiLafhvkCBhPZSGM7a3NpzeccyryxOuzC+s8Djfan/sUY10fHsLsSIQZ5pIaM16SJuV1G50spTjEn3glDSkX0hTXNCGwOvLiyLhYcVRuoRVJALabVlKrkrH9DivMdZTFaZe1tlIlNclKPC/1V1sbG27lL2Ud/2qt+gbkQhDHAgIC1iQaFqeN+V+tLMD4epnxJ3P8amtdv2I3HZ1DFEUszVvzCm8x24pZF4kjACkKoEIbnLjQMkf2smG5k34ypl8yvg6IyrevkPOvQSUF4/aSXZJLOtR6mHZ8Y7dEEQl9WaBoePSPJP52PKcK3DuFXbyv2gyPTzGzeGSEMY7003cWeqHZD8xpv1ren27aZfjXEnGvjn7Fv5Z6FuTWI9QHp33ggQcwduxYjB8/Hu+88w769OmDoUOHYu7cuWz8V199FUcddRSOO+44vPvuuxg2bBiGDRuGDz/8UMdZvHgxdtttN1x++eXeck8//XQ8+eSTmDp1Kv7617/im2++wSGHHJLP+JxYZ6ZVnnzyyZgyZQoef/xxtGjRArNnzwYAtGrVCk2aNFnD1lUaxc5auUEfGnWArA9ztYipT5NSP+n4SfJv7GfvGaS6SL2TooDRs9NpmtJKq+yhZbj1jPIWAKSMFuMH6JRNlX+tKC5GL1QcClq0OtZS8Qeu29NW+idgrkVG/KDby8yn2JGSKZxGSxjVMX2la75uSRkvwi/s9CnuYn3jL2dG5fVnVEnaRcZhdj7E39jtkp2GKd20RhwBPfeB+kF64pfhp82UdbcVtnVfZf4DDggICAhYK9CwOK0pqqyG1DubV7wcCcS0jWM6ygrqUhxVWrE5lhRPtaS5qBziT4z2oh/pboqYFbsjhcxY0uMmuTuKS4xiDDNtvMaYmVsU6sklA4TFLwEIshaZLpNbeN9Q68h1pBybcau8IYReo8uuV9LR5NtWettPCrbdsh6h8xIp8eh9xuSR4s/GlQlxzNetykLSt0PeloC1A9dccw2OP/54jB49GgAwadIkPPXUU7jjjjtw5plnOvEnTpyIfffdF2eccQYA4OKLL8bzzz+PG2+8EZMmTQIAHHPMMQCAL774gi1zwYIFuP322zFlyhT87Gc/AwDceeed6NmzJ1577TXsskvdrIO8znwLv/nmm7FgwQLsueee6NSpk/498MADa9q0OoE9zHs1RJ2MIKN5eqc6aj/oYy3ol6uiu1bHif2kzj/JT31tU/lQIkXTQcdx/KH0lpgS2RoCBOOn8lJkyuoR9HB0npkoQ4iCI60emkbylW7H9cAQZQTo8GddCSYbtnNUplpxdA5UN/IIMc7oMpidd1xlyVedamNpP3iO9HrLIh0tjq6i7uI31Npa8zw2i/Mj+UHCqUrKqDIBRCO7MtQtz2+1dEfIBeRGGDkWEBCwJtGQOC03dXE1MxuhEr/iAu/qc6J7hD6nMyWyjNRy87NHj2k/PVotjgMSBySNz98sE0Z5lIz6R5W5bjB0QTBugUifMubrifjIpuCuewY/CT16LPaLzwU5T6XIgncXOa00OS/HgQl9T9AT4/S8FS5vTXOrskGEMSauBJPeeuWgfkKqmkTvCzKa4aHfH+L/CjIOj2eBxL86+U/nWzD8A/KjrjntihUr8Pbbb2PIkCHar1AoYMiQIZgxYwabZsaMGUZ8ABg6dKg3Poe3334bK1euNPLp0aMHNttss1z55MU6M3KsoW1FX+volsUnXiVHkNEWLX4YoN/DrAVMo1jxFtixn4opHD+hu3e7BPWlqhbxTpbF53gBkLWxbSJ+8Nt3AP02RkNVB2KGEz9p1z3+SiXVwv3EgHghU0Rto6tjdlTI4S4VqrOjgokdnuVnxacDq9T1ShpB5nyhk4CpLLll6XyccLrIaw7QUWTqonuJiDArSdOjBL9am8yl2FgJ1Hr8G9ajsSKoFUBtTrGrNnC2gICACqGhcVq3tsWPs5UcQRbzFx+HVfFEkc3SBFGq2DM+0n/dMBGLFoaiIiyjyKwImFQki9sHs4Yp5NManKMnT0SBasQYhNk06p3AqA5gtLDTlBw8Ipiw/HJ1taSRONkOiPQ8GV+3TPlLIkGS9wn6ruMcBchaYcIJZ9Po/KWzzpg3fmSgM3qMuVky+WkRzQ8JQLgvgKVDVi6rgPI47cKFCw3/6upqVFdXG37z58/H6tWr0aFDB8O/Q4cOmDlzJpv/7Nmz2fhqlHQWzJ49G40bN8aGG25YVj55sc6IYw0NtdyOJCgOR3c+3pQIWxxLOhbdBYfIcB1i7Oe64uGzlphFfYTqpKORW1HHpjtnXXlZ9Lc5iA4thhcFNgmIuHsXuvdXO/rQ8yiNFslMgUwX5vIkbb+f6fgvHFuG4bZGipEwdgcbKx/Oz4gv7esei4Y6Dce9ImHMEMloJEc8kyQfyeTF5A8rnS2+GUKZnafU5EPWcu0g3bK4MDuc83NIh6zMH6stxtllBORC2PY6ICAgoH6gRlNxWA2BQgVW4FYCjp0T56dCAPPjKyd/mXlz+z0WY7jLhBDip6b1uSzPqYGdu7CsSHYniWlmGtOKeNfNOFRa7sh6owBOvovikamRRWrteXewp1ByUyotP4MHyzzuYj6STLG0a6NqoNtHpbXyM47ELaVPfPLwbKneNVzu74wIg35Ncctnysvsz4C9RwUqs3sl904SUBbK4bT2rsfjx4/HBRdcUBnD1lEEcWwthTtyDBDkiVxcD6v0/FW3q/ItPu+4NRfMTlSSFKZQY44W4/1UjkW/QqRuFEuvRS1gjCIrjiqL0pAvP5QSmO3j+tt+Zo0V8YjO6INfElIQle3QGo4X+B73jkgW2UXc3supjJO+uEQdzNMpMn7cCDItfKnSbLfxpY8RqUDvXWIy8dJfLFlhTFpCGOAIZdo/yS8aDSc88egxKcz5+mk57HatrS1LIJO+EWMBJaO2UMJXtiCOBQQEBJSEpPFAqyVQKPtNOR7HZAtZRT9bRoq6ckr6CPTHWY9gFc+DiI6WcmKLWlJK9a2Wo4KkPJei+JrGpXAm/7aZry2Q6VpJU3CifM10l4Ho47SIOJ0tjCXmbU+zzFOs+ocIZEWhjozsopyWCFXCzsdzdPxEnGdSOg17M6yUsmO3+U7CtU0WP1aurYDA5ksfRLHKoxxO+9VXXxm7H9ujxgBgo402QlVVlbNL5Jw5c9CxY0c2/44dO+aK78tjxYoV+PHHH43RY3nzyYtA99dSJK8VVlyvobgtdjm/4mPdt74C9zPXZ+DWjDDzgOEHkh7Wz8pHmHEUEv2ktDUZJz63LnycPrKDxLE3dXEEmKxu8jOWi+LC6Y2gSYsVwY6kWzUOM8Qm298JJ3lIeyWNOCLXYSf2dEkdrNGwgm0LZ70y5wLTNrEakK7JRdySrgVmxCfGGXklXEDjx9mfVLf0n1ydMW5ALoQ1xwICAgLqB2m8UqKA1TItTgIv9e1KGbnjbltYXXa+cmK+bKV1yJbdRZtpKS+O2weAVRacskw3ojTlXZzYOpdKWATSiZCTfEiLsHCj3hm/kmpofk+26Bj7ZRsA3ZzLMpXxSxawMrSNhL7aANiRYkV3dD+oNcAQH2NmHuUk43vH4Z40b/Xz7VwJ/odI+POFJ/5kEMbqCuVw2pYtWxo/Thxr3Lgx+vXrh+nTp2u/2tpaTJ8+HQMGDGBtGjBggBEfAJ5//nlvfA79+vVDo0aNjHw++eQTzJo1K1c+eRFGjq2l4L6y0aHOQDTFUuYflEKfkWpEl/1tzH8UrHUqjumnRo3xpTuahO0XTa+0v9i5Jbql032C4iHhpM7R1EdzNFiUSn3NEkBxxBgQt76E8E6b9Pmb7qSORUXnOjRh1N/NR4XanVCBpIc0W8r202HS/oIVtYmKoe2zplPyfIP/0caxWQx3BOLphVycjH7qy6V54zEsKKsfl4cdXryxkAcyaSplUrkBqZAlfGUL4lhAQEBAaUgaOVaEwGopc3+xL85Y9K8vlsGwIi+LnV5Zg2OaQMzLON5p+GuvLNb6lBIKnmhKj78ZBxBSRO2t2L3JdpVkFtfInLlhr6EW+3PVkfEO3mq0mHUeeSJx3TE6iowmc/iYxWcdtzBsohxYc3A7jfdlRbUn8bN5NXsukWWUWqqfVXffLGV2/TFPSxv18YXl+ZOz2iQ1bkAu1AenHTt2LEaOHIkdd9wRO++8M6677josXrxY71557LHHYpNNNsGECRMAAKeeeioGDRqEq6++Gvvvvz/uv/9+vPXWW7j11lt1nt9//z1mzZqFb775BkBR+AKKI8Y6duyIVq1a4bjjjsPYsWPRpk0btGzZEqeccgoGDBhQZztVAkEcW2vBL8jPiUMSBZn9vZs+c/wCWDLRUGsyxr9YMIsX4Vedq7kIP/3+JSO32gtQoNYhJ7SrVuuD2dAdhGWyFg5JpsY6A07FlQAUlWh02PEV0FMAY8/IWCqcEGOcOEzbWpU2RC9DSLJSW2GwwniS4vdzrJPULxbIRFSXuPOkdSdil+22Myb+yVMruSMx2lhnjORNRTAi3qk17Zw8uXLS/LKeZ5xeKQH/4vsBAQEBAQHrEOLRUGkofvTN885mclq6rVQs8iT5EakFJiGk+dopSBxRZK6UC5v5wSxJ8/U4r5hzm2XYLSb1v5wURZlabIN07Il5pBCKEwkAtYmpAKn5c1ZdRFKhixPCspwTOxJBL4knneumHF4aa/dS4ckWpmw/J9yyx4HmpmQdYWU7rYMkd4GkfmZc+7r62iLLedYwb908cfPoaAFrJ4444gjMmzcP559/PmbPno2+ffti2rRpetH9WbNmoVCIn94DBw7ElClTcO655+Lss89G9+7d8dhjj6F37946zhNPPKHFNQA48sgjAZjrnl177bUoFAo49NBDsXz5cgwdOhR//OMf67SuQRxbS8EvyE/6McRfdvKMIJPkgcntTml2n2wOkAAKQmh33Dm48poSxCTiXYl8+kI8xJz4iaLRaj0yp3/VDSN1f0MtoWdOXxV1PPauUUr8qxVkJyVZdEudn5E1cQuPv3IL3p+YQDtblYRbcJ/r5PJ0QE6O5GudcTQ62UggI2skaCGK+9lg40V5cguxGulIWOIC/HDb1fLjR48Rh/cmlbx/lnODiPEoCmP/n72/j9kuu+rC8c861/3MTEFaQLQzxUorVIHwUoFQ25BAk4lTJcqYOAGMUCoBQ1KlnQgCKS0WTA0KFGyTkT8ASSQgvkyMkoZmlPgHwyBvRkwwQMq3BJgBfggjA53nuc5evz/2et17n+vlfu555i6z18x5zj77/exz7mt/zmevtfY5qGPUzpRjwguDl/MG7tz8U6ZMmTKlTpstplXpY4UgOxHPqtbYsUXdbdlmMSIx1PVUoigteCr+BbJqTbRQCGRTR5B5uzVH7td5d9dTbtviZFwmfbxv1N0LWw83+9VhIk5ttBpi5xA3ozyb4cxlduFOg2tELG2QTYclW8+kPrUY+tS6Q//j2HfaY03dw/q3cPqJ/ThJe0zamOTYcyt3CtO++c1vxpvf/OZh2k/8xE90cQ899BAeeuihzfq+4iu+Al/xFV9xsM177rkH733ve/He9773nK7elkxy7JrKYYf8ozjRIDtQZ1Za6if0HB4yOxIuQXuMUhnXEov5PQ1glHB3Iw6ii6MF4AIOfWzV2DOpl/0GZLPK3ozS+slIu1bWKCGNOBOBdRfNEdEV4g8NbxseVaPJQgClyTTkbye40YTeCQ+b7yZdyxPzK5ll5BZ3fUj1HTraPnG4p1Q+dKzVEothbsII/UMoCwy0x0KHurqRSdRB39v8w7zRtGCU7TIaY5cFNy9gmQ75p0yZMuXOyRZxNf6+FhPLY7tY0qheRy95WXREgo1zuLlg3mHSYmxDrIxD851Gaq3B0QFYjZakx3d9Lqh0rNsbRIbeGUHUImIOZdGEe9JtCIXj0wkLoNbLE3amTEnh6EaFLx9myOK79TuHbzcudRY6LvJsLC6m93WiCVs5DolxZLbweJB20d3aHuTf/LYsBxL5QLkDMom082Vi2quVSY5dUzm4AjacN0SDDBhqkEVibAQVdIr3yRQHzotrVIUu1Umhn+R1IshTbH8rGvZdK7PK+8hdqN5DB33ShJ/jbIfI6FsswoE0QGxYRvuokIE419uF2wE6GqbYQO0rN5NfzCOH7hhpHR0ciURr4sxnmA2Qx6XnPqyL8zkPkpcdyWisRi9GKU0aN+20bYf0Ls3D29pjoziM49K1j9/wnlDzlNITZBzvayQHkg6vCE8ZyQQSU6ZMmXKn5JhZ5WgOI6xMmwSZci1a+3hJ1jFpQx1Yq4SqrH3c8qI1q/R+t+aUnGrPrUfzStAYPpLUSU09fdhLcaqhDY/uPS+29vt7xpKjHsb+jDXLIjlXFyK9l9RYKlRc2WiWSb5DQsfChITVR2EjiQLmPQnDjjrDfVQ+60fIuN6OUDsi8WnQVp95HHfsvk657y2fZZfFs1MuJxPTXq1McuwaCqPu6tjK+Ceo37p5ZGKZrf0Y/pPWe2XovStE9ezcIpB/nHNc1MzhrgwQibAR99C2E6b/MAnp5BlHoW3H4yjVc0ziRB05Eh3Hbef8g8aPYJx2YrdnyHRgMgml2olxY6If5TdSZ0TscOiubOFJW7szWpngqD/VHcCaElnsZYwkagmp0fnUuK20ANaGL2cIc7vZALcZkKW519GzyVlvA0hMoHG2lIVRzlQpPzf/lClTpkwZQ4ucvvmJjZXRmVgykBT3VS5vWtkDt943mZgdMqqvLsvvmLq/m560SuaVDDD1aLstuS0Rz54HQBOPIxc5Z/xaGNWwRdP1rWpEJMjO1Ro7Ktu84OE06SWBgplluIcG93WEHjbirJ1mpLbMKSNe36h7mBYJv9AWN2Va2fqLO6SsOU6r95Q/vLi7nynPrUxMe7UyybFrKq1Z5WjSj4aCfi05Gdk/V/o1bpXGN+aLodSchYElQYYMKKwFZvNPVsCicVbQzDfpvB23SFn5WadmIpB/WAi52mwNFAaW5KhMtcR8Mj48n0YkFif3UeZIpIxow4FwexlWlrQ+Icnydsj+PO0yTriNjCfc8GaFiTZN8gWgwhvdDwW4pzS7rDwgxrQtTZe82ZSxJaJCfyIZxYO0LYf9quKfuhzbPBA3uL1TfZIxFxBR6vam3G76lE4KXWKVbSK9KVOmTLmUXI60AoDxLpYOvfLS7TiuBWot2lM0G3P0fngjEaWI1/FXxOMJOYYa0aVF5AxskXsNwdKQXO09jqwsvGwcIS89pvnG4VzXIC7uKNnishDOnyaD+gI27+tFDvPxMHVhcVeyuYFWwMGnfrQM0r1d6urrCbiePGvT23Yihh3uSHngUR2Uk7Elg4oQZMfIzYlXnxOZmPZqZZJj11R656W9Q81eDTxTXc3iVgcLRufRFLjZxyZnnkhl0iEHFJpniz45LS7DHr0v74eTXZFDIQBMYQdKCrtOqh8E3dJZCDWWMzGb8lbkqVCQ/VYlMiY0fmDi9W5TE9c8B5t0COnmkbMM6z4Yx32funth45OozTPIyxJHse5G04xb8NTWg5BnkNbHjesYPxd/R1J446XjQZyHm0Ftx3iDLKvvEff5WzkJSEy0MWXKlClTrqcwKPmBHec5hDzdSf9xc8qxiWVsI8cRCCUsInuO3l1+xV+la0F74/96i57P/w29sRtyhLs1Dv1Mv93ONq3FXSx7USzhW8OxNXX9OiXMXZwQgDLOeUd4whb5dY4wfDjbsPVAcPshn1vpntjjusXjNj9v1AHfDXN0b6fUMxrn8dj37bTfB1vje77mWK4XA9/I58tkbaY8vzLJsWsqo82s2zUlVrZGxKdX7vITVGvrtDWhcZ8ybNDJ0o84wRNY+jYynRzFjfiHLWKt6Aixx7X34rsIjVJzO8fi0ugEPKNaapap5VyODbfkXyKJ0z0LytEFDTG18fxO4kwGZJvWWeCmkexh4hyfyScKRJijEmqd+KPJF32XEcBrS1iF647M4nG+Q2khHDdbGL+EsY5m+M655uZad6U85OzklGd40nOeEmWqoE+ZMmXKnZPLa46pVA0yh0O9w/nsIATDuNif6JLkFBScXZgoPs00m4ZziYBLG8Bomz5RtuKgUC7eTa4/924bDGRdMie92vJ+T3mvy/AvRcoQTbipP2LwIc7UsADq1qzyEGG2URdthv3bxDS4CGaJEccknk8hpqI1x/jMGO6GyWjiyO4nkmSH7ncUzjuobn5RXI2wB47SYhNCPWcyMe3VyiTHrqXQps+xPMHlH0AOcfU7vNJP9YebwSgVUFA/9W37F9uiXvIEj1CursioOWVfqoUV8dze52h9ToFCAWFpJv04WE7AOUljXFY7Z1sDHEt4v3k8FgYOBiaW3YQUJ+EUPuxSvWpgUUeuqI+E1glnCyA6QDEicJQwSpNrTAvpbRgbafDrfmOBQd7YH60TARyl9przKG4rv4KQoD1GLanW9WMgXb+5T9NqB/W71uHgZTnUzrnpUzqZzkunTJky5c4I45hD/lPrWQzdVsxZDMMuyAQZ0JNmh4VS3UhlA7UVAKQTWACMNKr5FE8aYUCtF7FYB2wHTI51QuvQchFkIl3zMC0SJBlxc1PewfB55En8AlFCrCeUBgg/Au9oyWHVZWBziKRCxMFdWJ4BUcLK3JQ/G0dxfzk0vbR24gfIaaRbirNhi2/jdv6D/d64103ycSOtJcOOapZNec5kYtqrlUmOXVM52ecY93nqb5+swgh4qMeuprDQbzQgU5oWxpSVtlZ7qT/V9nMtH/um3dWUjADhEMdxOL36H7PrOOFQztve3xBe8CBO7lJ9TRq0YOfC9F6O7lzZknKxzbbRtr904E5KzeDO70cVIAEerc41wbi/7rTGch4O4Ux2IQ6MkV9eVyCJWqf+Wk9hUPE41npa/fgBCQerhvt6u3Cuowdnoc4Y14U5X4f6DpWjdH+0/Yc4AceVS6Hz/S1M/wxTpkyZcjk5Rk5t8RMcc3DOTWYPUVBA4ihf05qyyIu+bRuen5oYxbRaRwZs0UxynKaAQBy+j9I262itIkbi99ZLW0bb7uMpXUWUnr8+BhD2yJdCqLcl3whibqubW4WSB5zzb2uHxXA2nSRJp5DX48QNDHL/2vzp3ITB23GGgcPopQX3iCU5vAWcov37w95LpLqQymSfcgjpxzS8DvkoO0SggZH0BDblWIaJec+WiWmvViY5dk2l1Rxr3+GWLHNirBpQAvAfM4Kl+BraTrRlJJ6QiK52ys5nXWFbMJyUG3Kq3s+hXSmPp3P3b22okJYLgKN1vE8Q8oFhqs3EdVIOxJNOPDEucjmkGlASH83xDu5cORgeOwYaYWP4JpO9EGF2APZcKeX18Uzx8cxhR0k91Ok+IxBgTRyaMu31ZjynibtLA4QYU4DAuZ6inWiGCqEuCWsfz/FblsBIm96m6T00aduE2CA+gA2718sQZMccoE7ppK6ynTduc5VtypQpU86Xy2qORay3VW9FtLt65kqUKeSLmLKlvLLILMywRWOHgjUybngV+xQ1eS6bZqms7khasqxF5COg2ZtwYnBNIXfFj60GXBwg7u7goMdgM12MaRLmpgw3eQKOYblOhBmHmskJnBzmQGiR3U9L9pzzJnawLPOd3cK4LabLu1SxZbMTZuhP1jYLPef4rGLzmfDaxPeD+47lR9LlD6/EwXyxXT5vfKdcjUxMe7UyybFrKq3z0tZngjmPl7gSprosCxYhGhyeMIiUUGHo7pZqdgnS9Tigp8ri9NtPk7pL5nGiq4ZGrWyXIbnXGlrQ/xC0EOKkOJt7AxSLOIF7YEVA7jQakusAsZK4DGqe2IHfti0NMgNwyMQZ4hH7VCQ/I2uAdSRLc33EdBJtPXJNMe1QPUaK6XXTjQ1/YvZGthsfdKaM3PehCTM3JOfGULRlujxtWur3VqUadSa0OG8+nAKAL6GCzhNITJkyZcr5wj2mjTIirBxajcq1aCyexcCSGasVrwaZioSpq8P7kVshw2hsMZmgihpgl03TWqPmWzcOJ4j3f6vU4Xoz7eKoO5IuIzKmDfcoFeG2AkvEwXex4a7gy7jV5h+1K2XA/t2h1ccb3TJ5PCaH2h9prUWCKC5mpzyc64mY8NDOmRbQcdy6J4OkjR+wjfsejc3Wd0nf55yP2uYugU8nuXa+TEx7tTLJsWsqrVkl0KzYMDA2o0TOQ4wiU1Uix1gnJCttZFn9vwiBtkEMWT/DJtgMLGRURTqP46iLa6k41ShTQsxNQeu/C+8lc1hhSpNv036zmhL7NyLP2lUgBkwBzTgRA0/qQypUthHWsuaIX4/NaUELxoMEdG7lbt8H7p3528EWzoTZxnGi9N7UNmZzZvSkGdt4W55YTFcp7bqkbMkZLDflNl5Qiuln+hBLSIDzpUc0ZYYS3+MpU6ZMmTLlw1eOaY6Np0QaJwZo150pXsviLwPV7BJBKyy76o/97HAJxVZih6KHX6BXI/I0DjhE0TgZ4HDdMLY+5TpUuyuHtS8jsLmVNkLxfm3o3SC0a8plz8QI4dzjQ/3q0oI1R7W+kHFEANyjt4Nzj/XboHXfmt44eTwt0UdN3mEc53CXL8YxbOxaf8CDXtntOakW33vFjdTk6Wsa3UfsWw1v/A3GPoS4cwmyszX0zviWmDLlTsokx66pjMwq8yqUTqRAa0ZpwjqZaplgWkkSZq+pqv7qFK1ml8XiWy9o2qASV7A+FuvK6btSVlklfwI3qGuBtb+662YBE2OlBcRCJZI4Vk88mcd1GKb95W7i1GySm+QEvogD13ICmZEm0UuQH03/IlCyg4GoRcViPqkrbP3EmmErDeK27sMGKB6b8YGkikRY4SZvAARiyjpss40bng2NomMRW/9n2kVzlJ/rOqoFZvnQ5OONMsfkxIzTrPJsKcQoZ3qPPTf/lClTpkyRaX4DUZwT2xM7o+QeqZnTECYjYSLNkyuQ9lWLXHKOHN4bZSGsRUTnmkNJLbum3DffyKpiecZquXO/egBEg3zbs1RH/Zn0IxoIq81STe7WEf/geyRFtkCJU0bLryNFKWvNr98KGVfnareInHPFXq2myxQgZsWPSPiRmsdG6PucwwF7s1O3FO7b7qr7cxjgVmx8a8Q2m/hR3Fb5NmrCpOdHJqa9WplKdddUCpbmIDkqTbTasQtpo2ORMk19vIzTuE3boWCHwjusTChMZsLp9dd4JtdiO3Tk8vFean1rc88VWLnSU5HxYTlW2yXI/61KVX1cFSe9HEr0cZvzwRY2o9i2HBoHBpMc8h9COPYjH+jj0ynXoG3qLE1F/YrJrG2ZuJI9wbzS82gc5zhr+NhR66IQHppSMoQYy+XsXLhJb/oSz4cOhHoKA2usux9yArmJZ6njxKnPfk9sh0bltj2Nh0cpZTOtr/vALU45S9blcsdl5L3vfS9e8YpX4J577sFrXvMa/PRP//TB/D/6oz+KT/7kT8Y999yDT//0T8eP/diPpXRmxtvf/nbcd999eNGLXoT7778fv/zLv5zy/M2/+Tfx5//8n8c999yD++67D1/2ZV+G3/zN37zcDUyZMmXKbckYC6LBhQlTDo5TMCXzUvGo1OPnkI8XMFOFAYgK9QTmeiCE2cCcgztvX6GF583XZFiVmzo55rFjkTndqa/U1pGwjnerCxWMFdNzgZVv6mt4lhaNYpDGg7yH4uP9ebfkvgnhfhARrpNiqURzHRprCaquU20HIx7kvo6RmaRrj1E30u0CNg6mk9XSLmQTCAvVlAW+W/3Ckp9DvTRuV/ufSDr2e4hxKW/Ig0FcrPOso61j4tlLyZ3EtC8EmUNzTaWf/E13CisWrLzDyhdOZm0eND7QxmUCro9fKkmGnbTdABYagxWdaAuqVtiICIvkXAuUtsIV0Gj9C1ZawoTe6MoRsAUoWtBWGa4A3CyMBjAphxPW7hhgChPjYHLyCYGayWTEuIU4m6y28lHKV5X+nD1JfsWk8zEu+QWzODRxeqMb8amNE9IKN3l5ux3ZldOQbHvwGed4RJKssLU5JsR8/Fq+cNR/3ojv+3Ds4PQsJzN2+6LbXp97nCs/8iM/gocffhjveMc78HM/93P4zM/8TDzwwAP47d/+7WH+n/zJn8SXfumX4iu/8ivx8z//83jwwQfx4IMP4hd/8Rctz7d/+7fje77ne/DII4/giSeewEd+5EfigQcewIc+9CHL8/rXvx7/9t/+W/yf//N/8O///b/Hr/7qr+Jv/+2/ff4NTJkyZcptSsZdG+QWL3KMCCMSMusM0ozbuMXOsPMC5h0gdUeyqyWaDF9SXAhGwLsI7chheXsyMMchQDgh9KwPWzTQ1irtWBTxHsrhd9vSMy7DWljRtORoMo0dvYceRcwHwdWc8zOo22hKyRWEcEc4cXM9PNp7dwzfxcc4auLCjpdhWBwPxnuVo/cPHHAxQnoIU8hjWmohPvkdBqB+pVvya0SSxbaoidvs8+0cQ5m49ly5U5j2hSJzaK6ptGQWC1G1ciXGKlHVapc1B22ndZpkICPUlIzL2mSU84o2WWHCnvMk79/8SoQ5sZbbjoRX3yfe7K+CH6TxsZ/TdrklhDmm6ZwS4nRxUGYad+N2YMnH5g3SZ8cOsCIvEsPUHjyYN3iQv5nR4qwWQYD8Y8Sedben4gwYhElPd9HMceFAs2vm4OhvWsKJ7GkHio8fEWl017jENfy6MLgU7x+as4TphP7R1n3hQNlDx4am28QR54uqoJ97nCvf+Z3fia/6qq/Cm970Jnzqp34qHnnkEXzER3wEvu/7vm+Y/7u/+7vxhje8AV/3dV+HT/mUT8G3fuu34rM+67Pwnve8BwDAzHj3u9+Nt73tbfiiL/oifMZnfAZ+8Ad/EL/5m7+JRx991Op561vfir/yV/4KPuETPgGve93r8A3f8A34qZ/6Kdy6detS4zVlypQpl5cx2bUafvOF0aPHAeJMcaCTXFFDy89ukaBnwZhmOdEv7mp9Dl+CNljUDDPSC94/61MbDouyiFO6xLOP3xiA+vV2G1oN9fUPxPOw4VKnySiFNcb7kOmlvi1JI++TXscy8RYVzy7SkzwuIdhAvC5943prDNrMw7gEQ50Yi0RdB9ebUUIbZh/vzpdZyIdh+UxoWvulxe/+6dB9UnDTLgZ5tg6+mmNi2vPlTmHaF4pMcuwaik7WLXm1B1VibKgRtqE1lgilSG4p4eThTFSdshLnoGBlbBJhLWgYa5i16u0ajgSatwlrO/RBV9tkdm15CR1cm/ybia/GsV2fcq6ik7teNstNbRiRPNJjBFSU0cv5ouo+lzwxxwm2diUgBtOGippPriGVNZ1GcW1fBmntALfxRvDk+raVoij04ZQj1HuyRhnbNReuKo4F4NXH185M4DLoU9FnE/Oe1udz+LFtM9Mp58idUEG/efMmfvZnfxb333+/xS3Lgvvvvx+PP/74sMzjjz+e8gPAAw88YPk/8IEP4Mknn0x5XvKSl+A1r3nNZp2/93u/h3/zb/4NXve61+HGjRvn3cSUKVOm3KbUqa7HfhnHHSfFMIiH1I1BG8fyjs/anwgTHMfCwkj1et9i/KgPNMgbLSHiGOnYRdcZjRsNRD9jEQtkXMBdzGFokukcdzaSw15nXob1Ea28V98v3UXUylAcDdF00jTNYlDbV7e3iKZEVGFAAG2UGdY3yK91g6tZ49LE4dDZB+wssSIcxiHUSYNwJZw2cDQGOBXjfPF6E9teSg6N/pRTZZpVXq1Mh/zXVFrnpcytlf0pQjbBZGiQ9bzSVE0QR++D/FR/FWNZ6R125HnjpNhOPnHnyUVSSoAaPg330z5SiwR1ZernBYUA4pJLiVP+9reb0P+ea9yCOgHo9fBMzktYv2TyNqfubcc100kiLSnXZs8SZpZZ3wpKZBsl80GyZ1YnUiVUWoKOm4muvT6Wh8MgDPIBjVkjHahv44xQ13NwzXVJ2UjD+AhymfB8tGvp+eY2uMmPNv8ZqIJRn/3EDs+fPP300+n67rvvxt13393l+93f/V2s64qXvvSlKf6lL30pfumXfmlY95NPPjnM/+STT1q6xm3lUfnH//gf4z3veQ/+6I/+CH/lr/wV/Of//J9PuLspU6ZMuWrJmkoRx41zny4VaYX9J7m5pnwNVIyrvfLeqWt8BmgBuIh/J8Wh1LSod5I1dVrEOs4b42tJx5ZxH0iqWJJaEEIb4W3JOkWx7DjOELMOybBOBHzZEEMxXxs36m6IG7dFBqF8T4MAwslJrEP1ZKwWzoP4eD/UxFGIA3HT/0Th5XDoY1vnKWEnyMLzTPGh/pL9luW3NUssn+I3nt3B/Gfh07MLTJnynMvkDa+pMNyU8GQzypPMJ3uH/L0J5UZ6o5nm/VI/ZK59FjW6ogZZH+41w7bC8Tr7KGs14ETIf3DddNKJBTehhM1c0dQRuigTF2dGWELCNpHZ7J3rjtep7ePTlYECJUfSpMtORi7sAKGuGHGXzwdA+q1k1aDtdE/xGPU13U+8fxqQXX50jv8HxNhlrBA7ra/Cm9elcNDCa44V4FWc4wcH/ZY/anO1baT73RjLMw/tRzKznHKWFACFzjyk7Mtf/nK85CUvseNd73rX83krm/J1X/d1+Pmf/3n8+I//OHa7Hb78y78cacfVKVOmTLkDUqepYC1wwL8YBnHjfOjPRuyE8yB9JO43bAHUZNLKZI2w+iuq1hSwuIN5B4flJUp1tJYZGYB2dEtTBk1Yj+y6YyzUXMl/FO8vPtMc5r4KbMFLbjMduO76ndIdrLf3dnC2O3Mq1HtoizmBFV3xD/qnz5woxY2PtoY+z0FijOt3Qr4B5EV0PeI9cNPjjedy9VTWxCW3K7eDaaf0MjXHrqnYRM1H+MstLSRG+mWLP6uqeKI/jKxp1OSVhPFPtu6OIlOm/qExsKOCAgSaiuRa7y2HaeN6FNZrneiL3IGu7xUAoAXEa62TYKuE/aRGUpPedb3hqmVGNi5xzdEVykkWrWStkURtGXW3yrqQJNpjabbOvrrCw0IvkVDRcgNiS9poNdejSjqFj2Jzvh/DzcSZyJyRdKQNN/GcwxvmlOOjyRMc5ddz05aOE069znUwc47XuNH9xus2HIBDKt+2GeJuBxLonzhNwuNsKZdQKVfnpb/+67+OF7/4xRY/0hoDgI/7uI/DbrfDU089leKfeuop3HvvvcMy995778H8en7qqadw3333pTyvfvWru/Y/7uM+Dn/xL/5FfMqnfApe/vKX46d+6qfw2te+9vjNTpkyZcoVSkkrkdtyaDZThxpDkuvYF3tIb7XNiiE8B8FFEOxOTAi0hFcmpVnBk2LIrbzb95a1xZDyMqrv3p1cxTpPvXVYvX6PGRVrDXkBlZs2YjuVUOGQNgY1hlFjW2FBd3A7w94PtwfgnKt+t2RNtvitk+IG1218Omsd7GGP6/2N1TLUl43p4R5G4YMEWBMmDnFNf7rvA2x8dXATF8rQVtzweV9G/P24evLtT77cDqad0sscmmsqe16wlmO7UR7WJosaVadqjXGbdkBbLOcjFNEeyxpkWTtspCm2de3hqHG25Z8BFgbqZgTOr+jqXOY4Wk6mJTzavO05ldUzoW83HtQfQ2jDXmHe0tmJnOFkCZ+cdNXUwhiEg1aXanA5YcanH9ZnjZPrpOHU18s8Sst5DIR1mmXsDwrtNQbXMR9Me0z7yqXRBts4mMXvhmqQWbc9rutyzMe5+7dzMDPKH/1B//5MOShnr7DJAQAvfvGL07FFjt1111347M/+bDz22GPebil47LHHNgmq1772tSk/ALz//e+3/K985Stx7733pjxPP/00nnjiiYOkVyl1jfDZZ589PjhTpkyZcoXyR+UWXBNqrEV17AAdyRM1y46lByf+vmP6LuHZWs9Sd1Zn9f+Vd0vPfnGBEtL7vI5T847riskUv2YoWkUXX7doHb8eaaD1i9u57igRt6Z2RHssbdEoh+7KCWgYrg2X13O7m4saTENp8dwYCEEQWGqnrbMlbmjzIue38RvU2T+rcVxso3fy4oU6wikqQMT2Q3iLGDt0LKz5B8+Avf5477FfI2Is3culDwbz1Gk6V24H007pZWqOXUOpH84XOPATKxm33+y62BV8LOj0q04vOUyj5GElIoh8upZPfaknaItpvVQEXFRX+SsIYMZCdRJQb2mj7ZLjdash5mkc0hYQAEZBkVgChfAC1VsjAi64dItWySZewqMJz7IwzDKQVC2syaR5Yjspk058o3m9ec51cguK1DweP88by8Yw57BNeCEsq6LRBxhbWl0V9T6TTFyD+9BBiHHdjpT9vee0Q3liO4PzoTQ7e/0MAEIYdP2XYJJ4rSqS1KRxuODw2llZ3u7f7cjvP3U8z5QkK9Xj3DLnysMPP4w3vvGN+JzP+Rx87ud+Lt797nfjmWeewZve9CYAwJd/+Zfj4z/+480082u/9mvx+Z//+fiO7/gOfOEXfiF++Id/GD/zMz+D7/3e7wUAEBHe8pa34Nu+7dvwqle9Cq985Svxzd/8zXjZy16GBx98EADwxBNP4H/8j/+Bz/u8z8PHfMzH4Fd/9Vfxzd/8zfjET/zEqTU2ZcqUOy6/zc8ct4I4IhVJZUxrZ8rXqv1P6H2OddpiHIGbtKREEAOgiimXCgANh7kfsloHpTjPW+vJoLP1N6ZNAa4Vx9Rcg8BcfJMlATNeD4fa/FrLoovPAIbQAhqyPsWujmFuczfNcGo8AWj9c9UKOeXJFGHu/SEiLWp0aQ0RE8enMLpuxdLZw/HbpJ6zX6+WsBpqjfEgnzZ4LNzc00GNsa6vWchf8n4cmjZjXIofYNjb1f3idS7inSt3CtO+UGSSY9dQiAi3eCd6Xwdzbqb4D7mqcwv5xQQidWEvP2Kq4kzRYSmFsvpj53EeJixgFFqwcJEzsOICwIqFGNHhvgISv87hNk2vNUxSg7YfY2rYIZSuzlXzSr9PDk48WzgATpDHxinHxTGmlKeucAqBBIVBsZEOVgTyh8JEyjbZeR5O13Fiq88s1tW8DG1bzbUCTO3jcDJtTC0TSZbuAxvEGIO5qWczbeMcx/Gc62hGCZipJjf1ZnPIBlWlscjJnk7b5TbC3eYN5wgD9GdfdbmyL2Apy/kq5ZdRQf/iL/5i/M7v/A7e/va348knn8SrX/1qvO997zOH+h/84AexLF7x6173OvzQD/0Q3va2t+Gbvumb8KpXvQqPPvooPu3TPs3yfP3Xfz2eeeYZfPVXfzV+//d/H5/3eZ+H973vfbjnnnsAAB/xER+B//Af/gPe8Y534JlnnsF9992HN7zhDXjb2962qeU2ZcqUKc+VvHz501hXeg5MVQT/GPnERmwZERbTNJYiwuHmnAmgKpkgU0TseWKc16MIcMAfOC4nJ6EI5Js6WX/lFrGgsFNl3tfcXk//aF3ei0w+YZgnArpUI7MsBAfTSGpwjz4KsCuacSTIuuaH43MIFbVE2LA8hzq4j2vNI9s0rSfmRTqT3UfiLJHLRmEgL6QfusdQw4iM2tQYC+f0XdDWry8X9Fun6TH3b5ThfyC3d0VCDCy7F11tpS8AuVOY9oUikxy7pqLq3NRMTL2MU/WHKypqm3aYrJRl7TDXJkMoA1KqiaU11zCzNS32X17de3KRufICKxaKfsZqPr+mg37H4nWNU6qspdecSkNIL8QgUdFt56PR/OSrgrAFLg/LfYdVQlV11/GrecnM6IAw6WSEEVrM7jYVDbWTocXECV8m56G6ODd523DCQWRgJu8kGQZBrimE00TMENPDcH8d+ZXrGrcxOEpoZ+tsYW7S/LolwzbrKCGMJp++61pty7ByuOB8OSLOWJnUc8WauGJ08gKQO7nK9uY3vxlvfvObh2k/8RM/0cU99NBDeOihhzbrIyK8853vxDvf+c5h+qd/+qfjv/7X/3qpvk6ZMmXKVUs1Y9xhFR3/y64FHRVqL+rcqHhYsWSvLZbFUmI2GhFk0f+ZxumcnImNljSLaNNrC6RZN0gMUMW6mZU4fC+RlDpGOGkvcv6m/lCBYhujFBsNMCBDHqT8sZJwMcCyx/xYHcszItJO8Y1lJBg3Qx7OMZ6ac0y39pu+pPKD8CZ+j+GoMXakD909hu+L8XvX1HckbqudozJh7G3J1By7Wpnk2DWVwkolqZeGLdlOYXYyyyY9CmSZaYzVX2wn09i4CJ9YddJzcsxINZmwi5g8yvSNBcAewI5XMbFUh6re6zgR6zSc0zNRFigq6wmnMBpNsmheSYiklEOSWi9QterAkM0JeNsEUycAChNEwBC6MuSgwSdGJV6Iqe4uKe1Q0ByrZpCUgI1qjrUEV3wDspP/IAPA0Yd9VvaJlRIhRt21FzX/Xc76HCDBttI28gBu4mlNBCA1vPayYCGhisdbV4OPsNjvoVP9wVgmM8tBPkKoa1TPZUDBof5MmTJlypQp10YU6e2wgoVgOqM4Y/glrlMuhSzcxQf3+JRpquHZ1yCbPhBAJARZwVGCzO4x48zWxFHpCLZrHa94rQid7T6rpUfsaQNU4Z3we2kH3i1BvD/o8mj9jj3DiEUzyWjPqDURp+8IIiA6zR8DmB4v0VbW9s4GeWJUSxS15GG6DZYd4EOZ1tk+uGl3kJ5Ehu0gEXUkbpMYG9aW203C+Y0gI403ehYwbRt3WyI4/PA7MWXKnZNJjl1TYXY9qxVsk8pYRgk+xelhk6okWFr4wXMwoSGdWt2MMsZHzbast6UewOpOO8DeCDKVmm5MCKIGzAbPACXD8i6V0ZxSd7H0mgiEFai7/ShBpgSQ9knDgePYOltfKIAxEv9cEm9cSCAFtY7hrjtdTHPNzXQ1mAgbVxReSzIhDUAGQQtMn2Mgi2ob8Zk0E1Zo77BjfTRaY22eM49wTy0g2coTHeVbf0f3EOsYAAkP92PRuBUZ93PY9zOBwKF+TTlJLuOMdDovnTJlypTzpU73jhTPJsi4x4Q1WvStDtTjzSzmiwyA+e7qfZi5pUFGfdr6Uhd/za9E3JvSeznqb87rrfru7o6yklklVyuIBcG/rhB0Y0LB+9trlo89kPU9ba9yTbawzdFwlAbYqBkJ9vri90kkp7b6SorbR/0NmD52BzxIU6zfdCu1xQ1h1oRHcV26vprNuTPZDPm9fQphdOGK3Rvn+zh0ZrR+qsfaYPqlMCbvOiuVUR191LZEa44pl5aJaa9WJjl2TaUE56XqmDOvthwTndojgeUkWwUJkfzyX2s3o4zpaOqRa3IvYuqSvz8DjAtc8AoQJ0LMzSuzOeW2aaUbY7I53zfPZ0KauaN+lhCIQFysvuqoVW9b7o/d60JagTRgpv4r/MG4qaWSV/pDL20zY8eQ9lXzSQBVwlxi7rpx3foT666LDFLJ8bbAqUdKjw73B2EIoGU1GQ3hgEerRhaHejmdnTjr007RGLN3U00zEdJOuG41xiyfPovUDIfmWkDXhnkc3xJklnUjP499kgxlgogrkZUI6/Zqw2aZKVOmTJlyrrQOQi5BkB0Q5gNO96mNB+qEHJc9rSYY4lVgJ/3NpMuWD7IIAjj9m0dD8lLc8kp6JnVG72KwO/CaV1Bd8E33kO8nEmfRfcfWfXu5Pt2eH/s3gfYVHOpN4+bpGyCqiztIljFSnkNpFOL8vpqyYdg6B/qjHg78etUh8GfXtrthICv5fEzb+7B+DcJqaYLQ55Qnxoe4U00j6xjEt2A8Ipumqaf+XTPne5xyaZmY9mplkmPXUCqHsaQInyAPaZBl8Ukw/nJGJsDD7otBJw+dqBgtOeYGierta1F3pf05OOnfkyjV08i8MlJcHOpWcq8IyRad8HNI1R/zvueqzl8IIC6iPJYBC+k/gplszldMJE5InbPhRnOsEjcFcGelJHDEVkZkmkmTFDXXMPPKnPe0sp4T/aTTTmSNGnM0yfQJNmgGJrKIK1ml/sX0dTqoFbad1vsjO3Bg42xhtrhIzBk51QCbGMcxfbSbdBpDyiAw1JXWWA8An9yRI7K1u3U5pfCUKHOVbcqUKVPujFS4EH5ABXCdT5Bp5kNnxWTaUJ9+SMa5HIE7wVIR6k7BohFkoZ8M0VCjHG9tZbNKJc1G/seY4bumgwAsYF5lc4Hc49GQnoMSWphiWlQjViliaY7pLa7ZwEtHOrnl1+pY2hBrhW5Sm9bko1C/YvD+m8XDo7jj6f400eRN5Zrvg4hZDxJjjZz6p6bfNvn7YFBy66Vqvz2GeQ7g3glpz5aJaa9WJjl2TSVuey2/ywCqyeIpGmQVF/g0az/CHDXJZOoldQrPEhvNJ7281+Vp8Vdayy8oKLxgoZYoA1YA4BWgrBWmRqSuMdY66o9+zSplZurljdYYNWElzyBabFCHpgEv1fk9rpRE0BLXfnTm0VUbFjPKOkKL1ReYNNUMShOcHvpcMvHVE2YDEuzQdRveuDZcx2HiTPmd3DPIpukr4BNcmKHZ4zmEWxLt9LRYX/Q71gCy5to0xrR/MV/qdkwL9WgdozGNZTfTgPa1waH6NoSBbWLs9GqmBCmXWGUrc5VtypQpUy4h6nRDxObO0wgy1cjp6DBqruE2A8yLYdLQjaNyaD41WwHr72KbDCg2joSC0x8thnS/ZBRy1sXYoLmPepOmXaZwg7QmyZvmJmmLW/9hfmedk/3mmkOAdLtJ+C7sdhfNzu/+vRDDYyf/rS5hJ+E75zIzrxI8XfyoPsGZ5od54E/MsC8oEVLeVwrX8cxI5owRKofxbDF6F89AuyPlptP9mG5hyvUG2TRVTXC18U+n9Q76v6lRZnmbDBPE3rZMTHu1MsmxayqlJcfCL7ppU2291wwznQR0YuakXq7TLSOsCiHmrxVRKB/T3A3+AiYhw4S8AgCiAvDiZxSAlmD33xNkToTpPUYTS51O1d9YdLrPloOBlN6aWa4ysalxpjqKUpNKBSwt4PI5xk0pbdMCwEBN+9ASVFKeiQCmjZUYK3z4R2uTGAvkTp0kIzziMDlyKBdAyjFtssIgI8UYYwJLWhxqjwG9f7JDaaNznpzbc0esIZpjNvlHdYzCaMN8cnx6zKP6WqDQyrlAY8pRmTv7TJkyZcqdkUriND+g5IFVsMYmpg1mhk3FKdiSRI7XqGKuQFb1ZzI0CaCa0JEuJsuiNDkWdpi2oHCpC6MNdlN83XZZSSL3w9uaUUYvXr2JpV8vKFgr1m9WR3MvwlD2oyh1BmJFxzEyLV156ZkuCAO2oVViTiL4Mg7O4yJpNuqvtdZitdCfnqwKdTZp9r2T4qNOYHufHmNKeuFMZl4C34hLibmQHjWxYkvdOdxfIr8OEWMbWHjznO6qT0v3HsZS/1a60TlUbyutxtg5ZadsysS0VyuTHLumElfZRr9rpkG28XJnR/lCHYVJijUugINEgBG206A/kLovpFJA8VyNIEnQgU/lQJHJgs2hKIc2PNyaVUaCTEkx6kq2ntRaM8sFhbiaVwLIO1hmaONhm9HrXUuZSopRIIRU46leLwWZyEkPkmx8THsMcA0yfW6D6yVcLxzyBDyi7aSJN6X7PcS+WBja92BiuTJQkDWyzIdZmPBG5Bc8zjTVuCk7TMsHaX409cbgWsJ17APQOt0fm1p6HLfEUzuRcxMYpXOTcACodFUfyQNgcmNTpkyZMuVaS0duJdUeIVr4AEGWZOBbDBx8jyX+wjDg0QmVyOZTJ3oE5yEU70DimCCLxJbG116wmUNqLFv+eO20Tbz3BFSxgOuyb7jzJksQHqQyy6ZRiR/qsY9/lUT8CO+xVUsOYIw9U8Kt1b6DpbfPvn1aLWmDUDVlNTzHu0pMDYmt+hwWjuayDYkluDhZeWi63KP66DLMzW06+c0cO6e6ZQg3iLFEpA3GaRi38SdwUNur/bYI7/LBvnf1cP9QB3knpJ3yfMskx66pFM4/QxrwaCGHRmCCnQrK5pBSF/mPWpyfUpjb1YI+rLWa6SQtWFid7IsRJCloWMAs5pVUUHgnFVZAccgpf712s0q/+0UMKEdmlQOn/CGNCHU7bvhNR58OFmYfs8JuNikz6/YAIk0d6dn4WQCUkT61jKlCs49zvK7l6cAEhDy7sD9PCwsCtDAfCJu2GMKASKYjRJjFRVNJYJheq2zLtnnC5Brb0qqL1z/akXIzvJV+aCI/RJxtpVFzzSF/+EPmUR1bMpHE2VL9M5z0FZbKTJkyZcqU80QXJtvYVq3aljaP/ta2xBjsOp8FliXSqgFqSVpDTF04dPDVTbfWAAnWjcDBKau2VrR97K5rDjCFNVbN2V5XfL2QLxfnMcw9yNCCBPfmPqfesrZKqQdO3AVPaYrL7NSCUcW1nKJH/Txqngc0I5K7HeChRWmpSjgFvD3o6sZFihqbYGp68B8c2k/kW9e304gxpDwh3KTl7o/f/XMc9XtNDahtHmdXnjt6fBO7Tqh1vkxMe7UyybFrKTT0OdbNOYRNgixrY+nEq0SLptWa4kQV1cZ7E8pYj2qXIeVXH2DdmQuYmp0seScrPgWFkKBT3INS1ZOc3nPaz88YxrnjflhNVXkeWMHYofkhth9rQmEl6dgouQhKbHWPwzVXUolKqK8lWkYTcazX/Jm1z3QcBg6sJPFGuM0b7psiIbUyKrEl96S7Uhb2w+5NwyFO/V4MiDA1aT1HcyztqumD1hNj8PbSLpGMjjTjhnCL+S/lcywCkVF8S5BJOyl6AzRMuRqZO/tMmTJlyh0SRm9WqTMe5Ymxzu8H3IZ4lVLCVixhi5YpLge3v7wd041aScUZDa+nILziE++8oe4hfPD41nRSyQfazsNsGm11obhi6ZolUnJh9ddiYo/6nrVjQE1eBmzjKR8h8V8cMRMByWG/xXlw+DgCHiIcJsl0AZliBLfpCNYVDNLvq6ZeU2bkBjOHc9QQ0/pqPuqH1LAm2WVLXlXs1xBsGg7EmJU70DccyGvnwVieq02m2nP12fd/I2hjRhpjGj+SiX/Plolpr1YmOXZNJe5W2X2DN0RZnRRZVqwkH2ffYlJsQIg15BicOOsNFHO+BSzaYo3j/cYHmWuVlZxfNMj2BOxkUqfQz6oPpiRZ9DcWzSl9x0rt5TguU3huXsnib0x9lLETYhQAjOAdc5QqnA50xS2CpfCs7IgcUBtHPnHHidk1yJrJsyFcWt8J3nhiX3KYw8TWhlsijGNfwtHeZHfTsX8E3hgADn2yfp9ylvZYtdLCdXwONQ4nxXXgpnWE307aB68J3eQf20j4NIPes2TaVZ4tK6r/wXPLTJkyZcqU80QdY4wTqQE1gvECQdaW9IXSBQGlaWKuqu9MCNA4iZp8RvJ4Ee2y4z4GqJJUC5cNgiy3yXY3rVmlx3qJlmLrr9WOwlISMXWIwGjHIpRhDxtOtP5B7iqEE0HGoZsNcA3hiPu3pCWV2jOjxcLtmUH231Ybkoe865Gki/2NKaO+x1YS0bcRTm1wJsbQDKdeZ1/D/T2PygclyHBHYyJsK97azznH4yp4vUubuPVKZWLaq5VWz/movPGNb8R//+///bnoy5QgzAuYFxQ5My8oWFDVp/u4gh32vEPBglXiCxbssUOxYzl4MI3iaSNO/Hch9uGEc9NnxoLCF1ixQ+Go75YPb0fbpRT2NLI+ssTFdP0BqXE7FBKOBjBXrJXLcb25LM11O9/LpAY9MAhvxYHqhBjq0QMMUFGSqrkuCL6/tGwTBuUwvC67SyXECguRJUdhcIxLGmM5XyawWIirWh6Dg60+jLXRODfRWnIWZrD5P5N2dEyk3TadCySf3hskXvvq1/LHeODA4P7jNZDHLKStfk1cansr+/M89ZgY42wpRJc6pkyZ8idLJqa9M8JMZxwV+7aYcE14bxdw6OBM8foQNiW75hC/hXsLk4dbrMqhPUZIcwpIIVydvtnhyvBMg2tK14UpQybDiHG+Gs9dDrMohDV/JHeoKUQ97kgdIDQV5ri2XNNTGsTHtNHdpLSUQUeetvMfkL4bG6Uko5prqoVOJLIMcw++EagJ6xjE8Uhxsd7BPY1JuN63GoU6urg2npHIshSn2Fb7yAAVTv3r34kmbvR+TDlJJqa9Wjlbc+wP/uAPcP/99+MTPuET8KY3vQlvfOMb8fEf//HPRd9e0NLtVon+90QD0ef7yqprpdOyrknFsPsgs7Ct9kQX957P9bGiS3yYdhioiKpyMKekak5p55CPibGwmFiSm1heBJ8NxWALrEU3k/SVSI0pzd22u1hq7yHx9VydmbYzatxKm0F1zpIffnPCL7MU6wYDAJZy4Jf90IMcFDu0o+VQNVor4abCpNLc52EGaFUCB4FIqmcj2krwG6Z1llD3Qe0vaU/C4x0rQ9+4gGO5MGCU6vD2N53th7jYhzQOKa6pZ/iHh5zQAb6NtI34+qd3OVTQbRow5aisWLCeuTZ0bv4pU6Zcf5mY9rkXXcgcpdQTNV/QAEA2x+sulAsYbHYEjuLUEwVZaYKRNMZOHO+lt7xNJg0jY9+ZcEiDTO4sIGzpJXG+1nwUjCBV057UpYfem6JiR+unfvZqiUyqGIgKiNtTKP1bY4N9A9w9yMGvlwPh48RVR4aFgdONrqpPsUDkbZzjDpZG5jRnJ6Mcl3cEFctY1oeU4r3f+uT7+/SF8XDd9KXr/yDvSecg55hVbsX5nwAP28hxB7DzlEvJxLRXK2ePzKOPPorf+I3fwNd8zdfgR37kR/CKV7wCf+2v/TX8u3/373Dr1q3noo8vSBlqdtlqWl7dilpmhW+g8A6l3MBaLkyLjIPmmK+O7dCulG2FhwcPDjTnjTRm1+aq90PVxBJLWplz7a+oNbatGZY123zaN/6luxaOR8NxHqV4VlACP1POB7A79G8WzlIcHYiTutLuk5wnpHZyiv7CEMOWRkj/cggXAKtqTSFrcqn5ZdLI4n55szu4izONLG2jy5fbSiScalSZVhWDuSTNrFZjrJaD97mNC5ptqUyrDXboQKjLb7RJ83ejJcY4jm2J93OJY8qUKVOmnC0T094B2dIQQzhGcYYjd44hoTjOz4VJoILW0+ex+EN9ieWlPtfOGuQb9l2hRv1YLdYXX5Jm0Rpi1oVW5GuDEPmaiBA31DLHv/UiDzkUGrQUU5vP++3pCnCj/QTbtbcQq83XdfG4abtZhB7SX5yJvUOkTwu/NKL2OWhJUUOmHZFNSMXHathuJVpw+EOH4WO1BDlEjCXXK3oA/bdCTD/hiH08Ft/eU3o+BUARzbfS1Deof7M/E9NOeZ7lUrThn/kzfwYPP/ww/uf//J944okn8Emf9En4si/7MrzsZS/DW9/6VvzyL//yVffzBSfRdNKOqPrdxK0GIHZVC4uFEOMdVtZ0P9rrUjbILlFtb+MUCJSGvOoIr1E6N+dUrhJkXr9P3KpirlO0W5U1IKgjxeJ1XidTgs3GfXQe/VBzE2ZUP13BFJIMYMh5y9xyaGKpE0WALBsTlveBc9hAFzvACiQUVFssEELRz5mftd4mLts3hilczHMAAQAASURBVAO9GWHKh4FZZqy/bcvjjDxb/V7T4mRosr1muxYiMJB7RtzJS8Ulx13qWtstnNNW6X8gwwyQq2nnOcfg9ZxyWIo4Lz3nmCroU6b8yZSJaZ9bcXwWD533NuKYwLwDeCcYKeDXtBDaLqBGE0cn2fK57wu6uAVKdIzLUI/LwwEzsdwFgizjUXTXcqbxNaexVHjU42IXT9NrNOn5OeWFY9+gwPFpuraH26QZ+YecD2gYFj6JrdqipKg56h2MSULr5pGWzsVTHdUnFXTklvXM/Z4phl8OdKzVPLtt2XAu1kXzIJ6b+Oao98TyLcFdeujEIG7K7cjEtFcrt6VT91u/9Vt4//vfj/e///3Y7Xb463/9r+N//a//hU/91E/Fd33Xd11VH1+QskVUddpj7MRYBRI9qWYEGbKvBD8EZBgRFsNt25n42iTUTtQg6/Kg9veW+SDDgCBz4AAjt2KcSgQgAFIYlma7DG2BEwUm5G3XuUzi7AcmA4uD1m6jtEjyNFO+1h+JM8sb8UWDNUy9W0sWVD8AibyqExolDSpkh/zm40rTcEBzrLmX7hhMmqzaYjGd+/Q1EGT7Al5L6o9rgiHfg/U9pnNHDvZk3ZGjlOa6Ccd06/uoqrbcaIyOjPWUk+WY/8WtY8qUKX9yZWLa50pG2lq6wDuIk8VdJ7Q03wLY4rC61sjYbYv8yudTDlj+iMe28vSEnC92FrWIaInAhGcV+vW4NWmSBcKq7Zti4mPQzA/fyV1b0JMSOdYeN9dp7Js0avP67pDJj1V7rUUHsgVzOI1UQ8RxaKdtbytt44h1IZxtrNhHrJdDJEQop9pW4YxT+nUb6cn0s4lrCbD43HSMK7lXj+12eXAc6c+Us2Ri2quVs32O3bp1C//pP/0nfP/3fz9+/Md/HJ/xGZ+Bt7zlLfg7f+fv4MUvfjEA4D/+x/+Iv/f3/h7e+ta3XnmHXxDCQNz22iYbDhMExW94XeFSKV5Q7f6p5mMSeolG61e66pLTuEtj6C5BC5qdKtuz7lA5SuewsyW15YA9AResu0a2K215Uj8NCMSDUP2UKZwIYw0bsjqEeubmWvMx547EcxN3Ut/02ZJOKuKkX1odLfzkl4PDqYZZSDH3GyYTmDquZ7kZc/pvL1dKJ3icpSctMHgYaOK303kzvcaxaJyZH7ESby++CV4stuHaZRzSPS5pnwHg0TPF4Hoz3PRHibsNYX3gUU5FCQdZ2CkjmdteT5kyBZiY9k6Ia2Ll2CqUrlnjwvy7WD4vwzqxUzGfZFreMRtBvWH5GWhjIyokko93xENIAQqkCOTCANWB2yJFtoMMpPct/VHsSXG3SsfxXjbgmzbvADjoffdpnoIQcnquBzkxjYZpsDRD7UQgjnptA/DEaUiSDMkzZixipXGQ9Gqba+UECDWa/X1RmlIbycxR3mVNj+SSYvvOnHCEK0fpp5wPxbX3woO4ph+RSOvKbeHh9Le7lWfK7cjEtFcrZ5Nj9913H0op+NIv/VL89E//NF796ld3eV7/+tfjoz/6o6+gey9Mqd/+jUN+nTvChFsAIBBj3c+Psjnhl0uBgDq69zWs6KQ/r8PFtDoBay1CZCnBNSLAKBBk3KTTgCCTelYsWACstGDhFYusRKkRmU+7GhPDAIfRyD3P9bR5fewEi1DgWJSglHG1ZxG4yGNHNwEdmwz12cYJNDxeX71yUlM7r6tZVIRJMs2kGjZiryG3OGpTFdEokzh10m9+upLmFUI4gJ2RBpi+l6NyTXreORIwU8KOwArXYSw5tjPK2/Z3UHcitgZt+B9om8Zj7upQHTFOEfmUK5XpvHTKlCnAxLR3RBhpwbcKBYxarx3L5cKK5Iw0U14JVRsLrAu+LQ3mTW1+oIeWI+2zdR+BEUHaSCBXka7rbVZkSyBbnGawL7qOOatwWTfN0iY1ucmW7qq9k4h1KfwbOxs3o2pc7NvoxLSBK34b7lpXyCebc213kfO9NPhYsZQ52wcdeqzdaGwe8ozsHEamDQ/jpA/UPRjK1+G+4s70EBgdiTyS+03jMXrwx+69yzumSLtPoEPXoZ9dWY75uY1u2hx3/oTHOaWRiWmvVs4mx77ru74LDz30EO65557NPB/90R+ND3zgA7fVsRe68Gi3yvBDWCxiNC2qCnP8BVNgwXISioq2tMgiOeZprgxea1xkouzPshMlF4CWumJECwgF4AVE+bygYOUFC9VdJxfioBFHINySXSy9dZ/iI9lFg/RIhUXSTK/RAw6uAMaGUCe5OK0IqaIrQ+kAtuNwJG6Ulu42kGWSFIGg+SkrDKwy/5ivL7jGmPjGQri2yTqYTSZNs9HR6vCP7kXHzq6bMPq42u8ifXRCTPuTtK1G5JYOWOhXu6PlVtxmOD0Obq5DIGq5tUWHcUO44u0c4MeMOJxyskwgMWXKFGBi2jshUfO/ScjBwBA5B6X4TpCdsEmG+kjsAESLTGmbflbcmGOlXQ55TuNbdLW0qVahttbEEWOTYGCAqARSCRXb2M6UHHBoHCjH8InYYiTtsZ41GZBg4drNEfO1kncRRyuppiSaPonYzTgkDCdWnDobjBsy1Bo9qap/ONYU6yo6dt5K20yXux3Ex3t3rTGPt3M4Wkxfw5mytDQO9ZDX1fany9v1qUlvZKix14zLmBTjwXjlBzz+y6MhID4Ad6dsyMS0Vytnk2Nf9mVf9lz0Y0qS6tdLZfib3RBjeSo8MBNEbTJasLJbHvv2z2MTS0CppyLT0wJEXTBaUFjPEKKr1rcAKGIiWfQaBcSVTltlYl8ENDDrvpQMph32zAD2uAsMJjWHJBQ4UVd75eaWvJGuppSeHvwkxJm5C3O3CjM2cdyQUd5jE7SdaTyxtY9YCC+KfqtEu2tkLokQRwfSDse18dKhNq41n0RbV5OvNPlHB5q6/FRlRBwxOkIsEVltnPahHXO7zmkc6x+0PRLqVtUH5SZiuDLZ0w572p1Z5pw/9ilTpnw4yMS0d0Y6zbFA8MRv7L5gDibSJfIsRNIG10XfCNbsQ32rgbi8qFgX1Z9sLJJwYd8xbZWkc3FB2e1BCLp8DL0HcIIfrcKRpbWLuNbPnp/LkKEDLc2Vg6r8LXAYevTPw8mOmhZJtUC4RYIs9MUJRCeGzGcVAk5qi3ImhoATzpv3FDXh2rvFILXBf4rVERbXrV/B6JUzsZeIMAxIL5VyAP+P7jOkpf400tUZ+2Ok6aD+Y3FDOYCnj5adMpKJaa9WzibHptwZif4ZInCoSjROjI0mMIq/rjaDNL9e5ithJ475GES6309YCUKrMUa2LbJ7UShGlBGq2rSqT+uZxYyS2f2NkWiSqXlnra+uDClwqOQVg7BDAXALwF1gR0Whhw4wXHvs1PQKXSB3oR7V8vins0wYQz8BEqdzisOOA3F60CBd4wjmqNM6zIHUCjtBcpumj1vzMZwsi37H1Fm/pYV0Jd1ie6Ef3WTc3nSXxoM0MaFkQP1+KUGWNMbg5+7BBCAwis+Is/E3lgi2OHYbk3kMH/UrtpkUVmG3RQF3X/hIwSlTpkyZMuV5kqHPsUCitPRLdnwR45tpXIBvDhOKaGsBGcv5gm8+L+CANfMxFgFlAsaqhpW2qcSPgAfrtOwOp/M4LzYyO80nI6IaY47DlRTqtcviqERKEIjQoDEz7YhCkq5q/3P9mSyLdbVpPUmnHGg0Eawmlo3WUNNpw6twYi0KbR2EoYnkoaOvl+wToyOvUphynJYhxWsIWlv1K0kxZfftEI4RSdaSZS3RdbBM0/fYLxPO+bxvWSswvjadFt2gD2Np378pU66XTHLsmkrUHAMin6A/3R7fhjnOLu1yCsdf1hzHTOKw3+kj9zGmYKKaThZawmTanAm9fzExmyRiFCwClVhINdfhWqS9un9m1RJjFm0xZhDtsBcgslBPejmsim5UOYQjhejXye+YYhsg7mcgDvIbANCuLAZJE/Aoz4GJZTNOnl1ccepIq5EmWBml5bixRldoe8TqYatczMsynttpBpSN2OMEjpwY8zNHJnE0drHNFD94GIyBNlkoU/r8HlaCbVxvlzJ8FyLEHAtDnluT7RDpNmUsBXS2Snk58nymTJkyZcpAWLW6ROQLfXvqCnltbh1M8MTmdL9+8Av6E9wIMEryReaf5WMSqe137oqBQK2LhQiJhBhFn2f5kB4J1pYlYcXivGJHoY/s8FIR7aj/OjxBqWowlmPXIk7x8DjNxj7QZpz9j9WogQeyUBYxjdHkdIwWd5vcIq/8WZxw3kjjJk9H/pxQtz7/rTIG1YqbgMor27XrDvndTcuI7EplRvFNnuG9tf0Nkk0oG1KsKU8jbJ3yTGB6J2Vi2quVSY5dU2nNKus807/47TRXw+2XfEi11ZowtVrcDqpUHbXIgJYoq+ts5lR/sEslNL9Ub4SYrK5V7TFZmaNK9iwKZFiMJomwhtU13UVohaqO7lF3KtIc7pnCw9r7Pg0hTYGATngGbzhAC25V70fwZ/vYWn1JVbZpw8k5kEKmZYWkwUXsJJN1wDTG1LE+cj1F09g00DxNHMc22mSWT/vWEl8YxLFkDnGqtdb1mXtfY07wYaDRxVb1cJJOaWFyR8gb88R7aEXGvdMWG2Xt2hlcn6DibNmmk/7bkj0W7M8EEufmnzJlypQpEYfJtU11/Ty2pTWm9bQlIrYys0OJrBhO8eOYaFENs83FqdCo+uAyzSLFYmDPw0GzKinIaIAEcwuqJoB5EezL2EWWw+wlA5XEbJi33UjA29BtrQb3290cbIwUJzsJ5svHKS2F22slKOUW8pMHE/cEmVmyKFl3RUca/zwGMc9IwwxHwkrlWVz4xGr9jhmRxbG8DesGzj/9PPQ7hibMOX1zwV7+ODe/V7ghxg7km3LnZGLaq5VJjl1TiSro7ny/ynC+TbI0ieFsX9c68cY4wLXIFtEii85EBeKwtjLelZJKQaGdkGs7EJRoYzAVLLLyVP1CiH8xEvVsLqYRpurwDFF5ZxZH/XWCXXEBMLCIs35VhNfJGVDF+G3SrNZdp7lFgUJYzDLNsYQ9gjnloUlrKy3KIM2q5jx3enwdA0pEkp+pq8ArokHcWNtLO7PVCQzyHuk8xm0bMabEVIxHCAeCzPOyt43cDm/EIwbb+MAZp3gB2SZbJpRNd2wM0cQ3ReOuTsek/rlywMMThZwrK3aBZD+1zGjRYcqUKVOmHBKG+9FlyNR16vpOmIM74sw0uWQRl6k67Ifu7OhplVQqIGpmWlatKB77GIPBYifEoKaPwSZBcKK7um98Z2GR6koTK1iUFxQCwKuReXnAmjGRvij5FDXNNr4WLL/fmi8OZ6JrvDNlrv1wWhzAzjy0zcuAOrbvHd5vnNvxODXvVtkmavP1ZKC+X35N4WwklOxG2ZFiHMqgId0isRaaTGHO59i+xifsG/Nu3aOVPawtpnm20nK+vs0pz51MTHu1MsmxayqFfb0maozFqc5+BDs5NFM4WLAZNeYJKzhKNC2IppYFTIv8SVHV8iISQoyqZphoicmUb9Ojep1Q3w5A689MnfnXSXex8lpWSLKw0rOgmlmC97iL1krsSd8ijMo+xtr0bfV+G604mbE+icDxbB3cxvEmF8WxnfaRWZz0fj/yEQbXvlItMXXMH/yGVS0wtvyuQRb9isE0xjqfY6Y1xq6keCrphhynZpRq/sgxTcKuMQYLW1XW/vgcCbY+nbvXf6whlh9UMtVM+QbRJxBjFncGycUQoH7ArHfKtuyxw/5MILGfQGLKlClTLiHZgxcjz1tjYkaj4iTdUBbU4GCDtk50ESAKWNW0k816Qcu4U5DWNkAJp0wAqQVFnHjjqppjX7a0Irutj/Sb9Eb0emcbWRm1JBpk7jIEQv45ZSj04AE0m74eHA2z+2Vrd63MBFZPfJHlbdJS3mxmSV3eeoo6LKNROkicRWnSTCuMm/DWmTeWKU9oyx9/riORV2jyttcx/jJnzmRdhJXtrpXel+Ok2KXTLiMT054tE9NerUxy7JoK8yKTc0+MRYWR8epG+AVUFkFLdssK4ReUdAKMcai+wlBAxNgBdUdKLFhNb4yxYAFxAZP4EmPREkNdzYNpiTUaYyDxD6GGlzVtB5bdJRfzQ6Zq54tBE217h0LALXZn/QpLst8xHcVIlGXSzH2MkSxKqoo4CUci99NMMkcnNAtTTtvKL4FIqNSeE5Yi1OQqz7I1cZRHiUiaSbqTYhJnaapxpumc01nLxrhcPrWl75hk60gzwMw3TQsMnofb/DaGMiLWRhv2dvX58CDegQp79EYdGsclGuS2zyo9tmEeHsSl+nGeVOBe+j5NOSpTBX3KlClT7owwA6WQANaMWhsENigdiSfkM7M4qGe0uI7YsaDhACPJipVTDEuCW33TqUAUmbWF90ibMwwZuSdtS7BERbUxn+DQ4OaElEBUKwheUKjUz10KlaZ7BFxzDnaTtbdLYJPiuOWoTKZxCgUKrZqfcnxK0XyyqTvxX4fMLPtimRj1M4c8Q7lKGMSZNEM6u9ZYojcZpi02+j5Iml6c29A48zsm3wmHtMNOjW9JRcsfsHi3IG/jkMFrn28AbiMuv4SQ8sRTzpKJaa9WJjl2TWXlBVsaY0B70UogENIvYRsnZ51gOfzCcjhDVuEKgGUPhmp/KU1VP9AXEEgcX9Vpvq6YqTGj7kqpcGJLu4wALFT5FgKwkoKWeqzwH3QixmqqRTvcsjrV4amaTcJ6WnslIAkcwkFsIo+EmYADQuJrbud3fMtqURtfIIcArUVJMCCbVjY+woyQioQY3HQxm1fKfZUmrfFJxu1OmfGIk23zum2aUQZCLe1AGeNOSLc4G1QfP8TgID5miHP9sA59IdGWz1V1sU33+nw6UOcLM8B//MeXKjtlypQpU6Y813KLGUwVAUbJ+v3HJteBkJhPJoSsJFQFagQ1tRSzSzCIdmCu6M94HAKqGxDBmxS0wxi2S2R/eAd7U8pIoMQPUaXjZBEcRXqyZFCp4eSsP2teqbaYF8t0YzNgqWyfn4LZXMjLOZ+lM/fd5RCOTUtExvpuUTLscGjSxpI3zgeOg+9QK81tbmL8DkfmnStjvy0HI/elB/7D82WJsRjfat0Ru4uc8T1xk7+93xGWHvR/IAe/mQRrT35syvMpH1a04X//7/8df+Nv/A287GUvAxHh0Ucffb679JxIAYPKRdUeE5LsWHj7oHyNQRpCHrRxoopeFqAQCl+g4AKFL8DYoWBB4V0KF96hYIfCSx/mHdYYxmJpq+VbUFimTWlf42M/i8THeyu8w54vpA0dUaffACBSczGO4TxPPUf/ZPWfqjUWDjTnURw8bPdkfdI07SmwNGftAAHAyplYMtPHwbHWg1cGlwJe2U0kleyxG2Q7V76MU5ynaXxgkzi2i0HY47jUe9C2vS3YJgFchCsK6dymtwdvxBegWJhzXva40tWX85Yi74LWs4rvOx0TvT+Ox+heQttXdOx/+4O383PzgpQi/hnOOcqZKusq733ve/GKV7wC99xzD17zmtfgp3/6pw/m/9Ef/VF88id/Mu655x58+qd/On7sx34spTMz3v72t+O+++7Di170Itx///345V/+ZUv/tV/7NXzlV34lXvnKV+JFL3oRPvETPxHveMc7cPPmzUv1f8qUKVcvLxQ8CwD/3/6PM548cNS58ni+rlzArICcA+ZCSCtFMC2rs5CAf9HiNMXN1KQvniblgaaMHRTmbLK+ObgM1wj5pB9F8K5K4h0aEmLMTUQdJ23PwxzS83K14GXKS9nmGIUIQDMulrfpw4jtEHIt8TCjfKcyJe3NB1x9NUcgwMi7lTTGFK9vheFxSWsMnk6cj2H+M8No49MCd305KR2jPmynn3PgyMHrrRMf+BSVO4lpXwjyYUWOPfPMM/jMz/xMvPe9732+u/KcygLCWnaAEFI+kYYwcvzwQAUEB/Ns5S9U2193wHqBZb0A8Q68LljLgpUXrIWEhPK4wnIubXhn6UagdeElhddRupFpQsp1cQuYd1j5QkgyX8uJAECnukhQ8Wg6JC+TvAicOFm3v/ttYlw50yNOwoTahQUAFdUU00lGJrTiq0BUmrPF1zhW0kwmQy7hkOtE9DTpGOTnwgH45XAk17TtrPHVh7WCUVwK20x65lHymUsbX1Ieu9d4f9oNJdP0+Q4eOKd72erzoOyxQ57T7mWvOu1lnGKy592ljnPlR37kR/Dwww/jHe94B37u534On/mZn4kHHngAv/3bvz3M/5M/+ZP40i/9UnzlV34lfv7nfx4PPvggHnzwQfziL/6i5fn2b/92fM/3fA8eeeQRPPHEE/jIj/xIPPDAA/jQhz4EAPilX/ollFLwr/7Vv8L//t//G9/1Xd+FRx55BN/0Td90ucGaMmXKlcsLBc8CwCdevBhcnLByzOUE0ihu68CIfBqeAyGmi8FlAfGuYl1coJRdIqIiCaYLtQWjdMgCLVmeYmRdTEOd8iOpBL+u5ZSnIF8YhkIDMbHkBasRgUBc9I198rojXPCF3ioRjWoOjeYmR/DNGtPsvnI9YK6YlZxAaii1cEajkRSwEJpz7HJ7G+3tnHoeHHXMucvPo/IFoJKJsaiNlUwsQ/+OO6s/miHX2YZDH1vSrX4z1GeQdp9f5Yh+fLuxkXfuMnj1FDy7MmhlLLu7Trr/KS53CtO+UOTDihz7a3/tr+Hbvu3b8Lf+1t96vrvyHAthKQuo7ICyA687ARbNgUHcqQcqicQczkWO9QJYL0DrBZayw67sQGUBsYCKsgMX1QiTs2qNSXjF0oSXFF6bcExn7KRPTorpvToptgMjEmJ+lHB/K19gX5bAP4wBCgNQQ/duDpRJcJOniecmziRNBHXlZWHYQeFc03xlxuLXTLIwkLXERppjhYG1WBy16UaUCYGWJisPH1zxif2IAxQ0x1i12IR4SiRciONSB5otrQ2XnqhjuFbY5pE1uUbaYVaPXBfVGGMIWQyAqddYY4BXdNpkRjYasGjauuzREJInM7VTTKp/ht2Zx/nT5Xd+53fiq77qq/CmN70Jn/qpn4pHHnkEH/ERH4Hv+77vG+b/7u/+brzhDW/A133d1+FTPuVT8K3f+q34rM/6LLznPe8BUN/Zd7/73Xjb296GL/qiL8JnfMZn4Ad/8Afxm7/5m6Z58oY3vAHf//3fj7/6V/8q/sJf+Av4m3/zb+If/aN/hP/wH/7DpcdrypQpVysvHDwLmQMXoOzqYmkhcMmaX+VEzbLx4WXrHF3PqiFWVgKEEONAMNU5VHFj1grzPdZHWmSRlBtriyWyj5Y+Dym5tQAUlkZJ7QY0XlmmBdVZP0Vo5jCMW+y6BAzqi62awVGDLowD3QJyXIwP+Zzg5PB8fTE3AZ4t0Mi6CEzWnPXpVO2xGMd9Undwcw5HWy7VqX2Va8PD4ebTV0W4b9IHw007ccy0jYCzT9XAGobDPSKcwb7Ajo06jCjTbwYEtzby7ZI/hFqAe+ZRCrAWWdCP78yUc+ROYdo7bQkBAK94xSvqLsPh+Gf/7J+d3fdz5MOKHHshSSWiKhm18A4oF+C1apMls8qjBBkN8lA+l6XWLRpiS9nJsVRSrCzVnNCuK0FWVjVfpE6ry4mr3UZ4SeRX1hCT1TQ7MoFWQFghWmtS34olXNe0GrfDigvcYl0djFO0k2F1TlBVcaQzCFgo6XKdfgTV+QB5KgySWSzDETcAjWrbKJGdCwdI5hJyMisipzJIS77CWCbDqAXW2wLaClOrgbUVV+qkV00QA6HFsB0zW5LImgvkEyKxFY8uD9CZNCaNLcnHUetN2rVxCPkasq8jvRoCLJlRrnKM7m+TGDuhDSUHB+WnnCfngwjfCejpp59Ox7PPPjts4+bNm/jZn/1Z3H///Ra3LAvuv/9+PP7448Myjz/+eMoPAA888IDl/8AHPoAnn3wy5XnJS16C17zmNZt1AsAf/MEf4GM/9mNPG5wpU6ZMuUKJWldGktmCbCbIOpIskU/ZhC+SNop1XUNMCDEsIOwEi1VcrWGIKaSGi9aBQftb163WWXONFK9z9kaclVPoMYjThWLFr+rBnICe6oFdG9oMmmfQheFRPoSsm0KCZUVTTCqIDuuVAnMqjJy4CS16KNhwkN/RwbgYT4G4svM2Ru9cnAhSJ9RxTQSe1hkIpcuaOyaibhAHBGx3wpnC9dD/mFmeKD7HNpaXdBI8axpl6ftDnulgLE46StUS6xblJ569lNwOpj1Vng9LCJV3vvOd+K3f+i07/sE/+AfnD9IZ8ifaIf+zzz6bPlyefvrp57E3Z0qpvKWuzdg6DQGqIM2SoZ+/wi8ryYw6/LXV/XHIpgcgUkY6dTKw6GbPLHlYSANgXeqOk4vsVll3A2IQiTN+JpDsXJnC0HUzDdfdLxdiFJY0Um6DkwtT7UmK03JUta1Y/qt5dthbXgETOobhTvMwkk0q3Axj+hGPBdOPvK0LbphMNiCA/Tl73uqEn4o+Tid8SEgZ37UynMsgTomwdDYUltKcDFOVcdWgGkxkTF4PvD62sWPL6yaV4V2M+TU+xiHGbYVDXXaO5UM9oZupzxq0BEpFXOr7nYQHFyVEtX+kbZ0bgGDU9pTbl/USwGCV/C9/+ctT/Dve8Q58y7d8S5f/d3/3d7GuK1760pem+Je+9KX4pV/6pWEbTz755DD/k08+aekat5WnlV/5lV/Bv/yX/xL/4l/8i407mzJlynWXD2s8a6gmxLBjWQVXuksdx3nO5mOdk1lCiht1PhYcS0vOwxVcRbf1dZdnGHnABIBlSynBrtYFhwKGASNBEzvK2FpCVZSqdxKQKwuEQqkByo77a5yMH6MyFhYGdrwCxLGbm6KIl+zLol4xDxBwgFQ2FIpRyTWJWlaDKJdvwKIdpBVKFh/PARiicXROp+Y6losYL+O6aPqYzjwgnLie9QlZnzm/D5Tq8H6ltkKe+D1hY7zVB2zHD9MZjbZX3wdmzu8Oh3tpxsau4zNp76mNS2nc5B9kPPSspwzldjDtqRItIQDgkUcewX/5L/8F3/d934dv+IZv6PJHSwgA+NZv/Va8//3vx3ve8x488sgjaC0hAOAHf/AH8dKXvhSPPvoovuRLvsTq+qiP+ijce++9Z/X3duRPtObYu971LrzkJS+xo/2ouc5CUWur6GpXDS9lByoXAIsmWaOePtQe03yi9UXlhmiHXZg2WDwv8Tq0rdpjaMwsS1HTSl3V6sOqXWYaYxbe5fikAeaO960eRO0y0VJDrJ+CltkS8uywxw3ssbNFEKeoquj8atrkEe5wc27jwqQTgVGSCPTaCawhaSxdHenLQab15e1ZHjOvxOAs4dXPVADSs6ws+bnm42iyyTATxuiXy5gtmYDNv5iWkQnYyKegaQWrD8g+y6TKxkQyOeXXvCMzykaTrjWtbMECS556TakPCH06foSV3ti/DY2y0VEKi0nnaceUOye//uu/jj/4gz+w4xu/8Ruf7y5tym/8xm/gDW94Ax566CF81Vd91fPdnSlTplxSPpzxrM6p7UEclg65mlz2ePaAhpblX1B1mMSXmGmFSbxi2E5rbEn5WeIua2apeLL3h5aM7gZxQIcY2eOS1UOjvebO+nXJFXbOlIfiVfbqm0eU68h90sVq0iqGsEO8mx3CJO1CZmjfxqclWLgJY5COQb0xTDFSyb0RkTk+lBg7xaG85kUoF+OHGmXw600zSs2DXAbABjEmrlQMXCKATA7aY2gsShxr2z0ZRpfr1ePGJp/hm0jcu1Bx80kSNy9b9znlesnzbQnxz/7ZP8Of/tN/Gn/5L/9l/PN//s+x3++v6taG8idac+wbv/Eb8fDDD9v1008//WEDKCpoCNL+YBCDbMKsv4Z69qUHVF9J0EtKU6euHnm8rnHk6RXLUn/c9Fec8y8ZidpTYQKWyqrUrbClfi61Zqo/ioxSzRQ5aozVVb0FVRtMtclYbqHTBCOWuEZ7DIxCLKs77GWk7Vp/1SID7bHQar/7hAWFfWtvVbrbOnxiztBmpCGWNMFAg7gmLPfsTviDPT63HRMNsk4rTM+jOCmndW/kIb02bTKP46YvujrlxBT78JhmGNsrBGYbx03tMmSNslQXPMzwutPfSwBp3MaFvBzLgmMQg6BUcyixCXCTpoBG/dxxqQ/dXqxja8CjtqacKnu+wMLnTX97rqqAL37xi/HiF7/4aP6P+7iPw263w1NPPZXin3rqqc0VsHvvvfdgfj0/9dRTuO+++1KeV7/61ancb/7mb+L1r389Xve61+F7v/d7j/Z3ypQp11c+nPFsBaj9WnwlUsimO7I4wZaI0xtVLCP4iYmqFQBcC8n8XSmmDVpjFk9FG++6CNZcta+FGbQ4kWL5EPJSIDYs2XTasCNkQkvS+gPVD5nkLbQIQ0FYLH4BU/H6aBGoRgBWEIprbnk3fTzijcrI0QHNHaJA7wkQI8Hf8F4nzEw2JpkCjHkpQBzTxIvjR/LsBs/nsDQP6UCZ+K2TyrQ1Gb5tiCkOxFSbz8qSj+Wxrnd3ou9t6GHArPaqb8XHb4KAoWu+Jk7/5NqbH1wn8irA2/b+KLbR1XMAO2/FTTkot4NpWy3ku+++G3fffXeKez4tIf7hP/yH+KzP+ix87Md+LH7yJ38S3/iN34jf+q3fwnd+53eeeqtny59ocmz0gD8shAGURt2xo9N1ysvX9V1nwRucwQN0wqp5dALTeE930gxUYN/tVD/mmfIUzzpxygRezSwLFmYwFRAWMalkLHJdw25KWQmuqi5ewFgRJ0zGGiZYvYfV+luPVQgwnWBXmanMmaTVyyDeYZV+3xAVehvRsDJGpkoWh9mJlLS6lCZFGKDKKz5sE6jWZ8CumXjre6AUIVsdFTcKISYEE0nesTmlntm1x5q0TXItlKM2jb289ivuRlknXPbhaomxMDHruEYiDG16JLWaeApt+Z+E59fHluI1zeruTWtb3Diqfpho1wGdDdKNYAsfCOfCqIkjzpc9dljOVCk/V2X9rrvuwmd/9mfjsccew4MPPggAKKXgsccew5vf/OZhmde+9rV47LHH8Ja3vMXi3v/+9+O1r30tAOCVr3wl7r33Xjz22GNGhj399NN44okn8DVf8zVW5jd+4zfw+te/Hp/92Z+N7//+78ey/IlWEp8y5U+8fNjiWUDm6XZeq5jR0g2BUfWjJYunbhYZCAMBHPpR3k61KlINPFlKyClxMG13FD2XAqaCJeRLU3R7rW2jLvdWmKJLuLqMG69DHJM56q8EkqBLM61ECFNgNCr5WIgBVoJMHZDUTsZxiAxf7r70hoJem4OyNMAdldTl82+EmI0wGkjNow8lNHII4GymxwrGYsPb4kJ5V1utsoMVHYhzsirUxSeQa4MzgMG3wyBP2hwLHg75N4+t+zpwTW36lubgkbGacnm5HUx7qquQ50viotBnfMZn4K677sLf//t/H+9617uesznxw4oc+8M//EP8yq/8il1/4AMfwC/8wi/gYz/2Y/Hn//yffx57dvVC4nMsTVzyq5imlGZ1TckwBRN1svOzk2BeX0uQeVjQwhJ+OcME2BFk2rOyoIi9HoHCKlMFBIuVcY0xguzeSJUwqKkk6a4XVqju5Og6ZwSixeJMi4zEvDTFVeKmWK3VvHIPYMEtgAINpUDJhsTHRjcST8RYOEZprnA/0BLDhhaZElbBxDGrRHNQg1ayDGFC1LzI51PyRGedvJEWNNOq2WCRV0TWTMNcPCbGMp5KcRjEHcqveCqUjectrTEu/lwNSIbJOs3b3Fy3s/oZYKJrYwtMnCITXJwte93o5Mwy58rDDz+MN77xjficz/kcfO7nfi7e/e5345lnnjGfDV/+5V+Oj//4j8e73vUuAMDXfu3X4vM///PxHd/xHfjCL/xC/PAP/zB+5md+xjS/iAhvectb8G3f9m141atehVe+8pX45m/+ZrzsZS8zAu43fuM38AVf8AX4hE/4BPyLf/Ev8Du/8zvWnzvps2HKlCnb8kLCs0bwdHFsQUW1rBNtXDAyEijO0UKkKObluKjLoX4FckFrzLqgedhXHgNTwMRmxVGgBJkTd7qpkvWnqYciCWbaX+xhUvNIhLDGw8tukWoUyDciMHZg6esOxSzbIgmThhMD3Kljw05kxbz+TREwbqqPchoE+6ZHyKlMj9vkuyBoXg3x0wamOigjQq3l61gUDArZ65DGhb2ORFCFeq3vMZ6bI8RxyJde9w1Me1BbzP6GEDA8Gm2uJk9p7hNN/eG6HbYe60awzGhY51xo4tcrkdvBtL/+67+erCFGhNPzbQkR5TWveQ32+z1+7dd+DX/pL/2lA3d4efmwIsd+5md+Bq9//evtWtnEN77xjfiBH/iB56lXz43ohJz5mRoy6yu4aWXcqJlRxGGm5AnnSI7RgBzzvASI01IKPkFZF3ZIOhINxdnDRIRCBCx1kq6mkISFNVzJMA/X6dw0uxA0veyocQ4PfGJWs0ktW1i7p/W7OSYxnCgTLbI9GHUz3AKGEHCmNVbHQ71KQMabwpjlFaawwYHitBCvcQlwKK7SsPrsUu0wO8MW1moRIRoJbhp5Se2xLs/Wuc2zVr9kUWOscMlzn7y7LTmWiTL2M9o42ITbEWz611Big/Hcx0cts3a+7ub5JuDpAdx3mWPc4Tzc9leqPlVuh1d7ocoeyyVW2c7XvvriL/5i/M7v/A7e/va348knn8SrX/1qvO997zM18g9+8INJq+t1r3sdfuiHfghve9vb8E3f9E141atehUcffRSf9mmfZnm+/uu/Hs888wy++qu/Gr//+7+Pz/u8z8P73vc+3HPPPQCqptmv/Mqv4Fd+5Vfw5/7cn0v9mf7ppky5HvJCwrPm5ytGKYoJILfV7HJMVALOdZNFI1EEVOlSseLiiH9r3bKxlLn44NROgGpOVBBQnfWLmSWp1QW8n9ZG65DftwHIRJfEGRG2kYcRSDN2N05azuKUVGMLF1qq6xFxHZJJL0442wGZi5uoGkDL1yE/h/Hq8/gRYU3qUyPJzDKGTz1Yxp7bOGzG9bgxf1XV1yYTXjpEpgWW6ouWI5TzHC2r8Wz9iI/nqBnlocew9Zhi/Ch8Rlpn6FS0o4Nyx9qZcpLcDqY9xVXI82kJ0cov/MIvYFkW/Nk/+2dPvNPz5cOKHPuCL/iCFw64L82HmGEIDoABtsKQVZV3YBQpw1K8JcuAkXaZ5q0Bcq2xQHz5TOJpRNyZW+oW1mpmSVxXzAg5vLD6j1ix1FQ1xIRpkEVfDKL5tWhLVB2S9tpiXq5Qdf66hDorWaflKzEH7KuvL8gW1Sw+wnSig05s3E1o0YxS45YwQWp9tBG3aBwDy1pcW6w7RvHy9FV77BjJZXmO5D2Sh1cGVqmy+GvC0FeD/TWBJngf2DKGfh0LI8cpaZjyIrTpr3bAeAyktz4GBpc8zLJNTJ0Rz6Evsd7Wd8iWvEB+Ea9UVr7A/kz/DCuvl2rrzW9+8yZ4+Imf+Iku7qGHHsJDDz20WR8R4Z3vfCfe+c53DtO/4iu+Al/xFV9xma5OmTLlDskLCs8CGGqO1YTwL/ncF4aGmUCL5uNm5vZzj2O1ooo1EwPWtGGM2JAEEuKLGMwFjGhmqcwQN5UX5F0qW9PKJo7Fn5gRXUdMMK0cNQRZrC+AMR2Xg7iiv28jcZqn5t8OlWjUcPzGsLMu7Cs2Rot48nNQkjQho4PPbiP9jDKRhFOLDs2UdpxEqMeGiXyMDJeO8p0X1yPDMTF23IySwyu6nUcd7qc2236MfrJiXNIaC6IaC2jyDuUF9Lt4RXInMO3zYQnx+OOP44knnsDrX/96fNRHfRQef/xxvPWtb8Xf/bt/Fx/zMR9zVv/PkQ8rcuyFJDQgx6qwXXNpibGQjkpsRfKrI8r4AHkWtMaGMxmHeMrzEMkKFqlqu5hZLrQG0orF+X2dkXTy1OZW7YukrdZP2L2sDWRYQ1qvZcYCV3wCd9Cj/y0gugsrVuywYifO+ZOWF2ewQDEuDlWI88fnWmbpkdqY64TKRuwY2SiYrZ6jNpnGC5xYZWKKpNbIQX+Th9oyVnYQJ2fWnSylT5Ugq89p7GDfJ+IUljEEKy5ttMK6ehDiBuf4jjbn+DFy0IxyFBf6m6JGE/yJc75rsPUFTibIXkgfWFcke96B7oBZ5ZQpU6ZMqWSNi+AEsn/qNdcPpnYiJhBQdMEXA2zluWkjDFoMRJnWmBwklgSxTu0WWYTWmc0sK36RftmtKJmm2l2+uFvDCGGNx4Dccuf7hQjgxUE5U70nAODVO2o3XrG2Li5XTCr3m85+f2Mx4Gnj1WXuyvd5w1M+QIx5dfV2GAcd8x8kvPi8MgVQX2Ox61mTS7JTCEO+o+L7ov+GOMP9XVkY9k/fEdKnRE5yG+b0zYA2jI34iBnb/M3QnXtNhQ/kixtPHahvytlyJzDt82EJcffdd+OHf/iH8S3f8i149tln8cpXvhJvfetbkx+y50ImOXYtRSZBvxJFF1Mmtx/NdjeThgkQMLGlITaKU7CwmNYYR80wObdmlEllCn08UZ2ksVuxEAMsHsUElCyiL2ZElZo9whThwUDeyZJcW3cJ6QQW32VKsuXxYdQdhHQM6kREIKxYUbACuIUFwIqF11ofi0YXCAuzbj4etMxE80vj4TtSqi+HcRyHsPRlZZ+w1N+YEGJ+1qHlnEYtQRbDx858gsllPfPezShZHPo7OUZJk8vC+h43RBikapvIw+trZ+QynsbDc/enAG8LMbmZlLkLDDBfEzfkprYm+xEoOAAMrO5DaHICiylTpkyZcl2FhcwxSbQVFDO0GmO5DsWkwZTSQgxnPUZn1RoLwC9mORDXatJURbGK1gpXFyYjRq5Wc6ZD/hTH6dp23GTAHPIbbtf/WLCs5i+VoAOBaam+yDrAIiSZuByJT2f7TPBvh4Cju6NaXVTrC9idODbjlI+gxJHea8yLHD417tR05Oc8JNGwEaf9loMCDq3xZJhd6zimWWbvXZMvEWOdGSWHenh8r6Mjpm9oj22OwaG07jp8tG3ln3Kt5U5bQnzWZ30WfuqnfupSfb0dmeTYNZWoOWbzbVilqpctwPASFQe4aWVLhNlqh06oNtnVJQwGVxKkNaPUlbeBGaWTaAN4wgBoAa/VPxgvQhQxm5NUIsaKBbrCZRphRCCujveJZVdKVEKIxFyy9Tm2GtJa7P5ty209oyXPGAsWrKik1QrgFi0Ar1hoP1g16jXB6sQV4hk+1nFiC3FAGGLR9OJSV2A4kF+uOeakWOuLDKxltT5Bd3Ydz5zPh9LCWYkx1muZTPUAsv8xD4uuloabSZwRwnHCl+i2TCTXIpnoj5NTWaeD7XHn676oX3eBGKS+wIkNKZl4VA5km9jifFlxgeXM6W8dUO1TpkyZMuUEaTSAuNEKSqSJ58phm2dlbg+Ytk6RG/EkmEIIoFhru6OldTV8w7PgYjUfdA9hap8QnPUHlqFuLkXNgRPilFRbrTa2fvSsDacYQZ9xp8uA/IuEd1IiEV/hHqlJz2QRD46RsP9LAf8SoAxMXAAkSws1EINOITWjnJNeG0nfVUrS1cOJLRsrueX286ijfwV7qu8wIJexNmPcRv3x28GsPUbaYIN4OiHPsB4bn2b8ttLi4vRWWc03dNJ/oMyUgzIx7dXKJMeuqQzNKsMcNDalbK/puGllCJu5oTq+0mvOWmOJEIOQM5qOJp1zOdMOKwVMK0AFxIukaIsVbqjT/Hpdh8Ac6QcirJpULs4cxfECKtnHAmlCnWpKma92WJjEV1jdQKCuatVVuLt4dRV6c9jJnS8FneCWURgbYYZpjblGGJoJTI64U2XwQcZCLFZsNjrzWT7FkinmKqaUBZkcY1hcJK2MyMKI1IrxrK+ZvG84HK+veLj2OrUffbi+AfnPhbtA89c0wAkawW3EIM+h60MmlUOJgKKtZ8pZMs0qp0yZMuUOycAhf5z3tvFsw3KUkjaxHCzDjs/RlEvZsIGpIAdyCIpjA67UGrVa1yKrZpbZebyYVcKpNEfH8TrGCewhdfoQSC4hxYJPeD+kU11dzZFdzBMExGWCLJ2bntIG1gUSHjfKjzmZmh6COsO1P1uIxtgxf4w7kj4kyaQR6kLefqdFNeivhdn76/Hh34BrLb7N3zw03f1dr33HSQ75fGxpFB9xptXTtBVltHNld199ubQZ7EH827HPU25TJqa9Wpnk2HWVkVklA76HpWVE/9MdGAT5ZW+1xzJJloEEL5y1xkwlKVy3aaP4QRrb7FVXxtZd9T9GKFg5TsCNTzFiEC91HS0u4RhoWH2w4sDFbHrv1Eye8GNFwQ7AyiyGla5Ftpe2iNdqBhp+3/PYxuY5TzIa5hCvk1opNsx6m9mvmJ/jk2fEtDqbcwkq10NfYgfS7Bzy2Y6UGGiNcSDHECZ1vzdu42VccnycvI+QaFErDKG81UNqq2lVxkA3F3Mfx01G7hJj3AB5HQQHqGN4lihSa/7eJ7A4W/a8XAJInL9b5ZQpU6ZMISTNMYJrA50hzDtxzB8m/gEhRnFSJIC5Lp66rzFJkik1kjAc0iIuIKsrXANhN8sFrGr7BDdnbE0rux0qW95AyTA2fqO/xYaasp0qIwRrtdKAdvm60A7ACuJivaS+R+1T2DhaTFrjfDG5qWJ0HsSxqPEZhTciuULc0DR3RKIx2SZY9kkRboeaNE3vPm1CFyzMfr/tN4EScBrP8PrqQembwcaOBdPrSxkwsYbdVHM7T3q8l9Ue2wxvAeaNuJGT/imXkolpr1YmOXZNhYq/5FU7S39UN6h2an91xLRS7MwOk2Men1bThInZ1BrjjXicpk0GIvBKKMRYFkYRv2RVI6uaQ65xloj3HWcUAT6xzzVPmMV01k7xCPE1bocdVsgumqgK1qo9tsi/t4Quu5tX7OzZhF0tAfM/pv7I9MmNNMaq7zInsyjtSonBTpWD+DCpGTBhnO1kf6RRxqo1xuiIMFNmk2GNfekc8If+WThM5lG7TOvWZ5dINIRwmMhZ2q7pqmsY/lK25m1urmOeA2W24vqKxgmjXSqPiwCniSduS1ZcgM5WQZ/T5ZQpU6acLa3mmKnjjBZ2txZ7JVxQsSN8YVcNHCFIUwkyo1QYzoq0K40SVhyr4MJwql4LrlVMqXg2pQciDEyVfBNCzdxn5dVTCzMqadZje2lBz6NjmMZ9XbFSS1uq/17ZOd5z1PLteUhO2XOKR84aF4hHvdnqo5NZThRthmM3RmGL6701t704GZ1tDfEpadr32FbAzUriGTEWLSGaxejhfW+k01b5KGf7HmN0WHcTWDfl2nfq0LhNGcrEtFcrc2SuqSSzSvbVhhSZCmz9atEJppV+Vj9l+dc6VNksWFkbI62yyGAM0qradZ3VCxFwAwEIUJ70O0Ir1o3cjrIdLWHGYrgZCUDdwQgMgQdYC2FhwspFzpUgW5lkha1WcQvijwx7X0kKj0LNLYEYP9Iug5BPPvE55HOAV2+j9r31NabXafJsHfMfMpm0fPnMYkoJhjjel2fRaIwpMcaRHEMI8yXj0eTZilf/bBofgFV8fds/G+4Cg8utiXoQf+rOlWebVHblUXf1Qo9HphyX9RIq6OtUQZ8yZcqUS4pMxizhpDnGOU/Cs/7lrE7m2cIc0mXOD9ekTkgJpsk0qLb5OHcNpZYcYMpda3otWl512ZMXFuf4nCwU+k4EHSKHxE2j5OfYMW7qkXzRJb+DoDomFTJFdKlonAx3m9ZXc38j+N+n6SJxdMKfRsnzWY883d285GfMoYbtZ3cgPcT1bdZ7VjIqaYchhLkJay1NfOwGYjzHVr0sYlp8x5gqji/6xOyDyMs0i9AU462enN8/lbxsT5Zx6leSQdzhXSpPKH8SEzllSyamvVqZ5Nh1FV1l46qR1CSimbIboKF59Mf5FMf8kF9LoWWiVlg865Q6Ssd2emA3hM2p7SsFWHYLeE8ou1ugRSYk8gmIZI6QG2kmPgrhED8aqoNSNdXUjLKaVYommIxTjataZCsKFiLcZAJI/JGlfvvulJvaZVwnFRJtMDqgJWbk15b2WHDknydKPosQax3vGxEWtcYCKaakGcI1gbK2l03SyBpietrUFmO9zHlCWVZSTq/ZJ1rXTENPlKXAYP4eTOA8uIhxQ6JqVM/ZJpWDOlh2ohq1OWXKlClTplwLIYCXXhPlMiKmlYph0Zwr5BPaJy5+Jr8Ubt2g6bpzujITCod1rc3WYAPcBABREhMzUcEhVMC0wx6MC5TatJpZqlllNIWU9EgxDc0vLa49go+yLg0BmUeaKYJjDmWlL40/svAAbCyT+aolHwNOPUwfZm2IyJNJsK308BrITebrjR65huKBugdJlwkrEUdFCTcF0IoZ480E8+GAlQ8RY5v+yIwk69PT32wHkkMbo/hDcW0R7V/cIWPKlOdJJjl2TYXKAl0Bcjny67JxzSABEzp95rP/ciIfbVWD9LQoo79ruoAlP95xlyCbbI0NAkAEKiTkRdXUwk5/kbk52jjkuKEG3bFx0n4tWHlX/YkJAVY1xUgIseJaZKhTUzW5BPZCnxGv1UQSmSBrh26BkGgFpjU22pEyxhsmCXDIjQjkvqJmGXCG9piea1g1xoz00h0pi2PNuEsl2nR97po3aEpFcszJq1G8vL/NRG3xsjkAvGoDkF4wPOF4GZgy7gLb8d2bw23cYGIfXV7J3E9jTbUpR2XPO2A6L50yZcqU51yYCVyit6WUuhG3fc1FF3xHWYQ4CIxDBwujHCA5NnvJim+RFntrQ8XJL+yqL90FIN15UrBxIrnU2T4CuqUQtnytX7G2j3369jFy3t/7IwMzDs980fSyXuuCsA2cDrV+ZnAeSz0bRo7wP+ZrylMoc1Q45+/KaXo8DtU9egBt2tbnx7Gjy8duIQKPC57YLC6WaeP9OyLkAw/aO+EeDo3FaFxOJE1J2egpZ8nEtFcrkxy7jsIArdXBZ5dwqWsGyX6PUVOM4g8rFWz6DGu1v8LRaZBpHRJfCT4xC0x6xwtAVAGAghxr46JyNXRr4zfywC+z/q5mNknukZv4bGZZyTGIWnWR8+HwImH1S3YLC5hX3MMrzKzSJnL229f4UrJatbJNcviQhfitnSpNu8zrYg6+CjaIsBR3zPE+Q3bF9PSRJhmARI4Z4YUQPine64j1Fe2bPurmbG84c/8KRUAAjDXKwsXmXxkP4mJHhoVwOqF1Yrb9H/zf0zJOMVn5AsRn+mc4M/+UKVOmTAGeWeuu5L0IYGtZisZ5f19M9zYf+x5jIOC6QAERmzZONCg85drICGEnKLA32feYNl0EXCwCseoO7GababgUQNAIM0ommlEmfNtomHVHJLxI8FCvQZZNK7fSFzAKCpwg828G75Y/lwiaeuQUY3qts5iui+i5rrrb/Jg4SQQoh7NgevXxKy/HsI5cYSzv5+QqBU28hnEkDwZ5kIm58BDdAmSD/FKsXNsii08HYj3o6nINugFu3wTBUu85JpVH8tS/n3VQaMohmZj2amWOzDWUAmBXLtJEUYUG13m6GV2bnbphkIFK+rJkbSQ1k2zBRTxUzam95kC8JUKsyW8qVJB2dikLAyg7qvaHmqATwjECTGcw1mHTePTxNlrF+KYV1Ul+NK9sd6/cjCfgppBkd9MaTEOpapUJNloCqdRqiTmPxyAlvtRskvsy+bFImg7/USf82HS8r5NjIr5CetwhkkNecGNWidg/WEQkw+IkD/a662UIt2aU+khDOL7a7pq/EX1F2j8ZDOJxOD7HDVAjb+U9ICfkYwD7//u7J1Y4RWWusk2ZMmXKnZH/380ClCXMrwHDNgRIj3NHcXGOjecK7EgxIcHPwDCOGb7DoULlkK9eC5amUXsBk2qACcxLxURYZJ/KnWwwVTLBBG2Qc63UtkCho+3QNPpQsuJH3QAcGIgUhyY9mm4GKo56ai5RoDK2puVFfk6vQExDxcodUKJATMW8eqTyGg6kWB6wwzIi/k4QOjG8SZ5JOB3Fw4bnlTzVBfdULryflhaBcrhm+PcDYnrTJvvYWx4Lc44YjVsbd+iaAV73pzylKUEmpr1ameTYNZQdCLTfwX7ZOh3k+LNx2q8OMyU/DTrdaR7WHzhlZraWMNp0Kac/wEv4pefml5XCNes9MVSJLGnw6AQHEAoTePdsAhAdMDka14zJ4Jd3wSokV21zRTCpFIf85mtMHfWD6+6WLMQX1ByTsUD8kaFg4bVfcVo5TVJpsios/sdiGjdHfCzRJxm7VpkRaPAyG473TSPsgON9NOmJQFOTSst7xGwSyHlY31XvKzfxLTEGrz7jguZ5d9GjubzJRK3p5aH5nwdxg/auQmss94Vx48990ml1TjEpvJztjLTMba+nTJky5Wz5hLvuruQY4MxT4rs4A0BPCJA3Y182X7qazXeoVGx5yvJxW3OdosnarC5CMgYm1WCi4LtM3IQoTaTYlUQjTJ11FN7VdWGpw/2PSe8ZYYdLryulIRyDuLFwCily3zatjGH3X1bg1iBpFFlG0QCKL8FnUzlO5bJz/Px0bDMD9t1Ih/wdUjHBvtR9vqhWVWc+ybUNras1rUQMh3SEfGk0QlozSu0DqK8Nw/yM1QXxUF5xfSjn5pXs9QgIdXNWtqI2dgFbxzz23dFg8Zg/6hbEMU9aY03ayXHWdo2k5a5BgSmHZGLaq5VJjl1ToZLd8HP8Fe5+ZU+5FvLEwITHg0Q7SU0jdfJvzCqrSrmfgfqDauCh0Q4jqrsKdYtWYNBSt4/WyW1plnfSj7Ac68UtdJammieqm0WUkzTIHNx0lYOxw058ignJFXesRNyxktwvGVezSCPNUDkvc8RP4o+MxB8Z6ljTvlR3DqtqhLE543ftMJ2w4hG77IRY3KmSYhpk0jWyDIimlMw8cLyPgb+xlgg7QKDFHSvDJNv5IBvFo8kj4WpG6e+2Fd8459djYxlwNGGHtEhkmYP/piy3ZY7Vf6jNQ92JxGFX5SUrfQHLyhfAVEGfMmXKlOdcKlaSDzcGGEXwn2JGGkyeLYHWiptWegYCUcn5u+lfI/ywxWFjQgAlwZQVoGHZXC8XgBdCNaWsOuuRLKskWNUk24Nxg3Q3zaADRfHMdvutn7Kc3+8/tmnl0lnNUMM4B+B83PSSFOlWkk8czupGUzYaMoxpl1BuzqO4mJ29rhTZmg7GsHx0bGkenaKRFD8jUkHuozSwRYQNzSw13vB6aLcdm4D3YePBOT7kVQztpB035ev4jb6xNsdz65VHaD/FjfINyrXtTbm0TEx7tTJH5prKUtqfZpm4bBULDVHW/fKkcFXCiittrkXGiwKAegx3pbSpUVYh4nIKhAhrSTASU00DQMrOLKLJBpjONQRUpImgHnVlYgfsgXUHcdZf64l98LZHv+Q6rfsE5Srh9XovU/6C6h9D+boFLAQYBBZU32TVMf8iMKFgYYkHUFBQeBGLxuqxYY9KkN0oe9AK0Ipqj7kyaGXbslkP37kSeVxSGnf+x5IWmQ7BwCE/i8bYkAhjrQtjIkziwUiO+Tn1NcybGtZ6dD4/hTAbaYvFeT6eN2SYdsoErtFxd8nwp8lNIBVvwGKN4lzBATlEiOWMJ1U3ZcqUKVOm3HlhqptMiaRdljsrA8BBYcR1mZ3QRS+2KwnLDpW2+ySc5NLdKc1qj0O9A0LM/YOxnaMJZlWCI1SfvQ0A5qXuWpnIKkWcFbuuvLNYluZGmmNs/QjV66H5ZTQi+j39cG2xMToZLTBWuwlmYGflJF/uqne4qYMOgJuI1XMfvKWtrtnCMCjV030eMEQrLeSROE8PeVKch/X+kteY2M6g3Uooan+1DA/KR3CZcbHfD3ftKH70zyNObdt3pP7JdWRVzq8Y3trUPFGOYepRG8OyE9ROeX5lkmPXVGgdTFHUTQvVQaX9aiP8csXyAh+YhBByggzElTgJv+RbhNiWhhikDzRIU99lqkrP5H4nZGHNten3qMQXM4iD/zFhqVRznUFYcRNEayC6wiSV59AubPNeDFPVHCtQc8ki2mKiPQYK19ybW3Jjbsl1byK/rhpmFxAnrQsA2eI7DZk4PKMVQCHXKlPyLJg/OmmmYxYnM5jmGaOWqfXXBCPFkkN9NBpg6ImwI5pkSs61E7SFz4xnrQ8BIwzOHubwQmUZOue3xIOXzQTvwWM0V5r7+XiJkwmxjTamnCbrJfwznKuyPmXKlClThFwoEbdGciOwGxFjUpjLbY7zya5C3ZJYEgK7k9EBBqwf9xRwaU10H2UGnMzSIhNmzhBQAGHVSXx1Xo9C4EXMD9k9cVUkpmePK7gAsDdLi6GJpOHUnNZqk0WSK4xSMxgbwPik9K0ysHTTGFMyJj82f9QjTMVNlLCYras1tmfZiL42yARXP6D5TkdpMUk3F9uSdhToUJh9jPSVigSUHbrZVhtneF8w7cgBPzjXi6YNaLtsUf68KPSFU532Euo9xUXjOGAx2C7Uc8i0hasnpj1bJqa9Wpnk2DWVXnNMpNFaicrDLL8o7LNTyKmXAUzoip2uqOk1gk8yJduOmUpS0OJKmmK5H0RL3WhI+kckv7VaqYKVPP3XsBFAOzDfwLoj8MKygw0LwYU848SljghusIRwnXUKFqyFAqHFiSAjVn9iYZdKiH8xu3aTTBJSjRjYCTGzozA8oLpbZdD+onQWE0xJ79KYLQ/HnSu5OYqsCEZibMvxftQi03Q5I6RnR/x+Brj6C1UyzSZUr1MnRw7x+nh0Ik/knD6+A+eWMBsKbzjnP1DmWH0pefQnG4HCRmUerYHwN32g+XPyTMkygcSUKVOm3CFhQt6tMk2MgQQTz2GC2VgxqFlJUFN+EUpIlnsjptMwqysQraLBgoEYoy5e2g3+xWI8C47kCrBQCTKgIo0FSoAB4qCfeoIsOutX31CE6qvMMbjeewDORlahiSP4l0EG6q15JHdxIzPKUVyxx2Y+w2ScmBiL4lti4zjts0QxcNN9MOo9BzKH4NpV6bFrk1ovQ9pUuN+DMdMi4/iZEogeS6OUZ6ALkHQR4idSNGJJwjBiixjZp1iIV/9j4fMnL2pbvAxYwM+ZBIMvBkecDQ/bnwliHbGCBokyxIIi19M+G471eUTK42PUgOgJZi8tE9NerUxy7JpKVEH3SKQfD4MJEoiTCNuvd/wFrBMiFll1oFZDTNaeFJg0ZRWcmHuIEB9xi5tXLuKbjAGsYFrAREkbjInCnO5tRdKvneac9xNn/XRzTEwMxCZnyMQLDys4cXPK3rxSzSZtl0qGaJk15pWok3XhFQsqKbYA7rxSn9UC4JYTV2kSDuaS1KQlU8p2Ym7Sau8Lyq1iGmAANs0pR+aSCGFzvB/zSFuWV1eUGGFCl6gNTbFE0KkZpdYxOiPM98156+kb2RZlq0ya93sQ0ElYRaOR9hrD/0Z0XGJk8xJPnPDcSeFd1U49s8yUKVOmTDlPKiEQzSrDjCoECmtGPWkeCwfzS/I5k1WTSydgJWmKz8PRrFKJGbWkiOAkzsZC0wFGC/mcTNruomCIwKViawZMe4w5aI2J431FnhyAc8UCi2wBdaqzfu25GGXGzoe7iqaWx2Cyl9l21C9fEVj0WcXnHHJ1S3zp+2UcxwiEl6algZebl1NhYFeQvn1Gd7npgaz5pjonDx0JUwxzIPoU37eYPsYF5/xZo4zDWf5uzLwy5IPXBTRlY1oE0iEvRY0yS3PisiUBOfYVMa3pA2K4zYtx3iknycS0VyuTHLumckxzjPuoZk4Ie1G2RJn8kBFVPZotk0k1h8zxdaaoGmQ5fyzHXTyZlphpiskuleaYv5kpCP6HuzURARBfZDcrGwWWySy0z0qKVQLMtclUamf2vIPuKUSommC6KlmvQxqKpOt/LCtOFAi2FTsdR2WNZNxsHU4mfzJzSq7nSIxJmvsma9IlraaHMlrnLQbfLOBbBUXRBsOIKdMcO+BvbJtAC5pkbTqkXJjYbU6M2mII4SNmlHEuH6ZxiNyQYepWEYv3lddTysR7iDxZ8l0W6j2lK1ty5HanDGTlBeevss2dfaZMmTLlfDmmOdaHTfPF8JzCz2A4uAheIK7EEsE3i+o0wyhpfpkpZehjYCHgWFKTCKY9ZmlKXNXyweYC0dSxCFZk8l0rmaXP4OqknyvmLQD2YFxQsWatLsrnyNykfHYgnEfaYDl921F/ve+FoluW+JXRjyNDSaug5dQ8+mjkEj8D+oyBYJJyS0jT7J4na3/pfbRttdphtQ7B8jHP4C45lNNR8sR8qEZavWe9L7K++X1THtOAne1zpiHLMtHlYZaxSH2JWPtYuvY1pbE/yiJ2GIPn2pNkG+mH8kw5SyamvVqZ5Nh1FEbyz5Bka+knrG5wk9V+lCEToBBchUpd+ZJfXZ2I09LH5nkZEGP1y9/8SVhfGaC6OyUFk0owTIPMfmPXXGWqvpnAfGLYAXwXyo5AOxa/aqpuX48VS5gR9NffTSvrFtvsjvZFY6zuVrlkjTFWjTHGKt1fBMjtmLFwwY5LAhDmhrVTN/axIrsfFoKL3XwyrTKxaZr1Djw9DUWIsX0BVkYRIks3WjDtrzThSTiQYiPfYwik2Ihc2/IpZmQZ4BMt5/KalM5aF0Jf41D6EJ0g7comtgtuzOEn5w9Awxs93stzMMIkx86XwjtQmatsU6ZMmfJcy2GfY/ohj8SjkDIijEp3EIt2Nun/QKkOMWgBDIMKo6G+c50gY+G3aDPd+SDyeLBrmBmoqyuaDF3d1TIE3ZKJeAGXAiwV+LJiTggxJSYTzKpZFvySMaNgJwut5G0z0jlAYtEmi9perSnkmCTrK0YTrjhTF/mcCpQ0f6rhgcPG0wkwIbZC3BjpMLqkuLAqdaDI50PzaJzM0a44UZYGbPAxRRjHt98h8VOIQnrsixJr/UM65zrcSwTDibSCaI/J+9d+Y6Q6BuGN66F2WfB5hmhiOZQMyBNObQF8U5Vqak45XSamvVqZ5Ng1lU3NMTTAoolPkwQ8rKSCmXsRYYcFRVTB1dh9pC1GDTvFYhxP1DQik3vKT/IzpwSY4gOC71ikBBkjTMDtPeTpHdglnAK5hQI1s1z7AeoGjUKoiCKWONoHi2N+cayP4IC/TrfV7BLVv1jhFQszLiq0qUCA2EgzI8iMkbIHY7CEmMSHGGwXStMoCz7IksaYkWjw/AWgPQM3GVgrMcZ7Nj9jnfYY63zn/WIWE8RSHxozCWFGQoz5ddUa8/yReEuaY/C2emKMfViasxNlLGfYOc7bh6bp9rkPjCsP4rQu+ZS8XZ5DndS34HiXpkyZMmXKlA8baXyO5Rk4mCwyYAu1kqaY1j+YhV3RuqhiEVXDZ9l1PGFK1mK1rGrsb6VDyaCQzzTPBGxGE8mKbUNYiAojvEzDTMwsBfiquSU0v+3AXvMwLrCOnPWTouFwWP2MU8gFv5MwWGHkVatooR6XtxpjRgTpNQu5mVY3A/M56kwOBBIta4vFtrRaNRpJGMqgttbZGlf2mItDfEqJBO4pwn4YmcaM5lMqhZNbFB4dFBz0BxKM9ZXtzSvrn5NfO6jWfp6RljYIUPwetA034S2nUw5HED9KnzLl+ZFJjl1T6XarpBxM/iY5Z8lJ7HGsE7FEEGEHQiky64x+qYUI6yqPDvjl3BFjYIBKBS9Be5OK/Lbrro2inbvIatDgls8L7xnrLsyYUX0+rhDa4FXNsb3UQtyYUEYH/OwO+FcmLKWAeK2kWOO/QidmTqhBktT8FA5HeFG/ZE6GpUdgBBi7r7E2bmXQvoBvVcJJd6Vc12LaYEUm0UQ2yUSHEDZtrMFOlTlPf20aZrFe5DbAAJeyrS0WznHuTvNpm+dEYZBrt+WEQ4VOilffIMOs7EAzC21eHbuvqTl2vpRLOC+dq2xTpkyZcr5UzTEFgXESbMIAol+pCDyTc3rFDGDRGgPU7BEEFBI8ljTEBHcxm+N+IjXLxEa8+HWKGmay4zhz7WvFErWPLA55xU4AjILCi/hYU+f7FMKyY6XlITe1lDwQZ/1g0SJTDbWIK6FxJGNlukthbHWZmeQqok+kcDWhhPsXjs8nXLcEkgE0gj1DwzwHcIr1lkOvG7AX6/C7qVII4oQl3IuWY3n/Uvtk2NoO6wd5+xt5YjxSWRgud7IrYN7oPzj4FaMSy3m6bbCVSKlBGA0JlrTM5Flxvh7lpY2ypjEWNu/Sfp3kaqSVmC8RqFMuKxPTXq1McuyayrLlkB8yMTTzmq7kxH+bX6A6LXckV9XB4nUBL/6LrxpkVXU8m1CS/4oaKdaW0R/VsRP+eiadeaOppWnMRS0xDe9S19tw7BaYsC4EvrgZMnKeVV29CQvEdJLVtBJYuZpQVs5JzCkhDviZcIMZFyiV1JPJJ06S0StEleLPyyZVzhOtgkDTGhM/Y2piGcmwVePkvDJwi303ynBgX9txxbWe2PL0xuQScFJsa2fLxvQykmNWn465zulH/IvJE3N8dOQ81AY7IENS6VAVm4xXDh4jq04hs865k0mOnS+FF+BMfwtl+meYMmXKlEtI1ByLbg2CXo8RXoFoaAGexUleqliDiGXX8rrLI1OpRNjS4kitYIQvpZ9dPOdmF3WsDznLCi+RzCnFCb/WAT/cwX6M7/yEMQXtsIpQC2SjJ7CRYE6KBcCkSkXJxNKPfm3OlmehumtLWDzOnwytRtpIQ03rk7MQZe5oP2Bl7bouYEeCDSOyLJxjerpJyuViDw1r8zAtPO6xbKVpueJ9QmzH8D2HMAwPe0/CuxbT2cOqJdbGQzC1E3te9ynXQwf+gLlVqffHoW3F8uEdaMenGy//O7MwD5Inpj1bJqa9Wpnk2DWVTZ9jiD/6CVqg/+EJq0a8oJnl0pkgqulLSQ0wLZn0AsJulHKKOACAapXFnSiTHzKdFfXvUjTHTIsMjGg26U21gKX3puBhYcT3wHpxK8yeXk+clRbx8LDKul01rSxiSlkd8C+ok24lxdic7VOcHBogFiHQgqD+nSaBGmHYgOp6ok2iOvRmWglPU7PLPQ+IsQJeGWVftcbSIlSY4JwI8+stkiwRYVGLrIRyulul1gEPQ+dfIdACXvAzfF5mSThEmnkaY0Mta1OG2mOWOAxuRMDH8GibZ3dzyhUL8w585qrZufmnTJkyZYrCxwAYbaIkQatVi6oKZ+hqOE2BZkVKrjVGrh0m2le11gIupTGPpJ6IsbP0axBvjvzhZd3/qWqSVU2x2p8KZktZQDvxI4Z49q2f3OTS80StMjXDZKrO+m+BcQNFNNoCtKINog08CMe4CtZ8jZrlyfSEWEvgUAQ8HPJYNAkGJCdR1P9LKBpJrriobORZ+z5pk+2zko4EYz/LkBeqa+EtrbGoLaZ43fLoNQ/C8Px6j6YE2ZFPTbg04XZn+wR6Q30WZjev1I+x0E7QBbAxj3Vzuuagtda2l8+k/Uxj20fluHhTtJFnyjkyMe3VyiTHrqmYz7Hw+5h/7HUKyHEKNFTSPjQNqZVMM40gWyqD0/7yQ7/oZZWu/ioO8vivu5lTUsBDG/7GNJ2ZKq/F6SczhClNc+M8zSS4r1pk2N1ExF8+wzIuaGdE2Co+K9zHmJJa1Xxyp7Ci+7GPk3qYiQw0sI25koV21nStW1fZws6UiSDTXStFK4wHGmO6gyX2blKppJWbOjYEmE2S4/jkvL8lxqL5ZTuJ6qVqlXl0mvP7c0OgxXIb55FsJnE3PQ8LdeXbCD7cfpv59rW9tIIN89ApB6WUHXCu89Iz80+ZMmXKFMB8julkTorfAgsGxaQZWxlu0rKK/ZLWmKQwVY0pAkisFpgKaKkTdDWrrOBq2yF/TacuHsAiKE+Am2uDLWDZ/Z2xAFycrOKWsGqJMifMND+Cc36EPOrQf+WdaMUJxCJFj5F2aJeOW2KsgMDYQWFxJMHiN0ROi+kt5s7kWV4gjs+5Pj8nwzIhSUnjCtggyKx8xtIq9qqlXtWe5beuva/xyqVSbunTIebm+NnEmyQaLMymaYamzOZR9ENJbjgRZIF0bLB3Hx6kxUekxFhIazG9bsSlmD+Ow2DwDlz7++IfpxPTnisT016tTHLsmgqtBJ0z4i9JJr7QpHo8tzENMQbA/QmkOKo/eoG00nIxb42v5pbZrLKyL0yLN7DA3SHYdSbrNF3rsl9wPnTsBhOIgBpdSbGEi7oAQmpmab/2ABXsBbwpL7iw+hoDLpixQ8FOwESasTkqzMvT0JVJODCwdTx9pnEiCnEJEJBMGMnfGIJDfgZusvkVq+fSnBllrUdcDHJzxvPIsU3STNWtg/klywqvlT2XGEOYs4/kAWSh7ew51UFlJ1t1DSb6rbl8HE3y3tyOeOlbT//BbdX0QhTmRVb3zyszZcqUKVPOkw/tAVr191MpBmRmAUpy9BMsNfkYDPW6z3Aiq/py1SVi966FlcFUzA8ZmAbEWD2ztFfxLgk5J9iWYWiPY1jYGUYgzQLJpcC3aoBFymjxNEQyLJhhbpBphS9qalQBOshQuCyopNhoQTkuuOc4bvIdBj0M3cBAS3E4+/dEfNzEnDZTSN8m6KrIiZwv6yJ16BDIRjR+zBCUwCLH41GrjPs8yXSyBFJr5F8sWXqwk2WS7mFUXBjCBoAFuCsGd/9irZmjaI9tmley9yVcp/QS4xXjc3N/oZz2J8oAIx+75mHClFNlYtqrlTky11CYgWVV5+/6g6w/yhR+uGs8NfGIeQqAQqC1bqVNaxOOZwkvZcGyX0CrHGXrPKqrpi+8A/FSjyKHXe+qc1Y5NL2Gd6ByEY7dCUdoQ9hz4nog5dkB+xtYywVWXrDSghU7rEJ9tWEw4QK6A2WecInETDLGg0NYwYPHLc4q5XMkZ9jPBs64+hXTSZMKsKgZpZJim0cxs0oW32RcGKVASDNU08uVwSvk3MSLmWStow1z0kpL3GVMjwRdERdqpTmYUQr7WfrJks4lxKc8jNXMOvnsA9bX5kj3sR1fyvltCh66kuPm7/3uFf8C/cmXUpZLHZeR9773vXjFK16Be+65B695zWvw0z/90wfz/+iP/ig++ZM/Gffccw8+/dM/HT/2Yz+W0pkZb3/723HffffhRS96Ee6//3788i//csrzT//pP8XrXvc6fMRHfAQ++qM/+lL9njJlypSrkP/7LAIGDHi1ZPxayYaARzWtkGxUpPGKF+s1AtZEoQYTOs50vzyioSUHazwLquMFQMWwtrqbCCv1O0ZGhNk190ex8CLX9cwlprV5JVwg1/lc4dwOe15Q1JEvZwRaxRkmarHsAcJLCbFMoEXygsfx1MYl9sXOFEkVJVw0R9MMN1G0kUczths/dYRO1y+/bhUSNlcxi96DEmettpgQUeH+Os2xpn+d5lgiqjbCgzykK+GRzGr8AHfXSoyVfOZwbRhbr+2AfUPw2uDl9jriZft+iHEFvL+5MehTtuROYtoXgsyRuYayoJIfyy0G7QFagUUOao5RXDoKYSnIBzfnYRphtwaCbF0qYVcIS0uErUsl1NYFS6FKQq2Z+KpxYzJrm+gapY/y57il7EBrCAvhtpQLLOUGaL0LZb0L+7LDqo5OeYfCNVyYsOMVF6opZqwU65KOa5BZfEnp7pmTRc2/qn0xXE8pwQXmkCZnVq08bYpBawHdLOB9EZ9i7cF+Fu0xrHESE5LMCLHmKINjZRT1XybhsnI6rKxMnDbRGTkn987NvcUzIxwjUgnP4XEeuVWYscqxSVwdabO0ZOIZRyQX73n5J97BX6cp58iP/MiP4OGHH8Y73vEO/NzP/Rw+8zM/Ew888AB++7d/e5j/J3/yJ/GlX/ql+Mqv/Er8/M//PB588EE8+OCD+MVf/EXL8+3f/u34nu/5HjzyyCN44okn8JEf+ZF44IEH8KEPfcjy3Lx5Ew899BC+5mu+5jm/xylTpkw5JH/unouKD3XR1fAdpeslHdRc16MuvuriseelQhIf0ymEd1jKAg6LtUaqcSDYjChz8szItOLEFZpzJcyWQJotTnoJrhw74A/mluLgnwONxXJt8eqrxOIrdl3Z7RraA1aDU3wqvYlkq9W+nX5U+51CLtWok0s1g6zaYlE7sK+4pfu2miLyQwt4kJr8NIxzkfvO0D8RXwri447sSjaxhVN1p4ejD7J0cCLFKMV7P2xTrLC7vRFmSqgZgcaywZeC0iLkVwllDh+2u2Y81nhtq+Du8iXk5bWAbxXwnoHlrvbxTplyR2WaVV5ToTVPSGw/9K5vzDZpZVVl16xmUeEOkc0EVLXBN/JQdf9VbFbyXSvd71icMerOlqRzN1eMQTZr1d9diktXTEn9irldaZH2wuyQw24z7Ss+IQ9XravK+nH1PbEwsFwAhbDu9qClgLAHcTWfvIG1OsSPxBTiwd6gzYAeNdIgc7Vsfza1fx4XHXqmR6HpN+vkAdHqygeCaSUsrkR/Y+0RfITJUEFJqtuLDytM8h4z263pbW+ezeTzhLxatz+BbTmcJziMPVKQw/3cRoM1yyn1HMl/ZhVTAPmIOdd56flrSd/5nd+Jr/qqr8Kb3vQmAMAjjzyC//Jf/gu+7/u+D9/wDd/Q5f/u7/5uvOENb8DXfd3XAQC+9Vu/Fe9///vxnve8B4888giYGe9+97vxtre9DV/0RV8EAPjBH/xBvPSlL8Wjjz6KL/mSLwEA/JN/8k8AAD/wAz9wdp+nTJky5UqlALu1/t7qgl/dHV3S08TG7g+3iQdQy4qvsbr4KGaaXBci1QcZiVMqjavpOxAVFGIzsYy+x2zjR3PCrzZxAfmZjxAJY6n5tNNEFiYsYC7S9UxDZdNJSSNBrkErrfNdRhQ0xRYZBx1b4IKB3RJbKEa3OcT0ceUuJoz14LrVrMpaXOwmhxLv+NdN/RQPx+ernwld003cyP+Y5ivs2zr4t1PUnAt3xIO4plkfF/K+KSEV7sHvx8cjmV4GMs1NJtHENUfbKTtTANT6oaXlyOp25/zIefTm7Zo7U0pur61+DY/z1r+lMKLpWfEgTsqWHLVpsjtlU+4Upn2hyCTHrqs0O4D4D73+Ko/WOOLKByNt6zogvk47E3YyrbJutShG8q2DfxCBaVEc4E72A/lV45wQ6x31I60gmUnpQpVUq9ruVZV+0fhwJgKWBbQsgBy0LKBlB9AKWlwNj5YVWHfghXFx9x/jblpxF6+4QD12LAdWLFhBdlTAQSyHgZAG7nC8Lv6QmonVVnDsDLBo/mFFVUJ7tmD949VVnVchvfYMrKVOULoSs+bVmaImkG0zZTTpIZFfDA+fRpDB5uGi6tR62zw+G5GKy59PmUqP5yGUEUHGOXgqoXUqgXbKzpWHnO5Ph/yXkEtse635n3766RR999134+677+6y37x5Ez/7sz+Lb/zGb7S4ZVlw//334/HHHx828fjjj+Phhx9OcQ888AAeffRRAMAHPvABPPnkk7j//vst/SUveQle85rX4PHHHzdybMqUKVOui6hpJCAYVQguAEKSBdyqy72VpUrxAEALO9XDToaZf7DEMCi4UNwKiSsosvFSWG+G72bJcr3Ioq1coy4AgwGWxWDI3pJVk6vAHeoXKDVUmKo/XywoCniFSCiCEEnTqC5C+8ZTVQOukBBxYBDtwl0me4NaH9/Ejor5yl1qy0KSlYpHLewkGuALy4GyC3Sej2CrgeYpAxKEmzS5E1ISUlMYXZ0jeNO1O1jE1oRRHABdr+9qNKJrlCoaUpU3DeBTrCVISR6JM8AYtcBODSfNMQ55uIlvrxG+MeJ1DQ/9jQXzy5bsyt8HfXz8Dqgk1+CB8eBSP0YGMiHtJeQ2MO2UXiY5dk2F1tLGpH/N3I481X9PdHIXqiwmxgUvuVawYqUHRFndyVLMAxcgapEpWca0q3l17ldCLJBhcdGtXpNiDoCAhaiaAd4Qcmlpu6Jk2Zqb1zCFcO5e1RyTycSc9hcG4UX4vYuCj979IXZ0CzeoGscTBQIsHeswvoKkIqBJ/mM3oyQEjCa2+EqAUYGbye4ZS6kHrVz9iz1b1Y1Z/BxUs0rRFNOw+R8T1eTCVXNs7TXH9BVxgiwQXMgT3ukaYx7PBdivnHZt785yEebt4RmywcHBfPEl2ZCT5ltu8nEOXikxJrUezcuMkxi0KScLi3nNuWUA4OUvf3mKf8c73oFv+ZZv6fL/7u/+LtZ1xUtf+tIU/9KXvhS/9Eu/NGzjySefHOZ/8sknLV3jtvJMmTJlynWSalgQVz2VtkDFQsQdSUauPgajZ6h+vJN5SQ8EBoulhC66CstBRKZgQ6ppRotYTLLvLJ5Uf6iSc4uQXQBYFmRrrtqAIruaBqeUSu0b0wLwDmWnbvQrcVbbcWf89S4ZHLZTr3iD5b5bjmMFo96DLug5Oca4iRu4sE2kIOSYH7tB3BLilAyTu7NwBEStE3ayvEKckWx8H9JGZp1dJUM8xCGRcrSeFbum2uuYU8hz6Ih7G8QuAYBuiOWvC0G1yMzXMzh4VIlhQJ3xg7UeDmHUuoqn28qyfKew1pkIK22DAyaPedA454cOlB+RGLPyjuud3AvXo7PUUw5ojynmT6D3ZKw85ZDcDqad0sskx66pUDn0i6GTi6piA7pq5lnC1YDsSmcEULKZB7byhVJ/7TkY4hvppaAE4bourgloUaDiqzd6NrACApe7gBt7EK1BQwyVkwue8C0c4m2BbWnSqS8PIvBSsK734BliFNoB9Ie4i24lcgxDkiw4jSJ3MBp3y9SDygoUYLlVqh85IcBIj7UekDPtGdjXM31I/HYJ0bUym1aYE2Riwqj+xvaVJFtvBpX+NPHBJsDLkF9AH18Y1S8Zh0UhA276D0J5e/tsvnaAE+JKkyeWLaqRbRAoyyU4Jd64OEdD65yVr04VHWG8lN0+UN/Bn4opY7nEttea/9d//dfx4he/2KJHWmNTpkyZMkWEq79ak2Yxlphknm9JMiDM+iAjoGSRkJQQi8xGWCFVgKJ5JK6iBaWUiuE3X8EsoXMOhh3N6EovW3zFB4vlrG2or9UdVtT6zcwN0Auf8JXFUI0OSecmzna5ZCfbVIttWYQEZEKhRWk07SWc3htfa/+XVM49nNU8VeuOWEgwGXXjLJHv09bxJT1+kvOgbMQ7Na7BQBzTwiGLsYScbhdSmHJEaLCJY+1fLBHMKgEDe/H+tKA36Z1Pz39wT0Y0meNaiDYXTKlRCatoojkiz5S8c/NKeFrjkH+LGNPvAJQD5Fm8LgHDx9vnVuGjuf9T4qdsy21g2im9THLsusp67NehTtLURsnczYD4XED/u09NmeZsRTYJMskXZkGmJVtxqguGBcBKUC222i84iUayQhZNNak6aeWyAy7cTxgtu4OkmPkUo+hbrAmr/zEIIbEw+GIP3LrAreUGLpaCZ/gjUWiHj17+EBe4hQMu10Fq99jFx2MV/xYA7QnLvtTNEvbAsodtujDcbOEWA+KkMmqLgWFaYokk0/SVUW4VrKptJianJfgfqz4yfWI1ra9mUtwkzVCvo9mmz7vsfjHCe3qcGJOXq9UoG5QFZ2Jo+BfD/eVRJSwDRCHqHLYr9vEkoe4eY1+mPAdyGyroL37xixM5tiUf93Efh91uh6eeeirFP/XUU7j33nuHZe69996D+fX81FNP4b777kt5Xv3qV598K1OmTJlypySaVdaIEAy8BxFVn6pQnOYZqtaY+hojWUgVLMdki7UUCDNSn2NaPvgk45gXxS0LdPFWiLi60CxaX4VQFqNIgCIWFESgxU0p3SYO4s+stleETFIATIIQFRQTZJfKeL0RV1hxde+zDND8EsYOKwDCviHEgC3C7ODWAR3ZA/MpRkIeJV+7yGn6CpA9Xx33HnvFV6ZdAE2fNvFbZ5Se4pua6keIrnMbaVQ3dIBod6lvu9BRVuKOYWQYIxFRQwuXLo7NooTUOiQAaiPBCgeCDMn0svK6FAgr8k5ofgC6y2QmtjxsGH9Do2yTGBv4HksbFbRyECRP4Hu2TLPKK5VJjl1TOaw5BqQppGURdALaLVXrCiFrvAzkFysrplEpDU2amnVyVTvHzjXE41KN2Dh6fgcoTqoJeNB+K6G3ACg7MBdgJ4CoJboW7YPG707QLJMpdlnqCiUXlB2DVuBmER8N4qvh/60fiZUWvISeqZpkndaYapStfmDt0peyryQY1w0OsAIkBFnUFLNDtcj2DHpWdobcF5S9m00WmURb00po+r5g/VAxDS5Sbb8wp+lEV9aRaWVzPSDIuHDekVFew7hJjr9EbO9UR5DpOb7GW+eQv6SFqAEy2pDRnNxrbnmnjhFdXfIg/2XwwamWlGfydlPukNx111347M/+bDz22GN48MEHAQClFDz22GN485vfPCzz2te+Fo899hje8pa3WNz73/9+vPa1rwUAvPKVr8S9996Lxx57zMiwp59+Gk888cTcmXLKlCnXUipU7MkxnbrauY4RSDLFrAuj7BjmQF8WWMmIslphNZuM6bCdEZXbiAu0NX2p2GkpRtiwdLTYDpIForomKeriXhiKIukUzgvJRysA3lWPZYEdyv7CFuE0NC6YTGocu4cz9b2u1+7Mnt23bxpX1QcTggtOWqlJJYW4HGZ5KixUWzTF9DbN6X5TR30HYlz3Koyvt7CN3Ksvv8a0/tuotysQslNzEgxIMQiL5qf4WRMsZIJZpGtwIWljUSCLMhnWxoUyHOuCPmBkTa8QZ33gJm8uQ4LXVYusI7YU53ek2cZ1aQkz/yaALt4Tm8XQpmw834lppzzfMsmx6ypbmmMxmnX6bvOIodm6CtEkNoU6V+rOkRpBPoFhyU6+GJkoUyHdvWcFaGdNJtBRgQ0lQozVeSrYw7qSp23YjyoB6w3gRm3jZPPJA+kEApalgqClVPWsXQH2AN+8CzfvXitBxgUXVHCTC/6QUDXJ8Ie4iwYaZOREGILvsapBtscuZKsrqDCCbFlhZBgVYBHfY7QCi+xOaceeUcRssoRtkLP2WCXGyrPFd04unHYBUoLUiC2d6OCT35b2mGqeFcGDNj/GeVu1vhDr1feD0/VJxNgo/xXbEvaaYZX4G5pqHpBD3epaOHYLOmYhakSYTSBxCblDKugPP/ww3vjGN+JzPudz8Lmf+7l497vfjWeeecZ2r/zyL/9yfPzHfzze9a53AQC+9mu/Fp//+Z+P7/iO78AXfuEX4od/+IfxMz/zM/je7/1eAPV39y1veQu+7du+Da961avwyle+Et/8zd+Ml73sZUbAAcAHP/hB/N7v/R4++MEPYl1X/MIv/AIA4JM+6ZPwp/7Unzr7PqZMmTLl0nJAc8zzeNqixJOqlRFgmwwtbD7KXBsM5pTfF10hi6EVxDArbjU9MDi1IjRVIRR15WGAVJzgg8ClCBlXCTCiAqalYkmo/5BKpNWdKhkGbgsByw4rFyOQQHKnvEgWht09V59lBRLHLDtXShyTa93pjpbNUUDYdQQZGWex8IZm2OBanfnvpP9G5AhJpguguvYNeNi1y+LzboAL+/O2erQiTqd8HdrQQzXAZCm8I+M0LpJW+qRJ+6LxBUDITwEXUgCw6R4tTP6dpm1px0M4+iUzQgsIzvEjwNYzj4mxAShnyR+JsFYjbKwtBnApOa6EOuN10kjLjzY96xbQTvx6NTLNKq9UJjl2HYXhO6HItTteOrEChBUVW9GSZJlxTFtGl0iEvLI4opAn5vUyxEslZ3aLqbDX9HZW9DhdgYEAGJZZwLTGdMtKJfFYCDKduSLZdcT/mJFkBDejNGKsgHcE3GBgJdCecPOi4GJhXBDjJhg7PZjxNAEr/ZFoksXdKrOmmPsnW3GxrjLxkTrHqgRYAbAHoCaWrZ+xm0Wc8DeHOtxX88mgPaYE2fpsNacsYupY1CFnfD3IISKzmkWGSbIhxkZaYq3GmM/XDj3jnFjrc994hwky91pgdYQ/iUMk1Hl01lhKoc15e6vpQyTV7cz/vHlx+3W/YIUvASTO3CYbAL74i78Yv/M7v4O3v/3tePLJJ/HqV78a73vf+8yh/gc/+EEsuiAB4HWvex1+6Id+CG9729vwTd/0TXjVq16FRx99FJ/2aZ9meb7+678ezzzzDL76q78av//7v4/P+7zPw/ve9z7cc889luftb387/vW//td2/Zf/8l8GAPy3//bf8AVf8AVn38eUKVOmXFbqouDiRBfgpEacZ9UEUeLtQ1vw5gXJ3L8IbrGFVzeVBPnCaykFtlirGmYprESaL+ISE8pdstV2ZeXgLMASzoHdENxjNwZCVX2TxssiRRhcdliXUvE1b5hVjuIokHRwXa6I47Mlhu6EGfgQKWPkGREWAW8VWmdibHRNybEXu0YYYaAd5ppn6px/+H7YDRg47Yiv7ZcrpA/INHdaQX0cUSLRrErKnzqk7+SgHyQaWWYWyUKaRef9QiBFzTDVItNy0WF/Btvca4IlzS0H5EqwtRpfKNW6RE1AM8av9Sc/Y42J5MH4EogxHWBJHzvmbwB/fG46+BPUni93CNO+UGSSY9dQSmFgvx75gdhIbL7QjSCjdUiQRWKsRo/jx/kZWGWSv+sGOM5ktnx0blx7VFDFfDHWHjtEmMV0JcYSibWiEIPXXTW9XoBy6y7cvMu1x9TE8kKOZ/ke/D8iFCPJVoBly0nTJquqX7uyR1I0k9tdiqyiMtXHcsvNKRc1sbyZSbC6A2VJfsWK7FBJxc0qy63ViDH1BVZKQKSJiYLsrEm2o6WRUpwd7HekmNQRr6sWmsIhj7NX08oMCLJQn7yw9X1q2gJac8pebpccUwySVi5H+Y5EbP35bsVftt/P/NqvXrLkC1iKfLCcW+YS8uY3v3nTjPInfuInuriHHnoIDz300GZ9RIR3vvOdeOc737mZ5wd+4AfwAz/wA+d2dcqUKVOuXJ78f4xlH5zgt6t17U/r6KdWsOeuENaFBdtRwJHsWE+ud2FXSlBdtstWDBzINO8b7+uCbzWzVIf3kWipjAaXqj2WzCkXSRMNMOXKKplQ55zCAJVb1R0IFiFfuLq5p5pPeiOu750UK8KC6WIyS2phMtjMIDG7XCqV162O+qBGkkyXNaNz/kxwZXPKtLcVC5VnGmRq6hpNMyNx1jxmAuKLET8DbO+D0WvRxZMRZrk2BOIGWJisrD1b0fJTzbOK2yloyQVyC4FQU00za0O+vAbl/HAyzEmzALYV5w40xbKWFwZpGi9l91z9EAfQHomuuBjuGmJtGhvppXVbeA1ji5Cv/TvmwcUASJf9rTZyyjG5g5j2hSCTHLuGsiwEurUHL5d4ce0XzuU8guwYIRbi19UmPqwFuHHhauy2QicToq3QCfmi6SFtSI7pzFt24IsC2sksEvyPJT9kTZoxHAtXE0rZ+VIPXgqwv7Br2gM3L27ggqpZ5QUKLrjgppFkjAswnmXG/6MFTM9gR88ApL7HqtbYwvuqsq7mlIVtA6QlmlkWMnMBM6e8xeBb1cdY2ReUWwXlVjap1B0pSynVqlOJsWBOWbXGRHHQZy4jv+r7Up9FNZesz85INS+SCLCtuE5rDDJBxldTRBeZdBGyTe+0ysL5kIaW3dLhLNtlAyaRoTmr7El5rnA+YgDLiz/m6ip8gQiVHejMVbZz80+ZMmXKFOBjLghL9QgPoxQUC4ZrRSoKOYGAZp35wQXLuuwipoYEs0K4XNid7tNC4D1QxIU9qHR+cpNlxKLUWe0tl7pgjJ18rC6VdCHkhgvtjEBSc8pKsIjWm9RHXHF0sdsvFcYLEah6XTZkFAcMQq4dWVFE0CZDb1ZJYOxYd6iEmBM6kRMJr9ptebI2TPqkRy2jT7OPllBlyMD6D4VwuBOATL9P0SihWgPUe3Ai0ftOpjHmfXLfYwlYxv7Jc0gEGQJ25DGxppDczCmTKYb0OZFWo4NT2EgsA+m6e31x7S6iYBrpdUSn+lvxiRxTgi1oqsXmhwCau0D/nBl187UpZ8nEtFcrkxy7psLrWtl4NS8c5xpE8TDefssXmWJPJcDibBvzKPti7L+YEtJOSCckMoyHZJnOEgImhqSYzq4EWm+Axf+Yqx+j1xSTeBBAtIB3qilGIC6mPca8AuUGeN2D9zCCbn/rbty8UZLvMSfJuMbL8SF+kajk/xEu6I8hTBV26yqq1E6CkapcQwGGHiTKZmJa+WzYnXJfXGtsrxpkgSAzsqz3M1aE4EpmlQJSOITB6kuMO+0wn2d5EJfzlaLEWDYwGJFeHuZEkKVucV/mmNYYMMRVRyViklh2CNxiuUN1DtqgUULb2Imi43LXR3/seQWngHgHOlOl/Nz8U6ZMmTIFeNEFsOxFO8uUG8gXS+ulnThco0lXPHiB6oKMFsduSnalMNp4gmuPQQgm6Ru5vlSFuYRyAdBSKSNEhKOTOQuhBSBN7oXdIX/h6s9XiRAJFyrBRb62f+hgI4RGRyUc+3JghfTHkJFSSfXf6GusFueUM8J1aV6frBFoHXF2pPlW4Sg+jxOKSyH5zhBNMD9rhb6IG4kqjnkKugFOXmOsn6rTJ29uMI90bbCmDtUaE3Kp1dxyskzJKfZ3h5HSPU5ISK6fO2kXe/VlpkQWgE0ijI+kCVnGDHAp5mcs4XWOT24ggyQGgi/hM8HwlIlpr1gmOXYthatWlspBgqwtum4mkSbLjo2nEWIDYoxljS2SY2uRrRjFzHK3qytwwgRVLTH2MAnIEFV3N3+UQ5fJEmlGYL4BXAwIMQphUbenhcALV39g4u0++xtD1dhaAFpqfiwA3WLc3Ln22E0hxpwkWy18U0iyP4aqvf8Rdsst252SGrVsKnUqNb9jqlXGqOaUHypg0RyrZzmELIukmJFj+4Jyc0VZkcgx1xzjzBhFbS5JF+tYe9ZxEYsFqY7IM50U41wN5PNhcqw2Zt3jjTNOI8ZUTlUurv3jdD2amI9BymN52nEZSTYDOCzR59oV700wZcqUKVOmXJk49mGgkFoXQokFTuo58ImQg98iJbcsTLgIJpYs5pRuiUC2CDvyM8YhHUxYFrcyWriaNxKAZU9YaQXvVsGcoolV3CE/qNSFWCp1J3TIvSpEpkggOIjiciH+x6ppZQED0bcYL6JVJq4oyAfCNcbk+4CWSPfY+DIvWIlw2mewkxOMBStWuNaYmlNyOHQdW5ATRYJMYHmjNUYbYfAgrI9+hHEICR8G5S3pU9AEYyWvcrvZRLIZOe63Y+JQxiIyUM6ZufbDyDC9Nx0j9nzJTJIB3Y6UtOoIshMxxkGzy61KzBfYvljYybhAYp2jQSZtsp3je+156mu+AUwH0fptMWXKdZFJjl1XKZnk4lMJMj6BQVB94yExFtrYIsYUsLRaaqUAy66WW6sJJ+2qJlmehVhADptqOIpO8DCiK81YigGC/7HO6b7tSIkKYJalasrJrpRsBBh5n4QsZDmwEGhZcGsFbu6qM/4LBOf8zNhRjYuE2a4U7JaCC1rxIvojrIDZ4VNhsQeHTYwkfsfiASagdcCfDtccS+TYzRXrKg74o9ZY1BxL5BjqjpKlRq36yugjDojD5kab/Pr5mbW+ACU4lW/IpwBoErhpyqZ6GGdNnuUEOsv6Rn2/o5xKWG21WJs4rT8n/YnzqT2asilluYR/hjPzT5kyZcqU+pGfVnQU0wIA2fxo2jxCCFXzAzhvNghfrKeZWCKFyUk0AAsRmFWhS7TI9kC5AaAwdgtAK6FgRTVrrDtS1p0lVatMgHUpYlIpOJNjGH5fElf4AlT2wom5ZprDMglRdcxvGmEUeBRuMY/nqeO6gHl/ApghrzMMNwH9KlxDEjnh5EiwNadMMKipjppzxIWM412PJBktjredTdU+BpLMyLyYnskriufwHpG4ISEjLtXfGlXtsUCOko5RAMYUCK1MkAXiK5pbBlI1nyWpMLB3LbGoLaZ+j1kJreSAP4azv7EungemlA0x5uQY5Ftx8JBiVFh097gjD3tKLxPTXqlMcuy6yprJMf3p5sWvOmnJqoP1o9Egw0nEWIAvyLMjABRgJ9OYziLrCqIF2C1GYikpVrXGwi6V5mAVQXMszLpmarmAL5bqf0z8ipH5F4ORYmzEWGmIskqWlQsGrzBn/PGgmzdw8+59JbyCY349LkJ44UqKMW6C9R53C27sC27couBfDO53TCfNcEDNIwfaYWZm2ZhTlpWxroz9LbY5VAkx8z0m5BirHzJ2qBE3RY2MlkJVA0sNSWVxnOfzgJXsfFhzzMNpDvWuWBsnv9siWy77al8D9IttDTJnyLkto/LKvV3FZO918Eb8lFNl+meYMmXKlDskgm8AGJyMRFWNDBrkI4ZEIWngmBSf7ojqIqARZGMNMSbUBVD1gcsAlsW0y2xpeQGWslRMtggNRpUGKaWg7FbQjuCewOKZ62LnsgjgIrCESXatrAuGiwGkFYsRK0XArppqst604GolACN15XpRfl3HzxlBblbeuDsY0SHGAk61LQRcFP8GqI+OhQxjN60Mj+8oF3eCKFLjJq77/ND3IzgZZ4RvDgZUGysxi4N6Saw97Dq2F4/YOIeeysukZo7dzpWqwWUEXgOi43WRWgeO+Y0UC7vXx6OaVMK1yJQ0k3JsY8FOdA0IsUSmxToQ8sHL+/NpgX0z3qx/C5Rx7MS0Z8vEtFcrkxy7jsLoyDEVWlEn2pGKSZFf0lNlSJBhmxjjHMcDMo6i9hgIRLKatgpY2ElZgq222GxqhFg8SLS8KJla0noDfFGbci0zEsf72XyyXq9Ja4wX1OXGfWirIchulbtwgYJbwedYNKdc5Pru5VZ1K7EAhaoT1wJGuUG4eJZwYwV2e3aSjAlLIaDUDQDoFgM3q/lk+aMV5UNrJcj2pZpMhsNIsX3Bumes+0qM3bwlwKoEkswIsugLLEIXMbkMopMa2wvQTHz6Kvj8GbTGuCnfk2NormO4dTegacln2hnS/iXk1am+Rh6EgntgTzlx4lasdDvaaKmurbQz65oC0LoDrWcCiTPzT5kyZcoUuIsJIEx+LP5a8wd01LK2UMKnfVyFkVRd1AYNspoWzSwrbmXJD1rq3LrUPizMVTuLuWLE/Q7lYsXCdedKxiJO3QlrWatrjsU1yXTPR78BdnjNqqnGIFYTB0ZdUb2A7BsOBdrEhCX4RkuaYvD9JAucO9M8sDyev2AB85ry+PDmXSp3IbxoLQzZrVJxUQ/XlUjS+yUZ2tzWEYmvwxFww+pjWNmztKoaW4vfHZlO1Lzdp0e8L62FB9fSLsHJMArtR20x3cXSzSkHpFhnPhkOJdP0vHL9jjGyzc0nuQAsaUaKrbWeuFMlq78SI8OwrTm2nqIxFuqJjyD+WQDBv5h+S065HZmY9mplkmPXVLiMyDH5ldHdcFqC7KBJ5caPT10SQyLILGyzev7xosGvnYSZqtN7VRNjWW0DLaCVgH01tWRRXzezSpuJ2ImqjjSL+QAuF6AbIW1h0xajRnOMliVd8wXVVZVgUsl7XZWrY1tuAjfvXquWWNAeu+BKkN217Kt2/MIoVA9aVnCp6u/7nYODCxAupPndLXG8f7PUs674qGbYvvocK7dWlJuBHJMdLNd93VFSfYzd2jP2q4DA4iaTawFu3WLsC3DXDe6eWSkbb4VNcsikF3qC7JCvsXSOmGUrrG2ygy9u6j9HdKNSq+dI/lH6Fi03im3/Gg6ZSG71JfZZ5ZhPsQkrzpelLFUz4ByZKuhTpkyZcr4UBgXNMRODmtkPmS7IRn9jrASIYsBAiqiC1LJWGNwSZK2jfkDMElXTXzmqhcTdhGpRVXxWloBoBBPviACsQqatFWOSmFQmU8rTwlx2KEsl2IC14ll10B/MKY22Iti12k/WeNccyyaYi+DxLfKHDXorqlDCRyE2UyXIaj4nTtq69JnSAdJj5J8svR/chENyobSvQyJi7NUI2LJq4ZFdK3njhineAIkmVazDx9fb6G4mao7ZGGidEmfEVgC26XoUB9ce40qsMRfzK5YJMY+rxJnEsaebdpdqgyUTy0B8GXmm59JojMHGycgxdty+BUyjf7HhNwC8nimny8S0VyuTHLuusqE5ln6WW4LsFH9jI9HtfeOvPnnYGP5EmAEjcgyoIKOqSIk1Pok/BtUmW/cg2tWdI29c+Mw4NKvcOADQugIXF8BdBOxUW4zcp1jSFMv+xsqyAuuu0xaLx7IHbl7chRtLcMZfGPtlBXYfMg01pqp6j4WxLMWQGu8I5YJBzy5Gku1K1SKjsNJjqz43K6PFt9bsiP9W1SK79WypE1ph0wrb3yrY77m6eCPYJqKRGGMA+zWbGY5IJw5ogkdn6KTlppaulbZBhMHmzfSqJDKsmR3jhKk88JYcSOo00Q7JJll1Zn4Abkp5vNlxg2EcTsEIE0ecL1SWS6igTyAxZcqUKefKWHMMCUtScTKrJTzac29aqfFCBg1NLEVjTLXVlrqDOKcVKfb6mKomGRiL+BVjLuBlQeECLMAOOzATChNKWYEdVzciYMSdKlnCFHaq5GYHy9rXBUyrmECOdqtE0CLLu1h2a+XNQFeOZQFoDXkq/iJWM8pMwbW1MAFLYV+7ZnfMn9bP4zmQYO3jB/oFQXU3l+6FwqORMDf1AsAu+mOlNo83VOO5uTvYO5dJw+bzI5FqtTOmQTYop/+QEEvUmVMi+0fTo40rqEStaorxNjHGhU1rrBJhgQST8yiujoFqlklY38/GlNJINDi5ltJkPEsguTl8dMTHkq6nXEompr1ameTYtRRG65DfZfC5rhPsZckxq0dZJ/gkor9+cVnnCDmGVSZ93UaSlOFYfCWQbwHMYoa5BDJOkI9ps5H3R871R1cc/vNdwLoD39iBbqzgnTjaWvIRNcl4WYHdBbAfk2jxWPd34+aNUh3zc8E9y01gYaj/fF7kUM0xUuX4eqwXqCCKCTsGLvYyORCyf4DkdJ/NCX/ZF6zP7nHr2aoptq61vJpL7vc1vFZrTiOs9rcY+8IoXMfr2QLcdeHvDjN3k1FnPin/ZILMfQNUzbOGGEt5w9wekNOWWWUysSyZHNpt/IYn4Da4H92I4FC+Q2KLgWfkP+Zj7FB1rJiaz+jnRBVnC/FyNjAgnkBiypQpU84W+cA2iRxGYDyqdhLVBcoD5FgbZ/7LNKw4ZVHTTTh5RpXAYjF55KXGsbBt1Rdu3em8QuodVgIAwaqlYFkWcCnVdQMRFl6wEGHPBF5uCSkmN046b2yEueJl820mJJyZS8JJrJY/6Q83pUwDxE4cFsUYYBBXa4iw72WoCSlewwXAjp0gWwTziB96bzmsEjKCphcaAowcEkdpyS+K5RRjKVEGYKf3HTElPG+HuwhO/uiO8oXyDpIM0SQLcXKiJi4MXUpTTbS0eh39hhlZxgev9bvAneGTmU9mB/wwX2NsBBpSuptociDI3Byy9S92UGMMnr/G5bz2LRAcHNuQtddTLi0T016tTHLsusqm5hiQfuYjo0FUJ+9NOfITpLOmEGD2A5l8kMHS+1nBOo/qjEG0xoJpJUs7psa87sE72XoyEWHxCHEAjATUe92JI8JbO+DGDhCSjFgN7wu4BB9kO2WRSHyh+UHNsdwE/phW3LW7CbooououTlo1LNe8yAoly/xQahMsinO7WzAfAbQvNXyrgJ9dUf7oFtY/3qPcXMG3VqzPrth/qJpV7m8V7G8xyp6xl91o1gKUlXHrFuPWLWCv5pS1eqwrKlAL78h+BS4WYLewrHY2wyrPZESStXGrmUgMyLHmHMvb28Lb4QiwrHxJnO1R6TjdA2UP/VV0r/mRNm/H+b7eawKYJ9zvBBZTpkyZMuXaCo/MKiv7odo3fqo4lJVRSYu2MCaFANc007lXqyWA16pBxkaQsRFjiDtbsrjXEMIIgb/CIl7E1gLmSqgVVZNa4B7GqPoo2wHY6/bfUZ2KAdsl3sIU4mTHw7Iz32aMXW2PiozRAsjiK8Jh3rOi2p054Uc1ybRFZfE9hr1sKJVJsZYks2VeAzVs/tureaW0zn7L/nTH4EW5UA6vAoVn2rNkDTGm0Q0xpi+BElfcVRWYRr0WUtWc5If3S9+peC2vbDSs6cxD7b1WtlBNKqVCgmtjGUkWibB0Db82/2EQQqskAiubWI4OBNPKDc0xMSnWdo8RYyyBaEZpBBtgVi4+jv6uJNzK+XpaQ0x5vmWSY9dVOs0xCmqv8k9Ug4VMoETipd5nGnN8n2Tj10eWq7LGGOWwVdXWEa6rZ1SAiqiZEwBxkgWELaYJtN8DF7vDpFgkxoysk9W/C/HMv9tVG+pbO9CNXd3je9c74y9gYL+L+MKOqgVWAQXWHYh2uPjje/Chj1rwpy7+0IkwAVqF2HyOMa11tNVvGYC7VHltBXb7ABjiBLjWSa7oqpBMWsSVADNTStbdKSs5VbgSXmth2aFSiDGuE5wvUCmAqXXtDWmg7sAUFjDTWV8z5Ph1BVb2dyKChK5MOB8jxEZvZLLohQOTYzIix7SBUwm2tp/HhE7Ir2M0JAsjdouALARHfZ844nxZyg7LuTv1zJ19pkyZMuVsGZpVEly7Sk9GSITVsN1SFy7JcWMizNqzJpHQOwwhwyCLtWJO5xySlRXqopIHi4QBMC5QqFolLCCwWgiwEFlLEZzFWMpOfJRxBZRKnlA10HSSpWJk1pJ1K83qs3apGLJgqRohKFV7jckxBJTPUcNKdIfRXFzHohCwYsEOF2CsYch6I0zpTYhzf2OAao4dAFPxmSiOCTgnZhvVkvqzUc7iRoRLm1lBlpVhu4PqSaXXGjt0WJdssOuNEuCuUrj5XArYnmNcrDtdV3A82onSvhWAcI3qND/6I2Ml1OS9XoOGWCTBGJ6fQ/2xr1FjzOJDGXZsW1Zv28x+RYUvvBLB5DI8r8mOnS0T016tTHLsmgqXVWc0ieDxD0b9RQuTFMO0sDxGJKCGFA6syLqXWVB9gUWTR6mjI8fSr5rns10rhX3RXVHCJGf9LrsKgobEmP8Ix74TLeB1rSBjUXPKpTr2KjtgvwAXC+iCqrnlUgAqKEsBrzsziSwKosoOtC/YXRTQrtRdipYVfGPBzT/+GPzujWcBEBZacUHP4m6QkGLqy2Ivj6l2+KJUAFUuZMeewqCbBcuq47hUEpSB8qF9NaVcue6gKZMQy8RVVsnKdUfKwnXyKcKY2GoQk/sd01eGgikkfK+D+kiq/zPddVymMZv49LXTOXgNYeD/z97/B21yVPfh6Of0zPO8765Wu0KAtBDLgCu2gRgbB4KQy7eSGMWiIFWmzKWCozK2iy9UUchljAts52JMwA43FI4xGF+VY2NDCpVTxFVUgimVhYjjb4wsbDlUxRhTvokdcUErYWRptdK+7/NM97l/nHO6T/fM8/5YraTd1Zy35p2Znu6e7p5+pj/z6XNOZ46t6gGmPeX9blleuZc0+U5J1f19/nUXGqdzx+1KSZavN1fYU3j6Xj6dJ/Ba8spjtwyk9snPEtLE9Y2vgFkOJeKf4ZAq6LN/hllmmWWWw0uCaMsrwQPADYpOSD6yZSwl0fhKDO7l3UuGB6N9ZFNRV8q4seRFUTTE0FPlAoMYziG/fsQTkJ1NBHLghNBBZhW5U5NHEvNKCqLplTggqINUTkFWuQTXtn5mahn0ZkqImUaaFUjotwTKRJj6IkNAQtEcs/2Ui/2cHSNP1tqEbSAh0xJo5NYKmnN+HClps3JxzA/J86DAwx4z2zPxF/ZLmAuydzzrLxm3apJEjMBZNzFzZFmzzBrKymacrOG+/Ow0gsOk5BsNgG9M/ULRtix3J+tTLLg7E02mYcbjc1tlshBQnPfFxBKV1pjfF4f6XPJN5T5ZY0x9mXASKxWOUhhZZE0KmifOTcOMXR24hCXWOLnMqHyPaRNUD9BIV2pB9CwHkhnTnl+ZybELUJgBGtbVUrfuqovnh7VmCoXCHi+ZJtxetN5nGQ0oPsNQSK5AhQGospmgMaKwLuyZET+bBBn4CQDiGoi9+h/DiBjLg4yRYwQg2MuAxYdY6oSQi1G0yKJuTpOMuwhOPXgggDsgJXRDAnUR1AshlgY5DgOQ+g4JAd0iYGd9Ao+EXXRkJeoR0cM8MQQcwUl+BAuOCJQEdFllE0ARIB2MSJyGqUaYgD2yQcWWHs+zOPashcwylWjzO5ZSPaHEUNLMDWQmSbFAaLpAjBI/OiBhXcM/1SGNnnIVH038plcWkq7p2lM9fSNxxg1fO5FPJv82/QS45oX3korU23C/qbht9ryhLPnXO9EmB4EJp//3//cAsWbxQrFDOOQy1jwvez3LLLPMcmi55xtRZtYAVAPdCIpyjfVCkHF6re4wFHtlaEusGldy7M3g/Fwqr0lWKFdHVinp3GTivGKlkGzGKHE2d5TzoJpKkjCQapbphz+pRoyQHizXo2qQmQllJgVlRUx0zvU9K8nFJKaV6pSfWVbAlNUqxY9v4g6RGKIDpmVCS3IVnFxhM4I63kdlDlg9AyjJIe77K1LsUYsDNXvhL4999r2v5dN8YjBQHOW7vWm85UUFGkWCPbXhLBJyC4OSEKmmHdnezzTFip8xgOuHpd8Eej0TX4r7bZa71RqLnE0lKy0v1RozrzKeGJOJ9lSHZ02yYqXCSSfnVbMzsXyp5Ql091Ouwtz3Svl2QZnoNhPLifZkF8DDXm6FZpmSGdOeX5nJsQtQCEBa7W7wH+ZGk2T0vyOsAH1bRfCe/sf0hZzf0pa3y4cCiNT8EAQgio8umzQyp/jBjXb+xcexya/Zox2I1kJyOW01o6EqUswBJ4QAThHUs6hWZfNK1RSzsNSBzwK87BFAwJBAfQIpYZb6gDREpJ7csZBvBELXB4TdIzjTXY4tGrDCgBUiVhjwMCck9Biox5nu73CUB6Q4AFB+LjBCMr8QUF9jNhBCHYaJJhgiS3tGYFiXAUYetxBjxaenAMOog2JKwKCEWtQZsWiDkhuArAiGBQ2/RUd8GXjy2luVS4T8jMcEmPQtVOLNJtvBcQof5YF2U5oGCLX5HARYtcCwJcFyO0zc38e3eG09chmmGsjfiKYv5XvsUQkGsLzy6ZsjzDIp57LsNc+zbLPMMsssh5YrjyTxATFSrfaDbtEYQ8Z8AEyDjKmsaA7UA+zEGElUrhFBNPI75DleMEDBCDM1AyOAewjx1akLDZjRompahSTXzSG/0xASwomAJARaigHoHOkBWwggmNEHGFxWs7Q4UEe1EFKMYQs9ybqZ4ki7Q4BYmBRjCy5wfdQgkjoDUcMdXHTRDPmQ1mogQueZEEM6SoB4n7NhA1bxWKzCa1xwU5vMcZ+TJpWbpM0v5GfiukmuDot2XgZylAm7jPumNnL3SZaPK6KVmd1yVYyipZUZJGRNLrL2aE0qh1SILdMY86SXaZJlf2LJaZM5zTF1z5LWBvLN5LE8y4oYy+EaF5QJr6w0yNJ3C0FWylQTY1xcr+nHSKW4McLhLJqZsxxKZkx7fmUmxy5IYSCtRe2FRkOK/K+0vJqv68ymQP19tdnbAMjjNBXRFsFQDTIKjiSDkE5GXVX34JJfSkC/2OwfYnwCxAEU+oxeyJfJDcQUgtw3kGqnMSj1alKZZB8SwJ3sV7syA7buEdZbSEc6DFsDKAGpI1CMoJ5AkRBiQgpAWvSIEGDWDYRuvcRq9zjO0lksMGDBA3oMCBQRMKDDAruhwyMdYatjJFVHJiWfKsYnANgdBDAyS/OyzGIiQmd3xBFsSvbMocQYazIq/saYEVkHMMg1m3Tyj9hrw3sNf/PXWRE+Lq0RY5au7m/jx+jwR0WwwfJ1eHaKGGp9kE3NcOZr7l5wwMVfmxKrT6tFZ8IbT8Zl3sR7+YP2NgfCfM1Pp0qv+fbHT+yXyyyNzCros8wyyyyPj2wv1Les9x/rhbkGBlnlC46RIKj/iooQI2pGe915//QGCgIr3lPfsnZLJllRPAWo83olBJISZEFJlI7BW4SkK1cGTkgpKJXFoBAQWFYJpxTQkWp5EQNJFgIQKs3VRX2K5YJyQHHMb1pjahrJhoEpk4aggISY/YMVH2pquZCbMVVNT+Dm00EuBmbNS+06HGb0s5KJytQ2QT5X9h0haXxIWuaqV2QiBc2FgwsBRXtrJLw5ayWDcrea2ieIuWZm7jiTfchUqiMAlUArxBc5gky2miArppFFa0yIVyPIqk2Js7SKYoUClBUqjSSLDekFztppzJBFJ5R488SWmTnnJEqYwXYNSTapNeY2afdpQJ8978ymlYeWGdOeX5nJsQtUWDWPZET3XqLgKXjUQwxcuL68HNmVVdZbtR7NU7ivKfBCKNpcVLTGLE32LVby4mElb9nhLGixrXGaW9rg2xaFolzLIMj03q1sLGEhlH1ioE/FtNL2A4n5IljOwwBKCWFYYPFIj3SkR9xai5ZYH0EdgbsI6sVFpziCJYRVQLdcInUJZ/oT2KIBPUUEjiAMIF5hgQ6rsMQOImJYYd1ZfQytARkDAbJ0JJLMiqKAmhRTfoxlwB0/Noa4aTP7/pSJsVrLi+DIJq57iphvSrOm5HpPQ05lVwkT19py5vQuXkV0WTkaIsun9fdKvJnAavNoVylyk5slf93HVK5NqXr7spOL47BBrsdBhCfuw/nfAdK26SaOZ5lllllmmeWCEpvZM2kH9GQAwjAf14MzyQc1JxLQ44FMjldj4qI5xpWj1QAIeWUEmbtNSAAPbgLQ1OsTI4AQuMe6i6AeEDosyCroHEAcxcSOguIFRki66iQY3CvRlULBEnnGst7EdywhBDWrhPg6Eyf9VLTrtC5C6AVENYX07SDNncQjCsqGKh6DkNAZgcYWrzjGGsGckf8ozvWZgkQjDKP3yeFthENIrpMDQ7kLsYvF7hqoEKRNZsR1W9UmkuRwpi14poRPJr+gbShhZKaRBmhjQgXUswaatmFkYCgaYXLvEj/Hy3kmsUYZoASWPi/TCIusi3sVYJsd6KuppZl7+sn4guO5YGKHff0icYkLMZaJMiA7+2eXJ3jsW8y/HqY+UWeZ5fGUmRy7UCUNzbESRC0xZoCikvYtJnHIa5uhXGe2GSRDCkZENdHJ2J6U0zMApAgKdo3BaRCEYQPmrpk7LooJJsaDkrysxRSS0wCmDtQtRPvN1ZPjGtwtQMsjoF7NMGOUtLET08wh6uDrQJSaXPIwgBZLUN+jG3qERzqk7Q5xm5AWAakTU0oKhEgy/HULIKwWCCFioGN4JJxB168RsETAAgFLHKWAs1jiOM7iLC1wnNbi7F+Bmfj60jYOBAw6mKzFj4WRZAYSxqaEtZklmGV1Z/U5ZkDAm0eijLuTRJV3Jh9d3j6uJ80IwJQ3AMM1Vfma6/446IHh1+q6G0it7Fa/1nrYVrPuDFNrIX3TjUg7K4+RkQ4IbSqzBXAbfkgw50m1qVnU/e6f24pdW8xA4tASYjgH/wzzLNsss8wyy6GFkzo2RRn7zO2HgYY8GapGiiEgr06um2CcVIADUICkO2dACbgE9bSv8WS1SDEqIDuVqAZ7FRxwx0pmaYGDTAx3g9wvdUoeQck6MEh9VBCxaGWwWFVGnRTlblBCAnlVdE7RVmyCgRfiAGZxwE/szCo90FLMzgiIHNCTuDFJHBApIYDRkaB0mxT3fk+DPQxKYE7VypRlxpFgk9jsro8ghwIv3xoenkwdj8IaEDSVZiQtqDViz4XbkgWAI8s0TvYPZnHcYhG5y+hWmWhyTRZan7GCVJpR3uSCgezrxIxvTIvM+xNbJWTtMS5pzd9w9jEWZREvNmsTp2WWjNByDvoNAHPWGFPfZXrJXLaUT0jO920/K/1xSs5Zv91mQoOsXKc8KZ/vM8ujkhnTnl+ZW+YCFU5D2YY1eNgFr3fA67NyHNf1ZnFz2Ao8rJB2HkbafQhp9Qg47kraYVePVxJvtQMe1kLCxUH27XEagLgLxJUL0yUU3X1TLpuVJ2pZdsG7DyPtngWvV+BhjZSknGnYlfKtHs6b3G8FXj2CtD4rZbTrcS37nTPgs2fAq7PAegVeSb682gXvPAKcfQTY3QF2d8C7O+DVDrC7K+c7Z4HVLrDaAa120D08YPlAh8XpHt3OFvqdbXQ72+jPbqM/s43+kSNY7BzF1iPHsPXICTxy9mo8kraxiwV2eYkd3gKDcJa3kTggoUO0lTD9zOWCKiaH+gD0JLwji08AHmSwM9f4QhRRhR+BMvkEvZ64nvUBZDwcohsXm21Ikk87kcVcwtecJ7KwisBatyGV9Oso1waWMb/a6nEfNjGWLN9UNNtikrDsa9RhA4uby8wFbwyujFZuf89o6biQgF67rfKnZuFOvTz58jRAovGTWsq/YYs8bpc2/tR51HpmLT5X/lkOJ+af4bDbLLPMMssshxQbMG0bBmC1Bu/sALsrASmxbJRk0SJKSVxeDLqt1sDOLrDj0hgoGGIBI+soA2YesJOYRcaU8w2Dbon1fgyKunr3AIRIoAiEgcTRegQoAd1aPkK72KMbOlCS6yGRaBUldc8xBHTqJJsQgBRA3CnxZc74Idds8hsEJCHGOIWstcMSUYlD0RSrtbAKHWO5Ju4QlVgTE0pzpZLEVxk4O6dHNqT0GlPmPL0wG+1E5ugZQ7Xu3DkBFSnXyl6TklOTlkZs2Urk1SS7D7fJdH+fXEnKnKlgPi4ZWHkT5FmybDmycbOjhiiEWV4kQvtNbpSsWcdFD6EBcjlfA38Kas2fmAelrDoBnHSle/MZxkm1xZK4ZrHVLrPZJMtiXuaLbJx1CU9AiiwuXKKmc8cxMtYrxrBmxEHD9Z6enLO4SbdhSFitI+KQEGP9epjl8PJ4YdoPf/jDePazn43t7W1ce+21+PznP79n/E984hN47nOfi+3tbbzgBS/Apz/96eo6M+Od73wnnvGMZ+DIkSO4/vrr8Vd/9VdVnPvvvx833ngjjh8/jiuuuAKvf/3rcebMmUOX/TAya45dqBKH8nWe52xkXkb8iKmze325Zh9koXPUf5J4DIAjOHnzR3sTRmTVW+pUA0w1mzKjo2WwBQAoSDwG6qV5jcawe9v4qDb4RECyFU/MyarRG5Bjq0caQNRJWBrA1IO6XmbLUhKfY8xAWspKlxTA1IEDEPotUb0nG+LFF4RojvVqbjnIW7jvga4Hh0Egwk6HPhxDSgQaAO4YaSsghC2gY6y1tGlxBGd3r0DqItCtQLSLgTucjkcQKSAFwqoj7CzUDRoBHEidqcrME4ISZQywqnsREaiX6SnqgK4jxEHb3/wNQNotN32eHUR+vnmAK0GZ+PGzdPmJ2WNz8WyCq4CdMobbDGYxD0D2YeYndUsfGIMeK64nqlpNMrtf9g3i8mm1w8xiNd/HoT1fJg8CfQIPDAHkCT0rR2vCmcvVCE/c01+zvHIezfPBVLr8D3my0Yo/7O6OCzHLnhJSQDjkrNnsvHSWWWaZ5fAS1wlYqzVEsa2SvWFW87HLRlAQqOvUfUbjpYgIZA7+szWCoICMcdJaLAUIZZX1ENxgTrrQo+Iw5+yfSHi3kJA1xsTvmIy93RpIzEAXQAwMAaBecCYF0UNKISFxVDKEIL7EtN7kgQCDKak/KbkfMYFThzh0QD+IpxA15ysLFrj2YDG3LByO3gMJC8jqmYZtzNDTHPAHJc4yvsjgyBE2hOzvyhYzGIkHg5tkCry12WBcPZ8+NHE9jiMX5i0sbIVQT/whqwkKWMvdwh4L1TixmFq6+nG5dz6wsttsrSe/mFx6T6YhA1NvqpiBnzO/5JjA65JnRYyxW2VSQXkaOOdrmmfMkEl4Lt8Vwl+7fqC2xZmwsrI4gJ7s2zH3HS5NzkCMPOoOHu/HRPp9IZFs8n9WJDu8PB6Y9j/+x/+It771rbj55ptx7bXX4gMf+ABuuOEGfPnLX8ZVV101iv+5z30OP/RDP4T3vve9+Of//J/jlltuwate9Sr82Z/9Gb7jO74DAPC+970PH/zgB/HRj34Uz3nOc/BzP/dzuOGGG/AXf/EX2N7eBgDceOONuOeee3DbbbdhvV7jx37sx/DGN74Rt9xyy6HKfxiZybELUIQQWmdiyb3lwSxLPBN17ovZ4iRAVbnlPa20Rh601noeSnygUPVBHMDLGtdAXm0yNOaUROC4BtTnQn5ZZmYjaVklDWlYjFHMCrW8TARQl8EDJzWYV0mcyuwPr4DUIYRenaQSKAxIKSKEgMRJnPkTIXVLULfQsgek9S7QLxG2joI7Jdm6hZhXLpfIJo1BVufshoRw4hjSAuAuSPMEwhHeBg0B6djDSIs1aOsIIl2BBxOwWJzBCj12aQsPdz0u412sA7DuGDEAccHgRQDWSQcAAm91om7VEWTdA9IJRCUOTZ3fMTB5APNoIKtc68DNbt0hB3gsWTal5EJ8mZsz1vHcuo2RXjm9Kwe4+Dwzx//JSCEHblpyzOJ2jonymKldCAAwPyEOrFj9XLrApauPIpZuJy5LEqp7W7rkLDbY50GjrCqSzaIlF9fq3oK8KcKsbQOvEWbnU4QjADz0N/8bsxxOZuels8wyyyyPj9z7t6uCH1OZBBWOKIGC0DXVSpX2Qd91yP5nTTzR5WeK8o4EB8UE6kKxawysk5Jdvk8mK6IWqAviAiMCvKAaS4DUDRmBVwAtGOgkS2agi4QIJe1YcC2lIKSZYmtFtEiUqom0Ql3FXEUBF534kCIxsSSOosWTiTBSX2QdmNcIJL7DOiT0lHTlP0MrCYEZcGRZnli1cxLs3dvtc2rO+NHw0SaOKwHoWqCjee+1uFIVF03+7IgrV14Aotnn03GNy5gZHai5t/Sd3OUYyI2aIN8ehhUVH4vPMWTMLSSYHidWshUy+d102XoW2AFONHGSVdYVU+uQZ6wZ6ktMLU0Si9UJ1ARWwXKKCWlQ+slMH/Q4c9T6rZY1vVybsf4GSxkog1PDoKnKi3J+WQut8WGWvytSNvitnycDab3GLIeTxwPT/rt/9+/whje8AT/2Yz8GALj55pvxe7/3e/jIRz6Cn/mZnxnF/5Vf+RW8/OUvx9ve9jYAwHve8x7cdttt+NVf/VXcfPPNYGZ84AMfwDve8Q78wA/8AADgYx/7GK6++mp88pOfxGtf+1p86Utfwq233oo/+ZM/wYtf/GIAwIc+9CG84hWvwPvf/34885nPPFQdDioXHdo/rErfxShEJOaJ2QRyVUwheQCGXfBwVrcdcFwJmZYGiRt3JG6KYE5CqPEgx3EtadJKrqcI5ojEorbLaY00nJXrHGU/7GiatcQddjX9IGFJ89eyptUOUlwDcRe8ehhpvSMO+lcPaV67SOtHxER0dQZp5yHERx7IYWn1MNLqIfD6LLJ5peW1+zDS+mExt9x5CHz2fqSd0+Ddh8DrM5J25wHN4xHEM19HeuRvwQ/dg3TmfuCRh8CPnAY/9A2kb3wV8etfBT94P9LpB8GnHwA//BDwd98Aff1+dPc9hP7+R9DtMLoVENaE7YeW2DpzGRZnjmLx8DH0Z05gGC7H/aun434+jr9Lx3BPeioeDFvYWXQ4swXsLhixh/iwMD8XBJkhDDoYdwCIEBYdmFjCHZFVCJw8dLnJV3ahyLNgfiDK4RrHaWuLqaRaJvj97gDsRmA1yHk2ceSSfidKHDN5NHPLldsGLtuKDWtwZVqZ1Cw0MokJoZbBxvPIZRCOTTmyOSWLZYVPl80lnep4NpFEnb+b3KvIwsS12nlyYf58k7mm1ZPd07Nn1caxMlUml6gwW7VFAEe/+dnn58XzJJIQ6Zy2WWaZZZbzKU8GTPv0EyiuLda7YhmxXsuE5noFrFegYQUM62Jeqf5nab0WTX9ve8Vcju1adIO0bhSjaKxFMasMiUExgSxMTSyzb4cEUBQCKURGGCDmlJEQohx3a0JYA10K6AYZF7p1QMcBIXXoYw9ad6BIEG0xAkUzqVTdIyXPsqaQTcYxdIZRTlgJs5R1ltQck3pHaQGFviJlihjinV1MKoVvSbI0AMHrLInmGNsKlQniFIRyrhGEaHpmao5o4nFNi282Wcdxc+AnRLkJz1EtbGoIZlX6Y+fLlpWgUiAWPAnD5T6ZXGMjzrgQZXpcTZJyXThGkxHYVVwDTSMxtZXgcuxnSL1vDlaFhXUS80y9zmouaStQ5pUmI9QHma50P5g5pdMYSyjp1GSSM4El9xQzzNq5vv2mzH1gjKw/RVafY2I2GSMwDJw3VjxvP9H1wFitWb4VBsZ6LfHW7pj6WW/nsPJYY9rVaoW77roL119/fblnCLj++utxxx13TKa54447qvgAcMMNN+T4f/3Xf41Tp05VcU6cOIFrr702x7njjjtwxRVXZGIMAK6//nqEEHDnnXceuPyHlYuqBx5Wpe9ilZTElLBodKnrzLgGTCGYxKyQAHVerzNS6pNAZuBU8wvupcxigkmkGmZss1QEc3xFzEBao0zdqEN8SwOWY9j7ciere8ssxhqIhBSjvlXPApzAaQCtH66WpAYYlKKMEUMAU5Dyd72SfTsg6pHSGqFbgBGRFw6QkQDcbYOgzihNC2x9FoCZgmq7xAG8PAKEJYij1oERdy/TdEC47GlgIoQUgcUWKB5Bt1gA2AKtA+I20G8F4KHLsdraxdCvMfACKV6GHWzhDGT/DTqOo2GFrW4AJWDogdgTcCSIH4t1Au3KaE4hgBYdsCugL3QBA6RNQgfwCgAIXceIkZASq3YZZ0DSBSGGzGmrH8uTPzYww0UjzIMaI2AsPDKLOn3unDKgm+JVthLIqYXckolfmcVKcF0pgxQSDTVFHmIZUV7UeXKNJZcAFJMBduXNmEI8awSHNdhdDw7MpCjnZjTsNbWyYqPX0qqLVsJcvVpg6MtGzTWGb48SwX5ayQUD6uBWsZJNoHstvtP/528wyyyzzDLLxSVPFkx7733iFxZgNZfsdVKVs2UBQl9YEiKQrWQUQiENbJD2bAm7gdHCgi7SZL65kvxj840QgvogY9XwCTlp0Yox31ByrxRkhUsBPgQsWTS5EoEWCWmddKH0gC4AYQgYaA10BO4SAsRZfkqq3aOqYaR4mFz5WesZsglbQGIgBCMx1KcYif+wzpoChIiAjsWigpRWE0IuCLunIm1vZpVyHph1VUslhqDabxCSjMByL1Z3JVRjm6xVJzeQx2V40Di/zEhhDJrcpY3nFVnVBDHn8tqKlLbgqGGs7HzfTFuTolcq/spGd+WSXyYyAZCaY1BW5SfUtKDZviQxlfCzsBZXfwMcU4VtfZ/P5pCDmVAiH6eUkFZczCSzaSTn2d9kxJqrWjGHpJyuXjHSwu07Txdl4FL/lLjRHCvHNrmLyHkSWrA250XDEhetS1v4qwtAXM2aY4+nnD59ujrf2trC1tZWFfa3f/u3iDHi6quvrsKvvvpq/OVf/uVkvqdOnZqMf+rUqXzdwvaK046Ffd/jyiuvzHEeC7moyLHDqvRdvELg9Y4M7ETg1QAEI8MEBDClTHSBk4ANe9GBIUskWm7Ql6G+2FPUt5TQFkYO2CjGyZZzTjqiIfv5khej+3xndcgPwFabNN9jnKI65hctNknSrJpJQc0ZldQD5B6h07IowRZ6JNWMo25bBvq0klE3DjDn9QDkmgkLjSOgaAWKuwB1Uhcrz/qslqMHp4Sw2EJcPSKmmPw0gBndw0uEq54CSsBWt0C4LGF45HKsL3sEcdhCXB/F189ehbPLLTxt+xtYhrM4Go5iO6xwFUWkHohbBO4A2gVoqwMNCUg98PAgAC2P4oQQCCkIODL1egFRxYa/EDwOKXAhimwABBwZptvaBjTSCViLo/GM+Eog8a3BNsRTJsNkaNenZmDSfHawQctcsnxczQgadGhAiXVHQzWeMEpaIZ+/rZHE2l+TTnmlhiwkI9FQLCzMbUkmyODIOV/mBgjqrUbEVwvs2jz9Psdhlz/XefqJSMNL8HnOs2yHlnNxRjr7HJtlllnOpzxZMG3gBB5WoKAaSOsdxWFmk2jjYigDcoLiuwT7VGFS5+gKQthNEoPUR5l9aZvZpQkXfClYIWWiTL7MC8GWzTgHiM8xsGAxBlJP6AIBiZAWBF4wAgV0oZPVJbVsKSWE1IGDrlxJgqGJYyZpoCtSagFr4qixP8zcmUZiBMjKlB2WNAgSIwCq+yWF1zQMdJRAqhkWqPgdY218MvymE5KspKU1N4gQtT07yiV27auPzIEg9uXeQITl+raSgdNE+jLnLVGNvDINsMxy1mmzWWYGpHVFXBeoipbvbQRfnuIt2DBHNJfQVqjUVDyDPC5FNK0uv5qTgV3rw1lzTDA+J3W4P4hJZRoS2IhXp/Vls8SZeGNk32LMTdmoxLW09m1XFPG4kNpWpfxdQo0ZpfYllz6TZtpfTOHTJrDF3fYmvcNZNsmjwbTXXHNNFf7zP//zeNe73nW+inZRykXzVWUqfT/7sz+bw/ZT6btYRd45qaw6wqyzaLqgM3UwlXP5QPfLLMubn/OXu/r2ytMmeh1DDmN749v1qTTMQq7ByDF5ORcNYQUbSrxxXsVSTUGj+JzIL9bQQ/yNAdkRK4CYkiPzopJYMtrI7FoH0MPq0L4TUitFUFAfY2zE3wAKW4VwoyBgTFuKuiVgC08bIOq3QWfvx5oH9EevAm0dQ3z479BfcRI49hTQfQndFcexDNtIHdCfWYKOHUNcrkDLM1jFbezENf4uHcex8DBi6PBwv8A9xyMuOx2x7AO21wBvB5nJWXcIkYUo2wmgZSd2ilAuSs0vKZD4q7ABmQAilkklHZDt2TiarEEu+TFhsAEPxXzQxm+b4bHrg5JcSc0dPRnEDPUhV/CsXbQJVisGo4CmNjxP/PpwN1gamUUQ3OBnJ3287L/AgE5ZrDw7FyWdSbZuZ1pZArRd/Wii+bjEcUGj9m2BXkW0cbM3cdeTy6Ntb28ma/VYXH6iLeks+0hIhJCmEPlm4UPGn2WWWWbZJE8mTHviGIlFQdIvfgaYIpCCYMEQZNLU1OWT+oAFAIgPJQo2+SbEGSeJT+ZTiwKyVYTTHEMIhSgLJX1NwkEGdwMTIesfgaNN4clIHFgmLqnvEBjggZCIQYkQkpBdgUj84kYh/AJ1YDAikqQDEJGAhZhcij6W4dEo9YfpfRH6jhCTTCInj1NsQhqATX+SkTIMIeSQ0GPQFSoTCBEdClEmS3ApUcb2JdEabZqPMrlzBBC44KlgwEdxU8gYrGAVl5nEUzzpcRVl0srFRbFM9Nr4eaIxAR1bHYqmYCaucvn9U5RcEpQb1U+HDtpFg/icy+WDO2YjNjnnDS27lSdXPDnsa+E2G21Au1223Hx/RUdIpdIwDNEg8wpqaUjF8b6roZFcgvE5p2H9eDC8LKaRKBpguk/JlcETZPa94NJYfFjVNH6qiDFPshWSLCYgGh4HQMtaa2mW/eXRYNqvfOUrOH78eA5vtcYA4GlPexq6rsO9995bhd977704efLkZP4nT57cM77t7733XjzjGc+o4rzwhS/Mce67774qj2EYcP/992+87/mQi4YcOxeVvt3dXey6ldxa1cHDyj/+p+/Fmb+8AymeReiOICwuQ1geA4WlbF2X44YugBEQQocQbJVBWVExqOlf0jdE6IXYkY99Rtf1soxztLURJ8eL+jzicRUrg+EKwF6YDMS1vhiVHFufUR9mZbZhRDxM5D0Vb690exdYQESZOhy/RISMHJRs6xGOPA3d9pVID1yN7sQ3obv86QhnTyKcPYFu5xhC2gaFp+JBZuyuOzxyYgm6fMA93VU4Tn+HqylhlwI4Avc9ndF3zlHrAqBeykLLIL7G+oiwFZBWEd0iIK0EkMiKlYQQGH1vAxGpSrwQVAYWQJydkbKF6ZiYkpBd2T8Wipa3hcv4qvOJTIgoDvRtFqia02EBFB0BvZt12zjvs+kBToT7CTefX2ri+3jlZ+CebwZjCuSUWFxAtMhsFnSvYSVDE96/D7aTcZvCNkom+8o9LaD9bTCAr37u/8b/5ylLbXtCSgkUZHZbiHXVkAtS/5TElCJ0ATwMVeG6UMqbFLSs3X3/Hx/8dbzgR/+vQ1TmwhSKh1/ZJx0y/iyzzDLLJjkspj3fePZv//ZhfP/zfwAAEI78PSwuvwb9savRbV0OWh7VlctVdIXyLs96FdqBqGiLZIf6qi0iTs0JqdsCcxB3ISQrUBKJlyuolYAuzy2+uoiE7FKii+Ngs4KS1rS9qExuGsvBTRiZFlkI6mmEYFYZYmEhJBsbWUaEsrIQqcUEg4cISmKaSUeWCGtC7DuZIIzAYrdDjAnoWcoOgIcOhIA1Mzr0YGIgRuXmel1MXuIj9GAeQFGJMlKrByakpNYEHJC4R0AUIqYTjJjYaAVkB1wDgjihR0JPA5aQLWTCLNlXh00rStMY6aNYsIM5TlcNfiIEMIYQEFhovUiEzlsYkJCIhU2i2qySCzY1c8Z24jHHA/IqofkY0jyBkVdID4ysPRasLAzB2+yd5UsdK5NLABwYEVK37LbNF8rKbr7p5INN8tNZZjICKrGYXLLuPQvkQJ35AjM/YqIxJj7DRCEhKXkGcZhvph3uA2zYieIHbF00ukJXmt6ILSPBCuEmDWJ+w0p4S4ZxxoPekT8z12FApTVWXLjYSphKjoEqDbIqL8i3xH//wX+KyJQXXCM17SB930iXUssiCggdITsCJhIlDScpAY8MwO4aeHhg3L8inE0y6f9vhgGXgjwaTHv8+PGKHJuS5XKJF73oRbj99tvxqle9StKnhNtvvx033XTTZJrrrrsOt99+O97ylrfksNtuuw3XXXcdAOA5z3kOTp48idtvvz2TYadPn8add96JN73pTTmPBx54AHfddRde9KIXAQA++9nPIqWEa6+99lD1PYxc0mj/ve99L06cOJG3VnXwsPLw//4SCAEhLAQ4MJUXcKOLW3yGMoYhiaNCVayKUcJSFLXYYbXGMER1jAgMazEffBRU0OMmvtaCOUhYH1YaxQAQPXFdjTmVRQPSoAsRDOONBwFvaQXEFdLqNHh1GnH1CHjnDLBeiTnAegCGiH4nIEQZYgMW4GEL4IA+JNX6WiAgYK0zU7uLhGEJJAMKfQfuOmCh50QIvZh8EgjUE6gTVflel3YkEpAEEvLD8GJ2pUGUB/08s2YNMcH+iEWD9LPkIrFqiuUFARQoJb3m5+VsALxgpa03F020PAN7Mcgm9o4ZHAekYUAc1vKSGQZZ8WcYwHFAHAak1VrC4gCOEWm1roix1tTTGsYH/fV/ve181+oJEYp0Ttu5yGEdbn/iE5/Ac5/7XGxvb+MFL3gBPv3pT1fXmRnvfOc78YxnPANHjhzB9ddfj7/6q7+q4tx///248cYbcfz4cVxxxRV4/etfjzNnzpxT+WeZZZYnXs43nv3a39wNgGRilwCkXRSVHvMpq29/88+aijNu73zbfONbmDnrjkyIkcDrtSwklZJYGLB9yHtcKB+3WfPFQA0nh2HMNFK/qn1cn48SMjnUvs5zvjQe8JQMyyEh1GOuapURZKIpey5RsMVk5mgK+PRaRFRzUiVSHOFD5FZQZI+oBJ0UDybCxojJXJmSTqnoQyX1DWwTYlZ0U4YDsfP/ys7Jv2n6c75mk63mewxGTME1ifGIGtK6tco6aM7VBjDGW5mD8o+Tp69buBFiVXngnp0xb9rQfiEB+WwrLQ2X3gg0qArc5IjfkHis33/kLxae0FXCylVllbXQKJtfUK4DVbVrChykH4ZFqLsxaSWbe9mkuv/Z2E8ihxmRhkKWodTMZTkOs2MrS62BZpwgVSRcJuxy+XRtjPUAXq+FjB508Q5deIOHQTDssNaXjmBbmehNI2LMCregolBaanDRoP995fHAtG9961vx7//9v8dHP/pRfOlLX8Kb3vQmPPzww9ktwOte97pKE/onfuIncOutt+KXfumX8Jd/+Zd417vehT/90z/NZBoR4S1veQt+4Rd+Af/5P/9n/M//+T/xute9Ds985jMzAfe85z0PL3/5y/GGN7wBn//85/FHf/RHuOmmm/Da1772MVupEriIyLFzUen72Z/9WTz44IN5+8pXvvKoypDO3gdmcYpP1IO6svkXEZe3Si3MEAf4nOOxzpBdUsJmWlmGYng/Y49rWQwoHewlaC7uUxpE3Z8jEFeg5bbMm61WwHIBooBuTehXPbrVUqdNgGFYouMVIhPO8jYGkmXBYwfs9IKZVkdFK4s7Ah/pgKjDOpGo7qgqVrcghE4WCpClvGUF8hDE8XwoY6hMjBLpJjWxawa1MvBo6mxO80sbaFQHAvKsIcY41DJtfTVcqGLFtF9iuEjKfRChZquu7VNPm80zSXAWJ/oz2vn6189jaZ84CUxZDf3AGx++o5jD7Z//+Z/Hn/3Zn+G7vuu7cMMNN4zUxE0+97nP4Yd+6Ifw+te/Hv/jf/wPvOpVr8KrXvUq/Pmf/3mO8773vQ8f/OAHcfPNN+POO+/EZZddhhtuuAE7Ozs5zo033ogvfvGLuO222/CpT30Kf/iHf4g3vvGNh2+oWWaZ5TGRw2La841nu47kQ5JZtOUXRwSnhS6v9Jf9CnFGEYeXlhAIotnlHdADhjm8Q4Ymj4rM8uVCE24+Zh0oMZBkcQ8CVto6u8FRNHuoipsAxW6FuSGoP11lq4iC6ibpBKoRJhqfOYCDWThIYAhGInaq/c7oSDVoiBDITAaDaokTWA03JYcERkCv5p6C+Lj6+MuEGBcX/oDCWocD817bz3lLa/JrMIibpc1VayF5e93t2cexeFywyf7CG88yraV5B/nnsG8pr/nBLd2tOP9v+y1ZpuMl591xIdNKH5D+ycm1GSGvYD/yYQaANn3fEFVdPSswuHPZl7AQxtfbY//zs5+Ta5K6fbUMBPl550fb/NTJf6Sooqd9Evmf8mQ1N1+qypkS0HcH7TMXlzwemPZf/It/gfe///145zvfiRe+8IX4whe+gFtvvTVrP99999245557cvzv+Z7vwS233IJf//Vfx3d913fhP/2n/4RPfvKT+I7v+I4c5+1vfzt+/Md/HG984xvxj/7RP8KZM2dw6623Ynt7O8f5+Mc/juc+97l42ctehle84hX43u/9Xvz6r//6o2yxveWiYWW8Sp+JqfSZil4rW1tbWV3wIGqD+8sAsJo6hiC/bhY/AfULRwcgR3qZn676zW8v5nqG4OIXm2rq1AeZDT6Pfx3F2WiCW5plo8hL3J5ZEp9pzAj9EWBYCWBcLEDDIDMaSIhdREgB3e4WKHXYHY6iCwkRCzCANQesuk78ugbg7DIhdcDO0QDuCdzLaEFbPdCTaNcvQjaRs/FTjhtNsSADmYwpBSkIUVZ6mVO4zz/4KX7LQltiRcbuDc+OjEC5ePqv8phZe+xSGienSDGgftGz35rKG9j0fucsTWLg8mc8djM1l6J4h9vPf/7zcfPNN+Po0aP4yEc+Mhn/V37lV/Dyl78cb3vb2/C85z0P73nPe/AP/+E/xK/+6q8CEOD8gQ98AO94xzvwAz/wA/jO7/xOfOxjH8PXvvY1fPKTnwQAfOlLX8Ktt96K3/iN38C1116L7/3e78WHPvQh/M7v/A6+9rWvPV5Vn2WWWfaQw2La841n5V2/BljcSGQfr/rhXggJt4DRQWQTgQUjqNwoVeGyiZHLtNjchHPRZmvztywUraSEkUb7VJp8L0lDm65XoIllUE0Tl6CTiSxTisKbWGgZVZlY/K6RrAgunwdGdMkATCG6qrOSJwXXEqjyITsgZC1/MRlU/24V1ZP0HlLXrmIyim8uuV39TIwDqrCB4lNu8D0T1fE8mGiateV2fNxRr0glbETCbRKuI5IrSO4jbseMovFmeZhrO/u84TqNPajyiScPi40Aa8tjk/aZsFKkzSh+T8xMMZehqW1DIo7CfdAEubVXmvJTKWaRuak8Ucy2cXW+kVjz92L97srfHu4bhA44cc37Y3iP82MSDtv3zVkOLjfddBP+z//5P9jd3cWdd95ZmTb+wR/8AX77t3+7iv+a17wGX/7yl7G7u4s///M/xyte8YrqOhHh3e9+N06dOoWdnR185jOfwbd927dVca688krccssteOihh/Dggw/iIx/5CI4dO/aY1RG4iMgxYH+VvsdaCBBtqBT1hUeoqQcn3l9DTm3O5V1+eSi9hIS07lk9X4eiJ4KuZ6AgmIO8aeW5iiZXB6IAjjtAt5Dyr3ZFfYsIgQOYCHExAB2DiUHdGjuxx5oZD2OJhIREoim22zF2IT4IxCpXVfOP9MAiiEllHxB6ZbeCvDi6vsNiGTIoKZpiAqa6ILPAHalmGQrdakSamVlqDfNMjp13VPxOWFjbjgVQlEEQGSPyJJ68EMXXTcxEn6iSnD/Z9A1g0vqJy3GaeBmPOVBquBwMPHzf356X8j7R8mhU0E+fPl1t3g+QF3O4ff311+ew/Rxu33HHHVV8ALjhhhty/L/+67/GqVOnqjgnTpzAtddem+PccccduOKKK/DiF784x7n++usRQsCdd955Dq01yyyzPBbyRGLaxAnmKwhhAULQcSJWX7eHIsaAMnNn2C9ryDhCLA9CHg/rRGYWLQM7/GYaZ6x2nKMBjEtYqCety3VMYsGs1eIHUx/fj7GBAKfZwyhkSVCiK+gCApKn//in4j+LCGU5SKiXFleHVCZEDQB2ZPmIy5LO8gLQU8zmkETO3yiKGaWls31y6MDWACcXMha3CvkemJqs3ax9qgu5SeQ7qOF7SBOp+7Ts4N8iWH6ZrJsEcQ7heo2tvKuYsqo8lJ9DSQNGXiSrItt0M21Fw0vcgijKF9xNpDLF2ohynUrjlGS+zwHIvsk2Kh4cBtxadZu93dArb+ZV6V3TFl9g9c+rrGRZzDjB46KVnnL4oltz7hWBAfRBNNFi83O+FOTxdBXyZJCLxiE/ICp9X//61/HOd74Tp06dwgtf+MJKpe/xEBnnA5DWQDoiv7ZJGr4aDlAcldaZyfsy4pIyrcygCDB/EU/ci8hmXtyM2KaYmcwTwpPTWsKpBw+78vD7HlitwGkbsYM4BV31SEcj0K+wvXgYu3w5gA5LJKxoG7thhdTtoGMgbAGrHcYSABuHuN2DHhmArQDsCvAJ2wReE2IQkAMSvjUkWRnJ2jeQ+AEBLIhAgdF14vfDq4wHOBV5LuN6UHTCZA4zBSR5bBDyaQFGrXllIpmRueCFitbYJfSrA1B+Z82jkd9gM5uXLR3aMCoUaJvP4sqnPBbFftzlXFb2sfgHXfb6XBaROXXq1GT8U6dO5esWtlecq666qrre9z2uvPLKHGeWWWZ54uWJxLQUgmALFgN6TgNC6ICw1Hc/nTsu9QSABZAjq1KS1RyRkCdTgTLj5hkQQ5BT5pDtgJaju69vry1Wf+HX+bAje0ZmnC4MSoR1viyEkfpTUu4jmGYYISFmmioxZAGBzq01z4DMmKprElD2E0W6DGKEmEMRAcRJrutyiAxZ6KujmN3tRyYsSO4qq3lyNb4nXeVTfKKJdlsmaNiIuGkE77kfjz2MLMwrgGv7GvasHgvq8BZ3WJgRZZ4savQQJ9MRtP2bcvs2Z+ZMajLLyqNM0qIdUXaCL8peXPJW4of0PqNmYoA614+q1aRcqxFqR/vsKgkX5isL+a6kjkaaXNQkK/vpSWzOlie+fDXpaMdGglm5888J9XHiyZqOyqWlyt8Xuf8cFJ5RKfbGNHotsRoz5aSXDjn0aDDtLGO5qMgxQFT6Nq2M8HhIXnExf3Gm8ZvIX6/SyWjJcP4WLjGRGRC/ljHgGqu03+MkRAGghQ5cBmDcw2F1Q8pDKVe3BEJC6I+CFkfRLbZA/RLoF0C/BUDML7kHQl4lSPJcx21EDoixx9lugRgYkQgrKto7qSNwBwwdsLDRvZMpjdAHpJ4QQofUJVlRsGMEYnQdIUUhybokDm9DIFUR5uJvFuaXoqwOY7dJOkB4osxjyj6IRreRZonVNxeVlWXEn2VpQ4lLFwXR1JI9+XivgfUikArnt9csjOq41bfLBmkBTXzgwXMt4gUlFGU7bBrgYMtezzLLLLMcRJ4oTBt3BxnFQw/Es7JaYly7GDIonhNmG2HfTfQF5W2Ei/2XdosubIVLToXAq9VYrAbjz18/2FckGNWDoq1yaWnMrqxTVxiquMYJ2TaRFCMFUFby6bjDkAYhSchgaADptwDUrEz4MwZxB/NNTLqcIpvmGZVFDAiMENRsD7rKIkOc/1NA4g6gDkl9j7ERarndpcwBSuIxlYlSFJ9kjKKwNIWfbOKZq9CiHecfp/sUqHghvW0myQyqV+4vfHwqbT3pbouLDzUjxiyeXxShrKlAuZuxMnuUtRRr/CQzzRkIS71SIXQkHwINbcG04hYpcWkzsu8Q/a10Yo+RDIxb0zafVZyE+OMWy1Qd30gt6/rkfgLchCmd6I6rZ9oE5UPH/9k9PYlG+gDbMDsORIhKCJre4vnA5L5MKYlJJfTnJdqUl448Gkw7y1guOnLsCZXuiCzZSx0oLFCmMKIOPGHjr3kzOFBJazB1qGbXLlbRNzURgbuFaNnREgRZzEBGlYUuva3kIvUob/7g8jFvjMCo7cwXRXUsb28KndMEg5gGdH2xsLTjoK93juiWlyOlJNfCEmH7BLrLngbauhzh2AnQkctBV1yBeMUxDJcF7Bxd4+yxHay3zyJunwEtdmRQBQNBwEoPRtRZndNLYHuQVSuXW4RuBfS9+hU72oE4IcVelqFekDRDFxCWBO4G0AqgkNANyqV1jBgJ6zUjJcI6MNZRWqAbgN01ZSIsalP3kOaMpCSYNXcSYiwlc8TOiBACjVmJMU/wGalIoi3mCRcTD67cRFPOozVI5g1hj0Y8riiWEVzwLwTnZBB2sf70HLbfL46JTWJmsGnReNzudv1pL/gH56vET6g8mlm2g/r7OZdFZE6ePLlnfNvfe++9eMYznlHFsaWwT548OXL4PwwD7r///o33nWWWWZ5csnX5MXSXPVsG9q2nKqFAgtcigWkJimslog6qE+6/nIX2oNbPGHXF95j5hzC/vaa5r+ZpRKHJD6i12TwZpulbgi1sxuWw3I208tk2+VAnPnRNgya5YsUgQIs7RgoJMSQwMRIlJIpIXUQiWamTQwRTVJ9jA4AIJvGLSxqWl0jKkFbQUeSAwFGVjBiJCZGAHqIZJm4ilPQiQ3LACh2AHgEJwawEELCQNS5h9h1rEDoEdHkK1FyMCP+XHKMRSLTUhNjjDLK8Cy9Skqogc8GLiQpZxfovE2Mo1ybJtdF1zmll5cdyxcJhhJhqh3mCiZILYyUZkgO7noSzwtreS0JRl0rFOJbND5lX6fKNlBkaztfYPcfSmEauaZAylnFICD1lSxH5KbBybkY0FQTuSbHcrnae+TvOxSQlyEtZCpDMwd6c2Z6IvU9cPlIszsemzQXIN01Kci8hygtRdi6SSnMiqhYnAkCRcES1OdOj/sK4cGTWHDu/MpNjh5ATT7sKD51+RBxCdr0M8hSqb045DrWfhqzO3YH2BBmP5ofqGf7Dpjvkvf2Lus2NZB0cooSUgoCbbgkKCzAv5H4cC9gKSYBHbhcqeSu5RX5mML/jFcm06yWzTuGozzfqt0TLizpZ7QUBCEsZ8PWFTt0C6LdBROjAQOgQFpeBjj4FYesoaHkMOHoC4bJj4MuPAtsLpKOEtD1gddkueJkUk4kJ5BatsU5LJBDO8hJXEmMdpE2GTogZ7hhpQeAFIW4FdFH6SNjqwOskmA4BFNaIOwQkEk2yEBFXCYESuo4wDDJiDzrDRIMMBEkHOFqrKjEDqyhEUFBg0kNIs6isVGQlw6ADCpex3sL8+G89IMNeBy6rVy7XwNOPp1O9rrWUOEyv9r/Fqmc48ihvE+PCRatB5tvetx/2Icwsjj57Ire8N9VgNhBw/OQz9sjp4pHHY5bNO9y2ZanN4fYmTZHrrrsOt99+O97ylrfksNtuuy076H7Oc56DkydP4vbbb89k2OnTp3HnnXfiTW96U87jgQcewF133YUXvehFAIDPfvazSClVzlNnmWWWJ6/0i20sjj5NzCvDZQjblwMhgDkCnBBMK2tkh6Uj6KQvMjfa2KqURlqFTj/WbcLTLUNn5yGAVCtMcirL1pHFy2TXOK0UoYTbypjVtdDeF0DXlZJnwk6lk7QcAoAe6Aipp+xDIhGDO4ADgwOQOvX4HQAERlokoOcMuthAWJeKG2Ji0WgJERS4lEtJwkCUJ+CZO3TdSn2JBQCdTmUGMDoh3iC6Xwk9ZOmoHhFABAOIeRGliKjVMCf9BKakmE9MLYEE5oCIhA6sbrKUxFCNJzGhJARmwQpNfzByiJRz8kpJ+XPCUhgGY5dFQ2j53L2P3ULImCmlkDDBxTetM/FlZrWWPEJCjk+aFoaZLV4uC5UAd13Bu4Fw5JXoTV3Nnq265eNAYqoZzF9ZAGLSvivPgjqpGxPp9wMBg3bXXvrGAkF8kMHwrpl8apqKahJC09qKmVRXwSaO5flm/QWHDUMgxYiW1oVZfRlI6ovFk2IMJWQUTxrpmLScoSuYn5nyd8e+MgF0fRcyq5cAYNlJ+DLkn/YlIbPm2PmVmRw7hFx+xVPw8MMMWnRZzRkghLDIb3cjCSpVclKVcbXnn9QMy2EH+ZydSmc3tjz2i9uUMTP83Earrkvulo5gzlKVZpIjfaOSvulkQAeIo7zc1U+CpSXYipbk7iPEGAN5lrHMIgYdLVSLj8SXQh5FVBuN+iUoCDEWGKAuANSDFkd1xmaQ/Ppt0PblCN1CzApCh3D5U0HdAtQvgMU2wmWXgS8/irjdIS0Jw1bC7tEdcIhIYQD1u6optkIAsKCIlHp0IWDAEokY67ACBwL3hNU2o0uE5S6QlgEUGbQIoqp/RNWtE0CDLKseVlK/XpmuFGWGLjDQ92XYCyS+xroADClg0THWg6gPd2sgMiMmEgINRpzJDOQ6ahgVhT7oGGyDbWJCfp8StE/L8woKaJMBB4tDzqcGyuBnXCdX/YtzL5BsuCFAMTkbBs03Yw8PtvJB6aX2a/VjI/MGvH+BS/4F0/jNIYAR4wuNMJRXbn6Clok1S9dfGkMGJdkOm+aw8ta3vhU/8iM/ghe/+MV4yUtegg984AOVw+3Xve51+Ht/7+/hve99LwDgJ37iJ/CP//E/xi/90i/hla98JX7nd34Hf/qnf5qXrSYivOUtb8Ev/MIv4Fu/9VvxnOc8Bz/3cz+HZz7zmZmAe97znoeXv/zleMMb3oCbb74Z6/UaN910E1772tfimc+cVxudZZZZAAoduq2ngDqxhKBuCQo9iHqEzr/nGeKryvmSncSwoTrOE8TUCfbKhEK7FbKq+ADSgciIMU9u2XVb9Iqg7AVVA7jH33nvNyMjvNq7H0QtTvDl0Y/+nkA9IanGGAKQOhZ/sKSEmRJJRgCZ2RyIwZQqRE2ZyHDYPSG3T0pRmsKRGYaLAjEYHSIndBgyFowQ7GhhkQiRxc+cEF2kJFfQW8VMCCWYcw6dHDNCk7N+mp6zavtL7KyYxTXk8C6tPGnh58EBVNpkOb3DiyHlJyGYhKFtUThGchpLNttpJBG7e4AdYcTkzDMFc5KaS+RyG7g1rstpllXEXUriMs6OUylHjkgsml/sEhNM4UufP+efS4HUpX/Ib0pcr6TIoI6QqNyPk2Fvyl2c2TYePQfT7kru4bUKY7ZR/sb1x6phRlYXq3PB6pT/lb2HnIARwULkkhYuuYJoT0MlTXlZZ8PtvAv6rROE9BCtRyAsF7hU5PHCtE8WuTS+dB4noW4BdKL9JODBqX/nWEbkeLLJBn0b2NzAndMA49fE3qJKtE0hjUxwLw+q87UyhRETUFRuLR7ci9XyKi9wGzqd2rCSWBw6sYVnJcjSGggLBJKZScq+IuRtyyz+HYgIHKPkEzoQG3HWq6kkgfoOeXhkBnU9gle/B4FDL0Nh6NF1C3mZxgHojyD0PTLxxoywfQLULRVsMcKxKxGWW+BOtc+WRxCfcgzxaA/eIgxHGGcvP4u4GEQdfnEG290uQrdCoACiAZfTLjoOWPNSfH+BsKYFdro1tnoGRUK/ZAwLQhcYaRFARwNCYgGnvUAQWiWERQAf7QEekGJCWHZYBIB2EqgjdD2BVgnDWh5Bn0g0ydaMvpPnt47AkS1giHIcFcEwCEMiDInRBxkwYgJW2sK2cqFYoOqAwub6tUywRj8DF6Cq0eV6Ic3KYJ8HrqYLG3mWPWtQa4qZqn5pCuxl0QBufkmsWoNukHaET8lH/bEd/Cf4hEuFMzaQYFOkWSuez9zzfgc2r5kF2N/h9t133129h7/ne74Ht9xyC97xjnfgX/2rf4Vv/dZvxSc/+Ul8x3d8R47z9re/HQ8//DDe+MY34oEHHsD3fu/34tZbb8X29naO8/GPfxw33XQTXvaylyGEgFe/+tX44Ac/+PhVfJZZZrmwhQhh63jGSbTYFoxrK01mIknNKvP4UEbX8ZBDWfOrkFB9GYS8LZfT9iISsiv7HcuEVchjtw+r/IxZmDefNKKsJdUC5QGefTyCTNz2Wk/D7x2JxpgVn0i1xIQ0SwuoQ/0E7lm0woiQOCL2A7gT80rmCO5SZoYYSZ3oA0DSSamIzLRk9SXDK9IuxXgyYLDJPaJMRIh/2fJUkhIJCQHEHdbECJzEJxoIhIABSVxjIIDBiGBsIYERIBOigBmgyaJLRRMoWTuR4ELRxhpRF9K+KIRWJoJcd2gT+b7V8EKOT3JfQd6nmpFo9tyNz2vLVXKX6wnZR1m+v8uis7pYHTKodWW2wvrCe8BbBUoCM0tlS+vAMweGeKQhUCeLJ2DQ+wRCigldH5CIEWKQvBLE91wy8A5V/+esXbZJMhloql1mScBZ76GqSvFNVqoU9Junfb6BoP7tSvqANj/dmLKVSgfK3w9SRvInWj4j/PS30FQzBKDX/jFovsvlTIHMMi1zzziEPP3qp+LU1x4EUQfOvsHyq0QiNURUdazXRppj9gamJq99pGRjB5bW3tyov3r1PsGAybgQJS3z9GydxinDhxFpqL/CIwAKCOrTi7l3A1VC9iCppqnBj3693csGXiW6qPh1oyAgjlw9OCUFVh3CYhvoF7kOedXGfiuDK6IA2joCdL0Sn7KnI0eBfqlaY0usLifEYwlpe0DaCojbEcP2gGFrQDp2BkeWK1kEnRM6JPSmgkMBiXvsUicrAgXGTt9huUjo1+KQPwVG6gDugHCkB0JAODMIJtpKwNkBiAFhSwerDqBHIlJHoJBA64QYga0uoF8mxDUjrqUdSCaW0AVCN4jD/i6YOjOL09bEWDBwdl2Iry6IFcCgg2DP5UkzC4E0uNXVAcA88KGJZ08y6OPM+VifyXmXkawlpxhSrmKaOf6dlEmq0h9Ljm4+mupuWmK4mx3s53eo6IfMdu+8GGhfIfvFs59nC4vaN0d1LQP5IltXXHH4Al+AQolB+4DEqTTnIns53P6DP/iDUdhrXvMavOY1r9lcDiK8+93vxrvf/e6Nca688krccssthy7rLLPM8uSQrusQFkcgk0eKf0IHRtAJ1JDxmcdjtdhg2po0TphMgmVvg5E3b4Qzu7TX7IgY82lccXxeQDlu8WsuB9WaZkRgJc045y2TcuiCXNPVHhEI3AsWSR2DeyB1uhGDQ0LsItAlMWIIBqp0Cyxkme6hxwjq88KmBDOAEXREJDRXAJQkA0jNKVkpIsHl5dyIxkQLRAwgMCIHrNGhQ0SiIESBfgYSxJSW0Im1ABidTkQayhZTzahGnJpKyTnBC9wq+mdzNkAXd9DSSzdwK0l6rGLYhet87LHbCpRe7cBzUqLAV8wihWzRNEbiocQ1bavsC8u6C8pjoACkqD52XXlHn2HW14xBy6YSGt6hgLMgFaSoCxgQhIztikoPBVnRFKYZFNRMUmd4Sck1w/sgiDaZkUVJbm5+xMhW2togXrfCf856E8uqiq7i5ofOXgtmXWpxgugzIDJX7WbYvVX28J/EtfqDK2+uo15QTUJ7Rp6g6wD5hrJvm+1LZzGlxxPTPhlkJscOId/4xsPqiF9nKPKbgwqYAKpfbhnIPC1QvUXrI//mMWn6b2XWOCKuXKwMcEqckm5TLdv7T5SV6visquKeqKI+qJYOw3wN5GtdB7Cqs3rtNUdulOE4gLqFDpiibUZOaw9EIKiDVyZQ1+umoC7Xn7RcqiHWLUBb2xLcdeKsP/SyIuXWFtAvgcUSw+Ud4tGEYRmRlhFp2SEtCEMfMWyfxWLxMEIYEEJEhwTCLrZpF4l7JA5ICNhN22DaRSIFX0lV3EE4uwWEFdDpAMqRwEc7dIkRFgFp2SEsArBKSGd1Rc20Au2KP4jAoRBLFGS87Qi8G9EPlN2q9myL65DMcILyQBcYWOpKLozioyxAZlhs1SBWgqpjoO9K/Nzj9CSPhf4c5TgTY/pY7J6bxAMU6/KWj49kS2wDpfsmLVg16BpYauLa+UHJJ59mv+ibrp/L0OTL29bhsDIFNtp75RW4CNj9u/vP7UYXmMwq6LPMMsuTWVJSPAQIdggL1d4XzS/jsApT4LGjYMkKvWZtsC6fU9DzjA3dl7Yn0VyaTFxBr7t7lvuU+3GnpNrUBik7EwnOI3NYXuKIo26qBlQmiF+nDhAzSLnOAdn1AOs1M5NkSuJvTIvMysyI433oPgEhOXzCoGADi91c05tpXxc1S/uSsG8OoRNE44i03D1YluJzykrq4F2fKVPAGj2AAUYvJRASF0sUIcHENHSh/SOBVStM/JpZiaBER4Jo70cWH2S5SUmwZ6f4rEZjE8jD4GwDHNsvkXpz7jIMdyoZJhpt+vyqfFryrKTJ91P8S/aoCyOUr7OPS6jZJW826SsX5Nnmy0HwRcM1Zcf+CKqtFwCOqRQYUA0v7TaFxczfk9m5vpY6BMXzGXT752Hfllb+2oSx+o6z9mweoSex8rlmaeFdMMf7pdz5m8BKwnUahlu7wAkp+2rfKa0wUNZd0z6ZjKNf70ykuDhlxrTnV2Zy7BDyrG85iXu++ncAgOJ/wc30ZCShI6i+NexVQ0oiVeK+risCYCpOPrWZPXsj+k/0KfJNy+GnAdp1lkdicfWVaskq5oNqsNHmYJ6985rLHhjpcJ8HqzJqsYtLZBpiBegg9LL8eLDVPXUfOl1pspPXvZXL+6HotoQI2z4K9J04wwRLWNeJxpiSY8PlPYYjCXGLkLYIwyIiLhN42WHY2kW/PIMQ1qBuBXS7wJEHcWxxGkCHVVogUo+IDitaYiCCLYDDLGAkghAXwPqy8khkpoXBRwK6dUB/Yom0m8BdBAVC7Ad0tAAeWCFwQFCGK3TiwyBGRlrLwtQxJKzWojzPnWtjUi0x9SHG+Rjin4zFJ1kkeXkOXDS3bCBnlkdoas8A0PTsQmI1cUbEFoqJo1eFrt7b7vHLae41hXxuuiBDJ+monY+qy+iyf1Qk07kkPcfbHSzvfTKvgOIecfN3BIAjV111nkr3xArFc5hlO2T8WWaZZZYLVUIXBA8ZxuuXyFpcJRbKwlPOxQZR7R6kIrPkPJtXGn3RfllTIcgyHK1IODc4V9iRSvpgq1xu2KDEkTE1Qc89MeYHONMe6+W+mQgzNSPdJ4X4TKIxhmD0jJpYkjmdAoQ8k+NERp4Z65LGgCg3GcvCnkTVWM1MSIkQ1B8FGzAj8R8WEdBl8qpmG6RJRActcodArO4oCtkm7vzF/cmCAhIBa7WIIMWJgsCK36qgTIm0ScjYPyuFcbMiuAEmhyvzJByqz6K8mUmmfVVVmGvEP1G5j+VVDd+U253aa1Yun7+1H9w1j5+SS8zJaEPxGWIPL99DKpqtbeySqlnZ78DMA61XWVoCKSBH6aMoeDvvoZ95PZXVtsDlUyz/Hm3lSsnbvgvsrtZnXDMAYLUKEif++f7W5TGWqoldWUd9H6XJApWJeVD7DN1Pp3pe5fsxaxtSeRRMUMsmYOvEiYmSXpwyY9rzKzM5dgj5+r2nhYhhZQg8KeUHdD8wA3lWo/yKHVGUf9FOqyvL5i9Wc35YBprx57lojZX4HnAw70cYtMMTj69VUwdUkujvjTubDnB1Dh2yhhkjAyhZiYcBjjqwCCiTmUfV6rJVjAzAKUDKppZdMQ1A6JUUKSQeAKDfAh25DOhl1SHqFJgRCUHWL4HlNuJlPYbLEuKSELcYcQnEZUBcijklth4G+gGpG0D9ANrawdFuhQUSFswgDlilBYbQIXKPXepxGYmyeiLCABLtqx6IEeg6AXAcEkSxjoDtTlSpI2SWJzIodghLgC9n9A8PoBAQhwiOhBQVYaSkg0nAMgDrXfEQVrSzRD0/JVldiBlIpJpkvfgf64KuehkARPcYQxlgAgs5Zu/XVp0+9wUar3pZ9RUq42Mq3ccWg9L+imyR4bpY7qFo47o4BFQ/Oeu6bfp9yaSJexXAOnHRl2efvM9FDlLutg2m0h/mXjt/+7eHSHUBi6lHHjbNLLPMMsslIHFg1cJXYqRyFaIUhGJZCk6Di10UpoKfDMOGrkyAVkRU8Q3liTEEmcwzHJAhZj6fwNbmY2y08mSNv2HEWLvCpc+vM+01ZHzJVldiNas0fKPngcEdI+o+m0sS8qqVrKSYtC0jUYSsPmjkWZKPfw7I/sb0nlL0lLWVsmYUS3uwkpX2YeExQEKArPRnbWpEix3bFrLTfkISp/tICOgARPFLxvYwgq50SUoyUCG7APNQJn0JommXSlUAvzKiBTX9UQhSYy+qK64/op413aDllX2buXvlL7LG2X5VmgwcmzJ4M0B7XC6J3Z/ZliawulSZlt+MK1y1CBLZM0vFEkN/X9lHHZV4IOiiYzF36Qr/EkQTLpSyCXDXPhxdnrmtISumZl9jHk0DWRON7Sek1kMo97ec2OqX2bry0wxwDvz9Y3DfBPYsbf02v+BDBWr1OBPlWvbih7g0LzNkPTcC6OzDuGRkxrTnVWZy7BByxZXHZIAPPepVHf0rllxYq3Zu9LZ1yNrkr0wPuVTuxWPn1XH7crH7uOGgukdOq7Bj45d188aq1NuLjE08KddPNOXcSBZ6jHydUQAgoEzqo1uAzmT2buTTchhgM38YRCAyv2GdEHBBTSuDdHFOUZIdPQ4sF+pLIgBdyKu+oOtA/RbisSWGy1iJsYRhO2HYjhi2BsStNeIyInUAugjqI9CtcKQ7iwVHLDhhAd0nWUJ7QIcdWoLDDhiEgQhdJ6RSTMDQi5kiOq1ulCWleUmgFQGJQInAkcQ3QSSEZQdKQFgkhB0g7tpIJv4vgj13I0h3ZYXQSNXoJIvpaDlIQRZBz4OU8YgOMDmuvoNN0y24BXngHlVLYBnx5ZUWPQAw073KPNPSOyCSrznCzbo8o9ybmvR+iK9+pZt+Ao1QmxjlPh6Lj9IdIP8RcTWRpo0z8XPcnH9Jcmjxabaf+tRzyOHCk3mWbZZZZnkyS9/rxCPIrSzuR0bbN2F+MM5fw4Y1ilVAnd5hRE9weUKOHB6tCCy4NHocNg9+XpOM7T7+3qCiIRZcXkZMBNkE3GhYQ5KlUPyJ2Qf7uCCQ66GQYay+wzJvAiEJUgridwxQ/iZlP62FNJMKZ/zE3JBdhfQa0KHPdBZgBCNDfFEFspUqCYk6VaQZYEgtKLMi+Er2KRt3JvQEBI4FqzHk2yibTrZ4S0kz1zNGmMSTWVblNo6dNARWVsTjOk3VhIzs34yMwsoPrymNAUpCbR7ho+Y9jz/DmuiupPI95yxpjUyz58yZHEW2UWQLIFe+qoIuP5K2JgXE5uzfE1f509FUs7QtKuqSnJZZrmrb0zkb5mRDITJNx+TaE5PfBVlJg0okdqf5/oxiqaJVNwf8uT4+832ArqQHuiNH9o54EcmMac+vzOTYIWSxXICoc0RO+wluUmz36+shD66UyaQ6XY7vsq4JrCaNXcsmm/7cgQFq0tpAay/RUf4OwLT3zbdwTvsxdS8WD5aA+PiaZA6Mwhc0EvpeZzBtVlC1xxDchJLUzXxjZD9kqmEmmmNGknXg0AkZtujByy0hw7pOvdPrsRqlpyNbWJ/g7HB/2FqJr7FFBC8iuI9AF8EhIoYI6gYstx7GkgYlxwYsyPYDtjCg54SYekQC1gzs9oyeCZEZQxLtsdQzeGCEjhB6IEVGXARQL2wUd0GdfckLkKMcAxBn/QTwjniZ7LoChaQnBn1kCViLxhozCwFGMotGMO0xhs7jwhTRsm8AksGp1+6VWFetVv9jqXm8/uehGuPVRIVpoE2RPq4HTV3KJ+zu4/MxTNN2OZkbLXH2Iq78pU3aX1N+Eg5KtlX3OkCac8q3OW/B6aGzPJdCzDLLLLPMcmGJanmRJ4/8V36rYTXCkRIebEbLryJZfbmXjTVN0fZvfIr5idz2wx9AtSrlhq0iZix/73BfV58032Y2oZYBgSPBslZPUM0d1eBJHWfvKdlskqBaU0JIJCQkSrKaJZHOhatzJCpERN57x/S69GOZsNRpQCrNkhjqh5c0rW8wNa8E8ncBq5bfFKGWdAtkpSGnoCV5EltYwGDfDcSavdFfxXwytyvgwIbrYx63GU4032CaZsQBcQkvGfhSAp6tLN2nfOmUPGkMMj0Ppv5AjHSD29jFL2XxgSgalQY6ScklB4KLYWqpqJG73EF8mqBqLpRZWld9ZZCICJz9l5V2zuQRKeiG8y1m5QuoTS8h1jwVrq4eqBRAMC9X5JtI0P7akGyOoDMXLRUnZ6f+h6x52/ocTKyaZyjfhRWgLeX297U+aVHJ+7yeZRYnMzl2CHng/ofhnc5nL4L5B9kM7i3pRPmVXIer6BCGAhbslR7aqGOp3kxUwkZlyRnnt4bx7yMNsKrcJW2ZOOT6mj9WtXoOtiiAameNim1+KQKod5pl5tiVVEVfQRyFDtAlp8Ep5039ohBiXS+EWN8h9kqMqdkiLZMQTT10WUYl0nrxOTYcXWPYXiMuB/AiAt0A7qJucpy6AdxHcGB0W49gqQRYDyHItniNI7TCUd7FEaywTQOWFJFAGBYBK2LhuRKwiIzUEWIvVp1IEKf8vTbXkgDVGEMicJJzDAQsQvVUFyCszzJCb9CEQYFBurpNCIS+T6IBlmRBnJQYMRJiVLIMlAEZIucBhdnP2JTjoJwdB2A31qDIBjgb+zooLjBizfKiEse6pvkpM0U3aq7nLtx0dytbHvza/gZZzrkl3TAR9yBiZavKcwiC7LDl8PHPpbyWR9s2ByX14mp1jne9wGRWQZ9lllme5FLwl7ET5MaCBkc2Wl0eLwoR0JpSmlY/VWHm8yubamZWAO4+7qvYBllvGunD81bu4/2KZRIsx28HO/GxBUL2LeaJseyEvyOkQGI22ZkZpcO0DowxuGigWW3Y7mWERz3gsgIhBhctKAd8iBiBEwJFdBRV+yuAxa0/TMPLa3pFBPEhSzZNKtg5CbUA0n2ALB7FSCC2fIXgk0okTZ20OAGRJG4gKQHU51jHThOqkb1G0Cn4ITxOjbDy42YgcFmBUirvGoydrzZ9AMxlqrgCnb4EjqsaFdi6nstXrISLmxvDrT4tE8SIJrn+wgBx6Q/j8kB/P1wcyY9mkrWLdyTuTRjiBiW3m4H24pjfCDWb9PZVN6LMVpUMTIic9nxw9lPyGmT5S1QfgMfvrvplNUtCJuK8GWbh8pTMKxxiLnf+bfmb2A/HPwOUPCxtnM0qH5uyXAIyk2OHkIfOrJpBlcqP0L3aW78NU1+dVYrCNsF0fYo6qc5Y8V4mkD4fewE61faG3CrXUcVhHUDLaOKPJ/a5inKe02f/FLaqp80o9lK+aioiZDNIAzNZq65TsswIMrcnXVWJjSBzhBgvOl1piNQ/BIBOVOEpL6uNsrx2B9HC6hhJF8JEADhEcBhk6wagi3njbkDsBhwJu9jCGkewwlESUmxJAzpKbgV0W4o7u+kEB8a6J+wA6BKj7wDqxXwyRBb7+shIWwFhbWyS2jlGFo2y+t0vxI8CmRREaS8NgFcfNyeuNvKQDr6hIyHLYsKQxCF/UoDmybHkjgNzNpVMAJZdIaaAMtZbr8xmk1C8qhFtMK1MMzWOxysbe7/DFqOfZxPV9+DDaHlNxZvK+7CKVeO3x/mNP5Xe5Fzy2b3/EvE5FnV51sOmmWWWWWa5BGS9TjIxCMBjOtMocYi24ElPdjl8mMc99dvVEmTi0B/IVhfVqpb5xno7Ow7ug5ecxhhKmopca7beWRvkaG08jPZeCYuBTHIJccZQm8OsLZbMt5gCkYQEzppfDqPtMdgah2cWbpTZl6LXFUgW4XLrMsI8fSHfp/n2ACFiASDKE2VZKIDYnK+baaVQZ+ZLTFEjAgKIxKMYs5FwqoXlfINRfvjWFs4Bv5Jm4uOLN+IOyzcTU1Ypw5sY+0ke58VKOtFY46vJM5dd41FiUKL8iEdl5PFWzDgda2M6EwRn+qf9w5N3tD9ZKH1RVcE0lDW89G0uv1uG+hQr/ZjyN6RliqqNHVdUl0v/kWmc+abg+tj8kuWfrvNBBi2vXz9upKAKp11mbQdf5KIl5jy6Tbo6qX5wdn/msqqnL0uMG9v/opMZ055XmcmxQ8g3P/sqfO2rD9SgodqLZFvuKTJJD+oXgx04gOLBAqjkt+/XbBvBAY7JsthlB3jcvWlT+jZMB9eyCEADerwDVujbkZP6BuvLvf0+k2GqMZa1yYLMOupKlUwdeBnAvTrYN3KrI0d0AegIMSix1CWgL6aKsgdiL8txpy4hBUbqILOEgZE6ccDPul9uncY21uh1zg2YGj8NDBiwaK7r23/YEnIqRAb3BI4A90BaEIKZUnZwZpbmnVJACsuySaBFjw4R2IkyEJgWf9CVj7wdIxcAUw4ICxKluo6A1cCiaQYbVFjhml8/Rx9palaYdIMcwQM/VCaVQdXNAqmZZtM9PQDy4/tUT8+DL1BzsBO/m6mwiYm5A/3s9v1Znse0j+ZebbtlbHHATI+efOajuPsFJKY+edg0s8wyyyyXgCwWiqkAVKMqAaadLxCumEG2pFiL85xeD2r8a876wzi/CvOVvEYYUstS40ndKr9hlGfWyAgvTBYJRvYVokHj29Zh5FPMO1DP2mVu88wKZ3an5mQ4I0NFiZm7kISs5m0UGCGwEGNcTCzlWPaJVSsOXnsMpZCuwsmc8DcowlxweE00y0U4Eq7bwO1rEmOMbzMRktvAfGLVGfoyeZziuZmpR2jO/kuvG4MZAhVzSnabzu4Sj3vupGJiRZrVWl/kfY+5iMysCwAAo6JVj0j7nrJE1RcFoXLIbz8Lzn0YMKf9ZGpmxJXZopl4Fr9hubcBcPerfJ2oZqCyVsVUsfSP3Br5VBb0MoLNSCwrViEOpQ6B5RvDh7Xk29Rxbj//TOzA3w+cLVqMGLOCLC+h1SpnTHt+ZSbHDinUaly5N56o1dr8hn+NowzuJcDtx4OYP69WsfTezA9W4vG+IbryTF51XQdbT5JRSWM26RY/g51cVxffgZns3yIQZGYwZLX3GiRRNpPMviwqYszIsgAsOjWTBFJQs0lVf4cSZEKYCdlFwRFjnRJlXRCTyT4h9izkWM9y3sk+deIbbLU1oNt6BLLCj42YtmF8DgiQSVQhJGLGIsqMSKSA9RIgTgiREdSsks0xvznjTwQeCOhDARwOOIgyvT7LHXWYytoOLG3E6nw/sKXQx6H6zazHDMKCZWbUNMmEGJM+YyaSNvgawKxIMxhI4qw1NgmkrBk75FUwJzV+XV2ry1QGYR+2l0xilUP8tg71M7wAZKq8OcxAzMVWqXOVdA6zbDOQmGWWWS4VIdQ+Y1ETNGImp+aPI9+ymMR7eQyptLHcsbtXFkZxJuSxc4UfS5lGizpZHtWBIgQtUMYLHl7nWynuCbbJRGTLllSmlmrqlkkLYsGewQEQao5HOHFcXcMkHQF5jcoEUKfHHrSIPZ8zx8w3k/pMbaopJpgrgJlF803sYhFhTlzIEWRWyHJc6C1bFKDBU6TEmKMAc7FRHk37uOy4IsMscUJxrXyArTS3tluCkjSSOaVaB885NR5hw2bBxqLhVGrkImtZk+sCE2QScku6hA40E2oyiIBs9uiK2mBhbTzr96xpAFnx3rc36iZrPiRy3BxnVPwmImh6crkpZ95nf2aUtex8pNaFtvxGmiejpznU4uX+wrXeCSNPntt74ZKRGdOeV5nJsUPJlKN9cypgNt1+9HXxRl+e+lplC55KN/HTzXjkMD9rV+bJZP56Ga29Vluem9GyCl4xHxOuvFPHfrYvn5vj/FyhcdxGW6w1rUQI4EVA6gHuxIEld1AVeFksgNWkUsgxAgIhdgzqUcgxPWYjwfzWJaQ+ikZZHzFsrbFY7IoDfkoISVb72fMtS6Zr5Wb1EhAiIYIxZCDE4qB2OyEkIETIMuHLIJ78E4DEoC4Bi1CPc/bCd8Cg3wKIIwYDTx0AZrVmCGUwInlHipo9I0VtbgDoAUqyDZELEeYGwXxI9bkHRbast01KZdXmDKJq6JAdb7rxsuqqe0j7K9w0Xh/kFzSV9mIcUPcsMx0gziUmlBLokMDgsPFnmWWWWS5cMUymxwDMYoH0S1ywRYsfqYRNanjtsZE3y3Qy6eOg/QjegImtHJUWWdl44n61uaWSYgQ1hyy3nBr/p7CIrGbJBdRUbJUe5MX7puvAGimAi69VFqybEpd5ZCt2przE8JJVA67SYiNU5JgVnMnIMtERNIyf0OmalUPGXXmRgYrs4vJYwO6vEClG/EharrR2/CqFBKhFwnTLMFD4HqCOV4FD3y4e1NizaPsAl3IA7tmNZdTzeFPvKNcol54nMmjzGefFpQJ5plgc7nO1qlRZNMJlReTMWa3bmW/A6XJzVt3SjC0e19pjewuXn9rUA8vPv87Hbu2bKH/PWDY8ykbzcuFUjkV7TZ+CI/rq+146qHfGtOdXZnLsELIeYjP4O6kGd8bGgXzqt0gT1zL22DCQKpV+sB/3RMblBpisTx7EZStmngZwHNHl8/Hp9Dhrplmc0JfZSM0nzzaiABpqSDFqyDHuxZRS/IdBptvysWiRpSAzn2JiyUCAao9Fid+HbGLJPRdtsd6IMgmLfcKwLcTYgtZY0hoLrLHEgKU6LS1aZGg2nRkxAGpkkx/EPdUVAmhLfU0kIC4J/Y4QedQRuCNQr6MiFZJsaowNEAf0AycZILqAkBKI/KSBjGBEuriozk4VdxYGcwhDZL/4TnWsWtsjcowhMNs72iz7ssoNN2kI4mKt7ZabAGuFO7kO5ypSk2YPuVSGzqm65sl41O16qdR5lllmmWWWzZJxHICyGBJcGPnIyGoXmdkY47/CY1GFgcb5FrxXaZhh4jjjSSD7YvDp6kptwNl2bx3vbPzLX9NyrVr4kXhEOLH5GNNN3G8wyqqVZXVvSw/DP2QEE+d7W55Qn2JGgMmTYd0XX8TVQK0aX0V7zFYE1bqhIcUUyRlTFbKNW3HCzxQwyDqX6i5E0UF+ZqY1RoUIy+QTu/sKFpbJUEJiQYodCmkjj7OigUbO7KdFv3/cXUuWjvBSfyBBtbi8LzIPFat76rHVi10Y+TgoJKGsyCikZk5n8Zmc77FGqkB3A9IWJLZKSAwCygqY7J5zk6cjxnKfNuIqkK6NVsivwkLpMVsrcv5N7yf+E7iC+SVLl/cEwUVUaY/5z+lNvsba/NvvD2rK5RVQGQDH4QA1m+XJKDM5dgi55//3IBxjcAiRX2TREKvDx2+S0WdstcsnHqcc+DO/3TvSym21rzFCJrHU2T5ngqyUpQCZiTAzqwx9IcXcstwMKu1jgKfT1SpHWmMB3HXgpWmLyT4FVOemRZY0qfdFxoGzxpj5HGMjxDozp0xKlEXE7RW2uhUWGLDEkPdyHLFEwiIBTB289aRsCkmYECKE8AJ0hk4do0Ldo5GAoYEI1AfwthBk3ZY460+RgEXRVsQ61QO328ykkjigYxm8wUDXUSHGFMCBCCnJ8sh52jIZAGEh/rSsg2OsKkKF6q6cQegE8WXDXBVG47gIQpBVQMbvtah23JalGtUJ9UCJg0kLDKo6XyQy8eo4J9n5xjfOQ2kuAJmdl84yyyxPYomJMbUwUz4nf25xHD5TPNASZEYG1dvEPaYGocptiEvfYsMpackyIwWqIhh5pAEKf1MoWC1jhwmoDiUZJI6YUiIYeWGEhk4G8t5YwYglOwgcESCEFSkMk4WLzL8YlEAAzNm/1wlL+ZkBm0ixokVW/icueJ/yX0ACsNYcghF+Ll/zUsa5Xbmqc8FqdieplDlvL7iKZI2DCvgVPJv39cPO7WePxOISczahJCZ4S9fRE1EwyUS1c/ep45wFV0DV+KspUq/QOc3nnavMqDtziQ8ufr58u4KgrlK4/EQCqTsUFOytwLhSCgOKc/ps0lG1ygR+JlBg8Mh/fV1hokJeeR9jyOVwZqSNWYiUcVJdQMlFZ1RJdXJqEo1+v41k/vzsmc2RLjaZMe15lZkcO4Rc8+yn4tQ9D44vVFpjfl+DAbPRr1V+9QfvSTHy+Xhp7qFvivwS2VeLjKq8qQUpIzAgIILMN5jXHGv24/xbQBPU8X7xM0YVQeYIH4i2GY1WqRQTS1ZzykyAKRmGaiMxp9QtqXNKBJJVKQOJ9phzyi9EmDerZKwXEby9i+2wUk2x9cb9koQok6WsrW1l9KRE4lSfSUgxG8gnjylDEKIAWjK67YB+zaBBTSoJEG+ixRWpwSW/mQeJrEG2k2BLOIufsbpvtThgFEaST4wCQPyA7R3XZpzA7hrbnouj0H0ka4q7wTsPkP4+/qKL4ye6D3C7SlpV7ymgO2kNcqEJjwHEqC2oij56+1j87ac+9TEo4BMgs/PSWWaZ5UksnVtVXKTGh5MaWRnPEYCyGmTrcsOyK9pjihdzWoc9PVnQQhifjyvaRu2xnMZwZIMPALdIk5YtAEY2gdD4FnO4xpVLTDBR8HcVtyzDVECDEh7OV5lpijExAiXYwurashkP2sreticEEMvqkQUQqe8x13AtRsorQZKtcVlwI+eG8PEZMJKMgQXW2W9sjsfFn5txLMyFNBs747f24kx4bXrkU/u9wvK5Y0b2hGYePJolzmRZXDihkGhGfXEC5WeOXHdyrVgdTxWqqXzBxjQyKa0qFYKae7T5GXjVPq71s5VEfTQhiAkpagmnNMmATM5OIenWcKp2vs+TWN8Tdr64XFUWY/9qvmguqifkqu+Aqj1r6S8/MX3hYpQZ055XmcmxQ0hRQef2wmEycSSZBgFuFCEX1YOIFqj4uKTjsDfTG924jp/3oTkvm2iJ1aSYe5vCa4TVb32qj0NDjDVaYz4sq70SAVnLzEwqAzh04oPLEWGVplhDmNV+yGSjUK4Vp/xqUtkV7bFhEUFb4l/Ma4stMGDJpjEWm7ABS0QsmAEOOiuXwCzOTldo1PR1wLJH0JJM+RFtBWyvgC6ya1/KaUrizRsx0LmRd2RWKSXN5wILitZYrU0mA75NPDCknJzqgbwdk4KBJl9XHfyb4uTjTq+1BJmXTOiQO7Zwrq8DOBCp1Q6oU/elQ+T3uEsDIh5lNpeWxAQcdhnveZZtlllmuZQkhAa7AYYn9yTHNFrWFsvJ9NwdV9izIrHa6839DOpsun8jghmpys60xLLfsY7cx3ZxKg+jN7jUxfBJzku3ZP7FzMeYM30rHrk0TBkio01azKZILFsOFBJMWq8lxqR6amrJRdvJvioik6695J3w271VAw16nUN2iSHmlOK7jLikTdCJagRE9AAPWKDFb4Yb1dpPm9RcbuTH544DCJEYnIDFFFCcwrDaPoZlfSNqM+eFQiu/Yx5M5vzrMOlSDE5Og6wVgji119bxq1CyK1deBKuqTHNM1a6OZiSRnfr+58NyuYIsMsYAk9abuap1fupJQrg4fysxvE2if3CZpJrSHitt7Aku/1EywuPtMWGaPLN4ziS1fVVV6SYA+p7Ql+Rb8JKRGdOeV5nJsUOJH8DtjbHhqziHk0sLFGrbkWSqKj25yuVkGSb2+tawQXjzB7ENBgY0rFik6YofsKJ+LvvKz1gGRaqdFEq88tIjfXH3+bgyqSQanXMImqvG7Wy1SnPA34F7bNQYE5NJOPILlS8y0yIjNa2kLma/Y6mn7G9svRwQts5iEZx/Md0vspZYo0FGa2xhhW3sYAs72KIdLLGDniJi6LAyQMUMClyW6U7AQLZegPhkSMj+9zMIGY4QuhXp6ju2BeTIPWowYSvmWEaJEBIBiwAKQIwJIaoWGDVuxrSrJBJnnDUxZoSZdjxW9we2WXd0Za+0xSYGMZA2DRWyrHXen1Llh7QWf98SVIVVe48LNuU5vkUVpxqX7Xd0oZBk7YfFuSW/NIkxYJ5lm2WWWWbJg4S+7RtcWAmjAITWPkwxYVFWcV//qr1CVRoaQ10q+XicKS480JRNB/BKeww5HVf3FwiZVyn05AA16MAP8mRBnIkJhmC4mgSrXNEjsyRWFWu7Jg7rhd41RaU5RtyEVa2nm/NF1miPZXKMqSJTMunlap6JMVAuYXJ554lcBEQAXV5gipGUrMvmk+y1xijXlQD4xQo4l7I092H3RoYZtPZN7AmrKaLNSyaSVMtpUsmAISablmAPIoZ8nIYsM0q26m5NXma5OZLRTaQN82OH02FTkGv9zCxGprL1JHHOu/JToodsv2NXnyliyzB/7gEoHwQ5/+rHUeNmi+reJcXTnfs5tYC8Aa3ludZ4v+1Ll4TMmPa8ykyOHUbyAK0n3L5q9v/JlReADeahCi/Ze+QwkW/7YshvWn2R8F4EWbmHrUKZySgHSrzWGLWgpdIe8+G2SIDcvPgYU4RiGmKhnFNFmhHysuEUIKaVQpDxUhzwT2qGdYTUao45kiw1aVLQ1XM6gHoWB/6LiNQlrJcrdMtdLCliwU5jzGmLLXiNbayEBMNZLGkXW9jBglbowwoLGtBRklk3ZXfITCwnhqjy2LmOm8cPRscEWgSZuclOyjivwkm6bzf210n2YmUaBCQGQkiM1AExJZD6RSP1LdaSZgnkHLWi8pqfV5mEHwc5d899twzE3LHuSacifctZKdq+3vojYJSxOU+Q7fH7OIjJZz20a5jVn+vzx00M8x/ivpviev8hPuySkBjPYZbtkPFnmWWWWS5UafGstwDYOH44aqbChnrNJkktyza+h7VNPvVWSzEJzBk31yfKbWaPyj6wfdST5qfEGOelIYHaNssVU/ecgZD5cPUEmTieyo7+wSVvLWTtaSshIKlPMSV6RnsuJNBEHGJCIAJxAHHMc5jZAXu+l/psyi4/1AF/xlrmhcy0zcg9obEOoJEpo88QIE9mFkZCm8AuNJyL4UvPbfj9gWUqMrcno9JWYayfNikxgmmRWR7Mslq8zVjn+nNzjPzfY8RC0jkH/e4nl5UbNB6hKb6WNLHre94/GeQmxVl9fX/YfeDMHMtP1YXpgfowg37ryiOsS2UkXvY1RgC3mVsJuLxiJo+nsGVuBy4mvT77iTQVtnfXL4hJ68dSZkx7XmUmxx6NKOFjzgJzGEaH04NtdS6BkwPCKL4NXON7+jT20qqT6n0oyKBHjuTygCcDEKquU0uMGQk2kUdRc6fKZ1gmwyDhjCkfZEbYOY2xBTk/Yq3ZJFXaYW2cSV9kJFpkoUtAzxj6hLWuSGkaYaIVtsIWdpUIE22wJe0KEUZrLJDQqy5V1p5iCOhhdaQKGUVIRxMPUarN4sBINCBwkoWUSMpPC4hHfx1QpwgxCYfbhCSjzsix2sGl7UMma4WgC6phlhKENDPfGQYubVY4QVayLDgwD1LZVGFqpG/Biw9rkRJ0vG6ycKmLCWWFSjD5w9qoPt9mPJ18amKtASEl3mM9MOfyufY/cEKVCTxRoj0OdXg8hVMEHxIY8JRvj1lmmWWWi1YchtSxPCODKVjZaHWVLGqcaNikGFAYVnRpWkycwzxZVcdhavLzfpVg5AapPzDKaSyvyWNLZwTaaACc/gony8PJtEaZOuxXYGKrWNYrUzY40DVH0SKbuu7DSIkX5zuMxZk+5VgBSbGfWKwYtUOuramU1eVTAQyMMZFNZE6Fea7McGGrtLcJtGwizSreqkk+icnaTI2EYnarWFJZybLtCslTXhPEUz7216biFUKLXIh9I1R14uZYG49gba2abtbGUI9nBOkLdi+2++hdM4PmGj4XlHIZc1ggMSnNRFZJlzl1K0tVt3EbjI7JYWmPm1272sOonv/EveqUowsHunyxyoxpz6/M5NghZHdncIN8eblQawA/GvWbY2daWZ9rWDUItfsi+U6jgUtfJG5WsCbqPCnmnbJOaYg1+woQoYSN4hRfBcLOdMhMDcmeHGFmTvphJpoU1Ma9k5UpF5s0xtBohE3FIac9hpFWWQwM6hLi9hpb/Q62aIUlKRFGO1jSCj2tsKA1eoroyJbX9qCmVXtn2BoAMk6NtcEKLDE2rWSQx6SkoEeBmIC/APQMigREchpiGBFiaLTGjLD0t2t7WRsWEPSxis+C0DFiBEJKiJH1OavPMp1p8maUDoc0jvkPH2bEYzKyrPktVCvktBVrwFcLbHP4AZmlqdmuKYz3eJBK53yLCTDihV08Bg49+M4yyyyzzHKBiuHGDErMDGqT99oWBzYYscKvijkYij9QX8t5oR7ANmFKPc1Du030AoKJ7B7V16+OyOSIAQBFz4dzHPbXWnAw0RhTHJrPaYQDAPU/kRA46cqU2KARxmNH/DRtYlmnlQZKqiFGujqkmUjaEk7TM/dTT7xcKziOJmo4AYbaRlIyp33clnRf2LVXBJch8XQ4+2tVuPcz5gCrRSI4YqwEtVlNEj9VPE+K6TEBFOSexVfZhJkuzGi17J3DubG4y+X3UqrnazB1VI41cy7fIaLmJ/7ifL7lt1V+BxmU5yy5zt6d+CAjvjLx1v4k28/sctNK8jNgxmgBOgA87GKWWaZkJscOIV+/7wxGLw171fkfn70kGEqc7THQTl3Kb3F/r4l8LLSNS82bgvzLj0BkPsBq8CEvv7Ffsfp6E8cAEDAm1sjFbwBPNQOZK+4Js7IXc8pCcsEc7E+QYJOO+pUIQ3Md+TqDtnZx2eIMFlihxxoLDOhJNbb8oO45LHatmsNV+ys/yym/EVxWIwIy7qtmD5nRcdHEGkkg0SLrIROTEdMaZEacOQ0zCkUF2j8Gm5UlRWI+rLqWxKwyUUBnhFlgxMTYDsDumiv3ApMy1Z33C9PjTIg116pfAWE0s+Qnyey5HUQjalOxAA8MxmDJhz0eMv2GOL+yeuj0Y3yHx0lSnF7lab80s8wyyyyXgKQE5FXCAfjRI2uVTw4oHue6jcbhBRP68In8WlNGYGJAc0AEjtgyf2IaNzugt5X5DP+SZWEM1LgKMnlJI6zgq81T1WjOMzFQRSFQCqCe3cqU09piNLrGvogyUcmtRpmlk9nRTkCho1SsFBOFpvZgw3PaILmvGBYi+yaC45s4E2SbZMrvbXujXEL/6cDl+mRCLuWgDeE5VQaLUhiOjJA8SYXJY0weA3CtP7qeWUEGkIRw2jRr21bRS24UT8UV329GDnMmiTVRkEUIPG2XfzdwD4/q+wbTJLP8mxJyOdyv5HU1rNmDy7f9BnBFG2cwcTdmhA0fUry7s2+ZLhqZMe15lZkcO4Rc86wrcc/XHpxcIYOoA3NCa8Y4KRM/dknWApV2oNq0d8cNQTd5nkcAx4644bVynOqvEwEQc8wpTTE2TbF8zfkRcxs155Umm8ubug6ciTJb5ZGyX4BaQwpuRcpGi8oTYY02mV2LIYphJDsY4YmUiWMC1ZM3nEMdL2nt53yNOc/1pnVYzcuxkWeEmo1rtkCQlUCtrlzatCXIOlItM8CIL2tqDqUHWInZ3QawoXZ8jf01HeQDGiJqE9Dca+DcZxw1/JJJOO3WI18RPGs1AABAJUlEQVRjDUG2nxxYa2wi7qbxWjJ2APIxEv9KOdBt9iAGp+rBDGxd8ZRzKtsFJ7N/hllmmeVJLNUH4wgnChIYj1kOP44wIHJYwXg+rQO77bhDcPk0+U6GlXuVGUQ/PWbURTVlho3aY5kUqK95EJQJtlYm6kJkqEhRHTFSSEJGKPmRJ+YyWClFpXYP6KQrV8RYYH+eQJwQdBXIFBzP4kASg5w2viJPM6+kQt+YI3/2DZAPS6VzMLvzEVnlHtkEuGh6Hxjla6i9NpIJ6DiKa4DRRZdu7B+u7ag8B4b6Y3OpvG2oCy+0kz9uY43LWI51Nci0NzzeE2e6BDmeA6u5uj4/vZ6DcsG4Oa9oL1nUbGD5xGMXXYnR3OXYteseJWdXz03+x/xxi+snPzEqpZWxdMeOb7x20cmMac+rzOTYOUj1Y3O/TqrWwq1S1PsJwsqG8/Ka9FIP8H4//uHvHZczoEEGGlOrUMKIsFGYpbHjOu3IJ4URNXkfZEXKVjvMNMxCAIUOcMSYrC7kVixyWIndecFQVGb3CJk8IyXP8rRdJs8S0DEG6hCoB3FEl0hf7OYDDHCTk9kvmIXLM/P+wtq4ErEufk2MGQAK1icI9TLO7jx3EqtDDzGzzCSY28jHlTiVNliyXlIAXduD/NXRwK+jmj2eLhBico01hQR0nwdEP8W4qUs3Qk2+I00xzdbA2iZwWxWtuT5ZHIfxfbwqrxZXECqC9bGUqWbfMyI2Qxafx2NJ7D3uktI5zLLNK/vMMsssl5DY4kcwsqZ+yds51YGo8aBFKGEZZ1rqnPcBtlG88amPywpkuNxK91zhRa72SoxpftVqjs5Rf/aXmm8rWM00w4rz/TofM4tLSEjBVjhi1EjBnFFQjVmm9rRp7yw6UNqhE3V+JAKiEWlopB3P9zjPhBn20PvSApM7NrFVJQ/A6uS0++KXtqjcdBEvBWjWccx3RxWX9XGRwmZy3ZL1mArh1KBkTwWNymjHpUHVDzEKgA1KyKkzMTOhtD80e1bwa5p5pcoO9OY2VYSfgXvRKMvtoZGL/72JXkkAEgoR5u/ri9EcV4+iObbDETFG1a76dnDVyNeKuTUjTIJW95290TTnIpQZ055XmcmxRyujl4q+NTwwmPr9VWE8+vKUwc8zb3ul9+cWf+Km6oQ/30DjCylQg5NsX34IYiwP9u1sn73xVZF8vPaN5EUhAJ36H2tmDeuxdkODjrKdavsmgBgcIigwIljABBHW1IHQIXCHnoMM7oy8ZDQxuWNMXAdCUmeoeRAEimaahxqmHp8Vu6o6ZJOBXCduHFHo1lMhyBKKuWVHQNJNiTMPEMTMk3RxbsqtJItDSpiYURICMaJ1sWSr5Tg/CCyPLzAhee+szQC2EUg1oGqTTD3WnHQqvbufH+qrzPa67z5lyoN0fbs6PdXN8FjLQe8zVTX/NrskJQ6yHTbNLLPMMsslI+UN7z8q/XnBiD6N4TZ37skyAHn2yn/Velw6AQOnrzV4spl4zWM6UbXPUBdGArh7kCPJDFNV+7ro3OzlAtebYzwYCYkiOKRyLyhSYkLiovDW5r1xT1N7XRETnM87irKyHwcIyyP3TQiI6n0sNAiwPEff+JiIU8pkmz0Bj2qJy7mVdeRDttmQ8xvH2699RpjOCVUP3kFNHldIoLbUtfLZZZi3Kefex86xvZXOVPMmkSDlwokFDoMp5Qnekkvtn8sfczaJ9JIzzd22apLWKb9r2Pwu8GH2HZM/ErRU/ufO8t2S72ft53FwPuZ6ontD8aF9ouLsoOdtpVuXNJqQcyUvQZkx7XmVmRw7X1KpkajB9NTX5dRbdPK8ARJT8dv8/D2aL39z1FmQxF7qplJwcztfyK6gLxg5r/2GteaTZTXK7GyfzDG8ao2ZlhhNkWKubnput9ukLVY3C1XVYY3jMRaHBHQDQohgEhooaVwOopY+BEIgsc0kBHQsLWOrNpZbc/V4fGnIb9Sc25aMGKvJsJoYm9rcoKYrdlK0G1HR2nPnqdtUiKlNnLomAhA5D0peVbrtbgRx2s+x+CWoHo4e8yh8apRrxAALV6cZUFU/hzYrGod5bnvPn1fdnaoyTOVfVdX9lB+LYXmfFjtwWv+KuUThQxaO57Cyz6yCPssss1xKMvGirxy2twOjfdkGN1KMcKQfRZpjnoqP8YDbho+u1YNq0Xm3RN4FhLfMGJMrlolpmhV/YU57bNo1W8mHZCKRKSFR0llS6Ie8Th46dxrZtQYYo0G32WfYbsRAtReyzTR4Okp1cm4xJylRBkR3LRgRRY6wGn1zUG4XoNA+U7jK8LD52t3Q6GPxeekxY4OJpW+6PfI10pAaDbHSYyi3jeWdq+m7f4XheM9jOffHpaDlG8R/I3IVsegukDrAhxCOCdXvx/qX4W6zwJh+Np4AG5d57BOu/F5yjsQj0tKXxRNvrd/hyW5Sl0yON38yVJnk+009I2rS6/fvXmW42GXGtOdXZnLssRAjIuwtYm/a/Mad2m+6dsj4E/cgI6tGavDNLTTAXrLuFYwCgmgiP6qOTdWbQo/id8xvmj5408m22C7fkYPKarRvR/9xGCbihAQKERSSzM5AQA1XG7tNNMoG6hDQISQdrgPU9NK1VD52y0KDUDlPJdYltsVvRDBQQn5AQnU8GpCmnmEgoAtKknHxN+Y0x0yVeNrHWIGTfgZQtMiQAU/SRxOIYeM1QeqRDNAECLDcoEG252yRizs1mLX4uvU1VjE97mfo/ZQdZqB0eGLv8l7EstejmGWWWWaZ5dKSek3K6usfBYNVgS46leB29mdizzapSE1ai+e3/cJH5dGPX9Meg9IzrnwFH5gWmcQ08qQQY2M3J74sLc9jGLHUawRGcwI/qZhJrVze6f10W7q0WqZOtYxK4RRtGrY0iiNnKhPgYvxJme/0EPpAMkGM+eJWx4cBXU2OB8cn45iZGDM+kh0+z3i9XqOVGEBSbOlIn/JtZDqJNDou5diLtWs2lH2V0jNdAUAqWoKVnpirYsUkWXlz3/MY39/NO1YpLW49NPvh40I0ym+64HzvRJ/ZdUZfB09ScWnzok8ybrMGzpdj8nkh17P8hus2HOc8o95ZpmUmxx5LIdIfvL21GkBQvfFpwwiwcch0g9dewytQr0hUkvi5ts3vCHtB2sjpARPQmmPKS2nshF+uu5Uo3UhMuTK0YY9yT3Lgpinj6NzATDvKUwKMGEMCKRlmpoMxAF1gJL+RPwcGAigEEBM6ayN9Q7e+x/wol80omYFkRJn5SOOqntObtSm7NrdjLvF0oQEa6ufAxI4cK00bSAivQIQIzit0tiTS9LHWy+4dOPsxEw0y5KWw4dqD3XH1QJsRrB7Y95bc+5uCEhy55UBEJsqm+r+L77W/mmxGPsi4uXZgkHkO8mj4uMMBzktM0iDbYdPMMssss1wqsknri9yxi2vkUhXHA4kqH9p8bA7AWiKpHVxN2vCsEe/uyMh42z76Cxoe6/EUX1+FQMpFIPPDxNnqLJNoUNYECRySOFGvNMHccWZjfDMoBeGYmc0+xab3tqKgEWOBYtVkVkOuvis8QPGxRTWJOSCRuBcRGFcc8heSzXvI1XuoNlEmmRz54bcaC5+bjDDLZH7uGymXq4C0Uo4anFUEi54HlMDiOxhVt7cgbDgflde2iXQZDlthzLdxXhSA88+mslXJeUpoojrDtpkox+QmrC13Y6ap5pSF2NLWDiw/CdTmlVPHGcz7MlLOfhKU5rJx6fOA/ubJZ1UiVE1AuekebRe8cGXGtOdVJliTWc6neLXXeslDNKMFj14KfNCl8/b4xK2c7U/seSJ5vuvUu7epAEPJJyLRAqOQCTPJm4QM6zrRYMpO4mVPVJ/nvXOYP+XIlahsnvypwjERFhjohBgDCTHmNwE8LJaxZBtLmNcks+tBNcpAiEw6g0L5cecSc24t2bM55/czl+WesPsSDryh3ToSR/2dbgGgoJpjgcTHW7CVQsvjrrKxpkXddUifrbWrgUx5fBImj5PQ2T2bftXmTc31UV+2SzyuKjXlt/zb8zaszXcCHew9mvLm0wP/fJ8AeVITY4CAgnjI7TEEEvfffz9uvPFGHD9+HFdccQVe//rX48yZM3um2dnZwZvf/GY89alPxbFjx/DqV78a9957bxXn7rvvxitf+UocPXoUV111Fd72trdhGEo97rnnHvzLf/kv8W3f9m0IIeAtb3nLY1G9WWaZ5YKTCdBQaT5ZtDJwlo/LdgR1x/m0Gg11t8+gOKl1VWM8+Wopg7XHaUYa2T2L+wV336kyTIFeI7psz8grF+YV013ajDMcH5bDPXkEqFYNFe0axqH3hiMDIjqPpaBYDA5ftoDUF7oKl0CmoPSfIxU3PbrmsybjO9QLU1WNtIf4qlbH5IgO103JhVX1c37PyP7ys7EWKjcyB/y5qMmVxvFUQMHlVqG9fhMVibWhe9edpOksbdYur/Jz0e8S1d6axNLuWNrS7qG/I+vXVRxrc+9TDs1/fzDG8m1ZDoU7277lj9smInmu1U8ddaILGJI/ernAMO3FLjM59jgIgXQ8dm+6TQzUo7pR/SYdLadtL/Mxy9GAIg9KmnJvLL8NPCVvIaM6t2IijTauzt2tm3IaoZOJs1G6qXyaoZkYFCKCmlEGI8WgGwkUSFCzSjW5TJkQk33SjUM5TgFInRBlEUC0kSVBzC5TaS0xPySnMYbSFta8uU7jRzLeSNO4GT4lrDgEsJKSRowJWUa1lWuGUu1g48vdbs5M1M0Q+a5oj9KIMgBjoKfH+4KwvWQqzYYwK2P78vPd5UADOG8u6kyMXdgi/hmGQ26PnX+GG2+8EV/84hdx22234VOf+hT+8A//EG984xv3TPOTP/mT+C//5b/gE5/4BP7bf/tv+NrXvoYf/MEfzNdjjHjlK1+J1WqFz33uc/joRz+K3/7t38Y73/nOHGd3dxdPf/rT8Y53vAPf9V3f9ZjVb5ZZZrnAZApH5GseE6IK95pZdWbNcctetLNTDTybzApA/iTP7ESLX12Z/b2prHCenaz7cFDBJFTIEptYHe2tHMFIODlv93tubpXzPeM5ksQ+Hab2REmMMEZJ/T0nl8DS5mMXxu4RcW5P81GWqLbYKB67ymOzW1f79lEeUCYxCu3TwoXNyc/ZN49Vlh3ZU8JQyCF2ZNzGAlrOlmT6eGMuvpHMsmIKG5eq71EUnahG6dvyv8b0dmXvMPt1c+4XEsw5vzIxbgnLfdm6uWblj9tmofaYa0K1/YlPFTq3NU+8xtokNN4uFbnQMO3FLrNZ5SHkzEO755BKB2WITTblF6qNblOfqufh85UI2Sn+XkiE5eWSrzj+gqqDNv+Jw+o2BISgeU+UY6TWAxc+8QZjb81/gAK1xFJgoBtAIYIpgmhiDyHOEgh50cdg7rqKaaVpjyWvQUYSTwg0SRcDqY98G2ZqM8ra8b6VE+p08xBbrjNPX/fEorYLqVaalEpb1YEBP+wf5Dj3cV0giSHmm5xkcOVA5le0OCU77E+hIeDaKNVewU0VzqWO3pzyfBFZTwQfdpi3hH9u5ypxZ+dRpL6A5AJSQf/Sl76EW2+9FX/yJ3+CF7/4xQCAD33oQ3jFK16B97///XjmM585SvPggw/iN3/zN3HLLbfg+77v+wAAv/Vbv4XnPe95+OM//mO89KUvxe///u/jL/7iL/CZz3wGV199NV74whfiPe95D376p38a73rXu7BcLvHsZz8bv/IrvwIA+MhHPvKY1G+WWWa58EQWy2lGg72+Ft01vzKkBOR/e98zY+B9pIKrehJIF3ii+lrzlduaVxryqjNvb7apDsW6Ik9YejX9iUnlbEmRqQU9d+FCOBEClX2xwHD5gApmafbBiLFN4gb8SXM1h708uZQJozYTbcfEWl6QeivTiUZC9gxSgbHzKL4KGTPqSV5pEgUOW2Vyd8oEYkMace1/bHwvzi0gVSukJe3bu0pDkF+Gs03VEGOs/9q921V7Tgl1RT1Jd5AHUR7cyPeY/m79d2GLJ5lIzSv1q8L6Akr/ow3HaI6rIrt+NPr+sHK13wkTNZu6lHYvETwLXFCY9lKQWXPsEJIO/RVd/9INFBjjnpl+yOvINHj8XzW1UeXZ7Kk+r3DFAfZlhZ62CnslnNiUKfJ+rYpZabvVoGGS0m/iTptSBlSmk2jjAggDzGySpjTGmjBRMfYaYyikWEOQjQkzf02JMiJEDk0zUhkT83Mo+wNvGeBQDfCqsVeJqyDApvpzM2we69k5rKnhjqtZVTOlLEp9Roea0qCFdzmtk6mf1V4/Na6bMZfbnVs5fTP4ieUpXOJvudftWyDUlmVjd98jz8dazhdGTcMlMpgeVv38XJbJPqDccccduOKKKzIxBgDXX389Qgi48847J9PcddddWK/XuP7663PYc5/7XHzzN38z7rjjjpzvC17wAlx99dU5zg033IDTp0/ji1/84mNSl1lmmeXikGhfr4dSo6A8kFE1sDbHHkS0o6Rnm0aLLaEGNxsv7hGZgM26beRKQk0oubOCb7LOmLItxADppJ84J9e9obD2XONV2lyjsrO6UbF9mbSb2hMiAto8a5Im15mtJFN/bZs2DFHdeHpMVYq8yIKPt89nwr4AybpGc21M9XCNU9FM9BMwYrymul3bHVmIl7wHSnuxexaEbKVhhRz3PHeTKcDqmZ826WS7lr6VC5M4fxeRgm7fow+GPnniqP2FcfXs/fV80L4fXNXHF1pxD5zGx0Y0Wx80pniEyZ9IsP1EyQWEaS8FmTXHDiHHj28fIvbUG06ORxpkk9JS4XW88uO3a2U/bU6J8rJptbPQxJ0aYQ8aTgACgbM/K++TCs093YuueReWAWTTTdqCwA2o7joxqBvKqpTqfB9+Q30ujvkZKcgKlomSHKsZpRFkKTgiLKgZZnAEmW1ICAkALzAwoafBDdIE0/gqppR7sCtV24zj8cY4eo+eZCCN04/coo9Wpxwd2zpHnCdTRUNMmpED5aWnRYNM56ECwfQJORVQQL4boz4+ELHTRCIYiKx/ITaQet+qe96HxhfaeBVQOF8s1HmU81mkxbFj5zG3i1NOnz5dnW9tbWFra+uc8zt16hSuuuqqKqzve1x55ZU4derUxjTL5RJXXHFFFX711VfnNKdOnaqIMbtu12aZZZYnr/TdIebGJ2eWdM/YgDcPsJ/CeS3WAYrW+yjORJhlbuUCUExB3fU9jo3gMFJJ/NMKcZSd71cMEWqZOM+aXyhYr6w62e5d/GYfKNZaDSz1q7SmrAgk1zLr4wEP9jtuSTx/zNo+VPlGNqWoqvpTAGQ/UML1YducJqY1JHGoOGcX5gT5v2XAE2HaV6Z6eA7UNm6pL/JxsJ8GWd2+uZwb2kJwqiPAKlbOslHKjppLRI78PKQQa/fWRkmlXu4nNer6XJKP+kXbtSpY7TB5dR9Xn7YtWX0220WLnx876+9lnwYIW4f5pp/lySSz5tjjIdy8GdDYZQPTg6uN+bbB4Ygcz0aD8rpmhOwYnj1j0uzFQWXZQ8d8PxGUizz1Enfv63yZoCtRylZUw0sliFB8XeWN2oB6y3VtGqKagWnOiUVjzDnfh2qHVedOo6ycs5pJophM6nn2QUbsjl0cfwz1x8U9EneIqceaF6J5nDdf5nbb69pBrrvHpyQk9wR0mOZI3bHhzdIPSyR7XgZKihakHaM+ziBVymw+yKrHOfGI0YZv6h7t3qX3nZncAbWBrp/TPn1+T9Sxx7PYr4ufb+H8bxYvHNfntAHANddcgxMnTuTtve997+Q9fuZnfgZeo3Vq+8u//MvHs9qzzDLLLIcUP4BSvXcDafEt5IBHxpslfOMHq8dxhh8VQxYMg8pfVLUoEag6L2XyTuU9IDCUUt1czwooYDcJWpz+OxBwkPF1hCOoEB9Tm28+tydblbLCNA14qPBb/ZxGuAMbwmyrPgYKZZjbjAMSOkSUco5kEttsbjSa2G8K821TNL0sdzmplPaM7tRwTShhRiclp1nHlofT7HPXbFXJ0gfbCtPk/1wP1+Zyre0L0yK3ZRTSrmnDjK3zj7KFwtVzthD/i7CG9X76yuJo/tdDri4aNy+kVurZNElVAG7O/fXqVUNa+/zwp1tpE5x+jGD2BSGPBtPOMpZZc+wxEXK75q1A7piNKssj3ziPVjbR9SahWZ2yYg0msm7CpBjV8FiPom39Rm/cvMSku29dHmZzkOo9wjfxm3KTG5JhbVY1i76g8wuTy6qUcJvXFsNmDTJxzO/MKp3WGKvWWKtFlgIjEqMLqmlGUbLlHomjjGVJxrQ1Az2t0bsVKUHIRBtssJ1YsRKTGyE7fPB7gwmBxO9a0H6nGmTY4I/Rg4/yiIsD/nIMpy2me+0GrC4QLDwEQkos2meB0IERE2VQkzsgHGZpZBJY12PluC6WvYvg41c/yUMSSRXtbY11jnIYguwg5cx1vpQRwTkKxwEcDgcMWFXQv/KVr+D48eM5fJPW2E/91E/hR3/0R/fM81u+5Vtw8uRJ3HfffVX4MAy4//77cfLkycl0J0+exGq1wgMPPFBpj9177705zcmTJ/H5z3++SmerWW7Kd5ZZZpmlEsOx/ove7yuM5qAe9tkfdFzKCzq5AlWYsiln88FuVgnVHvUeVRiNrk22Sc7Psy97bC4OgfMYbkO034uPJ1YNGdkHJcaoqnJdOHIZjjCyAbGDCpU7kB6pbltuFEODQIeEiNBqNtlHziFkCrLksIaTzO1m2Ng7jYd9urBM/rtqFeKIcmYEVBYM1WfN6NjpIlrcFnMDOY4/3lvGnS37NxtdoLJyq3VY9x2BQE7ra2Mu5bbto3Igc4SXaeJTlJsaBFT+x6zI5bt3WvynMDc3YVUvs+fEQKUx1h6fC6a/WOXRYNpZxjKTY+dd9n6lVr/8iSAJr5FEcWy4D+Jo8q0AxV7gpFW5ad9c/uWyRziVpQ+n47t725BB+YIvAzXl1aGZ6tUdKxzUaIyRc76PPTZC45gf4pi/o6Qr9BTTSs5mlo4kq7TH3OyimlISd5kQk40zSTYw0GON3lrD6kpK7m2sp43ebgRoRnUDWDKAsjr5l2MkiEZfR6COM4lFcIDR3YrdNQ8ic7eDDMaVE3y9dTZtzEVWs2JIGQKxzgy7ETODjaaPNd1pFMh12Y0cKvfePJhSTlgP8iMAsNfxptHeyeM5TlevjCewHBekPArnpcePH6/IsU3y9Kc/HU9/+tP3jXfdddfhgQcewF133YUXvehFAIDPfvazSCnh2muvnUzzohe9CIvFArfffjte/epXAwC+/OUv4+6778Z1112X8/3FX/xF3Hfffdls87bbbsPx48fx/Oc/f//6zjLLLE9uqfAYTYwn9TXvBH8MQBsA2E7CegxIZYyuPHtnYfffl8vPgE0B7P3AaTk2jIcW30EsC7zXLllwy8ru61Oq5LFVhe387S3JaJ9KjrmKdZtUTTTly40KuVAaZsPxRBwjxljzN5oP0HwRkCDuNjI0tWKeD8DhSRWe2KRYii8pl35PWCaPt46jON2ulWoUbTOjmjLlxBA3Ivnnwu6R1m2Yj6uVKvUDYWqf0+paVlZXuL03+XH9DeTMK/d9BuaC331D5CsFFDNqwqkupTvP3zzu2objDcXJYm2f8bb7TmCH49EcZ9xf5TV9fNHL7JD/vMpMjl0gUo3/B3mjFxoAhShxiajaYQqEMBeH6nXujWPPZqwv4VRexiEAndMCyysjilr8pNmkAalpfe7xVs2OlGP2afOqlAlszvWdr7F2j9Boj4U6bNJUkmwFS0yYV8pQRIkAXojGWIKaudo+qg9NwpCAjtbozFTABh83qE1ggOYNz2WffWHo0J21yKAgj9wgSuDe+QYz8GbN7R5zcVlBBXcx62pLyrmRThZln3oAKWlHWj4Gpn2QJR3B/MB/GEA1EbeYeTh81gySbbI27MC4bt/f7PmVvYi4J8tM2aMRTodXKef02KigP+95z8PLX/5yvOENb8DNN9+M9XqNm266Ca997WvzSpVf/epX8bKXvQwf+9jH8JKXvAQnTpzA61//erz1rW/FlVdeiePHj+PHf/zHcd111+GlL30pAOD7v//78fznPx8//MM/jPe97304deoU3vGOd+DNb35zpe32hS98AQBw5swZfP3rX8cXvvAFLJfLmUCbZZYntUx9RrZ7d6z4LBsqTkX1UhE1Plw/020VH0/QZRzqWIAWrDZYeLx6pV/FErAS+2uATXIyoGRY3nu/Y81GSfcVdTSB2I3/aMP9XjFYoISAWoGOMLEGfIZ142sBEO0pMq+x7YPZ+7i0ipTOr2TI+v0h8C2IT1qO5VFVLM7BZSOPh7a96ufJJCRS5wgy6z65b1nZPM5tWR5rVAWOBeLVxFgV5ggyVGUr7ZePidAuZpBJHRTMXcgmzt173F+sD9cNRUFxddJyQd28gJ2mHTJozBg5cf0N4K75Pl2Kq98a/hys3Y2KxpfdqlEh81YXJY4ds7uAQ8k5JLlo5ULCtJeCzOTYeRX3624HGGritOFuoJQTJTGm0MMU6qC9zCmpju73GzAPo8y+bE7sMmnvsdd9mmMmda5ohNpoDxg68NUzUoxcPkaMVWRX64D/gFuAM6t02mKVD4oA3QwwJQQmIPVgThUhlhjgRHn2xwizyISIAQv1kr/ZdHKPLTTtquUSxkrKaWrWsmACMqPFXQD1EYgFD7hskNgdQ1ZjCnDmoODiqR8ScS/zyk0EWYSWjzEmf9xg6U4VkGRcngfwakBsE/k4fvR0g3RLMLUDrD9/tOaU51MObG75ZJe4BuiQwOAx9M/w8Y9/HDfddBNe9rKXIYSAV7/61fjgBz+Yr6/Xa3z5y1/GI488ksN++Zd/Ocfd3d3FDTfcgF/7tV/L17uuw6c+9Sm86U1vwnXXXYfLLrsMP/IjP4J3v/vd1b2/+7u/Ox/fdddduOWWW/CsZz0Lf/M3f/OY1XeWWWa5wMVw7Ghso/G1xsQSoDLh6yc1K6xIqMgvjyUrgqv+DG+LuHk8ow3xNg3YJUw0xowU22czf1RKALDyaKwenac0ffwqh54E8aVjFmLMQ2YrZ1v6qqabm0u02/K1CsW4zEpJdOkklyFrHnalUD/lmJAoIHD0yfZ7WBvFk2TtfqOQlCcwVe1HuYSuxRiZGCOtN7myTt2T9H+tFebCnImlfza+LYtZ5kQHaPbENSHpfy6soL1SEshJPZgulF5LbpanbJWmqj28Lp5ZuJRr1o5Un0PbwL5D2F9zVdxAuFXlsTRU+sNBtceeNOaVFximvdhlJsceL9nvA9q9H2mC/CorXE6ldaDC76fC/L4KCxPpN5ezCqqntA6/obxSN2qRTUCEfK6DA4UoGmHen5hpj6nDfd50TtPniW3lymJCKZvEySaXxACiaIylzmmKmSp0cQxazCwLURaZMBDQ2TKSWm92qtKjrZkeZNcsbCaUNnNjg5QSZEx6bGaWIQAL8ZG2nyklkZJk+miMQMvcGzInJ1plOZyQiCfCgUSEjhiRpn2Q2WE7wDm4kImy9lqbj5cWs+UetsdgOoKUe/2uH0e55Af/S1iuvPJK3HLLLRuvP/vZzwY3D3h7exsf/vCH8eEPf3hjumc961n49Kc/vee923xnmWWWJ7m05pQ5DCWs2k+FOR9k1SDpvlY92HBXR/hP732QiUMjCyqAYuM5NS7KXdkNB8hq5sKYeCf8RnaM9Plb7TFLs4cfssm1BKnsGUaMOXIqkzXsTxr40Vh9VE0rDTT2o9YgGmMswLpim4BNVqNJsBlPJhcuD6fQQUEnUpPqkjW3aaTCcG5v5Me5QqxEjM6ZmGZu0ONKF+bxInmn/SojM0p2YUY52TVXcL/SZYU4p9ok/9zkW8MIqcKhtbSRK7TrF4bVTWHQJql9bHe7nHPdG8pZXnDAFb3FwqNzLkD6ICaVuWVI2xColMx8nKkWnWxlPWjNK2eZZS+ZybHzJnRuxwU9ZCkmlg1qqPJwgIXcq6G5vKfke09Hlhxb5FGXV/yMdRgxNee0ycuYPCBqZxcrwGTJWFal7Br/YbS/z7G8oT03DTJGBIvj/MoRP5BC2cAJgXtVIY6O+BqbUxbtsUKgWfwBAQtal8FQCbKRQ/62T9isZVAwGHSGz46DIS4ucWRqUmZJA4AQwJ4gc01cHWu/EE0wnVUKEE2wIPUjsF4v6tXTGmRwGmQCtViaczTaTVXdumMetDdgkJzQnRtA4k3HdQuX620BNsgeuOcgyQ8l86B/OOE4gA85yzY7L51lllkufZnAqdTu9R/5OJi8NibIGtzXwMuM7+zrnvYIs/z8pGob5u4qZVGH+0aUWTlJyYA9sPMUOZe15yWGgxhuZc52fFYmweYBHYKvibGmLPWTES1+AyweRds10vqQxQdPgJiJ5z0uqlE/qDXGSqk5sw+5FoJdTaOISn3bzdd/qmQbybM9rtleqDzacwXy/Rzxb2qh+jrlVgJIn40BykJojRzz536vRJgW0jQQ/b3sm8D7FysP3pkEu7bJ4ZmwhStnQ7WxN6cs+mWS3MesTYbh+urUdevL3n2QuPURNyw+svWyto1yEffC+FPH/nRTB7sEZMa051dmcuy8SAMOJi6NLo++sMuAVT50p17Nzau/NZ30xcnJaSJuAyY27IWsavL2YKUFSz5/B1AYzu9YBVyaY5g6fhnq6yYoBcwv0W4AdRO+wzaaTPL0Bn8uWmedOYz3PsW8mSUxAieE1CEpwSV78TWWlAAreyGPikYZRuaWtpJlBl77bNW8lfcnBnfsZ1KJq0E2q2MHFg2yPoFslRvfTfyjsl6ot8wklQ5+DBRzx/b6KN2Uk34UAGk9fy8CiEv+9lMaHU+UAXsd0973vFAIqQulHBeTcFqBU3foNLPMMsssl7TkwX7yAqoLmWjZ+1r+Zq1gnaNGLIL5GctRuD4/Jyk3dch59B1NkMlPj++MrLA/K/MobELLzHwwjciYXCTK6QvlxAiI8A7dfdnrED1SkmFTvb2WVPnG4OY52F42SWm+MgKYk8awZ7nBMb/t2eqmPsiQ0BXmo34AjdhlHxVVMjrwNSNEmAVbElC3h7su3BHnz4ASzcK44EhPKlkXqJG4YmDOZdjkpL80f9PvIV854+LyhnoqAUVUJrcJGftTCOBUZp2LeaW/J+W6Qr9Z7Mn6dS9LDew7wYjgenXM/HyIQGalwvUt/TOs+8W0vt34mfPoem5zro99c19qMmPa8yszOXbepRnC8q95emibAhN+lm1PXFC/AfOe0IYhvzFo4xtGyasmP0YdP59DX7bO8b74BCvHk9pfG7bWYb+RKaCgmy4k7WcIyValdKaUzpyyOvdhXltsarVKr3Wmq1dGYnTerDIwUkggTqAUnB8x3RLX5ywzJMxAqlavdNpjztxyYKDDoCtZTiAJI7a0D1U+xEiPWxNKOyaqV7BsyDIEAncESgkcOQ/qeSBjIARCYkZIhBSAkMQgNQQgJZmpy+GBpGiJJV1SZfxACEln9prwDowIaROb1Wt/CgI+XMtYv3Rhm45zXMABnvrY4kwNpgchpKZ+uhO4bE/Z7zaHJcYuVWBwaIlrgA45/M3+GWaZZZZLWSr2ilyYnbbXUF+j9lodxiB1DG9hulGL7Wxzefmi5fL6MAcUqnhc5UVKlEjy4sw9EUDUmE1OTKKab1kBJmXlSk8uedKMSBWAWgiHQjYZwss+xhwu981cZ+CuubyruE1CykzBVI5WonK8UUtsj+sM0yLzRJquZNk6YGvunpvZhfvPlU2IqYTyKE7uapmocte53LdOZGBx6qGVmvqMasqobhFQ4b4qJ/2V6a3+T07zy2mIcbXnfG08ge4asfy8wMSgDjIR7YCwdYm6NqUZ2fkKs2sHO3fGwy7SGLPWPS6H2WOydDR9PPqWBSpSrIrHddAlJTOmPa8yk2OPWmjD8VjGr+29Yujrk/27nCGO9+1e7gWioKZoXFEOm9YY82ET/saMtHIvrnxfIhhhdeDm8IBlv2M/dudj0pkfN/wYMbbHapQH2VcE2sR55Zg/zyomhMQg7mqSa4L4SqNwR5glGXwqLTIGUuoQGUg06P1U7V9nVtmpY7F34mXO97MjfqqcglUkmh1rHGYueXQEoAOlAUiyqk7GqVSIsqwBRhk37KEhdsDrQKVBNoVRNva78U9oNDj6Yz7A8RMp7S+sAiE8vr4p7qb8NsW71IXjGkyHnGWbgcQss8xyyYobHfxg7/d7XcssxESYu1Yrmwkg8B/jtRQAXI1T1MQnvecElhwRbJatozcE36ViEeD+UJ0VJ/1suLDxT9ZqjxmFBLAQE56A0zIxFWKsLWzbLDm0JQeqQ43lG43KATvTytJUqboXQwEZGuJLw0crVnLt7D3rwlVaZMXUcwQ8DAfasTajP95vv2dczbsys4Tnp5ymU5uv1TTHRa4vufJn29HRs9K7awbTOEw/ACopDVU3mQe5bXwLdSSbD88ai/7mE+aUPH0n+zlV3Y+bc7jfuavBlHllvt60Wwvb94T1PE63V16XosyY9vzKTI4dQlKcfhHJYTtSb4gH92aZSjMRXjvjl0GmBisaXgGS5tbtPpe5vMFGE3pVsdwKLwSgoxLvgO7GpGqEKc0x9tpjcNdQ0omPCF3+uIuF4ELjSP+w5wdyzK/jXibGAOK++BFjUgJMTSq5mFKan7FCmMXa51hyx5Ujf8KQgI4GLNx0Wh5ICM5fGMCpHGfNMLtmGvI0PmdLk+A0yyAzWH0HpGJmmeBGofxwxseVwiLZoEQKDKHPsphSZvjVhAerh1XfBvAGX/kBsjSS6+pt3EMct9ntR0ptKELO9yDxNskUaJnl8MJpBY5h/4hNmllmmWWWS1JsgB1hRReQD2l6P3mtyR825lMmM7I55UhTzPTWHd50IDW7hPD3dtpvjJJPBWypGdMbOF00dto9Sr6OemjPgVp7rGjn58vGxyiWEW0eqU65yahqrhD5KKeTUKpiOZidr8qetWxCbCV3VZ3tM4zKkraG0ibsyZaJ6224gkC5HrTeEdUTaLka11RlXUQfVq5NkiX5OU6YHzYAytrdRagLU4HLoj/ntcsK9D2cBlnpUPKBoQp3ee86Rd6yFhihMqH0/bT41bP8Sv+joIsq2PfsiMxzUJ7qdgV4hD9LfZq03KTVvMi+Ndg/Ch7dM5OS5JraHWeSTpuo+i7YkMaOs8SIS0VmTHt+ZSbHDiH33XfanU2AAR9OTZy9wqmJMwoPjiBzSKMa8H3a9rSNNxG/FXv7sL9PKc9oo/bYvckrwmuiWHo8pW1vG1PxgSUaYxEcGuf7+53vuy8aZVO+ygb1m9AlAFljrJhPFnPJsUmlaY6NzC/zdU+KWbiExUQYMKBXaoqrQdYGTs6mApUfsRyXUABe7YPM8rPnM/JP1pFookUhSGmTGSUZrCItlsIXLQdpnypOYgWNmGYgsQvnEh6IbSVoqQ87XwT7DIIZHNsgnPPZ/5iatIAL30d4/yjnJAc1o3ys7r8+89BjlPPjKxzXYMyzbLPMMsuTU2qI2IAxv6eJsDYn/7Xa5pGxpMuLPd4zjMhNGgvhJk8ftnd4ydWFazlN473yOauaYcUgjMfn6iwfLqw9nwojBXjFr1XRsgpkFOBoCawCk8c8SXON0D4BuybVbp6droxkppY2LcmNthhQtMV8uGmF2fVN4RjlS0gI6o2sMCjTPZD2uDbeV2EEdSLftAsp1gZAXKwwmh5YPn0sbrkCa9Y2rG59rs7g2tDU0oQcLYQTu1Rlz825j7vpmr/a5utB7Ng41FZxledYSl+0Apu47O/o4zZpGciadbYj+V7yD8hgvsu6XG+OW3zfHu9lXgkA6ZGHcanIjGnPr8zk2CHk//3L/0/86Z3/B4vFXh2Qqt0ofJ9ke8W7776H8JQrLsNyyz22EXFFLnyqTO31ek+0IT4IX//GDk4c35L7+9lBLYPstDx+usqfN2nG1230d/lomnsfZFxxgrC1DAXQBIZfehvBq7WnHFZs9Fmd9XPeONTxyzm79Alf5zM4TgHHaIEARgfxoRBY5sMC3LHuu+Z8Kk5gzSvnl5Rm9OkScPYe9DiG0B0VLTFmxXJuz1B2Tfbszy2envNU+ry3NJpPYsR77wadOAnqFjk7QPNxt8+DFnNzXopRHcPFy3lquEv7yNe+gu7YCSwuP16RRC0s4YkLFQBoE7TXN6R/5GtfxfIpV6LfPjLOYI/8zpc8fN8pdNtHsXX8+GOQ+/6SUsRzX/f6J+Tes8wyyyyznD+55pnb+H/d9Cw8cjY1WM8LYYRN98K2LQGzKQyEdUw4/RDjqVf2dbyRxlmDR315RmzIOJynwgFEJnzjLPD043JNJhCDfkxzniQsk5GKF/N1twfXYT4PuLR6HQB2OeKetINnby2FoiDVqyLz88qgvGqlgKZ8fUOcrL9l10moKMrkW8rpGREP4ht4Ol2J4ixeiDptEU3DzbHbs5VL0h4kfqZLeI0Vn8Kx/u8BpVmQmxOAaRf6MIs7Fdbms1cc5gisv4Guv8oeXyHqKoCLcj0DVx/P7lFfkzQ8jmt5xjXowXuAy78pl9MAr+Fny4+rsvg4/tzdX8PbfHw4x4j0t19DeNo3VQQXSpHzwQhvu4ijuC4Bu/AqHwZSSljd+xVsnfzmGi/vg89HeW2Q9t7VKQOcEo7+/eftncksT1qZybFDyDXf/FRc881PfaKLMcsss8wyy6MQjqsM6Q+TZpZZZpnlUpF/fO1TnugiXACyz8T1LLPMMssFLjOmPb9yuJacZZZZZplllotcZNnr3UNuM5CYZZZZZplllllmmeXCkQsN095///248cYbcfz4cVxxxRV4/etfjzNnzuyZZmdnB29+85vx1Kc+FceOHcOrX/1q3HvvvVWcu+++G6985Stx9OhRXHXVVXjb296GYRjy9T/4gz/IPsr9durUqUOVf9Ycm2WWWWaZ5UklMst2OI2BeZZtlllmmWWWWWaZZZYLSS40THvjjTfinnvuwW233Yb1eo0f+7Efwxvf+EbccsstG9P85E/+JH7v934Pn/jEJ3DixAncdNNN+MEf/EH80R/9EQAgxohXvvKVOHnyJD73uc/hnnvuwete9zosFgv8m3/zb6q8vvzlL+O4c0Fz1VVXHar8Mzk2yyyzzDLLk0rEeelhgcTsvHSWWWaZZZZZZplllgtHLiRM+6UvfQm33nor/uRP/gQvfvGLAQAf+tCH8IpXvALvf//78cxnPnOU5sEHH8Rv/uZv4pZbbsH3fd/3AQB+67d+C8973vPwx3/8x3jpS1+K3//938df/MVf4DOf+QyuvvpqvPCFL8R73vMe/PRP/zTe9a53Yblc5vyuuuoqXHHFFedch9mscpZZZplllieVcNoFx0NuafeJLvYss8wyyyyzzDLLLLNkeTSY9vTp09W2u/vosO4dd9yBK664IhNjAHD99dcjhIA777xzMs1dd92F9XqN66+/Poc997nPxTd/8zfjjjvuyPm+4AUvwNVXX53j3HDDDTh9+jS++MUvVvm98IUvxDOe8Qz8s3/2z7Lm2WFkJsdmmWWWWWaZZZZZZplllllmmWWWWZ4kcs011+DEiRN5e+973/uo8jt16tTIjLHve1x55ZUbfX+dOnUKy+VypO119dVX5zSnTp2qiDG7btcA4BnPeAZuvvlm/O7v/i5+93d/F9dccw3+yT/5J/izP/uzQ9VhNqucZZZZZpnlySVxtyyPflCZHfLPMssss8wyyyyzzHIhyaPAtF/5ylcq/1xbW1uT0X/mZ34G//bf/ts9s/zSl750uDKcZ/n2b/92fPu3f3s+/57v+R78r//1v/DLv/zL+A//4T8cOJ+ZHJtllllmmeVJJRxXhwYSnGafY7PMMssss8wyyyyzXDjyaDDt8ePHK3Jsk/zUT/0UfvRHf3TPON/yLd+CkydP4r777qvCh2HA/fffj5MnT06mO3nyJFarFR544IFKe+zee+/NaU6ePInPf/7zVTpbzXJTvgDwkpe8BP/9v//3PcvdykVDjv3iL/4ifu/3fg9f+MIXsFwu8cADDzzRRZpllllmmeUiFI67YE6HSzOTY7PMMst5khnTzjLLLLPMcj7k8cC0T3/60/H0pz9933jXXXcdHnjgAdx111140YteBAD47Gc/i5QSrr322sk0L3rRi7BYLHD77bfj1a9+NQBZcfLuu+/Gddddl/P9xV/8Rdx3333ZbPO2227D8ePH8fznP39jeb7whS/gGc94xqHqetGQY6vVCq95zWtw3XXX4Td/8zef6OLMMssss8xykcpMjs0yyyxPpMyYdpZZZplllvMhFxKmfd7znoeXv/zleMMb3oCbb74Z6/UaN910E1772tfmlSq/+tWv4mUvexk+9rGP4SUveQlOnDiB17/+9XjrW9+KK6+8EsePH8eP//iP47rrrsNLX/pSAMD3f//34/nPfz5++Id/GO973/tw6tQpvOMd78Cb3/zmbAr6gQ98AM95znPwD/7BP8DOzg5+4zd+A5/97Gfx+7//+4eqw0VDjv3rf/2vAQC//du//cQWZJZZZplllotaRAX9sEBieIxKM8ssszzZZMa0s8wyyyyznA+50DDtxz/+cdx000142ctehhACXv3qV+ODH/xgvr5er/HlL38ZjzzySA775V/+5Rx3d3cXN9xwA37t134tX++6Dp/61Kfwpje9Cddddx0uu+wy/MiP/Aje/e535zir1Qo/9VM/ha9+9as4evQovvM7vxOf+cxn8E//6T89VPkvGnLsXGR3d7dakvT06dNPYGlmmWWWWWaZZZZZZpnlcDLj2VlmmWWWWS4GufLKK3HLLbdsvP7sZz975CNte3sbH/7wh/HhD394Y7pnPetZ+PSnP73x+tvf/na8/e1vP3yBG7mkybH3vve9eXbOywwqZpllllkeX7H37qFX1HkMZB0fRkrdodJEjo9RaWaZZZZZ9pYZz84yyyyzXBhyIeFZYMa051ueUHLsoMuCPve5zz2n/H/2Z38Wb33rW/P5V7/6VTz/+c/HNddcc075zTLLLLPM8ujkoYcewokTJ56Qey+XS5w8eRJ/cepPzyn9yZMnsVwuz3OpZplllktBHktMO+PZWWaZZZYLS55IPAvMmPaxkieUHDvosqDnKltbW9lJGwAcO3YMX/nKV3D55ZeDiM4538daTp8+jWuuuQZf+cpXDrS86qUsc1sUmdtCZG6HIhdTWzAzHnrooeyQ84mQ7e1t/PVf/zVWq9U5pV8ul9je3j7PpZplllkuBXksMe3FimeBi2uceqxlbguRuR2KzG1R5GJpiwsBzwIzpn2s5Aklxw66LOj5khACvumbvulxu9+jlePHj1/QL4fHU+a2KDK3hcjcDkUulrZ4ImfYTLa3t2cwMMsss5x3eTwx7cWGZ4GLZ5x6PGRuC5G5HYrMbVHkYmiLCwHPAjOmfSzkovE5dvfdd+P+++/H3XffjRgjvvCFLwAA/v7f//s4duzYE1u4WWaZZZZZZplllllmOYDMmHaWWWaZZZZZLjy5aMixd77znfjoRz+az7/7u78bAPBf/+t/xT/5J///9u4vpO66jwP457gHN8NljE0l+rcW7GZjwv4IBqUg1U3kjdcaESOcIEYwuvFq24Vjk7VhdTNjEAXBCkY3JbkFFoWxsGDB2sRQthxjwiRweM5zMdDHZ21zUef7s9/rBYL+VHjzFfTN2985pzlRKgAAWDmdFgCypyJ1gJUaGhqKUql0x9u/sUSsXbs2+vr6lj2/RF45iyXO4jbnsMRZAKw+Om0+OYvbnMMSZ7HEWZAFhVJWXocUAAAAAMps1dw5BgAAAAB/N+MYAAAAALllHAMAAAAgt4xjGTcxMRGvvfZabN68OaqqqmLLli3R19cX8/PzqaOV3YEDB6KpqSkeeuiheOSRR1LHKasTJ07EU089FevWrYvGxsb47rvvUkdK4ty5c/Hyyy/Ho48+GoVCIT799NPUkZI4dOhQ7N69O9avXx+1tbXR1tYWv/zyS+pYAPCn9NnldNp8d1p99jZ9lqwxjmXchQsXolgsxnvvvRc///xzHD16NN599914++23U0cru/n5+Whvb4833ngjdZSy+vjjj6O3tzf6+vrihx9+iB07dsSLL74Yv//+e+poZTc3Nxc7duyIEydOpI6S1NmzZ6Orqyu+/fbb+OKLL+LWrVvxwgsvxNzcXOpoAHAHfXY5nTbfnVafvU2fJWu8WuUq1N/fH4ODg3Hp0qXUUZIYGhqKnp6euHHjRuooZdHY2Bi7d++O48ePR0REsViMxx9/PLq7u2P//v2J06VTKBTi9OnT0dbWljpKcjMzM1FbWxtnz56N5557LnUcALivvPfZCJ1Wp9Vn/5c+S2ruHFuFZmdnY8OGDaljUAbz8/MxNjYWra2ti9cqKiqitbU1vvnmm4TJyJLZ2dmICL8XAFg19Nl80Wm5H32W1Ixjq8zFixfjnXfeib1796aOQhlcu3YtFhYWoq6ubtn1urq6uHLlSqJUZEmxWIyenp549tlnY9u2banjAMB96bP5o9NyL/osWWAcS2T//v1RKBTu+XbhwoVl3zM1NRUvvfRStLe3x+uvv54o+d/rr5wDsKSrqyt++umn+Oijj1JHASBn9NklOi38dfosWfCf1AHy6s0334zOzs57fs3TTz+9+P709HS0tLREU1NTvP/++/9wuvJ50HPIm40bN8aaNWvi6tWry65fvXo16uvrE6UiK/bt2xdnzpyJc+fOxWOPPZY6DgA5o88u0WnvTaflbvRZssI4lsimTZti06ZNK/raqampaGlpiZ07d8bJkyejouLfc8Pfg5xDHlVWVsbOnTtjeHh48Yk6i8ViDA8Px759+9KGI5lSqRTd3d1x+vTpGBkZic2bN6eOBEAO6bNLdNp702n5f/osWWMcy7ipqalobm6OJ598Mg4fPhwzMzOLn8vbf1kmJyfj+vXrMTk5GQsLC3H+/PmIiHjmmWeiuro6bbh/UG9vb3R0dMSuXbtiz549MTAwEHNzc/Hqq6+mjlZ2N2/ejIsXLy5+fPny5Th//nxs2LAhnnjiiYTJyqurqys+/PDD+Oyzz2L9+vWLz9VRU1MTVVVVidMBwHL67HI6bb47rT57mz5L1hRKpVIpdQjubmho6K5/MPL2o+vs7IwPPvjgjutfffVVNDc3lz9QGR0/fjz6+/vjypUr0dDQEMeOHYvGxsbUscpuZGQkWlpa7rje0dERQ0ND5Q+USKFQ+NPrJ0+evO9DOgCg3PTZ5XTafHdaffY2fZasMY4BAAAAkFv/rgf7AwAAAMADMI4BAAAAkFvGMQAAAAByyzgGAAAAQG4ZxwAAAADILeMYAAAAALllHAMAAAAgt4xjAAAAAOSWcQwAAACA3DKOAQAAAJBbxjEAAAAAcss4Bhk2MzMT9fX1cfDgwcVro6OjUVlZGcPDwwmTAQDAyui0QNYVSqVSKXUI4O4+//zzaGtri9HR0di6dWs0NDTEK6+8EkeOHEkdDQAAVkSnBbLMOAarQFdXV3z55Zexa9euGB8fj++//z7Wrl2bOhYAAKyYTgtklXEMVoE//vgjtm3bFr/99luMjY3F9u3bU0cCAIAHotMCWeU5x2AV+PXXX2N6ejqKxWJMTEykjgMAAA9MpwWyyp1jkHHz8/OxZ8+eaGhoiK1bt8bAwECMj49HbW1t6mgAALAiOi2QZcYxyLi33norPvnkk/jxxx+juro6nn/++aipqYkzZ86kjgYAACui0wJZ5mGVkGEjIyMxMDAQp06diocffjgqKiri1KlT8fXXX8fg4GDqeAAAcF86LZB17hwDAAAAILfcOQYAAABAbhnHAAAAAMgt4xgAAAAAuWUcAwAAACC3jGMAAAAA5JZxDAAAAIDcMo4BAAAAkFvGMQAAAAByyzgGAAAAQG4ZxwAAAADILeMYAAAAALllHAMAAAAgt/4LgVA9o2ElezkAAAAASUVORK5CYII=", "text/plain": [ "
" ] @@ -59850,7 +34991,7 @@ "outputs": [ { "data": { - "image/png": "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pptuWvV8ut5rABg+fLi6Tmtjf/3rX7Hzzjvjoosuqiht/p4uX74c7733HmbMmIHbbrsNZ511Fq6++mpDfuHChdh7773x3nvvYezYsTj99NPx3Xff4eGHH8aECRPw1FNP4b777kOhUAAQ/cCz++67Y/78+ZgwYQJ+9rOfYcWKFXj33Xcxffp0HHbYYfje975XUd7rG6+88gouueQSHH/88X5mj4eHB4CNh8NeccUVWL58OYYNG4Yvv/yyrLB//OMfcfvtt+OII47Aqaeeim+//Ra33nordt55ZzzzzDMYNWpUathx48bhiSeewKOPPorx48cn/FetWoXHH38c++67L7p06VJ2udJQU1ODP/7xjwCAb775Bg8//DDOOeccvP7668YPn6WwatUqXHLJJQBQ6x+Wf/jDH2L8+PEgInz77bd45513cNddd+Gmm27CFVdcgbPPPlvJujjW66+/juXLl+PSSy816vyFF15AGIa47rrrMscUGzoGDBiAe+65x3A7//zz0bZtW1xwwQUJ+ffffx9BULdzqt58800MGTIEY8eORbt27fDee+/htttuw5NPPok5c+agTZs2hnw545xqQbZLG1tvvbW6TmtjaeOqvODv6erVq/HJJ5/giSeewJFHHok999wTjz/+ONq3b6/ki8Uijj32WDz00EPYbbfdcPHFF6N169Z48cUXcckll2DGjBn4y1/+gh49eqgwZ5xxBm688UYccsghGDduHJo1a4b3338fTz/9NLbYYgvsvPPOZee7IfDFF1/gkksuQd++ff0MYY+mBfLIhWnTphEAev311w33pUuXUvPmzenYY49toJxVH6tWraIuXbrQAQccYLiPGzeO2rRpQ0uXLs0M//zzzxMAmjFjRtlpv/jiiwSApkyZ4vQ/+eSTKQgC+vzzz8uOOw19+vRJlPXLL7+kNm3a0NZbb11WXDNmzCAA9Pzzz1ecn6z6mzNnDnXv3p06duxIX3zxRWY8EydOpDZt2iTcR44cSYMGDao4fzbCMKRVq1ZVLb6GwuLFiwkAXXTRRbWKZ8KECdSnT5+q5ImI6PTTTycA9OWXXyq3iy66iADQ4sWLE/L33nsvBUFAO+20U9XyQFTee53WxjbffPPEu5YXrveUKPpeHXrooQSAbrrpJsNv9OjRFAQBPf7444lw55xzDgGg3/72t8rtoYceIgB03333JeRXr15N3377bUV5d+Gjjz4iAHTllVdWLU6OK6+8kgDQRx99lPADQKeddlqdpCuxevVqKhaLdZoGh6zPadOm1VuaaQjDkIrFYq2PMAwbuigeGwg2Jg5LRPTxxx+r96dNmzY0YcKE3GHfeOMNWr58ueG2ZMkS6tatG+2yyy6ZYVetWkXt2rWj0aNHO/2nT59OAOiBBx7InZ9SmDBhQoLrFYtF2nHHHQlAWXy5WjworY9ZsmQJDR8+nADQk08+mRnHXXfd5Wyzl1xySSr/qRQrVqyoWlwNiUGDBtEee+xRqzjkt8LFHSrBzJkzCQDdf//9yq1a45xykZf7pLWxtHFVHrjeU4kpU6YQADrqqKMM98svv5wA0DnnnJMI86c//YmCIKB9991XuS1YsICEEHTSSScl5MMwpIULF1aU9zSk8fJq4PXXX0/ldHvssUdVx7EuFItFWr16dZ2mYaNPnz5l9VV1Bc9hawdvFqCW6NixI1q1apX4hd+2V/XJJ5/g1FNPRf/+/dGqVSt06dIFY8aMSSwfX7duHS655BJstdVWaNmyJbp06YJdd90Vs2fProfSRHj++efx1Vdf4dRTTzXcTzvtNKxcuRJPPvlk7riWL1+O9evX55bfZZdd0LdvX+csvXXr1mHmzJkYOXJknc8e69mzJwYMGICPPvpIub399tvYb7/90L59e7Rt2xZ77723scTizjvvxJgxYwAAI0eOVEs/aru8imPw4MG49tpr8c033+CGG24w0uY2koQQmDZtGlauXKnyIWWef/55vPvuu4n8hWGIa6+9FoMGDULLli3Ro0cPnHLKKfj666+NPMhlILNmzcKOO+6IVq1a4dZbbwUQzZg488wzsemmm6Kmpgb9+vXDFVdcYSx34cuhp06dii233BI1NTX4wQ9+gNdffz1R5vnz5+Ooo45Ct27d0KpVK/Tv3z/xq/znn3+OH//4x+jRowdqamowaNAg3HHHHdWociPPtj2wxx57DNtuuy1atmyJbbfdNmFKgojQt29fHHLIIYk4v/vuO3To0AGnnHJKZtpyBnTe5d3jxo3DiSeeiNdee61evxuAridXGxNC4KOPPsKTTz6p3Kth06tVq1a455570LlzZ1x22WVqqf8//vEPzJo1C8cffzwOPvjgRLgpU6Zgq622whVXXIHVq1cDAP73v/8BiL5DNlq2bGnMKKgL5P3+//Wvf8Vuu+2GNm3aoGPHjjjkkEPw3nvvKf+LL74Y5557LgBg8803T61v2X7lO/PMM88k8pTn3ZLP94EHHsAvf/lLbLLJJmjdujWWLVuG448/Hm3btsWnn36KAw88EG3btsUmm2yCG2+8EQDwr3/9C3vttRfatGmDPn36JL79S5cuxTnnnIPtttsObdu2Rfv27bHffvvhnXfeqbie6xJEhE/nvYuvl35VhWOp03SFh0e1sCFyWCCaCVnpcuihQ4eibdu2hluXLl2w2267Gd9ZF1q1aoXDDz8czz33HBYtWpTwnz59Otq1a+fsk6qJIAjUzFP5jBYtWoQTTjgBPXr0QMuWLTF48GDcddddKszHH3+Mbt26AQAuueQS1W9U0/Zuly5d8MADD6BZs2a47LLLjLQ5x9pzzz0xYcIEAMAPfvADZdqhb9++auVLt27dEvl7+umnVd/Yrl07HHDAAXj33XeNPMg+6X//+x/2339/tGvXDuPGjQNQPg9+6aWXMGzYMLRs2RJbbLEF7r777kSZv/nmG5x11lno27cvampq0Lt3b4wfPx5LlixRMmvWrMFFF12Efv36oaamBptuuikmT55cVRNPLnuO7777Lvbaay+0atUKvXv3xm9+85vE8vQJEyaga9euCfNUALDPPvugf//+JdMF8nPYtHFOfSGtjaWNq6qB8847D/vssw9mzJiB//znPwCima1XXnkltt56a0yZMiUR5qCDDsKECRPwzDPPqLHoRx99BCJyclhpCqau8cADD2Do0KFo164d2rdvj+222w7XXXedIfPhhx9izJgx6Ny5M1q3bo2dd97Z0C288MILaoXcxIkTU+t73rx5GDlyJFq3bo1NNtkEv/vd7xL5yftuyb0I7rvvPgwaNAg1NTV45pln1Nj5pZdewhlnnIFu3bqhY8eOOOWUU7B27Vp88803GD9+PDp16oROnTph8uTJCd521VVXYcSIEejSpQtatWqFoUOHYubMmbWp5jqD57C1R9Nd89NA+Pbbb7FkyRIQERYtWoTrr78eK1aswI9+9KPMcK+//jpeeeUVjB07Fr1798bHH3+Mm2++GXvuuSfmzZuH1q1bA4gGxVOmTMGJJ56IYcOGYdmyZXjjjTfw1ltv4Yc//GFq/GEYYunSpbnK0KFDh8zlzW+//TYAYMcddzTchw4diiAI8Pbbb5csLxB9EFesWIFCoYDddtsNV155ZSJOG0IIHHvssbj88svx7rvvYtCgQcrvmWeewdKlSxUJqkusW7cO//d//6eWbb377rvYbbfd0L59e0yePBnNmzfHrbfeij333BN/+9vfsNNOO2H33XfHGWecgT/84Q/4xS9+gQEDBgCAOlcLRx55JE444QQ8++yzBjnluOeeezB16lT885//VEtQvv/97+Oee+7BZZddhhUrVqjOWubvlFNOwZ133omJEyfijDPOwEcffYQbbrgBb7/9Nl5++WWjzbz//vs45phjcMopp+Ckk05C//79sWrVKuyxxx74/PPPccopp2CzzTbDK6+8gvPPPx9ffvklrr32WiOP06dPx/Lly3HKKadACIHf/e53OPzww/Hhhx+qtObOnYvddtsNzZs3x8knn4y+ffvif//7H5544glV9oULF2LnnXdWHWO3bt3w9NNP44QTTsCyZcvqbNOkZ599FkcccQQGDhyIKVOm4KuvvsLEiRPRu3dvJSOEwI9+9CP87ne/w9KlS9G5c2fl98QTT2DZsmWJd2nt2rVYtmwZVq9ejTfeeANXXXUV+vTpU9byt+OOOw5Tp07Fs88+m/ndqATLly83BgUSXbp0Qbdu3VLb2D333IOzzjoLvXv3Vkv75UCutmjbti0OO+ww3H777Zg3bx4GDRqEJ554AgCcy78AoFmzZjj22GNxySWX4OWXX8aoUaOUKZK7774bv/zlL+vVVhmQ7/v/l7/8Bfvttx+22GILXHzxxVi9ejWuv/567LLLLnjrrbfQt29fHH744fjPf/6D+++/H9dccw26du0KwKzvl156CY888ghOPfVUtGvXDn/4wx9wxBFH4NNPP1XfvXLfrUsvvRQtWrTAOeecgzVr1qhlc8ViEfvttx923313/O53v8N9992H008/HW3atMEFF1yAcePG4fDDD8ctt9yC8ePHY/jw4dh8880BRCT8sccew5gxY7D55ptj4cKFuPXWW7HHHntg3rx5jc5MAxGhbY8euGPo97E2w+5iKbRo1w4/fvNtEFG9t0OPDRcbA4etKyxYsEB9S7Mwbtw43HXXXXjooYeMjQOXLl2KWbNm4ZhjjkGrVq3qMqsA9I+FXbp0werVq7Hnnnviv//9L04//XRsvvnmmDFjBo4//nh88803mDRpErp164abb745YR5p++23r2q+NttsM+yxxx54/vnnsWzZMuePlhdccAH69++PqVOnKlMWW265JQ499FDcfffdePTRR5VZJJm/e+65BxMmTMDo0aNxxRVXYNWqVbj55pux66674u233zZMda1fvx6jR4/Grrvuiquuukq133J48H//+1/FxydMmIA77rgDxx9/PIYOHarGLitWrFBK+R//+MfYYYcdsGTJEvzpT3/CZ599hq5duyIMQxx88MF46aWXcPLJJ2PAgAH417/+hWuuuQb/+c9/8Nhjj1W1/iUWLFiAkSNHYv369TjvvPPQpk0bTJ06NdE2jzvuONx9992YNWuWYTpkwYIF+Otf/5ow80RE+Oqrr7B+/Xp88MEHOO+881AoFMoyM5FnnFMpvvvuOyeHbd++PVq0aIFrr73W2cb69euXGFeNGDGiavk67rjj8Oyzz2L27NnYeuut8dJLL+Hrr7/GpEmTUk20jB8/HtOmTcOf//xn7LzzzorDzpgxA2PGjFHtur4we/ZsHHPMMdh7771xxRVXAADee+89vPzyy5g0aRKAiFeOGDECq1atwhlnnIEuXbrgrrvuwsEHH4yZM2fisMMOw4ABA/DrX/8aF154IU4++WTstttuAMz6/vrrr7Hvvvvi8MMPx1FHHYWZM2fi//2//4ftttsO++23HwCU/W799a9/Vd/trl27om/fvsrm689+9jP07NkTl1xyCf7xj39g6tSp6NixI1555RVsttlmuPzyy/HUU0/hyiuvxLbbbmuMPa677jocfPDBGDduHNauXYsHHngAY8aMwZ///GcccMABdfU4KoLnsFVAA8yWbZKQyyTso6amhu68886EPKxlNa5l06+++ioBoLvvvlu5DR48uKIp9nJJZJ6j1JL10047jQqFgtOvW7duNHbs2MzwL7/8Mh1xxBF0++230+OPP05TpkyhLl26UMuWLemtt94qWZZ3332XAND5559vuI8dO5ZatmxZ1aW5RNE0/H322YcWL15MixcvpnfeeYfGjh1LAOhnP/sZEREdeuih1KJFC/rf//6nwn3xxRfUrl072n333ZVbXZsFkBg8eDB16tRJ3buW8aQtQXEtp5DmGOzl0M8880zCvU+fPgSAnnnmGUP20ksvpTZt2tB//vMfw/28886jQqFAn376KRHpttqlSxfDxMTjjz9OAOiJJ55Qbrvvvju1a9eOPvnkEyNOvtTghBNOoF69etGSJUsMmbFjx1KHDh1ymyzIWg7nWnI8ZMgQ6tWrF33zzTfK7dlnnyUAhlmA999/nwDQzTffbMR58MEHU9++fRPLJu6//37jfd1xxx1p7ty5hkyWWQAioq+//poA0GGHHZar7Hkg22Xawc0WpC3Zqc0SolJhr7nmGgKgTABIUwFff/11aphHHnmEANAf/vAHIoq+0/3791fP8Pjjj6fbb7+96kupiNxmAfJ8/4cMGULdu3enr776Srm98847FAQBjR8/XrmVMgvQokUL+u9//2vEAYCuv/565Zb33ZJtY4sttki8bxMmTCAAdPnllyu3r7/+mlq1akVCCGN57Pz58xPv4HfffZcwL/DRRx9RTU0N/frXvzbc7He0IVAsFmnJ4kX0m07t6cLmQcXHbzq1pyWLF9WraQWPDRcbE4e1Ua5ZABf+/ve/kxCCfvWrX5WUXb9+PfXq1YuGDx9uuN9yyy0EgGbNmlWrvNiQXE9y2P/+9790+eWXkxCCtt9+eyIiuvbaawkA3XvvvSrc2rVrafjw4dS2bVtatmwZEdW9WQCJSZMmEQB65513iMj9/U4zZeHiP8uXL6eOHTsmlkMvWLCAOnToYLjLPum8884zZCvhwX//+9+V26JFi6impoZ+/vOfK7cLL7yQANAjjzySqAPJ/e655x4KgoBefPFFw1+2l5dffjkRNg1ZZgHsJcdnnnkmAaDXXnvNKEOHDh0M7lAsFql379509NFHG/FdffXVJISgDz/80HD/8ssvjfe1d+/e9OCDDxoylYxzqoGs7wo3W5DGsbOW9pdCqbBvv/02AaCzzjqLiPQ7++ijj6aGWbp0KQGgww8/XLmNHz+eAFCnTp3osMMOo6uuuoree++9ivJcCjYvnzRpErVv357Wr1+fGka2O97ely9fTptvvjn17dtXcZ5SZgHsvmfNmjXUs2dPOuKII5RbOe8WAAqCgN59911DVn6HRo8ebYzXhg8fTkII+slPfqLc1q9fT7179068g3b/uXbtWtp2221pr732Mtwbg1kAz2FrDz9ztUzceOONyuj1woULce+99+LEE09Eu3btjE1wbPBfAtetW4dly5ahX79+6NixI9566y21a3bHjh3x7rvv4oMPPsBWW22VO189e/bMvexq8ODBmf6rV69ONdTdsmVLtYQ2DSNGjDB+XTr44INx5JFHYvvtt8f555/vXHrKMXDgQHz/+9/HAw88oHZiXLlyJf70pz/hwAMPrJOluc8++6wxq6tQKOC4447DFVdcgWKxiGeffRaHHnootthiCyXTq1cvHHvssbjttttSf32vK7Rt2zZzN9pyMWPGDHTo0AE//OEPjV905fK4559/Hscee6xy33zzzTF69OhEHLvtths6depkxDFq1Cj89re/xd///ndj1vHRRx+NTp06qXv5y+SHH34IAFi8eDH+/ve/Y9KkSdhss82MtOSvYESEhx9+GEcddRSIyEh39OjReOCBB/DWW285l8jUBl9++SXmzJmD8847Dx06dFDuP/zhDzFw4EBjB8+tt94aO+20E+677z61OdrSpUvx9NNPY/LkyYlf9EaOHInZs2fjm2++wXPPPYd33nnHuSNoFuSSxmq2EYkLL7xQPSsOPiu3IWCXWZ7btWuXGkb6LVu2DED0nX7ttddw2WWX4aGHHsKdd96JO++8E0EQ4NRTT8VVV11lbBpXbZT6/st2N3nyZKO+t99+e/zwhz/EU089lTutUaNGYcsttzTiaN++vXr/Knm3JkyYkDoj68QTTzTK2b9/f/z3v//FUUcdpdz79++Pjh07qjwAMOq7WCzim2++Qdu2bdG/f3+89dZbuctb3wgEUKjFj/XBRvZDv0f9YGPgsNXGokWLcOyxx2LzzTfH5MmTS8oXCgWMHTsW11xzDT7++GM1Y3L69Ono0aMH9t5776rnceXKlYmVICNGjFAbHj311FPo2bMnjjnmGOXfvHlznHHGGTjmmGPwt7/9rc52/Xah2hxFcqZjjjnG6KsKhQJ22mknPP/884kwP/3pT437cnnwwIEDDS7UrVs39O/f3+i/Hn74YQwePBiHHXZYIn3J/WbMmIEBAwZgm222MdKVmzk9//zzVZ0hKfHUU09h5513xrBhw4wyjBs3DjfddJNyC4IA48aNwx/+8AcsX75c8ab77rsPI0aMUKtMJDp37ozZs2fju+++w9tvv41HHnkEK1asKDt/1R7nSBxyyCHGjHKJ7bbbrupplYNqcFgAmDZtGoYNG4Y77rgDjz76KB599FGcc8452GuvvXD33Xdjk002qasioGPHjli5ciVmz56Nfffd1ynz1FNPYdiwYdh1112VW9u2bXHyySfj/PPPx7x587DtttuWTKtt27bGiosWLVpg2LBhxvtX7ru1xx57YODAgc70TjjhBGO8ttNOO+HVV1/FCSecoNwKhQJ23HFHvPnmm0ZY3n9+/fXXKBaL2G233XD//feXLGdDwXPYyuGVq2Vi2LBhxtL2Y445Bt///vdx+umn48ADD0xVSq5evRpTpkzBtGnT8Pnnnxs2KL799lt1/etf/xqHHHIItt56a2y77bbYd999cdxxx5VcltOyZcvMHUzLQatWrbB27Vqn33fffVfRcqZ+/frhkEMOwSOPPIJisah2507DuHHjcM455+CVV17BiBEj8Nhjj2HVqlW5TAIsXrwYxWJR3bdt2zZhP8vGTjvthN/85jcQQqB169YYMGCA2mF7wYIFWLVqldOu0IABAxCGIf7v//7PMGFQ11ixYkVmh1suPvjgA3z77bep9nhs22E2mZJxzJ07N3Wptx2HrTCVilZp20p2kFmd7OLFi/HNN99g6tSpmDp1aq50q4FPPvkEAJyDR5fSZ/z48Tj99NPxySefoE+fPpgxYwbWrVunBqQcPXr0UDt/Hnnkkbj88svxwx/+EB988AF69uyZK3+SyGa1kbVr1yaWYXbr1q3ku7nddttV7VtTTdhllufly5erd9mGi7x26NABv/vd7/C73/0On3zyCZ577jlcddVVuOGGG9ChQwf85je/ccYld7vl6Ny5c1k7ypb6/st2l/YtmjVrFlauXJnYkdcF+/0DondQvn+VvFuu7wIQ9U/2d6FDhw7o3bt34seFDh06GPbt5I69N910Ez766CPj217N3barjWYCoFqQy2YbMTH1qDtsDBy2mli5ciUOPPBALF++HC+99FJJLikxbtw4XHPNNZg+fTp+8Ytf4LPPPsOLL76IM844o2Qf++233xqTGFq0aFHyx8uWLVsqUzg1NTXYfPPNDRNFn3zyCbbaaqvEbvHSLJTsW+oLeThKOfjggw8AIHV3eXvyQ7NmzYz6kXGUw4NL9aFAZJrhiCOOKJn39957Lzd3rhY++eQT7LTTTgl3F78YP348rrjiCjz66KMYP3483n//fbz55pu45ZZbErItWrRQ7/KBBx6IvffeG7vssgu6d+9elgI/zzhnwYIFxn2HDh1KjlF79+7dKL81WRw2DS4OGwQBTjvtNJx22mn46quv8PLLL+OWW27B008/jbFjx+LFF19Mja+S8TPHqaeeioceegj77bcfNtlkE+yzzz446qijDEVrWrvj36I8ylUXf+zUqRPmzp2r7st9t9I4LJB83+XEmk033TThbtto/vOf/4zf/OY3mDNnjmHrtTEvl/cctnJ45WotEQQBRo4cieuuuw4ffPBBqoLtZz/7GaZNm4YzzzwTw4cPR4cOHSCEwNixYw3j4bvvvjv+97//4fHHH8ezzz6LP/7xj7jmmmtwyy23GDN/bLgG9mkoNeDv1asXisUiFi1aZJCMtWvX4quvvqrYxt2mm26KtWvXYuXKlSVneR5zzDGYPHkypk+fjhEjRmD69Ono1KkT9t9//5Lp/OAHPzCI4kUXXVTSIH/Xrl0bZWfrwrp16/Cf//wnV+eTF2EYonv37rjvvvuc/nbH5CIvYRjihz/8YerMDjlbRiJtgMEHbaUg350f/ehHavMDG9W2F1YJxo4di7POOgv33XcffvGLX+Dee+/FjjvuWHIjACBSsF5wwQV4/PHHS25+JfHvf/8bADLttL7yyisYOXKk4fbRRx8ZdsmaEuwyDxgwAI899hjmzp2L3Xff3RlGkrC0X6r79OmDH//4xzjssMOwxRZb4L777ktVrv7f//1fgpg9//zzZdkZq/T7XwlKvX+VvFtpg5q0tPJ8Ay6//HL86le/wo9//GNceuml6Ny5M4IgwJlnnpnYeKMxoSCAsBbksjYzBjw88mJD5LDVwtq1a3H44Ydj7ty5mDVrVlmca+jQodhmm21w//334xe/+AXuv/9+EFGuCQKTJk0yNpraY489Sm6MWigUmgyHBaL+ulAoZCozyoFsg/fcc4/zR2jbZmVNTU1C0VwuD64Gh5Xpbrfddrj66qud/rbypiEwcOBADB06FPfeey/Gjx+Pe++9Fy1atDBWnqRhxIgR6NWrF+67777cytW845xevXoZ99OmTUts2tVU4OKwQMRTDz30UGeYUhy2S5cuOPjgg3HwwQerPULkJA8XKhk/c3Tv3h1z5szBrFmz8PTTT+Ppp5/GtGnTMH78eOObVg3kef/KfbeyFPPl8FiehxdffBEHH3wwdt99d9x0003o1asXmjdvjmnTpjk3724s8By2cnjlahWwfv16AMhc9jBz5kxMmDABv//975Xbd99959w9sXPnzpg4caLaEGr33XfHxRdfnElMXQP7NJQa8A8ZMgQA8MYbbxjKzDfeeANhGCr/cvHhhx+iZcuWuX4F+973voeRI0dixowZ+NWvfoXZs2fj+OOPz0Wo77vvPuNXf76UvxJ069YNrVu3xvvvv5/wmz9/PoIgUB/o+vgVaubMmVi9enViWX5tsOWWW+Ivf/kLdtlll4o3Wthyyy2xYsWKqhF8+dwk4XChW7duaNeuHYrFYr0OLCQxkbMlOFztpHPnzjjggANw3333Ydy4cXj55ZcTG3ylQbZlPjuoFORSwKw2Mnjw4MQyzLwzYxsbVqxYgUcffRSbbrqpIqQHHnggpkyZgrvvvtupXC0Wi+pHm1JmIzp16oQtt9wysy26lrVWsnw16/sv213at6hr165q1mptv0UN9W7ZmDlzJkaOHInbb7/dcP/mm29ybS7j4eGRjQ2Nw1YDYRhi/PjxeO655/DQQw9hjz32KDuOcePG4Ve/+hXmzp2L6dOnY6uttlI7YGdh8uTJxnJXbj6pUvTp0wdz585FGIaGUnH+/PnKH6gfDvvpp5/ib3/7G4YPH161mavSxE337t0r7q+qwYNdcWbxBinzzjvvYO+9967XmWx9+vTJzWGBaPbq2WefjS+//BLTp0/HAQcckLttfvfdd2Vx2LzjHJtz1ecKwmrjnnvugRBCbfy36667omPHjpg+fTouuOACpxLv7rvvBoBcSusdd9wRf/vb3/Dll1+mKlerMX5u0aIFDjroIBx00EEIwxCnnnoqbr31VvzqV79Cv3790KdPn1QOC1T3W9RQ7xbHww8/jJYtW2LWrFmGmatp06Y1SH486h5BaRGPLKxbtw7PPvssWrRokbkrfKFQSPyaef311xvT7wHgq6++Mu7btm2Lfv36GdPIXZAD+zxHqQH/Xnvthc6dO+Pmm2823G+++Wa0bt3a2NluyZIlmD9/PlatWqXcXLMP3nnnHfzpT3/CPvvsk/i1OA3jxo3DokWLcMopp2DdunW5fvEHgF122QWjRo1SR22Vq4VCAfvssw8ef/xxfPzxx8p94cKFmD59OnbddVc1E1cqNlwDji+//BLz58/HunXrKs7LO++8gzPPPBOdOnXCaaedVnE8No466igUi0VceumlCb/169c7y+OK49VXX8WsWbMSft98840awOVFt27dsPvuu+OOO+7Ap59+avjJd6lQKOCII47Aww8/7CSweWfClItevXphyJAhuOuuuwzCOHv2bMybN88Z5rjjjsO8efNw7rnnKptsHHIHZxtyV1K+lDML06dPxx//+EcMHz4807Zbp06djPdk1KhRaNmyZa40qoVVq1Zh/vz5zp1b82L16tU47rjjsHTpUlxwwQWKQI0YMQKjRo1SO6nauOCCC/Cf//wHkydPVgOpd955x5mXTz75BPPmzcucaSyXtfKj3EFxqe8/b3f8nfz3v/+NZ5991vgxLOtblAcN9W658mG/FzNmzMDnn39eL+lXioKo/eHhUdfYEDlsOfj2228xf/78hOLnZz/7GR588EHcdNNNmbZosyA564UXXog5c+bk5rADBw40+pGhQ4dWlD7H/vvvjwULFuDBBx9UbuvXr8f111+Ptm3bKuWx3F3c1W+k1VU5WLp0KY455hgUi0VccMEFFcdjY/To0Wjfvj0uv/xyJ8fO019VgwfbOOKII/DOO+/g0UcfTfjJ9+moo47C559/jttuuy0hs3r16rJt7ufF/vvvj3/84x/45z//qdwWL16cOnP3mGOOgRACkyZNwocffmj8AABEJjT4WFDi4Ycfxtdff52bw5YzzrE5lz2TtT4wf/78xBilXPz2t7/Fs88+i6OPPlqZG2vdujXOOeccvP/++8535cknn8Sdd96J0aNHY+eddwYQmUlwjUHWrl2L5557DkEQZK5oq+342f7+B0GgVjjJPmD//ffHP//5T7z66qtKbuXKlZg6dSr69u2rZuHWlsMCDfducRQKBQghjL7y448/xmOPPVbnadcGnsNWDj9ztUw8/fTT6teVRYsWYfr06fjggw9w3nnnZS51P/DAA3HPPfegQ4cOGDhwIF599VX85S9/SdiMGzhwIPbcc08MHToUnTt3xhtvvIGZM2c6jW9zVNvm6qWXXorTTjsNY8aMwejRo/Hiiy/i3nvvxWWXXWbYfrrhhhtwySWXGDMJjj76aLRq1QojRoxA9+7dMW/ePEydOhWtW7fGb3/729z5OOKII3Dqqafi8ccfx6abbpq6tLc+8Jvf/AazZ8/GrrvuilNPPRXNmjXDrbfeijVr1uB3v/udkhsyZAgKhQKuuOIKfPvtt6ipqcFee+2F7t274/zzz8ddd92Ve+n1iy++iO+++w7FYlHZzfnTn/6EDh064NFHH63qLMM99tgDp5xyCqZMmYI5c+Zgn332QfPmzfHBBx9gxowZuO6663DkkUdmxnHuueeqTceOP/54DB06FCtXrsS//vUvzJw5Ex9//HHZM83+8Ic/YNddd8UOO+yAk08+GZtvvjk+/vhjPPnkk5gzZw6AiJQ8//zz2GmnnXDSSSdh4MCBWLp0Kd566y385S9/SdgVrRamTJmCAw44ALvuuit+/OMfY+nSpbj++usxaNAg5wygAw44AF26dMGMGTOw3377Jex63XvvvbjlllvUxmnLly/HrFmzMHv2bBx00EFOW2IzZ85E27ZtsXbtWnz++eeYNWsWXn75ZQwePBgzZsyok3LLdmlj++23L9sEwz//+U+MHDky99Kjzz//HPfeey+AaJbVvHnzMGPGDCxYsAA///nPE2YT7r77buy999445JBDcOyxx2K33XbDmjVr8Mgjj+CFF17A0UcfjXPPPVfJz549GxdddBEOPvhg7Lzzzmjbti0+/PBD3HHHHVizZk1Zy6MqQZ7v/5VXXon99tsPw4cPxwknnIDVq1fj+uuvR4cOHYz8yQH5BRdcgLFjx6J58+Y46KCDctljlWiod4vjwAMPxK9//WtMnDgRI0aMwL/+9S/cd999tf7RrK5REIRQlLc81A7v4VFtbAwcFgCeeOIJvPPOOwAiBfLcuXOVSZeDDz5Y9VWPPvooJk6caCwnvvbaa3HTTTdh+PDhaN26tepzJA477LBc39HNN98cI0aMwOOPPw4AuZWrdYGTTz4Zt956K44//ni8+eab6Nu3L2bOnKlW0cgZpK1atcLAgQPx4IMPYuutt0bnzp2x7bbbYtttt3XWVRb+85//4N577wURYdmyZXjnnXcwY8YMrFixAldffXXqhjeVoH379rj55ptx3HHHYYcddsDYsWPRrVs3fPrpp3jyySexyy674IYbbsiMoxo82Ma5556LmTNnYsyYMfjxj3+MoUOHYunSpfjTn/6EW265BYMHD8Zxxx2Hhx56CD/5yU/w/PPPY5dddkGxWMT8+fPx0EMPYdasWbkVk+Vg8uTJuOeee7Dvvvti0qRJaNOmDaZOnapmOdvo1q0b9t13X8yYMQMdO3Y0JtoA0UquUaNG4eijj8Y222yDIAjwxhtv4N5770Xfvn0xadKkRJz1Oc6RkO3SRo8ePdSs0XIwYMCAXKY7gEhJL9P+7rvv8Mknn+BPf/oT5s6di5EjRybs25933nl4++23ccUVV+DVV1/FEUccgVatWuGll17CvffeiwEDBhjL7T/77DMMGzYMe+21F/bee2/07NkTixYtwv3336+U1nW54ufEE0/E0qVLsddee6F379745JNPcP3112PIkCHqx7vzzjsP999/P/bbbz+cccYZ6Ny5sxobP/zww2oC1pZbbomOHTvilltuQbt27dCmTRvstNNOZZkSaah3i+OAAw5Q37tjjz0WixYtwo033oh+/fo537PGAs9hawHyyIVp06YRAONo2bIlDRkyhG6++WYKw9CQB0AXXXSRuv/6669p4sSJ1LVrV2rbti2NHj2a5s+fT3369KEJEyYoud/85jc0bNgw6tixI7Vq1Yq22WYbuuyyy2jt2rX1VFKNqVOnUv/+/alFixa05ZZb0jXXXJMo50UXXUQA6Pnnn1du1113HQ0bNow6d+5MzZo1o169etGPfvQj+uCDD8rOw5gxYwgATZ48ubbFSUWfPn3ogAMOKCn31ltv0ejRo6lt27bUunVrGjlyJL3yyisJudtuu4222GILKhQKRt1MmDCBANBHH32Umc7zzz9vtLPmzZtTt27daPfdd6fLLruMFi1alAgj2yePe8KECdSmTZuE7B577EGDBg1ypj116lQaOnQotWrVitq1a0fbbbcdTZ48mb744gslk1Vfy5cvp/PPP5/69etHLVq0oK5du9KIESPoqquuUm34o48+IgB05ZVXJsLb7w0R0b///W867LDDqGPHjtSyZUvq378//epXvzJkFi5cSKeddhptuumm1Lx5c+rZsyftvffeNHXqVGc+XVi8eLEzfZ7nadOmGe4PP/wwDRgwgGpqamjgwIH0yCOP0IQJE6hPnz7ONE499VQCQNOnT0/4vf766zRmzBjabLPNqKamhtq0aUM77LADXX311bRu3TpDVr53/FvUu3dvOvDAA+mOO+6g7777Lne588Jul/bB6y2tjdltR8bpqnNXWJmWEILat29PgwYNopNOOolee+211HDLly+niy++mAYNGqTa9S677EJ33nln4nv24Ycf0oUXXkg777wzde/enZo1a0bdunWjAw44gP7617+WrqQy4HoP8n7///KXv9Auu+xCrVq1ovbt29NBBx1E8+bNS6Rx6aWX0iabbEJBEBjfBwB02mmnJeTt/ogo37sln+OMGTMScZb7HbLbyHfffUc///nPqVevXtSqVSvaZZdd6NVXX6U99tiD9thjDyWX9o7WN4rFIi1ZvIhu6tGO/tBGVHzc1KMdLVm8iIrFYoOWx2PDwMbGYSXfch38GyHrhbtlhc3D4ThuvPFGAkDDhg2rXuEspH1jbSxcuFA9wxYtWtB2223n/F6+8sorNHToUGrRooXRDlx1lQZeX0EQUMeOHen73/8+TZo0id59992EvOv7LdN7/fXXDVnJfxYvXpyI5/nnn6fRo0dThw4dqGXLlrTlllvS8ccfT2+88YaSKVVfteHBdr9ERPTVV1/R6aefTptssgm1aNGCevfuTRMmTKAlS5YombVr19IVV1xBgwYNopqaGurUqRMNHTqULrnkEvr2229T82pj0KBBifR5nu3+fe7cubTHHntQy5YtaZNNNqFLL72Ubr/99tR2/tBDDxEAOvnkkxN+ixcvppNPPpm22WYbatOmDbVo0YK22morOvPMMxPPqpJxTjWQ9V7zektrY662Y4dNg/1dad26NfXt25eOOOIImjlzZmpfXywWadq0abTLLrtQ+/btqWXLljRo0CC65JJLaMWKFYbssmXL6LrrrqPRo0dT7969qXnz5tSuXTsaPnw43XbbbYnvfG1hvwczZ86kffbZh7p3704tWrSgzTbbjE455RT68ssvjXD/+9//6Mgjj1TjumHDhtGf//znRPyPP/44DRw4kJo1a2Z8H9L4o2v8lffdSuPF5X6HXG3k9ttvp6222opqampom222oWnTpqnwHK53tL7hOWztIYjKtLzt4eHh4VERzjrrLNx+++1YsGCBWn7n4eGx4SAMQ3y99Cs8tO2WWJ9hw7IUmrVti6P+/T906twltykdDw8PDw+PusLjjz+OQw89FH//+9+x2267NXR2PDw8qgzPYWsPbxbAw8PDox7w3Xff4d5778URRxzhFaseHhs4CgFAteCThY2Li3p4eHh4NHLcdttt2GKLLbDrrrs2dFY8PDzqEJ7DVg6vXPXw8PCoQyxatAh/+ctfMHPmTHz11VdOu1MeHh4bFgoCoFoY9N+YNwPw8PDw8Gg8eOCBBzB37lw8+eSTuO666xps53UPD4/6geewlcMrVz08PDzqEPPmzcO4cePQvXt3/OEPf8CQIUMaOkseHh4eHh4eHh4eJXHMMcegbdu2OOGEE3Dqqac2dHY8PDw8Gi28ctXDw8OjDrHnnnvCm7b28Ni44H/19/Dw8PDYEOA5rIfHxgXPYSuHV656eHh4eHh4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", + "image/png": "iVBORw0KGgoAAAANSUhEUgAABNwAAAGGCAYAAACg4ZwmAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjMsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvZiW1igAAAAlwSFlzAAAPYQAAD2EBqD+naQABAABJREFUeJzsXXecFEX+fTULGwi75KAgoKKShBMOBFEMKCoGFFGQI8mJnqAop/zEABgxZwXxFBXBAOYEomKEUxHBU0Q9RfHEBRRJS96t3x8z3V2xu7qnZ3aXrcdn2O6K36oO9fpVIpRSCgsLCwsLCwsLCwsLCwsLCwsLC4tYkChvAywsLCwsLCwsLCwsLCwsLCwsLPYmWMHNwsLCwsLCwsLCwsLCwsLCwsIiRljBzcLCwsLCwsLCwsLCwsLCwsLCIkZYwc3CwsLCwsLCwsLCwsLCwsLCwiJGWMHNwsLCwsLCwsLCwsLCwsLCwsIiRljBzcLCwsLCwsLCwsLCwsLCwsLCIkZYwc3CwsLCwsLCwsLCwsLCwsLCwiJGWMHNwsLCwsLCwsLCwsLCwsLCwsIiRljBzcLCwsLCwsLCwsLCwsLCwsLCIkZkVHAjhGDy5MmZzMLCwsXjjz8OQgh++uknzv3222/H/vvvj5ycHHTq1AkAsGfPHowfPx7NmzdHIpFAv379sm5vZcNPP/0EQggef/zxwLDDhw9Hy5YtM25TRYbuHtu6dSv+/ve/o0mTJiCE4NJLLy1XO6sqCCEYM2ZMeZsRK8I8oxYWFuawfNYim9C9y+fNm4dOnTohPz8fhBBs3LgRADBz5kwccsghqF69OurUqZN1eysjWrZsieHDhweG031bVDXo7jHVN5ZFdnH00Uejffv25W1G7DB9RisDQgluzkuH/TVq1AjHHHMM3nzzzUzZWK549NFH0aZNG+Tn56N169a4//77jeK99957Ul05v3//+9/aeLt370aDBg3Qs2dPbRhKKZo3b47DDjssdHl0aNmypXRdjzzySLz44ouh01qxYgUmT56cVuMk1l9eXh4aN26Mo48+GjfffDPWr19vlM5bb72F8ePH44gjjsCMGTNw8803AwAee+wx3H777TjrrLPwxBNP4LLLLotsa2XG5MmTtfcp+zv66KOzYs/27dsxcuRItG/fHkVFRahVqxY6duyIe++9F7t37/a1vUaNGthvv/1w6qmnYsaMGdi5c2fs9vk914QQPPPMM25Y3T1288034/HHH8c//vEPzJw5E0OGDDHOn31OE4kE6tSpgw4dOmDUqFH45JNPtPFKSkpwww034NBDD0WNGjVQVFSEI488Ek8++SQopVL4rVu3YtKkSWjfvj1q1qyJ+vXro1OnThg7dizWrFkTosb84XxU3HHHHbGlyWLRokWYPHmy+1FiYWFhAVQ9Pjt16lQMGDAA++23HwghoT5iVq5cifHjx6NTp06oXbs2mjZtir59+2LJkiWBcU877TTUqFEDW7Zs0YYZPHgwcnNz8ccffxjb5Ifhw4dz17WwsBAdO3bEnXfeGZoXbNu2DZMnT8Z7772Xlk2sPdWqVUO9evXQuXNnjB07FitWrDBK448//sDZZ5+NgoICPPjgg5g5cyZq1qyJlStXYvjw4TjggAPwyCOPYPr06WnZWlkRxM/YX7Zw88034/DDD0fDhg3d78hLL71U+oaJ65snLPzq6MILL3TD6e4x3TeWCcTntFatWth///1x1lln4fnnn0dZWZkyHqUUM2fOxFFHHYU6deqgRo0a6NChA66//nqUlJRI4cvKyvDkk0+iW7duqFevHmrXro2DDjoIQ4cO9f0ej4KWLVvilFNOiTVNB2vWrMHkyZOxbNmyjKRvkVlUixLp+uuvR6tWrUApxdq1a/H444/j5JNPxquvvsrdaNu3b0e1apGyqBB4+OGHceGFF6J///4YN24cPvzwQ1xyySXYtm0b/u///s8ojUsuuQR//etfObcDDzxQG7569eoYMGAAHn74Yfz8889o0aKFFOaDDz7A//73v9hFok6dOuGf//wngOSD/fDDD+PMM8/E1KlTuRdvEFasWIHrrrsORx99dNqjnJz6Ky0txfr167Fo0SJMmjQJd911F5577jkce+yxbtghQ4Zg4MCByMvLc93effddJBIJPProo8jNzeXc9913X9x9991p2VfZceaZZ3L349atW/GPf/wDZ5xxBs4880zXvXHjxmjRogW2b9+O6tWrZ8ye7du34+uvv8bJJ5+Mli1bIpFIYNGiRbjsssvwySefYPbs2VKcqVOnolatWti5cyd+/fVXzJ8/H+eddx7uuecevPbaa2jevHnsdqqeawDo3r27e6y7x959910cfvjhmDRpUqS82ed0y5Yt+OabbzBnzhw88sgjuOyyy3DXXXdx4deuXYvjjjsO33zzDQYOHIgxY8Zgx44deP755zFs2DC88cYbmDVrFnJycgAkRf+jjjoKK1euxLBhw3DxxRdj69at+PrrrzF79mycccYZ2GeffSLZnm0sWrQI1113HYYPH257/S0sLCRUFT576623YsuWLejatSt+++23UHH/9a9/4dFHH0X//v1x0UUXYdOmTXj44Ydx+OGHY968eejdu7c27uDBg/Hqq6/ixRdfxNChQyX/bdu24eWXX8aJJ56I+vXrhy6XDnl5efjXv/4FANi4cSOef/55XH755fjss8+4jrEgbNu2Dddddx0ApN3xePzxx2Po0KGglGLTpk1Yvnw5nnjiCTz00EO49dZbMW7cODesim999tln2LJlC2644Qauzt977z2UlZXh3nvv9f2+2NvRpk0bzJw5k3ObMGECatWqhauvvloK/+233yKRyOzKSp9//jk6deqEgQMHonbt2vjmm2/wyCOP4PXXX8eyZctQs2ZNLnyYb5644NyXIg466CD3WHeP6b6xTME+p9u3b8fPP/+MV199FWeddRaOPvpovPzyyygsLHTDl5aW4txzz8Vzzz2HI488EpMnT0aNGjXw4Ycf4rrrrsOcOXPw9ttvo3Hjxm6cSy65BA8++CBOP/10DB48GNWqVcO3336LN998E/vvvz8OP/zw0HaXB9asWYPrrrsOLVu2tCMJKyNoCMyYMYMCoJ999hnnvmHDBlq9enV67rnnhkmuQmPbtm20fv36tG/fvpz74MGDac2aNemGDRt84y9cuJACoHPmzAmd94cffkgB0ClTpij9R40aRROJBP31119Dp61DixYtpLL+9ttvtGbNmvSggw4KldacOXMoALpw4cLI9vjV37Jly2ijRo1onTp16Jo1a3zTGTFiBK1Zs6bkfswxx9B27dpFtk9EWVkZ3bZtW2zplRfWr19PAdBJkyallc6wYcNoixYtYrGJUkrHjBlDAdDffvvNdZs0aRIFQNevXy+Ff+qpp2gikaDdunWLzQZKwz3XunusVatW0rNmCtVzSmnyfdWvXz8KgD700EOcX58+fWgikaAvv/yyFO/yyy+nAOgtt9ziuj333HMUAJ01a5YUfvv27XTTpk2RbFdh1apVFAC9/fbbY0uTxe23304B0FWrVkl+AOjo0aMzkq+D7du309LS0ozmwcKpzxkzZmQtTwuLyoiqxGcppfSnn36iZWVllFJKa9asSYcNG2Ycd8mSJXTLli2c2++//04bNmxIjzjiCN+427Zto7Vr16Z9+vRR+s+ePZsCoM8884yxPUEYNmyYxPtKS0tply5dKIBQ3DkuTqRrb37//XfavXt3CoC+/vrrvmk88cQTynv2uuuu03KhqNi6dWtsaZUn2rVrR3v16pVWGs67QsUjomDu3LkUAH366addt7i+ecLClAfp7jHdN5YJVM+pgylTplAA9Oyzz+bcb775ZgqAXn755VKcV155hSYSCXriiSe6bsXFxZQQQs8//3wpfFlZGV27dm0k23XQcfQ48Nlnn2n5Xa9evWL9plWhtLSUbt++PaN5iGjRokWotqoiIxZpv06dOigoKJB6/8Q1L37++WdcdNFFOPjgg1FQUID69etjwIAB0tTD3bt347rrrkPr1q2Rn5+P+vXro2fPnliwYEEc5hph4cKF+OOPP3DRRRdx7qNHj0ZJSQlef/1147S2bNmCPXv2GIc/4ogj0LJlS+Vont27d2Pu3Lk45phjMj7KpEmTJmjTpg1WrVrlun3xxRc46aSTUFhYiFq1auG4447jhuQ+/vjjGDBgAADgmGOOcYcKpzscn0XHjh1xzz33YOPGjXjggQe4vNl1FgghmDFjBkpKSlw7nDALFy7E119/LdlXVlaGe+65B+3atUN+fj4aN26MCy64AH/++SdngzNseP78+ejSpQsKCgrw8MMPA0j2pl566aVo3rw58vLycOCBB+LWW2/lhkezU+mmT5+OAw44AHl5efjrX/+Kzz77TCrzypUrcfbZZ6Nhw4YoKCjAwQcfLPXY/frrrzjvvPPQuHFj5OXloV27dnjsscfiqHLOZnFNkZdeegnt27dHfn4+2rdvL01DppSiZcuWOP3006U0d+zYgaKiIlxwwQW+eTsjJU2nBg4ePBh///vf8cknn2T1vQF49aS6xwghWLVqFV5//XXXPY51QQoKCjBz5kzUq1cPN910kztN9N///jfmz5+P4cOH47TTTpPiTZkyBa1bt8att96K7du3AwB++OEHAMn3kIj8/HyutzETMH3/v/vuuzjyyCNRs2ZN1KlTB6effjq++eYb13/y5Mm44oorAACtWrXS1rdz/zrPzLx58ySbTJ4t5/o+88wzuOaaa7DvvvuiRo0a2Lx5M4YPH45atWph9erVOOWUU1CrVi3su+++ePDBBwEA//nPf3DssceiZs2aaNGihfTu37BhAy6//HJ06NABtWrVQmFhIU466SQsX748cj1bWFjI2Bv5LJAcMRV1Kl3nzp1Rq1Ytzq1+/fo48sgjuXeuCgUFBTjzzDPxzjvvYN26dZL/7NmzUbt2bWX7FCcSiYQ7Qs25RuvWrcPIkSPRuHFj5Ofno2PHjnjiiSfcOD/99BMaNmwIALjuuuvcNiTOtfzq16+PZ555BtWqVcNNN93E5c3yraOPPhrDhg0DAPz1r391pwW3bNnSHS3fsGFDyb4333zTbSdr166Nvn374uuvv+ZscNqnH374ASeffDJq166NwYMHAwjPiT/66CN07doV+fn52H///fHkk09KZd64cSMuu+wytGzZEnl5eWjWrBmGDh2K33//3Q2zc+dOTJo0CQceeCDy8vLQvHlzjB8/PtalQlTrQ3399dc49thjUVBQgGbNmuHGG2+UpjYOGzYMDRo0kJY5AYATTjgBBx98cGC+gDmf1X3zZAu6e0z3jRUHrrzySpxwwgmYM2cOvvvuOwDJEXC33347DjroIEyZMkWKc+qpp2LYsGGYN2+e+126atUqUEqVfNZZRiDTeOaZZ9C5c2fUrl0bhYWF6NChA+69914uzI8//ogBAwagXr16qFGjBg4//HBOZ3jvvffcWTUjRozQ1veKFStwzDHHoEaNGth3331x2223SfaYPlvOOsezZs1Cu3btkJeXh3nz5rnf0R999BEuueQSNGzYEHXq1MEFF1yAXbt2YePGjRg6dCjq1q2LunXrYvz48dLSNXfccQd69OiB+vXro6CgAJ07d8bcuXPTqeYKj0jj4zdt2oTff/8dlFKsW7cO999/P7Zu3Yq//e1vvvE+++wzLFq0CAMHDkSzZs3w008/YerUqTj66KOxYsUK1KhRA0DyQ2nKlCn4+9//jq5du2Lz5s1YsmQJli5diuOPP16bfllZGTZs2GBUhqKiIt+pcV988QUAoEuXLpx7586dkUgk8MUXXwSWF0g+GFu3bkVOTg6OPPJI3H777VKaIgghOPfcc3HzzTfj66+/Rrt27Vy/efPmYcOGDW5jmEns3r0bv/zyizvM/+uvv8aRRx6JwsJCjB8/HtWrV8fDDz+Mo48+Gu+//z66deuGo446Cpdccgnuu+8+XHXVVWjTpg0AuH/jwllnnYWRI0firbfe4kgKi5kzZ2L69On49NNP3SHLf/nLXzBz5kzcdNNN2Lp1q/vSduy74IIL8Pjjj2PEiBG45JJLsGrVKjzwwAP44osv8PHHH3P3zLfffotBgwbhggsuwPnnn4+DDz4Y27ZtQ69evfDrr7/iggsuwH777YdFixZhwoQJ+O2333DPPfdwNs6ePRtbtmzBBRdcAEIIbrvtNpx55pn48ccf3by+/PJLHHnkkahevTpGjRqFli1b4ocffsCrr77qln3t2rU4/PDD3Rdkw4YN8eabb2LkyJHYvHlzxhbmf+utt9C/f3+0bdsWU6ZMwR9//IERI0agWbNmbhhCCP72t7/htttuw4YNG1CvXj3X79VXX8XmzZulZ2nXrl3YvHkztm/fjiVLluCOO+5AixYtQk2XGDJkCKZPn4633nrL970RBVu2bOHIoYP69eujYcOG2nts5syZuOyyy9CsWTN3WqhD6NNFrVq1cMYZZ+DRRx/FihUr0K5dO7z66qsAoJwuAADVqlXDueeei+uuuw4ff/wxevfu7U5jf/LJJ3HNNddkdb0TwOz9//bbb+Okk07C/vvvj8mTJ2P79u24//77ccQRR2Dp0qVo2bIlzjzzTHz33Xd4+umncffdd6NBgwYA+Pr+6KOP8MILL+Ciiy5C7dq1cd9996F///5YvXq1+94L+2zdcMMNyM3NxeWXX46dO3e60yxKS0tx0kkn4aijjsJtt92GWbNmYcyYMahZsyauvvpqDB48GGeeeSamTZuGoUOHonv37mjVqhWAJBl76aWXMGDAALRq1Qpr167Fww8/jF69emHFihWVZoqvhUVFQ1Xgs5lCcXGx+171w+DBg/HEE0/gueee4zaq2bBhA+bPn49BgwahoKAgk6YC8DqT6tevj+3bt+Poo4/Gf//7X4wZMwatWrXCnDlzMHz4cGzcuBFjx45Fw4YNMXXqVGmZjUMPPTRWu/bbbz/06tULCxcuxObNm5WdWldffTUOPvhgTJ8+3Z0GfcABB6Bfv3548skn8eKLL7rLazj2zZw5E8OGDUOfPn1w6623Ytu2bZg6dSp69uyJL774glvyZc+ePejTpw969uyJO+64w71/w3Di//73vy43HzZsGB577DEMHz4cnTt3dr9jtm7d6gq15513Hg477DD8/vvveOWVV/C///0PDRo0QFlZGU477TR89NFHGDVqFNq0aYP//Oc/uPvuu/Hdd9/hpZdeirX+HRQXF+OYY47Bnj17cOWVV6JmzZqYPn26dG8OGTIETz75JObPn89NOy8uLsa7774rLRdCKcUff/yBPXv24Pvvv8eVV16JnJycUFOUTb55omLHjh1KPltYWIjc3Fzcc889ynvswAMPlL6xevToEZtdQ4YMwVtvvYUFCxbgoIMOwkcffYQ///wTY8eO1U7vHzp0KGbMmIHXXnsNhx9+uMtn58yZgwEDBrj3dbawYMECDBo0CMcddxxuvfVWAMA333yDjz/+GGPHjgWQ5Jg9evTAtm3bcMkll6B+/fp44okncNppp2Hu3Lk444wz0KZNG1x//fWYOHEiRo0ahSOPPBIAX99//vknTjzxRJx55pk4++yzMXfuXPzf//0fOnTogJNOOgkAQj9b7777rvvebtCgAVq2bOmuIXfxxRejSZMmuO666/Dvf/8b06dPR506dbBo0SLst99+uPnmm/HGG2/g9ttvR/v27bnvkHvvvRennXYaBg8ejF27duGZZ57BgAED8Nprr6Fv376ZuhzlizDD4ZxhteIvLy+PPv7441J4CMOwVVPuFi9eTAHQJ5980nXr2LFjpCGZznQak1/QdMfRo0fTnJwcpV/Dhg3pwIEDfeN//PHHtH///vTRRx+lL7/8Mp0yZQqtX78+zc/Pp0uXLg0sy9dff00B0AkTJnDuAwcOpPn5+bFO66I0OWzzhBNOoOvXr6fr16+ny5cvpwMHDqQA6MUXX0wppbRfv340NzeX/vDDD268NWvW0Nq1a9OjjjrKdcv0lFIHHTt2pHXr1nXPVcO+dUOWVcNvnam84lS6efPmSe4tWrSgAOi8efO4sDfccAOtWbMm/e677zj3K6+8kubk5NDVq1dTSr17tX79+tz05JdffpkCoK+++qrrdtRRR9HatWvTn3/+mUvTmR5CKaUjR46kTZs2pb///jsXZuDAgbSoqMh4uqvf9AnVdLVOnTrRpk2b0o0bN7pub731FgXATSn99ttvKQA6depULs3TTjuNtmzZkisLpZQ+/fTT3PPapUsX+uWXX3Jh/KaUUkrpn3/+SQHQM844w6jsJnDuS92PnfKqG+KdzpDzoLh33303BeBOH3Wmmf7555/aOC+88AIFQO+77z5KafI9ffDBB7vXcPjw4fTRRx+Nfeg9peoppSbv/06dOtFGjRrRP/74w3Vbvnw5TSQSdOjQoa5b0JTS3Nxc+t///pdLAwC9//77XTfTZ8u5N/bff3/peRs2bBgFQG+++WbX7c8//6QFBQWUEMJNp1q5cqX0DO7YsUOamrpq1Sqal5dHr7/+es5NfEYtLCxkVCU+KyLslFIVPvjgA0oIoddee21g2D179tCmTZvS7t27c+7Tpk2jAOj8+fPTskWEw/scPvvf//6X3nzzzZQQQg899FBKKaX33HMPBUCfeuopN96uXbto9+7daa1atejmzZsppZmfUupg7NixFABdvnw5pVT9LtdNg1ZxoS1bttA6depIU+mKi4tpUVER5+60T1deeSUXNgon/uCDD1y3devW0by8PPrPf/7TdZs4cSIFQF944QWpDhweOHPmTJpIJOiHH37I+Tv3y8cffyzF1cFvSqk4Xe3SSy+lAOgnn3zClaGoqIjjEaWlpbRZs2b0nHPO4dK76667KCGE/vjjj5z7b7/9xj2vzZo1o88++ywXJso3Txzwe6+wU151fNtvWmgQguJ+8cUXFAC97LLLKKXeM/viiy9q42zYsIECoGeeeabrNnToUAqA1q1bl55xxhn0jjvuoN98800km4MgcvSxY8fSwsJCumfPHm0c575j7/ctW7bQVq1a0ZYtW7rcL2hKqdj27Ny5kzZp0oT279/fdQvzbAGgiUSCfv3111xY5z3Up08f7tute/fulBBCL7zwQtdtz549tFmzZtIzKLafu3btou3bt6fHHnss5743TSmNNMLtwQcfdBdTXLt2LZ566in8/e9/R+3atbmF1kWwvQS7d+/G5s2bceCBB6JOnTpYunSpu1tfnTp18PXXX+P7779H69atje1q0qSJ8TD9jh07+vpv375duwBkfn6+O/1Khx49enDK82mnnYazzjoLhx56KCZMmKCctsSibdu2+Mtf/oJnnnnG3fWlpKQEr7zyCk455ZSMTOt66623uNEfOTk5GDJkCG699VaUlpbirbfeQr9+/bD//vu7YZo2bYpzzz0XjzzyiLZnLlOoVauW785XYTFnzhwUFRXh+OOP53p7nOkUCxcuxLnnnuu6t2rVCn369JHSOPLII1G3bl0ujd69e+OWW27BBx98wI1OPOecc1C3bl333Om1+PHHHwEA69evxwcffICxY8div/324/Jy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4pFHHpHCbN++PfR6vqY4+eST8e9//xuffvqp67Z+/XrtCL9BgwaBEIKxY8fixx9/lHY2Likp4b4LHTz//PP4888/jflsmG8ekX+JI96ygZUrV0rfK2Fxyy234K233sI555zjLltTo0YNXH755fj222+Vz8rrr7+Oxx9/HH369MHhhx8OIDnFVvU9smvXLrzzzjtIJBK+s2DS/ZYW3/+JRMKdFeG0ASeffDI+/fRTLF682A1XUlKC6dOno2XLlu5ovXT5LFB+zxaLnJwcEEK4tvKnn37K2O7DFQWRRri9+eabrvK6bt06zJ49293q2G+a5CmnnIKZM2eiqKgIbdu2xeLFi/H2229La9C0bdsWRx99NDp37ox69ephyZIlmDt3rnJRRxZxr+F2ww03YPTo0RgwYAD69OmDDz/8EE899RRuuukmbv2IBx54ANdddx3Xy3jOOeegoKAAPXr0QKNGjbBixQpMnz4dNWrUwC233GJsR//+/XHRRRfh5ZdfRvPmzbXTwrKBG2+8EQsWLEDPnj1x0UUXoVq1anj44Yexc+dO3HbbbW64Tp06IScnB7feeis2bdqEvLw8HHvssWjUqBEmTJiAJ554wnja3ocffogdO3agtLTUnXv/yiuvoKioCC+++GKso5F69eqFCy64AFOmTMGyZctwwgknoHr16vj+++8xZ84c3HvvvTjrrLN807jiiivcjS2c7dBLSkrwn//8B3PnzsVPP/0UekTKfffdh549e+Kwww7DqFGj0KpVK/z00094/fXX3e2Zb7nlFixcuBDdunXD+eefj7Zt22LDhg1YunQp3n77bWmdsrgwZcoU9O3bFz179sR5552HDRs24P7770e7du2UowP69u2L+vXrY86cOTjppJOktUGeeuopTJs2zd2cY8uWLZg/fz4WLFiAU089Vbkeydy5c1GrVi3s2rULv/76K+bPn4+PP/4YHTt2xJw5czJSbue+FHHooYeGnr776aef4phjjjEeqv7rr7/iqaeeApAcgbFixQrMmTMHxcXF+Oc//ylNuX3yySdx3HHH4fTTT8e5556LI488Ejt37sQLL7yA9957D+eccw6uuOIKN/yCBQswadIknHbaaTj88MNRq1Yt/Pjjj3jsscewc+fOUMPpo8Dk/X/77bfjpJNOQvfu3TFy5Ehs374d999/P4qKijj7nA+zq6++GgMHDkT16tVx6qmnGq3v5qC8ni0Wp5xyCq6//nqMGDECPXr0wH/+8x/MmjUr7Y4UC4uqjqrAZwHg1VdfxfLlywEkRcUvv/zSXRrgtNNOc9utF198ESNGjOCmot1zzz146KGH0L17d9SoUcNtfxycccYZRu/UVq1aoUePHnj55ZcBwFhwywRGjRqFhx9+GMOHD8fnn3+Oli1bYu7cue7Ie2ekWUFBAdq2bYtnn30WBx10EOrVq4f27dujffv2yrryw3fffYennnoKlFJs3rwZy5cvx5w5c7B161bcdddd2kXVo6CwsBBTp07FkCFDcNhhh2HgwIFo2LAhVq9ejddffx1HHHEEHnjgAd804uDEIq644grMnTsXAwYMwHnnnYfOnTtjw4YNeOWVVzBt2jR07NgRQ4YMwXPPPYcLL7wQCxcuxBFHHIHS0lKsXLkSzz33HObPn28sVoXB+PHjMXPmTJx44okYO3YsatasienTp7ujIUU0bNgQJ554IubMmYM6depwAzGA5OyP3r1745xzzsEhhxyCRCKBJUuW4KmnnkLLli0xduxYKc1sfvM4cO5LEY0bN3ZHl4VBmzZtjKZ9A0nh1sl7x44d+Pnnn/HKK6/gyy+/xDHHHCOtnXvllVfiiy++wK233orFixejf//+KCgowEcffYSnnnoKbdq04aZq/u9//0PXrl1x7LHH4rjjjkOTJk2wbt06PP30066QmclZAn//+9+xYcMGHHvssWjWrBl+/vln3H///ejUqZPboXPllVfi6aefxkknnYRLLrkE9erVc7+Tn3/+eXeAzgEHHIA6depg2rRpqF27NmrWrIlu3bqFmoZeXs8Wi759+7rvu3PPPRfr1q3Dgw8+iAMPPFD5nO01CLOlqWob9fz8fNqpUyc6depUbntYSuVt1P/88086YsQI2qBBA1qrVi3ap08funLlSmnb1xtvvJF27dqV1qlThxYUFNBDDjmE3nTTTXTXrl1hzI0F06dPpwcffDDNzc2lBxxwAL377rulcjrbJbNbs9977720a9eutF69erRatWq0adOm9G9/+xv9/vvvQ9swYMAACoCOHz8+3eJoIW5lrMPSpUtpnz59aK1atWiNGjXoMcccQxctWiSFe+SRR+j+++9Pc3JyuLpxth93ttfWwdki2/lVr16dNmzYkB511FH0pptuouvWrZPiOPcnm7Zu2+levXrRdu3aKfOePn067dy5My0oKKC1a9emHTp0oOPHj6dr1qxxw/jV15YtW+iECRPogQceSHNzc2mDBg1ojx496B133OHew86W77fffrsUX3xuKKX0q6++omeccQatU6cOzc/PpwcffDC99tpruTBr166lo0ePps2bN6fVq1enTZo0occddxydPn260k4V1q9fr8yftVnckvr555+nbdq0oXl5ebRt27b0hRdeoMOGDaMtWrRQ5nHRRRdRAHT27NmS32effUYHDBhA99tvP5qXl0dr1qxJDzvsMHrXXXfR3bt3c2Gd5459FzVr1oyecsop9LHHHqM7duwwLrcpxPtS/LH1prvHxHvHSVNV56q4Tl6EEFpYWEjbtWtHzz//fG4rexFbtmyhkydPpu3atXPv6yOOOII+/vjj0vvsxx9/pBMnTqSHH344bdSoEa1WrRpt2LAh7du3L3333XeDKykEVM+B6fv/7bffpkcccQQtKCighYWF9NRTT6UrVqyQ8rjhhhvovvvuSxOJBPd+AEBHjx4thVdtQ27ybDnXcc6cOVKaYd9D4j2yY8cO+s9//pM2bdqUFhQU0COOOIIuXryY9urVi9tuXfeMWlhY8KhqfNbhXqof+75w6oV184trwudYPPjggxQA7dq1a3yFE6B734pYu3atew1zc3Nphw4dlO/ORYsW0c6dO9Pc3FzuPlDVlQ5sfSUSCVqnTh36l7/8hY4dO5Z+/fXXUnjVu9zJ77PPPuPCOlxo/fr1UjoLFy6kffr0oUVFRTQ/P58ecMABdPjw4XTJkiVumKD6SocTi20UpZT+8ccfdMyYMXTfffelubm5tFmzZnTYsGH0999/d8Ps2rWL3nrrrbRdu3Y0Ly+P1q1bl3bu3Jled911dNOmTVpbRbRr107Kn7VZbOu//PJL2qtXL5qfn0/33XdfesMNN9BHH31Ue58/99xzFAAdNWqU5Ld+/Xo6atQoesghh9CaNWvS3Nxc2rp1a3rppZdK1yrKN08c8Huu2XrT3WOqe0eMq4P4XqlRowZt2bIl7d+/P507dy4tLS1VxistLaUzZsygRxxxBC0sLKT5+fm0Xbt29LrrrqNbt27lwm7evJnee++9tE+fPrRZs2a0evXqtHbt2rR79+70kUcekd7z6UJ8DubOnUtPOOEE2qhRI5qbm0v3228/esEFF9Df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", "text/plain": [ "
" ] @@ -59934,13 +35075,13 @@ }, { "cell_type": "code", - "execution_count": 35, + "execution_count": 25, "id": "ba2f97a2-1249-4f25-aa67-c0e3e99cfd4d", "metadata": {}, "outputs": [ { "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAABP4AAAMWCAYAAABhsEihAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8fJSN1AAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOydd5gURf7/31XVPTPLLmFBMkhQzywgKBhB5cT8xSwGEMWcOdOdp+B5Koqn6OmZznTmfMGECcPPw3AgZhCUIEjOm2a6q+r3R0/39sx093RP3t1+PU8/W9NdscOE934CkVJKhISEhISEhISEhISEhISEhISEhLQqaLknEBISEhISEhISEhISEhISEhISElJ4QuEvJCQkJCQkJCQkJCQkJCQkJCSkFRIKfyEhISEhISEhISEhISEhISEhIa2QUPgLCQkJCQkJCQkJCQkJCQkJCQlphYTCX0hISEhISEhISEhISEhISEhISCskFP5CQkJCQkJCQkJCQkJCQkJCQkJaIaHwFxISEhISEhISEhISEhISEhIS0goJhb+QkJCQkJCQkJCQkJCQkJCQkJBWSCj8hYSEhISEhISEhISEhISEhISEtEJC4S8kJCSkjTFq1CiMGjWq3NNI4fHHHwchBEuWLCn3VErOkiVLQAjB448/HrhtMc/bmWeeif79+xe8Xyf69++PM88803ptrut///tfScYv5zOxcOFCHHrooejYsSMIIfjnP/9ZlnkUkqlTp4IQ4qsuIQRTp04t7oRCKorp06dj4MCBYIxh8ODBAABd13H11Vejb9++oJRi7NixZZ1jSEhISEhIayIU/kJCQto8+YgMDQ0NmDp1Kj744IPCT6zCqIS1moKCubVr1w677LIL/vjHP2LLli2B+7vllltKJrQ888wzmDFjRknGSsfpvG277bY4+uij8dhjjyEejxdknO+//x5Tp06tSAG3Uuc2YcIEfPPNN7j55pvx5JNPYtiwYeWekiP9+/dPuYfctlwE7Fz46KOPcMwxx6Bv376IxWLo0aMHDjvsMHzyySeec6eUolOnTth9991x7rnn4rPPPivK/BYsWIArrrgC++67L2KxWCCBXgiBxx9/3FpfdXU1dtttN/z5z39GU1OTZ9u5c+eCEII//vGPrnUWLlwIQggmT54cZEmumP+8cNumTZtm1X377bdx9dVXY7/99sNjjz2GW265BQDw6KOPYvr06TjhhBPwxBNP4IorrvA9/qhRo1Kub4cOHbDjjjvijDPOwDvvvOPaTtM03HPPPdhrr73Qvn171NTUYK+99sI999wDTdMy6icSCdx9990YMmQIOnTogE6dOmHXXXfFueeei/nz5wc4YyEhISEhIaVFKfcEQkJCQloyDQ0NuPHGGwGg4qzoCk0lrfX+++9HTU0N6urq8Pbbb+Pmm2/G+++/j08++cS3pRFgCH8nnHBCSaxLnnnmGXz77be4/PLLU/b369cPjY2NUFW16HMwz1s8HseKFSswc+ZMnHXWWZgxYwZee+019O3b16r78MMPQwgRqP/vv/8eN954I0aNGhXIWnDBggWgtLj/i/Sa29tvv13Usd1obGzE7Nmzcd111+Hiiy8uyxz8MmPGDNTV1Vmv33jjDTz77LO46667sM0221j79913X5x++um49tprizqfH3/8EZRSnH/++ejRowc2btyIp556CgceeCBef/11HHbYYSn1Bw8ejN/97ncAgK1bt+KHH37Aiy++iIcffhhXXHEF7rzzzoLOb/bs2bjnnnuwyy67YOedd8a8efN8t21oaMDEiRMxYsQInH/++ejWrRtmz56NKVOm4L333sP777/v+j635557YqeddsKzzz6LP//5z451nnnmGQDA6aefHnhdXowbNw5HHHFExv4hQ4ZY5ffffx+UUjzyyCOIRCIp+3v37o277rorp7H79OmDW2+9FQBQX1+PRYsW4ZVXXsFTTz2Fk046CU899VTKe2x9fT2OPPJIfPjhhzjqqKNw5plnglKKt956C5dddhleeeUVvP7666iurrbaHH/88XjzzTcxbtw4nHPOOdA0DfPnz8drr72GfffdFzvttFNOcw8JCQkJCSk2ofAXEhISUoHU19en/OAISeWEE06wxIbzzz8fxx9/PF555RV8+umn2Geffco8u2AQQhCLxUoylv28AcANN9yAp59+GuPHj8eJJ56ITz/91DpWbCFSSommpiZUVVUhGo0Wdaxs2AWIUrJ27VoAQKdOnbLWLfd7Qro4vmrVKjz77LMYO3aso8irKMX9ijlp0iRMmjQpZd+FF16IgQMHYsaMGRnCX+/evTOErttuuw2nnnoq7rrrLuywww644IILCja/Y445Bps2bUL79u1xxx13BBL+IpEIPvnkE+y7777WvnPOOQf9+/e3xL/Ro0e7tj/ttNNw/fXX49NPP8WIESMyjj/77LPYaaedsOeeewZaUzb23HPPrGLimjVrUFVVlfHMrVmzxtdz4EbHjh0zxp42bRouvfRS/O1vf0P//v1x2223WccmT56MDz/8EH/9619TRPcLLrgA9913Hy6++GJceeWVuP/++wEAX3zxBV577TXcfPPN+MMf/pAyzr333otNmzblPPeQkJCQkJBiE7r6hoSEhDhw5plnoqamBitWrMDYsWNRU1ODrl274sorrwTnHIDh3tS1a1cAwI033mi5GtnjVc2fPx8nnHACOnfujFgshmHDhuHf//53ylimq/GHH36ICy+8EN26dUOfPn0ANLtozp8/HyeddBI6dOiALl264LLLLstw+dJ1HTfddBO22247RKNR9O/fH3/4wx+yunEmEgnccMMNGDp0KDp27Ijq6moccMABmDVrllWnUGsFgO+++w4HH3wwqqqq0KdPH/z5z38ObFmWzsEHHwwAWLx4MQBDJPnd736Hvn37IhqNYscdd8Qdd9wBKaXVhhCC+vp6PPHEE9Z67HHmVqxYgbPOOgvdu3dHNBrFrrvuikcffTRl3A8++ACEELzwwgu4+eab0adPH8RiMRxyyCFYtGiRVW/UqFF4/fXXsXTpUmssUyxxivH39ddf48wzz8TAgQMtN8azzjoL69evz+s8OXHaaadh0qRJ+Oyzz1Lc4pxi/D333HMYOnQo2rdvjw4dOmD33XfH3XffDcC4j0888UQAwEEHHWSt03QN79+/P4466ijMnDkTw4YNQ1VVFR588EHrmP3cmzQ0NOC8885Dly5d0KFDB4wfPx4bN25MqeMWI87eZ7a5OcX4W7NmDc4++2x0794dsVgMgwYNwhNPPJFSx7x2d9xxBx566CHr2dtrr73wxRdfOJ5vk6lTp6Jfv34AgKuuuirlnjCf+++//x6nnnoqamtrsf/++wPw/5yb5/uDDz6wzvfuu+9urfmVV17B7rvvjlgshqFDh+LLL7/0nG8QnGL8xeNxXHHFFejatSvat2+PY445BsuXL0+pM2vWLBBC8Oqrr2b0+cwzz4AQgtmzZ7uO265dO3Tt2tW3CFNVVYUnn3wSnTt3xs0335zy/pAvnTt3Rvv27XNqG4lEUkQ/k2OPPRYA8MMPP3i2P+200wA0W/bZmTNnDhYsWGDVKSWEEDz22GOor69PcQ0nhGDWrFn47rvvMp7NfGCMWVaX9957LzZv3gwAWL58OR555BEcfPDBjpa2F110EQ466CD8/e9/t+7Rn376CQCw3377OY7TpUuXvOcbEhISEhJSLEKLv5CQkBAXOOcYM2YMhg8fjjvuuAPvvvsu/vKXv2C77bbDBRdcgK5du+L+++/HBRdcgGOPPRbHHXccAGCPPfYAYAhc++23H3r37o1rr70W1dXVeOGFFzB27Fi8/PLL1o84kwsvvBBdu3bFDTfcgPr6+pRjJ510Evr3749bb70Vn376Ke655x5s3LgR//jHP6w6kyZNwhNPPIETTjgBv/vd7/DZZ5/h1ltvxQ8//OD4Q9pky5Yt+Pvf/265L23duhWPPPIIxowZg88//xyDBw8u2FpXrVqFgw46CLquW/UeeughVFVV5XWtzB9lXbp0gZQSxxxzDGbNmoWzzz4bgwcPxsyZM3HVVVdhxYoVlivZk08+iUmTJmHvvffGueeeCwDYbrvtAACrV6/GiBEjQAjBxRdfjK5du+LNN9/E2WefjS1btmS4606bNg2UUlx55ZXYvHkzbr/9dpx22mlW/LDrrrsOmzdvxvLly63xa2pqXNfzzjvv4Oeff8bEiRPRo0cPfPfdd3jooYfw3Xff4dNPPw3kzuyHM844Aw899BDefvtt/Pa3v3Wd07hx43DIIYdYljM//PADPvnkE1x22WU48MADcemll+Kee+7BH/7wB+y8884AYP0FDJfecePG4bzzzsM555yDHXfc0XNeF198MTp16oSpU6diwYIFuP/++7F06VJLcPWLn7nZaWxsxKhRo7Bo0SJcfPHFGDBgAF588UWceeaZ2LRpEy677LKU+s888wy2bt2K8847D4QQ3H777TjuuOPw888/u1pOHnfccejUqROuuOIKy0Uy/Z448cQTscMOO+CWW26xRKkgz/miRYtw6qmn4rzzzsPpp5+OO+64A0cffTQeeOAB/OEPf8CFF14IALj11ltx0kknFdXletKkSXjqqadw6qmnYt9998X777+PI488MqXOqFGj0LdvXzz99NMZ749PP/00tttuuwyL3i1btiCRSGDdunX4xz/+gW+//TbDIsuLmpoaHHvssXjkkUfw/fffY9ddd819kUVm1apVAJBitevEgAEDsO++++KFF17AXXfdBcaYdcwUA0899dSCz6+hoQHr1q3L2N+pUycoioInn3wSDz30ED7//HP8/e9/B2C4AT/55JO4+eabUVdXZ7nruj2bQWGMYdy4cbj++uvx//7f/8ORRx6JN998E5xzjB8/3rXd+PHjMWvWLLz11luYNGmSJdI//fTT2G+//Ypu0RoSEhISElJQZEhISEgb57HHHpMA5BdffGHtmzBhggQg//SnP6XUHTJkiBw6dKj1eu3atRKAnDJlSka/hxxyiNx9991lU1OTtU8IIffdd1+5ww47ZIy///77S13XU/qYMmWKBCCPOeaYlP0XXnihBCC/+uorKaWU8+bNkwDkpEmTUupdeeWVEoB8//33rX0jR46UI0eOtF7rui7j8XhKu40bN8ru3bvLs846q6BrvfzyyyUA+dlnn1n71qxZIzt27CgByMWLF2f07XQ+FixYINeuXSsXL14sH3zwQRmNRmX37t1lfX29/Oc//ykByD//+c8pbU844QRJCJGLFi2y9lVXV8sJEyZkjHP22WfLnj17ynXr1qXsP+WUU2THjh1lQ0ODlFLKWbNmSQBy5513TjmHd999twQgv/nmG2vfkUceKfv165cx1uLFiyUA+dhjj1n7zP7tPPvssxKA/Oijj6x95r3j97ytXbvW8fjGjRslAHnsscda+yZMmJAy38suu0x26NAh4x618+KLL0oActasWRnH+vXrJwHIt956y/GY/TqY6xo6dKhMJBLW/ttvv10CkP/617+sfW73ZHqfXnNLfyZmzJghAcinnnrK2pdIJOQ+++wja2pq5JYtW6SUzdeuS5cucsOGDVbdf/3rXxKA/M9//pMxlh2z/fTp01P2m9dr3LhxKfuDPOfm+f7vf/9r7Zs5c6YEIKuqquTSpUut/Q8++KDruXFj+vTprveeOf/0eV944YUp9U499dSM6/f73/9eRqNRuWnTJmvfmjVrpKIojtd5zJgxEoAEICORiDzvvPNkY2NjSp1+/frJI4880nUtd911V8Z9VUi8zlUQRo8eLTt06CA3btyYte59990nAciZM2da+zjnsnfv3nKfffbJax7pmPex2zZ79myr7oQJE2R1dXVGHyNHjpS77rprTuNna/vqq69KAPLuu++WUjZ/Dn355ZeubebOnSsByMmTJ0spjc+zkSNHSgCye/fucty4cfK+++5LeY5CQkJCQkIqldDVNyQkJMSD888/P+X1AQccgJ9//jlruw0bNuD999/HSSedhK1bt2LdunVYt24d1q9fjzFjxmDhwoVYsWJFSptzzjknxTLDzkUXXZTy+pJLLgFgBNi3/03P0mgGs3/99ddd58oYs+ItCSGwYcMG6LqOYcOGYe7cuQVd6xtvvIERI0Zg7733ttp37do1sNvZjjvuiK5du2LAgAE477zzsP322+P1119Hu3bt8MYbb4AxhksvvTTjXEgp8eabb3r2LaXEyy+/jKOPPhpSSms969atw5gxY7B58+aM8zJx4sSUmFUHHHAAAPi6V5ywW0A2NTVh3bp1VqwuP9ckKKal2datW13rdOrUCfX19Z5ZMrMxYMAAjBkzxnf9c889N8Vi7oILLoCiKNb9XizeeOMN9OjRA+PGjbP2qaqKSy+9FHV1dfjwww9T6p988smora21Xud7/U3S33+CPue77LJLioXc8OHDARiu8dtuu23G/nzn64Y57/RnMt1yFjAsreLxOF566SVr3/PPPw9d1x3jx02bNg1vv/02HnnkEYwYMQKJRAK6rgean5/7v9zccsstePfddzFt2jRfsfBOPvlkqKqa4u774YcfYsWKFUVz8z333HPxzjvvZGy77LJLUcbzS/r1Nf96uWKbx8xs8YQQzJw5E3/+859RW1uLZ599FhdddBH69euHk08+OYzxFxISEhJS0YR26iEhISEuxGIxK66dSW1tbUaMMScWLVoEKSWuv/56XH/99Y511qxZg969e1uvBwwY4NrfDjvskPJ6u+22A6UUS5YsAQAsXboUlFJsv/32KfV69OiBTp06YenSpZ7zfeKJJ/CXv/wF8+fPh6ZpvuZkEmStS5cutUQGO9lcPtN5+eWX0aFDB6iqij59+lguuoBxLnr16pXxo850Hct2LtauXYtNmzbhoYcewkMPPeS6Hjt2EQWAJQL5uVec2LBhA2688UY899xzGWOZcaoKiZmt1euH8IUXXogXXngBhx9+OHr37o1DDz0UJ510UkYSBS/83E920u/7mpoa9OzZ07rvi8XSpUuxww47ZLi9ut1Dhb7+JunnK+hznj6vjh07AkBK9mb7/nzn64Y5b/tzCjg/9zvttBP22msvPP300zj77LMBGO6VI0aMyFg3YGTrNTn99NOx55574swzz0wRDrPh5/7fvHkzGhsbrdeRSASdO3f2PUY+PP/88/jjH/+Is88+23cCki5dumDMmDF49dVX8cADDyAWi+GZZ56Boig46aSTPNtyzq3EMyadO3fOmgRnhx128Ew6Ui7Sr6/510vodRIHo9EorrvuOlx33XVYuXIlPvzwQ9x999144YUXoKoqnnrqqWItISQkJCQkJC9C4S8kJCTEBTfrOz+YySquvPJKVwun9B+xQeLcucU3yyX221NPPYUzzzwTY8eOxVVXXYVu3bqBMYZbb73Vip3nRS5rzZcDDzwwa5yrXDHXc/rpp2PChAmOdczYhiZu94rMMVnASSedhP/+97+46qqrMHjwYNTU1EAIgcMOOyzvRChOfPvttwC8r1O3bt0wb948zJw5E2+++SbefPNNPPbYYxg/fnxG0gs38o3lGAQzCU8pKPT1N3E7X36fc7d5FWu+hWL8+PG47LLLsHz5csTjcXz66ae49957s7aLRCI45phjMG3aNDQ2Nvq+3/zc/5dddlnKfT5y5MiCJKDIxjvvvIPx48fjyCOPxAMPPBCo7emnn47XXnsNr732Go455hi8/PLLOPTQQzP+oZXOL7/8kiE6z5o1KyMBTksh/fqaAv7XX3+dIhzb+frrrwHA1VqxZ8+eOOWUU3D88cdj1113xQsvvIDHH388jP0XEhISElKRhJ9OISEhIXng9gN84MCBAAz3wEJYQCxcuDDlh9iiRYsghLCygPbr1w9CCCxcuDAlKPrq1auxadMmKzC5Ey+99BIGDhyIV155JWU9U6ZMSalXiLX269cPCxcuzNi/YMECz3ZB6NevH959911s3bo1xVpj/vz51nETpzWZWUc55wW1XvEr1mzcuBHvvfcebrzxRtxwww3WfqfzViiefPJJAMjqhhuJRHD00Ufj6KOPhhACF154IR588EFcf/312H777QuedGThwoU46KCDrNd1dXVYuXIljjjiCGtfbW1thptdIpHAypUrU/YFmVu/fv3w9ddfQwiRYvXndA+Vknye83Jizvunn35KsfJze+5POeUUTJ48Gc8++ywaGxuhqipOPvlkX2M1NjZCSomtW7f6Ev7q6urw6quvom/fvp4JJa6++uoUV2O7a3ex+Oyzz3Dsscdi2LBheOGFFwKLSscccwzat2+PZ555BqqqYuPGjb7cfHv06JHh0j9o0KBAY1cKnHM888wzaNeunZUZ+/DDDwdjDE8++aRrgo9//OMfUBQlq0WzqqrYY489sHDhQqxbtw49evQo+BpCQkJCQkLyJYzxFxISEpIH7dq1A4AM4aFbt24YNWoUHnzwwQwBAkCGG1U27rvvvpTXf/3rXwEYP2AAWELIjBkzUurdeeedAJCRPdOOaf1jt/b57LPPMHv27JR6hVjrEUccgU8//RSff/55yvGnn37adX5BOeKII8A5z7AQuuuuu0AIsc4ZAFRXV2eshzGG448/Hi+//LJlKWIn6LWzj+XHTdfpegCZ17ZQPPPMM/j73/+OffbZB4cccohrvfXr16e8ppRalo/xeByAsUYg8x7JlYceeijF9fz++++Hrusp13C77bbDRx99lNEu3eIvyNyOOOIIrFq1Cs8//7y1T9d1/PWvf0VNTQ1GjhyZy3LyJp/nvJyY1+uee+5J2e92T2+zzTY4/PDD8dRTT+Hpp5/GYYcdlmHhm+4CDxjX9uWXX0bfvn3RrVu3rPNqbGzEGWecgQ0bNuC6667zFId32WUXjB492tqGDh2atX+//PTTTxnW1T/88AOOPPJI9O/fH6+99lpO1rJVVVU49thj8cYbb+D+++9HdXU1/u///i9ru1gslrLW0aNHl0TotKNpGubPn+/4meIXzjkuvfRS/PDDD7j00kvRoUMHAIar+8SJE/Huu+/i/vvvz2j3wAMP4P3338fZZ5+NPn36ADD+CbFs2bKMups2bcLs2bNRW1ub1ZIyJCQkJCSkXIQWfyEhISF5UFVVhV122QXPP/88fvOb36Bz587YbbfdsNtuu+G+++7D/vvvj9133x3nnHMOBg4ciNWrV2P27NlYvnw5vvrqK9/jLF68GMcccwwOO+wwzJ49G0899RROPfVUywpj0KBBmDBhAh566CFs2rQJI0eOxOeff44nnngCY8eOTbGaSueoo47CK6+8gmOPPRZHHnkkFi9ejAceeAC77LKLFRupUGu9+uqr8eSTT+Kwww7DZZddhurqajz00EOWhVUhOProo3HQQQfhuuuuw5IlSzBo0CC8/fbb+Ne//oXLL788Jc7Y0KFD8e677+LOO+9Er169MGDAAAwfPhzTpk3DrFmzMHz4cJxzzjnYZZddsGHDBsydOxfvvvsuNmzYEHheQ4cOxfPPP4/Jkydjr732Qk1NDY4++uiMeh06dMCBBx6I22+/HZqmoXfv3nj77bexePHivM4LYFh31tTUIJFIYMWKFZg5cyY++eQTDBo0CC+++KJn20mTJmHDhg04+OCD0adPHyxduhR//etfMXjwYMtSavDgwWCM4bbbbsPmzZsRjUZx8MEH+xJhnEgkEjjkkENw0kknYcGCBfjb3/6G/fffH8ccc0zKvM4//3wcf/zx+O1vf4uvvvoKM2fOzBCKgszt3HPPxYMPPogzzzwTc+bMQf/+/fHSSy/hk08+wYwZMzxjwRWTfJ7zcjJ48GCMGzcOf/vb37B582bsu+++eO+997Bo0SLXNuPHj8cJJ5wAALjpppsyjh9++OHo06cPhg8fjm7dumHZsmV47LHH8Ouvv6YItiYrVqywYrDV1dXh+++/x4svvohVq1bhd7/7Hc4777wCrdZg8+bN1j9oPvnkEwDAvffei06dOqFTp064+OKLrbqm4G7Grty6dSvGjBmDjRs34qqrrspI2rLddtulJG3x4vTTT8c//vEPzJw5E6eddpolgBeDuXPnOsa5CzJfkxUrVmDnnXfGhAkT8Pjjj2etv3nzZmvshoYGLFq0CK+88gp++uknnHLKKRn30F133YX58+fjwgsvxFtvvWVZ9s2cORP/+te/MHLkSPzlL3+x6n/11Vc49dRTcfjhh+OAAw5A586dsWLFCjzxxBP49ddfMWPGjLzCg4SEhISEhBSVMmUTDgkJCakYHnvsMQlAfvHFF9a+CRMmyOrq6oy6U6ZMkelvnf/973/l0KFDZSQSkQDklClTrGM//fSTHD9+vOzRo4dUVVX27t1bHnXUUfKll17yHD99vO+//16ecMIJsn379rK2tlZefPHFsrGxMaWupmnyxhtvlAMGDJCqqsq+ffvK3//+97KpqSml3siRI+XIkSOt10IIecstt8h+/frJaDQqhwwZIl977TU5YcIE2a9fv4KuVUopv/76azly5EgZi8Vk79695U033SQfeeQRCUAuXrw44xw4nY+1a9d61tu6dau84oorZK9evaSqqnKHHXaQ06dPl0KIlHrz58+XBx54oKyqqpIA5IQJE6xjq1evlhdddJHs27evVFVV9ujRQx5yyCHyoYcesurMmjVLApAvvvhiSr+LFy+WAORjjz1m7aurq5Onnnqq7NSpkwRgnVunusuXL5fHHnus7NSpk+zYsaM88cQT5a+//ppxzs17x+95M7dYLCb79OkjjzrqKPnoo49m3CNSyozr/9JLL8lDDz1UduvWTUYiEbntttvK8847T65cuTKl3cMPPywHDhwoGWMSgJw1a5aUUsp+/frJI4880nF+/fr1Szn35ro+/PBDee6558ra2lpZU1MjTzvtNLl+/fqUtpxzec0118htttlGtmvXTo4ZM0YuWrQoo0+vuaU/E1Ia13/ixIlym222kZFIRO6+++4p10jK5ms3ffr0jDWlXysn3Np73ed+n3O38w1AXnTRRb7X4cb06dNd7z2n98nGxkZ56aWXyi5dusjq6mp59NFHy19++cX1PMXjcVlbWys7duyY8V4npZT33nuv3H///eU222wjFUWRXbt2lUcffbT86KOPMur269fPuvcJIbJDhw5y1113leecc4787LPPfK85COY5ddrS31f79euXss+rbfr7VDZ0XZc9e/aUAOQbb7xRmMWlEWS+bp+tI0eOlLvuumtGn37WOnLkyJTxampq5A477CBPP/10+fbbb7u2i8fj8q677pJDhw6V1dXVsl27dnLPPfeUM2bMkIlEIqXu6tWr5bRp0+TIkSNlz549paIosra2Vh588MEZn3EhISEhISGVBpGyQiI5h4SEhIRkMHXqVNx4441Yu3Zt0ZJZhISEhFQauq6jV69eOProo/HII4+UezohISEhISEhIS2WMMZfSEhISEhISEhIRfHPf/4Ta9eudU2+EBISEhISEhIS4o8wxl9ISEhISEhISEhF8Nlnn+Hrr7/GTTfdhCFDhpQtkUpISEhISEhISGshtPgLCQkJCQkJCQmpCO6//35ccMEF6NatG/7xj3+UezohISEhISEhIS2eFhXj76OPPsL06dMxZ84crFy5Eq+++irGjh1b7mmFhISEhISEhISEhISEhISEhIRUHC3K4q++vh6DBg3CfffdV+6phISEhISEhISEhISEhISEhISEVDQtKsbf4YcfjsMPP7zc0wgJCQkJCQkJCQkJCQkJCQkJCal4WpTwF5R4PI54PG69FkIgGo0iGokAhJRxZiEhISEhISEhISEhISEhIa0WKSEhQQgFpS3K2bLgSCmRLcocIQQk1GmKQqsW/m699VbceOON1usePXrg22++RkN9GScVEhISEhISEhISEhISEhLSJuhUW4sWFmWtoEgpsez771DTvbtnPUIoajt3DsW/ItCiknvYIYRkTe7hZPHHdQ0n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7tyk5h/f+c53WLx4MT/72c/YtGkTP/jBD3jvvfe49dZbAZmVOH/+fP7jP/6Dv//976xfv565c+cycOBAZs+eDcDxxx/Pueeey/XXX8+7777LW2+9xa233srll1/OwIEDAfjGN75BOBzmuuuu46OPPuLpp5/mF7/4RZvGIvmkQ5X6BvhLWVkZ999/f1CHHxCQB4L7LSAgfwT3W0BA/gjut4CA/BHcbwGlzJw5c9i3bx/33Xcf1dXVjBs3jsWLF8cbaWzfvj2phH3atGk89dRTfP/73+d73/seo0aN4rnnnuOkk06K73PXXXfR0NDADTfcQG1tLaeffjqLFy9OKkH+05/+xK233srZZ5+Noihceuml/PKXv4w/361bN1555RVuueUWJkyYQO/evbnvvvu44YYb8vCqpEZYQW/pgICAgICAgICAgICAgICAgICAdkdQ6hsQEBAQEBAQEBAQEBAQEBAQENAOCYS/gICAgICAgICAgICAgICAgICAdkgg/AUEBAQEBAQEBAQEBAQEBAQEBLRDAuEvICAgICAgICAgICAgICAgICCgHRIIfwGe8/nnn3PdddcxbNgwOnXqxIgRI7j//vtpbm4u9NQCAtolP/rRj5g2bRqdO3eme/fuhZ5OQEC74tFHH2Xo0KGUl5dTVVXFu+++W+gpBQS0S9544w0uvPBCBg4ciBCC5557rtBTCghotzzwwANMmjSJyspK+vbty+zZs/nkk08KPa2AgACfCIS/AM/ZtGkTpmnym9/8ho8++oif//znPPbYY3zve98r9NQCAtolzc3NXHbZZdx8882FnkpAQLvi6aefZsGCBdx///28//77jB07llmzZrF3795CTy0goN3R0NDA2LFjefTRRws9lYCAds/rr7/OLbfcwjvvvMOSJUuIRCKcc845NDQ0FHpqAQEBPiAsy7IKPYmA9s9DDz3Er3/9az777LNCTyUgoN3yxBNPMH/+fGpraws9lYCAdkFVVRWTJk3ikUceAcA0TYYMGcJtt93G3XffXeDZBQS0X4QQPPvss8yePbvQUwkI6BDs27ePvn378vrrr3PGGWcUejoBAQEeE2T8BeSFQ4cO0bNnz0JPIyAgICAgwBbNzc2sWbOGmTNnxh9TFIWZM2eycuXKAs4sICAgICDAWw4dOgQQ/F4LCGinBMJfgO9s3ryZX/3qV9x4442FnkpAQEBAQIAtampqMAyDfv36JT3er18/qqurCzSrgICAgIAAbzFNk/nz53Paaadx0kknFXo6AQEBPhAIfwG2ufvuuxFCZNw2bdqUdMzOnTs599xzueyyy7j++usLNPOAgNLDzf0WEBAQEBAQEBAQ4IRbbrmFDRs28Oc//7nQUwkICPAJrdATCCgdvvvd73L11Vdn3Gf48OFxe9euXcyYMYNp06bx29/+1ufZBQS0L5zebwEBAd7Su3dvVFVlz549SY/v2bOH/v37F2hWAQEBAQEB3nHrrbfywgsv8MYbbzB48OBCTycgIMAnAuEvwDZ9+vShT58+tvbduXMnM2bMYMKECSxatAhFCZJLAwKc4OR+CwgI8J5wOMyECRNYunRpvMGAaZosXbqUW2+9tbCTCwgICAgIyAHLsrjtttt49tlnWb58OcOGDSv0lAICAnwkEP4CPGfnzp1Mnz6dY489locffph9+/bFnwuyJAICvGf79u0cOHCA7du3YxgG69atA2DkyJFUVFQUdnIBASXMggULmDdvHhMnTmTy5MksXLiQhoYGrrnmmkJPLSCg3VFfX8/mzZvj/9+6dSvr1q2jZ8+eHHPMMQWcWUBA++OWW27hqaee4n//93+prKyMr13brVs3OnXqVODZBQQEeI2wLMsq9CQC2hdPPPFE2h9FweUWEOA9V199NU8++WSbx1977TWmT5+e/wkFBLQjHnnkER566CGqq6sZN24cv/zlL6mqqir0tAIC2h3Lly9nxowZbR6fN28eTzzxRP4nFBDQjhFCpHx80aJFWZeaCQgIKD0C4S8gICAgICAgICAgICAgICAgIKAdEiy8FhAQEBAQEBAQEBAQEBAQEBAQ0A4JhL+AgICAgICAgICAgICAgICAgIB2SCD8BQQEBAQEBAQEBAQEBAQEBAQEtEMC4S8gICAgICAgICAgICAgICAgIKAdEgh/AQEBAQEBAQH/n73zDnOjuP//a7ZId+dzOXdccKOaYoMB0wwGDDbNoRMwsU0x1aH4G0IIoQUINUBCCAQSCKEHQsqPGlMcCJgOIeAS27hgg42Nu+9O0u7M74+VdCqrLt3pzvN6Hj03t9qdndmdXWnfen8+o9FoNBqNRqPRdEC08KfRaDQajUaj0Wg0Go1Go9F0QLTwp9FoNBqNRqPRaDQajUaj0XRAtPCn0Wg0Go1Go9FoNBqNRqPRdEC08KfRaDQajWar5w9/+ANHHHFExffz8ssvM3LkSKSUFd+XRqPRaDQajUajhT+NRqPRaDRbNc3NzVx99dVce+21Fd/XhAkTsG2bxx9/vOL70mg0Go1Go9FotPCn0Wg0Go1mq+bZZ5+lS5cuHHDAAa2yv6lTp/LrX/+6Vfal0Wg0Go1Go9m60cKfRqPRaDSaDsHq1avp27cvv/jFL+LL3nnnHQKBAK+99lrG7Z566imOPfbYpGVjx47l0ksvTVp23HHHMXXq1Pj/gwcP5sYbb2Ty5MnU19czaNAg/vGPf7B69Wq+973vUV9fz+67786HH36YVM+xxx7Lhx9+yKJFi4rvrEaj0Wg0Go1Gkwda+NNoNBqNRtMh6NWrFw899BDXXXcdH374IZs2beIHP/gB06dP57DDDsu43b///W/22muvovZ51113ccABB/DJJ59w9NFH84Mf/IDJkydzxhln8PHHHzNs2DAmT56MUiq+zbbbbkufPn146623itqnRqPRaDQajUaTL1r402g0Go1G02E46qijmDZtGpMmTeL888+nU6dO3HzzzRnXX79+PRs2bKBfv35F7++8885j++2355prrmHjxo3svffenHzyyeywww5cccUVzJ07l1WrViVt169fP5YuXVrUPjUajUaj0Wg0mnzRwp9Go9FoNJoOxR133IHjODzzzDM8/vjjBIPBjOs2NTUBUFNTU9S+dt9993i5T58+AOy2225py7799tuk7Wpra2lsbCxqnxqNRqPRaDQaTb5o4U+j0Wg0Gk2HYtGiRXz99ddIKVmyZEnWdXv06IEQgnXr1iUtNwwjKTwXIBKJpG1v23a8LITIuExKmbTd2rVr6dWrV+7OaDQajUaj0Wg0JaCFP41Go9FoNB2GcDjMGWecwamnnsoNN9zAOeeck+a2SyQQCDB8+HDmzJmTtLxXr15888038f9d1+Xzzz8vSxubm5tZtGgRe+yxR1nq02g0Go1Go9FoMqGFP41Go9FoNB2Gq666ig0bNvDrX/+aK664gh122IGzzjor6zbjx4/n3//+d9KyQw89lBdeeIEXXniBefPmccEFF7B+/fqytPHdd98lGAyy3377laU+jUaj0Wg0Go0mE1r402g0Go1G0yGYNWsWd999N48++ihdunTBMAweffRR3nrrLe67776M25199tm8+OKLbNiwIb7srLPOYsqUKUyePJmDDz6YoUOHcsghh5SlnU8++SSTJk2irq6uLPVpNBqNRqPRaDSZECo1gY1Go9FoNBrNVsbJJ5/MnnvuyZVXXlnR/axZs4Ydd9yRDz/8kCFDhlR0XxqNRqPRaDQajXb8aTQajUaj2eq5/fbbqa+vr/h+lixZwm9/+1st+mk0Go1Go9FoWgXt+NNoNBqNRqPRaDQajUaj0Wg6INrxp9FoNBqNRqPRaDQajUaj0XRAtPCn0Wg0Go1Go9FoNBqNRqPRdEC08KfRaDQajUaj0Wg0Go1Go9F0QLTwp9FoNBqNRqPRaDQajUaj0XRAtPCn0Wg0Go1Go9FoNBqNRqPRdEC08KfRaDQajUaj0Wg0Go1Go9F0QLTwp9FoNBqNRqPRaDQajUaj0XRAtPCn0Wg0Go1Go9FoNBqNRqPRdEC08KfRaDQajUaj0Wg0Go1Go9F0QLTwp9FoNBqNRqPRaDQajUaj0XRAtPCn0Wg0Go1Go9FoNBqNRqPRdEC08KfRaDQajUaj0Wg0Go1Go9F0QLTwp9FoNBqNRqPRaDQajUaj0XRAtPCn0Wg0Go1Go9FoNBqNRqPRdEC08KfRaDQajUaj0Wg0Go1Go9F0QLTwp9FoNFXG2LFjGTt2bFs3I4k//vGPCCFYsmRJWzel1VmyZAlCCP74xz8WvG0lj9vUqVMZPHhw2ev1Y/DgwUydOjX+f6xfH374Yavsvy2viQULFnDEEUfQtWtXhBD87W9/a5N2lJPrrrsOIURe6wohuO666yrbII1Go9FoNBpNxdDCn0ajqXpKERkaGxu57rrrmDVrVvkbVmVUQ19jgkLsVVdXx/Dhw/nZz37Gxo0bC67vF7/4RasJLU888QR33313q+wrFb/jtu2223Lsscfy8MMPEwqFyrKfOXPmcN1111WlgFutbZsyZQr//e9/uemmm3j00UfZa6+92rpJvgwePDhpDGV6FSNgF8Obb77JxIkTGThwIDU1NfTt25cJEybw9ttvZ227YRh069aN3XbbjXPPPZf33nuvIu2bP38+l112Gfvvvz81NTUFCfRSSv74xz/G+9epUyd23XVXbrzxRpqbm7Nu+/HHHyOE4Gc/+1nGdRYsWIAQghkzZhTSpZxs3LiR66+/nhEjRlBfX09tbS277rorV1xxBV9//XVZ91UorXn9f/3111x33XV8+umnea0f+w4Se9XU1NCvXz/Gjx/Pr3/9azZt2pRx27fffpvjjz+ePn36EAwGGTx4MOeddx7Lli3zXf/f//43Rx55JP3796empib+OfDEE08U01WNRqPRaACw2roBGo1GU0kaGxu5/vrrAarORVduqqmv9913H/X19WzevJl//vOf3HTTTbz++uu8/fbbeTuNwBP+TjrpJI477rjKNTbKE088weeff86ll16atHzQoEE0NTVh23bF2xA7bqFQiBUrVvDKK69w1llncffdd/P8888zcODA+LoPPvggUsqC6p8zZw7XX389Y8eOLcgtOH/+fAyjsr8VZmvbP//5z4ruOxNNTU3Mnj2bq666iunTp7dJG/Ll7rvvZvPmzfH/X3zxRZ588knuuusuevbsGV++//77c8YZZ/CTn/ykou353//+h2EYnH/++fTt25d169bx2GOPcdBBB/HCCy8wYcKEpPVHjhzJ//3f/wGwadMm5s6dyzPPPMODDz7IZZddxp133lnW9s2ePZtf//rXDB8+nJ133jlvEQi8e+2ZZ57Jvvvuy/nnn0/v3r2ZPXs21157La+99hqvv/56xvvcnnvuyU477cSTTz7JjTfe6LtOTOQ544wzCu5XJr788kvGjRvHsmXLOPnkkzn33HMJBAJ89tln/OEPf+Cvf/0r//vf/8q2v0Ip9t5UDF9//TXXX389gwcPZuTIkXlv9/Of/5whQ4YQiURYuXIls2bN4tJLL+XOO+/kH//4B7vvvnvS+vfccw+XXHIJQ4cO5Yc//CHbbLMNc+fO5fe//z1PP/00L774Ivvvv398/WeeeYZTTz2VkSNHcskll9DQ0MDixYt58803efDBBzn99NPLdQg0Go1Gs5WhhT+NRqMpgi1bttCpU6e2bkbVctJJJ8XFhvPPP58TTzyR5557jnfffZf99tuvjVtXGDGHR2uQeNwArrnmGh5//HEmT57MySefzLvvvht/r9JCpFKK5uZmamtrCQaDFd1XLgKBQJvsd/Xq1QB069Yt57ptfU9IFcdXrlzJk08+yXHHHecrpFhWZb8CnnPOOZxzzjlJyy688EKGDh3K3XffnSb89e/fP03ouvXWWzn99NO566672H777bngggvK1r6JEyeyfv16OnfuzB133FGQ8BcIBHj77beTRJtp06YxePDguPg3bty4jNtPmjSJq6++mnfffZd999037f0nn3ySnXbaiT333LOgPmXCcRxOOOEEVq1axaxZszjwwAOT3r/pppu49dZby7KvjsyRRx6Z5Pi98soref311znmmGOYOHEic+fOpba2FvCcfpdeeikHHnggL7/8MnV1dfHtLrjgAg444ABOOukkvvjiCxoaGgDP+T18+HDefffdtHvet99+2wo91Gg0Gk1HRYf6ajSadsnUqVOpr69nxYoVHHfccdTX19OrVy9+9KMf4bou4OVm69WrFwDXX399PEwnMV/VvHnzOOmkk+jevTs1NTXstdde/OMf/0jaVyzM51//+hcXXnghvXv3ZsCAAUBLiOa8efM45ZRT6NKlCz169OCSSy5JC/lyHIcbbriBYcOGxUN+fvrTn+YM4wyHw1xzzTWMGjWKrl270qlTJ8aMGcMbb7wRX6dcfQX44osvOPTQQ6mtrWXAgAHceOONBTvLUjn00EMBWLx4MeCJJP/3f//HwIEDCQaD7Ljjjtxxxx0opeLbCCHYsmULjzzySLw/iXnmVqxYwVlnnRUPodpll1146KGHkvY7a9YshBD8+c9/5qabbmLAgAHU1NRw2GGHsXDhwvh6Y8eO5YUXXmDp0qXxfcXEEr8cf5999hlTp05l6NCh8TDGs846i++++66k4+THpEmTOOecc3jvvfeYOXNmfLlfjr+nnnqKUaNG0blzZ7p06cJuu+3Gr371K8AbxyeffDIAhxxySLyfsdDwwYMHc8wxx/DKK6+w1157UVtby+9+97v4e4nHPkZjYyPnnXcePXr0oEuXLkyePJl169YlrZMpR1xinbna5pfj79tvv+Xss8+mT58+1NTUMGLECB555JGkdWLn7o477uCBBx6IX3t77703H3zwge/xjnHdddcxaNAgAC6//PKkMRG77ufMmcPpp59OQ0NDXEzJ9zqPHe9Zs2bFj/duu+0W7/Nzzz3HbrvtRk1NDaNGjeKTTz7J2t5C8MvxFwqFuOyyy+jVqxedO3dm4sSJLF++PGmdN954AyEEf/3rX9PqfOKJJxBCMHv27Iz7rauro1evXqxfvz6vdtbW1vLoo4/SvXt3brrppqT7Q6l0796dzp07F7VtIBBIEv1iHH/88QDMnTs36/aTJk0C8A3f/Oijj5g/f358nXLwl7/8hf/85z9cddVVaaIfQJcuXbjpppuSlj3zzDOMGjWK2tpaevbsyRlnnMGKFSuS1snnczhGKfemv//97xx99NH069ePYDDIsGHDuOGGG9L2MXbsWHbddVfmzJnDIYccQl1dHf379+e2226LrzNr1iz23ntvAM4888ySQ+APPfRQrr76apYuXcpjjz0WX37DDTcghOCRRx5JEv0Ahg0bxm233cY333wTv8cCLFq0iL333tv3h47evXsX1T6NRqPRaEALfxqNph3jui7jx4+nR48e3HHHHRx88MH88pe/5IEHHgCgV69e3HfffYD3QPboo4/y6KOPcsIJJwCewLXvvvsyd+5cfvKTn/DLX/6STp06cdxxx/k+2F544YXMmTOHa665Ji1M7pRTTqG5uZmbb76Zo446il//+tece+65Seucc845XHPNNey5557cddddHHzwwdx88818//vfz9rPjRs38vvf/56xY8dy6623ct1117F69WrGjx8fd6mUq68rV67kkEMO4dNPP+UnP/kJl156KX/605/iD2jFsmjRIgB69OiBUoqJEydy1113MWHCBO6880523HFHLr/88qScVo8++ijBYJAxY8bE+3PeeecBsGrVKvbdd19effVVpk+fzq9+9Su22247zj77bN88fbfccgt//etf+dGPfsSVV17Ju+++m/RgfdVVVzFy5Eh69uwZ31e2fH8zZ87kyy+/5Mwzz+See+7h+9//Pk899RRHHXVUWcWJGD/4wQ+A7CGvM2fO5LTTTqOhoYFbb72VW265hbFjx8Zzqh100EFcfPHFAPz0pz+N93PnnXeO1zF//nxOO+00Dj/8cH71q1/lDIObPn06c+fO5brrrmPy5Mk8/vjjHHfccQUfg3zalkhTUxNjx47l0UcfZdKkSdx+++107dqVqVOn+o7VJ554gttvv53zzjuPG2+8kSVLlnDCCScQiUQytumEE07grrvuAuC0007zHRMnn3wyjY2N/OIXv2DatGlAYdf5woULOf300zn22GO5+eabWbduHcceeyyPP/44l112GWeccQbXX389ixYt4pRTTilZgM/GOeecw913380RRxzBLbfcgm3bHH300UnrjB07loEDB/L444+nbf/4448zbNiwNEfvxo0bWbNmDfPmzeOnP/0pn3/+OYcddlje7aqvr+f4449nxYoVzJkzp7jOtRIrV64ESHLt+jFkyBD2339//vznP6eJVzExsJxhnbEfeGL3kVz88Y9/5JRTTsE0TW6++WamTZvGc889x4EHHpgm2ub6HIbS701//OMfqa+vZ8aMGfzqV79i1KhRvp/DAOvWrWPChAmMGDGCX/7yl+y0005cccUVvPTSSwDsvPPO/PznPwfg3HPPje/roIMOKuCIJpN6f25sbOS1115jzJgxDBkyxHebU089lWAwyPPPPx9fNmjQIF577bU0wV2j0Wg0mpJRGo1GU+U8/PDDClAffPBBfNmUKVMUoH7+858nrbvHHnuoUaNGxf9fvXq1AtS1116bVu9hhx2mdtttN9Xc3BxfJqVU+++/v9p+++3T9n/ggQcqx3GS6rj22msVoCZOnJi0/MILL1SA+s9//qOUUurTTz9VgDrnnHOS1vvRj36kAPX666/Hlx188MHq4IMPjv/vOI4KhUJJ261bt0716dNHnXXWWWXt66WXXqoA9d5778WXffvtt6pr164KUIsXL06r2+94zJ8/X61evVotXrxY/e53v1PBYFD16dNHbdmyRf3tb39TgLrxxhuTtj3ppJOUEEItXLgwvqxTp05qypQpafs5++yz1TbbbKPWrFmTtPz73/++6tq1q2psbFRKKfXGG28oQO28885Jx/BXv/qVAtR///vf+LKjjz5aDRo0KG1fixcvVoB6+OGH48ti9Sfy5JNPKkC9+eab8WWxsZPvcVu9erXv++vWrVOAOv744+PLpkyZktTeSy65RHXp0iVtjCbyzDPPKEC98cYbae8NGjRIAerll1/2fS/xPMT6NWrUKBUOh+PLb7vtNgWov//97/FlmcZkap3Z2pZ6Tdx9990KUI899lh8WTgcVvvtt5+qr69XGzduVEq1nLsePXqotWvXxtf9+9//rgD1//7f/0vbVyKx7W+//fak5bHzddpppyUtL+Q6jx3vd955J77slVdeUYCqra1VS5cujS//3e9+l/HYZOL222/POPZi7U9t94UXXpi03umnn552/q688koVDAbV+vXr48u+/fZbZVmW73keP368AhSgAoGAOu+881RTU1PSOoMGDVJHH310xr7cddddaeOqnGQ7VoUwbtw41aVLF7Vu3bqc6957770KUK+88kp8meu6qn///mq//fYrqR2p7LHHHqpr1655rRsOh1Xv3r3VrrvumnSenn/+eQWoa665Jr4s38/hUu9Nfvfb8847T9XV1SV9ph188MEKUH/605/iy0KhkOrbt6868cQT48s++OCDtHt6Nvy+g6TStWtXtcceeyilWq6nSy65JGu9u+++u+revXv8/z/84Q/x6+SQQw5RV199tXrrrbeU67p5tVOj0Wg0mkxox59Go2nXnH/++Un/jxkzhi+//DLndmvXruX111/nlFNOYdOmTaxZs4Y1a9bw3XffMX78eBYsWJAW1jRt2jRM0/St76KLLkr6/4c//CHgJdhP/Js6S2Msmf0LL7yQsa2macZDf6SUrF27Fsdx2Guvvfj444/L2tcXX3yRfffdl3322Se+fa9evQoOO9txxx3p1asXQ4YM4bzzzmO77bbjhRdeoK6ujhdffBHTNOMOj8RjoZSKOzMyoZTiL3/5C8ceeyxKqXh/1qxZw/jx49mwYUPacTnzzDOTwqfGjBkDkNdY8SOWxwmgubmZNWvWxHN15XNOCqW+vh4g6+yR3bp1Y8uWLUnhwIUyZMgQxo8fn/f65557blKuwQsuuADLsuLjvVK8+OKL9O3bl9NOOy2+zLZtLr74YjZv3sy//vWvpPVPPfXUeB4tKP38x0i9/xR6nQ8fPjzJITd69GjACx/cdttt05aX2t5MxNqdek2mTnQDMHnyZEKhEM8++2x82dNPP43jOL6TUdxyyy3885//5A9/+AP77rsv4XAYx3EKal8+47+t+cUvfsGrr77KLbfckldOyFNPPRXbtpPCff/1r3+xYsWKsob5gue6zDes+cMPP+Tbb7/lwgsvTMptevTRR7PTTjv5flbl+hwu9d6UeL+NfYaNGTOGxsZG5s2bl7RufX190jgMBALss88+Fbt2EvcbG5+xv7mOeefOnZNmuz/rrLN4+eWXGTt2LP/+97+54YYbGDNmDNtvvz3vvPNO5Rqv0Wg0mg6PFv40Gk27paamJp7XLkZDQ0NajjE/Fi5ciFKKq6++ml69eiW9rr32WiA9mXamkB2A7bffPun/YcOGYRgGS5YsAWDp0qUYhsF2222XtF7fvn3p1q0bS5cuzdreRx55hN13352amhp69OhBr169eOGFF9iwYUNZ+7p06dK0voAn5BXCX/7yF2bOnMmsWbNYuHAhn3/+OaNGjYrvo1+/fmkPRbGwrlzHYvXq1axfv54HHnggrT9nnnlmUn9iJIooQFwEymes+LF27VouueQS+vTpQ21tbVzkBPI6J4USm60124PkhRdeyA477MCRRx7JgAED4g+RhZBtjPuROlbq6+vZZptt4uO+UsTGaepMw5nGULnPf4zU41XodZ7arq5duwIkzd6cuLzU9mYi1u5hw4YlLfe77nfaaSf23nvvpHDfxx9/nH333Tet3+DN1nv44Ydz1llnMXPmTN5//33ffJHZyGf8b9iwgZUrV8Zfa9euLWgfpfD000/zs5/9jLPPPjvvCUh69OjB+PHj+etf/xrPB/vEE09gWRannHJK1m1d103q68qVKwmHwxnX79KlS96iaWyMZjr3qWM4n8/hUu9NX3zxBccffzxdu3alS5cu9OrVKy7upd5vBwwYkJa/Mt/vBaWwefPm+PiM/c11zDdt2pQ2psePH88rr7zC+vXrefPNN7noootYunQpxxxzjJ7gQ6PRaDRFo2f11Wg07ZZM7rt8iOXK+tGPfpTR4ZT6EJvoOshF6oNHruXZeOyxx5g6dSrHHXccl19+Ob17947nXorlzstGMX0tlYMOOihnnqtiifXnjDPOYMqUKb7r7L777kn/Zxorqsh8fKeccgrvvPMOl19+OSNHjqS+vh4pJRMmTKhIHrbPP/8cyH6eevfuzaeffsorr7zCSy+9xEsvvcTDDz/M5MmT0ya9yEQhY7xUUnObVZJyn/8YmY5Xvtd5pnZVqr3lYvLkyVxyySUsX76cUCjEu+++y29+85uc2wUCASZOnMgtt9xCU1NT3uMtn/F/ySWXJI3zgw8+OD45RCWZOXMmkydP5uijj+b+++8vaNszzjiD559/nueff56JEyfyl7/8hSOOOCJNSEvlq6++ShOd33jjjbQJcGLstNNOfPLJJ3z11VdponKp5PM5XMq9af369Rx88MF06dKFn//85wwbNoyamho+/vhjrrjiirT7bVtcO8uXL2fDhg3x8bnddtthWRafffZZxm1CoRDz589PmiU4kbq6OsaMGcOYMWPo2bMn119/PS+99FLGzzyNRqPRaLKhhT+NRtOhyfQAPnToUMALDxw3blzJ+1mwYEHSg9jChQuRUsZnAR00aBBSShYsWJA0YcGqVatYv359fPZQP5599lmGDh3Kc889l9SfmFsvRjn6OmjQIBYsWJC2fP78+Vm3K4RBgwbx6quvprkdYiFbicfCr0+xWUdd1y3Lucu2Lz/WrVvHa6+9xvXXX88111wTX+533MrFo48+CpAzDDcQCHDsscdy7LHHIqXkwgsv5He/+x1XX3012223XVHCczYWLFjAIYccEv9/8+bNfPPNNxx11FHxZQ0NDWkTAoTDYb755pukZYW0bdCgQXz22WdIKZNcf35jqDUp5TpvS2LtXrRoUZLTK9N1//3vf58ZM2bw5JNP0tTUhG3bnHrqqXntq6mpCaUUmzZtykv427x5M3/9618ZOHBgxsleAH784x8nhXgmhnZXivfee4/jjz+evfbaiz//+c9YVmFfqydOnEjnzp154oknsG2bdevW5RXm27dv37Sw2REjRmRc/9hjj+XJJ5/kscce48orr8xad2yMzp8/Pz4be4z58+cXPYaLvTfNmjWL7777jueeey5pAo7YDPHFUO77YOr9uVOnThxyyCG8/vrrLF261PeY/fnPfyYUCnHMMcfkrD8mDqbeMzUajUajyRcd6qvRaDo0dXV1AGnCQ+/evRk7diy/+93vfL9Mr169uqD93HvvvUn/33PPPQAceeSRAHEhJHVW0DvvvBMgbfbMRGIOhkTHwnvvvcfs2bOT1itHX4866ijeffdd3n///aT3/WbxLJajjjoK13XTHEJ33XUXQoj4MQPvASq1P6ZpcuKJJ/KXv/wl7gRKpNBzl7ivfMJ0/c4HpJ/bcvHEE0/w+9//nv322y/rbKjfffdd0v+GYcSdj6FQCPD6COljpFgeeOCBpJlx77vvPhzHSTqHw4YN480330zbLtXxV0jbjjrqKFauXMnTTz8dX+Y4Dvfccw/19fUcfPDBxXSnZEq5ztuS2Pn69a9/nbQ805ju2bMnRx55JI899hiPP/44EyZMSHP4+oUlrl+/nr/85S8MHDiQ3r1752xXU1MTP/jBD1i7di1XXXVVVsFm+PDhjBs3Lv6KpRYoB4sWLUpzV8+dO5ejjz6awYMH8/zzzxfllq2treX444/nxRdf5L777qNTp05873vfy7ldTU1NUl/HjRuXVeg86aST2G233bjpppvSPjfACzm96qqrAE9k6t27N/fff3/8vgHw0ksvxftcKKXcm/zut+FwmN/+9rcFtyNGOe+Dr7/+OjfccANDhgxJEm1/9rOfoZRi6tSpNDU1JW2zePFifvzjH7PNNtvEZ6oHeO2113z3EcvBWWjKDY1Go9FoYmjHn0aj6dDU1tYyfPhwnn76aXbYYQe6d+/Orrvuyq677sq9997LgQceyG677ca0adMYOnQoq1atYvbs2Sxfvpz//Oc/ee9n8eLFTJw4kQkTJjB79mwee+wxTj/99LgLY8SIEUyZMoUHHnggHrr0/vvv88gjj3DccccluaZSOeaYY3juuec4/vjjOfroo1m8eDH3338/w4cPj+e+Kldff/zjH/Poo48yYcIELrnkEjp16sQDDzwQd1iVg2OPPZZDDjmEq666iiVLljBixAj++c9/8ve//51LL700Kc/YqFGjePXVV7nzzjvp168fQ4YMYfTo0dxyyy288cYbjB49mmnTpjF8+HDWrl3Lxx9/zKuvvlpUfq9Ro0bx9NNPM2PGDPbee2/q6+s59thj09br0qULBx10ELfddhuRSIT+/fvzz3/+syQHSoxnn32W+vp6wuEwK1as4JVXXuHtt99mxIgRPPPMM1m3Peecc1i7di2HHnooAwYMYOnSpdxzzz2MHDky7pQaOXIkpmly6623smHDBoLBIIceemheIowf4XCYww47jFNOOYX58+fz29/+lgMPPJCJEycmtev888/nxBNP5PDDD+c///kPr7zySppQVEjbzj33XH73u98xdepUPvroIwYPHsyzzz7L22+/zd133533RAblppTrvC0ZOXIkp512Gr/97W/ZsGED+++/P6+99hoLFy7MuM3kyZM56aSTALjhhhvS3o/lcxs9ejS9e/dm2bJlPPzww3z99ddJgm2MFStW8NhjjwGey2/OnDk888wzrFy5kv/7v/9LEkjKwYYNG+I/0Lz99tsA/OY3v6Fbt25069aN6dOnx9eNCe6x3JWbNm1i/PjxrFu3jssvvzxtwothw4YlTdqSjTPOOIM//elPvPLKK0yaNCkuSpUT27Z57rnnGDduHAcddBCnnHIKBxxwALZt88UXX/DEE0/Q0NDATTfdhG3b3HrrrZx55pkcfPDBnHbaaaxatYpf/epXDB48mMsuu6zg/Zdyb9p///1paGhgypQpXHzxxQghePTRR0sK3R02bBjdunXj/vvvp3PnznTq1InRo0fnzHH60ksvMW/ePBzHYdWqVbz++uvMnDmTQYMG8Y9//CNpMpSDDjqIO+64gxkzZrD77rszdepUttlmG+bNm8eDDz6IlJIXX3wxSbD93ve+x5AhQzj22GMZNmwYW7Zs4dVXX+X//b//x9577+37eaTRaDQaTV60wUzCGo1GUxAPP/ywAtQHH3wQXzZlyhTVqVOntHWvvfZalXpre+edd9SoUaNUIBBQgLr22mvj7y1atEhNnjxZ9e3bV9m2rfr376+OOeYY9eyzz2bdf+r+5syZo0466STVuXNn1dDQoKZPn66ampqS1o1EIur6669XQ4YMUbZtq4EDB6orr7xSNTc3J6138MEHq4MPPjj+v5RS/eIXv1CDBg1SwWBQ7bHHHur5559XU6ZMUYMGDSprX5VS6rPPPlMHH3ywqqmpUf3791c33HCD+sMf/qAAtXjx4rRj4Hc8Vq9enXW9TZs2qcsuu0z169dP2battt9+e3X77bcrKWXSevPmzVMHHXSQqq2tVYCaMmVK/L1Vq1apiy66SA0cOFDZtq369u2rDjvsMPXAAw/E13njjTcUoJ555pmkehcvXqwA9fDDD8eXbd68WZ1++umqW7duCogfW791ly9fro4//njVrVs31bVrV3XyySerr7/+Ou2Yx8ZOvsct9qqpqVEDBgxQxxxzjHrooYfSxohSKu38P/vss+qII45QvXv3VoFAQG277bbqvPPOU998803Sdg8++KAaOnSoMk1TAeqNN95QSik1aNAgdfTRR/u2b9CgQUnHPtavf/3rX+rcc89VDQ0Nqr6+Xk2aNEl99913Sdu6rquuuOIK1bNnT1VXV6fGjx+vFi5cmFZntralXhNKeef/zDPPVD179lSBQEDttttuSedIqZZzd/vtt6f1KfVc+ZFp+2zjPN/rPNPxBtRFF12Udz8ycfvtt2cce373yaamJnXxxRerHj16qE6dOqljjz1WffXVVxmPUygUUg0NDapr165p9zqllPrNb36jDjzwQNWzZ09lWZbq1auXOvbYY9Wbb76Ztu6gQYPiY18Iobp06aJ22WUXNW3aNPXee+/l3edCiB1Tv1fqfXXQoEFJy7Jtm3qfyoXjOGqbbbZRgHrxxRfL07kMrFu3Tl1zzTVqt912U3V1daqmpkbtuuuu6sorr0y7Tzz99NNqjz32UMFgUHXv3l1NmjRJLV++PGmdfD+HS703vf3222rfffdVtbW1ql+/furHP/6xeuWVV5LWUcq7T+yyyy5p7fH7rPz73/+uhg8frizLSru/pxK738VegUBA9e3bVx1++OHqV7/6ldq4cWPGbd988031ve99T/Xs2VPZtq223XZb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OnVqISrmC1/483FEstJdLaTz1VcvRQsVVyJpMQh9hfSjrQp+ULqNO9IRKelVQgH6vXobSihgewwNq1WKfk5pbaKfE9pKma9Tsckygux574clW+rrBLvr/HmNXdEn3+v9+c0+0mNHKDKsIMv23YthtbzfClmCDO6t/ZcvAbCUy4DzUf5b1MJVnkTAkAjyd3F/i1LfbIkVAYv+mPoUHNUQqKEUm2H/vW3+/Pn89re/5YUXXmDTpk3cfPPN1NfXM3fuXABmz57NfffdF93/zjvvZPHixfzsZz9j8+bNPPTQQ3z44Yfcdttt0X2+//3v89JLL/Hb3/6Wbdu28cQTT/C3v/2NW265BYAdO3awaNEi1qxZw65du1ixYgVXXHEF7dq146KLLgLgggsu4JRTTuHaa6/lo48+4o033uCHP/wht956a0oh02uKS6HxKVqyKd01dYPl57+JqedQC+EChRb4EimUP221pBfcFfzcwE3BL4LQQ1Se/xxCz/745drsothFv3x28HVCsYp+dmlrZb4AitZEnzN+gaI1FdqVVoWleCs6Oy0/dlr264R8lvzmgltlv5C5VFRTmpja61doSvL7rVAlyHE+6LmV/kJ8+WRrKAP2anwvy38hf+chJzwsC9Zp4qv8Eh333t/cEv+K9nz4OMcCUn22dXBdX3nllRw4cIAHH3yQyspKxo4dy+LFi6ONNHbt2oWqNt9AU6dO5cUXX+SHP/wh999/P8OGDeOVV15h9OjR0X0uu+wynn76aRYtWsQdd9zBySefzJ/+9CfOOussAMrLy3nvvfd4/PHHOXz4ML179+bss89mxYoV9OrVCwBN0/j73//OzTffzJQpU+jQoQNz5szhRz/6kf0gXUIRokTrgRxgWRaHDx3koa4/obFE1qArFI7W6BOgGboU/vL8Y48v9nk7dykIfm7HXQzr+EGaTr0CFCMghb8M95sb3W190S92rvw083Aq+nnd1MNL4c/ul3knSWm247VACBBmEEVrQsni/S1g8zJWhf03TdvHysHLgG7a88uJyGb3fDgRfJyuPehE/HMqSDl5nlPhz8l6fxHcKsdPJxIJAaYIoinp77d8+JINuQqAseRD6PBSAMzL+B4JgC3mKRXRKVcRXIBBEJ3s3t9KlUKdT6G1o2bqH+narXucANXWiOgw817owvFQ8gutXUDwzJyaNn+svMI/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Q6elEpGhqamJ6dOn89JLL1V/YHVGPfiaEBQSr27durH11lvzq1/9ijVr1pTc329/+9s2E1oefvhhZsyY0SbHSifbedt4442ZMGEC999/P5FIpCrH+fTTT5k+fXpdCrj1OrZJkybx0Ucfce211/LXv/6VMWPGtPeQsjJ8+PCUOZTr1VZixSuvvMLhhx/ORhttRDgcZtCgQRx00EG89tpreccupaR3795st912/OQnP+HNN9+syfjmzp3LRRddxO677044HC5JoFdK8ec//znpX/fu3dl222255ppraGlpybvve++9hxCCX/3qVznbfPHFFwghuPjii0txKScJoermm2+uSn/pvP7660yfPp1Vq1bVpH+DwWAwGAwednsPwGAwGOqRpqYmrrrqKoC6i6KrNvXk65133kljYyPr1q3jueee49prr+WFF17gtddeKzrSCDzh79hjj+XII4+s3WDjPPzww3z88cdceOGFKduHDRtGc3MzgUCg5mNInLdIJMKiRYt49tlnOe2005gxYwb//ve/2WijjZJt7733XpRSJfX/6aefctVVV7HvvvuWFC04d+5cpKzt3xjzje25556r6bFz0dzczKxZs7jyyivrPmppxowZrFu3Lvn/p59+mkceeYRbb72VDTbYILl9991355RTTuHyyy+v6Xg+//xzpJScffbZDBo0iJUrV/Lggw+y995789RTT3HQQQeltB81ahQ///nPAVi7di2fffYZjz/+OPfeey8XXXQRt9xyS1XHN2vWLG677Ta23nprttpqK2bPnl30vk1NTUyZMoVdd92Vs88+mwEDBjBr1iymTZvGzJkzeeGFF3I+53baaSe23HJLHnnkEa655pqsbR5++GEATjnllJL9ag9ef/11rrrqKiZPnkzv3r3bezgGg8FgMHRajPBnMBgMbcj69evp3r17ew+jbjn22GOTYsPZZ5/NMcccw9///nfeeOMNdtttt3YeXWkIIQiHw21yLP95A5g6dSoPPfQQEydO5LjjjuONN95IvldrIVJrTUtLCw0NDYRCoZoeqxDBYLBdjrts2TKAosSM9n4mpIvjixcv5pFHHuHII4/MKvLadm2/Op5xxhmcccYZKdvOPfdcRo4cyYwZMzKEvyFDhmQIXTfccAMnnXQSt956K5ttthnnnHNO1cZ3+OGHs2rVKnr06MHNN99ckvAXDAZ57bXX2H333ZPbzjzzTIYPH54U/8aNG5dz/5NPPplf//rXvPHGG+y6664Z7z/yyCNsueWW7LTTTiX51FVpaWkhGAzW/I8TBoPBYDC0N+aTzmAwdCkmT55MY2MjixYt4sgjj6SxsZH+/ftzySWX4Lou4KU39e/fH4CrrroqmUrmX69qzpw5HHvssfTt25dwOMyYMWP4v//7v5RjJVKNX375Zc4991wGDBjA0KFDgdYUzTlz5nD88cfTs2dP+vXrxwUXXJCR8uU4DldffTWbbLIJoVCI4cOH88tf/rJgGmc0GmXq1KmMHj2aXr160b17d/baay9efPHFZJtq+QrwySefsP/++9PQ0MDQoUO55pprSo4sS2f//fcHYN68eYAnkvz85z9no402IhQKscUWW3DzzTejtU7uI4Rg/fr1PPDAA0l//OvMLVq0iNNOO42BAwcSCoXYZpttuO+++1KO+9JLLyGE4G9/+xvXXnstQ4cOJRwOc8ABB/Dll18m2+2777489dRTzJ8/P3mshFiSbT2nDz/8kMmTJzNy5MhkGuNpp53GDz/8UNF5ysbJJ5/MGWecwZtvvsl///vf5PZsa/w9+uijjB49mh49etCzZ0+22247fve73wHePD7uuOMA2G+//ZJ+JlLDhw8fzmGHHcazzz7LmDFjaGho4O67706+5z/3CZqamjjrrLPo168fPXv2ZOLEiaxcuTKlTa414vx9FhpbtjX+li5dyumnn87AgQMJh8PssMMOPPDAAylt/CmO99xzT/Le23nnnXn77beznu8E06dPZ9iwYQBceumlKXMicd9/+umnnHTSSfTp04c999wTKP4+T5zvl156KXm+t9tuu6TPf//739luu+0Ih8OMHj2a999/P+94SyHbGn+RSISLLrqI/v3706NHDw4//HAWLlyY0ubFF19ECME//vGPjD4ffvhhhBDMmjUr53G7detG//79i04JbWho4K9//St9+/bl2muvTXk+VErfvn3p0aNHWfsGg8EU0S/BUUcdBcBnn32Wd/+TTz4ZaI3s8/Puu+8yd+7cZJtaEYvFuOqqq9hss80Ih8P069ePPffcM+UZA/DCCy+w11570b17d3r37s0RRxyR4t/06dO59NJLARgxYkTy3k1Pm/7nP//Jtttum3xWP/PMMxljKuWZ/uijj/KrX/2KIUOG0K1bN9asWZP8XrBgwQIOO+wwGhsbGTJkCHfccQcAH330Efvvvz/du3dn2LBhGed/xYoVXHLJJWy33XY0NjbSs2dPDj74YD744IOyz7PBYDAYDNXERPwZDIYuh+u6jB8/nrFjx3LzzTfz/PPP8//+3/9jk0024ZxzzqF///7ceeednHPOORx11FEcffTRAGy//faAJ3DtscceDBkyhMsvv5zu3bvzt7/9jSOPPJInn3wy+SMuwbnnnkv//v2ZOnUq69evT3nv+OOPZ/jw4Vx33XW88cYb3HbbbaxcuZK//OUvyTZnnHEGDzzwAMceeyw///nPefPNN7nuuuv47LPPsv6QTrBmzRr++Mc/cuKJJ3LmmWeydu1a/vSnPzF+/HjeeustRo0aVTVfFy9ezH777YfjOMl299xzDw0NDRVdq6+++gqAfv36obXm8MMP58UXX+T0009n1KhRPPvss1x66aUsWrSIW2+9FYC//vWvnHHGGeyyyy785Cc/AWCTTTYBYMmSJey6667JheP79+/Pf/7zH04//XTWrFmTka57/fXXI6XkkksuYfXq1dx4442cfPLJyfXDrrzySlavXs3ChQuTx29sbMzpz3//+1++/vprpkyZwqBBg/jkk0+45557+OSTT3jjjTdKSmcuhlNPPZV77rmH5557jh/96Ec5x3TiiSdywAEHcMMNNwCeAPHaa69xwQUXsPfee3P++edz22238ctf/pKtttoKIPkveCm9J554ImeddRZnnnkmW2yxRd5xnXfeefTu3Zvp06czd+5c7rzzTubPn5/8cV4sxYzNT3NzM/vuuy9ffvkl5513HiNGjODxxx9n8uTJrFq1igsuuCCl/cMPP8zatWs566yzEEJw4403cvTRR/P111/njJw8+uij6d27NxdddBEnnngihxxySMacOO6449hss8347W9/mxSlSrnPv/zyS0466STOOussTjnlFG6++WYmTJjAXXfdxS9/+UvOPfdcAK677jqOP/74mqZcn3HGGTz44IOcdNJJ7L777rzwwgsceuihKW323XdfNtpoIx566KGM5+NDDz3EJptskhHRu2bNGqLRKMuXL+cvf/kLH3/8Mb/85S+LHldjYyNHHXUUf/rTn/j000/ZZpttyneyxixevBggJWo3GyNGjGD33Xfnb3/7G7feeiuWZSXfS4hRJ510Uu0GiifYXXfddcln7Jo1a3jnnXd47733ks+Y559/noMPPpiRI0cyffp0mpubuf3229ljjz147733GD58OEcffTSff/55Rlp54g9RAP/73//4+9//zrnnnkuPHj247bbbOOaYY1iwYAH9+vUDSn+mX3311QSDQS655BIikUgyKth1XQ4++GD23ntvbrzxRh566CHOO+88unfvzpVXXsnJJ5/M0UcfzV133cXEiRPZbbfdGDFiBABff/01//znPznuuOMYMWIES5Ys4e6772afffbh008/ZfDgwTW9JgaDwWAwFEQbDAZDJ+X+++/XgH777beT2yZNmqQB/Zvf/Cal7Y477qhHjx6d/P+yZcs0oKdNm5bR7wEHHKC322473dLSktymlNK777673myzzTKOv+eee2rHcVL6mDZtmgb04YcfnrL93HPP1YD+4IMPtNZaz549WwP6jDPOSGl3ySWXaEC/8MILyW377LOP3meffZL/dxxHRyKRlP1WrlypBw4cqE877bSq+nrhhRdqQL/55pvJbUuXLtW9evXSgJ43b15G39nOx9y5c/WyZcv0vHnz9N13361DoZAeOHCgXr9+vf7nP/+pAX3NNdek7HvsscdqIYT+8ssvk9u6d++uJ02alHGc008/XW+44YZ6+fLlKdt//OMf6169eummpiattdYvvviiBvRWW22Vcg5/97vfaUB/9NFHyW2HHnqoHjZsWMax5s2bpwF9//33J7cl+vfzyCOPaEC/8soryW2JuVPseVu2bFnW91euXKkBfdRRRyW3TZo0KWW8F1xwge7Zs2fGHPXz+OOPa0C/+OKLGe8NGzZMA/qZZ57J+p7/OiT8Gj16tI5Go8ntN954owb0v/71r+S2XHMyvc98Y0u/J2bMmKEB/eCDDya3RaNRvdtuu+nGxka9Zs0arXXrtevXr59esWJFsu2//vUvDej/7//7/zKO5Sex/0033ZSyPXG9TjzxxJTtpdznifP9+uuvJ7c9++yzGtANDQ16/vz5ye133313znOTi5tuuinn3EuMP33c5557bkq7k046KeP6XXHFFToUCulVq1Ylty1dulTbtp31Oo8fP14DGtDBYFCfddZZurm5OaXNsGHD9KGHHprTl1tvvTVjXlWTfOeqFMaNG6d79uypV65cWbDtHXfcoQH97LPPJre5rquHDBmid9ttt4rGkU62ebzDDjvkPedaaz1q1Cg9YMAA/cMPPyS3ffDBB1pKqSdOnJjclu/8Ja67/7n+wQcfaEDffvvtyW2lPtNHjhyZ8RxOfC/47W9/m9y2cuVK3dDQoIUQ+tFHH01unzNnTsbcbmlp0a7rpvQ5b948HQqFUr5rZPtMMBgMBoOhLTCpvgaDoUty9tlnp/x/r7324uuvvy6434oVK3jhhRc4/vjjWbt2LcuXL2f58uX88MMPjB8/ni+++IJFixal7HPmmWemRGb4+elPf5ry/5/97GeAt8C+/9/0Ko2JxeyfeuqpnGO1LCsZzaCUYsWKFTiOw5gxY3jvvfeq6uvTTz/Nrrvuyi677JLcv3///iWnnW2xxRb079+fESNGcNZZZ7Hpppvy1FNP0a1bN55++mksy+L888/POBdaa/7zn//k7VtrzZNPPsmECRPQWif9Wb58OePHj2f16tUZ52XKlCkp68TttddeAEXNlWz4IyBbWlpYvnx5cq2uYq5JqSQizdauXZuzTe/evVm/fn1Gql4pjBgxgvHjxxfd/ic/+UlKxNw555yDbdvJ+V4rnn76aQYNGsSJJ56Y3BYIBDj//PNZt24dL7/8ckr7E044gT59+iT/X+n1T5D+/Cn1Pt96661TIuTGjh0LeKnxG2+8ccb2Ssebi8S40+/J9CgrgIkTJxKJRHjiiSeS2x577DEcx8lajOL666/nueee409/+hO77ror0WgUx3FKGl8x87+9+e1vf8vzzz/P9ddfX9SakCeccAKBQCAl3fTll19m0aJFNU/zBe958cknn/DFF19kff/7779n9uzZTJ48mb59+ya3b7/99vzoRz8q6R4fN25cMlo70UfPnj2T87mcZ/qkSZNyRqL715bs3bs3W2yxBd27d+f4449Pbt9iiy3o3bt3yj0VCoWSEbWu6/LDDz/Q2NjIFltsUZPnusFgMBgMpWJSfQ0GQ5cjHA6npBMB9OnTJ2ONsWx8+eWXaK359a9/za9//eusbZYuXcqQIUOS/0+kA2Vjs802S/n/JptsgpQyuc7R/PnzkVKy6aabprQbNGgQvXv3Zv78+XnH+8ADD/D//t//Y86cOcRisaLGlKAUX+fPn58UGfwUSvlM58knn6Rnz54EAgGGDh2a8qNv/vz5DB48OGN9rURaZ6FzsWzZMlatWsU999zDPffck9MfP34RBUiKQMXMlWysWLGCq666ikcffTTjWKtXry6rz3wkqrXmW5Ps3HPP5W9/+xsHH3wwQ4YM4cADD+T444/PKKKQj2Lmk5/0ed/Y2MiGG26Ysb5XtZk/fz6bbbZZRtprrjlU7eufIP18lXqfp4+rV69eACnVm/3bKx1vLhLj9t+nkP2+33LLLdl555156KGHOP300wEvzXfXXXfN8Bu8ar0JTjnlFHbaaScmT56cIhwWopj5v3r1apqbm5P/DwaDKYJVLXnsscf41a9+xemnn150AZJ+/foxfvx4/vGPf3DXXXcRDod5+OGHsW07RaDKhuu6ycIzCfr27VtSEZzf/OY3HHHEEWy++eZsu+22HHTQQZx66qnJ5SESczXbHNhqq6149tlniy5okz7PIfWzupxneq5nVbbvBb169WLo0KEZyw/06tUr5Z5SSvG73/2OP/zhD8ybNy+5XjCQTEk2GAwGg6E9McKfwWDocuSKviuGRLGKSy65JGeEU/qP2FLWucu1vlk5a789+OCDTJ48mSOPPJJLL72UAQMGYFkW1113XXLtvHyU42ul7L333gXXuSqXhD+nnHIKkyZNytom8eM1Qa65osssFnD88cfz+uuvc+mllzJq1CgaGxtRSnHQQQdVXAglGx9//DGQ/zoNGDCA2bNn8+yzz/Kf//yH//znP9x///1MnDgxo+hFLipdy7EU/D+qa021r3+CXOer2Ps817hqNd5qMXHiRC644AIWLlxIJBLhjTfe4Pe//33B/YLBIIcffjjXX389zc3NRc+3Yub/BRdckDLP99lnn2ShlFry3//+l4kTJ3LooYdy1113lbTvKaecwr///W/+/e9/c/jhh/Pkk09y4IEHZghX6Xz77bcZwteLL76YUQAnH3vvvTdfffUV//rXv3juuef44x//yK233spdd92VUY25UgrN53Ke6bnmTiX31G9/+1t+/etfc9ppp3H11VfTt29fpJRceOGFNXmuGwwGg8FQKkb4MxgMhizk+gE+cuRIwEsPHDduXMXH+eKLL1J+iH355ZcopZJVQIcNG4ZSii+++CKlYMGSJUtYtWpVsnpoNp544glGjhzJ3//+9xR/pk2bltKuGr4OGzYsa+rX3Llz8+5XCsOGDeP5559n7dq1KRE8c+bMSb6fIJtPiaqjrutW5drlO1Y2Vq5cycyZM7nqqquYOnVqcnuulLlq8Ne//hWgYBpuMBhkwoQJTJgwAaUU5557LnfffTe//vWv2XTTTatedOSLL75gv/32S/5/3bp1fP/99xxyyCHJbX369Mmo4hqNRvn+++9TtpUytmHDhvHhhx+ilEqJ+ss2h9qSSu7z9iQx7q+++iolwivXff/jH/+Yiy++mEceeYTm5mYCgQAnnHBCUcdqbm5Ga83atWuLEv7WrVvHP/7xDzbaaKOcxV4AfvGLX6SkGvtTu2vFm2++yVFHHcWYMWP429/+hm2X9nX88MMPp0ePHjz88MMEAgFWrlxZVJrvoEGDMlL6d9hhh5KODV6U4JQpU5gyZQrr1q1j7733Zvr06ZxxxhnJuZptDsyZM4cNNtggGe1X6XOlVs/0UnniiSfYb7/9+NOf/pSyfdWqVTX7Q5bBYDAYDKVg1vgzGAyGLHTr1g0gQ3gYMGAA++67L3fffXeGAAFkpFEV4o477kj5/+233w7AwQcfDJAUQmbMmJHS7pZbbgHIqJ7pJxGp4I9MePPNN5k1a1ZKu2r4esghh/DGG2/w1ltvpbz/0EMP5RxfqRxyyCG4rpsRIXTrrbcihEieM4Du3btn+GNZFscccwxPPvlkMhLIT6nXzn+sYtJ0s10PyLy21eLhhx/mj3/8I7vtthsHHHBAznY//PBDyv+llMkomUgkApD8oZ5+TsvlnnvuSUk9v/POO3EcJ+UabrLJJrzyyisZ+6VH/JUytkMOOYTFixfz2GOPJbc5jsPtt99OY2Mj++yzTznuVEwl93l7krhet912W8r2XHN6gw024OCDD+bBBx/koYce4qCDDsoQRtJTM8G7tk8++SQbbbQRAwYMKDiu5uZmTj31VFasWMGVV16ZV2DaeuutGTduXPI1evTogv0Xy1dffZURXf3ZZ59x6KGHMnz4cP7973+XFS3b0NDAUUcdxdNPP82dd95J9+7dOeKIIwruFw6HU3wdN25cyUJn+vOisbGRTTfdNPms2HDDDRk1ahQPPPBAyj358ccf89xzz6WI+5U+V2r1TC9nHOnP9ccffzxjvV+DwWAwGNoLE/FnMBgMWWhoaGDrrbfmscceY/PNN6dv375su+22bLvtttxxxx3sueeebLfddpx55pmMHDmSJUuWMGvWLBYuXMgHH3xQ9HHmzZvH4YcfzkEHHcSsWbN48MEHOemkk5JRGDvssAOTJk3innvuYdWqVeyzzz689dZbPPDAAxx55JEpUVPpHHbYYfz973/nqKOO4tBDD2XevHncddddbL311sm1r6rl6y9+8Qv++te/ctBBB3HBBRfQvXt37rnnnmSEVTWYMGEC++23H1deeSXffPMNO+ywA8899xz/+te/uPDCC1PWGRs9ejTPP/88t9xyC4MHD2bEiBGMHTuW66+/nhdffJGxY8dy5plnsvXWW7NixQree+89nn/+eVasWFHyuEaPHs1jjz3GxRdfzM4770xjYyMTJkzIaNezZ0/23ntvbrzxRmKxGEOGDOG5555j3rx5FZ0X8CJOGhsbiUajLFq0iGeffZbXXnuNHXbYgccffzzvvmeccQYrVqxg//33Z+jQocyfP5/bb7+dUaNGJSOlRo0ahWVZ3HDDDaxevZpQKMT+++9flAiTjWg0ygEHHMDxxx/P3Llz+cMf/sCee+7J4YcfnjKus88+m2OOOYYf/ehHfPDBBzz77LMZQlEpY/vJT37C3XffzeTJk3n33XcZPnw4TzzxBK+99hozZszIuxZcLankPm9PRo0axYknnsgf/vAHVq9eze67787MmTP58ssvc+4zceJEjj32WACuvvrqjPcPPvhghg4dytixYxkwYAALFizg/vvv57vvvksRbBMsWrSIBx98EPCi/D799FMef/xxFi9ezM9//nPOOuusKnnrsXr16uQfaF577TUAfv/739O7d2969+7Neeedl2ybENwTa1euXbuW8ePHs3LlSi699NKMoi2bbLJJStGWfJxyyin85S9/4dlnn+Xkk08uas28arD11luz7777Mnr0aPr27cs777zDE088keL3TTfdxMEHH8xuu+3G6aefTnNzM7fffju9evVi+vTpyXYJkfXKK6/kxz/+MYFAgAkTJpTkSy2e6aVy2GGH8Zvf/IYpU6aw++6789FHH/HQQw8lo+YNBoPBYGh32r6QsMFgMLQN999/vwb022+/ndw2adIk3b1794y206ZN0+mPxNdff12PHj1aB4NBDehp06Yl3/vqq6/0xIkT9aBBg3QgENBDhgzRhx12mH7iiSfyHj/9eJ9++qk+9thjdY8ePXSfPn30eeedp5ubm1PaxmIxfdVVV+kRI0boQCCgN9poI33FFVfolpaWlHb77LOP3meffZL/V0rp3/72t3rYsGE6FArpHXfcUf/73//WkyZN0sOGDauqr1pr/eGHH+p99tlHh8NhPWTIEH311VfrP/3pTxrQ8+bNyzgH2c7HsmXL8rZbu3atvuiii/TgwYN1IBDQm222mb7pppu0Uiql3Zw5c/Tee++tGxoaNKAnTZqUfG/JkiX6pz/9qd5oo410IBDQgwYN0gcccIC+5557km1efPFFDejHH388pd958+ZpQN9///3JbevWrdMnnXSS7t27twaS5zZb24ULF+qjjjpK9+7dW/fq1Usfd9xx+rvvvss454m5U+x5S7zC4bAeOnSoPuyww/R9992XMUe01hnX/4knntAHHnigHjBggA4Gg3rjjTfWZ511lv7+++9T9rv33nv1yJEjtWVZGtAvvvii1lrrYcOG6UMPPTTr+IYNG5Zy7hN+vfzyy/onP/mJ7tOnj25sbNQnn3yy/uGHH1L2dV1XX3bZZXqDDTbQ3bp10+PHj9dffvllRp/5xpZ+T2jtXf8pU6boDTbYQAeDQb3ddtulXCOtW6/dTTfdlOFT+rXKRq79883zYu/zXOcb0D/96U+L9iMXN910U865l+052dzcrM8//3zdr18/3b17dz1hwgT97bff5jxPkUhE9+nTR/fq1SvjWae11r///e/1nnvuqTfYYANt27bu37+/njBhgn7llVcy2g4bNiw594UQumfPnnqbbbbRZ555pn7zzTeL9rkUEuc02yv9uTps2LCUbfn2TX9OFcJxHL3hhhtqQD/99NPVcS6NbPPnmmuu0bvssovu3bu3bmho0FtuuaW+9tprdTQaTdn3+eef13vssYduaGjQPXv21BMmTNCffvppxjGuvvpqPWTIEC2lTJl32eaz1pnPFK0re6Zrnft7wT777KO32WabrGPw34MtLS365z//ud5www11Q0OD3mOPPfSsWbMynj/ZPhMMBoPBYGgLhNZ1suKzwWAwdCGmT5/OVVddxbJly8waQAaDocvgOA6DBw9mwoQJGWuiGQwGg8FgMBiqj1njz2AwGAwGg8HQJvzzn/9k2bJlTJw4sb2HYjAYDAaDwdAlMGv8GQwGg8FgMBhqyptvvsmHH37I1VdfzY477thuhVQMBoPBYDAYuhom4s9gMBgMBoPBUFPuvPNOzjnnHAYMGMBf/vKX9h6OwWAwGAwGQ5ehQ63x98orr3DTTTfx7rvv8v333/OPf/yDI488sr2HZTAYDAaDwWAwGAwGg8Fg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", + "image/png": "iVBORw0KGgoAAAANSUhEUgAABP0AAAMWCAYAAACKh/OiAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjMsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvZiW1igAAAAlwSFlzAAAPYQAAD2EBqD+naQABAABJREFUeJzsnXl81NTeh79JZqYtLS37Xla5KiqLbIILLr0gIogrolwK7gsu9LqhV5ZXERSuVoUL4lVcUUTE6+sCKAK+Km4g7nAFURRZBVtooTOTnPePTNIkk2SSmWSSmTnP5zPaZk6Sk0xmOnn4nvNjCCEEFAqFQqFQKBQKhUKhUCgUCiVrYL3uAIVCoVAoFAqFQqFQKBQKhUJxFir9KBQKhUKhUCgUCoVCoVAolCyDSj8KhUKhUCgUCoVCoVAoFAoly6DSj0KhUCgUCoVCoVAoFAqFQskyqPSjUCgUCoVCoVAoFAqFQqFQsgwq/SgUCoVCoVAoFAqFQqFQKJQsg0o/CoVCoVAoFAqFQqFQKBQKJcug0o9CoVAoFAqFQqFQKBQKhULJMqj0o1AoFAqFQqFQKBQKhUKhULIMKv0oFAolCzn99NNx+umne90NFc888wwYhsHPP//sdVfSzs8//wyGYfDMM8/YXtfN8zZu3Dh07NjR8e3q0bFjR4wbN07+XTquL774Ii379/I98eOPP2Lw4MEoKSkBwzB4/fXXPemHk0ydOhUMw1hqyzAMpk6d6m6HKL5i1qxZ6Ny5MziOQ8+ePQEA0WgUd9xxB0pLS8GyLEaOHOlpHykUCoVCyQWo9KNQKDlBKoKhtrYWU6dOxZo1a5zvmM/ww7FKMkF6NGjQAN26dcM//vEPVFdX297eAw88kDbJsmjRIlRWVqZlX1r0zlv79u0xfPhwLFy4EHV1dY7s5/vvv8fUqVN9KW/92rfy8nJ88803mD59Op5//nn06dPH6y7p0rFjR9U1ZPRIRl4nwwcffIARI0agtLQU+fn5aNWqFc4++2x89NFHpn1nWRaNGjXCCSecgGuuuQaffvqpK/3bvHkzJk6ciIEDByI/P9+WnBcEAc8884x8fIWFhTj++ONx//3348iRI6brbtiwAQzD4B//+Idhmx9//BEMw6CiosLOIRki/cOF0WPmzJly25UrV+KOO+7AySefjIULF+KBBx4AADz99NOYNWsWLrroIjz77LOYOHGi5f2ffvrpqte3uLgYRx99NP72t7/h3XffNVwvEongscceQ9++fdGwYUMUFRWhb9++eOyxxxCJROLah8NhPProo+jVqxeKi4vRqFEjHHfccbjmmmuwadMmG2eMQqFQKBR/EPC6AxQKheJ3amtrMW3aNADwXXrOafx0rPPmzUNRUREOHTqElStXYvr06Xj//ffx0UcfWU4YAaL0u+iii9KSKlm0aBG+/fZb3HrrrarlHTp0wOHDhxEMBl3vg3Te6urqsGPHDqxYsQJXXHEFKisr8eabb6K0tFRu++STT0IQBFvb//777zFt2jScfvrptlKCmzdvBsu6+2+NZn1buXKlq/s24vDhw1i3bh3uueceTJgwwZM+WKWyshKHDh2Sf3/77bfx0ksv4ZFHHkGzZs3k5QMHDsSYMWNw1113udqf//73v2BZFtdddx1atWqFAwcO4IUXXsBpp52Gt956C2effbaqfc+ePfH3v/8dAHDw4EH88MMPWLJkCZ588klMnDgRDz/8sKP9W7duHR577DF069YNxx57LDZu3Gh53draWowfPx4nnXQSrrvuOrRo0QLr1q3DlClTsGrVKrz//vuGn3MnnngijjnmGLz00ku4//77ddssWrQIADBmzBjbx2XG6NGjcc4558Qt79Wrl/zz+++/D5Zl8dRTTyEUCqmWt23bFo888khS+27Xrh1mzJgBAKipqcGWLVvw2muv4YUXXsAll1yCF154QfUZW1NTg2HDhmHt2rU499xzMW7cOLAsi+XLl+OWW27Ba6+9hrfeeguFhYXyOhdeeCHeeecdjB49GldffTUikQg2bdqEN998EwMHDsQxxxyTVN8pFAqFQvEKKv0oFArFI2pqalQ3GxQ1F110kSwarrvuOlx44YV47bXX8Mknn2DAgAEe984eDMMgPz8/LftSnjcAmDx5Ml588UWMHTsWF198MT755BP5ObclJCEER44cQUFBAfLy8lzdVyKU8iGd7N27FwDQqFGjhG29/kzQivFdu3bhpZdewsiRI3UFbyDg7tfIq666CldddZVq2Q033IDOnTujsrIyTvq1bds2TnI9+OCDuOyyy/DII4+ga9euuP766x3r34gRI/Dnn3+iYcOGmD17ti3pFwqF8NFHH2HgwIHysquvvhodO3aUxV9ZWZnh+pdffjnuvfdefPLJJzjppJPinn/ppZdwzDHH4MQTT7R1TIk48cQTE4rEPXv2oKCgIO49t2fPHkvvAyNKSkri9j1z5kzcfPPN+Ne//oWOHTviwQcflJ+rqKjA2rVr8fjjj6uE+/XXX4+5c+diwoQJuO222zBv3jwAwOeff44333wT06dPx913363az5w5c/Dnn38m3XcKhUKhULyCDu+lUCg5y7hx41BUVIQdO3Zg5MiRKCoqQvPmzXHbbbeB53kA4pCm5s2bAwCmTZsmDy9Szk+1adMmXHTRRWjSpAny8/PRp08fvPHGG6p9ScOL165dixtuuAEtWrRAu3btANQPy9y0aRMuueQSFBcXo2nTprjlllvihnlFo1Hcd9996NKlC/Ly8tCxY0fcfffdCYduhsNhTJ48Gb1790ZJSQkKCwtx6qmnYvXq1XIbp44VAL777juceeaZKCgoQLt27XD//ffbTpRpOfPMMwEA27ZtAyAKkr///e8oLS1FXl4ejj76aMyePRuEEHkdhmFQU1ODZ599Vj4e5bxyO3bswBVXXIGWLVsiLy8Pxx13HJ5++mnVftesWQOGYfDKK69g+vTpaNeuHfLz83HWWWdhy5YtcrvTTz8db731Fn755Rd5X5Io0ZvT7+uvv8a4cePQuXNneejiFVdcgT/++COl86TH5Zdfjquuugqffvqpaiic3px+L7/8Mnr37o2GDRuiuLgYJ5xwAh599FEA4nV88cUXAwDOOOMM+Til4eAdO3bEueeeixUrVqBPnz4oKCjAE088IT+nPPcStbW1uPbaa9G0aVMUFxdj7NixOHDggKqN0Zxwym0m6pvenH579uzBlVdeiZYtWyI/Px89evTAs88+q2ojvXazZ8/GggUL5Pde37598fnnn+ueb4mpU6eiQ4cOAIDbb79ddU1I7/vvv/8el112GRo3boxTTjkFgPX3uXS+16xZI5/vE044QT7m1157DSeccALy8/PRu3dvfPnll6b9tYPenH51dXWYOHEimjdvjoYNG2LEiBH47bffVG1Wr14NhmGwbNmyuG0uWrQIDMNg3bp1hvtt0KABmjdvblnAFBQU4Pnnn0eTJk0wffp01edDqjRp0gQNGzZMat1QKKQSfhLnn38+AOCHH34wXf/yyy8HUJ/oU7J+/Xps3rxZbpNOGIbBwoULUVNToxoOzjAMVq9eje+++y7uvZkKHMfJacs5c+agqqoKAPDbb7/hqaeewplnnqmbsL3xxhtxxhln4N///rd8jW7duhUAcPLJJ+vup2nTpin3l0KhUCiUdEOTfhQKJafheR5DhgxB//79MXv2bLz33nv45z//iS5duuD6669H8+bNMW/ePFx//fU4//zzccEFFwAAunfvDkCUWyeffDLatm2Lu+66C4WFhXjllVcwcuRILF26VL6Bk7jhhhvQvHlzTJ48GTU1NarnLrnkEnTs2BEzZszAJ598gsceewwHDhzAc889J7e56qqr8Oyzz+Kiiy7C3//+d3z66aeYMWMGfvjhB92baInq6mr8+9//locsHTx4EE899RSGDBmCzz77DD179nTsWHft2oUzzjgD0WhUbrdgwQIUFBSk9FpJN2RNmzYFIQQjRozA6tWrceWVV6Jnz55YsWIFbr/9duzYsUMePvb888/jqquuQr9+/XDNNdcAALp06QIA2L17N0466SQwDIMJEyagefPmeOedd3DllVeiuro6bojuzJkzwbIsbrvtNlRVVeGhhx7C5ZdfLs8Xds8996Cqqgq//fabvP+ioiLD43n33Xfx008/Yfz48WjVqhW+++47LFiwAN999x0++eQTW0OYrfC3v/0NCxYswMqVK/HXv/7VsE+jR4/GWWedJSdmfvjhB3z00Ue45ZZbcNppp+Hmm2/GY489hrvvvhvHHnssAMj/B8RhvKNHj8a1116Lq6++GkcffbRpvyZMmIBGjRph6tSp2Lx5M+bNm4dffvlFlq1WsdI3JYcPH8bpp5+OLVu2YMKECejUqROWLFmCcePG4c8//8Qtt9yiar9o0SIcPHgQ1157LRiGwUMPPYQLLrgAP/30k2Fi8oILLkCjRo0wceJEeVik9pq4+OKL0bVrVzzwwAOykLLzPt+yZQsuu+wyXHvttRgzZgxmz56N4cOHY/78+bj77rtxww03AABmzJiBSy65xNVh1ldddRVeeOEFXHbZZRg4cCDef/99DBs2TNXm9NNPR2lpKV588cW4z8cXX3wRXbp0iUvyVldXIxwOY9++fXjuuefw7bffxiWxzCgqKsL555+Pp556Ct9//z2OO+645A/SZXbt2gUAqrSuHp06dcLAgQPxyiuv4JFHHgHHcfJzkgi87LLLHO9fbW0t9u3bF7e8UaNGCAQCeP7557FgwQJ89tln+Pe//w1AHPr7/PPPY/r06Th06JA8RNfovWkXjuMwevRo3Hvvvfjwww8xbNgwvPPOO+B5HmPHjjVcb+zYsVi9ejWWL1+Oq666Shb0L774Ik4++WTXk6wUCoVCoaQFQqFQKDnAwoULCQDy+eefy8vKy8sJAPI///M/qra9evUivXv3ln/fu3cvAUCmTJkSt92zzjqLnHDCCeTIkSPyMkEQyMCBA0nXrl3j9n/KKaeQaDSq2saUKVMIADJixAjV8htuuIEAIF999RUhhJCNGzcSAOSqq65StbvtttsIAPL+++/LywYNGkQGDRok/x6NRkldXZ1qvQMHDpCWLVuSK664wtFjvfXWWwkA8umnn8rL9uzZQ0pKSggAsm3btrht652PzZs3k71795Jt27aRJ554guTl5ZGWLVuSmpoa8vrrrxMA5P7771ete9FFFxGGYciWLVvkZYWFhaS8vDxuP1deeSVp3bo12bdvn2r5pZdeSkpKSkhtbS0hhJDVq1cTAOTYY49VncNHH32UACDffPONvGzYsGGkQ4cOcfvatm0bAUAWLlwoL5O2r+Sll14iAMgHH3wgL5OuHavnbe/evbrPHzhwgAAg559/vrysvLxc1d9bbrmFFBcXx12jSpYsWUIAkNWrV8c916FDBwKALF++XPc55esgHVfv3r1JOByWlz/00EMEAPnPf/4jLzO6JrXbNOub9j1RWVlJAJAXXnhBXhYOh8mAAQNIUVERqa6uJoTUv3ZNmzYl+/fvl9v+5z//IQDI//7v/8btS4m0/qxZs1TLpddr9OjRquV23ufS+f7444/lZStWrCAASEFBAfnll1/k5U888YThuTFi1qxZhtee1H9tv2+44QZVu8suuyzu9Zs0aRLJy8sjf/75p7xsz549JBAI6L7OQ4YMIQAIABIKhci1115LDh8+rGrToUMHMmzYMMNjeeSRR+KuKycxO1d2KCsrI8XFxeTAgQMJ286dO5cAICtWrJCX8TxP2rZtSwYMGJBSP7RI17HRY926dXLb8vJyUlhYGLeNQYMGkeOOOy6p/Sdad9myZQQAefTRRwkh9X+HvvzyS8N1NmzYQACQiooKQoj492zQoEEEAGnZsiUZPXo0mTt3rup9RKFQKBRKpkGH91IolJznuuuuU/1+6qmn4qeffkq43v79+/H+++/jkksuwcGDB7Fv3z7s27cPf/zxB4YMGYIff/wRO3bsUK1z9dVXqxIZSm688UbV7zfddBMAcTJ95f+11Rilievfeustw75yHCfPryQIAvbv349oNIo+ffpgw4YNjh7r22+/jZNOOgn9+vWT12/evLntoWZHH300mjdvjk6dOuHaa6/FUUcdhbfeegsNGjTA22+/DY7jcPPNN8edC0II3nnnHdNtE0KwdOlSDB8+HIQQ+Xj27duHIUOGoKqqKu68jB8/XjVH1amnngoAlq4VPZTJxyNHjmDfvn3y3FxWXhO7SAmzgwcPGrZp1KgRampqTKthJqJTp04YMmSI5fbXXHONKil3/fXXIxAIyNe7W7z99tto1aoVRo8eLS8LBoO4+eabcejQIaxdu1bVftSoUWjcuLH8e6qvv4T288fu+7xbt26qZFz//v0BiMPh27dvH7c81f4aIfVb+57UJmYBMWFVV1eHV199VV62ePFiRKNR3fniZs6ciZUrV+Kpp57CSSedhHA4jGg0aqt/Vq5/r3nggQfw3nvvYebMmZbmvhs1ahSCwaBqiO/atWuxY8cO14b2XnPNNXj33XfjHt26dXNlf1bRvr7S/82GX0vPSVXhGYbBihUrcP/996Nx48Z46aWXcOONN6JDhw4YNWoUndOPQqFQKBkJza1TKJScJj8/X57HTqJx48Zxc4rpsWXLFhBCcO+99+Lee+/VbbNnzx60bdtW/r1Tp06G2+vatavq9y5duoBlWfz8888AgF9++QUsy+Koo45StWvVqhUaNWqEX375xbS/zz77LP75z39i06ZNiEQilvokYedYf/nlF1kwKEk0zFPL0qVLUVxcjGAwiHbt2snDcgHxXLRp0ybuhk4aLpboXOzduxd//vknFixYgAULFhgejxKlQAEgCyAr14oe+/fvx7Rp0/Dyyy/H7Uual8pJpKqsZjfBN9xwA1555RUMHToUbdu2xeDBg3HJJZfEFUwww8r1pER73RcVFaF169byde8Wv/zyC7p27Ro31NXoGnL69ZfQni+773Ntv0pKSgBAVaVZuTzV/hoh9Vv5PgX03/fHHHMM+vbtixdffBFXXnklAHFI5UknnRR33IBYlVdizJgxOPHEEzFu3DiVNEyEleu/qqoKhw8fln8PhUJo0qSJ5X2kwuLFi/GPf/wDV155peViI02bNsWQIUOwbNkyzJ8/H/n5+Vi0aBECgQAuueQS03V5npeLzEg0adIkYcGbrl27mhYY8Qrt6yv930zy6onBvLw83HPPPbjnnnuwc+dOrF27Fo8++iheeeUVBINBvPDCC24dAoVCoVAorkClH4VCyWmMUndWkApT3HbbbYbJJu0NrJ157YzmM0tmrrcXXngB48aNw8iRI3H77bejRYsW4DgOM2bMkOfKMyOZY02V0047LeG8VskiHc+YMWNQXl6u20aay1DC6FohSRYGuOSSS/Dxxx/j9ttvR8+ePVFUVARBEHD22WenXPREj2+//RaA+evUokULbNy4EStWrMA777yDd955BwsXLsTYsWPjClwYkercjXaQCu6kA6dffwmj82X1fW7UL7f66xRjx47FLbfcgt9++w11dXX45JNPMGfOnITrhUIhjBgxAjNnzsThw4ctX29Wrv9bbrlFdZ0PGjTIkWITiXj33XcxduxYDBs2DPPnz7e17pgxY/Dmm2/izTffxIgRI7B06VIMHjw47h+ztPz6669xwnn16tVxxW4yBe3rK8n7r7/+WiWNlXz99dcAYJhSbN26NS699FJceOGFOO644/DKK6/gmWeeoXP9USgUCiWjoH+1KBQKJQFGN9+dO3cGIA4JdCL58OOPP6puwrZs2QJBEORqnx06dIAgCPjxxx9VE6Dv3r0bf/75pzwJuR6vvvoqOnfujNdee011PFOmTFG1c+JYO3TogB9//DFu+ebNm03Xs0OHDh3w3nvv4eDBg6qUxqZNm+TnJfSOSaouyvO8o6kVq6LmwIEDWLVqFaZNm4bJkyfLy/XOm1M8//zzAJBw6G0oFMLw4cMxfPhwCIKAG264AU888QTuvfdeHHXUUY4XGPnxxx9xxhlnyL8fOnQIO3fuxDnnnCMva9y4cdzQunA4jJ07d6qW2elbhw4d8PXXX0MQBFXaT+8aSiepvM+9ROr31q1bVek+o/f9pZdeioqKCrz00ks4fPgwgsEgRo0aZWlfhw8fBiEEBw8etCT9Dh06hGXLlqG0tNS0eMQdd9yhGl6sHM7tFp9++inOP/989OnTB6+88optoTRixAg0bNgQixYtQjAYxIEDBywN7W3VqlXcMP4ePXrY2rdf4HkeixYtQoMGDeQK2EOHDgXHcXj++ecNi3k899xzCAQCCZPMwWAQ3bt3x48//oh9+/ahVatWjh8DhUKhUChuQef0o1AolAQ0aNAAAOKkQ4sWLXD66afjiSeeiJMPAOKGTiVi7ty5qt8ff/xxAOLNCwBZglRWVqraPfzwwwAQVyVTiZT6UaZ8Pv30U6xbt07VzoljPeecc/DJJ5/gs88+Uz3/4osvGvbPLueccw54no9LBj3yyCNgGEY+ZwBQWFgYdzwcx+HCCy/E0qVL5YSIEruvnXJfVobm6r0eQPxr6xSLFi3Cv//9bwwYMABnnXWWYbs//vhD9TvLsnLisa6uDoB4jED8NZIsCxYsUA03nzdvHqLRqOo17NKlCz744IO49bRJPzt9O+ecc7Br1y4sXrxYXhaNRvH444+jqKgIgwYNSuZwUiaV97mXSK/XY489plpudE03a9YMQ4cOxQsvvIAXX3wRZ599dlyyVzvsHRBf26VLl6K0tBQtWrRI2K/Dhw/jb3/7G/bv34977rnHVAx369YNZWVl8qN3794Jt2+VrVu3xqWqf/jhBwwbNgwdO3bEm2++mVRKtqCgAOeffz7efvttzJs3D4WFhTjvvPMSrpefn6861rKysrRITiWRSASbNm3S/ZtiFZ7ncfPNN+OHH37AzTffjOLiYgDi8Pbx48fjvffew7x58+LWmz9/Pt5//31ceeWVaNeuHQDxHyC2b98e1/bPP//EunXr0Lhx44QJSgqFQqFQ/AZN+lEoFEoCCgoK0K1bNyxevBh/+ctf0KRJExx//PE4/vjjMXfuXJxyyik44YQTcPXVV6Nz587YvXs31q1bh99++w1fffWV5f1s27YNI0aMwNlnn41169bhhRdewGWXXSanL3r06IHy8nIsWLAAf/75JwYNGoTPPvsMzz77LEaOHKlKS2k599xz8dprr+H888/HsGHDsG3bNsyfPx/dunWT50Jy6ljvuOMOPP/88zj77LNxyy23oLCwEAsWLJCTVU4wfPhwnHHGGbjnnnvw888/o0ePHli5ciX+85//4NZbb1XNK9a7d2+89957ePjhh9GmTRt06tQJ/fv3x8yZM7F69Wr0798fV199Nbp164b9+/djw4YNeO+997B//37b/erduzcWL16MiooK9O3bF0VFRRg+fHhcu+LiYpx22ml46KGHEIlE0LZtW6xcuRLbtm1L6bwAYqqzqKgI4XAYO3bswIoVK/DRRx+hR48eWLJkiem6V111Ffbv348zzzwT7dq1wy+//ILHH38cPXv2lBNSPXv2BMdxePDBB1FVVYW8vDyceeaZlgSMHuFwGGeddRYuueQSbN68Gf/6179wyimnYMSIEap+XXfddbjwwgvx17/+FV999RVWrFgRJ4ns9O2aa67BE088gXHjxmH9+vXo2LEjXn31VXz00UeorKw0nfvNTVJ5n3tJz549MXr0aPzrX/9CVVUVBg4ciFWrVmHLli2G64wdOxYXXXQRAOC+++6Le37o0KFo164d+vfvjxYtWmD79u1YuHAhfv/9d5WsldixY4c859qhQ4fw/fffY8mSJdi1axf+/ve/49prr3XoaEWqqqrkf5z56KOPAABz5sxBo0aN0KhRI0yYMEFuK8l2aa7KgwcPYsiQIThw4ABuv/32uAItXbp0URVoMWPMmDF47rnnsGLFClx++eWy/HaDDRs26M5rZ6e/Ejt27MCxxx6L8vJyPPPMMwnbV1VVyfuura3Fli1b8Nprr2Hr1q249NJL466hRx55BJs2bcINN9yA5cuXy4m+FStW4D//+Q8GDRqEf/7zn3L7r776CpdddhmGDh2KU089FU2aNMGOHTvw7LPP4vfff0dlZWVKU4JQKBQKheIJHlUNplAolLSycOFCAoB8/vnn8rLy8nJSWFgY13bKlClE+/H48ccfk969e5NQKEQAkClTpsjPbd26lYwdO5a0atWKBINB0rZtW3LuueeSV1991XT/2v19//335KKLLiINGzYkjRs3JhMmTCCHDx9WtY1EImTatGmkU6dOJBgMktLSUjJp0iRy5MgRVbtBgwaRQYMGyb8LgkAeeOAB0qFDB5KXl0d69epF3nzzTVJeXk46dOjg6LESQsjXX39NBg0aRPLz80nbtm3JfffdR5566ikCgGzbti3uHOidj71795q2O3jwIJk4cSJp06YNCQaDpGvXrmTWrFlEEARVu02bNpHTTjuNFBQUEACkvLxcfm737t3kxhtvJKWlpSQYDJJWrVqRs846iyxYsEBus3r1agKALFmyRLXdbdu2EQBk4cKF8rJDhw6Ryy67jDRq1IgAkM+tXtvffvuNnH/++aRRo0akpKSEXHzxxeT333+PO+fStWP1vEmP/Px80q5dO3LuueeSp59+Ou4aIYTEvf6vvvoqGTx4MGnRogUJhUKkffv25NprryU7d+5Urffkk0+Szp07E47jCACyevVqQgghHTp0IMOGDdPtX4cOHVTnXjqutWvXkmuu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sBBHHXUUjjrqKJx00kno2rUrnnrqKdVQ4kzE03+jnzFjBvr27YuGDRuiRYsWGDlyJDZv3uxllygUig7ZlAgEMiMVmKsJQK+SfzT1528iLn9b4Wli0TbpEmPBaPqEXzorD3uREFOm+bwWfn5M9NEEH4VCobhEkDV/ACguLlY9jKRfKBRC7969sWrVKnmZIAhYtWoVBgwYYNiFhx56CPfddx+WL1+OPn36WOq2IAioq6uzcaD+xNOk39q1a3HjjTeib9++iEajuPvuuzF48GB8//33KCws9LJrWU26JYKXVUsp7pFN8wQC/k4F+iUBCKQvBZiu4hdKvEr9ZUuRD1rgwxwvrmmnock+B/aVxveI12JPid+u/Wz5rKJCjwK4814X/PampWQ0hGNADAp2GC03o6KiAuXl5ejTpw/69euHyspK1NTUYPz48QCAsWPHom3btvIQ4QcffBCTJ0/GokWL0LFjR+zatQsAUFRUhKKiItTU1GD69OkYMWIEWrdujX379mHu3LnYsWMHLr74Ynm/27dvx/79+7F9+3bwPI+NGzcCAI466igUFRXZPo504an0W758uer3Z555Bi1atMD69etx2mmnedSr7MCLdJARTvWFysPMIJuGBwP+qyDspQAE0isBvRzyS4f75h48600RjEyAyr4U95Om64pKPn2yQfBRuedP/PSecxqzY6NCkGIbC4U87DBq1Cjs3bsXkydPxq5du9CzZ08sX75cLu6xfft2sGz9MI558+YhHA7joosuUm1nypQpmDp1KjiOw6ZNm/Dss89i3759aNq0Kfr27Yv/+7//w3HHHSe3nzx5Mp599ln59169egEAVq9ejdNPP932caQLhhD/mJQtW7aga9eu+Oabb3D88cfHPV9XV6eKV1ZXV6O0tBQL/+iLBsW5Nz2hn8QexRuyQYRmshBU4nUi0C/XgttJwHR/z0z365q2Cq8u7sfNG+ygyzfvmVzF142+U9mX4n5cvp78Ihz8dv+faZIvW4SeX65Hin/IZTl48FAUx/T+AlVVVap56nKN6upqlJSUYP9LvVHcgNNvU8ujyej1OX+u3MQ3pkwQBNx66604+eSTdYUfIM4BOG3atDT3zBuo0KNYIdnrxC+CCDAeJgxklhBUJgK9EIDaa8Gr19jtgiDpTv+le8hvNg33zUQyNe2XycIvnfP1pQs3pZMfxIqf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aeq+5Th//jw2btyIxx57DOPGjbNkDGqZP38+zp49K/z92Wef4Z133sFzzz2HBg0aCO3du3fH8OHDMWnSJFPH87///Q8ulwv33nsvUlNTcerUKbz11lvo0aMHPv30U/Tt21fUPyMjA//85z8BAGfOnMGuXbuwcuVKvPzyy3jooYfw7LPPGjq+jRs3YsGCBWjTpg0uv/xy1QII8H7Wjhw5El27dsW9996L5ORkbNy4EdOmTUNBQQG+/vpr2c+5f/zjH7jsssvwzjvv4Mknn5Tswwue4cOHaz4uOf744w9kZ2fj0KFDGDRoEO655x7ExMTgl19+wSuvvIJVq1bhf//7n2H704rezyY9HDlyBDNmzEB6ejoyMjJUr/fEE0+gRYsWqKioQGFhIdavX48JEybg2WefxSeffIL27duL+i9cuBAPPvggWrZsifHjx6NRo0bYtWsX/vOf/2DFihX47LPP0L17d6H/ypUrMXjwYGRkZODBBx9EvXr1sH//fmzYsAEvv/wy7rjjDqNOAUEQBEEAIOlHEAQhS2lpKWrXrm31MGzLbbfdJoiGe++9F7feeis+/PBDbNq0Cd26dbN4dNrgIztCge95A4CpU6fi7bffRm5uLgYNGoRNmzYJr5ktITmOw4ULFxAfH4/Y2FhT91UTMTExluz3+PHjAIC6devW2NfqzwR/MV5YWIh33nkHAwcOlJQoUVHm/sy7++67cffdd4va7r//frRs2RLz588PkH5NmjQJkFxPP/007rjjDjz33HNo3bo17rvvPsPGN2DAAJw+fRp16tTBvHnzNEm/mJgYfPfddyJhM3r0aKSnpwviLzs7W3b9YcOGYcqUKdi0aRO6du0a8Po777yDyy67DP/4xz80HZMclZWVuOWWW1BUVIT169fjqquuEr0+a9YsPP3004bsK5y5/vrrRZG+kydPxtdff40bb7wRAwYMwK5duxAfHw/AG+E3YcIEXHXVVVizZg1q1aolrHfffffhyiuvxG233YbffvsN9erVA+CN+G7Tpg02bdoU8Jl37NixEBwhQRAEEWlQei9BELZlxIgRSEhIwOHDhzFw4EAkJCSgYcOGePjhh+HxeAB452Jr2LAhAGDGjBlCao7v/FS7d+/Gbbfdhvr16yMuLg6dOnXCJ598ItoXn9rzzTff4P7770dycjKaNm0KoDotc/fu3bj99tuRmJiIiy66CA8++GBAmldlZSVmzpyJVq1aCWk+jz76aI2pm+Xl5Zg6dSoyMzORlJSE2rVr4+qrr8a6deuEPkYdKwD89ttvuOaaaxAfH4+mTZviySef1BxR5s8111wDANi/fz8AryD55z//ibS0NMTGxuLSSy/FvHnzwHGcsA7DMCgtLcXrr78uHI/vvHKHDx/GXXfdJaRNXXHFFXj11VdF+12/fj0YhsF7772HWbNmoWnTpoiLi8O1116LvXv3Cv169eqFTz/9FAcPHhT2xYsSqTn9fvnlF4wYMQItW7YUUhfvuusu/P3330GdJymGDRuGu+++G5s3b8batWuFdqk5/d59911kZmaiTp06SExMRLt27fD8888D8F7HgwYNAgD07t1bOE4+HTw9PR033ngjvvjiC3Tq1Anx8fF48cUXhdd8zz3PuXPnMGbMGFx00UVITExEbm4uTp06JeojNyec7zZrGpvUnH7Hjh3DqFGjkJKSgri4OHTo0AGvv/66qA//3s2bNw8vvfSScO917twZP/74o+T55pk+fTqaN28OAHjkkUdE1wR/3+/cuRN33HEH6tWrJ4gUtfc5f77Xr18vnO927doJx/zhhx+iXbt2iIuLQ2ZmJn766SfF8WpBak6/srIyPPTQQ2jYsCHq1KmDAQMG4K+//hL1WbduHRiGwapVqwK2uXz5cjAMg40bN8rut1atWmjYsCFOnz6tapzx8fF48803Ub9+fcyaNUv0+RAs9evXR506dXStGxMTIxJ+PDfffDMAYNeuXYrrDxs2DAAkUza3bt2KPXv2CH2M4IMPPsDPP/+Mxx57LED4AUBiYiJmzZolalu5ciUyMzMRHx+PBg0aYPjw4Th8+LCoj5rvYZ5gPps+/vhj3HDDDWjcuDFiY2PRqlUrzJw5M2AfvXr1Qtu2bbFz50707t0btWrVQpMmTfDMM88IfdavX4/OnTsDAEaOHBl02vs111yDKVOm4ODBg3jrrbeE9pkzZ4JhGLz++usi4QcArVq1wjPPPIOjR48Kn7EAsG/fPnTu3FnyHzmSk5N1jY8gCIIglCDpRxCErfF4PMjJycFFF12EefPmoWfPnvj3v/+Nl156CQDQsGFDLFmyBID3YezNN9/Em2++iVtuuQWAV2517doVu3btwqRJk/Dvf/8btWvXxsCBAyUfau+//37s3LkTU6dODUiNu/3223HhwgXMnj0b/fr1w4IFC3DPPfeI+tx9992YOnUq/vGPf+C5555Dz549MXv2bAwZMkTxOEtKSvCf//wHvXr1wtNPP43p06fj+PHjyMnJEaJTjDrWwsJC9O7dG9u3b8ekSZMwYcIEvPHGG8LDmV727dsHALjooovAcRwGDBiA5557Dn379sWzzz6LSy+9FI888ohoDqs333wTsbGxuPrqq4XjGTNmDACgqKgIXbt2xVdffYVx48bh+eefx8UXX4xRo0ZJzss3Z84crFq1Cg8//DAmT56MTZs2iR6qH3vsMWRkZKBBgwbCvpTm91u7di3++OMPjBw5EgsXLsSQIUPw7rvvol+/foaKCZ4777wTgHKa69q1azF06FDUq1cPTz/9NObMmYNevXoJc6j16NEDDzzwAADg0UcfFY7z8ssvF7axZ88eDB06FNdddx2ef/75GlPfxo0bh127dmH69OnIzc3F22+/jYEDB2o+B2rG5sv58+fRq1cvvPnmmxg2bBjmzp2LpKQkjBgxQvJaXb58OebOnYsxY8bgySefxIEDB3DLLbegoqJCdky33HILnnvuOQDA0KFDJa+JQYMG4dy5c3jqqacwevRoANru87179+KOO+5A//79MXv2bJw6dQr9+/fH22+/jYceegjDhw/HjBkzsG/fPtx+++1By3cl7r77bsyfPx99+vTBnDlzEB0djRtuuEHUp1evXkhLS8Pbb78dsP7bb7+NVq1aBUTylpSU4MSJE9i9ezceffRR7NixA9dee63qcSUkJODmm2/G4cOHsXPnTn0HFyIKCwsBQBStK0WLFi3QvXt3vPfeewHiiheBRqZy8v+4w3+O1MRrr72G22+/HW63G7Nnz8bo0aPx4Ycf4qqrrgoQtjV9DwPBfza99tprSEhIQH5+Pp5//nlkZmZKfg8DwKlTp9C3b1906NAB//73v3HZZZdh4sSJ+PzzzwEAl19+OZ544gkAwD333CPsq0ePHhrOqBj/z+dz586hoKAAV199NVq0aCG5zuDBgxEbG4vVq1cLbc2bN0dBQUGAbCcIgiAI0+AIgiBswLJlyzgA3I8//ii05eXlcQC4J554QtS3Y8eOXGZmpvD38ePHOQDctGnTArZ77bXXcu3ateMuXLggtLEsy3Xv3p1r3bp1wP6vuuoqrrKyUrSNadOmcQC4AQMGiNrvv/9+DgD3888/cxzHcdu3b+cAcHfffbeo38MPP8wB4L7++muhrWfPnlzPnj2FvysrK7mysjLReqdOneJSUlK4u+66y9BjnTBhAgeA27x5s9B27NgxLikpiQPA7d+/P2DbUudjz5493PHjx7n9+/dzL774IhcbG8ulpKRwpaWl3EcffcQB4J588knRurfddhvHMAy3d+9eoa127dpcXl5ewH5GjRrFNWrUiDtx4oSofciQIVxSUhJ37tw5juM4bt26dRwA7vLLLxedw+eff54DwP36669C2w033MA1b948YF/79+/nAHDLli0T2vjt+/LOO+9wALgNGzYIbfy1o/a8HT9+XPL1U6dOcQC4m2++WWjLy8sTjffBBx/kEhMTA65RX1auXMkB4NatWxfwWvPmzTkA3Jo1ayRf830f+OPKzMzkysvLhfZnnnmGA8B9/PHHQpvcNem/TaWx+d8T8+fP5wBwb731ltBWXl7OdevWjUtISOBKSko4jqt+7y666CLu5MmTQt+PP/6YA8D93//9X8C+fOHXnzt3rqidf7+GDh0qatdyn/Pn+/vvvxfavvjiCw4AFx8fzx08eFBof/HFF2XPjRxz586Vvfb48fuP+/777xf1u+OOOwLev8mTJ3OxsbHc6dOnhbZjx45xUVFRku9zTk4OB4ADwMXExHBjxozhzp8/L+rTvHlz7oYbbpA9lueeey7gujISpXOlhezsbC4xMZE7depUjX0XL17MAeC++OILoc3j8XBNmjThunXrFtQ4/OnYsSOXlJSkqm95eTmXnJzMtW3bVvQ+rV69mgPATZ06VWhT+z0c7GeT1OftmDFjuFq1aom+03r27MkB4N544w2hraysjEtNTeVuvfVWoe3HH38M+ExXQuo3iD9JSUlcx44dOY6rvp8efPBBxe22b9+eq1+/vvD3K6+8ItwnvXv35qZMmcL997//5Twej6pxEgRBEIRWKNKPIAjbc++994r+vvrqq/HHH3/UuN7Jkyfx9ddf4/bbb8eZM2dw4sQJnDhxAn///TdycnLw+++/B6QyjR49Gm63W3J7Y8eOFf09fvx4AN7J9H3/61+NkZ+4/tNPP5Udq9vtFtJ9WJbFyZMnUVlZiU6dOmHbtm2GHutnn32Grl27okuXLsL6DRs21Jxqdumll6Jhw4Zo0aIFxowZg4svvhiffvopatWqhc8++wxu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H34oKrbBV4LXg9Gfg/6fz7Vr10bv3r3x9ddf4+DBg5Ln7L333kNZWRluvPHGGrfPi0H/z0yCIAiCCBZK7yUIwvHUqlULAAKkQ3JyMnr16oUXX3xR8of08ePHNe1n8eLFor8XLlwIALj++usBQJAg/tU/n332WQAIqJLpCx+54BupsHnzZmzcuFHUz4hj7devHzZt2oQffvhB9LpUtU699OvXDx6PJyAy6LnnngPDMMI5A7wPT/7H43a7ceutt+KDDz4QIoB80fre+e5LTWqu1PsBBL63RrF8+XL85z//Qbdu3RSrnv7999+iv10ulxDxWFZWBsB7jEDgNaKXl156SVQBd8mSJaisrBS9h61atcKGDRsC1vOP9NMytn79+qGwsBArVqwQ2iorK7Fw4UIkJCSgZ8+eeg4naIK5z62Ef78WLFggape7phs0aIDrr78eb731Ft5++2307ds3ILJXKhXx9OnT+OCDD5CWlobk5OQax3X+/HnceeedOHnyJB577DFFWdOmTRtkZ2cLCz+dgBHs27cvIKp6165duOGGG5Ceno7Vq1fripKNj4/HzTffjM8++wxLlixB7dq1cdNNN9W4XlxcnOhYs7OzFSXnbbfdhnbt2mHWrFkB3xuAN830scceA+AVTMnJyVi6dKnwuQEAn3/+uXDMWgnms0nq87a8vBwvvPCC5nHwGPk5+PXXX2PmzJlo0aKFSNg+/vjj4DgOI0aMwPnz50Xr7N+/H//617/QqFEjoSI9ABQUFEjug59zU+s0GwRBEARRExTpRxCE44mPj0ebNm2wYsUKXHLJJahfvz7atm2Ltm3bYvHixbjqqqvQrl07jB49Gi1btkRRURE2btyIv/76Cz///LPq/ezfvx8DBgxA3759sXHjRrz11lu44447hOiLDh06IC8vDy+99JKQrvTDDz/g9ddfx8CBA0XRUv7ceOON+PDDD3HzzTfjhhtuwP79+7F06VK0adNGmOvKqGP917/+hTfffBN9+/bFgw8+iNq1a+Oll14SIquMoH///ujduzcee+wxHDhwAB06dMCXX36Jjz/+GBMmTBDNK5aZmYmvvvoKzz77LBo3bowWLVogKysLc+bMwbp165CVlYXRo0ejTZs2OHnyJLZt24avvvpK13xemZmZWLFiBfLz89G5c2ckJCSgf//+Af0SExPRo0cPPPPMM6ioqECTJk3w5ZdfBhV5wvP+++8jISEB5eXlOHz4ML744gt899136NChA1auXKm47t13342TJ0/immuuQdOmTXHw4EEsXLgQGRkZQoRURkYG3G43nn76aRQXFyM2NhbXXHONKgEjRXl5Oa699lrcfvvt2LNnD1544QVcddVVGDBggGhc9957L2699VZcd911+Pnnn/HFF18ESCItY7vnnnvw4osvYsSIEdi6dSvS09Px/vvv47vvvsP8+fNVFy0wmmDucyvJyMjA0KFD8cILL6C4uBjdu3dHQUEB9u7dK7tObm4ubrvtNgDAzJkzA17n52/LyspCcnIyDh06hGXLluHIkSMiWctz+PBhvPXWWwC80X07d+7EypUrUVhYiH/+858iOWIExcXFwj/OfPfddwCARYsWoW7duqhbty7GjRsn9OVlOz9X5ZkzZ5CTk4NTp07hkUceCShu0apVK1GBFiWGDx+ON954A1988QWGDRsmCCkjiY6Oxocffojs7Gz06NEDt99+O6688kpER0fjt99+w/Lly1GvXj3MmjUL0dHRePrppzFy5Ej07NkTQ4cORVFREZ5//nmkp6fjoYce0rz/YD6bunfvjnr16iEvLw8PPPAAGIbBm2++GVS6bqtWrVC3bl0sXboUderUQe3atZGVlVXjnKaff/45du/ejcrKShQVFeHrr7/G2rVr0bx5c3zyySeiwic9evTAvHnzkJ+fj/bt22PEiBFo1KgRdu/ejZdffhksy+Kzzz4TydqbbroJLVq0QP/+/dGqVSuUlpbiq6++wv/93/+hc+fOkt9HBEEQBBEUFlQMJgiCCGDZsmUcAO7HH38U2vLy8rjatWsH9J02bRrn//H1/fffc5mZmVxMTAwHgJs2bZrw2r59+7jc3FwuNTWVi46O5po0acLdeOON3Pvvv6+4f//97dy5k7vtttu4OnXqcPXq1ePGjRvHnT9/XtS3oqKCmzFjBteiRQsuOjqaS0tL4yZPnsxduHBB1K9nz55cz549hb9ZluWeeuoprnnz5lxsbCzXsWNHbvXq1VxeXh7XvHlzQ4+V4zjul19+4Xr27MnFxcVxTZo04WbOnMm98sorHABu//79AedA6nwcP35csd+ZM2e4hx56iGvcuDEXHR3NtW7dmps7dy7Hsqyo3+7du7kePXpw8fHxHAAuLy9PeK2oqIgbO3Ysl5aW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WZnh8tK/1dXVOOCAA1TL9OzZU14muVFIPB7H9u3bVdvR2o9yH17gv9Y9BEEQBEEQBEEQBEEQBKEgFouhd+/eWLp0qTxNEAQsXboU/fv311ynf//+quUB4J133pGX79KlC8rKylTL1NTU4LPPPpOX6d+/P3bu3IlVq1bJy7z33nsQBAH9+vWTl/nggw/Q0NCg2s+hhx7qWWovQNKPIAiCIAiCIAiCIAiCCACVlZV44okn8Mwzz+C7777DFVdcgdraWowbNw4AUFFRoWr0ce2112LJkiX429/+hrVr12LatGlYuXIlJk6cCABgGAbXXXcd7rrrLvz73//Gf//7X1RUVKB9+/YYPnw4AOAPf/gDTjnlFEyYMAGff/45Pv74Y0ycOBHnn3++nMZ9wQUXIBaLYfz48fjmm2+waNEiPPTQQylNRLJNoNN7CffJy8vD1KlTKaeeILII3XcEkX3oviOI7EP3HUFkH7rviKAzcuRIbN26FVOmTEFVVRV69uyJJUuWyE0zNm7cCJZtim8bMGAAFixYgNtuuw233HILunXrhsWLF+OII46Ql/nLX/6C2tpaXHrppdi5cyeOO+44LFmyRJWaPH/+fEycOBEnn3wyWJbFn//8Zzz88MPy/JKSErz99tu46qqr0Lt3b7Rp0wZTpkzBpZdemoWzog8jUh9pgiAIgiAIgiAIgiAIgggVlN5LEARBEARBEARBEARBECGDpB9BEARBEARBEARBEARBhAySfgRBEARBEARBEARBEAQRMkj6EQRBEARBEARBEARBEETIIOlHmOKnn37C+PHj0aVLFxQUFOCggw7C1KlTUV9f7/XQCCLU3H333RgwYACaNWuGFi1aeD0cgggls2fPRufOnZGfn49+/frh888/93pIBBFqPvjgAwwbNgzt27cHwzBYvHix10MiiFAzffp09O3bF82bN0e7du0wfPhwrFu3zuthEQSRBUj6EaZYu3YtBEHA448/jm+++QYPPvgg5syZg1tuucXroRFEqKmvr8eIESNwxRVXeD0UggglixYtQmVlJaZOnYrVq1ejR48eGDp0KLZs2eL10AgitNTW1qJHjx6YPXu210MhiJzg/fffx1VXXYVPP/0U77zzDhoaGjBkyBDU1tZ6PTSCIFyGEUVR9HoQRDCZMWMGHnvsMfz4449eD4UgQs/TTz+N6667Djt37vR6KAQRKvr164e+ffvi0UcfBQAIgoDy8nJcffXVmDRpksejI4jwwzAMXn31VQwfPtzroRBEzrB161a0a9cO77//Pk444QSvh0MQhItQpB9hm127dqFVq1ZeD4MgCIIgbFFfX49Vq1Zh8ODB8jSWZTF48GCsWLHCw5ERBEEQhHvs2rULAOhZjiByAJJ+hC1++OEHPPLII7jsssu8HgpBEARB2GLbtm3geR6lpaWq6aWlpaiqqvJoVARBEAThHoIg4LrrrsOxxx6LI444wuvhEAThMiT9cpxJkyaBYRjD19q1a1XrbNq0CaeccgpGjBiBCRMmeDRygggudu47giAIgiAIgsiUq666Cl9//TUWLlzo9VAIgsgCEa8HQHjLDTfcgLFjxxou07VrV/nn3377DSeeeCIGDBiAuXPnujw6gggnVu87giDcoU2bNuA4DtXV1arp1dXVKCsr82hUBEEQBOEOEydOxGuvvYYPPvgABx54oNfDIQgiC5D0y3Hatm2Ltm3bmlp206ZNOPHEE9G7d2/MmzcPLEuBogRhByv3HUEQ7hGLxdC7d28sXbpUbiIgCAKWLl2KiRMnejs4giAIgnAIURRx9dVX49VXX8Xy5cvRpUsXr4dEEESWIOlHmGLTpk0YNGgQOnXqhJkzZ2Lr1q3yPIqGIAj32LhxI7Zv346NGzeC53msWbMGAHDwwQejqKjI28ERRAiorKzEmDFj0KdPHxx99NGYNWsWamtrMW7cOK+HRhChZc+ePfjhhx/k3zds2IA1a9agVatW6Nixo4cjI4hwctVVV2HBggX417/+hebNm8t1a0tKSlBQUODx6AiCcBNGFEXR60EQ/ufpp5/WfQCiS4gg3GPs2LF45plnUqYvW7YMgwYNyv6ACCKEPProo5gxYwaqqqrQs2dPPPzww+jXr5/XwyKI0LJ8+XKceOKJKdPHjBmDp59+OvsDIoiQwzCM5vR58+alLTlDEESwIelHEARBEARBEARBEARBECGDirIRBEEQBEEQBEEQBEEQRMgg6UcQBEEQBEEQBEEQBEEQIYOkH0EQBEEQBEEQBEEQBEGEDJJ+BEEQBEEQBEEQBEEQBBEySPoRBEEQBEEQBEEQBEEQRMgg6UcQBEEQBEEQBEEQBEEQIYOkH0EQBEEQBEEQBEEQBEGEDJJ+BEEQBEEQBEEQBEEQBBEySPoRBEEQBJETPPnkkxgyZIjr+1myZAl69uwJQRBc3xdBEARBEARB6EHSjyAIgiCI0LN//37cfvvtmDp1quv7OuWUUxCNRjF//nzX90UQBEEQBEEQepD0IwiCIAgi9Lz00ksoLi7Gsccem5X9jR07Fg8//HBW9kUQBEEQBEEQWpD0IwiCIAgiMGzduhVlZWW455575GmffPIJYrEYli5dqrvewoULMWzYMNW0QYMG4brrrlNNGz58OMaOHSv/3rlzZ9x1112oqKhAUVEROnXqhH//+9/YunUrzjrrLBQVFeGoo47CypUrVdsZNmwYVq5cifXr19s/WIIgCIIgCILIAJJ+BEEQBEEEhrZt2+Kpp57CtGnTsHLlSuzevRsXXXQRJk6ciJNPPll3vY8++gh9+vSxtc8HH3wQxx57LL744gucfvrpuOiii1BRUYELL7wQq1evxkEHHYSKigqIoiiv07FjR5SWluLDDz+0tU+CIAiCIAiCyBSSfgRBEARBBIrTTjsNEyZMwOjRo3H55ZejsLAQ06dP111+586d2LVrF9q3b297f5dddhm6deuGKVOmoKamBn379sWIESNwyCGH4Oabb8Z3332H6upq1Xrt27fHzz//bGufBEEQBEEQBJEpJP0IgiAIgggcM2fORDwex4svvoj58+cjLy9Pd9l9+/YBAPLz823t66ijjpJ/Li0tBQAceeSRKdO2bNmiWq+goAB79+61tU+CIAiCIAiCyBSSfgRBEARBBI7169fjt99+gyAI+OmnnwyXbd26NRiGwY4dO1TTWZZVpeQCQENDQ8r60WhU/plhGN1pgiCo1tu+fTvatm2b/mAIgiAIgiAIwgVI+hEEQRAEESjq6+tx4YUXYuTIkbjzzjtxySWXpETZKYnFYujevTu+/fZb1fS2bdti8+bN8u88z+Prr792ZIz79+/H+vXr0atXL0e2RxAEQRAEQRBWIelHEARBEESguPXWW7Fr1y48/PDDuPnmm3HIIYfg4osvNlxn6NCh+Oijj1TTTjrpJLz++ut4/fXXsXbtWlxxxRXYuXOnI2P89NNPkZeXh/79+zuyPYIgCIIgCIKwCkk/giAIgiACw/LlyzFr1iw8++yzKC4uBsuyePbZZ/Hhhx/iscce011v/PjxeOONN7Br1y552sUXX4wxY8agoqICAwcORNeuXXHiiSc6Ms7nn38eo0ePRrNm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r+Pnn3+W9yWJEq36TV999RXGjh2Lrl27yqmLF198MX7//feMzpMWo0ePxiWXXILPPvsM77zzjjxdq6bfwoUL0bt3bzRv3hzFxcU48sgj8dBDDwFIXMcjRowAAJx44onycUrp4J07d8YZZ5yBt956C3369EFBQQEef/xxeZ7y3Evs3bsXl112GVq3bo3i4mJUVFRgx44dqmX0asIpt5lubFo1/bZs2YLx48ejtLQU+fn56NGjB5555hnVMsq0xrlz58r3Xt++ffGf//xH83xLTJs2DZ06dQIA3HTTTaprQrrvv/32W1xwwQVo2bIljjvuOADm73PpfC9fvlw+30ceeaR8zK+88gqOPPJI5Ofno3fv3vjiiy8Mx2sFrZp+dXV1uP7669G2bVs0b94cZ555Jn799VfVMsuWLQPDMHj11VdTtrlgwQIwDIMVK1bo7rdZs2Zo27at6TTQgoICPPvss2jVqhXuvvtu1edDprRq1QrNmze3tW4sFlMJP4mzzz4bAPDdd98Zrj969GgATRF9SlatWoV169bJy7hFQ0MD7rjjDnTr1g35+flo3bo1jjvuONVnDAC89957OP7441FYWIgWLVrgrLPOUh3ftGnTcNNNNwEAunTpIt+7yanSixcvxhFHHCF/Vi9ZsiRlTFY+0xcuXIjbbrsNHTp0QLNmzVBTUyN/L9i4cSPOOOMMFBUVoUOHDpg9ezYA4L///S9OOukkFBYWolOnTinnf/v27bjxxhtx5JFHoqioCMXFxTj11FPx5Zdf2j7PBEEQBJENKNKPIIhQwvM8hg4din79+mHmzJl499138be//Q0HHXQQrrjiCrRt2xaPPfYYrrjiCpx99tk455xzAABHHXUUgITcOvbYY9GhQwdMmjQJhYWFeOGFFzB8+HC8/PLL8gOcxJVXXom2bdtiypQpqK2tVc0777zz0LlzZ0yfPh2ffvopHn74YezYsQP//Oc/5WUuueQSPPPMMzj33HNxww034LPPPsP06dPx3XffaT5ES9TU1OAf//gHRo0ahQkTJmD37t148sknMXToUHz++efo2bOnY8daVVWFE088EfF4XF5u7ty5KCgoyOi9Wr9+PQCgdevWEEURZ555JpYtW4bx48ejZ8+eeOutt3DTTTdh06ZNePDBBwEAzz77LC655BIcffTRuPTSSwEABx10EACguroaxxxzjFwkvm3btnjzzTcxfvx41NTUpKTo3nvvvWBZFjfeeCN27dqF+++/H6NHj5brhd16663YtWsXfv31V3n/RUVFusfzzjvv4Mcff8S4ceNQVlaGb775BnPnzsU333yDTz/91FIKsxkuuugizJ07F2+//Tb+9Kc/6Y5p1KhROPnkk3HfffcBSMiHjz/+GNdeey1OOOEEXHPNNXj44Ydxyy234A9/+AMAyP8CiTTeUaNG4bLLLsOECRNw6KGHGo5r4sSJaNGiBaZNm4Z169bhsccew88//yw/mJvFzNiU7Nu3D4MGDcIPP/yAiRMnokuXLnjxxRcxduxY7Ny5E9dee61q+QULFmD37t247LLLwDAM7r//fpxzzjn48ccfdSMmzznnHLRo0QLXX389Ro0ahdNOOy3lmhgxYgS6deuGe+65RxZSVu7zH374ARdccAEuu+wyXHjhhZg5cyaGDRuGOXPm4JZbbsGVV14JAJg+fTrOO+88V9OsL7nkEjz33HO44IILMGDAALz33ns4/fTTVcsMGjQI5eXlmD9/fsrn4/z583HQQQelRPLW1NSgvr4e27Ztwz//+U98/fXXuOWWW0yPq6ioCGeffTaefPJJfPvttzj88MPtH6TLVFVVAYAqWleLLl26YMCAAXjhhRfw4IMPguM4eZ4koi644AL3BoqErJs+fbr8GVtTU4OVK1di9erV8mfMu+++i1NPPRVdu3bFtGnTsG/fPjzyyCM49thjsXr1anTu3BnnnHMO/ve//6Wkkkv/CQUAH330EV555RVceeWVaN68OR5++GH8+c9/xsaNG9G6dWsA1j/T77zzTsRiMdx4442oq6uTo4F5nsepp56KE044Affffz/mz5+PiRMnorCwELfeeitGjx6Nc845B3PmzEFFRQX69++PLl26AAB+/PFHLF68GCNGjECXLl1QXV2Nxx9/HAMHDsS3336L9u3bu/qeEARBEIRtRIIgiAAzb948EYD4n//8R542ZswYEYD417/+VbVsr169xN69e8u/b926VQQgTp06NWW7J598snjkkUeK+/fvl6cJgiAOGDBA7NatW8r+jzvuODEej6u2MXXqVBGAeOaZZ6qmX3nllSIA8csvvxRFURTXrFkjAhAvueQS1XI33nijCEB877335GkDBw4UBw4cKP8ej8fFuro61Xo7duwQS0tLxYsvvtjRY73uuutEAOJnn30mT9uyZYtYUlIiAhA3bNiQsm2t87Fu3Tpx69at4oYNG8THH39czMvLE0tLS8Xa2lpx8eLFIgDxrrvuUq177rnnigzDiD/88IM8rbCwUBwzZkzKfsaPHy8ecMAB4rZt21TTzz//fLGkpETcu3evKIqiuGzZMhGA+Ic//EF1Dh966CERgPjf//5Xnnb66aeLnTp1StnXhg0bRADivHnz5GnS9pU8//zzIgDxgw8+kKdJ147Z87Z161bN+Tt27BABiGeffbY8bcyYMarxXnvttWJxcXHKNarkxRdfFAGIy5YtS5nXqVMnEYC4ZMkSzXnK90E6rt69e4v19fXy9Pvvv18EIP7rX/+Sp+ldk8nbNBpb8j0xa9YsEYD43HPPydPq6+vF/v37i0VFRWJNTY0oik3vXevWrcXt27fLy/7rX/8SAYj/93//l7IvJdL6M2bMUE2X3q9Ro0applu5z6Xz/cknn8jT3nrrLRGAWFBQIP7888/y9Mcff1z33OgxY8YM3WtPGn/yuK+88krVchdccEHK+zd58mQxLy9P3Llzpzxty5YtYiQS0Xyfhw4dKgIQAYixWEy87LLLxH379qmW6dSpk3j66afrHsuDDz6Ycl05idG5ssLgwYPF4uJicceOHWmXnT17tghAfOutt+RpPM+LHTp0EPv375/ROJLRuo579OhheM5FURR79uwptmvXTvz999/laV9++aXIsqxYUVEhTzM6f9L7rvxc//LLL0UA4iOPPCJPs/qZ3rVr15TPYel7wT333CNP27Fjh1hQUCAyDCMuXLhQnr527dqUa3v//v0iz/OqbW7YsEHMy8tTfdfQ+ptAEARBEF5C6b0EQYSWyy+/XPX78ccfjx9//DHtetu3b8d7772H8847D7t378a2bduwbds2/P777xg6dCi+//57bNq0SbXOhAkTVBEZSq666irV71dffTWARDF95b/J3RilwvWvv/667lg5jpOjGARBwPbt2xGPx9GnTx+sXr3a0WN94403cMwxx+Doo4+W12/btq3lVLNDDz0Ubdu2RZcuXXDZZZfh4IMPxuuvv45mzZrhjTfeAMdxuOaaa1LOhSiKePPNNw23LYoiXn75ZQwbNgyiKMrHs23bNgwdOhS7du1KOS/jxo1T1YU7/vjjAcDUtaKFMvJx//792LZtm1yby8x7YhUp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xQrVck4c62mnnYZPP/0Un3/+uWr+/PnzdcdnldNOOw08z6dEBj344INgGEY+ZwBQWFiYcjwcx+HPf/4zXn75ZTkCSInV9065LzOpuVrvB5D63jrFggUL8I9//AP9+/fHySefrLvc77//rvqdZVk5Oqaurg4A5If05HNql7lz56rSzR977DHE43HVe3jQQQfhgw8+SFkvOdLPythOO+00VFVVYdGiRfK0eDyORx55BEVFRRg4cKCdw8mYTO5zL5Her4cfflg1Xe+abtOmDU499VQ899xzmD9/Pk455ZQUKZKcjgkk3tuXX34Z5eXlaNeuXdpx7du3DxdddBG2b9+OW2+91VAude/eHYMHD5ZfvXv3Trt9s6xfvz4lqvq7777D6aefjs6dO+O1116zFSVbUFCAs88+G2+88QYee+wxFBYW4qyzzkq7Xn5+vupYBw8ebFlyJn9eFBUV4eCDD5Y/Kw444AD07NkTzzzzjOqe/Prrr/H222+rxH6mnytufabbGUfy5/qLL76YUt+XIAiCIPwGRfoRBJGzFBQUoHv37li0aBEOOeQQtGrVCkcccQSOOOIIzJ49G8cddxyOPPJITJgwAV27dkV1dTVWrFiBX3/9FV9++aXp/WzYsAFnnnkmTjnlFKxYsQLPPfccLrjgAjn6okePHhgzZgzmzp2LnTt3YuDAgfj888/xzDPPYPjw4apoqWTOOOMMvPLKKzj77LNx+umnY8OGDZgzZw66d+8u17py6lj/8pe/4Nlnn8Upp5yCa6+9FoWFhZg7d64cWeUEw4YNw4knnohbb70VP/30E3r06IG3334b//rXv3Ddddep6or17t0b7777Lh544AG0b98eXbp0Qb9+/XDvvfdi2bJl6NevHyZMmIDu3btj+/btWL16Nd59911s377d8rh69+6NRYsWobKyEn379kVRURGGDRuWslxxcTFOOOEE3H///WhoaECHDh3w9ttvY8OGDRmdFyARaVJUVIT6+nps2rQJb731Fj7++GP06NEDL774ouG6l1xyCbZv346TTjoJBx54IH7++Wc88sgj6Nmzpxwh1bNnT3Ach/vuuw+7du1CXl4eTjrpJFMCRov6+nqcfPLJOO+887Bu3Tr8/e9/x3HHHYczzzxTNa7LL78cf/7zn/GnP/0JX375Jd56660USWRlbJdeeikef/xxjB07FqtWrULnzp3x0ksv4eOPP8asWbMMa7+5SSb3uZf07NkTo0aNwt///nfs2rULAwYMwNKlS/HDDz/orlNRUYFzzz0XAHDnnXemzD/11FNx4IEHol+/fmjXrh02btyIefPm4bffflPJWolNmzbhueeeA5CI7vv222/x4osvoqqqCjfccAMuu+wyh442wa5du+T/nPn4448BAI8++ihatGiBFi1aYOLEifKykmyXalXu3r0bQ4cOxY4dO3DTTTelNGg56KCDVA1ajLjwwgvxz3/+E2+99RZGjx5tqkaeE3Tv3h2DBg1C79690apVK6xcuRIvvfSS6rhnzJiBU089Ff3798f48eOxb98+PPLIIygpKcG0adPk5STBeuutt+L8889HNBrFsGHDLB2LG5/pVjnjjDPw17/+FePGjcOAAQPw3//+F/Pnz5ej5QmCIAjCt2S/YTBBEIRzzJs3TwQg/uc//5GnjRkzRiwsLExZdurUqWLyx94nn3wi9u7dW4zFYiIAcerUqfK89evXixUVFWJZWZkYjUbFDh06iGeccYb40ksvGe4/eX/ffvuteO6554rNmzcXW7ZsKU6cOFHct2+fatmGhgbxjjvuELt06SJGo1GxvLxcnDx5srh//37VcgMHDhQHDhwo/y4IgnjPPfeInTp1EvPy8sRevXqJr732mjhmzBixU6dOjh6rKIriV199JQ4cOFDMz88XO3ToIN55553ik08+KQIQN2zYkHIOtM7H1q1bDZfbvXu3eP3114vt27cXo9Go2K1bN3HGjBmiIAiq5dauXSuecMIJYkFBgQhAHDNmjDyvurpavOqqq8Ty8nIxGo2KZWVl4sknnyzOnTtXXmbZsmUiAPHFF19UbXfDhg0iAHHevHnytD179ogXXHCB2KJFCxGAfG61lv3111/Fs88+W2zRooVYUlIijhgxQvztt99Szrl07Zg9b9IrPz9fPPDAA8UzzjhDfOqpp1KuEVEUU97/l156SRwyZIjYrl07MRaLiR07dhQvu+wycfPmzar1nnjiCbFr164ix3EiAHHZsmWiKIpip06dxNNPP11zfJ06dVKde+m43n//ffHSSy8VW7ZsKRYVFYmjR48Wf//9d9W6PM+LN998s9imTRuxWbNm4tChQ8UffvghZZtGY0u+J0Qx8f6PGzdObNOmjRiLxcQjjzxS9R6JYtN7N2PGjJRj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K6/gueeewwknnIBTTz01w5kRRDm54YYbsHPnTvz0pz/F1KlTrXVr+/v7MWnSpIxnRxBEkki6rutZT4LIP/feey/3BoheQgSRHNdccw1+8IMfdGz/53/+Z1x88cXpT4ggSsi2bduwZcsWDA8PY/78+bjzzjuxePHirKdFEKXlsccewyWXXNKxfc2aNbj33nvTnxBBlBxJkpjb77nnHt8lZwiCKDYk/QiCIAiCIAiCIAiCIAiiZNCibARBEARBEARBEARBEARRMkj6EQRBEARBEARBEARBEETJIOlHEARBEARBEARBEARBECWDpB9BEARBEARBEARBEARBlAySfgRBEARBEARBEARBEARRMkj6EQRBEARBEARBEARBEETJIOlHEARBEARBEARBEARBECWDpB9BEARBEARBEARBEARBlAySfgRBEARBEARBEARBEARRMkj6EQRBEATRFXzve9/DpZdemvh5du/ejfnz50PTtMTPRRAEQRAEQRA8SPoRBEEQBFF6xsfHcfvtt2Pjxo2Jn+sjH/kIqtUqfvSjHyV+LoIgCIIgCILgQdKPIAiCIIjS83/+z//BtGnTcMEFF6RyvmuuuQZ33nlnKuciCIIgCIIgCBYk/QiCIAiCKAwHDx7ErFmz8PWvf93a9tRTT6FWq2FoaIh73H333YePfexjjm0XX3wx1q1b59i2YsUKXHPNNdb3p512Gr761a9i9erVmDJlCt797nfjZz/7GQ4ePIiPf/zjmDJlCj7wgQ9g7969jnE+9rGPYe/evfjtb38b/mIJgiAIgiAIIgIk/QiCIAiCKAzTp0/H97//fWzatAl79+7F4cOH8alPfQpr167Fhz/8Ye5xTz75JBYsWBDqnHfccQcuuOACPPvss7j88svxqU99CqtXr8bVV1+NZ555Bu95z3uwevVq6LpuHXPqqadi5syZ+MUvfhHqnARBEARBEAQRFZJ+BEEQBEEUissuuwyf+cxn8MlPfhKf//zn0dfXh82bN3P3f+eddzAyMoLZs2eHPt/nPvc5zJ07Fxs2bMDo6CgWLlyIlStX4r3vfS9uvvlm/OY3v8GBAwccx82ePRv/8R//EeqcBEEQBEEQBBEVkn4EQRAEQRSOb37zm2g2m3jggQfwox/9CD09Pdx9jx07BgDo7e0Nda4PfOAD1t9nzpwJADjnnHM6tr399tuO4yZNmoSjR4+GOidBEARBEARBRIWkH0EQBEEQheO3v/0t3nzzTWiahldffdVz33e9612QJAl/+MMfHNtlWXaU5AJAo9HoOL5arVp/lySJu03TNMdxv//97zF9+nT/iyEIgiAIgiCIBCDpRxAEQRBEoajX67j66quxatUq/PVf/zU+/elPd6Ts7NRqNZx99tl48cUXHdunT5+Ot956y/peVVW88MILscxxfHwcv/3tb/HBD34wlvEIgiAIgiAIIigk/QiCIAiCKBT//b//d4yMjODOO+/EzTffjPe+97247rrrPI9Zvnw5nnzySce2P/7jP8bDDz+Mhx9+GPv378cXvvAFvPPOO7HM8Ze//CV6enqwZMmSWMYjCIIgCIIgiKCQ9CMIgiAIojA89thj2Lp1K374wx9i2rRpkGUZP/zhD/GLX/wC3/nOd7jHXX/99XjkkUcwMjJibbvuuuuwZs0arF69GhdddBFOP/10XHLJJbHM8x/+4R/wyU9+EpMnT45lPIIgCIIgCIIIiqS7F7MhCIIgCIIoIStXrsQf/dEfYf369Yme59ChQzjzzDOxd+9ezJkzJ9FzEQRBEARBEAQPSvoRBEEQBNEVbNmyBVOmTEn8PK+++iq+/e1vk/AjCIIgCIIgMoWSfgRBEARBEARBEARBEARRMijpRxAEQRAEQRAEQRAEQRAlg6QfQRAEQRAEQRAEQRAEQZQMkn4EQRAEQRAEQRAEQRAEUTJI+hEEQRAEQRAEQRAEQRBEySDpRxAEQRAEQRAEQRAEQRAlg6QfQRAEQRAEQRAEQRAEQZQMkn4EQRAEQRAEQRAEQRAEUTJI+hEEQRAEQRAEQRAEQRBEySDpRxAEQRAEQRAEQRAEQRAl4/8H0yyKLPE1jLsAAAAASUVORK5CYII=", "text/plain": [ "
" ] @@ -60011,7 +35152,7 @@ "outputs": [ { "data": { - "image/png": "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/DIeeOABrF+/3mv/CxcuIDc3F/fccw/69euH9957Dw899BBMJhMeeOCBkMq0fv16vPfeexg9ejSqVKniFhrmzp2LO+64AwMGDEBhYSFWrVqFu+++G5999hluu+02ANKiEsOHD0e7du0wcuRIACg18A0UX+U4deoU2rdv7xYPU1JS8OWXX2LYsGG4fPlyUGm8JYmLi8Odd96JN954A7t370bTpk19fm/UqFFYvXo1Ro8ejSZNmuDcuXP4/vvv8eeff+K6667D888/j0uXLnmlm8fFxXn9xtSpU2EymfDUU0/BZrOVmUocSBsHSiBl8+Trr79Gjx49ULduXUyaNAn5+fmYN28ebrjhBvzyyy+lxN577rkHderUwbRp0/DLL79gyZIlqFq1KmbMmOH3GHPmzMFbb72FNWvWYMGCBYiLi3P7NCCl5vbr1w8PPvggRowYgYYNG+LUqVPo0KEDrl27hsceewyVK1fGsmXLcMcdd2D16tWlrmvTpk2D1WrFs88+i3379mHevHkwGo3geR4XLlzApEmT8OOPP+LNN99EnTp1MGHChKDqNVACvfbcf//9eOutt7Bu3TrcfvvtXvuvX7++1PxyjDGcO3cOdrsdf//9N5599lkIghDU1At9+/bFsGHD8L///Q8vvvhihex04Xowc//99wf0fbnPtz/++AO33347WrRogSlTpsBsNmPfvn3u+fwaN26MKVOmYMKECRg5ciQ6duwIAO5IPbnIzs5GZmYmvvrqK/d7n376KSwWC+655x6f+9SpUwc33ngj1q9fj/z8fFitVqSnp+Prr7/G+vXrZU//JgiCIIiwwAiCIIgyWbp0KQPAtm3b5n5v8ODBDACbMmWK13dbt27N2rRp4/7/zJkzDACbOHFiqd/t3Lkza968OSsoKHC/J4oi69ChA6tfv36p4994443Mbrd7/cbEiRMZAHbHHXd4vf/www8zAGznzp2MMcZ27NjBALDhw4d7fe+pp55iANj69evd73Xq1Il16tTJ/b/dbmc2m81rvwsXLrDU1FT2wAMPyGrr2LFjGQC2detW93unT59mCQkJDAA7ePBgqd/2x2233cbS09Pd/7/99tuM53m2adMmr+8tXLiQAWA//PCD+z0AzGw2ex1v0aJFDACrVq0au3z5svv98ePHlypbp06dGAD2yiuvuN+z2WysVatWrGrVqqyw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+ny9evWQlZUFAMjKyvJKDLr/7v5bRbKyslC3bl2v90wmE1JSUir9TjhhcrAakiQjKTkZEiRA4jgBwZSXl4fGjRvj8OHDSEhICHVxiCIS44xIf4wzIv0xzoj0xRjTmRAQEJCk6O2NKEkSklNSzqn1ZFx8Ao4fP+71XmWtBtu0aYNt27YhNzcXS5cuRWZmJr799tuA5x3pmByshqsve/QGsJ4kSUJ+fj4kSYracReI9MY4I9If44xIf4wzIn0xxqgmuFoPBt7oKiYmBjExMT591mKxoFWrVgCAbt26YdOmTXj55Zdx4403wm63Iycnx6v14LFjx1C/fn0AQP369fHTTz95/d6xY8c8f6tI/fr1yyUunU4nTp8+Xel3wgmjnoiIiIiIiIiIIpamabDZbOjWrRvMZjNWrVrl+dvu3btx6NAhpKenAwDS09Oxfft2r2TfypUrUbt2bbRv377C309PT0dOTg62bNnieW/16tXQNA09evTQqVbBw5aDREREREREREQUEaZMmYLBgwejadOmyMvLw8KFC7F27VqsWLECiYmJGDt2LB588EGkpKSgdu3auO+++5Ceno6ePXsCAK644gq0b98et956K5599llkZWXh3//+N+69915PN+affvoJo0ePxqpVq9CoUSO0a9cOgwYNwrhx4/DGG2/A4XBgwoQJGDlyZNg/qRhgcpBCyGq1Ytq0aVU+WYiIzg3jjEh/jDMi/THOiPTFGKNIcvz4cYwePRpHjx5FYmIiOnXqhBUrVmDgwIEAgBdffBGyLGP48OGw2WzIyMjA66+ffQitoij4/PPPcffddyM9PR1xcXHIzMzE448/7vlMYWEhdu/eDYfD4Xnvgw8+wIQJE9C/f3/P77/yyis1V/FzIAk+S5uIiIiIiIiIiCgqccxBIiIiIiIiIiKiKMXkIBERERERERERUZRicpCIiIiIiIiIiChKMTlIREREREREREQUpZgcpJA7cOAAxo4di7S0NMTGxqJly5aYNm0a7HZ7qItGFFGefPJJXHLJJahVqxaSkpJCXRyiiPDaa6+hefPmiImJQY8ePfDTTz+FukhEEeW7777D1VdfjYYNG0KSJHzyySehLhJRRJk1axYuuugiJCQkoG7duhg2bBh2794d6mIRUQ1jcpBCbteuXdA0DW+++SZ+//13vPjii3jjjTfwr3/9K9RFI4oodrsd119/Pe6+++5QF4UoInz00Ud48MEHMW3aNGzduhWdO3dGRkYGjh8/HuqiEUWMgoICdO7cGa+99lqoi0IUkb799lvce++92LBhA1auXAmHw4ErrrgCBQUFoS4aEdUgSQghQl0IorJmz56NOXPmYN++faEuClHEmTdvHiZOnIicnJxQF4XI0Hr06IGLLroI//nPfwAAmqahSZMmuO+++/DII4+EuHREkUeSJCxbtgzDhg0LdVGIItaJEydQt25dfPvtt7j88stDXRwiqiFsOUhhKTc3FykpKaEuBhERUYXsdju2bNmCAQMGeN6TZRkDBgzA+vXrQ1gyIiKiwOXm5gIAr8WIogyTgxR29uzZg1dffRV33nlnqItCRERUoZMnT0JVVdSrV8/r/Xr16iErKytEpSIiIgqcpmmYOHEievXqhY4dO4a6OERUg5gcJN088sgjkCSpyn+7du3y+s6RI0cwaNAgXH/99Rg3blyISk5kHIHEGRERERFRWffeey9+++03LFq0KNRFIaIaZgp1AShyPfTQQxgzZkyVn2nRooVn+u+//0bfvn1xySWX4K233tK5dESRwd84I6LgOO+886AoCo4dO+b1/rFjx1C/fv0QlYqIiCgwEyZMwOeff47vvvsOjRs3DnVxiKiGMTlIuklNTUVqaqpPnz1y5Aj69u2Lbt26Ye7cuZBlNmol8oU/cUZEwWOxWNCtWzesWrXK83AETdOwatUqTJgwIbSFIyIi8pEQAvfddx+WLVuGtWvXIi0tLdRFIqIQYHKQQu7IkSPo06cPmjVrhueeew4nTpzw/I2tL4iC59ChQzh9+jQOHToEVVWxbds2AECrVq0QHx8f2sIRGdCDDz6IzMxMdO/eHRdffDFeeuklFBQU4Lbbbgt10YgiRn5+Pvbs2eN5vX//fmzbtg0pKSlo2rRpCEtGFBnuvfdeLFy4EP/3f/+HhIQEz7i5iYmJiI2NDXHpiKimSEIIEepCUHSbN29epRdS3DyJgmfMmDGYP39+uffXrFmDPn361HyBiCLAf/7zH8yePRtZWVno0qULXnnlFfTo0SPUxSKKGGvXrkXfvn3LvZ+ZmYl58+bVfIGIIowkSRW+P3fu3GqHriGiyMHkIBERERERERERUZTiwG5ERERERERERERRislBIiIiIiIiIiKiKMXkIBERERERERERUZRicpCIiIiIiIiIiChKMTlIREREREREREQUpZgcJCIiIiIiIiIiilJMDhIREREREREREUUpJgeJiIiIiIiIiIiiFJODRERERNV49913ccUVV+g+n6+++gpdunSBpmm6z4uIiIiICGBykIiIiKhKxcXFeOyxxzBt2jTd5zVo0CCYzWZ88MEHus+LiIiIiAhgcpCIiIioSkuXLkXt2rXRq1evGpnfmDFj8Morr9TIvIiIiIiImBwkIiKiqHDixAnUr18fTz31lOe9H3/8ERaLBatWrar0e4sWLcLVV1/t9V6fPn0wceJEr/eGDRuGMWPGeF43b94cTzzxBEaPHo34+Hg0a9YMn376KU6cOIGhQ4ciPj4enTp1wubNm71+5+qrr8bmzZuxd+/ewCtLREREROQjJgeJiIgoKqSmpuK///0vpk+fjs2bNyMvLw+33norJkyYgP79+1f6vXXr1qF79+4BzfPFF19Er1698PPPP2PIkCG49dZbMXr0aNxyyy3YunUrWrZsidGjR0MI4flO06ZNUa9ePXz//fcBzZOIiIiIyB9MDhIREVHUuPLKKzFu3DiMGjUKd911F+Li4jBr1qxKP5+Tk4Pc3Fw0bNgw4PndeeedaN26NaZOnYozZ87goosuwvXXX4/zzz8f//znP7Fz504cO3bM63sNGzbEwYMHA5onEREREZE/mBwkIiKiqPLcc8/B6XRiyZIl+OCDD2C1Wiv9bFFREQAgJiYmoHl16tTJM12vXj0AwAUXXFDuvePHj3t9LzY2FoWFhQHNk4iIiIjIH0wOEhERUVTZu3cv/v77b2iahgMHDlT52Tp16kCSJGRnZ3u9L8uyV1dgAHA4HOW+bzabPdOSJFX6nqZpXt87ffo0UlNTq68MEREREdE5YnKQiIiIoobdbsctt9yCG2+8ETNnzsQdd9xRrtVeaRaLBe3bt8eOHTu83k9NTcXRo0c9r1VVxW+//RaUMhYXF2Pv3r3o2rVrUH6PiIiIiKgqTA4SERFR1Hj00UeRm5uLV155Bf/85z9x/vnn4/bbb6/yOxkZGVi3bp3Xe/369cPy5cuxfPly7Nq1C3fffTdycnKCUsYNGzbAarUiPT09KL9HRERERFQVJgeJiIgoKqxduxYvvfQS3n//fdSuXRuyLOP999/H999/jzlz5lT6vbFjx+KLL75Abm6u573bb78dmZmZGD16NHr37o0WLVqgb9++QSnnhx9+iFGjRqFWrVpB+T0iIiIioqpIouyAOURERETk5frrr8eFF16IKVOm6DqfkydPok2bNti8eTPS0tJ0nRcREREREcCWg0RERETVmj17NuLj43Wfz4EDB/D6668zMUhERERENYYtB4mIiIiIiIiIiKIUWw4SERERERERERFFKSYHiYiIiIiIiIiIohSTg0RERERERERERFGKyUEiIiIiIiIiIqIoxeQgERERERERERFRlGJykIiIiIiIiIiIKEoxOUhERERERERERBSlmBwkIiIiIiIiIiKKUkwOEhERERERERERRSkmB4mIiIiIiIiIiKIUk4NERERERERERERRislBIiIiIiIiIiKiKMXkIBERERERERERUZRicpCIiIiIiIiIiChKMTlIRERB0adPH/Tp0yfUxfAyb948SJKEAwcOhLooFEYkScL06dN1n8/atWshSRLWrl3rea9Pnz7o2LGj7vMGgAMHDkCSJMybN69G5lfW+++/j7Zt28JsNiMpKSkkZQi25s2bY8yYMdV+jvsel8q2gdmzZ6NFixZQFAVdunQJWfmIiIjIhclBIiKduC8ON2/e7Pd3CwsLMX36dK+kQqQKZV3dyRNf/kXzRf5TTz2FTz75JNTFqFDz5s0960iWZSQlJeGCCy7A+PHjsXHjxqDNZ+HChXjppZeC9nvBFI5l27VrF8aMGYOWLVvi7bffxltvvRXqIlXIncD15V9Neeqpp9CzZ0+kpqYiJiYGrVu3xsSJE3HixIkqy261WlGvXj306dMHTz31VLnPB0tVy+iuu+7yfK6ybeDrr7/Gww8/jF69emHu3Ll46qmnfJ73mDFjvOYXHx+PFi1aYMSIEfj444+haVqF3xNC4P3338fll1+OpKQk1KpVCxdccAEef/xxFBQUlPu8pml477330KNHD6SkpCAhIQHnn38+Ro8ejQ0bNvi5xIiIiMKfKdQFICKi8goLCzFjxgwACLvWeMEWyrqmpqbi/fff93rv+eefx+HDh/Hiiy+W+2y0euqppzBixAgMGzYs1EWpUJcuXfDQQw8BAPLy8rBz504sWbIEb7/9NiZNmoQXXnjB6/NFRUUwmfw7BVq4cCF+++03TJw40efvXH755SgqKoLFYvFrXv6qrGzNmjVDUVERzGazrvOvyNq1a6FpGl5++WW0atWqxufvq3bt2pXbB0yZMgXx8fF49NFHy31+9+7dkGV9761v2bIFXbp0wciRI5GQkICdO3fi7bffxvLly7Ft2zbExcV5ff7+++/HRRddBFVVceLECfz444+YNm0aXnjhBSxevBj9+vULehkHDhyI0aNHl3v//PPP90xXtg2sXr0asizj3XffDSg2rFYr3nnnHQCuWD548CA+++wzjBgxAn369MH//d//oXbt2p7Pq6qKm2++GYsXL8Zll12G6dOno1atWvj+++8xY8YMLFmyBN988w3q1avn+c7999+P1157DUOHDsWoUaNgMpmwe/dufPnll2jRogV69uzpd7mJiIjCGZODRERRpKCgoNyFZTSLi4vDLbfc4vXeokWLkJ2dXe79SKFpGux2O2JiYiKmHI0aNSq3vp555hncfPPNePHFF9G6dWvcfffdnr/pXffi4mJYLBbIshzS5SxJUsjmf/z4cQCotjuxEALFxcWIjY2tgVKVV69evXLbztNPP43zzjuvwn2A1WrVvUwff/xxuffS09MxYsQIfPbZZxg5cqTX3y677DKMGDHC671ffvkFV1xxBYYPH44dO3agQYMGQS3j+eefX+0+srJt4Pjx44iNjQ04aW4ymcrN+4knnsDTTz+NKVOmYNy4cfjoo488f3v22WexePFiTJ48GbNnz/a8P378eNxwww0YNmwYxowZgy+//BIAcOzYMbz++usYN25cuRavL730km4tMomIiEKJ3YqJiGrQmDFjEB8fjyNHjmDYsGGIj49HamoqJk+eDFVVAbi6urpbqc2YMcPTfar0GGm7du3CiBEjkJKSgpiYGHTv3h2ffvqp17zc3Zq//fZb3HPPPahbty4aN24MAJg+fTokScKuXbtwww03oHbt2qhTpw4eeOABFBcXe/2O0+nEzJkz0bJlS1itVjRv3hz/+te/YLPZqqyr3W7H1KlT0a1bNyQmJiIuLg6XXXYZ1qxZ4/lMsOoKAL///jv69euH2NhYNG7cGE888USlXcz8ZbPZMG3aNLRq1QpWqxVNmjTBww8/XG4ZSJKECRMmYMmSJWjfvj1iY2ORnp6O7du3AwDefPNNtGrVCjExMejTp0+5rsru8ei2bNmCSy65BLGxsUhLS8Mbb7xxzmX64IMP0KFDB1itVnz11VcAgOeeew6XXHIJ6tSpg9jYWHTr1g1Lly4t9/2CggLMnz/fs37cY66NGTMGzZs3L1c29/blazmOHDmC22+/HfXq1YPVakWHDh3w3//+t+qVUo3Y2Fi8//77SElJwZNPPgkhhFdZSm9jeXl5mDhxIpo3bw6r1Yq6deti4MCB2Lp1KwDXelm+fDkOHjzoWQbueru7di5atAj//ve/0ahRI9SqVQtnzpypcMxBt+rWcWVj1pX9zarKVtmYg6tXr8Zll12GuLg4JCUlYejQodi5c6fXZ9zrcM+ePRgzZgySkpKQmJiI2267DYWFhVUu++bNm2PatGkAXC1uSy/v5s2b46qrrsKKFSvQvXt3xMbG4s033wQA7Nu3D9dffz1SUlJQq1Yt9OzZE8uXL6+w/osXL8aMGTPQqFEjJCQkYMSIEcjNzYXNZsPEiRNRt25dxMfH47bbbqt2X+WPisYc9GXfk5mZifPOOw8Oh6Pcb15xxRVo06ZNtfMFgJycHJ/K2blzZ7z00kvIycnBf/7zH5++E0yVbQOSJGHu3LkoKCjwbK/BGhPzkUcewRVXXIElS5bgjz/+AOBqWTh79mycf/75mDVrVrnvXH311cjMzMRXX33l6S68f/9+CCHQq1evcp+XJAl169YNSnmJiIjCCVsOEhHVMFVVkZGRgR49euC5557DN998g+effx4tW7bE3XffjdTUVMyZMwd33303rr32Wlx33XUAgE6dOgFwXYj26tULjRo1wiOPPIK4uDgsXrwYw4YNw8cff4xrr73Wa3733HMPUlNTMXXq1HJjK91www1o3rw5Zs2ahQ0bNuCVV15BdnY23nvvPc9n7rjjDsyfPx8jRozAQw89hI0bN2LWrFnYuXMnli1bVmk9z5w5g3feeQc33XQTxo0bh7y8PLz77rvIyMjATz/9hC5dugStrllZWejbty+cTqfnc2+99VZQWiNpmoZrrrkG69atw/jx49GuXTts374dL774Iv74449yY/F9//33+PTTT3HvvfcCAGbNmoWrrroKDz/8MF5//XXcc889yM7OxrPPPovbb78dq1ev9vp+dnY2rrzyStxwww246aabsHjxYtx9992wWCy4/fbbAyrT6tWrsXjxYkyYMAHnnXeeJ9Hw8ssv45prrsGoUaNgt9uxaNEiXH/99fj8888xZMgQAK4HCtxxxx24+OKLMX78eABAy5YtA1qWFZXj2LFj6Nmzpyd5mJqaii+/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otQtNTUVCQkJUFVVl1ZI+fn5WLZsGZo0aeK1/VakQYMGuOeee3DPPffg+PHjuPDCC/Hkk096koPBXPe+rGN3C72yy7eiZetr2dzxWlFc7Nq1C+edd165Fo01pVmzZpWWy/33cOTvvmf06NF48MEHcfToUSxcuBBDhgzxrOvqFBcXIzc31+eyLV26FEVFRZXeXHFbuXKl1+vKHtxjBO+//z4kScLAgQMBAJdeeimSkpKwcOFCPProoxUmj90P4PIl6dq9e3d8++23OHr0aNhuk0RERIHgmINERGHI/XTEsomBunXrok+fPnjzzTdx9OjRct87ceKEX/N57bXXvF6/+uqrAOBJiFx55ZUAXE8fLc3dYs39RNuKuC/CSrfY2bhxI9avX+/1uWDU9corr8SGDRvw008/ef39gw8+qLR8vrrhhhtw5MgRvP322+X+VlRUVO4J0OfK6XTizTff9Ly22+148803kZqaim7dugWtTIqiQJIkr5ZoBw4cKPekYwCIi4urMAnYsmVL5ObmelreAK5x7ap6inXZMgwfPhwff/yxp8VPaf5uz6UVFRXh1ltvxenTp/Hoo49W2RKvbMKlbt26aNiwoVdX67i4OL8SM1XxZR27nwj93XffeZW1ou7XvpatQYMG6NKlC+bPn++1Pn/77Td8/fXXnngPhSuvvBI//fST1/6hoKAAb731Fpo3b15pq65Q83ffc9NNN0GSJDzwwAPYt28fbrnlFq+/FxQUoLCwsNz3Pv74Y2RnZ6N79+4+leuXX37BxIkTkZycXG5s2bIGDBjg9a9sS8KasGvXLhw6dOicfuPpp5/G119/jRtvvNEzZEatWrUwefJk7N69G48++mi57yxfvhzz5s1DRkaGpzt/VlZWuTEuAVecrlq1qsKhNoiIiIyOLQeJiMJQbGws2rdvj48++gjnn38+UlJS0LFjR3Ts2BGvvfYaLr30UlxwwQUYN24cWrRogWPHjmH9+vU4fPgwfvnlF5/ns3//flxzzTUYNGgQ1q9fjwULFuDmm29G586dAQCdO3dGZmYm3nrrLeTk5KB379746aefMH/+fAwbNqzKweevuuoq/O9//8O1116LIUOGYP/+/XjjjTfQvn17r4H1g1HXhx9+GO+//z4GDRqEBx54AHFxcXjrrbfQrFkzr8RVIG699VYsXrwYd911F9asWYNevXpBVVXs2rULixcvxooVK3y+YPdFw4YN8cwzz+DAgQM4//zz8dFHH2Hbtm146623PA9gCEaZhgwZghdeeAGDBg3CzTffjOPHj+O1115Dq1atyi2zbt264ZtvvsELL7yAhg0bIi0tDT169MDIkSPxz3/+E9deey3uv/9+FBYWYs6cOTj//PN9fpDI008/jTVr1qBHjx4YN24c2rdvj9OnT2Pr1q345ptvcPr06Wp/48iRI1iwYAEAV2vBHTt2YMmSJcjKysJDDz3k9fCPsvLy8tC4cWOMGDECnTt3Rnx8PL755hts2rQJzz//vNcy+Oijj/Dggw/ioosuQnx8PK6++mqf6liWL+u4Q4cO6NmzJ6ZMmYLTp08jJSUFixYtqvDBGv6Ubfbs2Rg8eDDS09MxduxYFBUV4dVXX0ViYiKmT58eUH2C4ZFHHsGHH36IwYMH4/7770dKSgrmz5+P/fv34+OPP4Ysh+f9bH/3PampqRg0aBCWLFmCpKSkcjdY/vzzTwwYMAA33ngj2rZtC1mWsXnzZixYsADNmzfHAw88UO43v//+exQXF0NVVc/4eJ9++ikSExOxbNky1K9fP+j1/uOPPzwxV1q9evU8rfb80a5dO/Tu3Rtr166t9rNOp9Mz7+LiYhw8eBCffvopfv31V/Tt27dcAv2RRx7Bzz//jGeeeQbr16/H8OHDERsbi3Xr1mHBggVo164d5s+f7/n84cOHcfHFF6Nfv37o378/6tevj+PHj+PDDz/0JF3PO+88v+tIREQU1kL2nGQiogg3d+5cAUBs2rTJ815mZqaIi4sr99lp06aJsrvkH3/8UXTr1k1YLBYBQEybNs3zt71794rRo0eL+vXrC7PZLBo1aiSuuuoqsXTp0irnX3Z+O3bsECNGjBAJCQkiOTlZTJgwQRQVFXl91uFwiBkzZoi0tDRhNptFkyZNxJQpU0RxcbHX53r37i169+7tea1pmnjqqadEs2bNhNVqFV27dhWff/65yMzMFM2aNQtqXYUQ4tdffxW9e/cWMTExolGjRmLmzJni3XffFQDE/v37yy2DygwZMqRc+ex2u3jmmWdEhw4dhNVqFcnJyaJbt25ixowZIjc31/M5AOLee+/1+u7+/fsFADF79myv99esWSMAiCVLlngtww4dOojNmzeL9PR0ERMTI5o1ayb+85//lCvnuZTJ7d133xWtW7cWVqtVtG3bVsydO7fCbXHXrl3i8ssvF7GxsQKAyMzM9Pzt66+/Fh07dhQWi0W0adNGLFiwoMLfqKocx44dE/fee69o0qSJMJvNon79+qJ///7irbfeqvDzpTVr1kwAEACEJEmidu3aokOHDmLcuHFi48aNFX6n9DZms9nEP/7xD9G5c2eRkJAg4uLiROfOncXrr7/u9Z38/Hxx8803i6SkJAHAs41UtB7d3H9bs2aN5z1/1vHevXvFgAEDhNVqFfXq1RP/+te/xMqVK8v9ZmVlc297c+fO9frdb775RvTq1UvExsaK2rVri6uvvlrs2LHD6zPudXjixAmv9937lepiqrLvN2vWTAwZMqTC7+zdu1eMGDFCJCUliZiYGHHxxReLzz//3OszlS3vyvZ3lZWjKh06dPDal5Utf+ntXwj/9z2LFy8WAMT48ePL/e3EiRNi/Pjxom3btiIuLk5YLBbRunVrMXHixHJ1cC8L9z+z2SxSU1PF5ZdfLp588klx/Phxn+vsj9LzLPuv9HKrbNlXdBws+93KZGZmes2vVq1aonnz5mL48OFi6dKlQlXVCr+nqqqYO3eu6NWrl6hdu7aIiYkRHTp0EDNmzBD5+flenz1z5ox4+eWXRUZGhmjcuLEwm80iISFBpKeni7fffltomubbgiIiIjIQSYgwGKGZiIhq1PTp0zFjxgycOHGCLSDCSJ8+fXDy5MkKu9gSUWT4v//7PwwbNgzfffcdLrvsslAXh4iIiIhjDhIRERER1ZS3334bLVq0wKWXXhrqohAREREB4JiDRERERES6W7RoEX799VcsX74cL7/8co08/ZyIiIjIF0wOEhERERHp7KabbkJ8fDzGjh2Le+65J9TFISIiIvIwVLfi7777DldffTUaNmwISZLwySefVPudtWvX4sILL4TVakWrVq0wb9483ctJRBTupk+fDiEExxsMM2vXruV4g0QRSgiBvLw8vPPOOzCZeH+eiIiIwoehkoMFBQXo3LkzXnvtNZ8+v3//fgwZMgR9+/bFtm3bMHHiRNxxxx1YsWKFziUlIiIiIiIiIiIKf4Z9WrEkSVi2bBmGDRtW6Wf++c9/Yvny5V6tMEaOHImcnBx89dVXNVBKIiIiIiIiIiKi8GWoloP+Wr9+PQYMGOD1XkZGBtavXx+iEhEREREREREREYWPiB7wJCsrC/Xq1fN6r169ejhz5gyKiooQGxtb7js2mw02m83zWtM0WK1WWC0WgE+VIyIiIiIiIiJ/CAEBAUmSIcsR3UarSkIInEvnVUmSIDEvo4uITg4GYtasWZgxY4bndf369fHb9l9RWBDCQhERERERERGRoSUlJyPCO3BWSgiBQzt+R3yZBlz+kCQZySkpTBDqIKKTg/Xr18exY8e83jt27Bhq165dYatBAJgyZQoefPBBz2tN06A6Hdh+zUUQZ7IhFDMAQFIdECYLoGmQNKdnWnM6IcxWQFMhqSXTqhOSpkKYYwDVDknTICwxgLNk2hoL2G2QhHu6GBACsMYCtiJXi0VLDCRbEYQkAxara1qWAZMFkr3YNa1YIDmKIWQFUEyQHDYIxQTIimvaZAIgQ3Lay0yX1MlZUidokJxO7+kwqJMmV1InSYbksJeZLlUnswUQ7nqUnj73Ommq5ludzBZItuIy0wpgMkGyl9RJUVzTftZJNZWqk8UKqCV1slgBZ0mdrDGAw12PUtMxsYCtpE4xsYCtZD3FxALFJXWyxkAqLqmT1eqarqBOjsJioKROsNuAkjrBbnO9J8mAw15m2lUnOB1ASZ3gdHpPl9QJasm00wloKlBSD2gaYI2Bai+ZLqkThHu64jq5pl11QnERUFIP2Iq9pxVXPFVYJ1kG7GfrpNmqqJPFtY+osE6q0/W6TJ080z7WSS2qoE4WC1AceJ2qXE9+1ElTNSAmxvXb57qedK6T6tRc5TeX1ElzT5dse5aSdSNK1pPdPV1SJ7iniwGU2u+hpE62IgAldbKV1M9SUg+ppE72knhSTIDDBsgldXKU1E8uqYdSUienq052raROJfsFVz1K1pPqhGS2QpTUyTXtqpNkiYFwutaNZI2BcLinYyHsrvXkmnatJ8kaC1Gy35MsMSXTMiSL1TUty5DMFoiSeJJMFtd3ZQWSYoIoqZOkKK7pKurkWU8B1MnpqIE6KSV1Ktn2JEU5Oy3Lrvn6UCfJbIFw18lSUifPtCueamw9sU6sUw3VSbaHdh9hVmt+X66Y9T/muo6z3sdc2a7/MVcx61MnWQ383Kiy8z3FXqZOQTqHNcfoc14uh/Baw2vaYoUstPC8zg2wTpKlZq5zpfgEdPniZ9c+JEoJIRBfrx7+260r7Hl5fn/fkpCA27f8DCEEk4M6iPgHknzxxRfYvn27572bb74Zp0+f9vmBJJqmIfv0KfzapxW0gny/yqhqfn086giLFbZ7p8P62nRIdlv1XyihhdEWq4ZBYcKgCAAAuxra+athsBy0EMd8hcvAYkXs5Bkoem6a6yQ3BMJh3fjKyPttu4HLroea3O4kqxXn/XMGTj4zDcIWmjgjMjLFh2s8yWJF8iMzkP30NFdCMggsIWq8o4RqvjpfS+v1+3r0wNSrrBYl+L8p11AORFisUO+bAeXVaRVemyk1VZAaEIqqyHHx6PrdHiSn1InabsXu3Mob57eCPd+/3AoAWOLjcdcf0b0M9WSoJZqfn49t27Zh27ZtAID9+/dj27ZtOHToEABXq7/Ro0d7Pn/XXXdh3759ePjhh7Fr1y68/vrrWLx4MSZNmlQj5VXk0B38DcHphHnNp667hRSwCDpOG1qoE4OVUp2wf/2p6w48RSwmBkNLOJ3I++pTCB7Pwpqqef+j8KGK6hP6QnWi4MtPXS3/giRU+05uf77j9X8Ncjohry5/babIUsQkBmWJ107hQJZcCXp//3Hd6ctQ3Yo3b96Mvn37el67u/9mZmZi3rx5OHr0qCdRCABpaWlYvnw5Jk2ahJdffhmNGzfGO++8g4yMjBottztByBMBb5KmQtlm7CdHK7IUFq0HiSqlqlA3/xi62RsoPLiPjhw1vt2pKop/Cl2cUeWqimv333gjN3y4Y7fCVl2qCtum4MeZXQtdC8Kapgr9Ww9GMz1aDdYkSft/9s47TIoqa+PvrapOw2TCkDMCA4wgCIIJJIOAiq4rIEgyISImwEBUAUEFWQUVxYj6yYqru64YYVFQUUEwoYCIRJXMhA5V9f1R3T09Mz3dVdWV+/6ep5+p6VB1z60b3zrnXh5kq1THnCIGRnCYObbHw6gT/l1p0labha2yt2fPntHdbWJfzz//PADg+eefx/r166v8ZuvWrfD7/di9ezeuu+46w9MdgXoSVkR0e1E2Y4m0hgOFkgJ2EqAMx+OFb+5Sad0diiOhXoPmQzxe1Jm/FITWM8ugxDuQehNaj3j9OvF4UfMh59Qzs8obHTNRqkP0eMHftxSMN/7a/HYj4iVIhUEKRR628hx0CrECYVoPREMBuNY+Ly0oTUkJhlhn7UGKxQgGEHh9lbR4tsHQCQjFDMwod2IwgJOrV0mbNFBMJdVxFfUmtA6VvdzEYACnX9WnnpnlPcgLziprdvFMtEMajYZlCEQ+CObN520/N6NioPVhCSCouE+07uoLFQdNJp1DjokggP1pm+LfWU0Io6HFFCtQrSAiCOC/32ZkUmxJOrbBTsQ0QVoQ4N+xzaSLUwDt63Ds+Zwk3tiNCmKTICCgYz2j4cXWg643aIzQFQkhJoIAomJuZhWoKGgfWCJCIMoHbayK31DkQ5tci5COIceix4vSuc9AdEh4CIViSbxeZCx6BvDSeuZEaEixNSBeL+oufQaE1jPDMSIcmIYcm0tE9CdeL2ovcV49o+HFFDOJXVtQ9Hjht+HcjIYO2w+WAJyKlx0eatgZ6jloMdIq5DgYgPu5RaaEOzoRq3lUUixCIICyFYuBgLH1zE6TDse3tWmCmWVODARwbNliiAbXs3TGjHpLvQnNgxcBNhDAiX/oW89oeDFFLXbfjAQAEAzAZZO5GRUDKRTtoeKghXF6yDERBLB7fzY7GZpAQ4spZpJQFBEECLt3GpYWCsUMTBejBQGBXbSe6Y2VxkN0bULj4XkBMKCe0fBi652TYgxEEEAsPjejoqAzYBlAVNHO0j5XX2j22gCnhhyLXh9KH34ZokN2xKJQLInXhxr/eAUwsJ6ZLtQowEpig1JoSLF1IF4f6j39Cgjtz3TBymG9dKdj4yBeH+o85dx6RsuQMVDhsnpErw9+i87NaOiws2CJ+hdFPxwoOTkXx4mEfj88j84A/H6zU+IYaKdpDoKJA/qkQpzfj9KHptN6RnEsVhCjRb8ff86ZDpHWM02xm+hmt/TajUg9C5XpX8/S6eGLFdpQikXw++Gy2NyMioIUinHQsGIb4pR1CYkogBz+3exkaEY6hxYHeLNTQKkWUYBw0Dn1TEvs3H5SLIYoIHSA1jOtsHvdpGsT6kRMPePhTA8Ss9YepKHAFMA6czMqBjofN6NuN3KO9qm6QrPX5tjZm1D0+lD6+JuWdF2n2Af6xDsJXh8yn11rWFgxvR/GkE5eLYmwSnkjXh8avLTWseGORuFEzzsn2mQWleuZ3vXfrHbWCeXFKm2zUThiMxKEw4qXmTc3o16C6QNLynUMRS8F5WP58uUoKipCdnY2srOz0b17d/z3v/+Nft6zZ08QQiq8brzxxgrnuPXWW9G5c2d4PB507Ngx6TX37t1b5ZyR1xtvvBH9XrzPX3vtNfnG6QT1HHQItty8xF8G78yJgL/M7JQ4Crprcfoga/DtL0PxnRNoPaM4DitNPkV/GQ7dOgEirWeqsNXYRSXUmzB14tUzvT3e6OYklLTCXwb3/cbPzaggmH4wKtcPVFJWGjZsiAULFqBVq1YQRREvvPAChg0bhq1bt6Jdu3YAgIkTJ2Lu3LnR32RkZFQ5z7hx4/DFF19g+/btSa/ZqFEjHDp0qMJ7Tz/9NBYtWoSBAwdWeH/VqlUYMGBA9P/c3Fz5xukEFQcdhq1EQlEEykqkvw4hnUOLKRZFFCGWGlPPrCTWJMMWbSTFPhhYz5xEutZDutOxSqqpZ04UCGl4sYQgqAs9rA4r2WZJDJ6bUVGQoidDhgyp8P+DDz6I5cuX4/PPP4+KgxkZGahbt26153j88ccBAH/++acscZBl2SrnW7t2Lf72t78hMzOzwvu5ubkJr20GdFjiUGLdby2L14eyh9Xtoko7EwpFJl4fMp9YbehuxRR9oSHF1hOiideH+s+spmHFMqGhthJ0p2NlJKpnTgwxtnu5sFo7TZGB14fAInVzM7lEQofpXC69SXW34tOnT+PUqVPRlz/JJjo8z+O1115DcXExunfvHn3/lVdeQa1atdC+fXvMmDEDJSUlmtr59ddfY9u2bRg/fnyVzyZNmoRatWqha9eueO655yBa4AEz9RxMAyzrTVhWCu/dI4GyUrNTQqHYDtmD7rJSnJk0gtazGCzXFlJsj1hWioMTR0Ck9SwhtO5VD/UmTE6yeuZED0IzsJr3YDpjuIBWVgr3XfrMzdJdDGRVbsDhVBgGEFXkRyQPGzZsiDNnzkTfnzVrFmbPnl3l+zt27ED37t1RVlaGzMxMrF27FoWFhQCAESNGoEmTJqhfvz62b9+OadOmYefOnXjzzTfVmBSXZ599Fm3btkWPHj0qvD937lxccsklyMjIwPvvv4+bb74ZZ86cwa233qrZtdVAxcE0wnIiISGAN0Na18ICSrlW0NDi9EKwSn2qDkJAfBnSGk061jPqIUAxCkuWNYPqmV2xzLjDBtC1CRMgo545TSA0K7yYIh+nbEYCQJe5WTqLgrTu6sf+/ftBSHnh8ng8cb/XunVrbNu2DSdPnsSaNWswZswYbNiwAYWFhbj++uuj3+vQoQPq1auH3r17Y/fu3WjRokXKaSwtLcXq1atx//33V/ks9r1OnTqhuLgYixYtMl0cpEU2DbFMuLHHi7K5zwAer9kpoVCci8eLGotX0noWxu4iRbqHFFtSGARAPF7Ue3wlCK1nUWjIbOrQ/KuI3HrmtBBjM8qAldpayz+EdRIeLwLz6NwsVSwz17YwqYYVZ2VlRXchzs7OrlYcdLvdaNmyJTp37oz58+fj7LPPxtKlS+N+t1u3bgCAXbt2aWLjmjVrUFJSgtGjRyf9brdu3bB///6k4dF6Qz0H05jYRsuMgQcpK4Xv1iuMvzCFYnMUDdrLSnFm/OW6pYVCoUjhjgeupfUMoGKWHlBvQgkl9cxpHoR2hYYo2wtSVgrPZDo3U0s6t89KcbMAr8Lrlk3RU1cQhGoFuG3btgEA6tWrl9pFwjz77LMYOnQoateunfS727ZtQ15eXrUip1FQcZACwJyQY5EwEAsagBw5ACI6azZBQ4uNwUpPti0LYcDUawDh0AFAp3pG7wPFCCxdzggDrn4DhA7qV8+sDhUFjSGt1yZUWM+cJBDS8GKKETh5bqYXtF5alxkzZmDgwIFo3LgxTp8+jdWrV2P9+vVYt24ddu/ejdWrV2PQoEGoWbMmtm/fjqlTp+Kiiy5CUVFR9By7du3CmTNncPjwYZSWlkYFxMLCQrjdbhw4cAC9e/fGiy++iK5du1b43f/+9z+8++67VdL1zjvv4MiRIzjvvPPg9XrxwQcf4KGHHsKdd96pe54kgxZnSgUMbeA8Hvhvnw+YrJBTKGoxI9RFsUDi8cB3zwJaz2B/8SLdQ4qtDPF4UHvWApA0rGc09NUc0jFsW009c1qIsZFY6YEMDS3WB7bygoAeD4J0biYLGjqcGrG7Vit9yeWPP/7A6NGj0bp1a/Tu3RtbtmzBunXr0LdvX7jdbnz44Yfo168f2rRpgzvuuAPDhw/HO++8U+EcEyZMQKdOnfDUU0/h559/RqdOndCpUyccPHgQABAMBrFz584quxw/99xzaNiwIfr161clXS6XC0888QS6d++Ojh074qmnnsKjjz6KWbNmKc9IjSGiFfZMtjCCIOD4saPY3rMlhOIzyX/gAOwy0LS6Y55ZnoNmXDbAG39NwPyBqy3EQQOwYpriYZe2rTqcPAlNhl3KWDph9/rkROhEtXr0Dm01yoPQ6HusRb5plfda7PSqdTnQezMSvTfzqCIO6oDTNiRJpQ4yNTJRtH4X8vJrgknTrYsj2srXF6rTVpgamei8Mb3zUE9ojlKqYNTAQ2QY8E3PgujQim1Eh0sxD9s8xWYYMC1aazOqjoNdRBsqZFB0hWHgbqlfPbMK6eitZiccf39SqGdO8SC04721yziBIs3NBA3nZk6aClFPQW0xwnOQohxaxClxMaTxc7kRGHcX4HIbcDEKxf6oGmC73fDeeCfgpvXMzlCvQWtD3G7kT74TxKH1zNGCk0NxolCYaj1zikBoJHZof5XgNHs0x+VGkM7NokQEQSoKUtIFGlachHQMK66MlQeWNLS4KkZf0qyQYsDcQR4NKZawYpoqY+U2TC5OnHTKwQ7ly8k4oe5QKkInuc4IMTbyPtLQ4uqxc1ixnhFOdvfu0qt+0bDi1LUVmof6QnOUkhS9npiIDAO+TUfHhhUDNLTYqdgmpBgAGAZsu466hDtS4YZCCcMw8HTo6JiwYqd5nFHKsbVHoUb1zAkehHa7f3S8YC2qm5+IDAMhhbmZ3cM+qZegcdCwYmtCiz9FNpq7VnNuBC+/DuDUu67ThoKSLqgeWLvccF89Nm1DROw2gYoH9Rq0PsTlRs6IsSAOqGdOqDMUedhNKNSynjlBIKSoQ6t7r6fXoF5zG5YhiR0XODdCV1ynaG5m97kYDR2mUMqhYcVJoGHFybHioNJK4cZGhxanS1gxDSk2HyumqTJWbJ+Ukq6TTDuUL6fhhPpC0YZ0mSjbPcTYqPtkldBirZyztUiL1uKgXuKaXlFMdhUDI5jRxtGQ2HJtZWefVhBKVIQVZ2Si9Ye/pHUe6gnNUUrKqH3aIjIs+I7dITLaP3qz8xMsirWxVUgxALAs2C49AFbbekaFG4qe2K58sSy8XbWvZ0ZChUFKLJb0KtShntndg9BS98cArDIG01IY1GPOEvEQVCoMJpub2d1LEKBeglaBhhVbE1o1KJqh2C2b4xDsNRTgON3SRBsSihNIafLCcnD3Gwqw+tUzq+KESVO6eg3aDcJxyBowFETH/kxPnFBXKPphFaFQr3pGBUJjsN1DnwSkGjWj1/xEjSBYAY4Df0nFuZkT5lI0dNh6MEzF+yL3RZ0F9YWGFSeBhhWnhhUHLEaH3dKwYn0wa5BJQ4olrJimylix/VFKOoqDdihbTsIJ9YRiHk6abNs5xFjv+6BV3jgptFiN96Be6wjqgZ3FQMCabRMNKy7XVnb3bwVRRVgxychEi3U0rFgvaI5SdCXRkxqR5RDq3geiwR5NTngCRjEHWwqDLAfuwj6aeg7aQbxxguBBhUEbwXLIuFjbemYETqgnFHMx1KtQ53pmZw9CvfPfSm2zVUKLlWBJL8E4EI6D0KOPLl7warzEUnlRrA3DENUvin7QqkMxjCqNNSuta2HmGk1UJKQ4HpYFp8OagxQKpRzCsfB17QHC2aeeUWGQojV6C4VG1DMqEFKsjNq1BJMRnQ9pODejYh0lEXTNQWtCw4qTQMOK9cWKAxk9wnKNDC1Oh7BiM55gm/Wk2kpP6yNYMU2VsWLbopR08hy0Q5lyCk6oGxR7YUdhgIYYxzkvDS2ugJKw4lQFDT1Ch/XbHVmf8zoBGlZcrq38Nugs1WHFTd79Oa3zUE9ojlJMQ2Q58JcMAePiaEdCocRBE8GE4+Dqp93GP3YQcZwgflBh0GZwHDIH6LvBlhY4oW5Q7EesR2FKZdDAekY9COOc10JttR1Di5Wiu5dgHESOQ7DXEIgK6xj1EKQohWHUvyj6QbOXYh4MA75p62gtt0qnQt2VrY2VBqe2gGHAtmhNe1OKJXFKfSYMA3er1iAWrmdUGKRYBbVCodH1jAqElEToGTmjlyCY9LSEgdC0NUDk1TGrzN0o9oOuOWhNaFhxEmhYsbmYNbjROjSXhhVrBw0pNhcrpikWp0yInO45aPVy5CScUicozseqIgMNMY45Hw0troDc0GIleoaWwqA+uyNrf850gYYVl2srB4a2Vh1W3ODtnWmdh3pCc5RiGiLLwT/g6oS7FdMnUpR0RTPxhOPgHnq1JmFYVNAxBioM2hCOQ9bl2tQzLaHCIMVOJA0/Nqme2d2DUMt2wErtdzqEFqshlY0bRI5DcODVccOK6ZyMoiUcp/5F0Q+avRTzYBiIOTWlR39JvM9iOyM62UlfrDQotQ2EAcmrKTtEhELRE8fWYcKAzbdWPaN9JcXuxJZhloGp9YwX9fUgDAj6ehBG8pKKO+YgiPovW6TJ+QkDMbe8jtHyQtELhhCIKgotITSsWE9oWHESaFixddFz4kPDiuVjVFixWaICDSkux4ppisUJYohTvQatXnachBPqAYWSCDMFCzuHGEdINf9oaHE5euxYrDSsWGvRkQqC+kHDisu1laNXtYFYqiKs2JeJmm/8lNZ5qCc0RymmIXIu+C+7DiLnUvV7ujMWxaloKqRwLrivHguorGcRqLijP1QYtDEuF3JGjAVcqdWzVKHCIMXRuFzIHTkWPOvSZvdjFdg5xDhCqvlmpTY93UOLtRQGWQZg3KnNzSgUir2hYcUUR8AydFLkZKw0EKVQ9IAKg5RUoX0gJV2pEn6s9/VsHmIcgRfU55feeUAxBupgQTELwhAQNeo23a1YV2hYcRJoWLF90HJiRMOK5WNEWHE6hRRbVUyxaroi2FkYcaIwaPXy4iTsXPYpFD3RW/gwQhyzephxqnlg99BiPcKKAfmhxWp1EioKmgMNKy7XVk5c0xZQEVYMXyZyX/0xrfNQT2yXo0888QSaNm0Kr9eLbt264csvv6z2u88//zwIIRVeXq/XwNRSEiG63Ci7+maILrfZSaFYGCoypIjLDc+Ym4EU6hm9B/pBhUGH4HIjd3xq9UwNVBikpBPE5Ub+hJtBZNYzveuHEW1dQCh/6YXd2xEzQ4uNWndbK5Itx0TnZhQnsXz5chQVFSE7OxvZ2dno3r07/vvf/1b5niiKGDhwIAgheOutt6p8/vzzz6OoqAherxd16tTBpEmTEl63rKwMkyZNQs2aNZGZmYnhw4fjyJEjFb6zb98+DB48GBkZGahTpw7uuusuhEKhlOzVAluFFb/++uu4/fbbsWLFCnTr1g1LlixB//79sXPnTtSpUyfub7Kzs7Fz587o/3SHGwshCCAnj9IFQ2yM3QZFSnBMsRQFiMePAqJTDKJYmbQUBgFAFMAfM66e2X0yT6GoQQzXM1FBPUsldFbW+Q0Mr40IhHp4E6rNJxpebB9k3V86N6MYBGGIOtdXBb9p2LAhFixYgFatWkEURbzwwgsYNmwYtm7dinbt2kW/t2TJkmo1okcffRSPPPIIFi1ahG7duqG4uBh79+5NeN2pU6fiP//5D9544w3k5OTglltuwRVXXIHPPvsMAMDzPAYPHoy6deti06ZNOHToEEaPHg2Xy4WHHnpItn16YKuw4m7duuHcc8/FP/7xDwCSW2qjRo0wefJkTJ8+vcr3n3/+edx22204ceKE6mvSsGL7QMOKJYwMK9ZbHEyncGLAusKKVdMVwa5CidO8Bq1eTpyCXcs7hWImRoRRmiGSaS0Uqs2nVGxPl9BiPcKKlZyXhhKbDw0rLtdWise0Ux1WXOOF71XnYX5+PhYtWoTx48cDALZt24ZLL70UX331FerVq4e1a9fisssuAwAcP34cDRo0wDvvvIPevXvLOv/JkydRu3ZtrF69GldeeSUA4KeffkLbtm2xefNmnHfeefjvf/+LSy+9FAcPHkRBQQEAYMWKFZg2bRr+/PNPuN3mee7aplQGAgF8/fXX6NOnT/Q9hmHQp08fbN68udrfnTlzBk2aNEGjRo0wbNgwfP/99wmv4/f7cerUqejr9OnTAACRc4f/uqI7OIkuN0SWq3rs9lQ8ZtjwsRdiuBCLnthjH0QSe0wgRo4B6X+PT/qcMOXHDAPR4y0/dkeOWYhuj3TMchWPw27iFY5NsknIzEHpdXdCcHu0sYlLYBPHVT1WapM3xiZvjE3emPvkjblP3mps8iSxidPBJo9+NoFhgOgxC4TtAMuVH3NcebhdhWNX+S66Lrf0WeVjt0c6V/Q4PArzeMtHg7HHXh9AYo9J+TEg/R89ZsqPK9gRc8wmsMmtwCa3Qpu8GtmUlQ3vTXdJ51NhEy9a0CZv+X3iXSrvk8tVvrOsCTYFRAYkxiYSYxOJuU8kxiaigU0kxiYSYxOJsYl4Y4/LbSIxNpEYm4jXJ5UTItMmT4xNnnKbiAKbSKxNnhibPNrZJB3Ls4nJzEL+5LtAfD5dbRJc1djki7HJF2OTL8YmX4xNPm3uE4ljE9HqPlGbqE2VbGIyM1Hr1rtAMjIU28QT/dsInjAQPMa25QEBCHLa9U+8gIR9bnXjCN5l0NiomvGe4NZ5vJdkDCtnXM67jBmXpzInFHw1UDL2LskGOs/VxSaKRGRDEjUvNfA8j9deew3FxcXo3r07AKCkpAQjRozAE088gbp161b5zQcffABBEHDgwAG0bdsWDRs2xN/+9jf8/vvv1V7n66+/RjAYrKBZtWnTBo0bN45qVps3b0aHDh2iwiAA9O/fH6dOnUqqVemNbUroX3/9BZ7nK2QiABQUFODw4cNxf9O6dWs899xz+Ne//oWXX34ZgiCgR48e2L9/f7XXmT9/PnJycqKvhg0bAgACQ0dLfy8dicClIwEA/ismINB3OACgbOStCF44UDoedzdC5/YEAJTePBt8h67S8dQF4M8qAgCUzFgGoXFLAEDxnGcgFDSQjhe+AjE7H/D4ULzwFcDjg5idLx0DEAoaoHjOM9Jx45YombEMAMCfVYTSqQuk4w5dUXrzbABA6NyeKBt3NwAgeOFAlI28VbKj73D4r5hgqk0lD6wCu3cnxFr1NLEp1Hc4gldKNgWHjERwiGRT8MoJCIVtCoy6FaGwTYHxd4PvKtnknzQbQpFkk/+OBRDDNgXuXQYxbFNg7jMQwzYFFr0C5OQDXp907PUBOfnSMQCxoAECcyWbxMYtwd8v2SS2LgJ/10Lp+Oxu4CfPkY679YQwcZp0fNEgCKOnSPnRbziEqySbhKGjIAwdJR1fNQFCP8kmYfQUiBcNko4nTgO6STaJt84Bzu4mHd+1EGgt2STOXAY0aSUdP7gSqCvZJD66OmqT+OjqqE3io6sBAKjbQPo+ADRpBWGmZBNpUwR2umQT6dgN7FTJJnJeTzA3SjaRnoPAjJVsYgYMB/N3ySbm8lFgLpdsYv4+AcwAySZm7BSQnpJNrpumgeku2eSaOgdMR8km14yFIG0km9xzl4E0lWxyL1wJErbJ83i5TZ7Hy23yPC7ZROo2gHuhZBNp2gruucsgCADTtgieeySbmI7d4LlDsont0RPumyWbuF6D4B4n2cQNGg7XCMkm1xWj4LpCssk1YgK4QZJN7nFTwPWSbHLfPA1sD8kmzx3lNvnuXQi2rWRTxrxlYJpJNtVYvBJMPcmmzCdWg+RKNmU+IdlEcvOlYwBMvQaosViyiWnWChmzHgW/eyfYs9rBd69kE9upG3x3SjZxPXrCO0myyXXJIHjHSza5Bw2HJ2yTd/goeIdLNvlGToBnsGRTxvgpcF8i2ZRxyzS4wjbVuHMOuE6STZn3LQQXtinrgWVgwzZlP1JuU86T5TblPFluU86T5TZlPyLZxDZrhawHpLLHtClC9kzJJtc53ZB9t2ST5/yeyJos2eTtPQiZEyWbfJcOR8YoyaaM4aOQEbYpY9QE+C6VbMqcOAXe3pJNWZOnwXO+ZFP23XPgOkeyKXvmQrgKJZtyH1oGLmxT3mMrwYZtyl9RblP+inKb8lesRkAAuPoNUHupZJOreSvUWiDZ5G5XhPxZkk2ec7ohb7pkk++CnsidItmU0WcQcq+XbMocMhzZ10o2ZV01CllXSTZlXzsBmUMkm3Kvn4KMPpJNuVOmwXeBZFPe9DnwhG3Kn7UQ7naSTbUWLIOruWRT7aUrwdWXbCp4ejWY3HwQrw8FT68G8frA5Oaj4GnpPnH1G6Du45JN7uatULBQssnTrgi1Z0s2eTt3Q61pkk0ZF/RE/q2STZl9BiHvBsmmrCHDkTtasinnqlHICduUO3oCssI25d0wBZlhm/JvnYaMsE21ps2Bt7NkU+3ZC+EJ21SwcBncYZvqPl5uU/1nym2q/0y5TfWfUWZTzTvuQ+CXnfB1v1AXm9yduoEXgIK5C+EN21RvUblNDZathCtsU6OVq8Hm5YP4fGi0cjWIzwc2Lx+NVko2ueo3QINl5TbVWyTZ5G1XhIK5kk2+zt1QZ4Z0n2pc2BO1bpNsyuo7CDVvlGzKGToceWMkm3L/Ngq5f5NsyhszATlDJZtq3jgFWX0lm2rdNg01LpRsqjNjDnzh+0RtojbJtSl//M3w/7IT2YOGqbKJF4xpI3gR4AqNbctJx24ICEDW/an1T1JmxO9zubZFyLxPsonr1A01wuMIV4+eyLhlGnix+nGEe/gouMN9rmfEBLjDYyPv+ClgkoyNPPcsBBMeR3jnLQMTHu95F60ECdvk+4fy8R4gjWFdM8rHe2rHsOLfJkDsL9kkjpkChMfl4vUVx+VieFzO37UQYnhczt9fPi7nHygflyuZawiNW6LsXskm4awi+O+Q5k9CUVf4J80GIHNOOOBqoEYWIAh0nquHTQ2bg6INp0+fruDQ5ff7435vx44dyMzMhMfjwY033oi1a9eisLAQgBT+26NHDwwbNizub/fs2QNBEPDQQw9hyZIlWLNmDY4dO4a+ffsiEAjE/c3hw4fhdruRm5tb4f1Yzerw4cNxNa3IZ2Zim7DigwcPokGDBti0aVNU7QWAu+++Gxs2bMAXX3yR9BzBYBBt27bFNddcg3nz5sX9jt/vr1C4RFFEKBjAt30KIZ48Fn3yQEJB6YmEIIDwoYrHbg/A8+XHoRCIwEtPPEIBEEGQnoQEI8c+IOAHESPHZYAoAh4f4C+Vnny5vSD+UukphdsjHTMM4HKD+MukY84NEiiTnnZwHEjALz0FYdnyY4YBCQYqHjvEphDDSU9w49kkCiChUMXjJDaJfCWbvD7AH7bJ6wP8YZu8PqAsbJPHC1IWtsnjkY4ZBjzrKrcpal81NnGxdii3SQjFsanCvdHGpiDjlr4ftkk6lmxCwC89dWVZ6ThsB4KBSsfhp8ihoHQOUQBCIcljTQgfh+8T+MhxSPo/bAcEoeJx2CaIkeP4NknHkk0oKwUYBgIbxyaWlWyJZxPDAAGZNrml+lSdTXyokk1er3TuFG2C2w2UqbOJR2o2VblPGtrEl6R4nyJeGUFjbQq6vBDDNhGPRzpmGBC3G2L4PhGXG2LYJsJyEMM2EZaVjlOwibg9EMM2SceSTcTjhRi2iXi9EAORYx/EsE3SsWQT8foglpWCB5F+q8QmjpPOyXIgHCsdcxwIw0jXlWETcbshRmzyeCCGwjZ5PBBDqdkEYi2bBJcMm3w+iGVhm3w+KY2iKB2Xhm3yesPHDIjXIx2naBMhjJSeGJuIyy2tCZfqfbKpTaFQcps42MsmJ94nVjS2jeA4Y9tyN1Lvc9mAunEEyyofG7F86uM9JqhgHOGqfrzHBpWNYd2i/LkGw8sbl3NElD0uZxXMn1hXeswJrWoTycrG2R//TMOKjx1F2fj2qsOKvc9+h6bNmuPMmfLfz5o1C7Nnz67y9UAggH379uHkyZNYs2YNVq5ciQ0bNmDXrl244447sHXrVmRmZgIACCEVwoofeugh3HvvvVi3bh369esHAPjzzz9Rt25dvPvuu+jfv3+V661evRpjx46tIlZ27doVvXr1wsKFC3H99dfjt99+w7p166Kfl5SUoEaNGnj33XcxcOBA5fmiEbYRBwOBADIyMrBmzZroDQOAMWPG4MSJE/jXv/4l6zxXXXUVOI7Dq6++Kuv7dM1B/RDdHpSNuxve5x4GCcRX+5Wg9TpMWq7d58Q1B5223qDZay/rZq/bA++kaSh7YqE0yDU7PRpg1zXX6BqDzoV4PMi/dRqOPb5QEhU0wq5lPZ0I6VQPOLrJQxWIx4Nat03DX0u0qWdmrMFm5LqEWqxHaOQahKnmjVZai9J0yF1zENBn3UFl50z8udZzs3SlunvC1MhE+0/omoPHjx2Ff2IH1eKg55kd4FzuCpuIeDweeCLLUCSgT58+aNGiBXw+Hx5//PEK94HneTAMgwsvvBDr16/HqlWrMG7cOPz+++/RaFJA8vJ74IEHMHHixCrn//jjj9G7d28cP368gvdgkyZNcNttt2Hq1KmYOXMm3n77bWzbti36+a+//ormzZvjm2++QadOnRRminbYplS63W507twZH330UfQ9QRDw0UcfVfAkTATP89ixYwfq1aunVzIpSuB5cNs2S08FKbbCybsUm4GuIgvPI/TVJkX1zMqijx3FkoBAhUGnI4Z4lH65SfJO0gBesGdZTydCon7CYOz5k73SCTHEo+QLe9czXix/6Y0W/Y7a/FFjX6p5YtZDXkeNiencTDWRzXdVLolHUUhWVhays7OjLznCICDpR36/H9OnT8f27duxbdu26AsAHnvsMaxatQoAcP755wMAdu7cGf39sWPH8Ndff6FJkyZxz9+5c2e4XK4KmtXOnTuxb9++qGbVvXt37NixA3/88Uf0Ox988AGys7OjIc9mwZl6dYXcfvvtGDNmDLp06YKuXbtiyZIlKC4uxtixYwEAo0ePRoMGDTB//nwAwNy5c3HeeeehZcuWOHHiBBYtWoTffvsNEyZMMNMMShjCh+D6/EOzk0GxIOnkNai7rXwIoY3y65mVRR87iiVOEwUp1cCHULJBm/7MjuU8XbCiGCcnTY7xQuRDKF6v/bgxts4Z6U0Y6W/19CYMCKl7EPKCunzhReW2qfmN1lghDWZB52bKoEKgehiiUkkl8n8zY8YMDBw4EI0bN8bp06exevVqrF+/HuvWrUPdunXjbkLSuHFjNGvWDABw1llnYdiwYZgyZQqefvppZGdnY8aMGWjTpg169eoFADhw4AB69+6NF198EV27dkVOTg7Gjx+P22+/Hfn5+cjOzsbkyZPRvXt3nHfeeQCAfv36obCwENdeey0efvhhHD58GPfddx8mTZokW+TUC9t4DgLA1VdfjcWLF2PmzJno2LEjtm3bhvfeey+6gOO+fftw6NCh6PePHz+OiRMnom3bthg0aBBOnTqFTZs2ma7IUiREtwclt82P7jJFsQeOekIKhwuDAOD2wHfPgvJd98xOjwrs6kXlVGHQquXETIjHg9ozF5TvrKoSO5bzdMDuXnpO8UAkHg8KZqdezxLhRG9CMz0IVV3LJuXRidC5WWJivQOpMJgahFH/kssff/yB0aNHo3Xr1ujduze2bNmCdevWoW/fvrLP8eKLL6Jbt24YPHgwLr74YrhcLrz33ntwhdeGDQaD2LlzJ0pKSqK/eeyxx3DppZdi+PDhuOiii1C3bl28+eab0c9ZlsW///1vsCyL7t27Y9SoURg9ejTmzp0r3zidsM2ag2ZB1xzUD5FhwXfoCnbHlyBC6ooTXXNQQu9LGSEOGjkwdLw4yLJgO3UDv/WLhGEiVh2M21UsocJgmsGy8HbuhrKvE9ezRNi1rDsVuwhmRmK6ByLLwte5G0pTqGeqLuuQtQnNWoNQrS1qf6fFUm5WWHfQlDUHNZ6bOQEtRUC65mC5thK6sQgoU6GteDPBrdie1nmoJ7YKK6Y4CyLw4L7dbHYyKBaDCoNaX4gH/9Uma6RFIXYVS6gwmIbwPMq+TFzPEv7coWXGblBBMDGmhzDz0tqeRhOpn2aEHAPaCYVmhRirDdNN5/Bes6BzMwnqFag/rIsBeBUNkosKgnpCc5diGqLbi5JpS6Rt4ima4ASvQaNIC2EQADxe+OYuBTxV65lRi6Krwa5iCRUG0xPi8aLO/KUgcepZMuxa1p2EnUJrrY6eIczE40XdherqmRZEQo7NCjvWArNCjNWmX83vtBjfpWufl65zMxoubDyEJapfFP2gnoMU8wgF4P7X80AoYHZKdIdliKGhxXbFqMFY2giDABAMIPD6KiBYsZ5ZeeBrR7HEqaIgYO2yYhXEYAAnV6+CGFTWn9mxrDsFKgaah1oPRDEYwImXldczPTDTmzDVubEWHoRqMNITUBC0CS9OO9JobkZFQJNhAKLiJoi0XusKFQcppkEEAdxP28xOBoViGKaILIIA/vtt5qdDJnYUS6gwSIEgwL9jm6Kf2LGsOwEqCtqDuPeJF3Bm+7bov6avgQhzdjrWQmRLVSC0ww7GVCBUjtPnZlQQpFASQ5tMimmIHi+KZz8D0aTwEKdBQ4rlYZbXoGkii9eLjEXPAF6vuelIAt2R2HpYtaxYEeL1ou7SZ0C8yfszu5Z1O2O3XXkp8SFeLxovK69nVtuB2ci6rUX7nGr/pdZWNWlXa69RYz6njJGdNjej4cLWhWGJ6hdFP6jnIMU8ggF4n19UJdyRkp44WYgw1bZAAGUrFgOBgGXz2K5CiVOFQauWEysjBgI4tmwxxED1/Zldy7ldoUKg8xADARx5PHE9iyVRGdDT69Aob0LqQSgPtR6EabkhigPmZlQEtAeEUbl+IL3BukLFQYppEEEAu/dns5NBSSPMXGvQNAQBwu6dlhV87CiYOFUUBKgwqBpBQGDXzipv27F82x0qCjoYQYD/l6r1TA2Vy4leYqHeaxNSgVAeNMRYHnadm1G9iELRBtpMUkxD9PhwZsHLED0+s5Nie2hIsXUxXWzx+lDjH68AXuvVMzsKJ1QYpMSDeH2o9/QrIOF6RkOHjYWGDacHxOdD05WvgPi078/0Lj967nRs5xBjVdei9Vw37DI3o+HC9ocwRPWLoh/Uc5BiHgE/fEtmAAG/2SmhmIwRAz0zvAatMIDly/w48+B0wG+temZH4YQKg5TqEP1+/DlnOkKlfoDmpWFQMTC9EMv8ODBrOsQy/fqz2DKltzchoJ1HoV09CNWmW83v1HgPpl1osYXnZlQTchaMmwFRsfWwaMZW62kEFQcppkFEAezh381OhiHwerv2USyHFcQWKQ0ChIPWqmd2EwadLAoC1iirdofnBfC/W6ueORUnCYK8aO3ZLkssltmigOAB4+pZpKwZsT6hFiIhFQiTQwXCxFhtbkYFQedCWAZETcNn1LbwaQrNXYppiB4fzix50/Ku61bH7iHFTvQaNFts4cWYNHh9yHlurWXCiqkwaC3MLqt2JjZMkPh8aPzKWl3CHSkSTggb5kVS4WV1Kqc33stIiM+H5quNr2dGhK1rFXJcof9XSUBIre9TY4faNKv5XVquPy0Ts+dmNFyYQjEX6jlIMY9AGTJmTQQCZWanhELRDLPFlirX95fh1B0TAL+59cxuoiDgbGHQ7HJqZ+KVZbGsDAcmT4BYRvszLbG7GBjBDkKgWuTYppUHolhWht9uMbee6e1NqJUnYaSNT8XjLdIHqvEkdJoHoZxrBHjAzSpLh+UwYW5GRcD0hLAqdytOFzdek6DiIMU8RBGkrAQQHTL6rwYaUlw9TvMaNFtwiXt9UYRYam49s5sw6GRREDC/nNqVhOVYFCGYXM+cAhUEnUeyvJAtHlqonum9NqETRMJ0FAhtj0FzMyoIUgijUhykhUdXaFgxxTw8PhQvfAWgYcVpCRUGDbq+14ecJ1ebFlZMhUFrYXY5tSNywv2Iz4dGK1fTsOIUcFrYMEU+csOXic+HZs9ar57pGXZs93BjGmIc55pWbud0mpvRcGEKxR4QUbTA4zcLIwgCjh87iu09W0IoPmN2chyFCEidj78UWvQTWosQWnXeensO6nl6vdYbNEqgMGrQZ7bgkvT6Xh9QVmpIWmKhwqC1MLuc2g2l5Zf4fBBLja9ndsbuYmAEKgYaB+PzQYhTz6y2eYqem5hosR5/qh5wSr0IVe07oDKNqpyRFKQv2fnlhBbLFchYGV9UIrYluw9azs2oCFgVpkYm2n+yC3n5NcEo3RnHIUS0lYyHzwcJFCv+veiugZK7P0vrPNQTGlZMMQ9CIHozQAJllggRicXST/VisEs6zYAKg2EIAfFlQPQbW8+oMGgdzC6jdkNV2SUEjC8DfJn1+jMr4gRRkAqCJhCuZ0Kcembk2odyiFfGtRIMtQg5TjXcWOmuxlYPMTYaQdROPNPyXKnOzaggSJEL3a3YmtDcpZiH24uSOc8Abq/ZKdENut5gVZwUTmy26CLr+h4vsh9ZCXiMq2d2EgZT3ZXR6phdRu1EKuF7xOtFg2UrQbzO7c+0wEmhwxTjYbxeNHviGTAq65nZuy7Hhh9rURe0CDmOhBur6SucFGKsZNyY7NxaRt0YPo9QODej4cIUirOgYcVJoGHF9kFLQYKGFEvoEVast1hBhUHzsJMoCDhbFASsWUasit3Krl2xqzBIxcD0wswQ5VS8C7VyqFHqdWfVEGOrhxebEVqsRRmhIqB6aFhxubaSuexi1WHFZyZvSOs81BOaoxTTEAkDvm4jiIQWQzXY0SnRCcKgFot6a5EG2RAGTP1GgI71TKsF042ECoOUSLnVpOwSBq4G+tYzu2M3YZBuLmJBCAN3Q/3rmRlehRFS8SrUcvMSJVjVg9DqG5RoOY7X6lzVzc2odyBFawhLVL8o+kFHsRTzcHtQett8wO0xOyW6YPeQYr02I9ELo4RBM1ElTHo8yLx3AeDRp57ZURSkwmD6oqkgGAPxelAwZwGI15n9WTpBBUHrwng9aDhnPhiD65nZYchK0aKdS2eBUKtzazWO1nI+kTTf48zNqCBI0QPCMNF1BxW9qLegrtCw4iTQsGL7YLWwYhpSXBW9BmlOFwatKPbYTRQEnC8KRrBieTEDO5ZRp2J1r0EqBmpHde1POjh76B2ObEbIcbqGGMvVH4zauVhOaLH8c8k6laJzUuRBw4rLtZXsFZeABFWEFbtq4NSNH6d1HuoJzVGKaYgMA77pWRA1qNhWEwYpVaHCoEnXZhiwLVorW0gnUXpsGEIMUGEwnTCljDIM3C21q2cUY6BegvKJ3bgi0SvV3yc8D8PA2+osy9YzvTc7SWUTE7XtolM8CJUid2xpR+/BRMSbm9F5EUUXWEjquuKX2Ql3NtbsXSnpgcuNsuvuAlxus1OiOdRr0Bj0FgbNXF9Qs2u73ci46U7AnVo9s6soCKSPMEgxr4wStxu1ptwJkmI9oxgDFQWrolb0MzI9osuNulPuguhy2+pBiNaCodEioRMEQj3XH0xVIDRafEuY39XMzahASNEaI9YcXL58OYqKipCdnY3s7Gx0794d//3vf6t8TxRFDBw4EIQQvPXWWxU+27dvHwYPHoyMjAzUqVMHd911F0KhULXX3Lt3L8aPH49mzZrB5/OhRYsWmDVrFgKBQIXvEEKqvD7//HPZtukFZ3YCKOkL8ZehxuyJZieDYgB2GsRHMFMU1JSyMpy+M7V6RkVBe2DHeuYUxLIyHJxM+zM7kI6ioFPaBqGsDLsnldczuXZZMaS5cjlUE5IcKxAqDTmO9OtyQ0wjeS03LwOCshBjXtBut+VqryEqLwuCYFlH1bgIYmphwInmZrECIQ01ptiBhg0bYsGCBWjVqhVEUcQLL7yAYcOGYevWrWjXrl30e0uWLAEhVQs1z/MYPHgw6tati02bNuHQoUMYPXo0XC4XHnroobjX/OmnnyAIAp566im0bNkS3333HSZOnIji4mIsXry4wnc//PDDCumoWbOmRparh4qDFNMQGQb8WUVgf94OYuT2YBRHoGeRcYwwCAAMA65tEUI/blecaXYVBQEqDKYrLGNSuWUYeNsVoex75fXM6VhlvUG7i4K0jgNgGNRoX4Ti75TVMzV5Z7SgGFs+UxEK1YiESkQ5JQJbpB+WKxLqmZZUfqPFeQN84vUH5Yh6vCDKXntQLXLnZqmKkBQKWAYQ1Cw6Kv83Q4YMqfD/gw8+iOXLl+Pzzz+PinLbtm3DI488gq+++gr16tWr8P33338fP/zwAz788EMUFBSgY8eOmDdvHqZNm4bZs2fDHSdaZMCAARgwYED0/+bNm2Pnzp1Yvnx5FXGwZs2aqFu3rmx7jMBGz0IojoNzIzDsOoCzThgW3YhE+5BiPSY0es29zQ6f0gWXG96/j1Ucvk+FQQpFPsTlRu6osSAOXCbDCdhRGDQ7rNeKEJcbda69zpB6ZmaIdSrhx2pCjpWGGivNBz375HRcf1BXFMzNBJGGG1PUQ9yM6hcAnD59GqdOnYq+/H5/wuvxPI/XXnsNxcXF6N69OwCgpKQEI0aMwBNPPBFXpNu8eTM6dOiAgoKC6Hv9+/fHqVOn8P3338u29eTJk8jPz6/y/tChQ1GnTh1ccMEFePvtt2WfT0+oOEgxDRIoQ8bC20ACZWYnhaITdhMGzUD36/rLcOb+KYBfXj2z89qCQHoKg1Q4MB/RX4bD06ZAlFnPKMZhJ2GQioGJEf1l+PWu20yvZ0YKhqmKhEqEQjUioVwCgrz+2e7rD6aCFYQ2NXMzK6SbYj8Iw4CwKl7hOP+GDRsiJycn+po/f37c6+zYsQOZmZnweDy48cYbsXbtWhQWFgIApk6dih49emDYsGFxf3v48OEKwiCA6P+HDx+WZeeuXbuwbNky3HDDDdH3MjMz8cgjj+CNN97Af/7zH1xwwQW47LLLLCEQ0rBiimmIDAu+Q1ewO74EEezwOM35WP2pppOEQcOuybLgOnVDaOsXAF/9DbazIAikpyhIiY8pocUsC1/nbij9OnE9SzfMDCm2gyhIRUCFsCyyunTF6a++tFw9i3cvtQxfjZRnI0KOlYT36r0WoV7otf6g3uHFeocWq52bRQRCGmpMMYr9+/dXWCfQ4/HE/V7r1q2xbds2nDx5EmvWrMGYMWOwYcMG7Nq1Cx9//DG2bt2qWxoPHDiAAQMG4KqrrsLEieVredaqVQu333579P9zzz0XBw8exKJFizB06FDd0iMHCzTPlLSF4xDoNRTgrKFR2yGk2E5oPemhwqBKWA6efkMBtvp6ZmdhUK43glOh4kJ89F7YvjKE45A9aCiIRfqzdMfKwiD1DlQP4TjkD7ZPPdPDwzCV3Y6VeBLqGWqcrM82akxC62AcUpyb0VBjimxYov4FICsrK7oLcXZ2drXioNvtRsuWLdG5c2fMnz8fZ599NpYuXYqPP/4Yu3fvRm5uLjiOAxcu88OHD0fPnj0BAHXr1sWRI0cqnC/yf7K1Ag8ePIhevXqhR48eePrpp5NmR7du3bBr166k39Mbe/SuFEdCAn5kLJlhdjIoOmCXAZfR6TQlXwJ+FD80Pe5HdhcF0x271LN0QPT7cWR2/HqWrpjhNWhFUTAd66lfo/bZU0nkF/1+/DbT3uNGrTwMU9nAJCQq8yIElHkSyrEnmQehEZuTqMEK3oN6otXcjG5YQkkKSwA1fXaKFV0QBPj9fsyZMwcTJkyo8FmHDh3w2GOPRTcy6d69Ox588EH88ccfqFOnDgDggw8+QHZ2djQ0OR4HDhxAr1690LlzZ6xatQqMjC3Pt23bVmVDFDOg4iDFNESWQ+jcnuC2rAfhQ2Ynh2Jh9PAaTAthEABYDq4ePRHctB4I1zMqClLSAUPDi1kONS7sieKN66P1LJ1JZ2HQyWKgVqKf2usRlkPexT1xfMN6iArqWWWR0WrElhmjhEK9Q42N3u1ZLVYNLzYLLedmNNSYYjYzZszAwIED0bhxY5w+fRqrV6/G+vXrsW7dOtStWzeu91/jxo3RrFkzAEC/fv1QWFiIa6+9Fg8//DAOHz6M++67D5MmTYp6Kn755ZcYPXo0PvroIzRo0AAHDhxAz5490aRJEyxevBh//vln9NyR673wwgtwu93o1KkTAODNN9/Ec889h5UrV+qdJUmh4iBFMQzRyGWcZRHq2B3cNxtNn0zZKaRYs/zXCTuEExs5eTN9osiycJ3bA8EvpHpmR2GQCoJVMb1c2QSjBELCscjo1gMlmzcqEi0o2mC2MOiE+mi08KcGwrHIPa87TnymrJ5paZveQqNWQqEeIqESL0I5optdvQcBeQJhSudP4Hmn67qDOszNqBchJS4GeA7+8ccfGD16NA4dOoScnBwUFRVh3bp16Nu3r7xLsSz+/e9/46abbkL37t1Ro0YNjBkzBnPnzo1+p6SkBDt37kQwGAQgeRbu2rULu3btQsOGDSucTxTL2+V58+bht99+A8dxaNOmDV5//XVceeWVsm3TCyLGppJSBUEQcPzYUWzv2RJC8Rmzk0OphlQnf3YSBwF9xEGtNiPRcpJEhUHtoKKgc7BSubILdiz/dsVor0GzhEE71kM7CIB2RW/RUK3opSTkWK4XISBftJOT7mQblCgRCNXnk/LfyBEHk503kfdgIkEtkTgoR4gzel3eCOkuEjI1MtH+k13Iy68pK9TUiUS0lbx/DwEJlSj+vchl4Pil76R1HuoJzVGKaYgsh0DPIRATbJRAsRdWnyylozDIMxxcfa2z8Y8c0n2TEYr26D4R4jhkDbRXPXMCZgiDdthMxC/Ef9kdwnGoNXiIJTckqS7Ptcp3tZuaKNnARI8NS6xeV6yMWkeAVBwI9J6bWTnyiUKhUHGQkgRdn/AwDPimrfX1y5eBHTuqdHjyprXXoFEDVKtMHKMDd4YB19L8eiYHKgomxwply67oKRAShoGnVWsQG9QzPTHSa9AsYdCKOE0ErBaGQY2z7NGfxZJIOFRzv9QIhXqKhMmvnfhzLXcvVltHzarbaqN2dItWMmBuRnc0pgCQ3GbVvii6QcOKk5DuYcVWX98uQiohY1raZ+fQ4lTDiq0cTmzEoM8Kk0a7hk5SQVA+Vihndseu9cQOGCUOGi0MWq3eOVoApABQHqasNCxWbrix3FBjOQ9fkobYahRebFRosRZhxYA5ocVmhRXHIx0cHiLQsOKYsOIPLwfhVYQVsxk43mdtWuehntAcpSRET61LZDn4B1ztqLBi3RYI1hmt1hvUAi2FQSO8+KzgKZgwvIfj4LvsasuFO0a8BKkwKB+zy5lT0GVSxHHIucJ69cxInCgMWqF9j+BUz8BYL7hkL4HlUOfKqyGwnKLfJXtZEaX3W6lNcj0J5XoRWsmD0Kr3VA1GO2iYMTezgxMKRQdYov5F0Y30HcVSqhDRtQxrpBkGYk5N6dGbhcQpO6DlPdJCGNRiIGY3b0ErDD5lDZQJA5JXEyDWeBZExUCKEyGEAZtfE4QwsEDTYDhOFQbNxM4ioG55xzBw1aypecijVunVa85auSzI8SqUu+txbJ1K5E0oZ1djObsZJ9tRWM4OxsmuEbkOQHUExZg0N4vMa2zqY0GhOAYaVpyEdAkrNlwY1Bgr7FYci57hxU4MJ9baW1BPzJ4wAvYLi6SCYOpYodw5DbvVI6viNGHQzLpmB0GQtkXaooV4JTcEWe615IQcJws3TibeGbmLsZI8VvJdI8KKAXWhxXYKK66MkwVCGlYcE1a8Ybj6sOKL/5nWeagntsvRJ554Ak2bNoXX60W3bt3w5ZdfJvz+G2+8gTZt2sDr9aJDhw549913DUqpPWCIecKgyLngv+w6iJzL2AsbgF3Ci50kDOodHmSF8CO5uwNWwOVCxt/HAi7j6xkNG6ZYGU0nRy4XckeaU8/SASOEQTPaeKtuJGLVEFzicqHBmOtAHFTPtMhruWVI7rnlhBwnCzdONl6Rkw45YcZa75hsdhnXCrVzOivMzeiGJemByAIiS1S8zE65s7GVOPj666/j9ttvx6xZs/DNN9/g7LPPRv/+/fHHH3/E/f6mTZtwzTXXYPz48di6dSsuu+wyXHbZZfjuu+8MTrm1iAiCsaKgnRthLbw/bKLlWS6cOFW0FAb1wgoTIlWioEnQtQS1x+zy52Ss7D1hB4zwGjRKGDQKK4mBVhQAKeWouTdKhcLE35EnEiY8h4x0JELOWEJrgVAOWjks6bnxaqI5gx3GlHaem1IodsVWYcXdunXDueeei3/84x8AJLfURo0aYfLkyZg+fXqV71999dUoLi7Gv//97+h75513Hjp27IgVK1bIuqYTw4pjhTAnNLxadnBWDy/W6nRWWGdQC2FQb1HQbOwweAOoEKg3ViiLTscudc0qOCmU2Ij6ZbYQmO5tSEjncsTJ3PlXD+SGwSYLPZZznmThxqmEGqe6k3Gy88u9jtzvGBVSDMgJEXbGrsWJsIsTRzJoWHG5tpK76UoQvlTx70XWhxM91qR1HuqJbXI0EAjg66+/Rp8+faLvMQyDPn36YPPmzXF/s3nz5grfB4D+/ftX+32nE+stCJgvDIouN8quvhmiy636HHRCZw5mC4N6ejeY7TkR8RLUrGy73MgYezOQQj2LB/UQNIZ0n9QbRaoTJOJyI3/CzSAa1zMrQoVB+ZjlIWh3T8CQSOK+eJcHDW+4GbzLU+134r3MSm+qLznIvdfJyqJcT8JEpOJFmOz6csYbWnkQ2rHOVIfSuZ4WczM9MHvOStEe0UVUvyj6YRtx8K+//gLP8ygoKKjwfkFBAQ4fPhz3N4cPH1b0fQDw+/04depU9HX69GkAgMi5w39d0XUYRJc7utV7hWO3p+Ixw4aPvRDDCrfoiT32QSSxxwRi5BiQ/vf4pM8JU37MMBA93vJjd+SYhej2AAAIx4F4PGCItD19pLHnmfJj02xyeUBOHoUoiopsElmu/JiLtSOBTRxX9TiOTQxJYJM3xiZvjE3eGJu8MffJ6wPLkKo2eYy1qbIdAc5b/sjT6yvfxdbrAwgpPwak/6PHTPkxwwBhOyocsywQtgMsV37McYDbXX4cGXRwLukFSO+F7YA79tgjnSt6HH7M6om1QxubeJNt4l3a2wS3G+LxowCBeptcrvK11FxuBJiqNpEYm0iMTSTmPhFv7HG5TSTGJhJjE4mxicTYRLzl94nE2ERibCIKbYp3nyxhkyfGJk+5TUSBTSTWJk+MTR5qU6xNXEaMTb4Ym3zJbYLLBf7YUYgMU61NJI5NRCubfDE2+WLuk0+9TfHuU4iNbxNxuaLrwGlhEy8SMDE2MTE2MTE2MTE2MQptEmLHSWGbSAKbSIxNRIZN/vAQm4m5T6nYxMTYxMTYxIRtEsLjCF6MY5M7jk3u+DYxHk+F44hNFeyobBMj0yamok2CxycJYYSNHvMMF7WJcJWOOQ7BY0dBGCapTUwCm4iONlW4T+FjEnOfqtiU4D5FBFGelY7l3CfRk8AmwsAvAEFP9TbxIhLWJ8Edfl9hGxFp93gBCdtynknc5wbdicdGvAB5Y6MYmwwd7zFVx7CpzjWAxPMn3lX9XIMXKs4PRYYFTh8HBMFy81zelWT+FGsHa4F5bjybIuWVApFRs94ggegUN1KLQktoJebPn4+cnJzoq2HDhgCAwNDR0t9LRyJw6UgAgP+KCQj0HQ4AKBt5K4IXDpSOx92N0Lk9AQClN88G36GrdDx1AfizigAAJTOWQWjcEgBQPOcZCAUNpOOFr0DMzgc8PhQvfAXw+CBm50vHAISCBiie84x03LglSmYsAwDwZxWhdOoC6bhDV5TdPBsMAYJdeqJk7N1S2i8YiNIRt0rHfYfDf8UEU20qeegFeN57HWKturJsKr15NgAgdG5PlI2TbApdOBCBUZJNob7DEbxSsik4ZCSCQySbgldOQChsU2DUrQiFbQqMvxt8V8km/6TZEIokm4J3LoAYtilw7zKIYZsCc5+BGLYpsOgVICcf8PqkY68PyMmXjgGIBQ0QmCvZhCatwN8v2SS2LgJ/10Lp+Oxu4CfPkY679YQwcZp0fNEgCKOnSPnRbziEqySbhKGjIA4bJX3nbxMg9pdsEsdMAS4aJB1fPw3oJtkk3joHOLubdHzXQqC1ZBM7ZxnQtJV0vGAlUFeyiVu6OmoTt3R11CZu6WrJjroNwC5YKU08mraCe65kE2lTBNcMySamYze4pko2Md17wnWTZBPbcxC4sZJNzIDhcI2QbHJdMQquKySbXCMmgBsk2eQeNwVcL8km983TwPaQbPLcMQfoKNnku3ch2LaSTRnzloFpJtlUY/FKMPUkmzKfWA2SK9mU+YRkE8nNl44BMPUaoMbilZJ9TVsh6wHJJq5tETLvk2ziOnVDjTslm1w9eiLjFskm9yWDkDFesskzeDh8IyWbvMNHwTtcssk3cgI8gyWbMsZPgfsSyaaMW6bBFbapxp1zwHXqBl4AsmcuhKtQsin3oWXgwjblPbYSbNim/BXlNuWvKLcpf4VkE1uvAfIek2zimrVC7rzHUPrW63CdVYjsmZJNrnO6IftuySbP+T2RNVmyydt7EDInSjb5Lh2OjFGSTRnDRyEjbJN35ARkDpFsyr1+CjL6SDblTpkG3wWSTXnT58BzjnSf8mcthLudZFOtBcvgai7ZVHvpSnD1JZsKnl4NJjcfxOtDwdOrQbw+MLn5KHhasomr3wC1l0o2uZq3Qq0F0n1ytytC/izJJs853ZA3XbLJd0FP5E6RbMroMwi510s2ZQ4ZjuxrJZuyrhqFrKskm7Kvta5NtaZJNmVc0BP5t0o2ZfYZhLwbJJuyhgxH7mjJppyrRiEnbFPu6AnICtuUd8MUZIZtyr91GjLCNtWaNgfezpJNtWcvhCdsU8HCZXCHbar7eLlN9Z8pt6n+M+U21X+m3Ka6j0s2uZu3QsFCySZPuyLUni3Z5O1sbZu4DB/YvHw0WinZ5KrfAA2WldtUb5Fkk7ddEQrmSjb5OndDnbvvx8k3X0eN7heg1m2STVl9B6HmjZJNOUOHI2+MZFPu30Yh92+STXljJiBnqGRTzRunIKuvZFOt26ahxoWSTXVmzIEvbFPB3IXwhm2qt6jcpgbLVsIVtqnRytVg8/JBfD40WrkaxKfSphnSfapxYU/Uum0aQiKQ028Qat8k2ZQ3bDhqXifZlHf1KORdLdlU87oJyBsm2VT7pinI6SfZVDB1GrLCNtW7Zw5qdJFsajBvIXztJZsaLVoGTwvJpqb/eAbuBpJNLZ57BVxePhifDy2eewWMzwcuLx8tnpP6XHeDBmj6D6nP9bZoiSaLJZsy2heh0QPSOCKzS1c0uGc2ACD7op5ocLs0jsjtNxD1bpbGETUvG46CsZJNtf8+ErX/Lo0jCsZOQM3LJJvq3XwrcvtJ44gGt9+NnIskmxrfOxtZXaRxRJMHFiCrg2RT68eWIaOFNI4oXP4MPGGbOrzwClxhmzq8INnkystHhxckmzwNGqBwuWRTRouWaP2YZFNWhyK0ekiyKefcrmh+/2zwIpB/UU80v1OyqfaAgWh6i2RT3cuHo9E4yab6I0ai/gjJpkbjJqDu5ZJNTW+5FbUHSDY1v/Nu5IdtajlzNnLPlWxq/VC5TYVLlqFGS8mmDiuegTdc9jq+WG5TxxfLber4omSTt34DdFjxDEIigbdFKxQtfVyyo0MRCudLNuV27Yo2M2cBAGpdfDFa3SXZVDBgIJrddBMO/N//od7QoWgybrxkx4iRaBS2qcm48ah/xRWSHZMnoyBsU6u77katiy8GALSZOQu5XSWbCucvQE7YpqKljyMzbFOnp56GL2xTl5dehisvD4zPhy4vvRy2KQ9dXnoZAOCr3wCdnnoaAJDZsqVim5pPnizdmyuuSGpTk1tuRc3+g5Lep4z2yctepD6dtaq8Pp21SrpPbP3E9YkXCWp06YZ690htRNaFPVEwVWr3cvolb/fktOWJ+txkY6OcJ8vHRjlPlo/3sh+R2j2mWStkzJNsYtsWwXev1O6xnbrBFx7vsT16wn2zZBPXaxDc4ySbuEHlY1j28lFgL5ds4v4+AexAySZu7BSwPSWbmBungZwn2cROnQMSHsOy0xeCtJFsEmcuA5pINokPlo/LxUfLx+X8I+Xjcv6R8nE5/4Bkk9i4JQL3hucaZxUheKdU9oSirgjeMhsAwHfticD4qvOn2DlhcODVIG4PCB+y5DxXEIFQh64ouUmyqbp5rr/PcJSFbfIPHgn/YKk+lV0xAf4+kk2lI25F4ALJppKxdyPYRbKp5KbZCIVtKp66AHwryaYz05eBbyTZdHp2uU2nF5TbdHpBuU2nF5TbdHq2ZBPfsDkoFK0IBoP4/fffsXPnThw7dkyTc9pmzcFAIICMjAysWbMGl112WfT9MWPG4MSJE/jXv/5V5TeNGzfG7bffjttuuy363qxZs/DWW2/h22+/jXsdv98Pv98f/V8URYSCAXzbpxDiyWPRJw8kFJSeSAgCCB+qeOz2ADxffhwKgQi89BQnFAARBOlJSDBy7AMCfhAxclwGiCLg8QH+UunJl9sL4i+Vnji4PdIxwwAuN4i/TDrm3CCBMumJKMeBBPzSUxCWLT9mGJBgQHoyFz42yyaxRjb8V06EZ/UyEMIktElk4tsUYjjJCyIYkLznSDU2iQJIKFTxuBqbeFc1Nnl9gD9sk9cH+MM2eX1AWfg+ebwgZeH75PGAlJUiBFLRpuhxNfeJq94mQVRnU6wdAU46hiBIaff7ATFyHN8m6ViyiS8tlZ52utzS92OPWVZ6QhrwS39ZVjrmpPKGQABC+J4hGCh/4hoKSucQBSAUkp66CpFjySbw0jEfCkn/e2Lt8AIB9TahrBQ8kbzsUKbcJnCp2QQ+BD6ovU1gGKBGJjJH34Azzy4DRKizKeK5FQwiwMa3ibg9EMM2ScfSfSIeL8SwTcTrhRiIHPsghm2SjiWbiNcHMWwT8XjDx5I3lhi2ibjdEMP3ibjc0m9ZFoTlIIZtIiwrHcuwqbr7ZAWbBJaTzslyIBwrHXMcCMNI15VhE3G7IUZs8ngghsI2eTwQQybcJ876NgluL8TSsE1ej3ScwCbGl4H8cTfi6DP/kDwu4thECCOlJ8Ym4nJD1MImnw9iWdgmn09KoyhKx6Xh++RVZlPl+xQsq96miOeWqJFNPC+C8fkghG2SjiWbGJ8PQtgmxusNHzNgvB7pWIZNPFNe9ki4jRADAem4GpsgChDDNkEIH1djU9DlhRC2ifF6IYTvUyo2MW639H2GAeNyQ4iUPY5DsEyyg7AshHg2RY5jbYq1I+aY8UjtXuRYCNtUwY7KNvn9MfYlsIlhILi98W0KH5PwfYrYEWsT6/Wi6Q034NflyyGEQgltYsJlL55NYigEUUObGE8190mGTYRhIMi8TxGbWD6Y9D6xYuKy5wokLnsuX+L6xHJMtW25i03c7rGexG05KyTuc12hxGMjNiPx2Ihlk4/3WC7x2Ijhk4/3WD7OeC8UAoTy8Z6bJJ9rMEg81+AClecXVedPbDDxXINlpWPBVwNlf78ZvpeXSrbZdJ5b4dhCc3eSmY0OH/+c1uvlRdYczN56NYhQqvj3IuPDqU6vp20enj59Gi+//DJee+01fPnllwgEAhBFEYQQNGzYEP369cP111+Pc889V9X5bSMOAtKGJF27dsWyZdJTBEEQ0LhxY9xyyy3VbkhSUlKCd955J/pejx49UFRU5OgNSeR625q9foPIcgheOBCujf8F4UOqzqHHmoNW3pREi1OluhmJFdYb1AOz15jRbf1MjoO39yCUffSuNChNEbrGoLGYXS7TGUV1kuOQ1XcQTn+gTT2zIkatNQjYf71Bo9cZtFM7kcoagITjUDBgII68919JiE1T5GyAkmwzjFQ3KEm0OUkqG5PIuXayzUlSPb+c78jRJKywIYncc0jn0WZupjd2jiqlG5KUaytZ3/5dtTh4+uzX0jIPH330UTz44INo0aIFhgwZgq5du6J+/frw+Xw4duwYvvvuO2zcuBFvvfUWunXrhmXLlqFVq1aKrsHplHZduP322zFmzBh06dIFXbt2xZIlS1BcXIyxY8cCAEaPHo0GDRpg/vz5AIApU6bg4osvxiOPPILBgwfjtddew1dffYWnn37aTDN0RUmDyRBzBULCh+Be/07yL1IsBUvsNRGxCyyjk0AYCqFs3ds6nJhiBLS+mYeiOhkK4fR/nVvPjBQGKZTqEEMhHP43HTdSKHrACwALa8/N7CwMUiipsmXLFvzvf/9Du3bt4n7etWtXjBs3DsuXL8fzzz+PjRs3KhYHbSW3Xn311Vi8eDFmzpyJjh07Ytu2bXjvvfeim47s27cPhw4din6/R48eWL16NZ5++mmcffbZWLNmDd566y20b9/eLBN0RU2DaWYjK7o9KL3x/uhCshQKRQfcHmTdMbN8YW0KhSIbubsYE48HtafNLF+gn0KhxEWO11t1MB4PWt93f3RDDwqFIg+5ziAhjs7NKMYgMupf6cqrr75arTAYSygUwo033ohx48YpvoatPAcB4JZbbsEtt9wS97P169dXee+qq67CVVddpXOqzCcVkc80D0KeB7dts7QWB4VC0QeeR2DLJs3qmZuhocVGQ70HrY8Y4lHyxSZp/TkKxWDSpY0QeR7HNm+S1oKlUNIAw504eB7MVmvOzajXoLNQK/KlszgIAI899himTp1a7eenT5/GgAED8Nlnn6k6f5pnrzPQorE0o8ElfAiuzz+07JoWFH1Is+UhzIcPwf+/D6XFsCkUimJkeQ/yIRSvp/WMQtETMRTCnx99RNcbNJlE6w1S7A3hQ+A207kZhWJV7rnnHrz44otxPysuLsaAAQNw9OhR1een03QbwxBtRT2jBULR7UHJbfMt57ru9CdTchY/TkfkLBxtS9weZN+3gIYV2xzHlk+bkEwgJB4PCmYvoGHFGkHFB2ejVuBiPB4UPvgQDSumUHRCdHtQNpXOzSj6I7iI6lc689JLL+GGG27A229XXOe6uLgY/fv3x59//olPPvlE9fltF1ZM0beBjJzbkDDjUAjuT9527M6OEViGaLpjcbrj5PApXTYl4UMoXfe2ph5NNLTYHJxc9u1AovophkI49e7bjvVo4ojzNiXRsz55GON3LE4HxFAIh/79jmPrGSW9sOTD+lAILovNzagw6ExoWLE6rrzySpw4cQLXXHMN/vOf/6Bnz55Rj8EjR45gw4YNqFevnurzU3FQJgwBkEaNkyENsciDfLs5pVMk8+ZQK7Qksl+NzscmOKES4TDZfZF7qkQDkoCMZUYSeTHJmWwlCi0WZNyzVK+v5rxaX6vaNKTQ6cUt7zyP4JZN6k9aDW6dO2cqPsbHih6E6SRYVls/RR6BrzaBBQyJydBlZ/MkcArLXqpiohLvQV5UVzHk1Ce15dujoBxoISSm2jYYXY9VeQ8KIZz+PFzPLNgWmoWce5+sPCY6R7K6mKxtSDauSZb+ZOMNOeOmZNeQk4fJlsWRcw45gqCcOViieYXSc0nnixzxwHb1czMq5FHkIhKoGi+p7O4dxYQJE3Ds2DEMGzYM//rXvzBz5kwcPHgQGzZsQP369VM6NxUHTcCldIRtU4JJZgai24uSqQtQ47HpIIGylK5VnSiWitACxJ+ApdLxxUun3A4+ERGBUYu0qX2SGREV1U5QIhMTtWsSRkRFvcSTeBMnM4WauOmJl3ceLzLvW4gzD0wD/KnVMz2oTuTQW3ykyCeZUGtFwdJoiMeL/FkLcWzONIgK6plaQSbVvk1LqqvDeg51Kg8vtA5DjhUb9SzfkfuvREjUGr/OfaeWMB4vWj20AL/cMx2CBfszoGqd1jtf5ZSd5MKYvuJfsjQYIf7J/Y6cMWhSMVPmONpoEVBOPopuL0qnLoDvselgg9asY3aeRzN2aGgptuDuu+/GsWPH0Lt3bzRt2hTr169Hw4YNUz4vFQdl4mIJBIMao1S1IqtEsCZrvEUEUeOdF+BCEERF3saKj3o8qRJEbSdgvKDfEzWGJSnf98hYRm0ItJfTpuzJ8VyMBxs2QDfvB4t5skXGF0ntDQUQeH0V2FDAkp4WbMwgOp080OyEr1I7aIbXmuXhAyh7bRVcfED2k/CAYA9BJhG8xv2kXMr7K33OH/Fq0zuUOvb+q/V+TJWMOEKGZdtiPoA/X3peUT1zGnLbjFQFP0AbUS4V4U8rwS8Wo8Q/+R57enkAqjuXyAfg/dfzYPhA9D07i3HxMNO7kXpWliMwgJrnekq6yuXLl2P58uXYu3cvAKBdu3aYOXMmBg4cCAC44YYb8OGHH+LgwYPIzMxEjx49sHDhQrRp06bKuY4ePYqzzz4bBw4cwPHjx5Gbm1vtdZs2bYrffvutwnvz58/H9OnTo/9v374dkyZNwpYtW1C7dm1MnjwZd999d1Kbrrjiigr/u1wu1KpVC1OmTKnw/ptvvpn0XPGg4qBM7BRWbJuGRxTA/rJNOpaZ5ljxSa/OKiI6ap6POg9kY8cqqUyYUhEaWagXFyN4w61SqkKjWpGxOljWmhOmSLGqNhxbFIAftiUMw6o8WJYT2q0HFSfK5qSBkhwq6MZDgBCpZzLbereeyTEIs8P/9X4oJPVp+py7MonCbI1e79EM0VqWOCoKKNuRuD9zGkq8Yo0S/AB53v1qw4nllj81kSZGhf4qiQrSUvhTcs748ygR2P2t1I/FOYlt5pg6ksoDMZKmDzXiITIAdBYHGzZsiAULFqBVq1YQRREvvPAChg0bhq1bt6Jdu3bo3LkzRo4cicaNG+PYsWOYPXs2+vXrh19//RUsW7EhGD9+PIqKinDgwAFZ1547dy4mTpwY/T8rKyt6fOrUKfTr1w99+vTBihUrsGPHDowbNw65ubm4/vrrE543Jyenwv/XXHONrPTIhYqDMmEYWqG1RnB78dcdj6PWI7eCSRJWHBmc69Up6S06BkOipmmPJ5zFnp9hUxTXUhQXgdTFPat4MiZCawEyFaoVLz1euOcuQ2Dm5CphxdUOzK0g/lDvNFsg24PV6Xi9yJi3DCX3TwbKkvRn4byyUmiwWiJepVbwJtVLqLTCg6FEWoUV8l4L5HhrEq8XjRYtw+93TYaYpJ7ZETXDTyuJfUquGe9zJWKfWgHbyDX/lI775eavkvPKmdPEnk/weHH8jseR98itYBKE7juh/6I4nyFDhlT4/8EHH8Ty5cvx+eefo127dhWEuKZNm+KBBx7A2Wefjb1796JFixbRz5YvX44TJ05g5syZ+O9//yvr2llZWahbt27cz1555RUEAgE899xzcLvdaNeuHbZt24ZHH300qTi4atUqWddXCxUHZcIwBCJ9XKIpRAgif/UjYIUgSKW8FSqpOnp0QrEDaj1vrSBqIzgqDaNWa5NW4dRahX2Z7cmYCG81LaiZof1VBMtQAPzTi+OGFStdX9JIMdQKE3KKfGKbjGSep3IngGZ5sKoiGEBwxWKwwar1zOg1yMzACvVVL09Mq4d/WyHvtSSht2YwgL8ej1/PNLm2DutUa30NQH551ErwU1L+U1nXT8l1UtnpVwvxT6s1/tSeG1A2t5B7To4PIHf1YnB8QHenGCYN59WV57vpTKphxadPnwYh5fnp8Xjg8Xiq/R3P83jjjTdQXFyM7t27V/m8uLgYq1atQrNmzdCoUaPo+z/88APmzp2LL774Anv27JGdzgULFmDevHlo3LgxRowYgalTp4LjpInj5s2bcdFFF8HtLh+59O/fHwsXLsTx48eRl5cn+zpaQ8VBmTCE7o6jOaIAdv/P0jGpKKjo1WHEio5GPPVKdZ1BI8KoY9HawxGAJuHUqYR2abEeo1Iqhngbe/GqA2YB+G2nNJGq9JmSey2IqQ3G1WAlz0yKfBJ5niqaZOq9jqimCMDenVJzF27z9N4kiVIRrUWySJ9jl82RzA7x1pLq76UAfs/OhOH7ZtY3Vsc+Um45NEPsA7Tz+tNb9IumwUDxT+24Wu64X835q027IMC97+eK5zdR0HKalkYcZk8qpBpW3LBhQ5w5cyb6/qxZszB79uwq39+xYwe6d++OsrIyZGZmYu3atSgsLIx+/uSTT+Luu+9GcXExWrdujQ8++CAq2vn9flxzzTVYtGgRGjduLFscvPXWW3HOOecgPz8fmzZtwowZM3Do0CE8+uijAIDDhw+jWbNmFX5TUFAQ/aw6cfDGG2/EfffdJ2vjkddffx2hUAgjR46UleYIVByUCcOEC3H0/3DopFV2/7ARkQmT4PHh0N1Pod7DN4Dxl+q2qUgsRnZwgiCqFiD1DqMG4nu36RVSrQUphUqbOGkyXJysdDHR6wP/wEqw900AKStVfVozBmhGhIZbATkiqNHCrBYE+KqTwFR3Q7csXh/YBSvBT58AhOuZ0zy6kuIAcSr2ftklbM4sEVOOGJlqmipfg3h9qL10Jf6cMgFiTH9mFwFXDVqKfUpEQb1DfJX0BerEr9TDfpPlvZp0qRlnKxM9FZ9eukZkXuvx4ci0p1CwUJqbaZUuvVCz7qSZ0CXKtGP//v1VPAfj0bp1a2zbtg0nT57EmjVrMGbMGGzYsCEqEI4cORJ9+/bFoUOHsHjxYvztb3/DZ599Bq/XixkzZqBt27YYNWqUorTdfvvt0eOioiK43W7ccMMNmD9/fkLvxmTUrl0b7dq1w/nnn48hQ4agS5cuqF+/PrxeL44fP44ffvgBn376KV577TXUr18fTz/9tOJrEFEU02noqhhBEHD82FEcGNoaYsmZhN/lOCAUMihhFkSpUCoSBsHa9eH68yCIqM2swiphaGoFDbVis5XXHNJS3FErNFpBYDLiHsWzUyQMxIIGIEcOaFbPjMRoz8tEWCgpijB6AC8nn+SkyU75LRIGqNsAOFyxnlle1EwRq4mfascAZtth9vWVYOp4gzBg6zUAf+gAWGK//kwJWgp+egl9qT60SqVv0mqX31QFwFQequu1JmH0/CoyWCQMQrXrg/vzINgUn/iYJdxZOVyZZGSiwds7kZdfE4zdlE2NiGgr4pG/A6IKpwXiAyl4TXUe9unTBy1atMBTTz1V5bNAIIC8vDysXLkS11xzDTp27IgdO3ZERUhRFCEIAliWxb333os5c+bIuub333+P9u3b46effkLr1q0xevRonDp1Cm+99Vb0O5988gkuueQSHDt2LGFY8ZEjR7By5Uq89tpr+OGHHyp8lpWVhT59+mDChAkYMGCArLRVhnoOyoTjADFJbjEMQSR03CkehUrETuWNsQj2rwNSuGM1ftZK89GsdrbyhERNvySIyvLQ6BBp1Wg4flc7CNPKe1EtWq3jmIjqQ9gF4Mjv0qF1x0vVY9IgL54oaeHxpmqU7KgoB17QbmkCe+W3AByuWs+c6P0aK3haLmRaRTsraLymoBqhz3L5WA28AX1ZYgSwR3639pgnRbQO45W9PqHOnnxyUdMnpSIAaiX+pSZ0Kvt+quJX4p8LYP/cn+T6KV0+fA7jGj3OQmoHsVBazEZQGVYMkniTrqTXFQT4/f64n4miCFEUo5//85//RGlpuYC5ZcsWjBs3Dhs3bqywYUkytm3bBoZhUKdOHQBA9+7dce+99yIYDMLlcgEAPvjgA7Ru3TrpeoMFBQW49957ce+99+L48ePYt28fSktLUatWLbRo0aKCN6UaaBGVCUOSb0jCVAo7tooXm1ziCXF6NKgRwVHw+LDvnhfR+KHR1bquW+XpTzKRMpWOUlAYQhxJipq8SUW0Vn8vtJkZp7J+oxHrNSZCb3EykfgoenwoXvgKakwbCZIkRKQyRi2unhCD29FIFdFaNLM6WpgrlcP0yrcIoteHwKJX4L5rZJXwfb03RjKC2ORbOcRdqacmL8rrv5WM5+wi9CmFFy1gm9eHzCdWo/SWEdHwfadgpneflmv16YHcS6oVAZONEY0I6wWUjbP1uA0MI83N9t/3Eho+cG3SsOKKv009QXqLeFaYU6Yq3DgJI8TBGTNmYODAgWjcuDFOnz6N1atXY/369Vi3bh327NmD119/Hf369UPt2rWxf/9+LFiwAD6fD4MGDQKAKgLgX3/9BQBo27YtcnNzAQBffvklRo8ejY8++ggNGjTA5s2b8cUXX6BXr17IysrC5s2bMXXqVIwaNSoq/I0YMQJz5szB+PHjMW3aNHz33XdYunQpHnvsMUVZkZeXp/nmJVQclEnlNQfjf6dyhbfuZCDeQFfrRrM6ISrS+It8GZouuQEsX2aZJynVeUrq0aFE8kfJgFCQKZBVNw/V2g5Zp9PsminUJxOFeq12q45HRHRMlMVisAyZsyeCBMuqXQi5uvKiZpBrxQ1tkmHUzuVWRotdOtM17wBADJTBO3MiEIhfz8zYGEkrtPQG1ROlmybFWxMzHnIFRMejsB+V40GpWGwMlKH0rglggmWG9A1KMEo41cPDT4v1+YxEjQiYqgBopHef0p9q2T6RQBnqL7oeJFAWc35lCdJS5NNj/mVGe243hyGn8Mcff2D06NE4dOgQcnJyUFRUhHXr1qFv3744ePAgNm7ciCVLluD48eMoKCjARRddhE2bNkU9/ORQUlKCnTt3IhgMApDWPnzttdcwe/Zs+P1+NGvWDFOnTq2wDmFOTg7ef/99TJo0CZ07d0atWrUwc+ZMXH/99ZrngVLomoNJiMTFH7u6LVCaeM3B2MbGio2AEaHOSuwWAQhuH5hAqWnRjmaEf6tZl1JuOs0ud5U7XK3Sk8ptMivEX+91meSaJULyHiT+qvVML4/GVMVQo8LAtSoaRqzBpbeHptqlECgSIgB4fECcehaLldeHjYed7rES70yldjl97chkKA2VVtr3K5qse31AWalpXoxmes4qX6NOG9HPimHcajwBU15/UKVQpVbfUitipSKoJRozAsqFPy3FPT1EPT29CePNP4gvEzXf+ImuOXjsKPzHrgagxgPcB0/+62mdh3piEX8t68MwUPSU0mplVRCMaQCV2M27fdh9xwto9cgYMAFjwkOqrA1o0KPQ2A5CaccaCslLpyCIlit3WqRHrrdk3N8qXMdRK1LZqVoOSry0BI8Px+a9jJr3j6oQIqKnRyOgPEw+Fj3TFSs8alY0DK53ehVpufkux2M13RA9Ppxe8AqypicO309p13UzsJOYqaRAKrwJTlw7UgmKxVG9drr1+sAtXQ1y+4gq4ft6YKU2Tmk4rxahuErPZTRqRMCEXoc6h/WqGRNrOYaVM/8Q3D7smfYimi8cnXBupjRdWs5P9BzXazVvkc4VL4zAopXJBASLzVkpEtRzMAkRdfvkyMKknoNWRLSYt2AsRnkOmuU5lqrXnJJ0O3WX7FTundFelEYWMyX5Ut1TYKM8mCIDcbM9poy4P0Z5PJoh6qazMCKHZN4WlTF7kyQ52O2eK2lj1Npm97Uj1aDGZDliolIPPIaEPXTDnoNat4JWXi9Vr11t5ZzX7DWbE6FGBEwmLBkR0qtG3NJrPb7KaVE6NzPDu1GL68uFJEinqjm2LxO5r/6Y1l5vEW2l9IR6z0FfLvUc1AvqOagAzsIdZGVC4YlHokYtVUQV3oIVfg8CwesDEyoDqbSenJbCjhnegdJ11Z4n8nt56RYE0VI7cWlJKJTKvTNWGDdqXqHUG1IkBIIvA0zID1LhWZCxk1yzwpIigoER98fjqniReONGC88/K8AydC1GJUj1zAcmWFapnsXH47LHGoR2EDGjyGxjUlkfkwm7udnh3qVKRAhVk1fVCX9qzhUr2omEABk1gGDl/kw5dmrTFK93J9M2OcKf1fNJjQgoxyalY3ijBD+9veZEhPuyOHMzvdKlhb6j53xX02tavUIZiMCIUDcXSYMOWCahUAjr16/H7t27MWLECGRlZeHgwYPIzs5GZmamqnM6VFLQHo4jQLDq+2Y0RomICHZ6CplaCY+C24edNy1H4bKxYAKlFZ7A2OVBQAVxKNX8UCi2KhUR7UYqoqfcUGy1qAmj1+7iCr/u8eLI9KdRf26lneccWm6qYt4gwsKbusrCiutMWRXB48Vf9z6DOrNGyd7hUdrFWN90pUpE8LaDGCZXyNQitNsO904NsfmSkiddpQxWc654PxG9XpTNewbeu6vuCi4Hu7Vpam6BEk8/u643GItaEVDu+M2ozThUr2eo8f0R3F7svmUFWj92naoln1JNT6pzSys58oTs9HDNBEJ2HySbzG+//YYBAwZg37598Pv96Nu3L7KysrBw4UL4/X6sWLFC1XlpWHESIq6vJWPbK9qQxGj0DqHUMzzZTo2n1vmg9r7pGSqdKE1GlfFUyrOeeWN2+LaWtpm9eY2R2EHYoKQvZi19oQarCmJqslALr0gb3bq4WPF+6iVG2e15mJpwXiU2yg49tkHGVZfEZGNWJbYZtRGHVuNss8N2tXCeSVXoM9qBR9Yc0ZeJGi98n9YhsRFt5XjpVVAbVpzneyOt8xAALrvsMmRlZeHZZ59FzZo18e2336J58+ZYv349Jk6ciF9++UXVeannoEyUbkhiZIMk6rARRWXhQA97BBEoy2sA7/EDKYeH6EVl4VKLfEjVQ1KPzWWEFNKkR1pSCcnWcyDLceaVU7XekCJhEKxVH66/DoKIUsW24uY1epHKhjYUilxEwiBUuz64P8vrmVwY1h4hxkB5/2A5QVOFyKVlaLcdwq/j2Wo1r7BkbbVIGAgFDcAcOaConll53bxYUumrFIce67D5RmwZM7LfTTSeSWan3qKf2WvyKU2DSAj8+Q3gOVZxbqZ2/qOFJ1+qcy89x7ux82VZ6aQDUopGbNy4EZs2bYLb7a7wftOmTXHgwAHV56XioAqUNFJ6CRWxA3OthTs9xMZYIg2p6Pbh56vnoMNzk8EEjdmtOBHxnvho0alpJTCmusZjPLQOTU41bamLe/pO0BiGmOZxp1aYFNwe7Jv4IJotuTEaIpLaWo7molSUSBcRlGIugseDP254CA0W3yA7rDgWBvby5rWeoKkuMZGoplQ96Ky2hmQ8sdLqc1I5Ap7g8eLElPnIfeB62fXM6nZrIdAqFqx0ypPY8xrZ9yayX674p7foZ7YnISBv/iG4fdgzch7aPD0pblhxKvMiK4h8qaQh3jwxWZrs1K8bjcio67kt3qQbhiAI4Pmqu3/t378fWVlZqs9Lw4qTEHF99U/sUCWsWG1DT1Jo3BQ6JChCb08AI3ZOloudwrC1Drs2+j7I7Yi1SJcRnbAZHjNa2mU5j58wZodsUyhWwKr1MxFmT360yjIt896scF0bFh8A+olVVvOMBLR3GlC1J4LO+WJ0KHIyAVCRl6QBop+ZobqAM7z5rLbmfywJ5zO+THif/S6tQ2Ij2spfgSshqggrJvChlntNWuchAFx99dXIycnB008/jaysLGzfvh21a9fGsGHD0LhxY6xatUrVeannoEwYQqrtgVMR+5Six7VEjb3HKhMZcFduyEXCoLhOc9T4Y4/iMCw5JGqcrR6GHZt2rRbXNWIHa7lUtikUEjVJF2PA5hPmeA+qt0skDMrqt4D34O5wPTP//gNVJ+JO3XGbkh5I9awlvAd3pdifEdsJ5WaHGke681TbZS13IjYrTyqv727FNQUro0TAExkGwYYt4dq/CyTJDbfCWnl6JsEK4aqVMasfl2OT3qKfmvth9uYb8a4vEgbFBS1Q48huWX2ZFUQ+K9R1oPr5bgUsklaK/Vm8eDEGDBiAwsJClJWVYcSIEfjll19Qq1YtvPrqq6rPS6djMiEy1hxkXfZRr/lgeYOvl7iZTHTkXR7s6jcFZ//f3WCCZZpdV1bjrAFa766seN0KGeghMuqBdgKoJqdJCssY54GZaqg17/bgwOW3o8XK24GyUtPCbCvP46wymKNQtEBwe3DkytvR9KmpYAKp9Wexy8fYy5PQXGFTK0EutonUSnAEzPHqq9zeW608Ke0HBLcHJ0beiTqPTUlYz8zoXozqW1PpO/US78zsz60m+qkZv1th442InbzLjV8H3or2q+9SNDezkshnpNNOrH6aLP1Wa3/NhqdhxSnRqFEjfPvtt3j99dfx7bff4syZMxg/fjxGjhwJn8+n+rw0rDgJEddXcXJHoCzxbsURCGu9Yivyxt3mWOHRSPQMuQa0b9T1FJfMDvMyE6NEOyN22dbSFr1Ck+MNhugAiELRHju161ZpA7QSK/Wwxyr30xTRUq8172wg0KklVWFPjzRbIaLPqLX8lIpfagQ/s0N1tUiDlA7riHx6OO4onedWmJ96M+F6entah8RGtJVDgvqw4npMeocVB4NBtGnTBv/+97/Rtm1bTc9NPQdlQlgCKBT9zAzfrCwqGCVYirwouyEWCYMT9doh99D3moQV6y1KMho+qxAEbcJo46H3hjJWRzDomZLLTXQXIrWY2IqEwZnG7VFj7w4Nw/cT5zH1CqSkGyJhUNy0g8b1rCJmh+8qIdIGmC2ARbwwU8+z8jZNK8HRKl59lYcLet6zVMcmIsOgrHkHePfsqBBWrHefY+Vw2eTn0CAhcc9rbj9vhhCmVPBTen4rhOgSlsXJBu2QcyD1uZmWHnxaiXyJ5sNyHWmUpIUPChXzIY3nZxTtcLlcKCvTLuoyFsXd3a+//oqNGzfit99+Q0lJCWrXro1OnTqhe/fu8Hq9eqTRGjCpNbqMzuKcUKlBM0OYFAVRkQgpcG7s7ToCZ/93DpiQP7VrKxAl1VClcU8BMeUdeRNjEWcE0zAy5Bc6rz+oxYSEd7lxuNdoNH/lXjDB1OoZQMVnCiUevMuFI5dci+Yva1PPEmEV4U0ODGMNMVPLPNNOcKxM5bV4NT69TKpr39Xaq+V4R3B7cGLgdaj3zD1gAmW6inZ2CpWNfw590m92/6/1/MZqgl/q3oOp/Z5nXdjXYyTavzUr5blZZbScp+nh9KL1OePOTW20BJneBBkRIlHerxAa9AoAmDRpEhYuXIiVK1eC07AzlB1W/Morr2Dp0qX46quvUFBQgPr168Pn8+HYsWPYvXs3vF4vRo4ciWnTpqFJkyaaJdBsIq6vzF3ngJQV63INNY2RUWHClUVHq6K3GKRlfuvt4ah3eLVdMGpCqnfZ00oAsPIO2hQKRT1G70CvFquJmVr2EUbZZgWh1Qo4VfiysqcgYP6GdnqtnW01wS/VcmDVcNx4aCXImV024xG3b/ZmAku2pnVIbERb2UuGQyQqwopFH5qK/0zrPASAyy+/HB999BEyMzPRoUMH1KhRo8Lnb775pqrzypIZO3XqBLfbjeuuuw7//Oc/0ahRowqf+/1+bN68Ga+99hq6dOmCJ598EldddZWqBFkVwhDD1xKMNHTxGhe90lJZBNPT41EgLI427ISa+7eCEXn15+H1C9EFlHtEJjyXzh6OEcxa99FKaBkGnvhCRNcJW6o7MAsMixPNuiD316+AkPp6FovLXZ63dhEmKBQ9ERkWJ5p3Qe6er0AEbeqZfKT6aHXRPrIrrVXaDC29CY0K+a4sGlhNcNUbwrE4fda5yPp5i6b1zCwvQS3ntXqOg83e0E5v4ccI7z6lZSxVgU/tXEMgLI41Pgf5+74ByxjfwGiy5qHJa/9HHGvi7gadvlpWFXgGEFXcKiICMHqYZUFyc3MxfPhwzc8rSxxcsGAB+vfvX+3nHo8HPXv2RM+ePfHggw9i7969WqXPMhCGmPZUQm/hq8K1jGxQWQ772/RHzSM7QHh1HZDIi/qHbOt6dn3gWBaAsRvRWBGjRFKWIfp5bKYqPnIuHOk4CLm/fwtGD9GimvYp3SatlPRG4Fz485zByNn3LZiQOYU/ItpbRXyrHmuJmWzMZC3VvDM65Nsq6xbqTTRfXS4c73opsn/dBkaD/t1opxM9xvN6Cndme2MZeX/09u5TI/al6kygak7HcTjYfiDyD28HQgFTy4BW8zul+ZDq3ClRukWW2HJeSbEeq1at0uW8dLfiJERcX92zuoL49QkrNhIh4KwmyU7hxGaFaFt/oqgfTtmlWyvh0WoTx3QumxSKnthFnLdqG6ClcGmmjXYpB9WhlzhklOBhZ+HO7Gg9o0UpNd6jSgU/pWKfFg4bTvDEi2B0BJ8eiJ4a4Bd+ndYhsRFtZRc3HIKKsGJG9KFliIYV64Xq1Qv/+OMP/PHHHxAqjTyKiopSTpQVISwDwtqvAIqVPPIYt3VsEAiLQ426o97vm1WFFQsBwfSnmnIxwsOxWlhim7UjtUTLcHA5cCyrqxipVnwUGBZ/tboQtX7ZCFbgrbUmpcz6azVRk0KpjMCwONr6QtTcuVEfD12FaOkNpysxbYCVhCxtl06I3enY2HsRb9hq6fKAxGKGwLA40e4i5H7/P1X1zKjwWDsLd2aPq80K8VYbxqu34Ge0uCcwLI40PR8Fez+rUMesKMyZXVZVYcc06wRPAEFFdli7BzOOZs2agZDqM3DPnj2qzqtYHPz6668xZswY/Pjjj4g4HRJCIIoiCCHgefMHxXpAWOPXHFRDZXHC0oIm68If9bug3uGvQBSKKiIv6C502kl8TAbLkrQLMTZjnkkYotvEi4XK8s65cKxFN9TZ9znYkGjL9SjZJPXQUoInJS0ROReOt+iGWrs/Ny2suFp0XhdVK6y2JmEUDUOFrbFeq33HNTznwqnW56HmL5vBKqhnRozljHJg0dMWM3doBrTZSEMNqYTvqpkbKg5hTnH+qSiNLIc/G5+Lgv1fVFnyyepzIis5wFSHaIM0UuzBbbfdVuH/YDCIrVu34r333sNdd92l+ryKw4rPPvtstGjRAtOmTUNBQUEVxdJJOxUD5a6vvvk9QALWCytON8Engt52V/a4TAUrhXJbbtKlE2bXCz08NbW8d2bnjxnYURRVg9xJTrrkB6UidhPSrShq6tWPWslz0inoLdjZIfRVLmYJc4BxO+NWxqydcpWKfVYJL46HVQU5qzrHiJ4a8M/8PK1DYiPayo8e9WHFbf00rLg6nnjiCXz11Veq1yRU7Dm4Z88e/POf/0TLli1VXZCiLXbwZqwOgXDY1+hiNP59AxgxJPt3Im9EuKh2jQ3j1uxUmmElwVJrjA4njocuXZXK8HCB4XDwrN6o//NHYASpnunp4WhVIpv0JMLqoqmW5To2P6xutx0QGA6H2vRBvZ8+jNYzK2MXcTjWa9gywmaFUGjt6o4dQ4CNRmA4/NGhH+rseD9hPdM/rNf4MYae4p3dxTlV19b4Huot+GkSXixDyBMYDvub9kLDvZ9o1pdZVahTS0rl1sbzdq0JMurCihnaLSZk4MCBmDFjhnHiYO/evfHtt9+mnThol7BiW8EwOJnbHDi0EURN66AT2ouP1usUWR+jqXeklbCC8KmX+KamJIksi9O1W4LsWQ8mdtmHcBlPx/Uoq0PO4FvPybpZITuR61IhIgVYFqcLWqLerk9AbLC8it13tLeKuMlG645OF6jUJljRk9JQOBbF9VoBP34EEqpYz/QW7OwY8ioHs+Y2ZvV3eq7/rbfgp4WXXlKhjmFxMr8FGv7+PxBiXDtL59jpB08IhARr5lWHqGBpjOXLl2P58uXYu3cvAKBdu3aYOXMmBg4ciGPHjmHWrFl4//33sW/fPtSuXRuXXXYZ5s2bh5ycnOg5tmzZgunTp+Prr78GIQRdu3bFww8/jLPPPjvuNffu3YtmzZrF/ez//u//cNVVVwFA3PUCX331Vfz973+XbV881qxZg/z8fNW/VxxW/Ndff2HMmDHo2rUr2rdvD5fLVeHzoUOHqk6MFYm4vtZ45EJLhhWnG0YIWnpMlqw6AbNqutRiNcFTD6HSTjt0U+wLFY3TCzsLw1Zrs4wWLi3jUWkS1KMuheuYINCZufOt3vmqJj+VCn5aeOHZUYizY5rjIbproHTGprQOiY1oK1szrlQdVtypZI2sPHznnXfAsixatWoFURTxwgsvYNGiRdi6dStEUcSsWbNw3XXXobCwEL/99htuvPFGFBUVYc2aNQCAM2fOoEmTJhg6dCimT5+OUCiEWbNm4dNPP8Xvv/9eRQcDAJ7n8eeff1Z47+mnn8aiRYtw6NAhZGZmApDEwVWrVmHAgAHR7+Xm5sLr9crKh06dOlUQGEVRxOHDh/Hnn3/iySefxPXXXy/rPJVRLA6+8847uPbaa3Hq1KmqJ3PghiSRApy57GIqDmoMTzjsadAXzQ98AFZGWLFogEeYXuKS1SYvsVg5bUqxoi1alymlgqPAcPit9SA02fmu4hAROwsGFO2wYr2yGgLDYV/hYDT+4T+2CCuuDruLwlZqs2i90R6B4bC/aAgabn9H13pmhhBh+PqFZtiYBl6KRoh9mqxBWM05BMJhT7P+aP7rOkVLPlkBOwiIorsGSu7+jIqDx47i6xrqxcHOxfLEwXjk5+dj0aJFGD9+fJXP3njjDYwaNQrFxcXgOA5fffUVzj33XOzbtw+NGjUCAOzYsQNFRUX45ZdfZEfSdurUCeeccw6effbZ6HuEEKxduxaXXXaZYhsAYPbs2RXEQYZhULt2bfTs2RNt2rRRdU5ARVjx5MmTMWrUKNx///0oKChQfWGlHDt2DJMnT8Y777wDhmEwfPhwLF26NKq+xqNnz57YsGFDhfduuOEGrFixQvH1aVix9hDCoMyTC8IyIKKMvDVi0duAPqcl4eW9rObZBpR3pnQiow+EZTXNW6VrWIoMi0CNfBA3CybFFe+tELJNMR4adiwDhoE/Ix9gmbihInaBtXt/EDNOM1voJBXWS7RpfloNlkGgRj7AMSC89vUsXTzpjJ7PmBZCbMJmGUaJfboJhAwDvzdPqmMWWvJJKZZd59Cq6TIBgRDwqsZL6solz/N44403UFxcjO7du8f9zsmTJ5GdnQ2OkySy1q1bo2bNmnj22Wdxzz33gOd5PPvss2jbti2aNm0q67pff/01tm3bhieeeKLKZ5MmTcKECRPQvHlz3HjjjRg7dqzsMeTs2bNlfU8pisXBo0ePYurUqYYKgwAwcuRIHDp0CB988AGCwSDGjh2L66+/HqtXr074u4kTJ2Lu3LnR/zMyMlRdnzCMdRsam8KBx9m//194IbXEeSvygu6DGZEXQXQeSBAwhnhAqoGw1hQvlUBYYt9JrUyUio0ceBR+/7LUl6bYhrG+ir+3e3mhqIcKxRXhEELbrS9I/5g0EdYSJwjCbMyYwfR+ga7xqgmcGMJZX4YXWdeonqWDOFfh2hb2otMSs+Zsau+teQJhxXziwKPDrlc1GTPaHV3mhBbd3dmOnD59uoKQ5vF44PF4qnxvx44d6N69O8rKypCZmYm1a9eisLCwyvf++usvzJs3r0I4blZWFtavXx9dixAAWrVqhXXr1kUFxGRExMQePXpUeH/u3Lm45JJLkJGRgffffx8333wzzpw5g1tvvVXWeVmWxaFDh1CnTp0K7x89ehR16tRRHc2rWBy84oor8Mknn6BFixaqLqiGH3/8Ee+99x62bNmCLl26AACWLVuGQYMGYfHixahfv361v83IyEDdunWNSqo8qAciACmseGe9QWh96N3EYcW8aFAnb8xkl/i09STTEiuLl/KxXvrNFC15hsOuVpeh5S9vgdU4DIvQHW/TlohQTAViCZ7hsLvNFWjx05ua1zOrYGdB2CpefJYSLG2IwHDYU3Qlmm9fk3JYcbp4z8VipFhnN3HO7OuqEwe1zWPiZsATDj83HoKz9r0ja8knCkUtPJFeamnYsCHOnDkT/X/WrFlxvelat26Nbdu24eTJk1izZg3GjBmDDRs2VBAIT506hcGDB6OwsLDCOUpLSzF+/Hicf/75ePXVV8HzPBYvXozBgwdjy5Yt8Pl8CdNYWlqK1atX4/7776/yWex7nTp1QnFxMRYtWiRbHKxuZUC/3w+3W2GYWQyKxcGzzjoLM2bMwKeffooOHTpUWYhRrkFK2Lx5M3Jzc6PCIAD06dMHDMPgiy++wOWXX17tb1955RW8/PLLqFu3LoYMGYL7778/ofeg3++H3++P/h/JeJ5zgRMIeCJlGSuGwBMXAAGsyFc4DjFuMCIPJnIshMBAqHTsASMEwUBAkPGAEwIgEKPHgIgQ4wEn+AEQhBg3XIIfYvjYTQIQwEBgXOAEf/iYAyeE3yccODEAgbAQwIITA+AJC4ABKwbDxyRsR6xNHACxqk3EDQZhm4gbjKiBTawXIARgGYSIF66oHeU28SILDoGK9hEWAmHBCfFsihwrvE+iCwy0v0/xbBIYDhwbCNvHxLeJMGAFmTYxLkCspuyJITCiMpuIjyDEeMAGy8L3yQMXXybZFD6utuyRcNmrYhMHEBK2iQuXvXg2idIx4wJE6VipTSE2A2xpKQhEhFgvWN4PQATPesHykk086wEXtilyLICBwLrA8fJsEggHMWxT7HEFmxgXiCiCEUMQXC4gxINJZBMbtqPKsWRHrE0iLyS3iTDgOS8IAUSOBQ9Osk+pTUzYJqGiTRWOXZ4KNpFQPDsS2yTrPpFw2YvYEXMsMhxYXrJJZNjwcQo2sW4QQbJJOlZ+n5xuE2G5cjt4gOc84EIqbGI4iAjbFHNcxSaIYCofK7WJ84INhW0KHwMieM4LNhS+T2E7xJjjRDYJnFfapZxzQQDnCJuq3Cc2vk1M0F+9TawbRBSqsSncXhhmU2wdko5JaZlkB2Gq3DPNbOK8YPhAFZt4t6+KTaKA6m1i3XHsq2pT1A4TbFJ8nxTaxLNuEAZSfyowqmwSXB4QgQcxwCZ4Pebep/AxywAhzgvo3UbwAYicCyIhYAzun3i3T5M+V+nYiLAkoU1KxnssA+XjCJ9P83G5EI7mqjwuJ4yo2VxD9fwpoU3mzp9k2RTzUD3dEVTuVkzCYcX79++v4jkYD7fbHV0bsHPnztiyZQuWLl2Kp556CoDkgThgwABkZWVh7dq1FbSt1atXY+/evdi8eXN0fcPVq1cjLy8P//rXv5LuLLxmzRqUlJRg9OjRSe3q1q0b5s2bB7/fX60tAPD4448DkNYsXLlyZYUl9niex//+97+U1hxU/MghkogNGzbgH//4Bx577LHoa8mSJaoTkojDhw9XcZnkOA75+fk4fPhwtb8bMWIEXn75ZXzyySeYMWMGXnrpJYwaNSrhtebPn4+cnJzoq2HDhgCAHxsMBWEJdtYfjJ31B4OwBN83vAK76/YBYQm+bTIC+2pfAMISfNN0LA7UPBeEJfiixY04ktcBhCX4rNVtOJpzFghLsKHNNJzKbAzCEnxcOAvFGQUgLMH7HebD78kB7/Li/Q7zwbu88Hty8H6H+SAsQXFGAT4unAUAOOlrhPWt7gYA/JXZCp82nyLlV3Z7fN7sBgDA/twu+LrxdQCA3/LPx7aG1wAAdtXuje/qXQEA+KlgEH4qGAQA+K7eFdhVuzcAYFvDa/Bb/vkAgK8bX4f9uZI4+3mzG3A4uz0A4NPmU/BXZisAwPpWd+OkT1qs86PWM3HGI92zdYUPoYzLRojxYF3hQwgxHpRx2fiw7Vy0O/w2St35+Kj1zLg2fdbqNhCW4EheB3zR4kYQluBAzXPxTdOxICzBvtoX4NsmI0BYgt11++D7hleou0+tbsKR/CKAJfiszVQczT0LYAk2FE7HyazGAEvwcYfZOJNRALAE73dcgDJvDkIuL97vuAAhlxdl3hy833EBwBKcySjAxx1mAyzByazG2FA4HWAJjuaehc/aTAVYgiP5RfiyzSQQlsGB2l3xTavxICyDfXUvwrfNR4GwDPY06Icfml4JwjL4udEQ/NxoCAjL4IemV2JPg34gLINvm4/CvroXgbAMvmk1HgdqdwVhGXzZehL+yD8bhGWwqfAOHMttDcIy+F+He3AquwkIy+CTjnNRXKMeCMvgg84Pw+/NBe/y4YPOD0PwZsDvzcGH5z4slb0adbH+nLkgLMGp7CbY2PFeEJbgWF5rbO5wBwhL8EfNs7GlcBIIS3CwTldsbT1euk/1LsT2lqNAWII9Dfvih+ZXgrAEPzcZgp+bDAFhCX5ofiX2NOwLwhJsbzkK++pdCMISbG09HgfrdAVhCbYUTsIfNc8GYQk2d7gDx/Jag7AEGzveG7aJYP05c1GcUw/EzeDD8xfDn5kH3peBD89fDN6XAX9mHj48fzGIm0FxTj180u0BEDeDU/lNsbHL/SBuBsdqt8Hn59wF4mbwR0FHfHX2ZBA3g4P1z8O29hNB3Az2NboYO9qOBnEz2NOsP348628gbga/tByGX1oOA3Ez+PGsv2FPs/4gbgY72o7GvkY9QVgG2zrcgIP1zwNhGXzVaQr+rNMJhGXwRee7caxmWxCWwafdZuJUTjMQlsH6Hg+iOEu6Tx9d9CgCvjyIvhr4uNdjEH01EMzMx8e9HgNhCUqy6mHDhQ+BsASnc5vi8273os2eN3EqvyW+6Ho3CEvwZ0FHfN15CghLcKjBefi24w0gLMHvTS7Gd+2vA2EJfm0+AD+1uRqEJdjV6jLsanUZCEvwU5ur8WvzASAswXftr8PvTS6W6lbHG3CowXkgLMHXnafgr/qdwLgZfNl9Go7XagPCEmy6YDZO5zUFYQn+13M+SrLrgbAEn/RZgkBGLgS3D5/0WQLB7UMgIxef9Fki2ZRdD//rKbWBp/OaYtMFs0FYguO12uDL86ZJNtXthK+7SO3FoYbd8W0nqb34vWlPfF8UtqnlAOws/LvUXpx1GXafJdm0s/Dv+LWlZNP3Rdfh96Y9JZs63YhDDbtLNnW5DX/W7QTCEnx5HrUpnk2lefWx8ZIFYNwMztRqhs0Xz5Fsqt0WW86fDsIS/FWvE77pNlWyqVF3bO8s2bS/aU9831Fq1/e2HIid7cM2tbkcu9tcLtnU/u/Y23KgZFPHsdgftml75xtxqJFk0zfdpuKvepJNW86fjuO120rtxcVzojZtvGRB1Kb1/ZZGbVrfb2nUpvX9lkbv08ZLFkTvU3U2fXvuZLT+eQ3+aHCuY2ySe58YN4s97YZjT7vhYNwsfj57BPaeNUjqqzqNw/7ml4CwDLafezMON+4BwjLY2v0O/FVfave+uvAenKhTCMIy+LzXPJzOby61gX0eRklOfRCWwYaByxCokQfBk4ENA5dB8GQgUCMPGwYuA2EZlOTUx6d9HgZhGZzOb47Pe80DYRmcqFOIry68B4Rl8Ff9Ttja/Q4QlsHhxj2w/dybwfo4HGzTBz91mwDGzWBf4WDsOmckGDeDX4uuxK9FV4JxM9h1zkjsKxwMxs3gp67jcfCs3mDcDL7rcQuOtDgfjJvBtovuxNHG54BxM/im9304Wb+d1Ab2ewDFdZqDcTPYNGgxSvMbgHEz2DjsCQSz8yFmZGDjsCcgZmQglFsTn17+JFgvi7JaDbH50kfAelmU1G2BLQMeBOtlcaphe2ztez9YL4tjTTvj2553gfWy+KPVBfj+gslgvSwOtemDnedNAOtl8Xv7S7G7yyiwXhZ7O16FvR2vAutlsbvLKPze/lKwXhY7z5uAQ236gPWy+P6Cyfij1QVgvSy+7XkXjjXtDNbLYmvf+3GqYXuwXhZbBjyIkrotwHpZbL70EZTVagjWy+LTy59EKLcmkFkDn17+JJBZo1qbztRsji39HwBhCE7ULcQ3fe4DYQiONjwH3158FwhDcKTZ+fju/FtAGIIDrXrjly7XodWO/8OB1v2x65yRIAyJ3ifCEOk+tR0MwhD81HUCDrTqXcUmLe5TMDsfG4c9AcbNoDS/ATYNWgzGzaC4TnN82e8BsD4Opxq2T1j2CMtgf/NL8EOncSAsg71nDcLPRSNAWAZ7CodjT+FwEJbBz0Xq6hPjZvH5JfNwplZzw9oIxs2Y0j8xbgYf93osatPHvR6L2lTd2Oiz7rOifa7qsdFZl+OXFpeBsAx+Outq7Gk2AIRlsKNwjKrxHgB80u0BZWPYTtqOy3c3HgiGCOAYvsq4/Lc6FwIAvmk5DgdqngsA+LL1zTiSWwQA2FR4u+K5Bu/ywe/NxQedpfa7uEY9fNJxLgjL4FR2E/yvg1SHjuW2xqZCqQ79kX82vmxt3flTIptOZzVKqENQ5JOVlYXs7OzoK5GgFosgCFFHsFOnTqFfv35wu914++23q+wUXFJSAoZhqmz8QQiBIGMd92effRZDhw5F7dq1k35327ZtyMvLS2pHRHcTRRErVqyooMWtWLECJSUlqvbXiKB4t2ItmT59OhYuXJjwOz/++CPefPNNvPDCC9i5c2eFz+rUqYM5c+bgpptuknW9jz/+GL1798auXbuqDYuO5zkYCgaQ+eJAcIFTMr3sXGBEAQwix7z0xKGCx50OT1Qi3oJgpKcoYhACWAiEAVfFs06p56D2NvnZDOysMxDtDv8LImHMs4kPaucNqeTJV4x9vMBo7w2pldeq6FJmk54engpsAs9b8gklE1LuDRlkveDCT5Ijxwg/Veb4OB6evCvqDRl0ZeCXpkPRevc/QSBq6g0p6+l4rE2sBwwfBOFDunjZae0NqYWHJ7UpsU28wDjCphDrwy+tLsdZP68BEQVH2KRV2UNIsJ0nLhMM2NfD04leq2GbQowbu9oOR6sf1oARQ5ayySXGqUMGe4GzjGhKGyFynCn9E+/OUGdTipEicLO6Rb8EWS9cUD7XEFlOk3F5gPHhx4bD0P73f4ZnwhrPNVxebeZPFplrKL1PvCsTZyZ+SHcrPnYU63P+Dl7FbsWs6EPPk6/JysMZM2Zg4MCBaNy4MU6fPo3Vq1dj4cKFWLduHbp164Z+/fqhpKQEa9euRY0aNaK/q127NliWxU8//YSOHTti3LhxmDx5MgRBwIIFC/DOO+/gxx9/RL169XDgwAH07t0bL774Irp27Ro9x65du3DWWWfh3XffxYABAyqk65133sGRI0dw3nnnwev14oMPPsCdd96JO++8E3PmzJGVD7169cKbb76JvLw8BbmXHFPFwT///BNHjx5N+J3mzZvj5Zdfxh133IHjx49H3w+FQvB6vXjjjTcShhXHUlxcjMzMTLz33nvo37+/rN9ECnDuq/1BgiWyfkORBw8Wu/J6oeXxT8BC3aKZWmCpNfYsvH6X7dZHsmh6jV6jLSSw2NOgL5of+MCy68dYqg5SLIOd1jMUCIc9Tfqj+W/rwFi0nlkFu/UldkuvkxEIh1+bD0CzPe9Zop4R1vx1BAEz19kzccMRkzZ2MCqvVeWtBmnjCYvddfqgxR8fghWNmZtZpR4ZgejKwMlxH1Fx8NhRfJx7jWpx8JITr8rKw/Hjx+Ojjz7CoUOHkJOTg6KiIkybNg19+/bF+vXr0atXr7i/+/XXX6O7EX/wwQeYM2cOvvvuOzAMg06dOuHBBx/EeeedBwDYu3cvmjVrhk8++QQ9e/aMnuOee+7Byy+/jL1791ZJ53vvvYcZM2Zg165dEEURLVu2xE033YSJEyeaXi4Ui4Pjxo1L+Plzzz2XUoLi8eOPP6KwsBBfffUVOnfuDAB4//33MWDAAOzfvz/hhiSxfPbZZ7jgggvw7bffoqioSNZvIgU47/WBICEqDjoNK04+LS2UWDC/qsPSEzoT02bFMi8HS99PimWxdHtKsWV7RNui9MYqQoaZwhzgfHGu6nUNtlelnVYpn6oxo1yn2g8pSLPoysDJMR9QcfDYUXyQO1K1ONj3xCtpnYcR9u/fj7fffhv79u1DIBCo8Nmjjz6q6pyKNySJ9d4DgGAwiO+++w4nTpzAJZdcoioRyWjbti0GDBiAiRMnYsWKFQgGg7jlllvw97//PSoMVnbp3L17N1avXo1BgwahZs2a2L59O6ZOnYqLLrpItjBYAZYAos0bXIsRIi5szb8SnY6tAScGTUkDUb7spu4QH2PhCZN9djMmLCwrZho5teSJC9saX4OO+14FKwZBKi+GbJOJLkmyhrN16wzFTIhP+8W/44lDPOPC9hajULT7ZbCCOf2ZHYntg23Vt4Sh7Y6x8IwLO9qOQYcfXzC0npktxEUwS5CrjBkClGn3wBRbU7xmCnnFExe21b8aHQ++DtakuVksepT5Kn2NReo3haKEjz76CEOHDkXz5s3x008/oX379ti7dy9EUcQ555yj+ryKxcG1a9dWeU8QBNx0003VruOnBa+88gpuueUW9O7dGwzDYPjw4dHdWgBJpNy5cydKSiTvPrfbjQ8//BBLlixBcXExGjVqhOHDh+O+++7TLY0pY/enPQohEJEf/B2EEQGYZDtLLCmORAUcK6bN0uJlRcRA8u+YgZHCJSEi8kt/A2FFkHgPOGLaHTt7xFQRPeNhY/so1iGeUC0SgrzS38C4CBhRmSBpl/ZUb2KFXLu0RXYUN+0MQwhyT+8FwxAQou+EPp2FuHiYKpCa5i1ownU1zGc1ZZgAyAv8DuKyngNFKmUwtp81tW67rJWnZiIQAj6F3YrTnRkzZkTXKMzKysI///lP1KlTByNHjqyyxqESNFtzcOfOnejZsycOHTqkxeksQzSseO1g48KKLTIQSCusPBGxatqsmq5KWH3ibekJpcXzTg/sIkpQHA4th1Gs3oZXB21LzMUqopparOKtaOacxLR7aFLeGyFaWaZcpYqcsmHBNljkMnD86v+mdUhsRFv5b95ohFSEFXOiDwOPv5jWeQhIuzVv27YNLVq0QF5eHj799FO0a9cO3377LYYNG4a9e/eqOq9iz8Hq2L17N0Ih8xcH1g2zwooZew9uEhGCC1tyrsG5J18FB5Nd1xkCCNbrRCipY7Unn5UhPil9ek2AQ8SFr+qORpfDL6oI308/r5hk4cvVYlMBg6INIeLG142vQ+d9z4PTwmW5molPOgpOTl0KgaKcEOPG183HovOeVeHdQR2IRURN08VVE0Qs89ZRNHmcGnOvQ8SFLTVH4tyjr5i25JMq4kWCmV2G42HFNFFsSY0aNaLrDNarVw+7d+9Gu3btAAB//fWX6vMqFgdvv/32Cv+LoohDhw7hP//5D8aMGaM6IZaHIeYLdW5njTQZENQP/QjGTQBYxLaAebsmVwsVLtMCvSbALID6JTvAMqkJpRERM4JdvXn0Q3nepovgmg4wEFHvzHYwjAg1ZUEu1QpO6VQfHbIUAkU5DBFQ7+S3YBgBUBGOZmVMF+NiSctdiNNnTcNEMIyI+v7vw32ZtdKWFIvlZVzskEaD4KEyrJjuAQEAOO+88/Dpp5+ibdu2GDRoEO644w7s2LEDb775ZnQnZTUoFge3bt1a4X+GYVC7dm088sgjSXcytjVuFmAsImABjmhcGAhoImwN64IWscfHWdMrwYqipV2w6LqSSalcx1XawEBAk9KvNa9nFcRMO+avBagsuMqFCrPWg4WIJiVfAW5AT3GweqpeMx3E5wpiKa0XjoeFgCYnvwwXd4uMG1PFbK+xGMxciy3txDmLzuMY8FJfFsGi6bQEajwVaX5GCYBDSEUQq6Bd4KutefTRR3HmzBkAwJw5c3DmzBm8/vrraNWqleqdigEV4uAnn3yi+mK2hiHWrNBWTJNMQnBhs+dadPe/ZH5YsdWxotcoFSyNJbauKxDjQsSFzTXHofvR5/QLEdFIyKTIQ9bmKwC9DwYSIi5sLpiA7kdWWiYUqzrx2bnicvotg5BuhIgLnze+Aefte8oy9SwVrLPpiXXCWh19TTOvK5MQXNicNxbdj6+qOjczO4LOTOJFcFn8XlqdEGEQUrP+hs6bUdkBnuexf/9+FBUVAZBCjFesWKHJuan0qidGNxo2a7QZCGjBfy6FhzjlCXA6YVUvy3g4TciMretJQs4ZCGhR8pmx9UylkEnRmGR9EL03msFAQIszn9qiP6tWXHZQeYgVRp0rhqYfLES0OLURrEu0/HrCiTBdjItgtriRbgKdDeZpDAS0KN2UvC+zotOC1sTOHbS6dzYoAxTrw7Is+vXrhx9//BG5ubmanluWODhgwADMnj07afzy6dOn8eSTTyIzMxOTJk3SJIGWgSVIacBvcGMgmt3hy4BARD38BLCAaKHJlHVSEgNddzA10mEQE6GSEMpARP3gD+aFYVVu+2g5tg6J+gkHCUVGwEBE/cD31lomQynVlQeblwW7bmhCqQoLoEFZpJ5ZRGBTglXG5manI93EORuNQRkA9fEToHQ9eLPLlFbE9g963DfOPmVBbwQw4FW044wd234daN++Pfbs2YNmzZppel5Z4uBVV12F4cOHIycnB0OGDEGXLl1Qv359eL1eHD9+HD/88AM+/fRTvPvuuxg8eDAWLVqkaSItAaPdbsWmCncWemIRggsbyVhcKMZxXTcLQbSssGrNVNkEu647qAZfTLPOiwjBjY2ZE3DhmZXgYLHdHZ3m0ekkkvUVVOStQIi4sTH/Blx47Cltdiu2EvH6RDu3p9Sz2baEiBsbC27ChUeW26ueWWVcaYV0mDEPMUucs0J+KyQEFzb6JuDC0pXq52Z2szu2H9A77Raah5tNCAxCKoQ+O3uNa8kDDzyAO++8E/PmzUPnzp1Ro0aNCp9nZ2erOi8RRVHWyMjv9+ONN97A66+/jk8//RQnT56UTkAICgsL0b9/f4wfPx5t27ZVlRCrIggCjh87itxPh4PwpdpfII0bCQEEf6EZauFXMKAD9KRYcDJO7DSxsmD+GYEAgr+Y5qgl7AFj9fA6O5UnSvWkoegrgMFfruaoFdwDBhavZ3pi53aWtj+WRwCDvzzNUctvg3pmJYHECnONdBPorHT/FVBhzKjF3MwKZS8eJvVVIpuB473eRF5+TTBMeopcEW3l5fybEGTKFP/eJXgx6tjytM5DABVsJzG7PouiCEIIeF7dWFz2moMejwejRo3CqFGjAAAnT55EaWkpatasCZfLperitkJDz8HqEF0WbUB1ggCojV8BWCus2KoQizhXxiLaKNw5XUsYA6AO9kgHlTtRq9076tHjDHwJhhYOva9SPftVeShWOmAXsbi6SazV2sk0hoGIOqHd5ofvW1XwqIwVwlnTTZyzS9mohgpjRh3qmJnRWRUcGsy6TzYvH1rCgwWvYrzE0DEWAP02CVa9IUlOTg5ycnK0TIulEV3EsApt1bBWrQmJbmwITsTFrmfAERuFh5iEyBJLeupZUbSMh/VyzhhCcOMT9kb04ldUDSuOaWssV7boWoXOxKGbpITgxscZk3BJyRPWC983m0pLHaQVdhFGbUKIuPFx3q245Pjj2oYVW0FE0xIrzCPSTJxzytwt4ZhRa4y4VzFjRyPvkeXG1BYkBBYhFUIfoeIgAODiiy/W5bx0t2IFmNLwO/gJAyOGcI77LTAkBBDn2qkltKtJBQISTL8cZBBCZ/FNMEwIiZ4Ciwp2QDYFKwuZFO2w6VqHDELoElwDhk1cz9KeyuMop9flRF60yXB63qiAYUV08a8B4xVBpzBxsIpAlW4CnYPmanLHjFqjZfRchbG+kfdGhhApUl2LoiEbN27EU089hT179uCNN95AgwYN8NJLL6FZs2a44IILVJ2T9qwyERkCUnl5E6N3IHZQ5wNIXU4uDgGgYcVysWIu0emLtSEA8nAQgJJ6VvF7VhNVE7aFFhWPKBqhw+RPC7GZAZCPA+btCm5XrP5QwkysIvRYiGg9Mzus2GpYZH6QbuKcE5eDUjdm1B6lZSm2HzfyvigWIi1SV61AAC4EoNy7XkQaLGcng3/+85+49tprMXLkSHzzzTfw+/0ApKX/HnroIbz77ruqzkvFQZmIHAMI1ln0UrROUlQTFN34pPhm9KrxJFw0rFgmFuxUGAJik0mdPVKpLUHRjY+Dt+AS1z9U1zPRVl57ieuI1YROivkoevBWTVsXhBsfslPQh18KFw0rVoet2hmKGQThxgfu29A3sITWM1golDXNxDnL5LsOaDFm1BwZ68EafU8ifZTSMujksqOUkMggpMKVknGCCKIBDzzwAFasWIHRo0fjtddei75//vnn44EHHlB9XioOysSq5dCq6ZIDKwZxXo2XwTJBvfd6oeiOTW6gjYRMreDEEHq4XwKnUfh+FSHFZvmZytNoCqW6to4VeZyPF8CJNKxYCyy/zAHFFFiEcAG/CiwbohEnFvFASjuBziL5rhdajxl1xeh7oYEY6bQowFRQu+Yg3ZBEYufOnbjooouqvJ+Tk4MTJ06oPq9icXDMmDEYP3583MQ4GTuIcIIN3dtr4ChE0LBiJTDU8yklIh1zlWUCHEwmjgLQqZ7FDHScKLyqGsg5MB8oycnEUYgcSVjPqNishpg2hvZ/aQ0BkBXuz9JVhLdKKGu6iXPpJOroOma0M1o4GKRROaLoS926dbFr1y40bdq0wvuffvopmjdvrvq8isXBkydPok+fPmjSpAnGjh2LMWPGoEGDBqoTYBcEFwER7FOh7SBmhgQ3Pjl6G3rVXAKOsYjrug2woghsR8Gych1xqlgYFN34sHgq+tR4TPcQEbGCUKjrpayNjMGfE4XUdCYouvG+/3b08zyasJ4lnWDScpGQyoIEFVvTi6DoxjrhTvRnFlsn5NEALBWKmIbinB3mVFph5JjRjqQ6zk0nkTkZ1HMwNSZOnIgpU6bgueeeAyEEBw8exObNm3HnnXfi/vvvV31eIoqi4pHVn3/+iZdeegkvvPACfvjhB/Tp0wfjx4/HsGHD4HI5a5FIQRBw/NhReHddAyKUmp0cVVi1UxNFwC9kwsOcsbznupWwquhi1XSlgh1Fz8qIIuAXs+Ahp02rZ04sG3pD88xeiCJQJmbBq3M9o6JyAmjeOB5RBMqQBS/M6890x6LiQTqLc2Zf30isMGa0K3LGbSLjw5kOryEvvyYYJo0KVgwRbWV+3iwEGL/i37sFD2Ycn5PWeQgAoijioYcewvz581FSUgIA8Hg8uPPOOzFv3jzV51UlDsbyzTffYNWqVVi5ciUyMzMxatQo3HzzzWjVqlUqp7UMkQLs2X0NiGhPcTAWC+2pAlEEeNENlgRoB6QAxqKiQTqIGXa00Yr1zAmiq9nYsSw6GVEEQnCDg7n1jJaL5FCB1b5YpZ4pwe6eQmYKY1YU5awYvaMlVhwz2pV4Y12R8aG4HRUHqTioHYFAALt27cKZM2dQWFiIzMzMlM6X0oYkhw4dwgcffIAPPvgALMti0KBB2LFjBwoLC/Hwww9j6tSpKSXOSggMQBw2njS70w0Jbmw8fBsurEfDipXAM9acAKZD8xyvzljxXsQSEtz45Ji1wvd5Dw0/1hsqwBpLSHTjw9NT0SfrMXAmhmIl69dpfUtNrKH5Zy5B0Y0PSqeir8+8kEezx85GYaaddhHgnFgWrDhmtCuxY11A6j/s/rBAS3hwCIm84t+xdD/dCrjdbmRlZSErKytlYRBQ4TkYDAbx9ttvY9WqVXj//fdRVFSECRMmYMSIEcjOzgYArF27FuPGjcPx48dTTqDZRNRt7jdneA5Wh1EehbFeb3Z8OmUVz0sreg/SSZOE1e6NneoZLUPGQfNaW+xUzxJBRWX9oHUudfTwHHSiwJMKZgtzdr4fdk57BKf0ZVZFJD74W7ya1l5vEW3lvtwF8Kt4yOMR3XjgxHRZebh8+XIsX74ce/fuBQC0a9cOM2fOxMCBA3Hs2DHMmjUL77//Pvbt24fatWvjsssuw7x585CTkwMAOHr0KEaOHInt27fj6NGjqFOnDoYNG4aHHnooqnvF49ixY5g8eTLeeecdMAyD4cOHY+nSpRXEu+3bt2PSpEnYsmULateujcmTJ+Puu++WnQ+hUAhz5szB448/jjNnzgAAMjMzMXnyZMyaNUv1Un+Kpdd69epBEARcc801+PLLL9GxY8cq3+nVqxdyc3NVJciqONFz0AxixTVRBIK8G4ShHZBSrCJSxmLBJJkCbzHvQlEEAoIbHjvUs5i8s5rI6jTkTGKomCEfUQSCghsME7D1JqqVPR0qQ8uEOVDRVkIUgZDoAUsS1zOzBS47YrawZfb1tcaK43Q52GrMaENEmqdR1G5Iwir4TcOGDbFgwQK0atUKoijihRdewLBhw7B161aIooiDBw9i8eLFKCwsxG+//YYbb7wRBw8exJo1awAADMNg2LBheOCBB1C7dm3s2rULkyZNwrFjx7B69epqrzty5MhohG0wGMTYsWNx/fXXR39z6tQp9OvXD3369MGKFSuwY8cOjBs3Drm5ubj++utl2TZ58mS8+eabePjhh9G9e3cAwObNmzF79mwcPXoUy5cvl51PsSj2HHzppZdw1VVXwev1qrqg3Yio2+SAsz0HzSAkuLHp99vQoxF1XXcKdOIoDyOFr5DgxsZD9g/fp2XLelABt5yQ4Mb6P29Dz9r2rmdqofXTutjh3sgVhkKCG58cpSGPWmK2KGdXEU0pZuezXJwyZrQqIvEh1IR6Dh4/dhTTcxep9hxccOIu1XmYn5+PRYsWYfz48VU+e+ONNzBq1CgUFxeD4+L70D3++ONYtGgRfv/997if//jjjygsLMSWLVvQpUsXAMB7772HQYMGYf/+/ahfvz6WL1+Oe++9F4cPH4bb7QYATJ8+HW+99RZ++uknWXbk5OTgtddew8CBAyu8/+677+Kaa67ByZMnZZ2nMoo9B6+99lpVF7I7AidKj1MomkHgx/ktFgIAlK84QLEibIg+EpNDZe9CPSdvDBPAxY0eBgDYYI5YPdSr0HLE85KNxQ6ihFYwTACX1HNAPVNLNWWB1lXzsYsoIQeWCaBPgVTP6Ig8dcwW5pxUNpVidt5Xh2PGjBaFeg6Ww4scQipKGSdK8tXp06dBYtxbPR4PPB5P9dfjebzxxhsoLi6OetpV5uTJk8jOzq5WGDx48CDefPNNXHzxxdVeZ/PmzcjNzY0KgwDQp08fMAyDL774Apdffjk2b96Miy66KCoMAkD//v2xcOFCHD9+HHl5edWeP4LH40HTpk2rvN+sWbMK51UKXdFRJgIDOhLRGFEkKA3UhM99FITGbDsDjt5HLdBSZBVFgpJgPjJcxxxTz2JFqXQSoGxHksmPk4QjUSQoCeUjg3NOPdMCIx+EUJyPKBIUh/JRg9azlDBblLOqMGYWZt+PWJw4ZrQSVBwsJySqCysOidJvGjZsGF1rDwBmzZqF2bNnV/n+jh070L17d5SVlSEzMxNr165FYWFhle/99ddfmDdvXtyw3muuuQb/+te/UFpaiiFDhmDlypXVpu/w4cOoU6dOhfc4jkN+fj4OHz4c/U6zZs0qfKegoCD6mRxx8JZbbsG8efOwatWqqCjq9/vx4IMP4pZbbkn6++qg4qBMqDioPSHehR37R6FT8yep67pDEBhnTfjNQnCXNzap5mdIcGHb76PQpanz6xn1XLUXTvI8DAkufP3nKJxXf7nj61lKVLrntL+gKCEkuPD10VHoUZfWMyVYRYyzkghmZXgTH7Sn05jRFIho52WJLcX+/fureA7Go3Xr1ti2bRtOnjyJNWvWYMyYMdiwYUMFgfDUqVMYPHgwCgsL4wqMjz32GGbNmoWff/4ZM2bMwO23344nn3xSc5uUsHXrVnz00Udo2LAhzj77bADAt99+i0AggN69e+OKK66IfvfNN9+UfV4qDspEIKKqHUmM7JDtNshmGD86t34MAHVddxa029MSIcVwWoYJoGvLJdK5tEmSZdFSVKXYA6sIwiwTwPmNlwKgzxGVQL2AKUpgmAAuaCjVM1pc7CW2mSl42Rmjhd10GjOaAoEKXzlnwoMDr6KU8WH5KisrS9aag263Gy1btgQAdO7cGVu2bMHSpUvx1FNPAZDCkwf8f3t3Hh9VdfcP/HPunZkkkJAAQsJSdmRThAJC4KmySYL+EJRarVgWEdQCFnd5WgGLiH20VfRRbJUCtuKC1lZrHwHZ3EAQieICLQIiSwgSspOZu5zfH5MMCdlmJnMy2+f9euX1ujOZe+eeO/d7l+89S3Y2UlJS8Oabb9Y6ym9GRgYyMjLQu3dvtGrVCj/5yU/w4IMPol27drV+Ni8vr9p7pmkiPz8fGRkZvs+cPHmy2mcqX1d+piFpaWmYPHlytfd+9KMf+TVvfZgc9JPpkIjES37NPndjFClPBv0lpUDp2XZonnSCVddjCn9LVaonCv1LikgpUFLeDsmJ8RVn5x8PmSyMTVUTwrVpqt9dSoFidzukJMRXnIVbpCSHqWlIKVDsaYcUV2zGWSwm0KLt3iTSqd6e8XrN2GSYHPQxpRZks+LGBYFt23C73QC8NQazsrKQkJCAt956y68Bd23be2FZuYzzZWZmoqCgALt378agQYMAAJs3b4Zt2xg6dKjvM7/+9a9hGIYvGblx40b06tXLrybFALBq1Sq/PhcoJgf9ZEZYJDsqRvCwteg9cFuWEwe/n4Q+Fz4PnVXXYwhv1ppC1divLwFiWU785/hEXNzthbiOM38uqP1NuFL08O93b/z3WLYT+09OwoDO8R1nTa2h5HB9+MAg+pi2E1+fmoiBnV6IiiaP8ZwYi+eyN6VQ3wfymlG16L1vj0YLFizA+PHj0alTJxQXF2Pt2rXYunUr1q9fj6KiIowbNw5lZWX461//iqKiIhQVFQEA2rRpA13X8a9//QsnT57EkCFDkJycjK+++gr33nsvRowY4RsMZOfOnZg6dSo2bdqEDh06oE+fPsjOzsasWbPw3HPPwTAMzJ07FzfccAPat28PALjxxhvx0EMPYebMmbj//vvx5ZdfYvny5XjiiSfCtal8mBz0k/fgG96ArnrjGmnJyqDoHvS+6BlIAGa414VCxsETX5Orr0ah0Dzo38vbLwbvhevX0EU2kwmxKRSJY6F5MLA74yyaNCZ5wWNBeGiaB4O6hTfOmPRqWDRXXIhmodg3ec1ITcUtE1De0Mh1tRCyZrPfuuTl5WHq1Kk4ceIEUlNT0b9/f6xfvx5XXHEFtm7dik8++QQAfM2OKx06dAhdunRBUlISnn/+edx5551wu9340Y9+hGuvvRYPPPCA77NlZWXYv38/DMPwvffSSy9h7ty5GDNmDDRNw+TJk/HUU0/5/p+amooNGzZgzpw5GDRoEC644AIsXLiw1sFQ6nL69GksXLgQW7ZsQV5enq9GY6X8/Hy/l1WVkFLyCF4P27ZxJv808t3XQeJsWNYhVi9CpRQoLe6C5imHWXU9xrAGVuTQTYHiki5ISWacqcb9Pn5JKVBS3AUtmjPOqH48TgRPSoHCsi5IbRa6OGMiK3SYOI0swezbUvKaUa0kNG/xGlq2au1Xf3mxqDK3Mr35izgrjIZnOE+SdGJ16dS43oYAcOWVV+LAgQOYOXMm0tPTqw3OAgDTpk0LarmsOegnW0jIJqwRpcno7UvQX7blwImjY9G1z2poWuAHB4pctiZjNqkdbQzdgaO5Y9C112o4BevoKqXXfY6o7AqCYpNlOXAkbzQu7L4Gul73+YyJIWpMMirez6uW7cB3eaPQt+uL0Ou4bozVa+ZIxgRrdPCn1Zllea8Zu/es/1xG1Fim1GEGUT/VlLHQfLLxPvjgA3z44Ye+kYpDhclBP1la0zQq1itixI6HpzUOD7pe/KdqiVDV4mK7Rgi7lmN3U/7W5CU0A90ueh5A9eb78X6T2dQ8DdywMmkU5XQDPfu80HA3GfUkkCsxkUx1aVxT6Og8xlRPPHnQp5cfcUZNIia6OIpTdSV0heZBj77ea0ZeJqrA+1AKjd69e+Ps2dC3amVy0E+2wuRg1Zt0K4qeeOqNPGtIW0NJwYVITvs3BDMVQYumfcY6L4oauw9Rw+qKs6rJWyZtw4/9HUY3KTUUFVyIFmn/hhCN+7GYSCYl/EhM1yfQpLWKxJGUGooKL0SL1MbHGQWPNQVjT+WDB2lrKC64ECm8N1OCZ+9zLOmocV/o73wEPPvss3jggQewcOFCXHTRRb5Rjyu1aNEiqOVy6/rJ0CRkCGudOa3obDYcykSmLXWcPjkUiS2/hcYTUERTtY/WtlzuCqHlT5xVPTkzYRuZaquJWxUTvOFlWzpO512K5mnqz2f+3JjzOEqh1lDSuinYloZTp4ageeoBaBqr2KoUTfcmFDpS6sg/eSmapR2AJhhjoSZYc9DHlBpMBP4UyZQ8OAFAWloaioqKMHr06GrvSykhhIBlBRe/TA76yRZAKO69Kq/pjUY+wW1KyhKZmoEOF6/xLjeEi6XQavJ99bzzRNX9j4IQYJxVH/lYzSpR6NX39JUJ3ybg8KBT38g5nzWUTAaYUKYopBno0udFAJERZ9GGXetQg6qcy6qKplZKkYxnXQqVKVOmwOl0Yu3atbUOSBIsJgf9ZGnBJwer3phFU2sg1YlMaWsozeuP5m2/YNX1CBUJ+6vbUXP/Y4sW/zUqzqokGJikjV4NPdTh4bfxpK2h6If+aHFB9JzP/GnOw8QyRRJpayg83R+praMnzlRiwoZCzZ9zGWuVBo9X0ufYUg+qWbHNAUkAAF9++SX27NmDXr16hXS5TA76SYrgEiWajK6Td1MmMm3oKPuhDxLbfgWNfcdEnEjeb8+vKM0b2LqFKs6qJmmZnI0xDVxnMTHcMFvqKMnvjeZtvoqpbjL8uQmMoeJShLOljqIzvdH8gtiKs0pMulC4BXMui6bWcOEmJLdVJW+fg8HNR8DgwYPx/fffhzw5KKTkXlof27ZxJv809jsnwxaBjwgTLcdL3uxTpUioLRgK3KebBhOzxFijxmICmmIZkycUT2LlPkIFIZPQRb6Blq1aQ9Pi82lAZW7lSse7KBOBjzvfTDrwLzM7rrchAKxbtw6LFy/Gvffei4svvrjGgCT9+/cParlMvfrJ1gI/2Gk2EMnXu1WvVcJxIJe2jrPHBiOpw6cQ7Fg6IkTy/hqo88sSr9fmquOs+qjHIV88RYH69qp4SR5LW0fJ8cFIbs/zWTBq6z4iGDwGxTZp6yg5MRjJ7cIfZ0yAUCxScS6L5JZITU1I1H/RROSn66+/HgBw8803+94TQsTPgCRLly7FO++8g5ycHLhcLhQUFDQ4j5QSixYtwvPPP4+CggKMGDECK1asQM+ePQP+fiOI5KCz4Y80uWqjDYf5wkZCwFPUAa4OuxGiPjQpSPHQlKW2HEUMtkqqoSnjrOoxJV6TsVSdPwNjANGf1JFSwF3cAUliN0QcHE8jVajuueIlqR1tbAiUF3dAUrvd0BSdz5jIoHjWFOeyeE6s8/Byji112OxzMGiHDh1SstyoSQ56PB5cd911yMzMxMqVK/2a53/+53/w1FNPYc2aNejatSsefPBBZGVl4euvv0ZiYmJA328JATuAO2tdShgRdARwVlzoRlQSSDPRvP/fIAEO7B5GkbSfNrnzyu6MxRvCMMVZvCZjKTjBPKyKqAS0w0TqRTyfxQp/k9r1ifaEd0TSTKT188ZZoIngeE5IEPktDOeycFdWaUo8LZxjSQ1WQ51e1zEfAZ07d1ay3KhJDj700EMAgNWrV/v1eSklnnzySfzmN7/BxIkTAQAvvvgi0tPT8fe//x033HBDQN9vBzwgSfiPdHqV7iQjMQEkbR2eQyPg6vpR2JuHxCOL1TVrsGo5R+lR3i1rRMWZH8ehmEzQkhLB7CqqEtTS1nH2uxFI6hwBcUYRIVQ3vBGVBA8zaeso/W4Emp8XZ/GUXCBSKRLOZRFVkSXUeDynEPrLX/6C5557DocOHcL27dvRuXNnPPnkk+jatasv/xWoqEkOBurQoUPIzc3F2LFjfe+lpqZi6NCh2L59exDJQeF3MkWXMkKeUEbEStRJQoPtbgELGgRHK25SkbF/RofzawxHW22QaIuz2hK054v2hC2FkZ83HYEmqaUUsDwpsIVgs2IKqVActaO11vb5SQIJAdNIgaEJCLYsIwq5SDqXRWLFlsaKtnsIlWxbD+p+lM2KvVasWIGFCxdi/vz5WLp0qa+PwbS0NDz55JNMDp4vNzcXAJCenl7t/fT0dN//auN2u+F2u32vKwdzNm0HbAcgK+5chW5BWg4Asua06QI0C0KzIU3nedMmhCYrPmOcm9YNCFE57fF+uVV9Wjg8kFIAltM7bQvArjrtgHAYkLYG2Docusc37X1fB6SA0M3q0+eXSUgI7bzpGuUIQZmgwXHRO7ClOFe+ijLpeu1lkk4jsssUxO9Uc1pdmWwdMVemSPidNEuL3DJVxpld+X70/06W7fLrd9L16CkT4ymyymTKhsukW1XKoQm4+r0Dw9YA6YRo7L5nOQFRUY6q0035O0m9ohxVp1mmqCyTCE2ZnAhNmUxXkGXSUBFnOiAdsfc7xeK+xzJFV5mkhLP3uzDDXCbbaUT9dURtv5Md09UiA2NDhxVEstQOoilyLHr66afx/PPPY9KkSXj00Ud97w8ePBj33HNP0MsN6x76wAMPQAhR79++ffuadJ2WLVuG1NRU31/Hjh0BAHLfaNhCQP57FOS/R3mnvx4HeXC4d/qLCZBHBgEArJzJsI5fDEsA1qc/h5V3oXd6x3RY+V280x/MhlXU3ju9ZR6s0tbe6ffugeVOgWW5vNOWy/v6vXu8/y9t7f28gHf+D2Z7p/O7eJcv4P2+XT+HJQTM4/1h5PzUO31kMIy9V8MSAsbBETD2ZXmn/zMKxn9Geaf3ZcE4OMI7vfdqmEcGe6dzfgrzeH9YQsDz6Y0wT/XyTn8yA2Z+V+/0h7fCKurgnd56B6zSC7zTm+6F5WkBy06AZ9O93gOnOwWeTffC3DcWdlFbeLbe4d3ORe3h+fBW2AKwznSF+5MZsAVgnroQ7t03AgDs4/1h5Ez2busjg2Duvdo7fXA4zG+yvNP/GQXrP6MAAOY3WbAODvdO770aVsXvZORMhn3cO8y38emNsPMu9E7vmAGZ3xUA/C6TZSfA8rTwTgsBq/QC7+eFgFXUwbscIWDmd4Xnkxne6VO94Pn0xib7nTxnujbNvvfpz73Txy/2xoLw/k7W3gne6YPDYX0zzjv9n5HePwHveweHe6f3TvDOIyIknhook+fQCHj2ZcGjCXgONG08Nbzv3QbPvrEwf+gRtn0v9GXyL54MTcDz/WC4v7wahibgPjQC7v1Z3ukDo+A+MAq2ADz7smAcGu6d/vJqGN8Pgi0A9+eTYZ7o753efSPMUxd6pz+ZAetMV9gCKP/oVljF7b3T2+6AVdbaO735XtieFNi2yzttu2B7UrzTArDKWqN82x3e6eL2KP+o7uOeLQDzRH+4P58MWwDG94Pg+fJq7/Sh4fDsy/JOHxgFg2VqsjKV7bzZuy/90Atlu2/C2X9fgfLjA1D2uXffc38/GGe/mghLePe98v3ZsIRA+bejUf7taO/0/my4D3nj6exXE+H+3htPZz//KTwnLoElBMp2T4FREU9lO2+GcaYbLCFQ+vFtMIq98VT6/q9glnnjqXTLfb54Kt1yny+eSrfc542PsgtQ+v6vvHFb3AGlH9/mnT7TDWU7b/ZOn+qFst1TvPF54hKc/dx7jGCZ4rtMZYXdUK4LFOy4DWWlHbzTH/4KZ8sv8E5vuw/lZguUI8E7jQSUmy2807rA2fILUPBhI8r05SRvnB38CX8nlollUlGm/4xB2a7pMG1HWMsUq9cRdkk7hVkMiieHDh3CwIEDa7yfkJCA0tLSoJcrpAxf+6xTp07h9OnT9X6mW7ducLlcvterV6/G/PnzGxyt+ODBg+jevTv27NmDAQMG+N6//PLLMWDAACxfvrzW+WqrOWgaHmxNvgmWo/hcmzfdAipqC1addmkGUPHEAZpdy7TprVNc8fQBmgQMF+AwvOObGy7AUfHEwTxv2ukBpPAux+mp6AjR6f1MxRMVOAzA1iAsreYTFUsHUPUpSh1PVGqtDRngE5WKMgnhndZreaIiPUmQB4dD9NwGAS2iaptYesNlqut3Es6Kp0Sm0zsdaJkU/E625WqyfQ+2XnO6ohzQzVqm644n6FZExFMoyiRMPWTxFNC+ZyQCB4cDPbZ5a4808b6npExhiCfNYC07lqnuMknTBfntCIge70MI+F0mzdQjtkyx+DuxTNFdJmk6YB/8CbTu70NodkyUKRZ/J5Ypestke1ywvr0cjgs3AxBNWibbacT876RZzXBp2Wto2ao1NC0+axHato0z+adxufwIpQEPLQU0h45tYkRcb0MA6Nu3L5YtW4aJEyciJSUFn3/+Obp164ann34aq1atwmeffRbUcsOaHAyGv8lBKSXat2+Pe+65B3fffTcAoKioCG3btsXq1av97nOwcgfenPZzWOJsg5/XImBzumTkdC4TCdsjUIGMSh3pPOHuMITqFElxSqEVjcc9ilwckIKIiGJVPA0opMskDCteF9eJrcrcyn+Zu4JODn7oGBK32/C3v/0t7rnnHqxduxaLFy/G73//e8ycORMvvPACvv32WyxbtgwvvPBCwONrVIqaPgePHDmC/Px8HDlyBJZlIScnBwDQo0cPJCcnAwB69+6NZcuW4ZprroEQAvPnz8fDDz+Mnj17omvXrnjwwQfRvn17TJo0KeDvt6DBaqAVtg47IhJLnvC2FgdwLvFR7/awHMBXVwD9NnprXEWAWEqmRcK+SHUrr6U3dSVJJcsBx1djYfZ7L2LiLOb5GXpMEMcQhecz24/9iQlpigfScgBfjwP6boDg+UyZSLt+5PGt6TRljEXaftYURIQPFtqUpBSQQeQsZJxvw4ceegi33XYbbrnlFiQlJeE3v/kNysrKcOONN6J9+/ZYvnx50IlBIIqSgwsXLsSaNWt8ryvbWG/ZsgUjR44EAOzfvx+FhYW+z9x3330oLS3F7NmzUVBQgP/6r//Cu+++i8TExIC/36/RimX4E0tRlaAUAnpSiXe7hjkpFwnbLFQaSmJT5Dr/6akeinEqBWAnlngTDDG0n8eC2hLE5+NNUZQI9/nMj9BmMpqingCQWAwIQPJ85peYeOgdgp+axz8/NUGMxcQ+GSSd92jUSFUb/U6ZMgVTpkxBWVkZSkpK0LZt20YvP+qaFTe1yqqv/9dyKsx6mhVrobiJDwE9An7OkCQ0mlAsJdMaTGBTVIuE+KbIE23HXIpcTEYTRYdYeqgdLXh8bJx432ctaNBlEq4oeClum8QC53Irme7PUBrE9WtzaNie8OO43YaapuHkyZNo06aNkuVHTc3BcLPQQM3BCKg1qMGOjOSQv9vCciAxZzzKB/xfWJo7RsS2ChE7hhKcVLeqzQv9fiBhOtAsJxtlA94FHGyGFYss1F8DkUnlJhDm81mohLrvJyauKaQsB1w5V8Iz4F9RHWf1iaUH1rGmscfHqDgeKoixeN+nq95vslnxOVLqQTURDqYpcqy58MILIRrIY+Tn5we1bCYH/eSBA2Ydm8sFMzISTRGQoAQACD9PfgIwWp7wnmybePvFUjItIvY9anJVE0L1Jn+EgNEyt+KJbezs9+S/hvqsi5Sa71EtjOezSNZQ4joYTHbHMwGz5QlYiL7zGa/VKBTHQ/XHv8bFGPfzc2q714yl+89osGLFCqxYsQKHDx8GAPTr1w8LFy7E+PHjAQB/+tOfsHbtWnz22WcoLi7GmTNnkJaW5pt/69atGDVqVK3L3rlzJ4YMGVLj/fz8fCxatAgbNmzAkSNH0KZNG0yaNAlLlixBamqq73O1Jfdefvllv/oLfOihh6otK5SYHPSTKTSYdfUPFSHXqS4RIU9R/U1S6hLl3fdUvGi6g2Usnbg8DGECqvXH48J5xwGHjbIee2p+kKhCfTcsTMT4KUzns3jkzwAtgWByPIo4bFjdP6t4ETnnM97wU1NpzPHPr2NdPTHG/dw/9d1nChk5x62wC7pSk//zdezYEY8++ih69uwJKSXWrFmDiRMnYs+ePejXrx/KysqQnZ2N7OxsLFiwoMb8w4cPx4kTJ6q99+CDD2LTpk0YPHhwrd95/PhxHD9+HI8//jj69u2L7777DrfddhuOHz+O119/vdpnV61ahezsbN/rqonJ+txwww0h6V+wNsws+MmuY7RiHXbdScMm5JBW5CSK6ktUVGU60GLXBBQNebtJmjtGzPYJgUjY5ygymVUSPQ5pQZgOtNx1Jc4M+RckmxVToPwZ6KK+43y8aOLzGYVOdNTmIQCA6UDypxNQMrhp4iyWHiYT+XWs47ksaP7cZ9oxdC/aWNLWgqpfFUiz4gkTJlR7vXTpUqxYsQI7duxAv379MH/+fADeGoK1cblcyMjI8L02DAP/+Mc/MG/evDqb9V500UV44403fK+7d++OpUuX4qabboJpmnA4zu0DaWlp1Zbvj4aaEzcW91A/mdBgRvITkwi9fjHPOxE5pHXuhaahrP238GgaVOyKsZpAi/e+O8h/ltAAXUNxh0Mo13Vfc8eo6PeGosb5x3l/VTsfRDvF5zOKcCG6BmOivQG6RHn7/8DSZaOa78fSw2KikOK5LGAB3W/G8UjNNVhOIKj7keC2oWVZWLduHUpLS5GZmRnUMt566y2cPn0aM2bMCGi+wsJCtGjRolpiEADmzJmDW265Bd26dcNtt92GGTNmNJj8Uz2WMKPeTxZ0JX3nhIIDdtQkjKyqB0UdcHf5D3QI74tAlxUlZQ6ViE5OU+TSgILO/z73Av7tSw4mEEkxK4iL5IhNbOtAUZf9QJDnMyIg+ER7oKIxMW8KHdCBsi4HADjDvTpEsYnnMr8Fcx+q8V4uZIqLi6sl0hISEpCQkFDjc3v37kVmZibKy8uRnJyMN998E3379g3qO1euXImsrCx07NjR73l++OEHLFmyBLNnz672/m9/+1uMHj0azZo1w4YNG/DLX/4SJSUluOOOO+pdnm2rvQ5mctBPJvSateBgRWzCMBoI04EOH1+JY8PZ3LEh3M8oWMJ0oNPH2Tgy/N2A4syffU5H9N1gUnQL9iGJ6mS3MB3I+Pj/IXf4P3k+o4gXTGI+EjDOiNRijDWsMZU1BJOD59g6gqt2792GHTt2RElJie/dRYsWYfHixTU+3atXL+Tk5KCwsBCvv/46pk2bhm3btgWcIDx69CjWr1+P1157ze95ioqKcNVVV6Fv37411u3BBx/0TQ8cOBClpaV47LHHGkwOqsbkoJ88cMLDG+HQ0oD87l/B1AA+napdU9UioBimAae6fw1DQZz5s386eNykCBDMA5aAkt+axJnue2FoEhyQhEgRxhmRWoyxOoWioobG+7pzbA3BJQe98xw9erRGzcHauFwu9OjRAwAwaNAg7Nq1C8uXL8cf//jHgL511apVaN26Na6++mq/Pl9cXIzs7GykpKTgzTffhNNZf433oUOHYsmSJXC73XWWpSkwOegnU2owZZWO/oUFd4Q0a3DDiQQY4V6NwGnAmQ7fgyef2kXK/kVRTgNOdTiOcB3u/dmPo/L4RTEvoIczGmB1OAKez4gU0oBCxhmROoyxGkJZUUMwORgyKSkp0LTA91PbtuF2uwOaR0qJVatWYerUqQ0m+QBvjcGsrCwkJCTgrbfeQmJiYoPz5OTkoGXLlmFNDAJMDvqtRrPiCBuYrkaTZxH5tXU004He74/Dvss2wGbV9WqqJqKJGkMzHej3wVh89ZP3IjbO/KqBGAXHNIpfmulAdz/OZ0yEEwVPMx3o9v5VOHjZOxF7PiOKZoyxc1RU0pCs+HGO1IBgBtcIYDCqBQsWYPz48ejUqROKi4uxdu1abN26FevXrwcA5ObmIjc3FwcOHADg7Z8wJSUFnTp1QqtWrXzL2bx5Mw4dOoRbbrmlxnccO3YMY8aMwYsvvohLL70URUVFGDduHMrKyvDXv/4VRUVFKCoqAgC0adMGuq7j7bffxsmTJzFs2DAkJiZi48aNeOSRR3DPPfcEvj1CjMlBP1VNDjpgRXxzz/OTSxHZtE8A3/X7HB4BgMkwAGxGTApowKF+X8AT5c33/UmYR+RxjuKDn+czJsKJGkET+P6iPTiraeCgJEQKxGGMNWWFDE2yRmYlYesQQSQHGxrNt6q8vDxMnToVJ06cQGpqKvr374/169fjiiuuAAA899xzeOihh3yfv+yyywB4mxBPnz7d9/7KlSsxfPhw9O7du8Z3GIaB/fv3o6ysDADw2Wef4ZNPPgEAX3PmSocOHUKXLl3gdDrxzDPP4M4774SUEj169MAf/vAHzJo1y++yqSKk6vGQo5xt2ziTfxrLWi6CR/NWQY32G9BoX/9YxcQgkXo8/lEs4H5MRERUt0i8r3LZCbjzzDK0bNU6qCaxsaAytzLs1FGUBpGGai4EdrTpGNfbUCXWHPSTBQdMWXExHkzfmRGktlGXw0E3HRiyeSx2jX4PVpxWXY/EExfFFt3UMWzzaOwYvRmWgwkFf2OOyRcKRFOfz7gfUzzSTQcGbh6HPaM3xO11I5FK0RJj0Xr/xAFJzhEyyJqD0Z6IiXBMDvqpXDrhruhosOEuJaOLed5u4BBNczKwNOCLwZ/CowEyxg+WpmSoUXhYQiBn0B54hAYpeUL11/nHxbo01fGSIlukns9CfQPFZCOFk6kBXw/eBXeUd5MRLaI1ARMsHt/CH2Oxvs8xOXiOMJ3KmxVT4Jix8FPVPgdLZJLv/Zg8kUhXtZeJwqPmewSQ37IYgB5xA7wEo/y87UYUEQRwtmUZAGdMxFnECSDulR1LKfxi7HxWF3+T5oFikp38ogH5rQoRTyOp8uFy02nM8S1mjmEKY4z7MqAz9eIjLA1C7XgkFATuoX6ypAMm7Brvh6vWXVOqmgwFQpcQdRg6xm36CTaM+QCmM/KTrLH+NItik8PQceWm4fjXmI+jIs5i2fnH0rrE5EOnGBdt57OIo+jhGhPysUU3HBj53ihsHbsFljN6r7f5MDkGheA3jYTjVX0xxv228aSMj0FeKHoxOegnU+p+JYeqjngUqyMOhiohajqALSN2o9wBRELzED7RCkxdo3vF6n4frSwdeG/453DrApL7eFQIpPZCLD6QikaRdj4jL38T8sFgEj8MdOD9EZ+iVNeUJZQDxQfHFCoqj1d+04HNIz5Dse4EmMgKOZ3HCx/N1qAFUXNQY81BpXin6CcLDli11Bysd57zbsR1xOZNXH1DwDeUKDqT7AHgaLJmWE05XH2ssho4bJy/31eK1f0/GuQnuxHrzR3jVaDHNCbv1Wnq8xmFl6om1oGIu4cDAjiTUg5/EvB84EsUHJ7L1HHwuOQjbJ3NiiMQ91A/mVJr9NPBGqMEx8FNWl2JIgBwGhp+vnEwXr7iUxjOwBKvFB6NSa7WFz/xEAvhwjijquo7JteHyf36OQwd128cilev+ITNiqnJhPuBZyDn7lCsK+OMSC3GmFrhPmYTNYTJQT+5ZQLKQ90563nZ8kThDu3yI5ypA6+M/AJndQHwYBnRymWC2i+o58lRvMVFqDHOKBSCfTgWL4l/ywG8PmoP3A4BXlpRvAj2YUPQ38c4I1KKMaZWQ62v4omwOSBJJOIe6idL6gE3Kw5UqWxW7bUe6zdVErAcGgwZP6PORSMrzAml8+MiXKI2HhlnFE5BNkuKuocCEjirs1YAkVKMMyK1GGNKmbwW99GkDi2I1IrGTagUk4N+8g5I0rRN8s4/MMdaDQynqWHWpl54bsx+GA42d4wkvCioKRK3iT/HBMYZRaPGPBQIRyLfaWq4+b2+eH7s14wzIkUYZ0RqMcbUEhzkxUcznNCZHIw4QkrJ7kbrYds2zuSfxs+TXsVZYYR7dXz0WOiEWgIuS4NHtwFWEW5STd0UiMJIAi5LwKNLX5zFxPGDKMQa9QBOAk5Lg8HzGZE6jDMitRhjSiVJJ1aXTkXLVq2hxWmWqzK3MuYbC2VBJAebacCmPnpcb0OVmCHwUygGJAmlmKhVKAHd0GFpUbjuES4Sa7lRmEggydBhVokzf/aPqDymEDVC0IO1CBOQQKLhwFmNiXciZRhnRGoxxvwS7PWCxpqDPpqtBdesOPSrQlUwOegnW+qwInhM9/P7hYuG/tFcpsBtH3TCH0YegccRuds2EoW7H0CKHi5TYM6HHfDY5ccCijN/97FoONYQqWRKHS5TYNb7gZ3PmIAnCow3zrriqVGHeN1IpEC8xFi4KlGwz8FzhC0g7MCrp4oIzsfEAjYrbkBl1ddJrrdQFsVN8diMMPqw6S/FCh5/iBqPiXgiIqK6RXrliWbSgTfc18Z1k9jK3Mq4vUBZEMnBZprEhosR19tQJWYf/OSxXfCIaN4BXeemNE8Y1+McIYELSh34obkJGYf9WnhsV8MfImokIYE2ZTpONbPCGGf+7euRcmwiClRTnM9UPDBi4p6iiZBA61IHTsfpdSORapEaY7FSYSJWyhEKmqVDCyI5qEkJgA9LVeEe6idb6rBjpBpruZVU7bUWptoICSYwY3dLPJZ5Bp4Y3BPtCH96RfEhwQRmf9YCvxtWBHeEx9n5x6bahOt4RVSf6D2fhfYhFRP8pJLLFJj+aRs8MeJUTDd5JAqXcMRYPFWWcDA56OPtczCI5CCYHFSJzYobUFn19QptE8ri5KaUTZf8F+nV14niFY9jRNGPDwOIKBCqHszH0rGIlRfCp5l04F3rirhuEluZW7nyM2fQzYr/9WMjrrehSkxf+8m2db3F39YAADPMSURBVASx/0YlO8hRmbUARx3WJNCxWMPRFDtit61t8wRK0U2TwI+KNXwfwXGmQlMdx4iA6DifRaNQP4DjQ4PopkmgQ5GOYy2sqIwzPlCOXvHy2/FcppbFAUl8NFuDZgVbc5BUYXLQTzZ0WNwX62VZgZ04E0xgytdO/G6gAaORe2KwF/zxcrKn+OUwgZv2hSbO4kGgx7HzMfkQn5wmMOXrRDz+43KYjLOIFexDg1gTDQ9Bans4m2ACP6+IM57PiEKP5zK1WGvzHN3QoQeRHNRtJmRUYrPiBlRWfb1cfoRStm8nIqIQ04Qd7lUgIiIiIoWaQ8cW/CSum8RW5lau+SgZZUEkB5vpEm+OKInrbagSnwn4ybJcsJgcDClNSlxYCPw7FbAF664TqcA4i3zBnFl0nQM/RBJNAhcWCPw7TbIpFpEijDMitRhjatnQAG5XimBMDvpJSgEJZqdDSbckrj1i4bG+OiydR0oiFRhnsck0E4OaT7CWohK6JTHxsMTj/QTjjEgRxhmRWowxtSzozL5U0GwR3GjF3C2VYrPiBlRWfc10f4ZS8KaKiIjii6bx3EdERETUGM2h4SPn4LhuEluZW/np1lScDaJZcZIu8frIQr+24YoVK7BixQocPnwYANCvXz8sXLgQ48ePBwD86U9/wtq1a/HZZ5+huLgYZ86cQVpaWrVlLF26FO+88w5ycnLgcrlQUFDQ4DpOnz4da9asqfZeVlYW3n33Xd/r/Px8zJs3D2+//TY0TcPkyZOxfPlyJCcnN7wRFGLu2k9S6pCsBxxSmpQYUGAjJ01jc0ciRRhn1FjBDtIi4mhwFs2WuKRA4vM0AZuPtYmUYJwRqcUYU8tmK8Qm1bFjRzz66KPo2bMnpJRYs2YNJk6ciD179qBfv34oKytDdnY2srOzsWDBglqX4fF4cN111yEzMxMrV670+7uzs7OxatUq3+uEhIRq/58yZQpOnDiBjRs3wjAMzJgxA7Nnz8batWuDK2yIMDnoLw49HnIOS2LMSQ++TEmEh1XXiZRgnFG4yMacN6Os+bNuS4w56caXLRJgMQlPpATjjEgtxpha7KLsHGEJiCBqDgYyx4QJE6q9Xrp0KVasWIEdO3agX79+mD9/PgBg69atdS7joYceAgCsXr06oPVMSEhARkZGrf/75ptv8O6772LXrl0YPHgwAODpp5/GlVdeiccffxzt27cP6LtCiclBP0lbA9tfh5ZbAP/Ts7n3RXTdBxJFDcYZRafgLqBFmJpAezTgsV7NvC94sUCkBOOMSC3GmGpMDlZq6j4HLcvCunXrUFpaiszMzOAWEoCtW7eibdu2aNmyJUaPHo2HH34YrVu3BgBs374daWlpvsQgAIwdOxaapuGTTz7BNddco3z96sLkoL+MRFS7s9bip7mUKrotMazAjR1pCbBYdZ1ICcYZxRMZ7KlZNxr1vbotMeyMgR0tnYwzIkUYZ0RqMcbUYs3B0CkuLoaoUrs1ISGhRtNdANi7dy8yMzNRXl6O5ORkvPnmm+jbt6/SdcvOzsa1116Lrl274ttvv8V///d/Y/z48di+fTt0XUdubi7atm1bbR6Hw4FWrVohNzdX6bo1hMlBf9kaqlVktWvpg4kJw4DotsSPCwzsatEMFvtzJFKCcUbkh9rO6QHQbYkf57uxKzmx5g0Vrw2IQkK3JX58ptx7PpM8nxGFGmMsxGpcWzA5WEk3BXQz8O2hS29lrY4dO6KkpMT3/qJFi7B48eIan+/VqxdycnJQWFiI119/HdOmTcO2bduUJghvuOEG3/TFF1+M/v37o3v37ti6dSvGjBmj7HtDIWqSg6pGivGb1ICGBna269jBOdJjrTwAnu7krV7L5o5hUNf+Gk/iIDYZZ0Tq1RtnjUw8NgoTkxRDPACe7tzS+4LnM6KQY4xVoeTczYRrJWF5/wKer2ITHj16tEbNwdq4XC706NEDADBo0CDs2rULy5cvxx//+MfAvzxI3bp1wwUXXIADBw5gzJgxyMjIQF5eXrXPmKaJ/Pz8OvspbCpRkxxUNVKMv4StQzSUHKxLLQcXyQt2OGyJywtKsS2tOUxWXQ8ZEc4b0WgTgdsq1McGxhmRehEbZ+F6CBQHD16o6TlsicvPlGFby2aRFWdEMSJmYixSK0BwkBefoPscrJgnJSUFmhb472zbNtxud8DzNcbRo0dx+vRptGvXDgCQmZmJgoIC7N69G4MGDQIAbN68GbZtY+jQoU26bueLmuSgipFiAiFkI5KDtS3Pqj0pIYNJoUcpzbbR7ayBD1poEKxm3SAhIy+RRaFX17EhWLpto3uZiQ9TnLCDHD02no5LRMHg+ew8IX7wwgeqBADCttGtzMD7qQJsnkfxTFVFAM220a3MxAcpDoggEi9UP8HkYJNasGABxo8fj06dOqG4uBhr167F1q1bsX79egBAbm4ucnNzceDAAQDe/glTUlLQqVMntGrVCgBw5MgR5Ofn48iRI7AsCzk5OQCAHj16IDk5GQDQu3dvLFu2DNdccw1KSkrw0EMPYfLkycjIyMC3336L++67Dz169EBWVhYAoE+fPsjOzsasWbPw3HPPwTAMzJ07FzfccENYRyoGoig5GKz6RoqpjdvtrpZNlhUJQZdHR5kQcNjep+GmpsFp25ACMEX1aZdtwxIClhBw2TZMIWALgQTbhlHLdKJtwS00SCGQZGveaQCJ0ka50CAAJEgbZ102hJRIkBLlmgZNSjilhLuWaYeU8GgadCmhV0w7pISQEsb50zXKJGAKUW068DLZcAsBWXUaQKKUKBcCAoBDCqzMSIeQEklWbJSp8rcJ5Hcy7ITzymRDSFSUqcq04n3PN13Lvleu6RVl8k4H/juxTOEqky4lVrbpAM2SSDSDK5Oz4iK0vjI5NXdExFMsHiNYpsgvk1ZxPtOlRIIVG2WKpN8pyRBNUiZdmhCoLJOsKFNFOSBqTAdcJsuGW6v4nSqnASTaEuVaRZlsiXK9okwV0wGXyZbVyhE7ZRJ4oV0bOGwJlx0rZWrc72TDwWMEyxSyMkEKrGnbxnutasVGmSLpd9I5ArRPY5sV+yMvLw9Tp07FiRMnkJqaiv79+2P9+vW44oorAADPPfecrwIaAFx22WUAgFWrVmH69OkAgIULF1brpm7gwIEAgC1btmDkyJEAgP3796OwsBAAoOs6vvjiC6xZswYFBQVo3749xo0bhyVLllRrwfrSSy9h7ty5GDNmDDRNw+TJk/HUU08FvD1CLaYfCWRnZ+PFF1/Epk2b8Lvf/Q7btm3D+PHjYVl174nLli1Damqq769jx44AgGvyT0NYOibm52Nifj6EpeNnp39A1pkCCEvH1FN5uLywGMLSMTsvF0OLSiAsHXfkHsOAkjIIS8e9x79H79JyCEvHg8e+Q5ezBoSl4+HvDyPDbUFYOn5/5CDSPBJJpsDvjxxEkimQ5pH4/ZGD0NyJaFeqYemho9DciehaDCz87jg0dyL6FFq470guNHciBhYY+NXRPGjuRAzLd+PW46ehuRMx8vRZTDtxBpo7EdmnSnD9yUJo7kRMyivGpLxiaO5EXH+yENmnSqC5EzHtxBmMPH0WmjsRtx4/jWH5bmjuRPzqaB4GFhjQ3Im470gu+hRa0NyJWPjdcXQtBjR3IpYeOop2pRqE6cQfDh5BmlsgydDxh4NHkGToSHML/OHgEVx1qggdy2wsPXQUwnSiS6mFhd8dhzCd6F1i4L7vcyFMJwYUuXHHsTwI04lhBWcx+/gPEKYTl+eXYlpuPoTpRNYPxfhZXgGE6cTEH4ow8YciCNOJn+UVIOuHYgjTiWm5+bg8vxTCdGL28R8wrOAshOnEHcfyMKDIDWE6cd/3uehdYkCYTiz87ji6lFoQptNbprOywTIJ04l2Z6Xfv5OwdAwtKsHsvFwIS8flhcWYesr7ftaZAvzs9A9h3/eEpSPDbeHh7w9DWDq6nDXw4LHvICwdvUvLce/x7yEsHQNKynBH7jGWKYLKtPDYd7gqPx/9Ss8qLZO/x4jGxFMsHiNYptgo06+OnsRVp4ow/ExZzJQpFn+nhsqU/UMZrj9ZDM1IxKRTJZh0qgSakYjrTxYj+4cyaEYipp8oxMj8cmhGIm49dgaZZzzQjET86uhpDCw0oRmJuP/IKfQptqEZiVh0+CS6lgCakYhHDp1A+zINmpGIJw4eQ8tyB5p5XHji4DE087jQstyBJw4eg2Ykon2ZhkcOnYBmJKJrCbDo8EloRiL6FNu4/8gpaEYiBhaa+NXR09CMRGSe8eDWY2egGYkYmV+O6ScKoRmJisqUiy5nTQip45FDx9HObUNIHU8cPIY0E0iyNTxx8BiSbA1pJvDEwWMQUkc7t41HDh2HkDq6nDWx6HAuhNT9LtOMEwX4f3mluPKHUv5OFWWK5HiKxWNErJfpmlOFmH/0JJyGHjNliqTfqVMpa8FXEnbwf/5auXIlDh8+DLfbjby8PLz33nu+xCAALF68GFLKGn+ViUHA22q1ts9UJgYBVJsnKSkJ69evR15eHjweDw4fPow//elPSE9Pr7ZurVq1wtq1a1FcXIzCwkL8+c9/9tVEDCchK6vGhcEDDzyA3/3ud/V+5ptvvkHv3r19r1evXo358+f7NSDJ+Q4ePIju3bvjvffeq3OkmNpqDpqGB6MP56MA3to0QEVNGWlDwv9aQdWfRFgwhBaCmk423BXTlU9R/K4VBMAQ4StTc9vEhKJTeCM1HRoQE2WKxd+JZYruMjWriLO/paZDQkRNmaRmq/mdqkyjlnJE5b7HMoW9TEmWhYlFp/C31LawhYiJMsXi78QyRXeZXJaNSUWn8LfUNrCEFhNlisXfiWWK3jIlWSauLcjDay29XXLFQpki6XdKAfBBp1Zo2ap1UP3lxQLbtnEm/zSmvdEaZ4MYrTjJYWPN5NNxvQ1VCmty8NSpUzh9+nS9n+nWrRtcLpfvdWOSgwDQpk0bPPzww7j11lv9+nzlDnzZoWKUsiowEVFEYp9kRERERBSpmgvgg85pcZ3YqsytTH+tVdDJwdU/y4/rbahSWPscbNOmDdq0adNk33f+SDGBELYGweRgSDmkjf9XcgL/TG4HUzC4iVSIlzgTikemkxx9lerhkDb+X3Eu/pmSEdNxRhROjDMitRhjagmOR+KjmRKaEXhyxVtHk1SJmgFJVIwUEwhN6uC9YWhpUgBSg2br0HgCIlKCcRYiikYG9C2eNR+jmpCAkML7IJFxRqQE44xILcaYWkwOVmEDsINI9DEfo1TUJAdVjRTjL81wQufOGFISwDsJXQETUHvbTRS/GGfRQYdT6fItp6F0+fHOho63mncCJKDxoTaREowzIrUYY2qxFSxFuqhJDq5evRqrV6+u9zNVu0+sHCkmVDRbY83BEHNICxPLD+MfiV1gCqYtiFRgnBEAaO7AH4pVsnnya5BD2ph09jD+ntSFTbGIFGGcEanFGFOLycFzhCUhgmg0I5i1VipqkoPhJmwBYbMucEhJoAgJgK2z6jqRKowzaiQ9iP4c462PRlERZ8LW2HyfSBHGGZFajDG1uEWrsGVwTYSDaYpMfmNy0E+apUNjcjCkJHRsdnQFbB4siVRhnFFYWI2rpWrr0dUHow0Nm1ydAQkOXkakCOOMSC3GmFqCg2lQhGNy0E/eZsVMDoaSU1qYbO7DG47eMNjckUgJxhlFI03x6NNVhaLZtFNa+KlnP1539WKcESnCOCNSizGmliYlgOh6+KmMZQNWELkVNitWislBP2m2Bi2YHZjqJoGjSAUsjqJKpAzjjKhemtX4uNCkhmNIg2Y44fAzzmyOckYUGAl8L1IBm+czIiUYY0ppYHLQx7aBYCpesVmxUkwO+kk3dOhMDoaYjk/QtWKKiNRgnBGpF3ic6UbTR6Tl5E0JRS8JDTtEZ3aTQaQIY0wtjc2KKcIxOegnNisOPSdMXKflYJ09AAZ3RSIlGGdE6kVLnGnuyLjd4wjYFAwnLPwMn+M1XAKDj7uIQq4xMdaU3YFEK6cuAbjDvRoRQZgmhBF4bkWwM0ylIvcKNsJotmByMMQkdOyTGZBShwZuWyIVGGdE6jHOAqPZsZnYsdkXklISwDeiMs6YiIhEvFeKbgIC+0UGhHTAwRgLOY3hcU6wfQ5aPM+qxOSgn4TFPgdDT8MX6FwxRURqMM6I1GOcEaCx1bZiOr5EZ2hgnBGpwXOZShytuAr2ORiRmBz0k7AEBJODIeWEiRsSP8Er5UMjuhkWUTRjnBGpxzgjUo9xRqQWY0wtZhIo0jHq/cRmxaEnoeNTTzdIm82wiFRhnBGpxzgjUo9xRqQWY0wtNiuuwrLYrDgCMTnoJ90U0E1WsA4tDQeMjhDgKKqhINicKebIkAQG44xIPcYZkXqMMyK1GGMq6ZKDcfnYMrgmwjbAOpjqMDnoJ90Q0E3uiIGqr3NuJ0z8vOUHePnMT5qs6jprf1JUCcE1hFOYuKHV+3gl/zIYsuE4Y4f6RIELx/mMKN4wzojUYoypJXgbShGOUe8nYbFmVjD0eqoLS+j4oPAiSEOHzicAREpY0PB+4UWwTP8aiNQXsyqEpnYkUXjZ0PFB8UWw2RSLSBnGGZFajDG1WEmlCssCgsmtWABTWOpwy/pJ2N4/CiUN359tC4CVg4nUiew4a8rjqmTPEKSMhiMRHGdEsYFxRqQWY0wl1hw8R9oWZBDJQW/LbKawVOGW9ZOwJAQ7wAwppzBxU/vN+Ovx0X41dySiwDHOzglH7W+p80owHjiFgV+kb8ZfTo6GIZ3hXh2imMQ4I1KLMaYWKxpVYXgAI4j5NABICPHKUKX4vlMMgGZKaAaTg6FkQ+Dd3EGwPQIauG2JVGCchVkTnzdsJ5OR4WBBw/+dGlzRfJ9xRqQC44xILcaYWkJwm1JkY3LQXzaCG1GH6iQhcLKspe8VEYUe4yy+aO4o/o21aE5sCuQZLSEA3lARKcM4I1KLMaYSH9JXYVvBDbwYwDwrVqzAihUrcPjwYQBAv379sHDhQowfPx4AUF5ejrvvvhuvvPIK3G43srKy8OyzzyI9Pd23DFFLW/CXX34ZN9xwQ63fuXXrVowaNarW/+3cuRNDhgzB4cOH0bVr1xr/3759O4YNG+Z/ARVgctBP3mbF4V6L2OLUDEzrsRlrDoyGYbPqOpEKjDOKGmHquiMUTb+dmoHpXTdh9aExjDMiRRhnRGoxxhRjs+JzLCu4674ABk7s2LEjHn30UfTs2RNSSqxZswYTJ07Enj170K9fP9x555145513sG7dOqSmpmLu3Lm49tpr8dFHH1VbzqpVq5Cdne17nZaWVud3Dh8+HCdOnKj23oMPPohNmzZh8ODB1d5/77330K9fP9/r1q1b+102VZgc9JctGdAhZto63jiUCdPUwRpNRGowzojqJ0LQKsCChjcOZcJyaxCBXCxEdW1JoqZlWTreODwclqGzVhORAowxtYTGbdqUJkyYUO310qVLsWLFCuzYsQMdO3bEypUrsXbtWowePRqANwnYp08f7Nixo1oNvrS0NGRkZPj1nS6Xq9pnDcPAP/7xD8ybN69GLcTWrVv7vdymwuSgvyw7oEw1NUwCOFPWvGKKB0siFRhnROoFHWeR3iJB5xDfFDkkgDPlyVVeEVEoMcYUYxdlPtKyIIOoOSgr8jHFxcXVkm0JCQlISKh7oBLLsrBu3TqUlpYiMzMTu3fvhmEYGDt2rO8zvXv3RqdOnWo0750zZw5uueUWdOvWDbfddhtmzJhRa3Pj2rz11ls4ffo0ZsyYUeN/V199NcrLy3HhhRfivvvuw9VXX+3XMlVictBftg3YTA6GklMzMav/Zjz/xWgYNndFIhUYZ0TqxWyc2THSZEJjkjMWODUTsy56D89/OTa24owiW6wcB/0Qs+eyiMHkoI9tBpcsrcjHdOzYESUlJb63Fy1ahMWLF9f4+N69e5GZmYny8nIkJyfjzTffRN++fZGTkwOXy1WjiXB6ejpyc3N9r3/7299i9OjRaNasGTZs2IBf/vKXKCkpwR133OHX6q5cuRJZWVno2LGj773k5GT8/ve/x4gRI6BpGt544w1MmjQJf//738OeIGTU+0mYJoTB5GAomZB4MWc4TENCwAz36hDFJMYZkXqMMyL1zsWZFVjzfSLyC89lanG04tA5evRojZqDtenVqxdycnJQWFiI119/HdOmTcO2bdv8/p4HH3zQNz1w4ECUlpbiscce8ys5ePToUaxfvx6vvfZatfcvuOAC3HXXXb7XQ4YMwfHjx/HYY48xORg12KxYAQkPNO+2BbctkRqMMyL1GGdE6jHOiNRijCkVpoHXIpJtBrc9KmoOpqSkQPOjVYDL5UKPHj0AAIMGDcKuXbuwfPlyXH/99fB4PCgoKKhWe/DkyZP19gM4dOhQLFmyBG63u95mzIC3D8PWrVv7lfAbOnQoNm7c2ODnVGNy0F9sVhxyTt3ELUM+xgufDIdhcVckUoFxRqQe44xIPcYZkVqMMcXY56CPNNyQRuA1wGUj+0K2bRtutxuDBg2C0+nEpk2bMHnyZADA/v37ceTIEWRmZtY5f05ODlq2bNlgYlBKiVWrVmHq1KlwOhse+TsnJwft2rULrDAKMOr9ZVmsORhihgW88PFQGBYQ+b2yE0UnxhmReowzIvUYZ0RqMcYUY83BcyyzooZqoPP5nxxcsGABxo8fj06dOqG4uBhr167F1q1bsX79eqSmpmLmzJm466670KpVK7Ro0QLz5s1DZmambzCSt99+GydPnsSwYcOQmJiIjRs34pFHHsE999zj+46dO3di6tSp2LRpEzp06OB7f/PmzTh06BBuueWWGuu1Zs0auFwuDBw4EADwt7/9DX/+85/xwgsvBL49QozJQX/Zktn+kJNwOQwYtgCrrhOpwjgjUo9xRqQe44xILcaYUjbA7dp08vLyMHXqVJw4cQKpqano378/1q9fjyuuuAIA8MQTT0DTNEyePBlutxtZWVl49tlnffM7nU4888wzuPPOOyGlRI8ePfCHP/wBs2bN8n2mrKwM+/fvh2EY1b575cqVGD58OHr37l3rui1ZsgTfffcdHA4HevfujVdffRU//elPFWyFwAgpJTNe9bBtG2fyT+OW35k46wn32sQWp27hlst344Vtg2BYerhXhygmMc6I1GOcEanHOCNSizGmVpILeOF+B1q2au1Xf3mxqDK3Mn3OFzhbHnjNwaREDauf6R/X21Al1hz0k7QtSNauDimPBTy7cVDFK25cIhUYZ0TqMc6I1GOcEanFGFNL2gDTL17SMiCDaFYsA2hWTIHj3ukvwwMYDX+M/CcgkZbsRkFJAiSrWBMpwTgjUo9xRqQe44xILcaYYhoA1D+QBVE4MTnoL8MDGEG2wNa5mWvjcFiYnPkt1mzqCcMMY9V1ywzfdxMp5o2zQ1izoSsMyQsSIhUi5nxGFMMYZ0RqMcYUC2L8jZhlW96/gOfjfqkSs1Z+kpYFGewIQxarZdfG4wGef7srALPij4hCzWNVxhkAuMO6LtFA6LzooMAZFvDCv3oAkOD5jEgNxhmRWowxxSzWxqwkbQMyiByJtJlhVYnJQX/ZJkcrDjEhJNq29CDvjAtS8mBJpALjLDDSDsPFsMZTcbTzxpkbeWcSGGdEijDOiNRijKklmRz0kZ4ySE8QyUE+xFeKdyT+sk0g2JqDVCuHw0b2sDys/b90GOxclEgJxlkUaOquDdjVRcg5HDayL83F2g3tGWdEijDOiNRijClmMzlIkY13CH6ShhvSYDXWUPIYwOq/tQTgCfeqEMUsxhnVwMG1Qs4DYPXf0iCcNtipEJEahgWseTsD3hhjnBGFGmNMMSYHfaRtBNVaR9pMX6nEresvywSCGG6b6iaExI/amfj+hINV14kUYZwRqXcuzgzGmQqs7UqoiLMMA9/nOhlnRAowxqpQ0KpDgrUxfSwjuG3MlpxK8WrLT9IyIJkcDCmHQ2LE4HKsezsRBvtgIFKCcUakHuNMMYvVXakizn5cEWcm44wo1Bhjakk21aYIx+Sgn5gcDD2PBbz0ugMcDYtIHcYZkXqMMyL1GGdEajHG1GJy8BxpeSCDqDnIfIxaTA76y7a8fxQymibRrQtw8DBgsw8GIiUYZ0TqMc6I1GOcEanFGFPM5ki7lbwVrwJvFSDZrFgpJgf9JG0D0mJyMJSEAAZerOPQIQuSm5ZICcYZkXqMMyL1GGdEajHG1JI2a71RZIuK5ODhw4exZMkSbN68Gbm5uWjfvj1uuukm/PrXv4bL5apzvvLyctx999145ZVX4Ha7kZWVhWeffRbp6ekBr4P0lEF6eJQMJcMDvPpKuNeCKLYxzojUY5wRqcc4I1KLMaaW1FlzsJK34lUQNQeZX1UqKpKD+/btg23b+OMf/4gePXrgyy+/xKxZs1BaWorHH3+8zvnuvPNOvPPOO1i3bh1SU1Mxd+5cXHvttfjoo48CXodgh9umumka0LdvAr7+2g0+SCFSg3FGpB7jjEg9xhmRWowxtaQdFamXJmEbJbANTxDz1V0xjBovKvbQ7OxsZGdn+15369YN+/fvx4oVK+pMDhYWFmLlypVYu3YtRo8eDQBYtWoV+vTpgx07dmDYsGGBrUSww21TnTRNoGfPFOz7uhQ2+w8gUoJxRqQe44xIPcYZkVqMMcW4TX28A5IEnhxkc3e1oiI5WJvCwkK0atWqzv/v3r0bhmFg7Nixvvd69+6NTp06Yfv27QEnB4MdUYfqZljA317NDfdqEMU0xhmReowzIvUYZ0RqMcbU4ki7FOmiMjl44MABPP300/U2Kc7NzYXL5UJaWlq199PT05GbW/dBz+12w+12+15L6c3w68KEtDzQde/ITZYl4XAISFnLtFPAtiRsG9WmnU4B05SQEnC6BEzDO+1yaTAM2zft8XgPHLVNCwE4neemHU4BwyO90w4Bw5DQNEDTvcuvOq3rAkIApllzOhxlSkrS0PfiFvj8s0JomoiJMsXi78QyRXeZEhI19KuIMyEQE2WKxd+JZYruMjldGi7q3wJf7CmEBGKiTLH4O7FM0V0mh0PgoktaYG9OIWw7NsoUi78TyxS9ZXK5NFzy4xb4bJf3mjEWyhRJvxNs1hysxJqDkUkL55c/8MADEELU+7dv375q8xw7dgzZ2dm47rrrMGvWrJCv07Jly5Camur769ixIwDgJ6NaQVoG/mtkS/zXyJaQloFRV7TGpZmpkJaB7AltccmPkyEtA1dPzkDfi5pDWgauu7E9uvdIhLQM3Di9Izp1dkFaBmbc2hnpGQ5Iy8DsO7qgZUsN0jIw797uaN5MwqlbmHdvdzh1C82bScy7tzukZaBlSw2z7+gCaRlIz3Bgxq2dIS0DnTq7cOP0jpCWge49EnHdje0hLQN9L2qOqydnQFoGLvlxMrIntIW0DFyamYpRV7QOa5l+eVd3tOuQgJYtRcyUKRZ/J5Ypuss09ZZOaNchAZ06xU6ZYvF3Ypmiu0yTr2+Hdh0S0Kdf7JQpFn8nlim6yzTuqjZo1yEBQ4bFTpli8XdimaK3TCMuS8NFA1oAduyUKZJ+p7bpHJCkkjc56A7iL/CEIvlPyMqqcWFw6tQpnD59ut7PdOvWzTci8fHjxzFy5EgMGzYMq1evhqbVndvcvHkzxowZgzNnzlSrPdi5c2fMnz8fd955Z63z1VZz0DQ8mDLpWRQXuaE7Kp4+mOc/cdAgbQnLknA6NVi2hF05bUnYtoTTpcE0bUi74olD5XSCDsNjeZ8+JOjweCygctptAQJwubzTQgDOymkNcDoqnkpogMOhwfDY0DQBXRcwDBuaLqBr3mldFxCagFk5XflEhWVimVgmlollYplYJpaJZWKZWCaWiWVimVgmJWVqluzCK2/NQctWrevNY8Qy27ZxJv80fjpmCc6WuRue4TxJzRLw+qYH43obqhTW5GAgjh07hlGjRmHQoEH461//Cr2BocALCwvRpk0bvPzyy5g8eTIAYP/+/ejdu3dAfQ5W7sA/G/8EzpYxUx1Kui4wbOSPsGPr97CsqNgNiaIO44xIPcYZkXqMMyK1GGNqJTVz4bX/uzOuE1uVuZXJo36Ds6VBJAebJ+CNLQ/H9TZUKSr6HDx27BhGjhyJzp074/HHH8epU6d8/8vIyPB9ZsyYMXjxxRdx6aWXIjU1FTNnzsRdd92FVq1aoUWLFpg3bx4yMzMDH6kYwbeLp3oIDSkpDsA2wA5aiRRhnBGpxzgjUo9xRqQWY0wp9pdXRUWz4sDnE6FfF/KJiuTgxo0bceDAARw4cMDXB2ClyoqPhmFg//79KCsr8/3viSeegKZpmDx5MtxuN7KysvDss88GtQ62UQzbE8QOTHXyeIB3Xt4Z7tUgimmMs9gg9IRwrwLVw7CAf732ebhXgyimMc6I1GKMqcXk4Dm2pwi2pzzw+Zz+V9ZasWIFVqxYgcOHDwMA+vXrh4ULF2L8+PEAgPLyctx999145ZVXquWK0tPTfcs4cuQIbr/9dmzZsgXJycmYNm0ali1bBoej7jRafn4+5s2bh7ffftuXi1q+fDmSk5N9n/niiy8wZ84c7Nq1C23atMG8efNw3333Bbg1Qi8qkoPTp0/H9OnT6/1Mly5dcH4L6cTERDzzzDN45plnGr8SwWa3qU66Q8OoCf2x5e0vYJl8OkWkAuMsNvD8E9kYZ0TqMc6I1GKMqSWdieFehbjSsWNHPProo+jZsyeklFizZg0mTpyIPXv2oF+/frjzzjvxzjvvYN26dUhNTcXcuXNx7bXX4qOPPgIAWJaFq666ChkZGfj4449x4sQJTJ06FU6nE4888kid3ztlyhScOHECGzduhGEYmDFjBmbPno21a9cCAIqKijBu3DiMHTsWzz33HPbu3Yubb74ZaWlpmD17dpNsm7pERXIwEgSb3aa6CVuHtDywPcWwTT5KIVKBcUakHuOMSD3GGZFajDG1Aqn1FutkkBWvpOV/P4MTJkyo9nrp0qVYsWIFduzYgY4dO2LlypVYu3YtRo8eDQBYtWoV+vTpgx07dmDYsGHYsGEDvv76a7z33ntIT0/HgAEDsGTJEtx///1YvHixb9Dcqr755hu8++672LVrFwYPHgwAePrpp3HllVfi8ccfR/v27fHSSy/B4/Hgz3/+M1wuF/r164ecnBz84Q9/YHIwWgS7A1PdTAvY8Oq2cK8GUUxjnBGpxzgjUo9xRqQWY0ytQBJbsc62ymFbQTQrDrLPQcuysG7dOpSWliIzMxO7d++GYRgYO3as7zO9e/dGp06dfIPXbt++HRdffHG1ZsZZWVm4/fbb8dVXX2HgwIE1vmf79u1IS0vzJQYBYOzYsdA0DZ988gmuueYabN++HZdddlm15GJWVhZ+97vf4cyZM2jZsmVQZQwFJgcbUNlUOSFRBL0zUu0cTgfG/exybHhtG0zDDPfqEMUkxhmReowzIvUYZ0RqMcbUSkj05hLO7wotHjVLbtao+YqLiyHEudxMQkICEhJq9s+9d+9eZGZmory8HMnJyXjzzTfRt29f5OTkwOVyIS0trdrn09PTkZubCwDIzc2tlhis/H/l/2qTm5uLtm3bVnvP4XCgVatW1ZbbtWvXOpfL5GBE8wbvqx+sDPN6xK7b7p4Z7lUginmMMyL1GGdE6jHOiNRijKkWv8lBIQSE0PDK+y8EvYzS0lJc2OtHcLvPtepctGgRFi9eXOOzvXr1Qk5ODgoLC/H6669j2rRp2LaNtWPrwuRgA4TQkNayJQQEIFhzMJSKi4vRsWNHHD16FCkpKeFeHaKYxDgjUo9xRqQe44xILcaYYlJCQkKI+G1eLIRAy1atGlV7snlyCvLy8qq9V1utQQBwuVzo0aMHAGDQoEHYtWsXli9fjuuvvx4ejwcFBQXVag+ePHkSGRkZAICMjAzs3Lmz2vJOnjzp+19tMjIyaqybaZrIz8+vttzK5fi73KbC5GADNE0DEL8BrJIQAiUlJRBCVGxnIgo1xhmReowzIvUYZ0RqMcaoKXhrDwZf6SoxMRGJicGN/GzbNtxuNwYNGgSn04lNmzZh8uTJAID9+/fjyJEjyMzMBABkZmZi6dKlyMvL8zUV3rhxI1q0aIG+ffvWuvzMzEwUFBRg9+7dGDRoEABg8+bNsG0bQ4cO9X3m17/+NQzDgNPp9C23V69eYW1SDDDrRUREREREREREMWLBggV4//33cfjwYezduxcLFizA1q1bMWXKFKSmpmLmzJm46667sGXLFuzevRszZsxAZmYmhg0bBgAYN24c+vbti1/84hf4/PPPsX79evzmN7/BnDlzfDUVd+7cid69e+PYsWMAgD59+iA7OxuzZs3Czp078dFHH2Hu3Lm44YYb0L59ewDAjTfeCJfLhZkzZ+Krr77Cq6++iuXLl+Ouu+4Kz4aqgjUHiYiIiIiIiIgoJuTl5WHq1Kk4ceIEUlNT0b9/f6xfvx5XXHEFAOCJJ56ApmmYPHky3G43srKy8Oyzz/rm13Ud//znP3H77bcjMzMTzZs3x7Rp0/Db3/7W95mysjLs378fhmH43nvppZcwd+5cjBkzxrf8p556yvf/1NRUbNiwAXPmzMGgQYNwwQUXYOHChZg9e3YTbJX6CcnhcihM3G43li1bhgULFtTZTwARNQ7jjEg9xhmReowzIrUYY0TxjclBIiIiIiIiIiKiOMU+B4mIiIiIiIiIiOIUk4NERERERERERERxislBIiIiIiIiIiKiOMXkIIXd4cOHMXPmTHTt2hVJSUno3r07Fi1aBI/HE+5VI4opS5cuxfDhw9GsWTOkpaWFe3WIYsIzzzyDLl26IDExEUOHDsXOnTvDvUpEMeX999/HhAkT0L59ewgh8Pe//z3cq0QUU5YtW4YhQ4YgJSUFbdu2xaRJk7B///5wrxYRNTEmByns9u3bB9u28cc//hFfffUVnnjiCTz33HP47//+73CvGlFM8Xg8uO6663D77beHe1WIYsKrr76Ku+66C4sWLcJnn32GSy65BFlZWcjLywv3qhHFjNLSUlxyySV45plnwr0qRDFp27ZtmDNnDnbs2IGNGzfCMAyMGzcOpaWl4V41ImpCHK2YItJjjz2GFStW4ODBg+FeFaKYs3r1asyfPx8FBQXhXhWiqDZ06FAMGTIE//u//wsAsG0bP/rRjzBv3jw88MADYV47otgjhMCbb76JSZMmhXtViGLWqVOn0LZtW2zbtg2XXXZZuFeHiJoIaw5SRCosLESrVq3CvRpERES18ng82L17N8aOHet7T9M0jB07Ftu3bw/jmhEREQWvsLAQAHgvRhRnmBykiHPgwAE8/fTTuPXWW8O9KkRERLX64YcfYFkW0tPTq72fnp6O3NzcMK0VERFR8Gzbxvz58zFixAhcdNFF4V4dImpCTA6SMg888ACEEPX+7du3r9o8x44dQ3Z2Nq677jrMmjUrTGtOFD2CiTMiIiIiovPNmTMHX375JV555ZVwrwoRNTFHuFeAYtfdd9+N6dOn1/uZbt26+aaPHz+OUaNGYfjw4fjTn/6keO2IYkOgcUZEoXHBBRdA13WcPHmy2vsnT55ERkZGmNaKiIgoOHPnzsU///lPvP/+++jYsWO4V4eImhiTg6RMmzZt0KZNG78+e+zYMYwaNQqDBg3CqlWroGms1Erkj0DijIhCx+VyYdCgQdi0aZNvcATbtrFp0ybMnTs3vCtHRETkJykl5s2bhzfffBNbt25F165dw71KRBQGTA5S2B07dgwjR45E586d8fjjj+PUqVO+/7H2BVHoHDlyBPn5+Thy5Agsy0JOTg4AoEePHkhOTg7vyhFFobvuugvTpk3D4MGDcemll+LJJ59EaWkpZsyYEe5VI4oZJSUlOHDggO/1oUOHkJOTg1atWqFTp05hXDOi2DBnzhysXbsW//jHP5CSkuLrNzc1NRVJSUlhXjsiaipCSinDvRIU31avXl3njRR3T6LQmT59OtasWVPj/S1btmDkyJFNv0JEMeB///d/8dhjjyE3NxcDBgzAU089haFDh4Z7tYhixtatWzFq1Kga70+bNg2rV69u+hUiijFCiFrfX7VqVYNd1xBR7GBykIiIiIiIiIiIKE6xYzciIiIiIiIiIqI4xeQgERERERERERFRnGJykIiIiIiIiIiIKE4xOUhERERERERERBSnmBwkIiIiIiIiIiKKU0wOEhERERERERERxSkmB4mIiIiIiIiIiOIUk4NERERERERERERxislBIiIiogasXLkS48aNU/497777LgYMGADbtpV/FxERERERwOQgERERUb3Ky8vx4IMPYtGiRcq/Kzs7G06nEy+99JLy7yIiIiIiApgcJCIiIqrX66+/jhYtWmDEiBFN8n3Tp0/HU0891STfRURERETE5CARERHFhVOnTiEjIwOPPPKI772PP/4YLpcLmzZtqnO+V155BRMmTKj23siRIzF//vxq702aNAnTp0/3ve7SpQsefvhhTJ06FcnJyejcuTPeeustnDp1ChMnTkRycjL69++PTz/9tNpyJkyYgE8//RTffvtt8IUlIiIiIvITk4NEREQUF9q0aYM///nPWLx4MT799FMUFxfjF7/4BebOnYsxY8bUOd+HH36IwYMHB/WdTzzxBEaMGIE9e/bgqquuwi9+8QtMnToVN910Ez777DN0794dU6dOhZTSN0+nTp2Qnp6ODz74IKjvJCIiIiIKBJODREREFDeuvPJKzJo1C1OmTMFtt92G5s2bY9myZXV+vqCgAIWFhWjfvn3Q33frrbeiZ8+eWLhwIYqKijBkyBBcd911uPDCC3H//ffjm2++wcmTJ6vN1759e3z33XdBfScRERERUSCYHCQiIqK48vjjj8M0Taxbtw4vvfQSEhIS6vzs2bNnAQCJiYlBfVf//v190+np6QCAiy++uMZ7eXl51eZLSkpCWVlZUN9JRERERBQIJgeJiIgornz77bc4fvw4bNvG4cOH6/1s69atIYTAmTNnqr2vaVq1psAAYBhGjfmdTqdvWghR53u2bVebLz8/H23atGm4MEREREREjcTkIBEREcUNj8eDm266Cddffz2WLFmCW265pUatvapcLhf69u2Lr7/+utr7bdq0wYkTJ3yvLcvCl19+GZJ1LC8vx7fffouBAweGZHlERERERPVhcpCIiIjixq9//WsUFhbiqaeewv33348LL7wQN998c73zZGVl4cMPP6z23ujRo/HOO+/gnXfewb59+3D77bejoKAgJOu4Y8cOJCQkIDMzMyTLIyIiIiKqD5ODREREFBe2bt2KJ598En/5y1/QokULaJqGv/zlL/jggw+wYsWKOuebOXMm/vWvf6GwsND33s0334xp06Zh6tSpuPzyy9GtWzeMGjUqJOv58ssvY8qUKWjWrFlIlkdEREREVB8hz+8wh4iIiIique666/DjH/8YCxYsUPo9P/zwA3r16oVPP/0UXbt2VfpdREREREQAaw4SERERNeixxx5DcnKy8u85fPgwnn32WSYGiYiIiKjJsOYgERERERERERFRnGLNQSIiIiIiIiIiojjF5CAREREREREREVGcYnKQiIiIiIiIiIgoTjE5SEREREREREREFKeYHCQiIiIiIiIiIopTTA4SERERERERERHFKSYHiYiIiIiIiIiI4hSTg0RERERERERERHGKyUEiIiIiIiIiIqI4xeQgERERERERERFRnPr/wlzEnf2YuY8AAAAASUVORK5CYII=", + "image/png": "iVBORw0KGgoAAAANSUhEUgAABQcAAAMWCAYAAABMZzAyAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjMsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvZiW1igAAAAlwSFlzAAAPYQAAD2EBqD+naQABAABJREFUeJzs3Xl8E2XiBvAnSdO00DZQaClIoQgIFCxoVSiugoLcCAoeKFIUYVFAEHXX6i6XPy0uKrKucigLKFYQEC9URC4vRORQPEBBLoFy05aWpm0yvz+6iU1zzUxmkpnk+X4++ShpZubNzGTmnWfe9x2DIAgCiIiIiIiIiIiIKOoYw10AIiIiIiIiIiIiCg+Gg0RERERERERERFGK4SAREREREREREVGUYjhIREREREREREQUpRgOEhERERERERERRSmGg0RERERERERERFGK4SAREREREREREVGUYjhIREREREREREQUpRgOEhERERERERERRSmGg0RE5KZ79+7o3r17uIvhZvHixTAYDDh48GC4i0IaYjAYMG3aNNWXs2nTJhgMBmzatMn1Xvfu3dGhQwfVlw0ABw8ehMFgwOLFi0OyvNreeOMNtG3bFmazGfXq1QtLGZSWkZGBkSNHBvwcjz1EREQUDRgOEhEF4Lw4/O677yRPW1ZWhmnTprmFCpEqnN/VGZ6IeUXzRf4zzzyDd999N9zF8CojI8O1jYxGI+rVq4fLL78cY8aMwdatWxVbTkFBAV588UXF5qckLZZtz549GDlyJFq2bIlXX30VCxYsCHeRvHIGuGJeofLMM8+gS5cuSElJQVxcHFq3bo1Jkybh1KlTfstusVjQqFEjdO/eHc8884zH55VUXl6O2bNno3PnzrBarYiLi8Nll12G8ePH49dff1VtuWIcO3YM06ZNw65du2TPo/a5wWw2o2HDhujatSueeOIJHD582Oe0hw8fxtixY5GRkQGLxYLU1FQMHjwYX331lc9l3XvvvWjZsiXi4uKQlpaG66+/HlOnTpVdfiIiolCJCXcBiIgiWVlZGaZPnw4AmmuNp7RwfteUlBS88cYbbu89//zz+OOPPzB79myPz0arZ555BkOHDsXgwYPDXRSvOnXqhEceeQQAUFJSgl9++QUrVqzAq6++iocffhgvvPCC2+cvXryImBhpVZmCggL8+OOPmDRpkuhprr/+ely8eBGxsbGSliWVr7I1b94cFy9ehNlsVnX53mzatAkOhwNz5sxBq1atQr58sdq1a+dxDMjLy0NCQgKefPJJj8/v3bsXRqO698i3b9+OTp064c4770RiYiJ++eUXvPrqq1izZg127dqFunXrun3+oYcewtVXXw273Y5Tp07h66+/xtSpU/HCCy/g7bffxo033qho+U6fPo0+ffpg+/btGDBgAO666y4kJCRg7969WLZsGRYsWICKigpFlynFsWPHMH36dGRkZKBTp05BzWvYsGHo168fHA4Hzp07h23btuHFF1/EnDlzsHDhQtx5551un//qq6/Qr18/AMD999+PzMxMFBYWYvHixbjuuuswZ84cTJgwwfX5ffv24eqrr0Z8fDzuu+8+ZGRk4Pjx49ixYweeffZZ17mRiIhIqxgOEhHpUGlpqceFZTSrW7cuhg8f7vbesmXLcO7cOY/3I4XD4UBFRQXi4uIiphyXXHKJx/Z69tlncdddd2H27Nlo3bo1HnjgAdff1P7u5eXliI2NhdFoDOt6NhgMYVv+yZMnASBgd2JBEFBeXo74+PgQlMpTo0aNPPadmTNnomHDhl6PARaLRfUyrVq1yuO9nJwcDB06FB988IFHIHXddddh6NChbu99//336NWrF4YMGYKff/4ZjRs3Vqx8I0eOxM6dO7Fy5UoMGTLE7W9PPfWU11BVr6688kqP/eDQoUPo1asXcnNz0a5dO3Ts2BEAcO7cOQwdOhTx8fH46quv0LJlS9c0kydPRu/evTFp0iRkZ2eja9euAIDZs2fjwoUL2LVrF5o3b+62HOdviIiISMvYrZiISIaRI0ciISEBR48exeDBg5GQkICUlBQ8+uijsNvtAKq7GDlbqU2fPt3VranmGGl79uzB0KFDkZycjLi4OFx11VV4//333Zbl7Na8efNmPPjgg0hNTUXTpk0BANOmTYPBYMCePXtw++23IykpCQ0aNMDEiRNRXl7uNp+qqio89dRTaNmyJSwWCzIyMvDEE0/AZrP5/a4VFRWYMmUKsrOzYbVaUbduXVx33XXYuHGj6zNKfVcA+Omnn3DjjTciPj4eTZs2xf/93//B4XAE2CLi2Gw2TJ06Fa1atYLFYkF6ejr+9re/eawDg8GA8ePHY8WKFcjMzER8fDxycnKwe/duAMD8+fPRqlUrxMXFoXv37h5dlZ3j0W3fvh1du3ZFfHw8WrRogXnz5gVdpjfffBPt27eHxWLBJ598AgB47rnn0LVrVzRo0ADx8fHIzs7GypUrPaYvLS3FkiVLXNvHOebayJEjkZGR4VE25/4lthxHjx7Ffffdh0aNGsFisaB9+/b473//63+jBBAfH4833ngDycnJePrppyEIgltZau5jJSUlmDRpkls3wJtuugk7duwAUL1d1qxZg0OHDrnWgfN7O7t2Llu2DP/4xz9wySWXoE6dOiguLvY65qBToG3sa8y62vP0VzZfYw5u2LAB1113HerWrYt69eph0KBB+OWXX9w+49yG+/btw8iRI1GvXj1YrVbce++9KCsr87vuMzIyXF0iU1JS3NZ3RkYGBgwYgLVr1+Kqq65CfHw85s+fDwD4/fffcdtttyE5ORl16tRBly5dsGbNGq/f/+2338b06dNxySWXIDExEUOHDkVRURFsNhsmTZqE1NRUJCQk4N577w14rJLC25iDYo49ubm5aNiwISorKz3m2atXL7Rp0ybgcgHg/PnzosrZsWNHvPjiizh//jz+85//iJpGjK1bt2LNmjUYNWqURzAIVIenzz33nNt7Su9v69atw1/+8hfUq1cPCQkJaNOmDZ544gkA1fvH1VdfDQC49957Xb8JJcfdbN68ORYvXoyKigr861//cr0/f/58FBYWYtasWW7BIFB9PHIeQ2fMmOF6f//+/WjatKlHMAgAqampipWZiIhILWw5SEQkk91uR+/evdG5c2c899xz+Oyzz/D888+jZcuWeOCBB5CSkoK5c+figQcewC233IJbb70VAJCVlQWg+kL02muvxSWXXILHH38cdevWxdtvv43Bgwdj1apVuOWWW9yW9+CDDyIlJQVTpkxBaWmp299uv/12ZGRkID8/H9988w3+/e9/49y5c3j99dddn7n//vuxZMkSDB06FI888gi2bt2K/Px8/PLLL1i9erXP71lcXIzXXnsNw4YNw+jRo1FSUoKFCxeid+/e+Pbbb9GpUyfFvmthYSFuuOEGVFVVuT63YMECRVojORwO3Hzzzfjyyy8xZswYtGvXDrt378bs2bPx66+/eozF98UXX+D999/HuHHjAAD5+fkYMGAA/va3v+GVV17Bgw8+iHPnzuFf//oX7rvvPmzYsMFt+nPnzqFfv364/fbbMWzYMLz99tt44IEHEBsbi/vuu09WmTZs2IC3334b48ePR8OGDV1Bw5w5c3DzzTfj7rvvRkVFBZYtW4bbbrsNH374Ifr37w+g+qES999/P6655hqMGTMGADwufMXyVo4TJ06gS5curvAwJSUFH3/8MUaNGoXi4mJJ3XhrS0hIwC233IKFCxfi559/Rvv27b1+buzYsVi5ciXGjx+PzMxMnDlzBl9++SV++eUXXHnllXjyySdRVFTk1t08ISHBbR5PPfUUYmNj8eijj8Jms/ntSixmG4slpmw1ffbZZ+jbty8uvfRSTJs2DRcvXsRLL72Ea6+9Fjt27PAIe2+//Xa0aNEC+fn52LFjB1577TWkpqbi2Wef9bmMF198Ea+//jpWr16NuXPnIiEhwfWbBqq75g4bNgx//etfMXr0aLRp0wYnTpxA165dUVZWhoceeggNGjTAkiVLcPPNN2PlypUex7X8/HzEx8fj8ccfx759+/DSSy/BbDbDaDTi3LlzmDZtGr755hssXrwYLVq0wJQpUyStV7HEHnvuuecevP7661i7di0GDBjgNv2GDRs8xpcTBAFnzpxBVVUVfvvtNzz++OMwmUyShl4YOnQoRo0ahU8//RRPP/10UN/TyXlj5p577hH1eaX3t59++gkDBgxAVlYWZsyYAYvFgn379rnG82vXrh1mzJiBKVOmYMyYMbjuuusAwNVSTyk5OTlo2bIl1q1b53rvgw8+QFxcHG6//Xav07Ro0QJ/+ctfsGHDBly8eBHx8fFo3rw5PvvsM2zYsEHx7t9EREQhIRARkV+LFi0SAAjbtm1zvZebmysAEGbMmOH22SuuuELIzs52/fvUqVMCAGHq1Kke8+3Ro4dw+eWXC+Xl5a73HA6H0LVrV6F169Yey//LX/4iVFVVuc1j6tSpAgDh5ptvdnv/wQcfFAAI33//vSAIgrBr1y4BgHD//fe7fe7RRx8VAAgbNmxwvdetWzehW7durn9XVVUJNpvNbbpz584JjRo1Eu677z5Fv+ukSZMEAMLWrVtd7508eVKwWq0CAOHAgQMe8/alf//+QvPmzV3/fuONNwSj0Sh88cUXbp+bN2+eAED46quvXO8BECwWi9vy5s+fLwAQ0tLShOLiYtf7eXl5HmXr1q2bAEB4/vnnXe/ZbDahU6dOQmpqqlBRUSGrTEajUfjpp588vmtZWZnbvysqKoQOHToIN954o9v7devWFXJzcz2mz83NdVtXTs79qyZf5Rg1apTQuHFj4fTp027v33nnnYLVavUoY23NmzcX+vfv7/Pvs2fPFgAI7733nltZau5vVqtVGDdunN/l1N4vnDZu3CgAEC699FKPsjr/tnHjRtd7Yrex8/dbe9/1Nk9fZTtw4IAAQFi0aJHrPedyzpw543rv+++/F4xGozBixAjXe85tWPO3KgiCcMsttwgNGjTwWFZtzulPnTrl9n7z5s0FAMInn3zi9r7zN1xzny4pKRFatGghZGRkCHa73e37d+jQwbWuBEEQhg0bJhgMBqFv375u883JyfG6bvxp376927Gsdvlr/hbEHnvsdrvQtGlT4Y477nCb3wsvvCAYDAbh999/d3v/+PHjAgDXq2nTpsLy5cvdPuNcFytWrPD5XTp27CjUr19fxLcW55ZbbhEACOfOnRP1eaX3N+fvufZ+VdO2bds89nupnL+dWbNm+fzMoEGDBABCUVGRIAiCUK9ePaFjx45+5/vQQw8JAIQffvhBEARB+PHHH4X4+HgBgNCpUydh4sSJwrvvviuUlpbKLjsREVEosVsxEVEQxo4d6/bv6667Dr///nvA6c6ePYsNGzbg9ttvR0lJCU6fPo3Tp0/jzJkz6N27N3777TccPXrUbZrRo0fDZDJ5nZ+zdZuTc6D0jz76yO2/kydPdvuc8+EPtbv81WQymVytpxwOB86ePYuqqipcddVVru6aSn3Xjz76CF26dME111zjmj4lJQV33313wOUEsmLFCrRr1w5t27Z1leH06dOuVh41u0kDQI8ePdxaw3Tu3BkAMGTIECQmJnq8X3u7x8TE4K9//avr37GxsfjrX/+KkydPYvv27bLK1K1bN2RmZnp8t5qtm86dO4eioiJcd911oraPHLXLIQgCVq1ahYEDB0IQBLfv0rt3bxQVFQVdFmcrupKSEp+fqVevHrZu3Ypjx47JXk5ubq7olqpitrEajh8/jl27dmHkyJFITk52vZ+VlYWbbrrJ9Xuvydux6syZMyguLpZdjhYtWqB3795u73300Ue45ppr8Je//MX1XkJCAsaMGYODBw/i559/dvv8iBEj3B600rlzZwiC4NHysnPnzjhy5Aiqqqpkl9cfscceo9GIu+++G++//77bvvjmm2+ia9euaNGihdvnk5OTsW7dOnzwwQeYMWMGGjZsiAsXLkguX0JCgt99Xyrndq95LPNFjf3NOYble++9p9iwEXLVPraUlJQEXC/Ovzu/T/v27bFr1y4MHz4cBw8exJw5czB48GA0atQIr776qoqlJyIiUgbDQSIimeLi4jyefFu/fn2cO3cu4LT79u2DIAj45z//iZSUFLeXs1ta7UHMa1901tS6dWu3f7ds2RJGo9E1ztmhQ4dgNBo9njaalpaGevXq4dChQ37Lu2TJEmRlZSEuLg4NGjRASkoK1qxZg6KiIkW/66FDhzy+C4CA43iJ8dtvv+Gnn37yKMNll13mVganZs2auf3barUCANLT072+X3u7N2nSxOOhMc5lObeL1DL52gc+/PBDdOnSBXFxcUhOTnZ18xazfeSoXY5Tp07h/PnzWLBggcd3uffee71+F6mcgYq/i/Z//etf+PHHH5Geno5rrrkG06ZNExXW1+Tvd1abmG2sBufv1dvvol27djh9+rTH0AO19+f69esD8NxvpfC2rg4dOuSzXM6/+yuXv9+Zw+FQbZ+WcuwZMWIELl686BqOYe/evdi+fbvXLrqxsbHo2bMnBgwYgH/+8594+eWXMWrUKHz44YeSynfhwoWAgVVhYaHb6+LFiz4/m5SUBMB/2O6kxv52xx134Nprr8X999+PRo0a4c4778Tbb78dlqCw9rElMTEx4Hpx/r3mNrnsssvwxhtv4PTp0/jhhx/wzDPPICYmBmPGjMFnn32mUumJiIiUwTEHiYhk8tWKTwznBdCjjz7q0fLGqXaQJ2XcvdoPkQj0vj9Lly7FyJEjMXjwYDz22GNITU2FyWRCfn4+9u/fH3B6Od9VDQ6HA5dffjleeOEFr3+vHUb42r6+3hdqPChDrTJ52we++OIL3Hzzzbj++uvxyiuvoHHjxjCbzVi0aBEKCgpElcPXfuF8uE5ttcvh3MbDhw9Hbm6u12lqjlUnx48//gjA/75y++2347rrrsPq1avx6aefYtasWXj22WfxzjvvoG/fvqKWo/TTdqWuW7Uoud86KbGuQvE7U1pmZiays7OxdOlSjBgxAkuXLkVsbKzPMepq6tq1Kxo3bow333zTbcxCfyorK/Hrr7+iQ4cOfj9X+0nGixYt8njoilPbtm0BALt373aN56ekQNsvPj4en3/+OTZu3Ig1a9bgk08+wfLly3HjjTfi008/Der8KtWPP/6I1NRUV2Darl077Ny5EzabzedTrX/44QeYzWavgbLJZMLll1+Oyy+/HDk5Objhhhvw5ptvomfPnqp+DyIiomAwHCQiUpGvYODSSy8FAJjNZkUuGH777Te3Vjz79u2Dw+FwdYtt3rw5HA4HfvvtN1cLHgA4ceIEzp8/7/UJi04rV67EpZdeinfeecft+9QeeF+J79q8eXP89ttvHu/v3bvX73RitGzZEt9//z169OghKySV6tixYygtLXVrWfbrr78C+POJpUqUadWqVYiLi8PatWvdLmQXLVrk8Vlfy6hfv77Xp6cGalHqlJKSgsTERNjtdlUugC9cuIDVq1cjPT3dbf/1pnHjxnjwwQfx4IMP4uTJk7jyyivx9NNPu8JBJbe9mG3sbDFVe/16W7diy+b8vXr7XezZswcNGzb0aNEYKs2bN/dZLufftUjqsWfEiBGYPHkyjh8/joKCAvTv39+1rQMpLy+X1AJy5cqVuHjxos+bK041H6oBwOeDewBg4MCByM/Px9KlSwOGg2rtb0ajET169ECPHj3wwgsv4JlnnsGTTz6JjRs3omfPniE5Tm/ZsgX79+/H8OHDXe8NGDAAW7ZswYoVK9zedzp48CC++OIL9OzZM2BAftVVVwGo7ppNRESkZexWTESkojp16gDwDAZSU1PRvXt3zJ8/3+tFw6lTpyQt5+WXX3b790svvQQArkCkX79+AKqfPlqTs8Wa84m23jhbcNRssbN161Zs2bLF7XNKfNd+/frhm2++wbfffuv29zfffNNn+cS6/fbbcfToUa/jP128eNGjW1ywqqqqMH/+fNe/KyoqMH/+fKSkpCA7O1uxMplMJhgMBreWaAcPHvR40jEA1K1b12sI2LJlSxQVFeGHH35wvXf8+HG/T7GuXYYhQ4Zg1apVrhZ+NUndn2u6ePEi7rnnHpw9exZPPvmk35Z4tQOX1NRUNGnSBDabzfVe3bp1FeuaKmYbO58I/fnnn7uVdcGCBR7zE1u2xo0bo1OnTliyZInb9vzxxx/x6aefun7v4dCvXz98++23bseH0tJSLFiwABkZGV7HzNQCqceeYcOGwWAwYOLEifj99989QqTS0lKUlZV5TLdq1SqcO3fOFRoF8v3332PSpEmoX7++x9iytfXs2dPtVbslYU05OTno06cPXnvtNa/HioqKCjz66KMA1Nnfzp496/Fep06dAMD1e3UGjt6OWadPn8aePXu8rmOxDh06hJEjRyI2NhaPPfaY6/2//vWvSE1NxWOPPeYxLEF5eTnuvfdeCILg9uTsL774ApWVlR7LcI7HqMTQGERERGpiy0EiIhXFx8cjMzMTy5cvx2WXXYbk5GR06NABHTp0wMsvv4y//OUvuPzyyzF69GhceumlOHHiBLZs2YI//vgD33//vejlHDhwADfffDP69OmDLVu2YOnSpbjrrrvQsWNHAEDHjh2Rm5uLBQsW4Pz58+jWrRu+/fZbLFmyBIMHD8YNN9zgc94DBgzAO++8g1tuuQX9+/fHgQMHMG/ePGRmZroNrK/Ed/3b3/6GN954A3369MHEiRNRt25dLFiwAM2bN3cLruS455578Pbbb2Ps2LHYuHEjrr32WtjtduzZswdvv/021q5dK/qCXYwmTZrg2WefxcGDB3HZZZdh+fLl2LVrFxYsWOB6AIMSZerfvz9eeOEF9OnTB3fddRdOnjyJl19+Ga1atfJYZ9nZ2fjss8/wwgsvoEmTJmjRogU6d+6MO++8E3//+99xyy234KGHHkJZWRnmzp2Lyy67TPSDRGbOnImNGzeic+fOGD16NDIzM3H27Fns2LEDn332mdcwoLajR49i6dKlAKpbC/78889YsWIFCgsL8cgjj7g9/KO2kpISNG3aFEOHDkXHjh2RkJCAzz77DNu2bcPzzz/vtg6WL1+OyZMn4+qrr0ZCQgIGDhwo6jvWJmYbt2/fHl26dEFeXh7Onj2L5ORkLFu2zOuDNaSUbdasWejbty9ycnIwatQoXLx4ES+99BKsViumTZsm6/so4fHHH8dbb72Fvn374qGHHkJycjKWLFmCAwcOYNWqVTAatXlfWuqxJyUlBX369MGKFStQr149jxssv/32G3r27Ik77rgDbdu2hdFoxHfffYelS5ciIyMDEydO9JjnF198gfLyctjtdpw5cwZfffUV3n//fVitVqxevRppaWmKfufXX38dvXr1wq233oqBAweiR48eqFu3Ln777TcsW7YMx48fx3PPPQdA+f1txowZ+Pzzz9G/f380b94cJ0+exCuvvIKmTZu6HmbTsmVL1KtXD/PmzUNiYiLq1q2Lzp07o0WLFvjPf/6D6dOnY+PGjejevXvA5e3YsQNLly6Fw+HA+fPnsW3bNqxatQoGgwFvvPGG27AHDRo0wMqVK9G/f39ceeWVuP/++5GZmYnCwkIsXrwY+/btw5w5c9C1a1fXNM8++yy2b9+OW2+91TWvHTt24PXXX0dycjImTZokeR0RERGFVJiekkxEpBuLFi0SAAjbtm1zvZebmyvUrVvX47NTp04Vah9av/76ayE7O1uIjY0VAAhTp051/W3//v3CiBEjhLS0NMFsNguXXHKJMGDAAGHlypV+l197eT///LMwdOhQITExUahfv74wfvx44eLFi26fraysFKZPny60aNFCMJvNQnp6upCXlyeUl5e7fa5bt25Ct27dXP92OBzCM888IzRv3lywWCzCFVdcIXz44YdCbm6u0Lx5c0W/qyAIwg8//CB069ZNiIuLEy655BLhqaeeEhYuXCgAEA4cOOCxDnzp37+/R/kqKiqEZ599Vmjfvr1gsViE+vXrC9nZ2cL06dOFoqIi1+cACOPGjXOb9sCBAwIAYdasWW7vb9y4UQAgrFixwm0dtm/fXvjuu++EnJwcIS4uTmjevLnwn//8x6OcwZTJaeHChULr1q0Fi8UitG3bVli0aJHXfXHPnj3C9ddfL8THxwsAhNzcXNffPv30U6FDhw5CbGys0KZNG2Hp0qVe5+GvHCdOnBDGjRsnpKenC2azWUhLSxN69OghLFiwwOvna2revLkAQAAgGAwGISkpSWjfvr0wevRoYevWrV6nqbmP2Ww24bHHHhM6duwoJCYmCnXr1hU6duwovPLKK27TXLhwQbjrrruEevXqCQBc+4i37ejk/NvGjRtd70nZxvv37xd69uwpWCwWoVGjRsITTzwhrFu3zmOevsrm3PcWLVrkNt/PPvtMuPbaa4X4+HghKSlJGDhwoPDzzz+7fca5DU+dOuX2vvO4Eug35Wv65s2bC/379/c6zf79+4WhQ4cK9erVE+Li4oRrrrlG+PDDD90+42t9+zre+SqHP+3bt3c7ltUuf839XxCkH3vefvttAYAwZswYj7+dOnVKGDNmjNC2bVuhbt26QmxsrNC6dWth0qRJHt/BuS6cL7PZLKSkpAjXX3+98PTTTwsnT54U/Z2lKisrE5577jnh6quvFhISElzlnDBhgrBv3z63zyq5v61fv14YNGiQ0KRJEyE2NlZo0qSJMGzYMOHXX391m+69994TMjMzhZiYGLffgHM5NX8/3jh/O85XTEyMkJycLHTu3FnIy8sTDh065Hfa0aNHC82aNRPMZrPQsGFD4eabbxa++OILj89+9dVXwrhx44QOHToIVqtVMJvNQrNmzYSRI0cK+/fv91tGIiIiLTAIggZGdiYiIlmmTZuG6dOn49SpU2jYsGG4i0P/0717d5w+fdprF1siigzvvfceBg8ejM8//1yVh3oQERERhYo2+3YQEREREWnYq6++iksvvdTVDZaIiIhIrzjmIBERERGRSMuWLcMPP/yANWvWYM6cOSF5qi4RERGRmhgOEhERERGJNGzYMCQkJGDUqFF48MEHw10cIiIioqBxzEEiIiIiIiIiIqIoxTEHiYiIiIiIiIiIohTDQSIiIiIiIiIioijFMQcDcDgcOHbsGBITEzngNBERERERERFJIggCSkpK0KRJExiN0dtGq7y8HBUVFbKnj42NRVxcnIIlIieGgwEcO3YM6enp4S4GEREREREREenYkSNH0LRp03AXIyzKy8vRMD4epUHMIy0tDQcOHGBAqAKGgwEkJiYCAObUA+LZcJCIiIiIiIiIJLgoABPP/5kvRKOKigqUAhhvMsIiY3obgP8UFqKiooLhoAoYDgbg7EocbwDqGJkOEhEREREREZEEDgEAOFQZgESjgDgZ66FcEAC7CgUiAHwgCRERERERERERUdRiy0EiIiIiIiIiIlJdjKH6JXk65YtCNXD9EhERERERERGR6kyG6pfk6ZQvCtXAbsVERERERERERERRii0HiYiIiIiIiIhIdbFGAbEyWg46BEH5wpALw0EiIiIiIiIiIlKdSeaYg+xWrC52KyYiIiIiIiIiIopSbDlIRERERERERESqMxllPpCEvYpVxZaDREREREREREREUYotB4mIiIiIiIiISHUmg8yWg8oXhWpgOEhERERERERERKqLNULW04rt7FasKnYrJiIiIiIiIiIiilIMB4mIiIiIiIiISHUmo/yXWHPnzkVWVhaSkpKQlJSEnJwcfPzxxwCAs2fPYsKECWjTpg3i4+PRrFkzPPTQQygqKnJNv3jxYhgMBq+vkydPKr1KNIHdiomIiIiIiIiIKCI0bdoUM2fOROvWrSEIApYsWYJBgwZh586dEAQBx44dw3PPPYfMzEwcOnQIY8eOxbFjx7By5UoAwB133IE+ffq4zXPkyJEoLy9HampqOL6S6gyCILDnth/FxcWwWq1YUB+oY5TRMZ6IiIiIiIiIolaZQ8CYc0BRURGSkpLCXZywCDZbCXYdJicnY9asWRg1apTH31asWIHhw4ejtLQUMTGebehOnTqFSy65BAsXLsQ999wjedl6wJaDRERERERERESkOrMJMMsY4M4ss62W3W7HihUrUFpaipycHK+fcQaO3oJBAHj99ddRp04dDB06VF4hdIDhIBERERERERERaV5xcbHbvy0WCywWi8fndu/ejZycHJSXlyMhIQGrV69GZmamx+dOnz6Np556CmPGjPG5zIULF+Kuu+5CfHx88F9Ao/hAEiIiIiIiIiIiUp3JIP8FAOnp6bBara5Xfn6+1+W0adMGu3btwtatW/HAAw8gNzcXP//8s9tniouL0b9/f2RmZmLatGle57Nlyxb88ssvXrsjRxK2HCQiIiIiIiIiItXVDPqkTgcAR44ccRtz0FurQQCIjY1Fq1atAADZ2dnYtm0b5syZg/nz5wMASkpK0KdPHyQmJmL16tUwm81e5/Paa6+hU6dOyM7Oll5oHdFNy0F/j6L2ZcWKFWjbti3i4uJw+eWX46OPPgpRaYmIiIiIiIiISEnOTMj58hUO1uZwOGCz2QBUtxjs1asXYmNj8f777yMuLs7rNBcuXMDbb78d8a0GAR21HPT3KOr27dt7fP7rr7/GsGHDkJ+fjwEDBqCgoACDBw/Gjh070KFDhzB8AyIiIiIiIiKi6BWKB5Lk5eWhb9++aNasGUpKSlBQUIBNmzZh7dq1rmCwrKwMS5cuRXFxsWscw5SUFJhMJtd8li9fjqqqKgwfPlx6gXXGIAiCEO5CyOXvUdR33HEHSktL8eGHH7re69KlCzp16oR58+aJXkawj9smIiIiIiIiouhV5hAw5tyfT8WNRs5s5e3G8rKVMoeA24+LW4ejRo3C+vXrcfz4cVitVmRlZeHvf/87brrpJmzatAk33HCD1+kOHDiAjIwM17+7du2KFi1a4M0335RcXr3RTcvBmsQ8inrLli2YPHmy23u9e/fGu+++G4ISEhERERERERFRTUajASYZ4WB1Y0NxbdsWLlzo82/du3eH2DZyX3/9tajPRQJdhYNiH0UNAIWFhWjUqJHbe40aNUJhYaHfZdhsNlc/dMDzMdlERERERERERCRdKLoVk3S6eSAJIO5R1MHKz893eyx2enq6ovMnIiIiIiIiIiLSCl2Fg85HUWdnZyM/Px8dO3bEnDlzvH42LS0NJ06ccHvvxIkTSEtL87uMvLw8FBUVuV5HjhxRrPxERERERERERNHKaJD/IvXoKhysreajqGvLycnB+vXr3d5bt26dzzEKnSwWi8ejsYmIiIiIiIiIiCKRbsYc9PcoagAYMWIELrnkEuTn5wMAJk6ciG7duuH5559H//79sWzZMnz33XdYsGBBOL8GEREREREREVFUMhmrX5KnU74oVINuwsGTJ09ixIgRbo+iXrt2LW666SYAwOHDh2E0/rmHde3aFQUFBfjHP/6BJ554Aq1bt8a7776LDh06hOsrEBERERERERFFrRijATEm6X2Eq8MrcU8ZJukMgthnOEep4uJiWK1WLKgP1GEndyIiIiIiIiKSoMwhYMw5oKioKGqHLnNmK5+2NKKujHCw1C6g135HVK9DNemm5SAREREREREREemX7G7FbNamKoaDRERERERERESkOoPRAKOMXpkGhoOq0vXTiomIiIiIiIiIiEg+thwkIiIiIiIiIiLVGQ3VLznTkXrYcpCIiIiIiIiIiChKseUgERERERERERGpLibGgBgZTyuOYctBVTEcJCIiIiIiIiIi1RmN1S/J0/GBJKpit2IiIiIiIiIiIqIoxZaDRERERERERESkOnYr1ia2HCQiIiIiIiIiIopSbDlIRERERERERESqMxpkjjnoUL4s9CeGg0REREREREREpDqj0QCjUXofYTmBIonH1UtERERERERERBSl2HKQiIiIiIiIiIhUZzDKawVoYNM2VTEcJCIiIiIiIiIi1ZliDDDJePSwSYWy0J+YvRIRERERERERUUSYO3cusrKykJSUhKSkJOTk5ODjjz8GAJw9exYTJkxAmzZtEB8fj2bNmuGhhx5CUVGR13mdOXMGTZs2hcFgwPnz50P4LUKLLQeJiIiIiIiIiEh1oXggSdOmTTFz5ky0bt0agiBgyZIlGDRoEHbu3AlBEHDs2DE899xzyMzMxKFDhzB27FgcO3YMK1eu9JjXqFGjkJWVhaNHj0ous54wHCQiIiIiIiIioogwcOBAt38//fTTmDt3Lr755huMGjUKq1atcv2tZcuWePrppzF8+HBUVVUhJubPmGzu3Lk4f/48pkyZ4mp5GKkYDhIRERERERERkeqCHXOwuLjY7X2LxQKLxeJzOrvdjhUrVqC0tBQ5OTleP1NUVISkpCS3YPDnn3/GjBkzsHXrVvz++++Sy6s3HHOQiIiIiIiIiIhUZzAaZL8AID09HVar1fXKz8/3upzdu3cjISEBFosFY8eOxerVq5GZmenxudOnT+Opp57CmDFjXO/ZbDYMGzYMs2bNQrNmzdRZERrDloNERERERERERKR5R44cQVJSkuvfvloNtmnTBrt27UJRURFWrlyJ3NxcbN682S0gLC4uRv/+/ZGZmYlp06a53s/Ly0O7du0wfPhw1b6H1rDlIBERERERERERqc5oMLgeSiLpZahuOeh8ArHz5SscjI2NRatWrZCdnY38/Hx07NgRc+bMcf29pKQEffr0QWJiIlavXg2z2ez624YNG7BixQrExMQgJiYGPXr0AAA0bNgQU6dOVXHthA9bDhIRERERERERUcRyOByw2WwAqlsM9u7dGxaLBe+//z7i4uLcPrtq1SpcvHjR9e9t27bhvvvuwxdffIGWLVuGtNyhwnCQiIiIiIiIiIhUZzIbYDLLfyCJGHl5eejbty+aNWuGkpISFBQUYNOmTVi7di2Ki4vRq1cvlJWVYenSpSguLnY95CQlJQUmk8kjADx9+jQAoF27dqhXr57ksusBw0EiIiIiIiIiIlJdzYeLSJtO/GdPnjyJESNG4Pjx47BarcjKysLatWtx0003YdOmTdi6dSsAoFWrVm7THThwABkZGZLLFgkYDhIRERERERERUURYuHChz791794dgiBImp+cafSG4SAREREREREREanOYDLAYJLRctChQmHIRTdPK87Pz8fVV1+NxMREpKamYvDgwdi7d6/faRYvXgyDweD2qj3QJBERERERERERhcD/uhVLfUFGV2QSTzfh4ObNmzFu3Dh88803WLduHSorK9GrVy+Ulpb6nS4pKQnHjx93vQ4dOhSiEhMREREREREREWmbbroVf/LJJ27/Xrx4MVJTU7F9+3Zcf/31PqczGAxIS0tTu3hEREREREREROSHKdYo72nFhsge8y/cdNNysLaioiIAQHJyst/PXbhwAc2bN0d6ejoGDRqEn376ye/nbTab61HWNR9pTUREREREREREFGl0GQ46HA5MmjQJ1157LTp06ODzc23atMF///tfvPfee1i6dCkcDge6du2KP/74w+c0+fn5sFqtrld6eroaX4GIiIiIiIiIKKoYDJA15qCBQw6qyiDo8HnMDzzwAD7++GN8+eWXaNq0qejpKisr0a5dOwwbNgxPPfWU18/YbDbYbDbXv4uLi5Geno4F9YE6HACTiIiIiIiIiCQocwgYc666B2RSUlK4ixMWxcXFsFqtOHpPAyTFSm+nVlzhwCVvnInqdagm3Yw56DR+/Hh8+OGH+PzzzyUFgwBgNptxxRVXYN++fT4/Y7FYYLFYgi0mERERERERERGR5ummW7EgCBg/fjxWr16NDRs2oEWLFpLnYbfbsXv3bjRu3FiFEhIRERERERERkS8Gk1H2i9Sjm5aD48aNQ0FBAd577z0kJiaisLAQAGC1WhEfHw8AGDFiBC655BLk5+cDAGbMmIEuXbqgVatWOH/+PGbNmoVDhw7h/vvvD9v3ICIiIiIiIiIi0grdhINz584FAHTv3t3t/UWLFmHkyJEAgMOHD8No/DNNPnfuHEaPHo3CwkLUr18f2dnZ+Prrr5GZmRmqYhMREREREREREQCDyQCDSfrzHORMQ+LpJhwU89yUTZs2uf179uzZmD17tkolIiIiIiIiIiIisRgOahM7bRMREREREREREUUp3bQcJCIiIiIiIiIi/TKaTTDGSm+nZhTYclBNDAeJiIiIiIiIiEh17FasTexWTEREREREREREFKXYcpCIiIiIiIiIiFRniDXCIKNbsSHwM2opCGw5SEREREREREREFKXYcpCIiIiIiIiIiFRnMBlhMMloOWhSoTDkwnCQiIiIiIiIiIjUZzQAch4uYuQDSdTEbsVERERERERERERRiuEgERERERERERGprvqBJCYZL/Hx1dy5c5GVlYWkpCQkJSUhJycHH3/8MQDg7NmzmDBhAtq0aYP4+Hg0a9YMDz30EIqKitzm8dBDDyE7OxsWiwWdOnVSchVoErsVExERERERERFRRGjatClmzpyJ1q1bQxAELFmyBIMGDcLOnTshCAKOHTuG5557DpmZmTh06BDGjh2LY8eOYeXKlW7zue+++7B161b88MMPYfomocNwkIiIiIiIiIiIVGcwGWCQMeaglGkGDhzo9u+nn34ac+fOxTfffINRo0Zh1apVrr+1bNkSTz/9NIYPH46qqirExFTHZP/+978BAKdOnWI4SEREREREREREpAiTzAeSyJkGgN1ux4oVK1BaWoqcnByvnykqKkJSUpIrGIxG0fvNiYiIiIiI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ZL/0pFevXnjxxRdd/zYYDLhw4QKmTp2Kfv36ha9gPugsew0vZ0BoUjBSZStCIiIiIiIiImUxGKRweu6559CnTx9kZmaivLwcd911F3777Tc0bNgQb731VriL54HhoAx2BwNCIiIiIiIiokihZjDIHjZ/shurX3Km05P09HR8//33WL58Ob7//ntcuHABo0aNwt133+32gBKtYDgokxoBIcCQkIj0iRUeIiIiItICrT10xGwCKhUepoy0rbKyEm3btsWHH36Iu+++G3fffXe4ixQQw8EgsJsxERERERERUfhpsRsxb6B7chirX3Km0wuz2Yzy8vJwF0MSyav3wIEDeP311/HUU08hLy8PL7zwAjZu3BiSL/75559j4MCBaNKkCQwGA959912/n9+0aRMMBoPHq7CwUNFy8WElREREREREROHBYFA/Kk2C7JeejBs3Ds8++yyqqqrCXRRRRLccfPPNNzFnzhx89913aNSoEZo0aYL4+HicPXsW+/fvR1xcHO6++278/e9/R/PmzVUpbGlpKTp27Ij77rsPt956q+jp9u7di6SkJNe/U1NTFS8bWxESUbRixYeIiIiIwkVrwSDrxgQA27Ztw/r16/Hpp5/i8ssvR926dd3+/s4774SpZN6JCgevuOIKxMbGYuTIkVi1ahXS09Pd/m6z2bBlyxYsW7YMV111FV555RXcdtttihe2b9++6Nu3r+TpUlNTUa9ePcXL4w0fVkJERERERESkPi2OL0j+OQA4ZGQcehu2sV69ehgyZEi4iyGaqHBw5syZ6N27t8+/WywWdO/eHd27d8fTTz+NgwcPKlU+RXTq1Ak2mw0dOnTAtGnTcO211/r8rM1mg81mc/27uLhY8vL4sBIiIiIiIiIidWittSDAYFCsKhNQKWNdVels/S5atCjcRZBEVITlLxisrUGDBsjOzpZdICU1btwY8+bNw6pVq1wtHrt3744dO3b4nCY/Px9Wq9X1qt1KUiy7Q52xCImItISVICIiIiIKJQaDRMqT/bTikydP4uTJk3A43BOwrKysoAullDZt2qBNmzauf3ft2hX79+/H7Nmz8cYbb3idJi8vD5MnT3b9u7i4WHZACLCbMREREZFUZhNQaQ93KYiIKBJwfEFtsRuqX3Km05MWLVrAYPBd6N9//z2EpQlMcji4fft25Obm4pdffoEgVDdlMxgM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lojAbsZEREREREQUKeSOT63nYJChIAWrW7du4S6CJPrqtK0TenlYiaLz49OMiYiIiIiIIorc1oJSgj6pn5f6YBCT0cBgUEOqYJL90psvvvgCw4cPR9euXXH06FEAwBtvvIEvv/wyzCXzxHBQRXoICPk0YyLiwP1EFEl4TCMiCh89txaUM38Gg9JVwAybjFcF9DWc3apVq9C7d2/Ex8djx44dsNlsAKqH6HvmmWfCXDpPDAdVpkZAqIdWhERERERERKRffPCIfwwGyZ//+7//w7x58/Dqq6+6Pafj2muvxY4dO8JYMu9kjzlI4vFpxkRERERERKR1HF8wMKmhoMkIHXaIVU+VYIJJkL5GqgR9PZBk7969uP766z3et1qtOH/+fOgLFIDkOCg3Nxeff/65GmUJ6PPPP8fAgQPRpEkTGAwGvPvuuwGn2bRpE6688kpYLBa0atUKixcvVr2cvrCbMREREREREWkRxxcMTE4wSNEpLS0N+/bt83j/yy+/xKWXXhqGEvkneVctKipCz5490bp1azzzzDOuQRVDobS0FB07dsTLL78s6vMHDhxA//79ccMNN2DXrl2YNGkS7r//fqxdu1blkvoWrd2MGRISERGR2jjeIBFR6Oi5taCc+TMYVEY5zChHrIyXvsYcHD16NCZOnIitW7fCYDDg2LFjePPNN/Hoo4/igQceCHfxPEjuVvzuu+/i1KlTeOONN7BkyRJMnToVPXv2xKhRozBo0CC3vtRK69u3L/r27Sv68/PmzUOLFi3w/PPPAwDatWuHL7/8ErNnz0bv3r3VKmZAeulmDCjf1ZjdjImIiIiIiLSF4wv6x2BQOXaZTx6266xz9uOPPw6Hw4EePXqgrKwM119/PSwWCx599FFMmDAh3MXzIGuXTUlJweTJk/H9999j69ataNWqFe655x40adIEDz/8MH777TelyynLli1b0LNnT7f3evfujS1btkielx663OqhFSERERERERHpl5aCQTndiKXM32iQFgyajAwGqZrBYMCTTz6Js2fP4scff8Q333yDU6dO4amnngp30bwKarc9fvw41q1bh3Xr1sFkMqFfv37YvXs3MjMzMXv2bKXKKFthYSEaNWrk9l6jRo1QXFyMixcvep3GZrOhuLjY7VWTHrrcajkgZPdiIiIiIiIifdLa+IJSsLWgNlQJMbJfehQbG4vE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ltt1DRHZD4aDREREREREREREDooduxERERERERERETkohoNEREREREREREQOiuEgERERERERERGRg2I4SERERERERERE5KAYDhIRERERERERETkohoNEREREREREREQOiuEgERERERERERGRg2I4SERERERERERE5KAYDhIRERGVY9WqVejVq5fZ9/Pbb7+hVatW0Gq1Zt8XERERERHAcJCIiIioTNnZ2Zg+fTpmzJhh9n317t0bzs7O+O6778y+LyIiIiIigOEgERERUZm2bNkClUqFjh07WmR/o0aNwmeffWaRfRERERERMRwkIiIih3D37l34+/tj3rx5+nmHDh2Ci4sL9uzZU+p6GzZsQP/+/Q3mdenSBZMnTzaYN2jQIIwaNUr/ODAwEB9++CEiIiLg4eGBunXrYtu2bbh79y4GDhwIDw8PhISE4MSJEwbb6d+/P06cOIHLly+LP1giIiIiIiMxHCQiIiKH4OPjg2+++QYzZ87EiRMnkJGRgZEjR2LChAno3r17qesdPHgQbdq0EbXPRYsWoWPHjjh16hT69euHkSNHIiIiAiNGjMCff/6JBg0aICIiAoIg6NepU6cO/Pz8cODAAVH7JCIiIiIyBcNBIiIichh9+/bF2LFjMXz4cIwbNw5VqlRBTExMqcs/fPgQaWlpqFmzpuj9vfrqq2jUqBE++OADpKen48knn8TQoUPRuHFjvPPOOzh//jySk5MN1qtZsyauX78uap9ERERERKZgOEhEREQO5ZNPPkF+fj42b96M7777Dq6urqUu+/jxYwCAm5ubqH2FhITo/+/n5wcAaNGiRbF5KSkpBuu5u7sjKytL1D6JiIiIiEzBcJCIiIgcyuXLl3Hnzh1otVpcu3atzGWrVasGhUKBBw8eGMxXKpUGTYEBIC8vr9j6zs7O+v8rFIpS52m1WoP1UlNT4ePjU/7BEBERERFVEMNBIiIichi5ubkYMWIEnn/+ecyZMwcvv/xysVp7hbm4uCA4OBjnzp0zmO/j44PExET9Y41Gg7Nnz0pSxuzsbFy+fBmtW7eWZHtERERERGVhOEhEREQOY9q0aUhLS8Nnn32Gd955B40bN8bo0aPLXCc8PBwHDx40mNetWzf88ssv+OWXX3DhwgWMHz8eDx8+lKSMR44cgaurK8LCwiTZHhERERFRWRgOEhERkUOIj4/H4sWL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2oSdO3cafcNujJo1a2L+/Pm4du0aGjdujI0bNyIhIQErV67UD8AgRZn69euHhQsXonfv3njxxReRkpKCpUuXomHDhsXOWWhoKH7//XcsXLgQNWvWRL169dCuXTu88MILeOedd/DMM8/g9ddfR1ZWFpYtW4bGjRsbPZDIRx99hD/++APt2rXD2LFjERwcjNTUVPz555/4/fffkZqaWu42bt++jW+//RZAQW3Bc+fOYfPmzUhKSsKbb75pMPhHURkZGahduzaGDBmCli1bwsPDA7///juOHz+OTz/91OAcbNy4EVOmTMGTTz4JDw8P9O/f36hjLMqY17hZs2Zo3749oqOjkZqaCm9vb2zYsKHEgTVMKduCBQvQp08fhIWFYcyYMXj8+DE+//xzqNVqzJw5U9TxSOHdd9/F999/jz59+uD111+Ht7c31qxZg6tXr2Lr1q1QKuX592xTv3t8fHzQu3dvbN68GV5eXsX+wPLPP/+gR48eeP7559GkSRMolUqcOHEC3377LQIDAzFp0qRi2zxw4ACys7Oh0Wj0/eNt27YNarUacXFx8Pf3l/y4//vf/+o/c4X5+fnpa+2ZomnTpujcuTPi4+PLXTY/P1+/7+zsbFy/fh3btm3DX3/9ha5duxYL0N99912cOnUK8+fPx+HDhzF48GC4u7vj4MGD+Pbbb9G0aVOsWbNGv/ytW7fQtm1bdOvWDd27d4e/vz9SUlLw/fff60PX6tWrm3yMREREsma1cZKJiOxcbGysAEA4fvy4fl5kZKRQpUqVYsvOmDFDKPqVfOjQISE0NFRwcXERAAgzZszQP3f58mUhIiJC8Pf3F5ydnYVatWoJTz/9tLBly5Yy9190f+fOnROGDBkieHp6ClWrVhUmTJggPH782GDZvLw8YdasWUK9evUEZ2dnISAgQIiOjhays7MNluvcubPQuXNn/WOtVivMmzdPqFu3ruDq6iq0bt1a2L59uxAZGSnUrVtX0mMVBEH466+/hM6dOwtubm5CrVq1hDlz5girVq0SAAhXr14tdg5K069fv2Lly83NFebPny80a9ZMcHV1FapWrSqEhoYKs2bNEtLS0vTLARCioqIM1r169aoAQFiwYIHB/D/++EMAIGzevNngHDZr1kw4ceKEEBYWJri5uQl169YVvvjii2LlrEiZdFatWiU0atRIcHV1FZo0aSLExsaW+F68cOGC0KlTJ8Hd3V0AIERGRuqf27Vrl9C8eXPBxcVFCAoKEr799tsSt1FWOZKTk4WoqCghICBAcHZ2Fvz9/YXu3bsLK1euLHH5wurWrSsAEAAICoVCUKlUQrNmzYSxY8cKR48eLXGdwu+xnJwc4a233hJatmwpeHp6ClWqVBFatmwpfPnllwbrPHr0SHjxxRcFLy8vAYD+PVLS66ije+6PP/7QzzPlNb58+bLQo0cPwdXVVfDz8xPee+89Yffu3cW2WVrZdO+92NhYg+3+/vvvQseOHQV3d3dBpVIJ/fv3F86dO2ewjO41vHv3rsF83fdKeZ+p0tavW7eu0K9fvxLXuXz5sjBkyBDBy8tLcHNzE9q2bSts377dYJnSzndp33ellaMszZo1M/guK1r+wu9/QTD9u2fTpk0CAOGVV14p9tzdu3eFV155RWjSpIlQpUoVwcXFRWjUqJEwefLkYsegOxe6ydnZWfDx8RE6deokzJ07V0hJSTH6mE1ReJ9Fp8LnrbRzX9LvYNF1SxMZGWmwv8qVKwuBgYHC4MGDhS1btggajabE9TQajRAbGyt07NhRUKlUgpubm9CsWTNh1qxZwqNHjwyWTU9PF5YsWSKEh4cLtWvXFpydnQVPT08hLCxM+OqrrwStVmvciSIiIrIhCkGQQQ/NRERkUTNnzsSsWbNw9+5d1oCQkS5duuDevXslNrElIvvw008/YdCgQdi/fz+eeuopaxeHiIiIiH0OEhERERFZyldffYX69evjP//5j7WLQkRERASAfQ4SEREREZndhg0b8Ndff+GXX37BkiVLLDL6OREREZExGA4SEREREZnZsGHD4OHhgTFjxuC1116zdnGIiIiI9NjnIBERERERERERkYNin4NEREREREREREQOiuEgERERERERERGRg2I4SERERERERERE5KA4IEk5tFot7ty5A09PT44qR0REREREREQmEQQBGRkZqFmzJpRKx62jlZ2djdzcXNHru7i4wM3NTcISkQ7DwXLcuXMHAQEB1i4GEREREREREdmwmzdvonbt2tYuhlVkZ2ejurs7MiuwDX9/f1y9epUBoRkwHCyHp6cnAOCLqoA7Kw4SkYnyOB48EREREZFDeywAbzz8N19wRLm5ucgEMLmSAq4i1s8BsDgpCbm5uQwHzYDhYDl0TYndFUBlJdNBIjJdrtbaJSAiIiIiIuspqDHArsoAVwCuYs6DwFoX5sRwkIjIzFyUDAiJiIiIiIiUCsBJRDbouD01WgbDQSIiC3D5368ZQ0IiIiIiInJUlRQFk8nrSV8UKoTnl4jIgliLkIiIiIiIHJWLEnAREQ5q2arYrFgzk4jIwlz4zUtEREREREQywZqDRERWwGbGRERERETkaJwUgqg+B53AqoPmxHCQiMiK2MyYiIiIiIgchZPIPgedpC8KFcJwkIjIyliLkIiIiIiIHIGTUtxoxU6sOGhW7PmKiEgm2BchERERERERWRprDhIRyQibGRMRERERkb1yUoisOSh9UagQhoNERDLDZsZERERERGSPGA7KExuxERHJFJsZExERERERkbmx5iARkYyxFiEREREREdkL1hyUJ4aDREQ2gH0REhERERGRreNoxfLEcJCIyEYwICQiIiIiIlvmrBDXfVI+74PMij1aERHZEPZDSERERERERFJizUEiIiIiIiIiIjI7pbJgMnk96YtChTAcJCKyMWxeTEREREREtkj0gCQi1iHjMRwkIiIiIiIiIiKzYzgoT6yZSURERERERERE5KBsJhxctmwZQkJCoFKpoFKpEBYWhh07dpS5zubNm9GkSRO4ubmhRYsW+PXXXy1UWiIi8+LAJEREREREZGuclOInMh+bOb21a9fGRx99hJMnT+LEiRPo1q0bBg4ciL///rvE5Q8dOoRhw4ZhzJgxOHXqFAYNGoRBgwbh7NmzFi45EREREREREREpFeInMh+bCQf79++Pvn37olGjRmjcuDHmzp0LDw8PHDlypMTllyxZgt69e+Ott95C06ZNMWfOHDzxxBP44osvLFxyIiLzYO1BIiIiIiKyJUqlAk4iJqUJ6WB5LU9fffVVNGjQAO7u7vDx8cHAgQNx4cIFg228/vrrCA0NhaurK1q1amXUfrOzsxEVFYVq1arBw8MDgwcPRnJyssEyCoWi2LRhwwajj81cbPLWUqPRYMOGDcjMzERYWFiJyxw+fBg9evQwmBceHo7Dhw+Xue2cnBykp6cbTEREREREREREJH/ltTwNDQ1FbGwszp8/j507d0IQBPTq1QsajcZgO6NHj8bzzz9v9H7feOMN/Pzzz9i8eTP27duHO3fu4Nlnny22XGxsLBITE/XToEGDKnS8UrCp0YrPnDmDsLAwZGdnw8PDA3Fx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Ll266GsMJicnY9++fahRo4bo7TMcNIPCF/YMComIiMhYbHJMRERkX1yUQD5/00kCL7/8MlJTUzFw4ED89NNP+OCDD3Dnzh3s27cPNWvWrNC2GQ6aGfsiJCIiIjFYm5CIiMh2MQcoGWsOVszbb7+N1NRUdO/eHYGBgYiPj0ft2rUrvF2GgxbA5sZEREQkFkNCIiIi28J7/9JpFYBWxPnROnjT7GeffdbgsbOzM6pXr45JkyYZzP/hhx9EbZ/hoAUVvajnFwYREREZi02OiYiI5I/3+WVjzUFx1Gq1weNhw4ZJun2Gg1bkKGGhKTcw9noOiIiIpMTahERERPLD+1kyl9jYWLNun+GgjNhSWGium5HStivnc0FERGQtDAmJiIjkgfesxtEqRTYr5vk1K55eI2mscNGdqzWcLL2/siZLk0s5iIiI5MhF+e9ERERElsXfX+PpmhWLmRzVuHHjcOvWLaOW3bhxI7777juT98GagybQaAEnK74hSwrDyvsSsvcAjTUNiYiIDLE2IRERkeXw3tM02koCNJUEUes5Kh8fHzRr1gwdO3ZE//790aZNG9SsWRNubm548OABzp07h4MHD2LDhg2oWbMmVq5cafI++DY2kUZrnVqEpZFbDT+54PkgIiJHx5qERERE5sPfWflatmwZQkJCoFKpoFKpEBYWhh07dgAAUlNTMXHiRAQFBcHd3R116tTB66+/jrS0NINt3LhxA/369UPlypXh6+uLt956C/n5+aXuMz4+HgqFosTp+PHj+uX++usvPPXUU3Bzc0NAQAA+/vjjco9nzpw5+O9//4uOHTviyy+/RPv27VGnTh34+voiKCgIERERuHLlClauXIkjR44gJCTE5HPGmoMiWbsWIYlTVkDIL3YiIrJHrElIREQkLd47imeJPgdr166Njz76CI0aNYIgCFizZg0GDhyIU6dOQRAE3LlzB5988gmCg4Nx/fp1jBs3Dnfu3MGWLVsAABqNBv369YO/vz8OHTqExMREREREwNnZGfPmzStxnx06dEBiYqLBvOnTp2PPnj1o06YNACA9PR29evVCjx49sHz5cpw5cwajR4+Gl5cXXnnllTKPyc/PD9OmTcO0adPw4MED3LhxA48fP0b16tXRoEEDKBQK409QCRSCIDhu3UwjpKenQ61WY6kacC/hZDMgtH/84iciInvBgJCIiKhi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IV5//XU89dRT+NrXvoYFCxY4kYovv/wyjjrqKHz44YcAgKOPPhpnnHEGLr30Urz88st48cUXsXDhQnzpS19yIka//OUvo1Qq4ZJLLsFbb72FBx98EHfeeScWL17cmhPlgpGDhBBCCCGEEEIIIaQj2LJlC+bMmYONGzdi5MiROO644/DUU0/hc5/7HADg9ttvh6qqmDVrFsrlMmbMmIG77rrL2V7TNPz0pz/F/Pnz0d/fj7322gtz587F17/+dWed3bt3Y926dahUKs6y+++/HwsXLsRpp53m7H/58uXO9yNHjsTPf/5zLFiwAJMnT8a+++6LG264AZdddlkTzko4isnpckiLKJfLuPXWW7FkyZLAcQIIIcngfUZI9vA+IyR7eJ8Rki28xwjpbigHCSGEEEIIIYQQQgjpUjjmICGEEEIIIYQQQgghXQrlICGEEEIIIYQQQgghXQrlICGEEEIIIYQQQgghXQrlIGk569evxyWXXIKDDz4Yw4YNw6GHHoqlS5dicHCw1UkjpKO4+eab8elPfxrDhw/HqFGjWp0cQjqC7373uzjooIPQ29uLadOm4eWXX251kgjpKF544QXMnDkT48ePh6IoeOyxx1qdJEI6iltvvRVTp07F3nvvjf322w/nnHMO1q1b1+pkEUKaDOUgaTnvvPMODMPA9773Pbz11lu4/fbbcffdd+Mf//EfW500QjqKwcFBnH/++Zg/f36rk0JIR/Dggw9i8eLFWLp0KX7729/ik5/8JGbMmIEtW7a0OmmEdAy7du3CJz/5SXz3u99tdVII6Uief/55LFiwAC+99BKefvppVCoVnH766di1a1erk0YIaSKcrZjkkmXLlmHFihX43//931YnhZCO495778UVV1yBbdu2tTophLQ106ZNw9SpU/Gd73wHAGAYBiZOnIhFixbh2muvbXHqCOk8FEXBo48+inPOOafVSSGkY/noo4+w33774fnnn8fJJ5/c6uQQQpoEIwdJLtm+fTtGjx7d6mQQQgghvgwODmLNmjWYPn26s0xVVUyfPh2rV69uYcoIIYSQ+Gzfvh0A2BYjpMugHCS5491338W3v/1tXH755a1OCiGEEOLLH//4R+i6jrFjx9YtHzt2LDZt2tSiVBFCCCHxMQwDV1xxBU466ST85V/+ZauTQwhpIpSDJDOuvfZaKIoS+u+dd96p2+bD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", "text/plain": [ "
" ] @@ -60050,7 +35191,7 @@ "outputs": [ { "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAABQYAAAGGCAYAAAApXFxmAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8fJSN1AAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOydd7jcxPX+PzPS7r3XvWGKAdvY9GYwYLohGEzHNFMSjJ1QEloIIYUUWop/SQgllCRA6OSbBEJCGj2QkIQAwZgOAWNMMM027va9u5qZ3x9aaSWtVqvdu2tf23qfZ58djc6MRiutNHr1nnOEMcaQIUOGDBkyZMiQIUOGDBkyZMiQIUOGdQpydQ8gQ4YMGTJkyJAhQ4YMGTJkyJAhQ4YMqx4ZMZghQ4YMGTJkyJAhQ4YMGTJkyJAhwzqIjBjMkCFDhgwZMmTIkCFDhgwZMmTIkGEdREYMZsiQIUOGDBkyZMiQIUOGDBkyZMiwDiIjBjNkyJAhQ4YMGTJkyJAhQ4YMGTJkWAeREYMZMmTIkCFDhgwZMmTIkCFDhgwZMqyDyIjBDBkyZMiQIUOGDBkyZMiQIUOGDBnWQWTEYIYMGTJkyJAhQ4YMGTJkyJAhQ4YM6yAyYjBDhgwZMmTIkCFDhgwZMmTIkCFDhnUQGTGYIUOGDBkyrCKMGDGCqVOntnw777zzDkIIbrvtNr9u6tSp9OnTp+Xb9iCE4NJLL11l26uFqVOnMmLEiFBd3BifffZZ9txzT3r37o0QgpkzZwLw4IMPMmbMGNrb2xFCsGjRolUy7jUZ++23H/vtt19NuyeeeAIhBE888UTLx9STUe0cu/POO9lqq63I5XIMGDBgtY4xQ4YMGTJkyLD2ISMGM2TI0KNw2223IYTgP//5T91tV6xYwaWXXrrGPFwKIVJ91pT9aQVuuOGGELnVk7Dffvv5x0hKSb9+/dhyyy055ZRTeOSRR5q2nb/85S89imALoiePrREUi0WOP/54PvnkE6666iruvPNOhg8fzoIFC5g8eTIdHR1cf/313HnnnfTu3Xt1D3eVwyOc03zeeeedVTKmm266ifHjx7P++uvT1tbGyJEjmTZtWsX2o2PP5XIMGTKEPffck2984xu8++67LRnfiBEjqv5GBx98sG9X7Rx7/fXXmTp1KqNGjeKmm27ixhtvTL3tSy+9NLS9Xr16semmm3LEEUdw66230tXVVbXtn/70Jw4++GAGDx5Me3s7W2yxBRdeeCELFiyItf/jH//I+PHjGTp0KL169WKzzTZj8uTJPPjgg+l/rBais7OTq666inHjxtG/f39/n8455xz++9//rtaxvf/++1x66aX+S4hWYk2bJ2XIkCFDhlUDe3UPIEOGDBmahRUrVnDZZZcBpFKprG7ceeedoeU77riDRx55pKJ+6623XpXD6lG44YYbGDJkyCpR2TWCjTfemOnTpwOwfPly3nrrLe677z7uuusuJk+ezF133UUul/Pt33jjDaSs753cX/7yF66//vq6CLjhw4ezcuXK0LZbgaSxrVy5Etvu2dOM6BhnzZrFnDlzuOmmmzjttNP8+gcffJClS5fyne98hwkTJqyOofYIrLfeehXXpx//+Me89957XHXVVRW2Dz/8cMvH9PzzzzNy5EiOPPJIBg4cyOzZs7npppv405/+xAsvvMBGG20Usj/ppJM49NBD0VqzcOFCnn32Wa6++mquueYafvGLX3DiiSc2fYxjxozhy1/+ckV9cGzPPvts7Dn2xBNPoLXmmmuuYfTo0Q1t/6c//Sl9+vShq6uLuXPn8tBDD/HZz36Wq6++mj/96U9ssskmIfsLL7yQH//4x+y444587WtfY9CgQcyYMYPrrruOX/3qVzz22GNsueWWvv0VV1zBV77yFcaPH89FF11Er169eOutt3j00Uf51a9+FSJAVwfmz5/PwQcfzHPPPcfhhx/OySefTJ8+fXjjjTf41a9+xY033kihUFht43v//fe57LLLGDFiBGPGjGnptta0eVKGDBkyZFg16Nkz9gwZMmToAVi+fHlL1EGf+cxnQsv//ve/eeSRRyrq1xYYY+js7KSjo2OtGUf//v0rjtf/+3//j/POO48bbriBESNG8IMf/MBf19bW1u1tJsFxHLTW5PN52tvbW7qtWljd20+D6Bg//vhjgAp3zWr13UGrriutRO/evSvO91/96lcsXLhwtV23brjhhoq6SZMmscsuu3DHHXfw9a9/PbRu5513rhjrnDlzOOiggzj11FPZeuut2XHHHZs6xmHDhtX8fVp57h133HEMGTLEX7744ou5++67mTJlCscffzz//ve//XX/93//x49//GNOOOEE7r77bizL8tdNnTqV/fffn+OPP54ZM2Zg2zaO4/Cd73yHAw88MJYI9sa/OjF16lSef/557r33Xo499tjQuu985zt885vfXE0jy5AhQ4YMGXoGMlfiDBky9Hh4sdHmzp3LpEmT6NOnD+uttx4XXnghSinAdRNbb731ALjssst816mgkun111/nuOOOY9CgQbS3t7PLLrvwhz/8IbQtz5X5b3/7G2eddRZDhw5l4403BspuWa+//jqTJ0+mX79+DB48mC9+8Yt0dna2ZN+11lx99dVsu+22tLe3s/7663PmmWeycOHCkN2IESM4/PDDeeKJJ9hll13o6Ohg++23992F7rvvPrbffnva29sZO3Yszz//fKi99xu//fbbTJw4kd69e7PRRhtx+eWXY4zp1pgeeughf0w///nPAbj11lv51Kc+xdChQ2lra2Obbbbhpz/9aUX7V155hb/97W/+8fQUDt6xiMI7fkE3wqRxLFq0iPPPP59NNtmEtrY2Ro8ezQ9+8AO01ukOUAwsy+InP/kJ22yzDddddx2LFy8OjSWofiwWi1x22WVsvvnmtLe3M3jwYPbee2/fFXnq1Klcf/31QNj1HMqukVdccQVXX301o0aNoq2tjVdffTU2xqCHWse4Wry3aJ9JY/PqokrC559/nkMOOYR+/frRp08fDjjggBApAeVj+M9//pMLLriA9dZbj969e3P00Uczb9682gcA+P3vf892221He3s72223Hb/73e9i7YJjnDp1KuPHjwfg+OOP98+3/fbbj1NPPRWAXXfdFSFE6Bg+/fTTHHzwwfTv359evXoxfvx4/vnPf4a2452vr776KieffDIDBw5k77339tffddddjB07lo6ODgYNGsSJJ57I//73v1Af++23H9tttx2vvvoq+++/P7169WLYsGH88Ic/rNivzs5OLr30UrbYYgva29vZcMMNOeaYY5g1a5Zvk/Z/3B3ExRh87733mDRpEr1792bo0KF86UtfqnBpveSSS8jlcrHH+4wzzmDAgAGJ11wvlmTaOJDDhw/ntttuo1AoxP6erUa1c2zEiBFccsklgKvAbGbczk9/+tOcdtppPP3006HQB5dddhkDBw7kxhtvDJGCALvtthtf+9rXeOmll7j33nsBV423ZMkS9tprr9jtDB06NHEc2223Hfvvv39FvdaaYcOGcdxxx/l1v/rVrxg7dix9+/alX79+bL/99lxzzTWJ/T/99NP8+c9/5nOf+1wFKQjuy5orrrgiVPfXv/6VffbZh969ezNgwACOOuooXnvttZCN959+6623mDp1KgMGDKB///5MmzaNFStWhGwfeeQR9t57bwYMGECfPn3Ycsst+cY3vgG419tdd90VgGnTpvnXUe86++STT3L88cez6aab0tbWxiabbMKXvvQlVq5cGdpGs+ZJGTJkyJBh3USmGMyQIcMaAaUUEydOZNy4cVxxxRU8+uij/PjHP2bUqFF84QtfYL311uOnP/0pX/jCFzj66KM55phjANhhhx0AeOWVV9hrr70YNmwYX//61+nduze/+c1vmDRpEr/97W85+uijQ9s766yzWG+99bj44otZvnx5aN3kyZMZMWIE06dP59///jc/+clPWLhwIXfccUfT9/vMM8/ktttuY9q0aZx33nnMnj2b6667jueff55//vOfIVfRt956i5NPPpkzzzyTz3zmM1xxxRUcccQR/OxnP+Mb3/gGZ511FgDTp09n8uTJFW6tSikOPvhgdt99d374wx/y4IMPcskll+A4DpdffnlDY3rjjTc46aSTOPPMMzn99NN997Of/vSnbLvtthx55JHYts0f//hHzjrrLLTWnH322QBcffXVnHvuufTp08dXdKy//voN/Y5x41ixYgXjx49n7ty5nHnmmWy66ab861//4qKLLuKDDz7g6quvbmhb4JKDJ510Et/+9rf5xz/+wWGHHRZrd+mllzJ9+nROO+00dtttN5YsWcJ//vMfZsyYwYEHHsiZZ57J+++/H+ti7uHWW2+ls7OTM844g7a2NgYNGlSV2Ex7jNMgzdiCeOWVV9hnn33o168fX/3qV8nlcvz85z9nv/32429/+xvjxo0L2Z977rkMHDiQSy65hHfeeYerr76ac845h1//+teJ23n44Yc59thj2WabbZg+fToLFixg2rRpPsGftD/Dhg3j+9//Pueddx677rqrf75tueWW3HjjjVx++eWMHDmSUaNGAS6BcMghhzB27FguueQSpJQ+6f3kk0+y2267hbZx/PHHs/nmm/P973/fJ2O/973v8e1vf5vJkydz2mmnMW/ePK699lr23Xdfnn/++ZBSbOHChRx88MEcc8wxTJ48mXvvvZevfe1rbL/99hxyyCGAe4wPP/xwHnvsMU488US++MUvsnTpUh555BFefvllf+z1/I+bhZUrV3LAAQfw7rvvct5557HRRhtx55138te//jVkd8opp3D55Zfz61//mnPOOcevLxQKvuorqvZcsGABSineffdd/1w+4IADUo9tjz32YNSoUU2ND+qhWCwyf/78ivrevXvT0dHBN7/5zdhzbNKkSdxxxx387ne/892BvXtaM3DKKadw44038vDDD3PggQfy5ptv8sYbbzB16lT69esX22bKlClccskl/OlPf+LEE09k6NChdHR08Mc//pFzzz2XQYMG1TWGE044gUsvvZQPP/yQDTbYwK//xz/+wfvvv++7dj/yyCOcdNJJHHDAAb4K+7XXXuOf//wnX/ziF6v27738O+WUU1KN59FHH+WQQw5hs80249JLL2XlypVce+217LXXXsyYMaMigdHkyZMZOXIk06dPZ8aMGdx8880MHTrUH+Mrr7zC4Ycfzg477MDll19OW1sbb731lv/yYOutt+byyy/n4osv5owzzmCfffYBYM899wTgnnvuYcWKFXzhC19g8ODBPPPMM1x77bW899573HPPPaGxdHeelCFDhgwZ1mGYDBkyZOhBuPXWWw1gnn32Wb/u1FNPNYC5/PLLQ7Y77bSTGTt2rL88b948A5hLLrmkot8DDjjAbL/99qazs9Ov01qbPffc02y++eYV2997772N4zihPi655BIDmCOPPDJUf9ZZZxnAvPDCCw3ts4ezzz7bBC/LTz75pAHM3XffHbJ78MEHK+qHDx9uAPOvf/3Lr3vooYcMYDo6OsycOXP8+p///OcGMI8//rhf5/3G5557rl+ntTaHHXaYyefzZt68eQ2P6cEHH6zY1xUrVlTUTZw40Wy22Wahum233daMHz++wtY7FlF4x2/27Nk1x/Gd73zH9O7d2/z3v/8N1X/96183lmWZd999t6L/IMaPH2+23Xbbqut/97vfGcBcc801obGceuqp/vKOO+5oDjvssMTtRM8LD7NnzzaA6devn/n4449j1916661+Xdpj/Pjjj1ecH9X6rDY2Y0zFf3HSpEkmn8+bWbNm+XXvv/++6du3r9l33339Ou8YTpgwwWit/fovfelLxrIss2jRotjteRgzZozZcMMNQ3YPP/ywAczw4cMTx+jt+z333BOyi7suaa3N5ptvbiZOnBga54oVK8zIkSPNgQce6Nd55+tJJ50U6vedd94xlmWZ733ve6H6l156ydi2HaofP368Acwdd9zh13V1dZkNNtjAHHvssX7dLbfcYgBz5ZVXVvw23jjr+R/XwmGHHVbxuwbHHPz/Xn311QYwv/nNb/y65cuXm9GjR1ecc3vssYcZN25cqL/77rsv9tw0xpi2tjYDGMAMHjzY/OQnPwmt987fH/3oR1X35aijjjKAWbx4cfUdrhPe9SfuM336dN8u7hwzpnzueP/PelCr7cKFCw1gjj76aGOMMb///e8NYK666qrEfvv162d23nlnf/niiy82gOndu7c55JBDzPe+9z3z3HPPpRrjG2+8YQBz7bXXhurPOuss06dPH/9e8cUvftH069ev4r5cC0cffbQBzMKFC1PZjxkzxgwdOtQsWLDAr3vhhReMlNJMmTLFr/N+289+9rMV2xs8eLC/fNVVV9U8fs8++2zFtdVD3L1y+vTpRggRuq83Y56UIUOGDBnWXWSuxBkyZFhj8PnPfz60vM8++/D222/XbPfJJ5/w17/+lcmTJ7N06VLmz5/P/PnzWbBgARMnTuTNN99k7ty5oTann356hRuVB0/R5uHcc88F3EQMzcQ999xD//79OfDAA/0xz58/n7Fjx9KnTx8ef/zxkP0222zDHnvs4S97CqxPfepTbLrpphX1cb9dUJ0jhOCcc86hUCjw6KOPNjSmkSNHMnHixIrtBOP7LV68mPnz5zN+/HjefvvtkOttsxA3jnvuuYd99tmHgQMHhvZlwoQJKKX4+9//3q1t9unTB4ClS5dWtRkwYACvvPIKb775ZsPbOfbYY333sDSodYxbAaUUDz/8MJMmTWKzzTbz6zfccENOPvlk/vGPf7BkyZJQmzPOOCPkmrzPPvuglGLOnDlVt/PBBx8wc+ZMTj31VPr37+/XH3jggWyzzTZN3COYOXMmb775JieffDILFizwz5/ly5dzwAEH8Pe//71CuRm9ht13331orZk8eXLoHNxggw3YfPPNK/5Pffr0CcWqy+fz7LbbbqH/8m9/+1uGDBniX5eC8H7Pev/HzcJf/vIXNtxww5B7aK9evTjjjDMqbKdMmcLTTz8dcn++++672WSTTXyX7yAeeOAB/vKXv/DjH/+YTTfdtELpnQZp/rONYNy4cTzyyCMVn5NOOqmp26kX0f31vvv27ZvYrm/fvqH/62WXXcYvf/lLdtppJx566CG++c1vMnbsWHbeeecKF9wotthi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eaJyJIrJkyfz1FNP8dBDD1WsW7RoEY7jpO4rCKUU5513Hq+99hrnnXdeovpowYIFoeU+ffowevToEKHhPYg263jXOsbDhw/HsqyKGIs33HBDRV9px2ZZFgcddBD3339/yGX5o48+4pe//CV777134u+UFhtuuCFjxozh9ttvD7nZPfLII7z66qvd7j+IsWPHMmrUKK644grfJTOINNeVY445BsuyuOyyyypUf8aYivMjDY499ljmz58fOs7BPmH1XFsADj30UN5//33uvfdev27FihXceOONsfaHHHIIQ4YM4Qc/+AF/+9vfKkg7x3Fi3SSfeeYZXnrpJXbZZZdU45ozZw5Tp04ln8/zla98JdF2r732YsKECf5ndRCDs2bNCsVebAS//OUvufnmm9ljjz1C2ZsvvvhiFi5cyOc///kKlfBzzz3HD37wA7bbbjuOPfZYwD1+Tz31VOw2HnjgASDeNTeKE044gX//+9/ccsstzJ8/P+RGDJXXSimlH3IhiQDeY489OPjgg7n55pv5/e9/X7G+UChw4YUXAuHrR/A/8PLLL/Pwww9z6KGH1tyPKD755JOKOk9h7I272nU07l5pjOGaa66pexweqs2TMmTIkCHDuo1MMZghQ4a1Bh0dHWyzzTb8+te/ZosttmDQoEFst912bLfddlx//fXsvffebL/99px++ulsttlmfPTRRzz11FO89957vPDCC6m3M3v2bI488kgOPvhgnnrqKe666y5OPvlkdtxxR99mypQp/O1vf+uW2+P48eM588wzmT59OjNnzuSggw4il8vx5ptvcs8993DNNdeEgvh3F+3t7Tz44IOceuqpjBs3jgceeIA///nPfOMb3/BdC5sxpoMOOshXfpx55pksW7aMm266iaFDh1YQt2PHjuWnP/0p3/3udxk9ejRDhw7lU5/6FAcddBCbbropn/vc5/jKV76CZVnccsstrLfeerz77rup9vcrX/kKf/jDHzj88MOZOnUqY8eOZfny5bz00kvce++9vPPOOwwZMiSxj8WLF3PXXXcB7gPyW2+9xX333cesWbM48cQTY4mXILbZZhv2228/xo4dy6BBg/jPf/7DvffeG3J/HDt2LADnnXceEydOxLIsTjzxxFT7GEWaY9y/f3+OP/54rr32WoQQjBo1ij/96U+xcefqGdt3v/tdHnnkEfbee2/OOussbNvm5z//OV1dXfzwhz9saH/iMH36dA477DD23ntvPvvZz/LJJ59w7bXXsu2228YSeI1CSsnNN9/MIYccwrbbbsu0adMYNmwYc+fO5fHHH6dfv3788Y9/TOxj1KhRfPe73+Wiiy7inXfeYdKkSfTt25fZs2fzu9/9jjPOOMMnLdJiypQp3HHHHVxwwQU888wz7LPPPixfvpxHH32Us846i6OOOmqVX1s8nH766Vx33XVMmTKF5557jg033JA777zTJyuiyOVynHjiiVx33XVYllWRrGPZsmVssskmnHDCCWy77bb07t2bl156iVtvvZX+/fvHxpSdMWMGd911F1prFi1axLPPPstvf/tbhBDceeeddcX3TIu5c+f614kg+vTpw6RJk+ruzyPy0sYFvffee+nTpw+FQoG5c+fy0EMP8c9//pMdd9yRe+65J2T76U9/mmeffZZrrrmGV199lU9/+tMMHDiQGTNmcMsttzB48GDuvfdeX426YsUK9txzT3bffXcOPvhgNtlkExYtWsTvf/97nnzySSZNmsROO+1Uc4yTJ0/mwgsv5MILL2TQoEEVKtzTTjuNTz75hE996lNsvPHGzJkzh2uvvZYxY8b4LtDVcMcdd3DQQQdxzDHHcMQRR3DAAQfQu3dv3nzzTX71q1/xwQcfcMUVVwBuaIBDDjmEPfbYg8997nOsXLmSa6+9lv79+zfkMn755Zfz97//ncMOO4zhw4fz8ccfc8MNN7Dxxhv7avJRo0YxYMAAfvazn9G3b1969+7NuHHj2GqrrRg1ahQXXnghc+fOpV+/fvz2t7/tVszApHlShgwZMmRYh7Gq0yBnyJAhQxJuvfVWA5hnn33Wrzv11FNN7969K2wvueQSE72M/etf/zJjx441+XzeAOaSSy7x182aNctMmTLFbLDBBiaXy5lhw4aZww8/3Nx7772J249u79VXXzXHHXec6du3rxk4cKA555xzzMqVK0O248ePrxhbLZx99tmxbW688UYzduxY09HRYfr27Wu2335789WvftW8//77vs3w4cPNYYcdVtEWMGeffXaobvbs2QYwP/rRj/w67zeeNWuWOeigg0yvXr3M+uuvby655BKjlGrqmIwx5g9/+IPZYYcdTHt7uxkxYoT5wQ9+YG655RYDmNmzZ/t2H374oTnssMNM3759DWDGjx/vr3vu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x46VbZxEUoPMnz+f888/nyOPPJLx48dz55130tzczIUXXljppkkkdcPu3btZvXp15t8ffvghy5cvp3v37gwYMKCCLZNI6oMrrriCRx55hP/3//4fnTp1ysyT26VLF9q1a1fh1kkkknKgGIZhVLoRkrbNww8/bPsQJT+eEklwXHDBBSxatKjg9WeffZYpU6aUv0ESSR1wzz33cMcdd9DU1MTo0aO56667mDBhQqWbJZHUDc899xxTp04teP3888/n4YcfLn+DJJI6Q1EUy9cfeuihotPVSCSS+kCKQYlEIpFIJBKJRCKRSCQSiaQNIidyk0gkEolEIpFIJBKJRCKRSNogUgxKJBKJRCKRSCQSiUQikUgkbRApBiUSiUQikUgkEolEIpFIJJI2iBSDEolEIpFIJBKJRCKRSCQSSRtEikGJRCKRSCQSiUQikUgkEomkDSLFoEQikUgkEolEIpFIJBKJRNIGkWJQIpFIJBKJRCKRSCQSiUQiaYNIMSiRSCQSiUQikUgkEolEIpG0QaQYlEgkEolEIinCAw88wAknnBB6PU899RSjR49GCBF6XRKJRCKRSCQSiRSDEolEIpFIJA7s27ePG264gZtuuin0umbOnEk0GuV3v/td6HVJJBKJRCKRSCRSDEokEolEIpE48Mc//pHOnTtz9NFHl6W+Cy64gLvuuqssdUkkEolEIpFI2jZSDEokEolEImkTbNq0ib59+/L9738/89rLL79MLBZj8eLFtsc9+uijnHzyyTmvTZkyhXnz5uW8NmvWLC644ILMvwcNGsRtt93G7Nmz6dixIwMHDuSvf/0rmzZt4otf/CIdO3bk8MMP5/XXX88p5+STT+b1119nzZo1/jsrkUgkEolEIpG4QIpBiUQikUgkbYJevXrx4IMPcvPNN/P666+za9cuvvKVr3DllVdy/PHH2x734osvcuSRR/qq82c/+xlHH300b7zxBl/4whf4yle+wuzZsznvvPNYtmwZBx54ILNnz8YwjMwxAwYMoE+fPrzwwgu+6pRIJBKJRCKRSNwixaBEIpFIJJI2w4knnsicOXM499xz+epXv0qHDh1YsGCB7f7bt29nx44d9OvXz3d9l112GcOGDePGG29k586djBs3jjPOOIODDjqI73znO7z33nts3Lgx57h+/fqxbt06X3VKJBKJRCKRSCRukWJQIpFIJBJJm+LHP/4xyWSSxx9/nN/97nc0NDTY7rt3714AGhsbfdV1+OGHZ7b79OkDwGGHHVbw2meffZZzXLt27dizZ4+vOiUSiUQikUgkErdIMSiRSCQSiaRNsWbNGj799FOEEKxdu9Zx3x49eqAoCtu2bct5XVXVnPRfgEQiUXB8NBrNbCuKYvuaECLnuK1bt9KrV6/inZFIJBKJRCKRSEpAikGJRCKRSCRthng8znnnnceZZ57JrbfeyiWXXFIQrZdNLBbjkEMOYcWKFTmv9+rViw0bNmT+res677zzTiBt3LdvH2vWrGHMmDGBlCeRSCQSiUQikdghxaBEIpFIJJI2w3e/+1127NjBXXfdxXe+8x0OOuggLrroIsdjZsyYwYsvvpjz2rRp03jyySd58sknWblyJZdffjnbt28PpI3/+c9/aGhoYOLEiYGUJ5FIJBKJRCKR2CHFoEQikUgkkjbBc889x5133slvf/tbOnfujKqq/Pa3v+WFF17gvvvusz3u4osv5u9//zs7duzIvHbRRRdx/vnnM3v2bI477jiGDBnC1KlTA2nn73//e84991zat28fSHkSiUQikUgkEokdipE/QY5EIpFIJBKJJIczzjiDI444gmuvvTbUejZv3szw4cN5/fXXGTx4cKh1SSQSiUQikUgkMmJQIpFIJBKJpAh33HEHHTt2DL2etWvX8otf/EJKQYlEIpFIJBJJWZARgxKJRCKRSCQSiUQikUgkEkkbREYMSiQSiUQikUgkEolEIpFIJG0QKQYlEolEIpFIJBKJRCKRSCSSNogUgxKJRCKRSCQSiUQikUgkEkkbRIpBiUQikUgkEolEIpFIJBKJpA0ixaBEIpFIJBKJRCKRSCQSiUTSBpFiUCKRSCQSiUQikUgkEolEImmDSDEokUgkEolEIpFIJBKJRCKRtEGkGJRIJBKJRCKRSCQSiUQikUjaIFIMSiQSiUQikUgkEolEIpFIJG0QKQYlEolEIpFIJBKJRCKRSCSSNsj/B1hLO+uG6OwLAAAAAElFTkSuQmCC", + "image/png": "iVBORw0KGgoAAAANSUhEUgAABOwAAAGGCAYAAADIEh4eAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjMsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvZiW1igAAAAlwSFlzAAAPYQAAD2EBqD+naQAAvPhJREFUeJzs3Xd4FNX+BvB3ZpNsII0aaigCUqQKVwyooHQQwQIIaAAB9QqIov4UC82ruVjhWkBAQBREQURFBBEpckGlesGCgDSRJiUhgbSd8/tjs5udbZnZbJndfT/Psw/s7JSzffbN95wjCSEEiIiIiIiIiIiIyBDkUDeAiIiIiIiIiIiISjCwIyIiIiIiIiIiMhAGdkRERERERERERAbCwI6IiIiIiIiIiMhAGNgREREREREREREZCAM7IiIiIiIiIiIiA2FgR0REREREREREZCAM7IiIiIiIiIiIiAyEgR0REREREREREZGBMLAjIiIKknr16mH48OEBP86RI0cgSRIWLlxoXzZ8+HAkJiYG/Ng2kiRhypQpQTteaYYPH4569eqplrlr4/bt29GhQwckJCRAkiTs2bMHALBmzRq0bt0a8fHxkCQJFy9eDEq7w1nnzp3RuXPnUtfbuHEjJEnCxo0bA94mI/P0Gnv//ffRpEkTxMbGokKFCiFtIxEREQUPAzsiMpSFCxdCkiTs2LFD97aXL1/GlClTwuZHnyRJmi7hcn8C4e2331aFTkbSuXNn+3MkyzKSk5PRuHFj3HvvvVi3bp3fjrN69WpDBV+OjNw2XxQWFmLAgAE4f/48Xn/9dbz//vuoW7cuzp07h4EDB6JcuXJ466238P777yMhISHUzQ06WxCs5XLkyJGgtGnu3Lno1KkTqlWrBrPZjPr162PEiBEux3due2xsLKpUqYIOHTrg6aefxrFjxwLSvnr16nl8jHr27Glfz9Nr7LfffsPw4cPRoEEDzJ07F3PmzNF87ClTpqiOV758edSpUwd9+/bFggULkJ+f73HbVatWoWfPnqhcuTLi4+Nx9dVX4/HHH8e5c+fcrv/FF1+gU6dOSE1NRfny5XHVVVdh4MCBWLNmjfYHK4Dy8vLw+uuvo3379khJSbHfp7Fjx+L3338Padv++usvTJkyxf7HgUAKt/MkIqJoFxPqBhAR+cvly5cxdepUANBU1RFq77//vur6okWLsG7dOpflTZs2DWazDOXtt99GlSpVglKV5ovatWsjMzMTAJCbm4uDBw9ixYoV+OCDDzBw4EB88MEHiI2Nta+/f/9+yLK+v5WtXr0ab731lq5grG7durhy5Yrq2IHgrW1XrlxBTIyxTzOc23jo0CEcPXoUc+fOxahRo+zL16xZg0uXLuH5559H165dQ9FUQ6hatarL59Orr76KP//8E6+//rrLul9//XXA27R7927Ur18ft912GypWrIjDhw9j7ty5WLVqFX766SfUrFlTtf7gwYPRu3dvKIqCCxcuYPv27ZgxYwZmzpyJd999F3fffbff29i6dWs89thjLssd27Z9+3a3r7GNGzdCURTMnDkTDRs29On4s2bNQmJiIvLz83HixAmsXbsW9913H2bMmIFVq1YhLS1Ntf7jjz+OV199Fa1atcKTTz6JSpUqYdeuXXjzzTexdOlSrF+/Ho0bN7av/8orr+CJJ55Ap06dMHHiRJQvXx4HDx7EN998g6VLl6qCyVD4+++/0bNnT+zcuRO33norhgwZgsTEROzfvx9Lly7FnDlzUFBQELL2/fXXX5g6dSrq1auH1q1bB/RY4XaeREQU7Yx9Jk1EZAC5ubkBqaa55557VNe///57rFu3zmV5pBBCIC8vD+XKlYuYdqSkpLg8X//+97/x8MMP4+2330a9evUwffp0+21ms7nMx/SmqKgIiqIgLi4O8fHxAT1WaUJ9fC2c23jmzBkAcOl26Gl5WQTqcyWQEhISXF7vS5cuxYULF0L2ufX222+7LOvfvz/atWuHRYsW4amnnlLddu2117q09ejRo+jevTuGDRuGpk2bolWrVn5tY61atUp9fAL52rvrrrtQpUoV+/VJkyZh8eLFyMjIwIABA/D999/bb/vwww/x6quvYtCgQVi8eDFMJpP9tuHDh+Pmm2/GgAEDsGvXLsTExKCoqAjPP/88unXr5jagtbU/lIYPH47du3dj+fLluPPOO1W3Pf/883jmmWdC1DIiIiLv2CWWiAzPNvbWiRMn0L9/fyQmJqJq1ap4/PHHYbFYAFi7O1WtWhUAMHXqVHsXIMfKn99++w133XUXKlWqhPj4eLRr1w6ff/656li2LrmbNm3CQw89hNTUVNSuXRtASfei3377DQMHDkRycjIqV66M8ePHIy8vLyD3XVEUzJgxA9dccw3i4+NRrVo1PPDAA7hw4YJqvXr16uHWW2/Fxo0b0a5dO5QrVw4tWrSwd3tZsWIFWrRogfj4eLRt2xa7d+9WbW97jP/44w/06NEDCQkJqFmzJqZNmwYhRJnatHbtWnub3nnnHQDAggULcMsttyA1NRVmsxnNmjXDrFmzXLb/+eefsWnTJvvzaasIsD0XzmzPn2N3OG/tuHjxIh555BGkpaXBbDajYcOGmD59OhRF0fYEuWEymfCf//wHzZo1w5tvvomsrCxVWxyrBQsLCzF16lQ0atQI8fHxqFy5Mm644QZ7l9rhw4fjrbfeAqDuQg2UdPF75ZVXMGPGDDRo0ABmsxm//PKL2zHsbEp7jj2NJ+a8T29tsy1zrrzbvXs3evXqheTkZCQmJqJLly6qsAAoeQ7/+9//YsKECahatSoSEhJw++234+zZs6U/AQBWrlyJ5s2bIz4+Hs2bN8enn37qdj3HNg4fPhydOnUCAAwYMMD+euvcuTOGDRsGAPjHP/4BSZJUz+EPP/yAnj17IiUlBeXLl0enTp3w3//+V3Uc2+v1l19+wZAhQ1CxYkXccMMN9ts/+OADtG3bFuXKlUOlSpVw99134/jx46p9dO7cGc2bN8cvv/yCm2++GeXLl0etWrXw0ksvudyvvLw8TJkyBVdffTXi4+NRo0YN3HHHHTh06JB9Ha3v47JwN4bdn3/+if79+yMhIQGpqal49NFHXbpmTp48GbGxsW6f7/vvvx8VKlTw+plrG6tQ6ziDdevWxcKFC1FQUOD28Qw0T6+xevXqYfLkyQCsFYv+HBdy6NChGDVqFH744QdVF/6pU6eiYsWKmDNnjiqsA4DrrrsOTz75JPbu3Yvly5cDsFavZWdno2PHjm6Pk5qa6rUdzZs3x8033+yyXFEU1KpVC3fddZd92dKlS9G2bVskJSUhOTkZLVq0wMyZM73u/4cffsCXX36JkSNHuoR1gPWPKK+88opq2bfffosbb7wRCQkJqFChAvr164dff/1VtY7tPX3w4EEMHz4cFSpUQEpKCkaMGIHLly+r1l23bh1uuOEGVKhQAYmJiWjcuDGefvppANbP23/84x8AgBEjRtg/R22fs9999x0GDBiAOnXqwGw2Iy0tDY8++iiuXLmiOoa/zpOIiMhYWGFHRGHBYrGgR48eaN++PV555RV88803ePXVV9GgQQP885//RNWqVTFr1iz885//xO2334477rgDANCyZUsAwM8//4yOHTuiVq1aeOqpp5CQkICPP/4Y/fv3xyeffILbb79ddbyHHnoIVatWxaRJk5Cbm6u6beDAgahXrx4yMzPx/fff4z//+Q8uXLiARYsW+f1+P/DAA1i4cCFGjBiBhx9+GIcPH8abb76J3bt347///a+qy+PBgwcxZMgQPPDAA7jnnnvwyiuvoG/fvpg9ezaefvppPPTQQwCAzMxMDBw40KV7psViQc+ePXH99dfjpZdewpo1azB58mQUFRVh2rRpPrVp//79GDx4MB544AGMHj3a3o1q1qxZuOaaa3DbbbchJiYGX3zxBR566CEoioIxY8YAAGbMmIFx48YhMTHRXgFRrVo1nx5Hd+24fPkyOnXqhBMnTuCBBx5AnTp1sHXrVkycOBEnT57EjBkzfDoWYA3tBg8ejOeeew5btmxBnz593K43ZcoUZGZmYtSoUbjuuuuQnZ2NHTt2YNeuXejWrRseeOAB/PXXX267StssWLAAeXl5uP/++2E2m1GpUiWPgaPW51gLLW1z9PPPP+PGG29EcnIy/u///g+xsbF455130LlzZ2zatAnt27dXrT9u3DhUrFgRkydPxpEjRzBjxgyMHTsWH330kdfjfP3117jzzjvRrFkzZGZm4ty5cxgxYoQ9ePd2f2rVqoUXX3wRDz/8MP7xj3/YX2+NGzfGnDlzMG3aNNSvXx8NGjQAYP1h36tXL7Rt2xaTJ0+GLMv2MPq7777DddddpzrGgAED0KhRI7z44ov2kPSFF17Ac889h4EDB2LUqFE4e/Ys3njjDdx0003YvXu3qrLqwoUL6NmzJ+644w4MHDgQy5cvx5NPPokWLVqgV69eAKzP8a233or169fj7rvvxvjx43Hp0iWsW7cO+/bts7ddz/vYX65cuYIuXbrg2LFjePjhh1GzZk28//77+Pbbb1Xr3XvvvZg2bRo++ugjjB071r68oKDAXiXlXB157tw5WCwWHDt2zP5a7tKli+a2paeno0GDBn4df9KmsLAQf//9t8vyhIQElCtXDs8884zb11j//v2xaNEifPrpp/ZurbbvNH+49957MWfOHHz99dfo1q0bDhw4gP3792P48OFITk52u01GRgYmT56MVatW4e6770ZqairKlSuHL774AuPGjUOlSpV0tWHQoEGYMmUKTp06herVq9uXb9myBX/99Ze9i/K6deswePBgdOnSxV61/Ouvv+K///0vxo8f73H/tj/K3XvvvZra880336BXr1646qqrMGXKFFy5cgVvvPEGOnbsiF27drlMXDNw4EDUr18fmZmZ2LVrF+bNm4fU1FR7G3/++WfceuutaNmyJaZNmwaz2YyDBw/aQ/2mTZti2rRpmDRpEu6//37ceOONAIAOHToAAJYtW4bLly/jn//8JypXrowff/wRb7zxBv78808sW7ZM1ZaynicREZEBCSIiA1mwYIEAILZv325fNmzYMAFATJs2TbVumzZtRNu2be3Xz549KwCIyZMnu+y3S5cuokWLFiIvL8++TFEU0aFDB9GoUSOX499www2iqKhItY/JkycLAOK2225TLX/ooYcEAPHTTz/5dJ9txowZIxw/lr/77jsBQCxevFi13po1a1yW161bVwAQW7dutS9bu3atACDKlSsnjh49al/+zjvvCABiw4YN9mW2x3jcuHH2ZYqiiD59+oi4uDhx9uxZn9u0Zs0al/t6+fJll2U9evQQV111lWrZNddcIzp16uSyru25cGZ7/g4fPlxqO55//nmRkJAgfv/9d9Xyp556SphMJnHs2DGX/Tvq1KmTuOaaazze/umnnwoAYubMmaq2DBs2zH69VatWok+fPl6P4/y6sDl8+LAAIJKTk8WZM2fc3rZgwQL7Mq3P8YYNG1xeH5726altQgiX92L//v1FXFycOHTokH3ZX3/9JZKSksRNN91kX2Z7Drt27SoURbEvf/TRR4XJZBIXL150ezyb1q1bixo1aqjW+/rrrwUAUbduXa9ttN33ZcuWqdZz97mkKIpo1KiR6NGjh6qdly9fFvXr1xfdunWzL7O9XgcPHqza75EjR4TJZBIvvPCCavnevXtFTEyManmnTp0EALFo0SL7svz8fFG9enVx55132pfNnz9fABCvvfaay2Nja6ee93Fp+vTp4/K4OrbZ8f07Y8YMAUB8/PHH9mW5ubmiYcOGLq+59PR00b59e9X+VqxY4fa1KYQQZrNZABAAROXKlcV//vMf1e221+/LL7/s8b7069dPABBZWVme77BOts8fd5fMzEz7eu5eY0KUvHZs7089Stv2woULAoC4/fbbhRBCrFy5UgAQr7/+utf9Jicni2uvvdZ+fdKkSQKASEhIEL169RIvvPCC2Llzp6Y27t+/XwAQb7zxhmr5Qw89JBITE+3fFePHjxfJycku38uluf322wUAceHCBU3rt27dWqSmpopz587Zl/30009ClmWRkZFhX2Z7bO+77z6X41WuXNl+/fXXXy/1+du+fbvLZ6uNu+/KzMxMIUmS6nvdH+dJRERkPOwSS0Rh48EHH1Rdv/HGG/HHH3+Uut358+fx7bffYuDAgbh06RL+/vtv/P333zh37hx69OiBAwcO4MSJE6ptRo8e7dIdyMZWAWYzbtw4ANYB+P1p2bJlSElJQbdu3ext/vvvv9G2bVskJiZiw4YNqvWbNWuG9PR0+3VbxdItt9yCOnXquCx399g5VrNIkoSxY8eioKAA33zzjU9tql+/Pnr06OFyHMfx47KysvD333+jU6dO+OOPP1RdSP3FXTuWLVuGG2+8ERUrVlTdl65du8JisWDz5s1lOmZiYiIA4NKlSx7XqVChAn7++WccOHDA5+Pceeed9m5OWpT2HAeCxWLB119/jf79++Oqq66yL69RowaGDBmCLVu2IDs7W7XN/fffr+pie+ONN8JiseDo0aMej3Py5Ens2bMHw4YNQ0pKin15t27d0KxZMz/eI2DPnj04cOAAhgwZgnPnztlfP7m5uejSpQs2b97sUuno/Bm2YsUKKIqCgQMHql6D1atXR6NGjVzeT4mJiaqx0OLi4nDdddep3suffPIJqlSpYv9ccmR7PPW+j/1l9erVqFGjhqqbY/ny5XH//fe7rJuRkYEffvhB1Y138eLFSEtLs3dddvTVV19h9erVePXVV1GnTh2XymgttLxnfdG+fXusW7fO5TJ48GC/Hkcv5/tr+zcpKcnrdklJSar369SpU7FkyRK0adMGa9euxTPPPIO2bdvi2muvdelK6uzqq69G69atVZWzFosFy5cvR9++fe3fFRUqVEBubq7uCkhbO0u7T0DJ58fw4cNVlYItW7ZEt27d3H7HuzsvOXfunP24tgrZzz77zKehFhy/K3Nzc/H333+jQ4cOEEK4DG3hqT1azpOIiMiY2CWWiMJCfHy8SyhRsWJFTeMtHTx4EEIIPPfcc3juuefcrnPmzBnUqlXLfr1+/foe99eoUSPV9QYNGkCWZdW4af5w4MABZGVleRwDyHkwb8dQDoA9sHCeAdC23Pmxk2VZFaYA1h9TAOz3TW+bPD2O//3vfzF58mRs27bNZbyfrKwsVdjiD+7aceDAAfzvf//zGHaVdbD0nJwcAN5/KE6bNg39+vXD1VdfjebNm6Nnz5649957dXVR8vZadablOQ6Es2fP4vLly6qZJW2aNm0KRVFw/PhxXHPNNfblzq/nihUrAnB93TqyhXnO71HA2q11165dPrXfHVvIaht7zJ2srCx7uwHX5+rAgQMQQrhtLwCXbqm1a9d2GbuxYsWK+N///me/fujQITRu3NjrDL1638f+cvToUTRs2NDlPrh7XQwaNAiPPPIIFi9ejEmTJiErKwurVq3Co48+6nb8Sts4aL169UK/fv3QvHlzJCYmqgLq0mh5z549e9Y+JhhgDb1swZcnVapUMeTsws731/ZvaYHlpUuXXF47gwcPxuDBg5GdnY0ffvgBCxcuxJIlS9C3b1/s27fP6yQ0gwYNwtNPP40TJ06gVq1a2LhxI86cOYNBgwbZ13nooYfw8ccfo1evXqhVqxa6d++OgQMHljoDra1r76VLl0qduMP2+eHpc2rt2rUuk8V4+5xKTk7GoEGDMG/ePIwaNQpPPfUUunTpgjvuuAN33XWXphnDjx07hkmTJuHzzz93+exz/uNWWc6TiIjImBjYEVFY8FTtpoXtr9qPP/6422ovAGjYsKHqup4ZRN39ePQHRVGQmpqKxYsXu73d+cTc02PkablwmkwiEG1y9zgeOnQIXbp0QZMmTfDaa68hLS0NcXFxWL16NV5//XVNVQieHnPHH9KltUNRFHTr1g3/93//53YbW5Dlq3379gFwfW05uummm3Do0CF89tln+PrrrzFv3jy8/vrrmD17NkaNGqXpOP6edVfvYxso/nzdBoLtdfryyy+jdevWbtdxDnKcnytFUSBJEr766iu399d5e389Jnrfx6FQsWJF3HrrrfbAbvny5cjPz9c0G22DBg3Qpk0bLF68WFdgt2/fPqSmpnocvw2wTgrhWOU5efLksB203/kzqmnTpgCgCoCdHT16FNnZ2R4rVpOTk9GtWzd069YNsbGxeO+99/DDDz+4rYq0GTRoECZOnIhly5bhkUcewccff4yUlBRVGJeamoo9e/Zg7dq1+Oqrr/DVV19hwYIFyMjIwHvvvedx302aNAEA7N271z4+nD+V9p4sV64cNm/ejA0bNuDLL7/EmjVr8NFHH+GWW27B119/7fXcxmKxoFu3bjh//jyefPJJNGnSBAkJCThx4gSGDx/u8l1ZlvMkIiIyJgZ2RBQxPAUNtoqi2NhYv1Q5HDhwQFUpc/DgQSiK4jIYdVk1aNAA33zzDTp27Oj3UMYdRVHwxx9/qIKq33//HUDJrIv+aNMXX3yB/Px8fP7556rqBHfd8Dw9p7YqhosXL6qqJrx1l3TWoEED5OTkBKTyxWKxYMmSJShfvrxqNlB3KlWqhBEjRmDEiBHIycnBTTfdhClTptgDO38GwlqeY8fH1pG7x1Zr26pWrYry5ctj//79Lrf99ttvkGXZpRLUF3Xr1gUAt12M3R27LGyTNyQnJ/v8GmrQoAGEEKhfv36ZA2LHff7www8oLCz0OHFEsD9bbOrWrYt9+/ZBCKF67Xh6bjIyMtCvXz9s374dixcvRps2bVRVmN5cuXLFZfZZb7Zt24ZDhw6VGgguXrxYNUOnc8VqOLFNFmP7Q9bVV1+Nq6++GitXrsTMmTPdVhraJle69dZbS91/u3bt8N577+HkyZNe16tfvz6uu+46+yQjK1asQP/+/WE2m1XrxcXFoW/fvujbty8URcFDDz2Ed955B88995zHP4z07dsXmZmZ+OCDD0oN7GyfH54+p6pUqaKqrtNKlmV06dIFXbp0wWuvvYYXX3wRzzzzDDZs2ICuXbt6/Bzdu3cvfv/9d7z33nvIyMiwLy/LxCiB+gMjEREFBsewI6KIUb58eQCuQUNqaio6d+6Md955x+0Ph7Nnz+o6zltvvaW6/sYbbwCAfZZGwNqN5bffftO1X2cDBw6ExWLB888/73JbUVGRy/30hzfffNP+fyEE3nzzTcTGxtpnW/RHm2xVAI5VQVlZWViwYIHLugkJCW73aQtLHMeZy83N9Vpp4WzgwIHYtm0b1q5d63LbxYsXUVRUpHlfjiwWCx5++GH8+uuvePjhh71W65w7d051PTExEQ0bNlQFDbYfiP56vkt7juvWrQuTyeQyht/bb7/tsi+tbTOZTOjevTs+++wzVdfb06dPY8mSJbjhhhu8Pk5a1ahRA61bt8Z7772n6i62bt06/PLLL2Xev6O2bduiQYMGeOWVV+xdCx1p+Vy54447YDKZMHXqVJcqOSGEy+tDizvvvBN///236nl23CcQms8WAOjduzf++usvLF++3L7s8uXLmDNnjtv1e/XqhSpVqmD69OnYtGmTS5hWVFTktrvfjz/+iL1796Jdu3aa2nX06FEMHz4ccXFxeOKJJ7yu27FjR3Tt2tV+CUVgd+jQIdXYfr5YsmQJ5s2bh/T0dNVsupMmTcKFCxfw4IMPulTV7ty5E9OnT0fz5s1x5513ArA+f9u2bXN7jK+++gqA+y6mzgYNGoTvv/8e8+fPx99//63qDgu4flbKsmwfOsBbMJueno6ePXti3rx5WLlypcvtBQUFePzxxwGoPz8c3wP79u3D119/jd69e5d6P5ydP3/eZZmtItfWbk+fo+6+K4UQmDlzpu522Hg6TyIiImNihR0RRYxy5cqhWbNm+Oijj3D11VejUqVKaN68OZo3b4633noLN9xwA1q0aIHRo0fjqquuwunTp7Ft2zb8+eef+OmnnzQf5/Dhw7jtttvQs2dPbNu2DR988AGGDBmCVq1a2dfJyMjApk2bytR9r1OnTnjggQeQmZmJPXv2oHv37oiNjcWBAwewbNkyzJw5UzV4e1nFx8djzZo1GDZsGNq3b4+vvvoKX375JZ5++ml7Fzl/tKl79+72SokHHngAOTk5mDt3LlJTU10C1bZt22LWrFn417/+hYYNGyI1NRW33HILunfvjjp16mDkyJF44oknYDKZMH/+fFStWhXHjh3TdH+feOIJfP7557j11lsxfPhwtG3bFrm5udi7dy+WL1+OI0eOoEqVKl73kZWVhQ8++ACA9YfrwYMHsWLFChw6dAh3332320DEUbNmzdC5c2e0bdsWlSpVwo4dO7B8+XJVN762bdsCAB5++GH06NEDJpMJd999t6b76EzLc5ySkoIBAwbgjTfegCRJaNCgAVatWuV2XDM9bfvXv/6FdevW4YYbbsBDDz2EmJgYvPPOO8jPz8dLL73k0/1xJzMzE3369MENN9yA++67D+fPn8cbb7yBa665xm2w5itZljFv3jz06tUL11xzDUaMGIFatWrhxIkT2LBhA5KTk/HFF1943UeDBg3wr3/9CxMnTsSRI0fQv39/JCUl4fDhw/j0009x//3328MErTIyMrBo0SJMmDABP/74I2688Ubk5ubim2++wUMPPYR+/foF/bPFZvTo0XjzzTeRkZGBnTt3okaNGnj//fftIYKz2NhY3H333XjzzTdhMplcJmnIyclBWloaBg0ahGuuuQYJCQnYu3cvFixYgJSUFLdjlu7atQsffPABFEXBxYsXsX37dnzyySeQJAnvv/++rvEjtTpx4oT9c8JRYmIi+vfvr3t/toBN67iTy5cvR2JiIgoKCnDixAmsXbsW//3vf9GqVSssW7ZMte7QoUOxfft2zJw5E7/88guGDh2KihUrYteuXZg/fz4qV66M5cuX26s3L1++jA4dOuD6669Hz549kZaWhosXL2LlypX47rvv0L9/f7Rp06bUNg4cOBCPP/44Hn/8cVSqVMmlanXUqFE4f/48brnlFtSuXRtHjx7FG2+8gdatW9u78nqyaNEidO/eHXfccQf69u2LLl26ICEhAQcOHMDSpUtx8uRJvPLKKwCsXdx79eqF9PR0jBw5EleuXMEbb7yBlJQUn7o+T5s2DZs3b0afPn1Qt25dnDlzBm+//TZq165tr75u0KABKlSogNmzZyMpKQkJCQlo3749mjRpggYNGuDxxx/HiRMnkJycjE8++aRMY9J5O08iIiIDCva0tERE3ixYsEAAENu3b7cvGzZsmEhISHBZd/LkycL5Y2zr1q2ibdu2Ii4uTgAQkydPtt926NAhkZGRIapXry5iY2NFrVq1xK233iqWL1/u9fjOx/vll1/EXXfdJZKSkkTFihXF2LFjxZUrV1TrdurUyaVtpRkzZozbbebMmSPatm0rypUrJ5KSkkSLFi3E//3f/4m//vrLvk7dunVFnz59XLYFIMaMGaNadvjwYQFAvPzyy/Zltsf40KFDonv37qJ8+fKiWrVqYvLkycJisfi1TUII8fnnn4uWLVuK+Ph4Ua9ePTF9+nQxf/58AUAcPnzYvt6pU6dEnz59RFJSkgAgOnXqZL9t586don379iIuLk7UqVNHvPbaa/bnz3Ef3tpx6dIlMXHiRNGwYUMRFxcnqlSpIjp06CBeeeUVUVBQ4HYbG9tzbLskJiaKRo0aiXvuuUd8/fXXbrepW7euGDZsmP36v/71L3HdddeJChUqiHLlyokmTZqIF154QXXsoqIiMW7cOFG1alUhSZL9NeLuebSx3bZgwQL7Mj3P8dmzZ8Wdd94pypcvLypWrCgeeOABsW/fPpd9emqbEMLl/SeEELt27RI9evQQiYmJonz58uLmm28WW7duVa3j6T24YcMGAUBs2LDB7WPr6JNPPhFNmzYVZrNZNGvWTKxYsUIMGzZM1K1bV7Wecxttx1i2bJmmNgkhxO7du8Udd9whKleuLMxms6hbt64YOHCgWL9+vX0d22fH2bNnPbb3hhtuEAkJCSIhIUE0adJEjBkzRuzfv9++TqdOncQ111zjsq27+3X58mXxzDPPiPr164vY2FhRvXp1cdddd4lDhw6p1tPyPi5Nnz59XI7v2GbH96wQQhw9elTcdtttonz58qJKlSpi/PjxYs2aNR6f2x9//FEAEN27d3e5LT8/X4wfP160bNlSJCcni9jYWFG3bl0xcuRI1WeAECXvCdslJiZGVKpUSbRv315MnDhRHD16VPN91qNu3bqq4zpeHB83T68xd6+dunXrenzM3W1ru8THx4vatWuLW2+9VcyfP1/k5eV53HblypWiW7duomLFisJsNouGDRuKxx57zOU1XFhYKObOnSv69+8v6tatK8xmsyhfvrxo06aNePnll0V+fr62B0oI0bFjRwFAjBo1yuW25cuXi+7du4vU1FT7Z/4DDzwgTp48qWnfly9fFq+88or4xz/+IRITE0VcXJxo1KiRGDdunDh48KBq3W+++UZ07NhRlCtXTiQnJ4u+ffuKX375RbWOp/e083fQ+vXrRb9+/UTNmjVFXFycqFmzphg8eLD4/fffVdt99tlnolmzZiImJkb1OfvLL7+Irl27isTERFGlShUxevRo8dNPP3n8fHem9zyJiIiMRRLCIKM3ExEZ3JQpUzB16lScPXu21MqrcDN8+HAsX77crxVIRERl9dNPP6F169ZYtGgR7r333lA3h4iIiChoOIYdERERERnS3LlzkZiYiDvuuCPUTSEiIiIKKo5hR0RERESG8sUXX+CXX37BnDlzMHbsWJ9m5yQiIiIKZwzsiIiIiMhQxo0bh9OnT6N3796YOnVqqJtDREREFHQcw46IiIiIiIiIiMhAOIYdERERERERERGRgTCwIyIiIiIiIiIiMhCOYVcKRVHw119/ISkpCZIkhbo5RERERERERBRGhBC4dOkSatasCVmO3rqpvLw8FBQU+LRtXFwc4uPj/dwiY2NgV4q//voLaWlpoW4GEREREREREYWx48ePo3bt2qFuRkjk5eWhSrlyyPVx++rVq+Pw4cNRFdoxsCtFUlISAKD2Z1shJySGuDVEVBohKaFuAhERERERkZ2Sm4MTt91gzxeiUUFBAXIBjDXJMOvcNh/Am6dOoaCggIEdlbB1g5UTEiEnRO+biyhcCJmBHRERERERGQ+H2QISJAGzzschRogAtcbYGNgRUUSRFJmhHRERERERkQHJEmDSmVtG66h/DOyIKOIwtCMiIiIiIjKeGMl60bVNYJpieNEaVBJRhJMUfrwRERERERFReIrWoJKIiIiIiIiIiIIoTgbidFbYKdE5hB0DOyKKXOwaS0REREREZBwmSegew86E6EzsGNgRUURjaEdERERERGQMJh/GsDMFpimGx0GeiCjicTw7IiIiIiIiCiessCOiqMBKOyIiIiIiotAyydDfJTY6e8QysCMiIiIiIiIiosAzST4EdoFpiuExsCOiqMEqOyIiIiIiotBhYKcdB3YioqjC8eyIiIiIiIjI6PjLlYiiDkM7IiIiIiKi4LNV2Om96DFlyhRIkqS6NGnSRNO2S5cuhSRJ6N+/v/4752fsEktERERERERERAEXrEknrrnmGnzzzTf26zExpcdfR44cweOPP44bb7xR/wEDgIEdEUUljmdHREREREQUXDL0B3ayD4FdTEwMqlevrnl9i8WCoUOHYurUqfjuu+9w8eJF/Qf1M/YLI6Koxa6xREREREREkefAgQOoWbMmrrrqKgwdOhTHjh3zuv60adOQmpqKkSNHBqmFpWOFHRFFNVbaERERERERBUesCYjVWTcRW1yRl52drVpuNpthNptd1m/fvj0WLlyIxo0b4+TJk5g6dSpuvPFG7Nu3D0lJSS7rb9myBe+++y727Nmjr2EBxvISIiIiIiIiIiIKuLJMOpGWloaUlBT7JTMz0+0xevXqhQEDBqBly5bo0aMHVq9ejYsXL+Ljjz92WffSpUu49957MXfuXFSpUiWQd103VtgRUdRjlR0REREREVHg+TLrq23948ePIzk52b7cXXWdOxUqVMDVV1+NgwcPutx26NAhHDlyBH379rUvUxTrb8OYmBjs378fDRo00NdgP2FgR0REREREREREhpacnKwK7LTKycnBoUOHcO+997rc1qRJE+zdu1e17Nlnn8WlS5cwc+ZMpKWl+dzesgqbLrGzZs1Cy5Yt7U9Qeno6vvrqK6/bLFu2DE2aNEF8fDxatGiB1atXB6m1RBRuOAEFERERERFRYJlk3y56PP7449i0aROOHDmCrVu34vbbb4fJZMLgwYMBABkZGZg4cSIAID4+Hs2bN1ddKlSogKSkJDRv3hxxcXH+fgg0C5tfqLVr18a///1v7Ny5Ezt27MAtt9yCfv364eeff3a7/tatWzF48GCMHDkSu3fvRv/+/dG/f3/s27cvyC0nIiIiIiIiIiJZ8u2ix59//onBgwejcePGGDhwICpXrozvv/8eVatWBQAcO3YMJ0+eDMC98y9JCCFC3QhfVapUCS+//LLbaXcHDRqE3NxcrFq1yr7s+uuvR+vWrTF79mzNx8jOzkZKSgrqfPM/yAmus4kQUWThWHZERERERORPSs4lHO/SGllZWT516YwEtmxleS0JCToTuFxF4K4TIuoev7CpsHNksViwdOlS5ObmIj093e0627ZtQ9euXVXLevTogW3btnndd35+PrKzs1UXIiIiIiIiIiIqm2BU2EWKsArs9u7di8TERJjNZjz44IP49NNP0axZM7frnjp1CtWqVVMtq1atGk6dOuX1GJmZmappgkM5wCAREREREREREUWfsArsGjdujD179uCHH37AP//5TwwbNgy//PKLX48xceJEZGVl2S/Hjx/36/6JyNg4+QQREREREVFgBGPSiUgRE+oG6BEXF4eGDRsCANq2bYvt27dj5syZeOedd1zWrV69Ok6fPq1advr0aVSvXt3rMcxmM8xms/8aTUREREREREREPnVxZZfYMKQoCvLz893elp6ejvXr16uWrVu3zuOYd0RENqyyIyIiIiIi8r9Yk4TYGJ0XU3QmdmFTYTdx4kT06tULderUwaVLl7BkyRJs3LgRa9euBQBkZGSgVq1ayMzMBACMHz8enTp1wquvvoo+ffpg6dKl2LFjB+bMmRPKu0FEYUJSZM4YS0RERERERCERNoHdmTNnkJGRgZMnTyIlJQUtW7bE2rVr0a1bNwDAsWPHIMslVTEdOnTAkiVL8Oyzz+Lpp59Go0aNsHLlSjRv3jxUd4GIwgxDOyIiIiIiIv9hl1jtJCGECHUjjCw7OxspKSmo883/ICckhbo5RBQiDO6IiIiIiMgXSs4lHO/SGllZWUhOTg51c0LClq2sbyQjQWcX11yLQJcDStQ9fmFTYUdEFEq2ce0Y3BEREREREflGkiXIOkvmpCgtM2NgR0Skg+OEFAzviIiIiIiIKBAY2BER+YhVd0RERERERNpxDDvtGNgREZURq+6IiIiIiIhKJ8vWi65t2CWWiIjKilV3RERERERE7sk+jGHHwI6IiPyGVXdERERE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ybmE411aIysrC8nJyaFuTkjYspVT91dDss4usdkFCqrPOW3Ix+/IkSMYM2YM4uLi8NZbb+HQoUO4++67YbFYUFRUBFmWsXDhQq9Ds3kSNl1iiYjIGNhFloiIiIiIfCHJ+ivm9M4qG0z16tXDl19+iQ8//BCdOnXCww8/jIMHD+LgwYOwWCxo0qQJ4uPjfdo3+zgREZFukiKzmywREREREekimWSfLkY3ePBgbN++HT/99BM6d+4MRVHQunVrn8M6gBV2RERUBpxJloiIiIiIotnq1avx66+/olWrVpg3bx42bdqEoUOHolevXpg2bZp9olS9jB9TEhGR4dkq7lh1R0REREREnkTapBOPPfYYRowYge3bt+OBBx7A888/j06dOmHXrl2Ij49HmzZt8NVXX/m0b/6yIiIiv2J4R0REREREbpkk3y4GtXDhQqxevRpLly7F9u3b8f777wMA4uLi8Pzzz2PFihV48cUXfdo3f00REVHAMLwjIiIiIiKbSKuwS0hIwOHDhwEAx48fdxmzrlmzZvjuu+982jfHsCMioqBwDO045h0REREREYW7zMxMZGRk4OGHH8bly5fx3nvv+W3fDOyIiCjoGN4REREREUUfX2Z9lUwBaowfDB06FD179sQff/yBRo0aoUKFCn7bNwM7IiIKKc40S0REREQUHaRYGVKczsDO4D8TKleujMqVK/t9vxxUiIiIDIHj3RERERERRTiTBJhknZeyjWH373//G5Ik4ZFHHvG4zty5c3HjjTeiYsWKqFixIrp27Yoff/yxTMctK/4qIiIiw2F4R0REREREZbV9+3a88847aNmypdf1Nm7ciMGDB2PDhg3Ytm0b0tLS0L17d5w4cSJILXXFX0JERGRoDO+IiIiIiCJDMGeJzcnJwdChQzF37lxUrFjR67qLFy/GQw89hNatW6NJkyaYN28eFEXB+vXrfTq2P/DXDxERhQ2Gd0REREREYcwk+XYBkJ2drbrk5+d7PdSYMWPQp08fdO3aVXczL1++jMLCQlSqVMmnu+kP/MVDRERhieEdEREREVF4sc0Sq/cCAGlpaUhJSbFfMjMzPR5n6dKl2LVrl9d1vHnyySdRs2ZNXWHf+++/j44dO6JmzZo4evQoAGDGjBn47LPPfGoDf+UQEVHYY3hHRERERBTZjh8/jqysLPtl4sSJHtcbP348Fi9ejPj4eN3H+fe//42lS5fi008/1bz9rFmzMGHCBPTu3RsXL16ExWIBAFSoUAEzZszQ3QaAgR0REUUYBndERERERAYl+9AdVrZ2iU1OTlZdzGaz20Ps3LkTZ86cwbXXXouYmBjExMRg06ZN+M9//oOYmBh7mObOK6+8gn//+9/4+uuvS52owtEbb7yBuXPn4plnnoHJZLIvb9euHfbu3at5P45ifNqKiIjI4BxDOyErIWwJEREREREBUI1Jp2sbHbp06eISko0YMQJNmjTBk08+qQrUHL300kt44YUXsHbtWrRr107XMQ8fPow2bdq4LDebzcjNzdW1LxsGdkREFPEY3hERERERGUAQArukpCQ0b95ctSwhIQGVK1e2L8/IyECtWrXsY9xNnz4dkyZNwpIlS1CvXj2cOnUKAJCYmIjExMRSj1m/fn3s2bMHdevWVS1fs2YNmjZtqqv9NgzsiIgoqjC8IyIiokgmZM/d/QJBUtxXKxEZ2bFjxyDLJb8LZs2ahYKCAtx1112q9SZPnowpU6aUur8JEyZgzJgxyMvLgxACP/74Iz788ENkZmZi3rx5PrWRgR0REUUthndERERkBMEO2fzJse0M76hUsSbrRY+ish9248aNXq8fOXKkTPsfNWoUypUrh2effRaXL1/GkCFDULNmTcycORN33323T/tkYEdERASGd0RERFQ24Ry6+QvDOypVELrEhsrQoUMxdOhQXL58GTk5OUhNTS3T/hjYEREROWF4R0REFH0YuPkXwztyS/YhsJONH9gdPnwYRUVFaNSoEcqXL4/y5csDAA4cOIDY2FjUq1dP9z7l0lchIiKKXpIi2y9ERERkXEK2lOlCgcPHmSLd8OHDsXXrVpflP/zwA4YPH+7TPvnrg4iISCOGd0RERIHHwC2y8TmLcrYusXovBrd792507NjRZfn111+PPXv2+LRPdoklIiLyAbvNEhER6ceQhhzZXg/sMhtFZEl/F9cw6BIrSRIuXbrksjwrKwsWi2+feywRICIiKiNW3hEREbliFRxpxddI9BAmyaeL0d10003IzMxUhXMWiwWZmZm44YYbfNpn2PyyyMzMxD/+8Q8kJSUhNTUV/fv3x/79+0vdbtmyZWjSpAni4+PRokULrF69OgitJSKiaMXwjoiIoh2DFyoLhncUjqZPn45vv/0WjRs3xogRIzBixAg0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sznQTTMEVtoRERGRM3aXjU4M68gTBnNkFAzoIkMRZB+6xOrLLdasWaO6vnDhQqSmpmLnzp246aabPG5nsVgwdOhQTJ06Fd999x0uXryo67juLF++HJUqVfJpW92B3b333uvTgfwhJycHBw8etF8/fPgw9uzZg0qVKqFOnTqYOHEiTpw4gUWLFgEAHnzwQbz55pv4v//7P9x333349ttv8fHHH+PLL78M1V0wHIZ2RERE5Am7y0YHhnXkjCEdGQmDushiETEo0jnphEWU7XsqKysLAEoNzqZNm4bU1FSMHDkS3333na5jtGnTRjXphBACp06dwtmzZ/H222/rbzTKOOlEsO3YsQM333yz/fqECRMAAMOGDcPChQtx8uRJHDt2zH57/fr18eWXX+LRRx/FzJkzUbt2bcybNw89evQIetuNjKEdERERecPgLjIxqCNHDOnIaBjUkTPnSUG19JBUFAWPPPIIOnbsiObNm3tcb8uWLXj33XexZ88en9rWr18/VWAnyzKqVq2Kzp07o0mTJj7tM6wCu86dO0MI4fH2hQsXut1m9+7dAWxVZGBoR0RERKVhd9nIwbCOAIZ0ZDwM6SJfkTBB0jkmnW0Mu7S0NNXyyZMnY8qUKV63HTNmDPbt24ctW7Z4XOfSpUu49957MXfuXFSpUkVX22xKa4cvwiqwo8BiaEdERERaseqOKDwxpCMjYlAXPSyIgawzirLA+kem48ePqyY8La26buzYsVi1ahU2b96M2rVre1zv0KFDOHLkCPr27WtfpijWz8qYmBjs378fDRo08Hosk8mEkydPIjU1VbX83LlzSE1NhcWi/w9lDOxIhaEdERER6cHgLvywui76MKQjI2JIF53KUmGXnJysCuw8EUJg3Lhx+PTTT7Fx40bUr1/f6/pNmjTB3r17VcueffZZXLp0CTNnznSp7PN0THfy8/MRFxdX6vbuMLAjFwztiIiISC92lyUyFoZ0ZFQM6ijQxowZgyVLluCzzz5DUlISTp06BQBISUlBuXLlAAAZGRmoVasWMjMzER8f7zK+XYUKFQDA67h3APCf//wHACBJEubNm4fExET7bRaLBZs3b46OMewoeBjaERERka9YdUcUGgzpyMgY1BEA5Is4WIT3rqzOirzMZeDOrFmzAFjnNHC0YMECDB8+HABw7NgxyHLZM4/XX38dgLXCbvbs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", "text/plain": [ "
" ] @@ -60103,7 +35244,7 @@ "outputs": [ { "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAABKEAAAHWCAYAAACv2Jr5AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8fJSN1AAAACXBIWXMAAA9hAAAPYQGoP6dpAADiWUlEQVR4nOzdd3RURRvH8e/upiekEFIIvSfUQOi9g6BIEVGxA2J/BWzYAMWCIthARVAsoBSVIkjvvYP03kmBJIQUUnbv+0dgMSZAAhsg8Pucs2dz586dee4yLuFxZq7JMAwDERERERERERGRfGS+2QGIiIiIiIiIiMjtT0koERERERERERHJd0pCiYiIiIiIiIhIvlMSSkRERERERERE8p2SUCIiIiIiIiIiku+UhBIRERERERERkXynJJSIiIiIiIiIiOQ7JaFERERERERERCTfKQklIiIiIiIiIiL5TkkoERERkVtA6dKlefzxx292GNelQ4cO9OnTx2HtnTlzBk9PT2bPnu2wNkVEROTmURJKRERE8uTAgQP07duXsmXL4ubmhre3N40aNeLzzz8nJSXlZod3zWbPns3gwYOvWm/EiBGYTCYWLFhw2TrfffcdJpOJGTNmXHM8O3fuZPDgwRw+fPia27iRVq5cybx583jttdfsZUuWLMFkMjF16lQAOnXqhIeHB+fOnbtsOz179sTFxYUzZ87g7+9P7969efvtt/MUS1RUFC+//DKhoaF4eHjg6elJREQEQ4cOJT4+/pruT0RERK6fklAiIiKSa7NmzaJatWpMnjyZe+65hy+//JIPP/yQkiVL8sorr/C///3vZod4zWbPns2QIUOuWu+BBx7AbDYzceLEy9aZOHEi/v7+3HXXXdccz86dOxkyZEiBSUJ98skntGrVivLly1+2Ts+ePUlJSeHPP//M8XxycjLTp0+nffv2+Pv7A/D000+zadMmFi1alKs41q9fT9WqVRk1ahRNmjRhxIgRfPrpp9SsWZOPPvqI+++/P+83JyIiIg7hdLMDEBERkYLh0KFDPPDAA5QqVYpFixZRtGhR+7nnnnuO/fv3M2vWLIf0lZSUhKenZ7ZywzA4f/487u7uDunnWoSEhNCiRQv++OMPvv76a1xdXbOcP3HiBMuWLeOpp57C2dn5JkV5Y0VHRzNr1iy++eabK9br1KkThQoVYuLEiTz66KPZzk+fPp2kpCR69uxpLwsLC6Nq1aqMHz+eli1bXrH9+Ph4unTpgsViYfPmzYSGhmY5//777/Pdd9/l4c4u73JjVERERC5PM6FEREQkVz7++GMSExMZN25clgTUReXLl7fPhDp8+DAmk4nx48dnq2cymbIsexs8eDAmk4mdO3fy0EMP4efnR+PGjYHMfZLuvvtu5s6dS+3atXF3d+fbb78FMhMOL730EiVKlMDV1ZXy5cszbNgwbDabve2LcQwfPpwxY8ZQrlw5XF1dqVOnDuvXr7fXe/zxxxk1apQ9vouvy3n44Yc5e/Zsjkm33377DZvNZk+kJCUlMWDAAHuclSpVYvjw4RiGcdn2x48fT/fu3QFo0aKFPZ4lS5YAmcmajh07EhISgqurK+XKleO9997DarVma2vUqFGULVsWd3d36taty/Lly2nevDnNmzfPUi81NZVBgwZRvnx5XF1dKVGiBK+++iqpqamXjfOiWbNmkZGRQevWra9Yz93dna5du7Jw4UKio6OznZ84cSKFChWiU6dOWcrbtGnDzJkzr/iZAXz77becOHGCESNGZEtAAQQFBfHWW2/Zj/87Fi/67/5c48ePx2QysXTpUp599lkCAwMpXrw4U6dOtZfnFIvJZGL79u32st27d3PfffdRuHBh3NzcqF279nUt2RQRESloNBNKREREcmXmzJmULVuWhg0b5kv73bt3p0KFCnzwwQdZkg179uzhwQcfpG/fvvTp04dKlSqRnJxMs2bNOHHiBH379qVkyZKsWrWKgQMHcurUKT777LMsbU+cOJFz587Rt29fTCYTH3/8MV27duXgwYM4OzvTt29fTp48yfz58/n555+vGmvXrl155plnmDhxIl27ds3WV6lSpWjUqBGGYdCpUycWL15Mr169CA8PZ+7cubzyyiucOHGCkSNH5th+06ZNefHFF/niiy944403CAsLA7C/jx8/Hi8vL/r374+XlxeLFi3inXfeISEhgU8++cTeztdff83zzz9PkyZN6NevH4cPH6Zz5874+flRvHhxez2bzUanTp1YsWIFTz31FGFhYfzzzz+MHDmSvXv3Mm3atCt+HqtWrcLf359SpUpd9bPr2bMnP/74I5MnT+b555+3l8fGxjJ37lwefPDBbDPdIiIiGDlyJDt27KBq1aqXbXvGjBm4u7tz3333XTWOa/Hs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dhmAsWDBgqvGcNHJkyeNfv36GRUrVjTc3NwMDw8PIyIiwnj//fez3IvVajVee+01o0iRIoaHh4fRrl07Y//+/dn+LH744QcDMNavX3/ZPufPn28AhslkMo4dO5ZjnQMHDhiPPvqoERwcbDg7OxvFihUz7r77bmPq1Km5vjcREZGCzGQYeXiUiYiIiIgUaDabjYCAALp27Zrj8rtrtXz5cpo3b87u3bupUKGCw9p96aWXWLZsGRs3brym/apERETk1qE9oURERERuU+fPn8+2TO+nn34iNjaW5s2bO7SvJk2a0LZtW4c+HfDMmTOMHTuWoUOHKgElIiJyG9BMKBEREZHb1JIlS+jXrx/du3fH39+fTZs2MW7cOMLCwti4cSMuLi43O0QRERG5g2hjchEREZHbVOnSpSlRogRffPEFsbGxFC5cmEcffZSPPvpICSgRERG54TQTSkRERERERERE8p32hBIRERERERERkXynJJSIiIiIiIiIiOQ77Ql1A9hsNgzDhgkT6MkuIiIiIiIiInK7MAwMDEwmM2bzlec6KQl1AxiGjfi4uJsdhoiIiIiIiIhIvvD18+NqC+6UhLohMmc/+fr5YTIV3BWQGRkZzJs3j7Zt2+LkpKEjjqOxJflJ40vyk8aX5CeNL8kvGluSnzS+7jyXJt5cfeWXRsQNYLqwBC83U9NuZSaTCavVislkKtD3IbcejS3JTxpfkp80viQ/aXxJftHYkvyk8XXnsdky30252H5II0JERERERERERPKdklAiIiIiIiIiIpLvlIQSEREREREREZF8pySUiIiIiIiIiIjkOyWhREREREREREQk3ykJJSIiIiIiIiIi+U5JKBERERERERERyXdKQomIiIiIiIiISL5TEkpERERERERERPKd080OQAoGq83K6n2bWXdyB377itIoNAKL2XKzwxIREQey2qys2beF6IQzBHr7U79C+C3xXX8rx3Ur/t14K39et2JcIiIicuMUuJlQo0aNonTp0ri5uVGvXj3WrVt3xfpTpkwhNDQUNzc3qlWrxuzZs7OcNwyDd955h6JFi+Lu7k7r1q3Zt29fljqxsbH07NkTb29vfH196dWrF4mJiQ6/t1vVrM2Lqf1GF0b98A6h6QajfniH2m90YdbmxTc7NBERcZCL3/VfjH2TxNXr+WLsm7fEd/2tHtet9nfjrf55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9fXXX5vt7e3NH3/8sdXP9teuXcuvU5B8pCKUWPnwww/NZcuWNTs6Oprr1atn/u233yz7mjdvbu7Tp49V/NKlS83BwcFmR0dHc7Vq1cw//vhjHmcsBcWdjK1y5cqZgQyvsWPH5n3iUiDc6feuf1IRSm7nTsfXtm3bzPXr1zc7OTmZK1SoYH7nnXfMKSkpeZy1FBR3Mr6Sk5PN48aNMwcGBpqdnZ3NZcqUMQ8ePNgcExOT94nLfW3jxo2Z/iyVPp769Oljbt68eYY2ISEhZkdHR3OFChXM4eHheZ63FAx3Or6aN2+ebbw8WAxms+buioiIiIiIiIiIbWlNKBERERERERERsTkVoURERERERERExOZUhBIREREREREREZtTEUpERERERERERGxORSgREREREREREbE5FaFERERERERERMTmVIQSERERERERERGbUxFKRERERERERERsTkUoERERkXwWEBDArFmz8juNbM2bN4+2bdveUZu///4bX19fzp07Z6OsREREpCBREUpERETkLnXq1In27dtnuu/XX3/FYDCwf//+Oz6uwWDgu+++u8fsck9CQgJvvvkmY8eOBeDFF1+kSpUqmcaePXsWOzs7Vq1aRbFixejdu7elnYiIiDzYVIQSERERuUv9+/dn3bp1mc70CQ8PJywsjJo1a+ZDZrlr2bJleHh40LhxYyDtvI8ePcq2bdsyxC5YsABfX186dOgAQL9+/fj666+5evVqnuYsIiIi9x8VoURERETu0sMPP0zx4sVZsGCB1fa4uDi+/fZb+vfvD8Dy5cupVq0aTk5OBAQEMH369CyPGRAQAEDXrl0xGAyWzydPnuSRRx6hRIkSuLm5UbduXdavX2/VNioqio4dO+Li4kL58uVZtGhRhlv9rl27xoABAyhevDgeHh489NBD/P7779me5+LFi+nUqZPlc0hICLVr12b+/PlWcWazmQULFtCnTx/s7e0BqFatGiVLlmTlypXZ9iEiIiKFn4pQIiIiInfJ3t6e3r17s2DBAsxms2X7t99+S2pqKk8++SR79uyhW7du9OjRgwMHDjBu3DjefPPNDIWrdLt27QLSZlJFRUVZPsfFxdGhQwciIiLYt28f7du3p1OnTpw9e9bStnfv3ly4cIFNmzaxfPly5syZw6VLl6yO/8QTT3Dp0iV++ukn9uzZQ+3atWnVqlW2M5W2bNlCWFiY1bb+/fuzdOlSbt68adm2adMmTp8+zTPPPGMVW69ePX799ddsrqSIiIg8CFSEEhEREbkHzzzzDCdPnuSXX36xbAsPD+exxx6jaNGizJgxg1atWvHmm28SHBxM3759GTJkCFOnTs30eMWLFwfA09MTPz8/y+datWrx7LPPUr16dYKCgpg4cSKBgYGsWrUKgKNHj7J+/Xrmzp1L/fr1qV27Np9//jm3bt2yHHvLli3s3LmTb7/9lrCwMIKCgpg2bRqenp4sW7Ys03yuXbvG9evXKVmypNX2nj17kpyczLfffmt13k2aNCE4ONgqtmTJkvz55585vaQiIiJSSKkIJSIiInIPKleuTKNGjSy3pp04cYJff/3VcivekSNHLGsppWvcuDHHjx8nNTU1x/3ExcUxcuRIqlSpgqenJ25ubhw5csQyE+rYsWPY29tTu3ZtS5uKFSvi5eVl+fz7778TFxeHj48Pbm5ultfp06c5efJkpv2mF7GcnZ2ttnt6evLoo49azjs2Npbly5dbzvufXFxciI+Pz/G5ioiISOFkn98JiIiIiBR0/fv358UXX+Tjjz8mPDycwMBAmjdvnqt9jBw5knXr1jFt2jQqVqyIi4sLjz/+OElJSTk+RlxcHP7+/mzatCnDPk9Pz0zb+Pj4YDAYiImJybCvf//+tGrVihMnTrBx40bs7Ox44oknMsRdvXrVMqNLREREHlyaCSUiIiJyj7p164bRaGTRokV88cUXPPPMMxgMBgCqVKnC1q1breK3bt1KcHAwdnZ2mR7PwcEhwyyprVu30rdvX7p27UqNGjXw8/PjzJkzlv2VKlUiJSWFffv2WbadOHHCqnhUu3ZtoqOjsbe3p2LFilavYsWKZZqLo6MjVatW5fDhwxn2tWzZkvLlyxMeHk54eDg9evSgSJEiGeIOHjxIaGhopscXERGRB4eKUCIiIiL3yM3Nje7duzN69GiioqLo27evZd+IESOIiIhg4sSJ/PHHHyxcuJCPPvqIkSNHZnm8gIAAIiIiiI6OthSRgoKCWLFiBZGRkfz+++/07NkTk8lkaVO5cmVat27NoEGD2LlzJ/v27WPQoEG4uLhYCmKtW7emYcOGdOnShbVr13LmzBm2bdvGmDFj2L17d5b5tGvXji1btmTYbjAYeOaZZ/j000/Zvn17prfixcfHs2fPHtq2bXvb6ygiIiKFm4pQIiIiIrmgf//+xMTE0K5dO6tFvGvXrs3SpUtZvHgx1atX56233mLChAlWhap/mz59OuvWraNMmTKWGUQzZszAy8uLRo0a0alTJ9q1a2e1/hPAF198QYkSJWjWrBldu3Zl4MCBuLu7W9ZzMhgMrF69mmbNmtGvXz+Cg4Pp0aMHf/75JyVKlMj23FavXs3169cz7Ovbty/Xr1+nWrVq1K9fP8P+77//nrJly9K0adNsr5+IiIgUfgbzP58nLCIiIiKFxrlz5yhTpgzr16+nVatW93SsJ554gtq1azN69Og7ategQQNeeuklevbseU/9i4iISMGnmVAiIiIihcSGDRtYtWoVp0+fZtu2bfTo0YOAgACaNWt2z8eeOnUqbm5ud9Tm77//5tFHH+XJJ5+85/5FRESk4NNMKBEREZFC4ueff2bEiBGcOnUKd3d3GjVqxKxZsyhXrlx+pyYiIiKiIpSIiIiIiIiIiNiebscTERERERERERGbUxFKRERERERERERsTkUoERERERERERGxORWhRERERERERETE5lSEEhERERERERERm1MRSkREREREREREbE5FKBERERERERERsTkVoURERERERERExOb+Dxql6nPTPGq/AAAAAElFTkSuQmCC", + "image/png": "iVBORw0KGgoAAAANSUhEUgAABKEAAAHWCAYAAACv2Jr5AAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjMsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvZiW1igAAAAlwSFlzAAAPYQAAD2EBqD+naQAA0yBJREFUeJzs3XdcleX/x/HXOYe9hyC4RyqoJY5U3HtnjszKvi1Xw/o5WrbMsswybVlmWja01Cx3Kq40dyruvQUBFQFFNvfvD5IihmAchr6fj+95wLmuz32fz3W4OOHne93XbTIMw0BERERERERERMSKzMWdgIiIiIiIiIiI3PpUhBIREREREREREatTEUpERERERERERKxORSgREREREREREbE6FaFERERERERERMTqVIQSERERERERERGrUxFKRERERERERESsTkUoERERERERERGxOhWhRERERERERETE6lSEEhERESkBqlSpwmOPPVbcafwn3bp1Y/DgwYV2vkuXLuHs7MyyZcsK7ZwiIiJSfFSEEhERkQI5fvw4Q4cOpVq1ajg4OODm5kbz5s35+OOPSUhIKO70btqyZct48803bxg3adIkTCYTq1atyjXmq6++wmQysWjRopvO58CBA7z55pucOnXqps9RlDZu3MjKlSt56aWXMtvWrVuHyWTi559/BqBnz544OTlx5cqVXM8zYMAA7OzsuHTpEt7e3gwaNIjXX3+9QLlERkby/PPPExAQgJOTE87OzjRs2JBx48YRExNzU+MTERGR/05FKBEREcm3pUuXcueddzJ37lzuuecePv30U8aPH0+lSpV44YUX+L//+7/iTvGmLVu2jLFjx94w7oEHHsBsNjN79uxcY2bPno23tzddu3a96XwOHDjA2LFjS00R6oMPPqB9+/bccccducYMGDCAhIQEfv311xz7r127xsKFC+nSpQve3t4APPnkk+zcuZM1a9bkK4/t27dTt25dpkyZQsuWLZk0aRIffvgh9evX57333uP+++8v+OBERESkUNgUdwIiIiJSOpw8eZIHHniAypUrs2bNGvz9/TP7nnnmGY4dO8bSpUsL5bXi4+NxdnbO1m4YBomJiTg6OhbK69yMcuXK0bZtW3755Re++OIL7O3ts/SHhYWxfv16hgwZgq2tbTFlWbSioqJYunQpU6dOzTOuZ8+euLq6Mnv2bB555JFs/QsXLiQ+Pp4BAwZktgUGBlK3bl1mzpxJu3bt8jx/TEwMvXv3xmKxsGvXLgICArL0v/POO3z11VcFGFnucpujIiIikjuthBIREZF8ef/997l69SozZszIUoC67o477shcCXXq1ClMJhMzZ87MFmcymbJc9vbmm29iMpk4cOAADz30EJ6enrRo0QLI2CepR48erFixgkaNGuHo6MiXX34JZBQchg8fTsWKFbG3t+eOO+5gwoQJpKenZ577eh4TJ05k2rRpVK9eHXt7e+6++262b9+eGffYY48xZcqUzPyuP3Lz8MMPExsbm2PR7aeffiI9PT2zkBIfH8+oUaMy86xVqxYTJ07EMIxczz9z5kz69esHQNu2bTPzWbduHZBRrOnevTvlypXD3t6e6tWr8/bbb5OWlpbtXFOmTKFatWo4OjrSuHFjNmzYQJs2bWjTpk2WuKSkJMaMGcMdd9yBvb09FStW5MUXXyQpKSnXPK9bunQpqampdOjQIc84R0dH+vTpw+rVq4mKisrWP3v2bFxdXenZs2eW9o4dO7J48eI83zOAL7/8krCwMCZNmpStAAVQtmxZXnvttczn/56L1/17f66ZM2diMpn4/fffefrpp/H19aVChQr8/PPPme055WIymdi3b19m26FDh7jvvvvw8vLCwcGBRo0a/adLNkVEREobrYQSERGRfFm8eDHVqlWjWbNmVjl/v379qFGjBu+++26WYsPhw4d58MEHGTp0KIMHD6ZWrVpcu3aN1q1bExYWxtChQ6lUqRKbNm1i9OjRnD9/no8++ijLuWfPns2VK1cYOnQoJpOJ999/nz59+nDixAlsbW0ZOnQo4eHhhISE8P33398w1z59+vDUU08xe/Zs+vTpk+21KleuTPPmzTEMg549e7J27VoGDhxIUFAQK1as4IUXXiAsLIzJkyfneP5WrVrx3HPP8cknn/DKK68QGBgIkPl15syZuLi4MHLkSFxcXFizZg1vvPEGcXFxfPDBB5nn+eKLLxg2bBgtW7ZkxIgRnDp1il69euHp6UmFChUy49LT0+nZsyd//PEHQ4YMITAwkL179zJ58mSOHDnCggUL8nw/Nm3ahLe3N5UrV77hezdgwAC+/fZb5s6dy7BhwzLbo6OjWbFiBQ8++GC2lW4NGzZk8uTJ7N+/n7p16+Z67kWLFuHo6Mh99913wzxuxtNPP42Pjw9vvPEG8fHxdO/eHRcXF+bOnUvr1q2zxM6ZM4c6depk5rt//36aN29O+fLlefnll3F2dmbu3Ln06tWL+fPn07t3b6vkLCIiUqIYIiIiIjcQGxtrAMa9996br/iTJ08agPHNN99k6wOMMWPGZD4fM2aMARgPPvhgttjKlSsbgLF8+fIs7W+//bbh7OxsHDlyJEv7yy+/bFgsFuPMmTNZ8vD29jaio6Mz4xYuXGgAxuLFizPbnnnmGaMgfxr169fPcHBwMGJjYzPbDh06ZADG6NGjDcMwjAULFhiAMW7cuCzH3nfffYbJZDKOHTuWZayPPvpo5vN58+YZgLF27dpsr33t2rVsbUOHDjWcnJyMxMREwzAMIykpyfD29jbuvvtuIyUlJTNu5syZBmC0bt06s+377783zGazsWHDhiznnDp1qgEYGzduzPO9aNGihdGwYcNs7WvXrjUAY968eZltqamphr+/vxEcHJzja61YsSLbeTZt2mQAxpw5c/LMw9PT06hXr16eMf/077l43b9/Ft98840BGC1atDBSU1OzxD744IOGr69vlvbz588bZrPZeOuttzLb2rdvb9x5552ZPx/DMIz09HSjWbNmRo0aNfKds4iISGmmy/FERETkhuLi4gBwdXW12ms8+eSTObZXrVqVzp07Z2mbN28eLVu2xNPTk4sXL2Y+OnToQFpaGuvXr88S379/fzw9PTOft2zZEoATJ07cdL4PP/wwiYmJ/PLLL5lt1zcrv34p3rJly7BYLDz33HNZjh01ahSGYfDbb7/d1Gv/c6XQlStXuHjxIi1btuTatWscOnQIgD///JNLly4xePBgbGz+Xvw+YMCALO8FZLyfgYGBBAQEZHk/r+/BtHbt2jzzuXTpUrZz5sZisfDAAw+wefPmLJuuz549m7Jly9K+fftsx1w/98WLF/M8d1xcnFXn6ODBg7FYLFna+vfvT1RUVOalkgA///wz6enp9O/fH8hY5bVmzRruv//+zJ/XxYsXuXTpEp07d+bo0aOEhYVZLW8REZGSQkUoERERuSE3Nzcgo+BhLVWrVs13+9GjR1m+fDk+Pj5ZHtf3JPr3fkOVKlXK8vx6UePy5cs3zOvChQtERERkPq5evQpA165d8fLyynKXvB9//JF69epRp04dAE6fPk25cuWyFUauX1Z3+vTpG75+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WL9+Pb///jvTp0/n8OHDqYqdIiIiIiIiPu5eDGzeHYAJq+eSkJhxYalieT+cnQtwK/o2v/9x6mGkmKuoCJUbmUwQdyvzr4i/4Nxu+HsPHFmR3MaR75Pfn9udvD+zbWVylX5vb2/zq1ChQhgMBottzs7OqaZ13bp1i969e+Ps7IyPjw/Tp0+3aHP8+PFUqlQp1bmCgoJ49913geRRTp07d6Z8+fL4+fnx6quvUqVKFXbu3GlxTIECBfD29qZEiRLUrVuXKVOm8PnnnzN//ny2bNmShQ8jtXHjxplHYPn6+lKoUCG6d+/OzZs3zTGxsbG88soreHl54ejoSMOGDdm/f795/7Zt2zAYDISEhFCzZk0KFChA/fr1OX78eIbnvvuefv/991SuXBknJyc8PT1p0aIFt27dAiApKYnx48dTokQJHBwcCAoKYsOGDeZjS5dOfjpDtWrVMBgMNG3a1OJc06ZNw8fHB09PT1566SXi4+Mtrm/EiBEUL16cggULUqdOHbZt22benzIiaM2aNVSoUAEHBwfOnz+Pr68vH3zwgbkflCpVijVr1nD58mV69uyJq6srVapU4bfffjO3deXKFXr06EHx4sUpUKAAlStX5ttvv733B5VF+/btY+LEiUyfPp2pU6dSv359fH19admyJStWrKBPnz4AHD58mGbNmuHi4oKrqys1atTgt99+Y9u2bfTr148bN25YjAgUEREREZH87aVWz+Fe0JUTYWdZ/uv6DGNtbGyoXSP5995Dh/8iJibuYaSYa9jmdAKShvhoGO/zYG3c+g/mt876cWPCwL7gg507HSNHjmT79u388MMPeHl5MWrUKA4ePEhQUBAA/fv357333mP//v3UqlULgEOHDnHkyJE0p9KZTCZ+/vlnjh8/zpQpU+55/j59+jB8+HBWrlxJixYtHuhaTp8+zerVq1m7di3Xrl2ja9euTJ48mQkTJgDwxhtvsGLFChYtWkSpUqX48MMPad26NadOncLDw8PczujRo5k+fTpFihThhRdeoH///uzatStTOYSFhdGjRw8+/PBDOnfuzM2bN/nll1/M85Bnz57N9OnT+fzzz6lWrRpffvklHTt25I8//sDf3599+/ZRu3ZttmzZQsWKFbG3tze3vXXrVnx8fNi6dSunTp2iW7duBAUFMXDgQABefvll/vzzT5YuXUqxYsVYtWoVbdq04ejRo/j7Jy+2Fx0dzZQpU/jiiy/w9PTEy8sLgJkzZzJx4kTeffddZs6cSa9evahXrx7du3dnxowZvP322/Tu3Zs//vgDg8FATEwMNWrU4M0338TV1ZWffvqJXr164efnR+3atR/oc7zT4sWLcXZ2ZsiQIWnuTxmB9uyzz1KtWjXmzp2LjY0NoaGh2NnZUb9+fWbNmsWYMWPMxURnZ+dsy09ERERERHKnQgVcePWJvoz7/iOm/jiPzrVa4mTvmG68f9nHOHz0OFeu3mDXnkPcir5N3dpV8Crike4x+YVGQslDERUVxYIFC5g2bRrNmzencuXKLFq0iIQ75sCWKFGC1q1bExwcbN4WHBxMkyZNKFOmjHnbjRs3cHZ2xt7ennbt2vHxxx/TsmXLe+ZgNBoJCAjg3LlzD3w9SUlJLFy4kEqVKtGoUSN69epFSEgIkDzia+7cuUydOpUnnniCChUqMH/+fJycnFiwYIFFOxMmTKBJkyZUqFCBt956i927dxMTE5OpHMLCwkhISKBLly74+vpSuXJlhgwZYi58TJs2jTfffJPu3btTrlw5pkyZQlBQELNmzQKgSJEiAHh6euLt7W1RHHN3d+eTTz4hMDCQ9u3b065dO/P1nT9/nuDgYL777jsaNWqEn58fI0aMoGHDhhafXXx8PJ9++in169enXLlyFChQAIC2bdsyePBg/P39GTNmDJGRkdSqVYtOnToREBDAm2++ybFjx7h06RIAxYsXZ8SIEQQFBVGmTBmGDh1KmzZtWL58eVY/tgydPHmSMmXKYGdnl2Hc+fPnadGiBYGBgfj7+/PMM89QtWpV7O3tU40KVBFKREREROTR0LfJUxT38Cbs+mUWbP0uw1iDwUCdWlUAOHXmPP+GXebEqUdjoXKNhMqN7Aokj0jKirAjaY98GrgRfKpk7dxWcPr0aeLi4qhTp455m4eHB+XKlbOIGzhwIP3792fGjBkYjUaWLFnCzJkzLWJcXFwIDQ0lKiqKkJAQhg0bRpkyZVJNJ0uLyWTCYDCkuW/x4sUMHjzY/H79+vU0atQozVhfX19cXFzM7318fIiIiDBfa3x8PA0aNDDvt7Ozo3bt2hw7dsyinSpVqli0AZjbqVChgnnfqFGjGDVqlMWxVatWNRf0WrduTatWrXj66adxd3cnMjKSf//91yIHgAYNGnD48OE0r+lOFStWxMbGxiK3o0ePAnD06FESExMJCAiwOCY2NhZPT0/ze3t7e4vrS+uaixYtCmAxDTNlW0REBN7e3iQmJjJx4kSWL1/OxYsXiYuLIzY21lzUupfz58/f814C93ySRYphw4bx/PPP8/XXX9OiRQueeeYZ/Pz8MnWsiIiIiIjkT452DrzZcRCvLBzPxxu/4tmGHXEvWCjN2Js3b+HoaE/hwm789991AE6f/ody/r7JbTnY4+JinRlKOU1FqNzIYMj6lDg7p/8/1gimpP/9aedktel11tChQwccHBxYtWoV9vb2xMfH8/TTT1vEGI1GypYtCySvF3Xs2DEmTZp0zyJUYmIiJ0+eNE/1u1vHjh0timTFixdPt627R8sYDIb7Wnj7znZSimNJSUmUKFHC4ql1d45SSmFjY8PmzZvZvXs3mzZt4uOPP2b06NHs3bvXohh0PzK6vqioKGxsbDhw4IBFoQosp585OTmlWfBL65rTuw8AU6dOZfbs2cyaNYvKlStTsGBBXnvtNeLiMjd3ulixYve8lwABAQHs3LmT+Pj4DEdDjRs3jp49e/LTTz+xfv16xo4dy9KlS+ncuXOm8hERERERkfzpqdqt+WzzEv68eIqPNnzF2KeGphm3eNm6VNtux8SyYvX/1i9+4flnrJZnTtJ0vPyiYBFw9oJiQdBxVvKfzl7J23MBPz8/7Ozs2Lt3r3nbtWvXOHHihEWcra0tffr0ITg4mODgYLp3746Tk1OGbSclJREbG3vPHBYtWsS1a9d46qmn0tzv4uJC2bJlza97nTc9fn5+2NvbW6ztFB8fz/79+y1G5GTE1tbWIpf0CicGg4EGDRrw3nvvcejQIezt7Vm1ahWurq4UK1Ys1fpSu3btMueQsgZUYmJilq6vWrVqJCYmEhERYZFj2bJl8fb2zlJbmbFr1y6efPJJnnvuOapWrUqZMmVS9ZuMZPZe9uzZk6ioKD799NM091+/ft38c0BAAK+//jqbNm2iS5cu5mmI9vb2Wb6fIiIiIiKSP9gYbRjdOXmN2S+3fseFq+Fpxj3etHa6M3QMBgOPN82+tW9zG42Eyi8KFYcRf4CNffJIqlr9IDEObB1yOjMgeYTMgAEDGDlypHmR6tGjR2M0pq6DPv/885QvXx4gVRFl0qRJ1KxZEz8/P2JjY1m3bh1ff/01c+fOtYiLjo4mPDychIQELly4wKpVq5g5cyYvvvgizZo1s96FAgULFuTFF19k5MiReHh48Nhjj/Hhhx8SHR3NgAEDsu08e/fuJSQkhFatWuHl5cXevXu5fPmy+d6NHDmSsWPH4ufnR1BQEMHBwYSGhrJ48WIAvLy8cHJyYsOGDZQoUQJHR0cKFUp7uOidAgICePbZZ+nduzfTp0+nWrVqXL58mZCQEKpUqUK7du2y7RoB/P39+f7779m9ezfu7u7MmDGDS5cuZbqgl1l16tThjTfeYPjw4Vy8eJHOnTtTrFgxTp06xWeffUbDhg0ZNGgQI0eO5Omnn6Z06dJcuHCB/fv3mwubvr6+5mmiVatWpUCBApmeNigiIiIiInnf4xXrUT+gOrtPHGTqj/OZ3efdVDEBZUvh7uZqMfIpRZcnm1OksPvDSDVHqAiVn9xZcDIYck0BKsXUqVOJioqiQ4cOuLi4MHz4cG7cuJEqzt/fn/r163P16lWL6XGQvOj3kCFDuHDhAk5OTgQGBvLNN9/QrVs3i7j58+czf/587O3t8fT0pEaNGixbtuyhTZmaPHkySUlJ9OrVi5s3b1KzZk02btyIu3v2fZm4urqyY8cOZs2aRWRkJKVKlWL69Ok88cQTALzyyivcuHGD4cOHExERQYUKFVizZo356XW2trZ89NFHjB8/njFjxtCoUSO2bduWqXMHBwfzwQcfmAs2hQsXpm7durRv3z7bri/FO++8w5kzZ2jdujUFChRg0KBBdOrUKc2+86CmTJlCjRo1mDNnDp999hlJSUn4+fnx9NNP06dPH2xsbLhy5Qq9e/fm0qVLFC5cmC5duvDee+8BUL9+fV544QW6devGlStXGDt2LOPGjcv2PEVEREREJHcyGAy80/kl2k4ZwPJf1/FCix6UL142p9PKNQymzK7GK/ctMjKSQoUKcePGDVxdXS32xcTEcPbsWUqXLo2jY/qPcMwNkpKSiIyMxNXVNc0RTNnFZDLh7+/PkCFDGDZsmNXOI7nHw+pbYikvff88iPj4eNatW0fbtm3v+fRDkaxS/xJrUv8Sa1HfEmtS/0r2/LxRrD34My0rN+Drl6an2h91K5oVq0NwLuhE+XKlOXb8LFG3bvNUp+Y4F8xbsykyqnncTSOhJFe5fPkyS5cuJTw8nH79+uV0OiIiIiIiIiJZNurJF1gfup3NR3ex5+Qh6vlXs9jvXLAAz3Vvi9FoxGAwUD6wDElJSake/pTfaMiB5CpeXl6MHz+eefPmZevUNREREREREZGHpUzRx3iu4ZMAvL/yE9KahGZjY2NeoNxgMOT7AhSoCCW5jMlk4vLly/Ts2TOnUxERERERERG5b8PbDcDJ3pGDZ/9gXei2nE4nV1ARSkREREREREQkm3kV8uSFFskDLCaunktCYkIOZ5TzVIQSEREREREREbGCIS2fxcPZjdOXzvPt7rU5nU6OUxFKRERERERERMQKXJwKMqxdfwCmrf2CW7G3czijnKUilIiIiIiIiIiIlfRu1JnHChfj0o3/mB+yNKfTyVEqQomIiIiIiIiIWIm9rR1vP/kCAJ9s+porUddzNqEcpCKUiIiIiIiIiIgVPVmjBZVLBhAVE83sdQtzOp0coyKUWE3fvn3p1KlThjFNmzbltddeeyj5ZJdx48YRFBSU58+R3TLzeYuIiIiIiDyKjEYj73R+CYDg7d/z93//5nBGOUNFqHwm4vJV1vy0jYjLV616HoPBkOFr3LhxzJ49m4ULF2breVeuXEnNmjVxc3OjYMGCBAUF8fXXX1vENG3a1JyHg4MDxYsXp0OHDqxcuTJbchgxYgQhISHZ0hYk38vVq1dnW3siIiIiIiKS+zSpUIcm5WsTn5jA1B/n5XQ6OUJFqHzmxMm/+TfsMidO/W3V84SFhZlfs2bNwtXV1WLbiBEjKFSoEG5ubtl6Xg8PD0aPHs2ePXs4cuQI/fr1o1+/fmzcuNEibuDAgYSFhXH69GlWrFhBhQoV6N69O4MGDXrgHJydnfH09Hzgdh42k8lEQkJCTqchIiIiIiLyyBrdeQgAK/Zt5Pd/TuRwNg+filC5kMlkIj4+IdOvq9ciCQu/TFj4f5w68w8Ap07/Q1j4f4SFX+bqtchMt2UymTKVo7e3t/lVqFAhDAaDxTZnZ+dU07Nu3bpF7969cXZ2xsfHh+nTp1u0OX78eCpVqpTqXEFBQbz77rtA8iinzp07U758efz8/Hj11VepUqUKO3futDimQIECeHt7U6JECerWrcuUKVP4/PPPmT9/Plu2bMnKx5HK3VPltm3bRu3atSlYsCBubm40aNCAv//+XxFw7ty5+Pn5YW9vT7ly5SxGbvn6+gLQuXNnDAaD+X2Kr7/+Gl9fXwoVKkT37t25efOmeV9SUhKTJk2idOnSODk5UbVqVb7//nuLvAwGA+vXr6dGjRo4ODiwc+dOmjZtytChQ3nttddwd3enaNGizJ8/n1u3btGvXz9cXFwoW7Ys69evN7eVmJjIgAEDzOcqV64cs2fPfqD7KCIiIiIi8qip8lggnWu1wmQy8cHKOew6foBV+zex6/gBEpMSczo9q7PN6QQy6+rVqwwdOpQff/wRo9HIU089xezZs3F2dk73mHnz5rFkyRIOHjzIzZs3uXbtmsXInG3bttGsWbM0j923bx+1atXi3LlzlC5dOtX+PXv2ULdu3Qe+rrQkJCSyYNGqB2ojJiaWH9ZuzfJxA/p0xs7OOt1i5MiRbN++nR9++AEvLy9GjRrFwYMHzQWd/v37895777F//35q1aoFwKFDhzhy5EiaU+lMJhM///wzx48fZ8qUKfc8f58+fRg+fDgrV66kRYsW2XJNCQkJdOrUiYEDB/Ltt98SFxfHvn37MBgMAKxatYpXX32VWbNm0aJFC9auXUu/fv0oUaIEzZo1Y//+/Xh5eREcHEybNm2wsbExt3369GlWr17N2rVruXbtGl27dmXy5MlMmDABgEmTJvHNN9/w2Wef4e/vz44dO3juuecoUqQITZo0Mbfz1ltvMW3aNMqUKYO7uzsAixYt4o033mDfvn0sW7aMF198kVWrVtG5c2dGjRrFzJkz6dWrF+fPn6dAgQIkJSVRokQJvvvuOzw9Pdm9ezeDBg3Cx8eHrl27Zsu9FBEREREReRS81XEwaw5sYduxvWw7tte83cfNiw+6vU67amnXKfKDPFOEevbZZwkLC2Pz5s3Ex8fTr18/Bg0axJIlS9I9Jjo6mjZt2tCmTRvefvvtVPvr169PWFiYxbZ3332XkJAQatasabF9y5YtVKxY0fw+L07HyklRUVEsWLCAb775hubNmwPJhZASJUqYY0qUKEHr1q0JDg42F6GCg4Np0qQJZcqUMcfduHGD4sWLExsbi42NDZ9++iktW7a8Zw5Go5GAgADOnTuXbdcVGRnJjRs3aN++PX5+fgCUL1/evH/atGn07duXIUOSh1wOGzaMX3/9lWnTptGsWTOKFCkCgJubG97e3hZtJyUlsXDhQlxcXADo1asXISEhTJgwgdjYWCZOnMiWLVuoV68eAGXKlGHnzp18/vnnFkWo8ePHp7o/VatW5Z133gHg7bffZvLkyRQuXJiBAwcCMGbMGObOncuRI0eoW7cudnZ2vPfee+bjS5cuzZ49e1i+fLmKUCIiIiIiIlnw+4UTJCYlpdoefj2C5z9/my8GT8q3hag8UYQ6duwYGzZsYP/+/ebi0Mcff0zbtm2ZNm0axYoVS/O4lKeubdu2Lc399vb2Fr/4x8fH88MPPzB06FDzSJYUnp6eqYoE1mJra8OAPp2zdMx/V66nOfLpyfbNKOzplqVzW8Pp06eJi4ujTp065m0eHh6UK1fOIm7gwIH079+fGTNmYDQaWbJkCTNnzrSIcXFxITQ0lKioKEJCQhg2bBhlypShadOm98zDZDKl+mxTLF68mMGDB5vfr1+/nkaNGmXYnoeHB3379qV169a0bNmSFi1a0LVrV3x8fIDkvnv3OlQNGjTI1FQ2X19fcwEKwMfHh4iICABOnTpFdHR0quJSXFwc1apVs9h2d0EVoEqVKuafbWxs8PT0pHLlyuZtRYsWBTCfD2DOnDl8+eWXnD9/ntu3bxMXF5fnnuAnIiIiIiKSkxKTEnln2cw095kAA/Du8lm0qdoYG6N1fj/PSXmiCLVnzx7c3Nwsfplu0aIFRqORvXv30rlz1go26VmzZg1XrlyhX79+qfZ17NiRmJgYAgICeOONN+jYsWO67cTGxhIbG2t+HxkZCSQXueLj4y1i4+PjMZlMJCUlkXRHJdTGJmvLddkY0y6s2BgNWWrLZDKluy5UyvaUfFOk/Jx0VyU3pa07r+3u67y7vXbt2uHg4MCKFSuwt7cnPj6eLl26pDomZWRUlSpV+PPPP5k4cSKNGzdOs80UiYmJnDx5kpo1a6baB9C+fXsOHjxofl+8ePE041LuQ8q+BQsW8PLLL7Nx40aWLVvGO++8w8aNG83TNe++5ruPTy/Gzs4u1flT4lL61I8//kjx4sUtYhwcHCzac3JyStWOra2txTaDwZBqGyRPN0xKSmLp0qWMGDGCadOmUbduXVxcXJg2bRr79u0zH3Pn551V6fUtsa6kpKT/X4Mu3mIqaH6T8r179/evSHZQ/xJrUv8Sa1HfEmtS/8rYnpOHCLseke5+E/DvtUvs+usA9fyrpRuXm2Tls84TRajw8HC8vLwsttna2uLh4UF4eHi2nWfBggW0bt3aYoqYs7Mz06dPp0GDBhiNRlasWEGnTp1YvXp1uoWoSZMmWUxdSrFp0yYKFCiQ6jq8vb2JiooiLi7uvnNPSIjH0cGeAgUcKVO6OGfOXiQ6OoaEhHhzwSK73Lk4NkBMTAwmkynVeeLj40lISCAyMpIiRYpgZ2fHtm3bzIuVX79+nRMnTlC3bl2LY7t168aCBQuws7Ojc+fOaRbv7hQbG0t0dLS5jYSEBOLi4lLl880333Dt2jXatGmT7j25s5+ld97Y2FgSExMt2vDz82PIkCEMGTKEVq1asWjRIipUqIC/vz/bt2+3KJRu374df39/8/F2dnZERUVZtJfWOWJiYswFqBIlSuDg4MDx48dTjXyC5MJndHQ0kPx5GY3/K0SmdX+SkpKIiYlJdV9u375NZGSkefH1Z5991rzvxIkTFjne+Xnfr7v7llhXXFwct2/fZseOHY/EkxM3b96c0ylIPqb+Jdak/iXWor4l1qT+lbZ9//6RqbiN27dw7WTYvQNzgZTfPTMjR4tQb7311j0XlD527NhDyeXChQts3LiR5cuXW2wvXLgww4YNM7+vVasW//77L1OnTk23CPX2229bHBMZGUnJkiVp1aoVrq6uFrExMTH8888/ODs74+joeN/5u7q68mz3thiNRgwGA9WqlicpKSlbRzeYTCZu3ryJi4uLxZQ2R0dHDAZDqmuzs7PD1tYWV1dXXF1d6d+/P+PGjaNEiRJ4eXnxzjvvYDQasbe3tzh2yJAh5vW3fvnlF4t9kydPpkaNGvj5+REbG8v69etZtmwZc+bMMcfZ2tqSkJBAdHQ0CQkJXLhwgdWrVzNr1ixeeOEF2rVr90D3wcHBARsbG1xdXTl79izz58+nQ4cOFCtWjOPHj3PmzBn69OmDq6srb775Jt27d6dWrVrmhcl//PFHNm3aZM7X19eXPXv20KJFCxwcHHB3d7c4x5332Wg0mu/n8OHDeeedd3BwcKBhw4bcuHGD3bt34+LiQp8+fcwFTxcXF4t2bG1tU91zo9GIo6Njqs/QyckJV1dXKlasyLJly9izZw+lS5fmm2++4dChQ5QuXdp8zJ2fd1al17fEumJiYnBycqJx48YP9P2T28XHx7N582ZatmyJnZ1dTqcj+Yz6l1iT+pdYi/qWWJP6V8bcT/qw4PCae8a1btIiz4yEyspAhBwtQg0fPpy+fftmGFOmTBm8vb0t1qaB5NEcV69ezbZ1moKDg/H09Mxwml2KOnXqZFjVdXBwwMHBIdV2Ozu7VH8JExMTMRgMGI1Gi9Eq9+Pu47N7ek3KNKmUfO8+793nNxgMFrHTpk3j1q1bPPnkk7i4uDB8+HAiIyNTtVeuXDnq16/P1atXzYtup4iOjubll1/mwoULODk5ERgYyDfffEO3bt0s4r744gu++OIL7O3t8fT0pEaNGixbtixbpm6mFEmMRiPOzs4cP36cr776iitXruDj48NLL73Eiy++iNFopEuXLsyePZtp06bx+uuvU7p0aYKDg3n88cfN7U2fPp1hw4bxxRdfULx4cc6dO2dxjrTOC/DBBx/g5eXFlClTGDx4MG5ublSvXp1Ro0ZZ9Ke0+tbd9zy9bSnHvvDCC4SGhtKjRw8MBgM9evRgyJAhrF+/3nzM3Z93VqTXt8S6UorWaX035UePynVKzlD/EmtS/xJrUd8Sa1L/SluDwBr4uHkRfj2CtBbCMQA+7kVpEFgjz6wJlZXP2WBKbwGgXOTYsWNUqFCB3377jRo1agDJU9vatGnDhQsX0l2YPMW2bdto1qwZ165dw83NLdV+k8mEn58fXbp0Ydq0affMZ+DAgRw4cMBi/aCMREZGUqhQIW7cuJHmSKizZ89SunTpXD8SIWUqmKurq1ULBSaTCX9/f4YMGWIxokzyr4fVt8RSXvr+eRDx8fGsW7eOtm3b6h9Cku3Uv8Sa1L/EWtS3xJrUv+7tp0Nbef7ztwEsClEpc0Ly2tPxMqp53C1P/LZXvnx52rRpw8CBA9m3bx+7du3i5Zdfpnv37uYC1MWLFwkMDGTfvn3m48LDwwkNDeXUqVMAHD16lNDQUK5evWrR/s8//8zZs2d5/vnnU5170aJFfPvtt/z111/89ddfTJw4kS+//JKhQ4da8YofXZcvX+aTTz4hPDw8zQXiRURERERERPKydtWa8cXgSXi7Wa597eNeNM8VoLIqTyxMDrB48WJefvllmjdvjtFo5KmnnuKjjz4y74+Pj+f48eMWC2J99tlnFguEpzw9LTg42GIa4IIFC6hfvz6BgYFpnvv999/n77//xtbWlsDAQJYtW8bTTz+dzVcokLwweOHChZk3bx7u7u45nY6IiIiIiIhItmtXrRltqjbm15OhRERewcvVk7r+QXlmCt79yjNFKA8PD5YsWZLufl9fX+6eWThu3DjGjRt3z7YzardPnz706dMn03nKg8kDs0NFREREREREHpiN0YYG5WrkdBoPVZ6YjiciIiIiIiIiInmbilC5hEYAicjDpu8dERERERF5mFSEymEpTwu4cy0rEZGHIeV7R08tERERERGRhyHPrAmVX9nY2ODm5kZERAQABQoUwGAw3OOonJGUlERcXBwxMTEYjapfSvZR33q4TCYT0dHRRERE4Obmho1N/l78UEREREREcgcVoXIBb29vAHMhKrcymUzcvn0bJyenXFsok7xJfStnuLm5mb9/RERERERErE1FqFzAYDDg4+ODl5cX8fHxOZ1OuuLj49mxYweNGzfW9B3JVupbD5+dnZ1GQImIiIiIyEOlIlQuYmNjk6t/KbSxsSEhIQFHR0cVCiRbqW+JiIiIiIjkf1p8RURERERERERErE5FKBERERERERERsToVoURERERERERExOq0JtRDYDKZAIiMjMzhTB5MfHw80dHRREZGat0eyVbqW2JN6l9iTepfYk3qX2It6ltiTepfj56UWkdK7SMjKkI9BDdv3gSgZMmSOZyJiIiIiIiIiEj2u3nzJoUKFcowxmDKTKlKHkhSUhL//vsvLi4uGAyGnE7nvkVGRlKyZEn++ecfXF1dczodyUfUt8Sa1L/EmtS/xJrUv8Ra1LfEmtS/Hj0mk4mbN29SrFgxjMaMV33SSKiHwGg0UqJEiZxOI9u4urrqy0SsQn1LrEn9S6xJ/UusSf1LrEV9S6xJ/evRcq8RUCm0MLmIiIiIiIiIiFidilAiIiIiIiIiImJ1KkJJpjk4ODB27FgcHBxyOhXJZ9S3xJrUv8Sa1L/EmtS/xFrUt8Sa1L8kI1qYXERERERERERErE4joURERERERERExOpUhBIREREREREREatTEUpERERERERERKxORSgREREREREREbE6FaHEwpw5c/D19cXR0ZE6deqwb9++DOO/++47AgMDcXR0pHLlyqxbt+4hZSp5TVb61vz582nUqBHu7u64u7vTokWLe/ZFebRl9bsrxdKlSzEYDHTq1Mm6CUqeltX+df36dV566SV8fHxwcHAgICBA/32UdGW1f82aNYty5crh5OREyZIlef3114mJiXlI2UpesWPHDjp06ECxYsUwGAysXr36nsds27aN6tWr4+DgQNmyZVm4cKHV85S8Kav9a+XKlbRs2ZIiRYrg6upKvXr12Lhx48NJVnIdFaHEbNmyZQwbNoyxY8dy8OBBqlatSuvW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", "text/plain": [ "
" ] @@ -60145,7 +35286,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.13" + "version": "3.12.3" } }, "nbformat": 4,